:root {
  --burgundy: #781d2f;
  --burgundy-deep: #571321;
  --olive: #34472f;
  --olive-dark: #253322;
  --brown: #6d432b;
  --walnut: #3d281d;
  --beige: #f2e5d1;
  --cream: #fbf5e9;
  --ink: #2a211d;
  --white: #fffdf8;
  --gold: #c49a62;
  --max: 1240px;
  --shadow: 0 24px 60px rgba(47, 25, 17, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.skip-link {
  position: fixed; left: 1rem; top: -5rem; z-index: 9999;
  background: var(--cream); padding: .7rem 1rem;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem clamp(1.2rem, 4vw, 4.5rem);
  color: white;
  transition: background .35s ease, color .35s ease, padding .35s ease, box-shadow .35s ease;
}
.site-header.scrolled {
  color: var(--ink);
  background: rgba(251,245,233,.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(44, 25, 17, .08);
  padding-top: .8rem;
  padding-bottom: .8rem;
}
.brand 
{ display: inline-flex; flex-direction: column; line-height: .9; }

.brand-main {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -.04em;
}

.brand-sub {
  margin-top: .45rem;
  text-transform: uppercase;
  font-size: .62rem;
  letter-spacing: .34em;
}
.site-nav { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2.2rem); }
.site-nav a {
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.nav-cta {
  border: 1px solid currentColor;
  padding: .9rem 1.1rem;
  transition: .25s ease;
}
.nav-cta:hover { background: var(--burgundy); color: white; border-color: var(--burgundy); }
.menu-toggle { display: none; }

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  align-items: end;
  color: white;
  overflow: hidden;
}
.hero-image {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  animation: heroZoom 14s ease-out forwards;
}
@keyframes heroZoom { from { transform: scale(1.06); } to { transform: scale(1); } }
.hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(31,19,14,.76) 0%, rgba(31,19,14,.35) 48%, rgba(31,19,14,.05) 75%),
    linear-gradient(0deg, rgba(31,19,14,.42), transparent 50%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 11rem clamp(1.3rem, 6vw, 7rem) 7rem;
}
.eyebrow {
  margin: 0 0 1rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.burgundy { color: var(--burgundy); }
.hero h1, h2, h3, blockquote {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: .93;
  margin: 0;
}
.hero h1 { font-size: clamp(4rem, 8.6vw, 8.5rem); letter-spacing: -.05em; }
.hero h1 em { color: #efcdb2; font-weight: 500; }
.hero-copy { max-width: 600px; font-size: clamp(1rem, 1.4vw, 1.2rem); margin: 1.6rem 0 2.2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: .85rem 1.4rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .72rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--burgundy); color: white; }
.button-primary:hover { background: var(--burgundy-deep); }
.button-ghost { border-color: rgba(255,255,255,.6); color: white; }
.button-ghost:hover { background: white; color: var(--ink); }
.button-light { background: var(--cream); color: var(--burgundy); }
.scroll-cue {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.scroll-cue span { width: 1px; height: 34px; background: rgba(255,255,255,.7); }

.section-paper {
  background-color: var(--cream);
  background-image:
    radial-gradient(rgba(73,46,30,.045) 1px, transparent 1px);
  background-size: 4px 4px;
}
.story {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: stretch;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 9rem) clamp(1.3rem, 4vw, 3rem);
  gap: clamp(2rem, 6vw, 6rem);
}
.story-copy { align-self: center; max-width: 520px; position: relative; }
.story h2, .section-heading h2, .gallery-intro h2, .reviews h2, .visit h2, .final-cta h2 {
  font-size: clamp(3.4rem, 6vw, 6.2rem);
  letter-spacing: -.045em;
}
.story h2 { color: var(--burgundy); }
.story .lead { font-family: "Cormorant Garamond", serif; font-size: clamp(1.5rem, 2.3vw, 2.1rem); line-height: 1.2; }
.signature {
  display: block;
  margin-top: 1.8rem;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 2rem;
  color: var(--burgundy);
}
.story-image { margin: 0; min-height: 560px; box-shadow: var(--shadow); }
.story-image img { width: 100%; height: 100%; object-fit: cover; }

.experience { background: var(--beige); }
.section-heading {
  max-width: var(--max);
  padding: clamp(5rem, 9vw, 8rem) clamp(1.3rem, 4vw, 3rem) 4rem;
  margin: auto;
}
.section-heading h2 { color: var(--burgundy); }
.feature {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  min-height: 700px;
}
.feature-image { margin: 0; min-height: 600px; overflow: hidden; }
.feature-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.feature:hover .feature-image img { transform: scale(1.025); }
.feature-copy {
  position: relative;
  padding: clamp(4rem, 9vw, 9rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature-copy h3 { font-size: clamp(3.5rem, 6vw, 6.5rem); letter-spacing: -.05em; }
.feature-copy p:not(.eyebrow) { max-width: 440px; }
.feature-number {
  position: absolute;
  top: 1.4rem; right: 2rem;
  font-family: "Italiana", serif;
  font-size: clamp(5rem, 10vw, 10rem);
  opacity: .09;
}
.feature-olive { background: var(--olive); color: white; }
.feature-burgundy { background: var(--burgundy); color: white; }
.feature-brown { background: var(--brown); color: white; }
.text-link {
  display: inline-block;
  width: max-content;
  margin-top: 1rem;
  padding-bottom: .25rem;
  border-bottom: 1px solid currentColor;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .7rem;
  font-weight: 600;
}

.gallery {
  padding: clamp(5rem, 9vw, 8rem) max(1.3rem, calc((100vw - var(--max)) / 2));
}
.gallery-intro { max-width: 650px; margin-bottom: 3rem; }
.gallery-intro h2 { color: var(--burgundy); }
.gallery-intro p:last-child { max-width: 540px; }
.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  grid-auto-rows: 280px;
  gap: 12px;
}
.gallery-item {
  padding: 0; border: 0; cursor: zoom-in; overflow: hidden; background: #ddd;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.035); }
.gallery-large { grid-column: span 2; grid-row: span 2; }
.gallery-wide { grid-column: span 2; }
.gallery-note {
  background: var(--burgundy);
  color: #f4dca5;
  display: grid;
  place-items: center;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.05;
  padding: 1rem;
}

.quote-section {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  background: var(--burgundy);
  color: white;
  min-height: 630px;
}
.quote-copy { padding: clamp(4rem, 9vw, 8rem); align-self: center; }
.quote-copy blockquote { font-size: clamp(3.2rem, 5.5vw, 6rem); }
.quote-copy p { max-width: 500px; }
.quote-section > img { width: 100%; height: 100%; object-fit: cover; }

.reviews {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: clamp(3rem, 8vw, 8rem);
  padding: clamp(5rem, 9vw, 8rem) max(1.3rem, calc((100vw - var(--max)) / 2));
}
.reviews-heading .rating { color: var(--burgundy); font-weight: 600; }
.review-slider { align-self: center; min-width: 0; }
.review-slide { display: none; }
.review-slide.is-active { display: block; animation: fadeIn .35s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.review-slide blockquote { font-size: clamp(2.5rem, 4vw, 4.8rem); color: var(--burgundy); }
.review-slide .stars { color: var(--gold); letter-spacing: .22em; margin-bottom: 1.2rem; }
.review-slide p { text-transform: uppercase; letter-spacing: .12em; font-size: .75rem; }
.review-controls { display: flex; align-items: center; gap: 1rem; margin-top: 2rem; }
.review-controls button {
  border: 1px solid rgba(42,33,29,.25);
  background: transparent;
  width: 44px; height: 44px;
  cursor: pointer;
}
.review-dots { display: flex; gap: .5rem; }
.review-dot { width: 8px!important; height: 8px!important; border: 0!important; border-radius: 50%; background: rgba(120,29,47,.25)!important; }
.review-dot.is-active { background: var(--burgundy)!important; }

.visit {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  background: var(--olive);
  color: white;
}
.visit-copy { padding: clamp(4rem, 9vw, 8rem); }
.visit-details { display: grid; gap: 1.5rem; margin-top: 3rem; }
.visit-details div { padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.22); }
.visit-details span { display: block; font-size: .68rem; text-transform: uppercase; letter-spacing: .16em; opacity: .7; }
.visit-details strong, .visit-details a { font-family: "Cormorant Garamond", serif; font-size: 1.55rem; }
.map-wrap { min-height: 620px; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: sepia(.12) saturate(.82); }

.final-cta {
  min-height: 720px;
  position: relative;
  display: grid;
  place-items: center;
  text-align: center;
  color: white;
}
.final-cta > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.final-cta-shade { position: absolute; inset: 0; background: rgba(51,24,18,.55); }
.final-cta-copy { position: relative; z-index: 1; padding: 2rem; }
.final-cta h2 { margin-bottom: 2rem; }

.site-footer {
  background: var(--burgundy-deep);
  color: white;
  padding: 4rem max(1.3rem, calc((100vw - var(--max)) / 2)) 2rem;
  display: grid;
  grid-template-columns: 1.4fr .7fr .7fr 1fr;
  gap: 2rem;
}
.footer-brand { display: inline-flex; flex-direction: column; }
.footer-brand span { font-family: "Cormorant Garamond", serif; font-size: 3rem; line-height: 1; }
.footer-brand small { letter-spacing: .15em; text-transform: uppercase; }
.site-footer > div:not(:first-child):not(.footer-bottom) { display: flex; flex-direction: column; gap: .55rem; }
.footer-title { text-transform: uppercase; letter-spacing: .15em; font-size: .7rem; font-weight: 600; }
.footer-note { font-family: "Cormorant Garamond", serif; font-size: 1.8rem; line-height: 1.15; color: #efcf9f; }
.footer-bottom {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255,255,255,.14);
  margin-top: 2rem;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: .72rem;
  opacity: .72;
}

.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  display: none;
  place-items: center;
  padding: 4rem 1rem 1rem;
  background: rgba(20,12,9,.92);
}
.lightbox.is-open { display: grid; }
.lightbox img { max-width: min(1100px, 94vw); max-height: 84vh; box-shadow: var(--shadow); }
.lightbox-close {
  position: absolute; top: 1rem; right: 1rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.5);
  background: transparent;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

.floating-whatsapp, .back-to-top {
  position: fixed;
  right: 1.2rem;
  z-index: 1200;
  box-shadow: 0 10px 28px rgba(0,0,0,.22);
}
.floating-whatsapp {
  bottom: 1.2rem;
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: 0 1.15rem;
  border-radius: 999px;
  color: white;
  background: #1e9b55;
  font-weight: 600;
}
.wa-icon { font-size: 1.2rem; transform: rotate(-16deg); }
.back-to-top {
  bottom: 5.6rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 0;
  background: var(--burgundy);
  color: white;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: .25s ease;
}
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: none; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .site-header { padding: 1rem 1.2rem; }
  .menu-toggle {
    display: grid;
    gap: 6px;
    width: 44px; height: 44px;
    place-content: center;
    border: 1px solid currentColor;
    background: transparent;
    color: inherit;
    z-index: 1002;
  }
  .menu-toggle span { width: 20px; height: 1px; background: currentColor; transition: .25s ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .site-nav {
    position: fixed; inset: 0;
    background: var(--cream);
    color: var(--ink);
    padding: 8rem 1.5rem 2rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.3rem;
    transform: translateX(100%);
    transition: transform .35s ease;
  }
  .site-nav.is-open { transform: none; }
  .site-nav a { font-family: "Cormorant Garamond", serif; font-size: 2.3rem; text-transform: none; letter-spacing: 0; }
  .site-nav .nav-cta { font-family: "DM Sans", sans-serif; font-size: .75rem; text-transform: uppercase; letter-spacing: .12em; margin-top: .5rem; }
  .story, .feature, .quote-section, .reviews, .visit { grid-template-columns: 1fr; }
  .feature-burgundy .feature-copy { order: 2; }
  .feature-burgundy .feature-image { order: 1; }
  .feature-image { min-height: 520px; }
  .feature { min-height: auto; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 240px; }
  .gallery-large { grid-column: span 2; }
  .gallery-wide { grid-column: span 2; }
  .quote-section > img { max-height: 550px; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 600px) {
  .hero-content { padding: 9rem 1.25rem 6rem; }
  .hero h1 { font-size: clamp(3.7rem, 17vw, 5.2rem); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .scroll-cue { display: none; }
  .story { padding-top: 4.5rem; }
  .story-image { min-height: 400px; }
  .feature-copy { padding: 4.5rem 1.35rem; }
  .feature-image { min-height: 430px; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 300px; }
  .gallery-large, .gallery-wide { grid-column: auto; grid-row: auto; }
  .gallery-note { min-height: 250px; }
  .reviews { padding-top: 5rem; padding-bottom: 5rem; }
  .review-slide blockquote { font-size: 2.5rem; }
  .map-wrap { min-height: 460px; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-bottom { grid-column: auto; }
  .wa-label { display: none; }
  .floating-whatsapp { width: 56px; padding: 0; justify-content: center; }
  .back-to-top { right: 1.45rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms!important; animation-iteration-count: 1!important; transition-duration: .01ms!important; }
  .reveal { opacity: 1; transform: none; }
}
