:root {
  --bg: #f5efe5;
  --bg-soft: #ece3d5;
  --surface: rgba(255, 251, 245, 0.76);
  --surface-strong: #fffaf3;
  --text: #1c1714;
  --muted: #5c534b;
  --line: rgba(28, 23, 20, 0.12);
  --accent: #6a7a61;
  --accent-strong: #3f4d39;
  --shadow: 0 32px 80px rgba(34, 24, 17, 0.14);
  --radius-lg: 34px;
  --radius-md: 24px;
  --max-width: 1240px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.72), transparent 28%),
    radial-gradient(circle at 85% 18%, rgba(186, 203, 174, 0.28), transparent 18%),
    linear-gradient(180deg, #f8f3ea 0%, #f0e7db 46%, #e7ddd0 100%);
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.2;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 85%);
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  position: relative;
}

.site-header {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  padding: 1.4rem 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(22px);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(247, 240, 231, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(70, 49, 31, 0.08);
  z-index: -1;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.9rem 1.2rem;
}

.brand-mark {
  width: 2.8rem;
  height: 2.8rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--text);
  color: #f8f3ea;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 0.98rem;
}

.brand-copy small,
.site-nav a,
.eyebrow,
dt,
.gallery-quote cite {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.brand-copy small,
.site-nav a {
  color: var(--muted);
}

.site-nav {
  display: flex;
  gap: 1.4rem;
  padding-right: 1.4rem;
}

.site-nav a {
  transition: color 180ms ease;
}

.site-nav a:hover,
.visit-details a:hover {
  color: var(--accent-strong);
}

.section {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  padding: 6.5rem 0;
}

.hero {
  min-height: calc(100svh - 5.8rem);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding-top: 6rem;
}

.hero-copy h1,
.section-heading h2,
.gallery-copy h2,
.visit-panel h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  font-size: clamp(4.5rem, 10vw, 7.8rem);
  max-width: 10ch;
  margin-top: 1rem;
}

.hero-text,
.story-copy p,
.gallery-copy p,
.visit-panel p,
.feature p,
.review-stack p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.hero-text {
  max-width: 36rem;
  margin: 1.2rem 0 0;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.3rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--text);
  color: #fff7ef;
}

.button-primary:hover {
  background: var(--accent-strong);
}

.button-secondary {
  border-color: rgba(28, 23, 20, 0.22);
  background: rgba(255, 250, 243, 0.72);
}

.button-secondary:hover {
  border-color: rgba(28, 23, 20, 0.45);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 2.8rem 0 0;
}

.hero-facts div,
.feature,
.reviews-panel,
.visit-panel,
.gallery-quote {
  background: var(--surface);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: var(--shadow);
}

.hero-facts div {
  padding: 1.2rem 1.3rem 1.35rem;
  border-radius: 1.4rem;
}

dt {
  color: var(--muted);
  margin-bottom: 0.55rem;
}

dd {
  margin: 0;
  font-weight: 700;
  line-height: 1.5;
}

.hero-media {
  position: relative;
  min-height: 42rem;
}

.hero-frame {
  position: absolute;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-frame img,
.feature-visual img,
.gallery-card img {
  transition: transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero:hover img,
.gallery-card:hover img,
.feature-visual:hover img {
  transform: scale(1.04);
}

.hero-frame-main {
  inset: 0 0 4.8rem 4.2rem;
  border-radius: 42px;
}

.hero-frame-accent {
  width: 14.5rem;
  height: 18rem;
  left: 0;
  bottom: 0;
  border-radius: 24px;
  border: 10px solid rgba(249, 242, 232, 0.92);
  transform: rotate(-8deg);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 2rem;
  align-items: end;
}

.section-heading h2,
.gallery-copy h2,
.visit-panel h2 {
  font-size: clamp(3rem, 6vw, 5.2rem);
  max-width: 10ch;
}

.story-layout {
  margin-top: 2.4rem;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: start;
}

.story-copy {
  padding: 2rem 2rem 2.2rem;
}

.proof-strip {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}

.proof-strip div {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.proof-strip span {
  display: inline-block;
  margin-bottom: 0.35rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 700;
}

.proof-strip p,
.feature h3,
.gallery-quote p,
.review-stack strong {
  margin: 0;
}

.feature-visual {
  min-height: 31rem;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.feature-list {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feature {
  padding: 1.6rem;
  border-radius: 1.5rem;
}

.feature h3 {
  font-size: 1.2rem;
}

.feature p {
  margin: 0.8rem 0 0;
}

.gallery {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 2rem;
  align-items: start;
}

.gallery-copy {
  position: sticky;
  top: 7rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 1.2rem;
  align-items: stretch;
}

.gallery-card,
.gallery-quote {
  overflow: hidden;
  border-radius: 1.8rem;
  min-height: 18rem;
}

.gallery-card-tall {
  grid-row: span 2;
  min-height: 40rem;
}

.gallery-card-wide {
  min-height: 23rem;
}

.gallery-quote {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.gallery-quote p {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1.05;
}

.gallery-quote cite {
  margin-top: 1rem;
  color: var(--muted);
  font-style: normal;
}

.visit-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1.3rem;
}

.visit-panel,
.reviews-panel {
  padding: 2.1rem;
  border-radius: var(--radius-lg);
}

.visit-details {
  margin: 2rem 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.visit-details div {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.review-stack {
  margin-top: 1.1rem;
  display: grid;
  gap: 1rem;
}

.review-stack article {
  padding: 1rem 0 1.1rem;
  border-top: 1px solid var(--line);
}

.review-stack article:first-child {
  border-top: 0;
  padding-top: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.drift {
  transform: translateY(calc(var(--drift, 0) * 1px));
  transition: transform 220ms linear;
}

@media (max-width: 1100px) {
  .hero,
  .story-layout,
  .gallery,
  .visit-grid,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 32rem;
    order: -1;
  }

  .section-heading h2 {
    max-width: 12ch;
  }

  .gallery-copy {
    position: static;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    width: min(calc(100% - 1rem), var(--max-width));
    padding-top: 0.7rem;
    border-radius: 28px;
  }

  .site-header::before {
    border-radius: 28px;
  }

  .brand {
    padding: 0.85rem 1rem;
  }

  .site-nav {
    display: none;
  }

  .section {
    width: min(calc(100% - 1rem), var(--max-width));
    padding: 4.7rem 0;
  }

  .hero {
    padding-top: 4.6rem;
    gap: 1.5rem;
  }

  .hero-copy h1 {
    font-size: clamp(3.4rem, 18vw, 5.2rem);
  }

  .hero-media {
    min-height: 24rem;
  }

  .hero-frame-main {
    inset: 0;
  }

  .hero-frame-accent {
    width: 9rem;
    height: 11rem;
    left: 0.6rem;
    bottom: 0.8rem;
    border-width: 6px;
  }

  .hero-facts,
  .visit-details,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card-tall,
  .gallery-card-wide,
  .gallery-card,
  .gallery-quote {
    min-height: 18rem;
    grid-row: auto;
  }

  .story-copy,
  .visit-panel,
  .reviews-panel,
  .gallery-quote,
  .feature {
    padding: 1.5rem;
  }

  .button {
    width: 100%;
  }
}
