:root {
  --ink: #20130d;
  --ink-2: #2a1911;
  --ink-3: #3b2519;
  --cream: #f7efe3;
  --paper: #fffaf2;
  --sand: #e8d4b7;
  --gold: #d69a50;
  --gold-light: #efc987;
  --gold-dark: #a96c2e;
  --muted: #7b6d62;
  --line: rgba(97, 62, 38, .17);
  --white-line: rgba(255, 255, 255, .14);
  --shadow: 0 30px 70px rgba(35, 18, 9, .17);
  --container: 1220px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.65;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
button, a { font: inherit; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; display: block; }
button { border: 0; }
::selection { background: var(--gold); color: #fff; }

.skip-link {
  position: fixed;
  z-index: 9999;
  left: 18px;
  top: -100px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #fff;
  color: #111;
  transition: top .2s;
}
.skip-link:focus { top: 18px; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 120px 0; position: relative; }
.section--dark { background: var(--ink); color: var(--cream); }
.section--warm { background: #f0e1cc; }

.scroll-progress {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
}
.scroll-progress span { display: block; width: 0; height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
.ambient-glow {
  position: fixed;
  z-index: -1;
  width: 420px;
  height: 420px;
  left: var(--mouse-x, 50%);
  top: var(--mouse-y, 50%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(221, 164, 91, .11), transparent 65%);
  pointer-events: none;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  transition: background .35s ease, box-shadow .35s ease, transform .35s ease;
}
.site-header.is-scrolled {
  background: rgba(28, 16, 10, .88);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.header-shell { min-height: 94px; display: flex; align-items: center; gap: 36px; }
.brand { width: 175px; margin-right: auto; }
.brand img { width: 100%; height: auto; }
.desktop-nav { display: flex; align-items: center; gap: 30px; }
.desktop-nav a {
  color: rgba(255, 255, 255, .83);
  font-size: .77rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  position: relative;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 0;
  left: 0;
  bottom: -8px;
  background: var(--gold-light);
  transition: width .25s ease;
}
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { width: 100%; }

.button {
  min-height: 52px;
  padding: 0 25px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: .83rem;
  font-weight: 700;
  letter-spacing: .025em;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.button:hover { transform: translateY(-3px); }
.button:focus-visible, .menu-toggle:focus-visible, .sound-toggle:focus-visible, .lightbox-trigger:focus-visible, .accordion-item button:focus-visible { outline: 3px solid var(--gold-light); outline-offset: 4px; }
.button svg { width: 18px; height: 18px; fill: currentColor; }
.button--small { min-height: 44px; padding-inline: 20px; font-size: .75rem; }
.button--gold { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: #321d0e; box-shadow: 0 14px 35px rgba(196, 126, 48, .23); }
.button--gold:hover { box-shadow: 0 18px 40px rgba(196, 126, 48, .36); }
.button--ghost { border: 1px solid rgba(255,255,255,.36); color: #fff; background: rgba(255,255,255,.04); backdrop-filter: blur(8px); }
.button--ghost:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.72); }
.button--outline-gold { border: 1px solid var(--gold); color: var(--gold-light); background: transparent; }
.button--outline-gold:hover { background: var(--gold); color: var(--ink); }
.button--dark { background: var(--ink); color: #fff; box-shadow: 0 12px 35px rgba(34, 18, 10, .17); }
.button--outline-dark { border: 1px solid var(--ink); color: var(--ink); background: transparent; }
.button--outline-dark:hover { background: var(--ink); color: #fff; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  cursor: pointer;
}
.menu-toggle span { display: block; height: 1px; background: #fff; margin: 5px 0; transition: transform .25s, opacity .25s; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: -1;
  padding: 130px 32px 40px;
  background: rgba(25, 14, 9, .97);
  backdrop-filter: blur(18px);
}
.mobile-menu nav { display: grid; gap: 20px; }
.mobile-menu a { color: #fff; font-family: var(--serif); font-size: clamp(2rem, 9vw, 3.5rem); line-height: 1; }
.mobile-menu .button { margin-top: 20px; font-family: var(--sans); font-size: .9rem; }

.hero { min-height: 100svh; position: relative; display: grid; align-items: center; overflow: hidden; color: #fff; background: #160d08; }
.hero-media, .hero-video, .hero-shade, .hero-grain { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-video { object-fit: cover; object-position: center 52%; transform: scale(1.01); }
.hero-shade {
  background:
    linear-gradient(90deg, rgba(17, 9, 5, .9) 0%, rgba(20, 11, 7, .66) 46%, rgba(20, 11, 7, .2) 78%, rgba(20, 11, 7, .34) 100%),
    linear-gradient(0deg, rgba(14, 8, 5, .58), transparent 42%);
}
.hero-grain { opacity: .14; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.3'/%3E%3C/svg%3E"); mix-blend-mode: soft-light; }
.hero-layout { position: relative; z-index: 2; padding-top: 120px; padding-bottom: 80px; }
.hero-copy { max-width: 760px; }
.eyebrow {
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-light);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.eyebrow span { width: 44px; height: 1px; background: currentColor; }
.eyebrow--dark { color: var(--gold-dark); }
.hero h1, h2 { font-family: var(--serif); font-weight: 600; letter-spacing: -.035em; }
.hero h1 { margin: 0; font-size: clamp(4.2rem, 7vw, 7.6rem); line-height: .82; text-wrap: balance; }
.hero h1 em, h2 em { font-weight: 500; }
.hero-lead { max-width: 610px; margin: 32px 0 0; color: rgba(255,255,255,.78); font-size: clamp(1rem, 1.5vw, 1.18rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 35px; }
.hero-trust { display: flex; gap: 35px; margin-top: 46px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.17); max-width: 620px; }
.hero-trust span { color: rgba(255,255,255,.6); font-size: .72rem; }
.hero-trust strong { color: #fff; display: block; margin-bottom: 3px; font-size: .81rem; }
.sound-toggle {
  position: absolute;
  z-index: 3;
  right: 42px;
  bottom: 38px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(20, 11, 7, .48);
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(12px);
  cursor: pointer;
  font-size: .72rem;
}
.sound-toggle svg { width: 17px; height: 17px; fill: currentColor; }
.sound-toggle .sound-on { display: none; }
.sound-toggle[aria-pressed="true"] .sound-on { display: block; }
.sound-toggle[aria-pressed="true"] .sound-off { display: none; }
.scroll-cue { position: absolute; z-index: 3; left: 50%; bottom: 32px; transform: translateX(-50%); display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.66); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; }
.scroll-cue span { width: 6px; height: 6px; border: 1px solid #fff; border-radius: 50%; box-shadow: 0 0 0 6px rgba(255,255,255,.09); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { transform: scale(.8); opacity:.5 } 50% { transform: scale(1.2); opacity:1 } }

.section-intro { max-width: 780px; }
.section-intro--center { text-align: center; margin: 0 auto 65px; }
.section-intro--center .eyebrow { justify-content: center; }
h2 { margin: 0; font-size: clamp(3.1rem, 5.3vw, 5.6rem); line-height: .95; }
.section-intro > p:last-child { max-width: 680px; margin: 28px auto 0; color: var(--muted); }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.feature-card { position: relative; padding: 46px 28px 42px; min-height: 315px; border-right: 1px solid var(--line); transition: background .3s ease, transform .3s ease; }
.feature-card:last-child { border-right: 0; }
.feature-card:hover { background: #fff; transform: translateY(-5px); box-shadow: var(--shadow); z-index: 2; }
.feature-icon { width: 70px; height: 70px; display: grid; place-items: center; border: 1px solid rgba(175,111,47,.48); border-radius: 50%; color: var(--gold-dark); }
.feature-icon svg { width: 38px; height: 38px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.feature-number { position: absolute; top: 38px; right: 26px; margin: 0; color: rgba(34,18,10,.26); font-family: var(--serif); font-size: 1.3rem; }
.feature-card h3 { margin: 28px 0 12px; font-family: var(--serif); font-size: 1.75rem; line-height: 1; }
.feature-card > p:last-child { margin: 0; color: var(--muted); font-size: .85rem; }

.flavor-showcase { overflow: hidden; }
.flavor-showcase::before { content:""; position:absolute; width:600px; height:600px; right:-300px; top:100px; border:1px solid rgba(224,169,98,.12); border-radius:50%; box-shadow: 0 0 0 70px rgba(224,169,98,.035), 0 0 0 150px rgba(224,169,98,.02); }
.showcase-heading { position: relative; z-index: 1; display: grid; grid-template-columns: 1.35fr .65fr; align-items: end; gap: 60px; margin-bottom: 52px; }
.showcase-heading > p { margin: 0 0 8px; color: rgba(255,255,255,.58); max-width: 460px; }
.product-tabs { display: flex; gap: 8px; margin-bottom: 26px; overflow-x: auto; padding-bottom: 5px; scrollbar-width: none; }
.product-tabs::-webkit-scrollbar { display: none; }
.product-tab { white-space: nowrap; border: 1px solid rgba(255,255,255,.17); background: transparent; color: rgba(255,255,255,.68); min-height: 42px; padding: 0 18px; border-radius: 999px; cursor: pointer; font-size: .76rem; font-weight: 700; }
.product-tab.is-active { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.product-card { min-height: 510px; border: 1px solid rgba(255,255,255,.11); border-radius: 6px; overflow: hidden; background: rgba(255,255,255,.025); transition: transform .35s ease, border-color .35s ease, opacity .3s ease; }
.product-card:hover { transform: translateY(-7px); border-color: rgba(224,169,98,.42); }
.product-card.is-hidden { display: none; }
.product-card--large { grid-column: span 2; }
.product-card--wide { grid-column: span 2; }
.product-image { display: block; width: 100%; height: 330px; padding: 0; background: #111; overflow: hidden; position: relative; cursor: zoom-in; }
.product-card:not(.product-card--large):not(.product-card--wide) .product-image { height: 265px; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.65,.2,1); }
.product-card:hover .product-image img { transform: scale(1.06); }
.image-zoom { position: absolute; right: 18px; bottom: 18px; width: 38px; height: 38px; display:grid; place-items:center; border-radius:50%; background: rgba(31,17,10,.74); color:#fff; border:1px solid rgba(255,255,255,.22); font-size:1.35rem; backdrop-filter: blur(8px); }
.product-copy { padding: 25px; }
.product-copy > span { color: var(--gold-light); font-size: .65rem; text-transform: uppercase; letter-spacing: .14em; font-weight: 700; }
.product-copy h3 { margin: 7px 0 9px; font-family: var(--serif); font-size: 2rem; line-height: 1; }
.product-copy p { margin: 0; color: rgba(255,255,255,.56); font-size: .83rem; }
.center-action { text-align: center; margin-top: 40px; }

.story { overflow: hidden; }
.story-layout { display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: 100px; }
.story-copy > p:not(.eyebrow) { color: var(--muted); max-width: 570px; }
.story-copy h2 { margin-bottom: 32px; }
.story-signature { margin-top: 32px; font-family: var(--serif); font-style: italic; font-size: 2.4rem; color: var(--gold-dark); }
.text-link { margin-top: 25px; padding: 0 0 6px; background: transparent; border-bottom: 1px solid var(--ink); cursor: pointer; font-weight: 700; font-size: .82rem; }
.text-link span { margin-left: 8px; color: var(--gold-dark); }
.story-visual { min-height: 690px; position: relative; }
.story-card { position: absolute; overflow: hidden; box-shadow: var(--shadow); }
.story-card img { width: 100%; height: 100%; object-fit: cover; }
.story-card--main { inset: 0 0 40px 90px; border-radius: 50% 50% 9px 9px / 32% 32% 9px 9px; }
.story-card--floating { width: 45%; height: 45%; left: 0; bottom: 0; border: 10px solid var(--paper); border-radius: 4px; }
.round-stamp { position: absolute; right: -10px; bottom: 22px; width: 150px; height: 150px; display: grid; place-items: center; align-content: center; border: 1px solid var(--gold-dark); border-radius: 50%; color: var(--gold-dark); background: rgba(255,250,242,.91); transform: rotate(10deg); backdrop-filter: blur(8px); }
.round-stamp span { font-family: var(--serif); font-size: 1.35rem; font-style: italic; }
.round-stamp strong { font-size: 1.1rem; }

.gallery-heading { display: grid; grid-template-columns: 1.35fr .65fr; gap: 60px; align-items: end; margin-bottom: 55px; }
.gallery-heading > p { color: #726254; margin: 0 0 9px; }
.masonry-gallery { display: grid; grid-template-columns: 1.2fr .8fr .8fr; grid-template-rows: 310px 310px; gap: 14px; }
.gallery-item { position: relative; overflow: hidden; padding: 0; cursor: zoom-in; background: #2b1b13; border-radius: 5px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .85s cubic-bezier(.2,.65,.2,1), filter .4s; }
.gallery-item:hover img { transform: scale(1.06); filter: brightness(.78); }
.gallery-item::after { content:""; position:absolute; inset:0; background:linear-gradient(0deg,rgba(20,10,5,.7),transparent 55%); }
.gallery-item span { position:absolute; z-index:2; left:22px; bottom:18px; color:#fff; font-family:var(--serif); font-size:1.5rem; }
.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }

.events-layout { display: grid; grid-template-columns: 1fr .9fr; align-items: center; gap: 85px; }
.events-visual { position: relative; min-height: 680px; }
.events-visual img { width: 100%; height: 100%; min-height: 680px; object-fit: cover; border-radius: 45% 45% 4px 4px / 28% 28% 4px 4px; filter: brightness(.82) saturate(.86); }
.events-badge { position:absolute; right:-34px; bottom:70px; width:180px; height:180px; border-radius:50%; display:grid; place-items:center; align-content:center; background:var(--gold); color:var(--ink); transform:rotate(-8deg); box-shadow:var(--shadow); }
.events-badge span { font-size:.68rem; text-transform:uppercase; letter-spacing:.18em; }
.events-badge strong { font-family:var(--serif); font-size:1.8rem; font-style:italic; }
.events-copy > p:not(.eyebrow) { color: rgba(255,255,255,.62); }
.check-list { list-style:none; margin:30px 0 38px; padding:0; display:grid; gap:12px; }
.check-list li { border-bottom:1px solid rgba(255,255,255,.1); padding-bottom:12px; color:rgba(255,255,255,.76); font-size:.87rem; }
.check-list span { color:var(--gold-light); margin-right:9px; }

.reviews { background:linear-gradient(180deg,#fffaf2 0%,#f6ecdf 100%); overflow:hidden; }
.reviews-heading { display:grid; grid-template-columns:1.2fr .8fr; gap:70px; align-items:end; margin-bottom:48px; }
.reviews-copy > p:not(.eyebrow) { color:var(--muted); max-width:720px; margin:25px 0 0; }
.google-rating { display:flex; align-items:center; gap:22px; padding:28px 30px; border:1px solid var(--line); background:rgba(255,255,255,.62); box-shadow:0 18px 55px rgba(54,31,18,.08); }
.google-rating__score { font-family:var(--serif); font-size:5.3rem; line-height:.75; color:var(--gold-dark); }
.google-rating strong { display:block; margin-top:5px; font-family:var(--serif); font-size:1.45rem; }
.google-rating span { display:block; color:var(--muted); font-size:.72rem; margin-top:3px; }
.review-stars { color:#b8752f; letter-spacing:.12em; font-size:.88rem; }
.review-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.review-card { position:relative; min-height:315px; padding:34px 30px 30px; display:flex; flex-direction:column; border:1px solid var(--line); background:rgba(255,255,255,.7); transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.review-card::before { content:'“'; position:absolute; right:24px; top:12px; font-family:var(--serif); font-size:5rem; line-height:1; color:rgba(175,111,47,.12); }
.review-card:hover { transform:translateY(-7px); box-shadow:var(--shadow); border-color:rgba(175,111,47,.42); }
.review-card--featured { background:var(--ink); color:#fff; border-color:var(--ink); transform:translateY(-10px); }
.review-card--featured:hover { transform:translateY(-16px); }
.review-card--featured::before { color:rgba(224,169,98,.16); }
.review-card--featured .review-stars { color:var(--gold-light); }
.review-card blockquote { position:relative; z-index:1; margin:28px 0 36px; font-family:var(--serif); font-size:1.55rem; line-height:1.18; }
.review-card footer { margin-top:auto; padding-top:20px; border-top:1px solid var(--line); }
.review-card--featured footer { border-color:rgba(255,255,255,.13); }
.review-card footer strong { display:block; font-size:.78rem; }
.review-card footer span { display:block; margin-top:4px; color:var(--muted); font-size:.66rem; }
.review-card--featured footer span { color:rgba(255,255,255,.55); }
.reviews-actions { margin-top:34px; display:flex; justify-content:space-between; align-items:center; gap:30px; }
.reviews-actions p { max-width:650px; margin:0; color:var(--muted); font-size:.72rem; }

.location-layout { display:grid; grid-template-columns:.86fr 1.14fr; gap:25px; }
.location-card { padding:70px 65px; background:#fffaf2; box-shadow:var(--shadow); position:relative; z-index:2; }
.location-card h2 { font-size:clamp(3rem,4.4vw,4.8rem); }
.contact-list { display:grid; gap:22px; margin-top:38px; }
.contact-list > div { display:grid; grid-template-columns:42px 1fr; gap:15px; align-items:start; }
.contact-icon { width:42px; height:42px; display:grid; place-items:center; border:1px solid var(--line); border-radius:50%; color:var(--gold-dark); font-weight:700; }
.contact-list small { display:block; color:var(--gold-dark); font-size:.63rem; text-transform:uppercase; letter-spacing:.14em; font-weight:700; }
.contact-list strong { display:block; margin-top:3px; font-size:.84rem; line-height:1.5; }
.schedule-note { color:var(--muted); font-size:.71rem; margin-top:24px; }
.location-actions { display:flex; flex-wrap:wrap; gap:10px; margin-top:32px; }
.map-wrap { min-height:720px; position:relative; overflow:hidden; box-shadow:var(--shadow); }
.map-wrap iframe { border:0; width:100%; height:100%; min-height:720px; filter:sepia(.28) saturate(.72) contrast(.92); }
.map-label { position:absolute; left:25px; bottom:25px; padding:17px 22px; background:rgba(29,16,10,.92); color:#fff; backdrop-filter:blur(10px); }
.map-label span { display:block; color:var(--gold-light); font-size:.62rem; text-transform:uppercase; letter-spacing:.15em; }
.map-label strong { font-family:var(--serif); font-size:1.5rem; }

.faq-layout { display:grid; grid-template-columns:.72fr 1.28fr; gap:90px; }
.faq-intro > p:last-child { color:var(--muted); }
.accordion { border-top:1px solid var(--line); }
.accordion-item { border-bottom:1px solid var(--line); }
.accordion-item button { width:100%; padding:25px 0; display:flex; justify-content:space-between; align-items:center; gap:20px; text-align:left; background:transparent; cursor:pointer; font-family:var(--serif); font-size:1.6rem; }
.accordion-item i { position:relative; width:22px; height:22px; flex:0 0 22px; }
.accordion-item i::before, .accordion-item i::after { content:""; position:absolute; background:var(--gold-dark); left:0; top:10px; width:22px; height:1px; transition:transform .25s; }
.accordion-item i::after { transform:rotate(90deg); }
.accordion-item button[aria-expanded="true"] i::after { transform:rotate(0); }
.accordion-panel { display:grid; grid-template-rows:0fr; transition:grid-template-rows .3s ease; }
.accordion-panel p { overflow:hidden; margin:0; color:var(--muted); max-width:740px; }
.accordion-item.is-open .accordion-panel { grid-template-rows:1fr; }
.accordion-item.is-open .accordion-panel p { padding-bottom:25px; }

.final-cta { min-height:680px; position:relative; display:grid; place-items:center; color:#fff; overflow:hidden; background:#160c08; }
.final-cta-media, .final-cta-media::after { position:absolute; inset:0; }
.final-cta-media img { width:100%; height:100%; object-fit:cover; object-position:center; filter:brightness(.55); transform:scale(1.04); }
.final-cta-media::after { content:""; background:radial-gradient(circle at 50% 50%, rgba(25,12,6,.25), rgba(16,8,4,.8)); }
.final-cta-content { position:relative; z-index:2; text-align:center; max-width:850px; }
.final-cta-content .eyebrow { justify-content:center; }
.final-cta-content > p:not(.eyebrow) { color:rgba(255,255,255,.72); margin:25px auto 32px; }
.final-cta-content > div { display:flex; justify-content:center; flex-wrap:wrap; gap:10px; }

.site-footer { background:#130b07; color:rgba(255,255,255,.62); padding:75px 0 25px; }
.footer-grid { display:grid; grid-template-columns:1.45fr repeat(3,1fr); gap:65px; padding-bottom:55px; }
.footer-brand img { width:190px; }
.footer-brand p { max-width:240px; }
.footer-grid h3 { color:var(--gold-light); font-size:.7rem; letter-spacing:.16em; text-transform:uppercase; margin:0 0 19px; }
.footer-grid a, .footer-grid p { display:block; margin:0 0 9px; font-size:.78rem; }
.footer-grid a:hover { color:#fff; }
.footer-bottom { padding-top:20px; border-top:1px solid rgba(255,255,255,.08); display:flex; justify-content:space-between; gap:20px; font-size:.67rem; }
.footer-bottom p { margin:0; }

.floating-whatsapp { position:fixed; z-index:90; right:22px; bottom:22px; min-height:52px; padding:0 18px; display:flex; align-items:center; gap:9px; border-radius:999px; background:#1f8f4e; color:#fff; box-shadow:0 16px 38px rgba(16,93,50,.35); cursor:pointer; font-weight:700; font-size:.75rem; transform:translateY(90px); transition:transform .35s ease, box-shadow .25s; }
.floating-whatsapp.is-visible { transform:translateY(0); }
.floating-whatsapp:hover { box-shadow:0 20px 45px rgba(16,93,50,.5); }
.floating-whatsapp svg { width:21px; height:21px; fill:currentColor; }

.demo-dialog, .lightbox { padding:0; border:0; color:var(--ink); background:#fffaf2; box-shadow:0 40px 110px rgba(0,0,0,.4); }
.demo-dialog::backdrop, .lightbox::backdrop { background:rgba(15,8,4,.78); backdrop-filter:blur(7px); }
.demo-dialog { width:min(calc(100% - 30px),560px); padding:52px; border-radius:5px; }
.dialog-close, .lightbox-close { position:absolute; right:15px; top:12px; width:40px; height:40px; border-radius:50%; background:rgba(40,20,10,.07); cursor:pointer; font-size:1.7rem; }
.dialog-kicker { color:var(--gold-dark); text-transform:uppercase; letter-spacing:.15em; font-size:.64rem; font-weight:700; }
.demo-dialog h2 { font-size:2.8rem; margin:10px 0 18px; }
.demo-dialog p { color:var(--muted); }
.demo-dialog .button { margin-top:15px; }
.lightbox { width:min(92vw,1200px); max-height:92vh; background:#100907; overflow:hidden; }
.lightbox img { width:100%; max-height:92vh; object-fit:contain; }
.lightbox-close { z-index:2; color:#fff; background:rgba(0,0,0,.5); }

.reveal { opacity:1; transform:none; }
.js .reveal { opacity:0; transform:translate3d(0,28px,0); transition:opacity .78s ease, transform .78s cubic-bezier(.2,.65,.2,1); will-change:opacity,transform; }
.js .reveal.is-visible { opacity:1; transform:translate3d(0,0,0); will-change:auto; }

@media (max-width:800px) {
  .js .reveal { transform:translate3d(0,20px,0); transition-duration:.62s; }
}

@media (max-width: 1080px) {
  .desktop-nav { display:none; }
  .header-shell > .button { display:none; }
  .menu-toggle { display:block; }
  .feature-grid { grid-template-columns:repeat(2,1fr); }
  .feature-card:nth-child(2) { border-right:0; }
  .feature-card:nth-child(-n+2) { border-bottom:1px solid var(--line); }
  .product-grid { grid-template-columns:repeat(2,1fr); }
  .product-card--large, .product-card--wide { grid-column:span 2; }
  .story-layout, .events-layout, .location-layout, .faq-layout { gap:55px; }
  .reviews-heading { gap:40px; }
  .story-layout { grid-template-columns:.85fr 1.15fr; }
  .footer-grid { grid-template-columns:1.2fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column:2; }
}

@media (max-width: 800px) {
  .container { width:min(calc(100% - 30px), var(--container)); }
  .section { padding:85px 0; }
  .header-shell { min-height:76px; }
  .brand { width:145px; }
  .hero-layout { padding-top:120px; }
  .hero h1 { font-size:clamp(3.55rem,16vw,5.7rem); }
  .hero-shade { background:linear-gradient(90deg,rgba(17,9,5,.9),rgba(17,9,5,.54)),linear-gradient(0deg,rgba(14,8,5,.72),transparent 50%); }
  .hero-trust { gap:20px; flex-direction:column; }
  .sound-toggle { right:15px; bottom:18px; }
  .scroll-cue { display:none; }
  .showcase-heading, .gallery-heading, .story-layout, .events-layout, .location-layout, .faq-layout, .reviews-heading { grid-template-columns:1fr; }
  .review-grid { grid-template-columns:1fr; }
  .review-card--featured { transform:none; }
  .review-card--featured:hover { transform:translateY(-7px); }
  .reviews-actions { align-items:flex-start; flex-direction:column; }
  .showcase-heading, .gallery-heading { gap:20px; }
  .feature-grid { grid-template-columns:1fr; }
  .feature-card { border-right:0; border-bottom:1px solid var(--line); min-height:0; }
  .feature-card:last-child { border-bottom:0; }
  .product-grid { grid-template-columns:1fr; }
  .product-card, .product-card--large, .product-card--wide { grid-column:span 1; min-height:0; }
  .product-image, .product-card:not(.product-card--large):not(.product-card--wide) .product-image { height:300px; }
  .story-visual { min-height:570px; }
  .story-card--main { left:30px; }
  .round-stamp { width:120px; height:120px; right:-5px; }
  .masonry-gallery { grid-template-columns:1fr 1fr; grid-template-rows:260px 240px 260px; }
  .gallery-item--tall { grid-row:span 2; }
  .gallery-item--wide { grid-column:span 2; }
  .events-layout { gap:45px; }
  .events-visual, .events-visual img { min-height:520px; }
  .events-badge { right:10px; width:140px; height:140px; }
  .location-card { padding:50px 32px; }
  .map-wrap, .map-wrap iframe { min-height:480px; }
  .faq-layout { gap:35px; }
  .footer-grid { grid-template-columns:1fr 1fr; gap:40px; }
  .footer-grid > div:last-child { grid-column:auto; }
  .footer-bottom { flex-direction:column; }
}

@media (max-width: 540px) {
  .section { padding:72px 0; }
  h2 { font-size:clamp(2.9rem,14vw,4rem); }
  .hero { min-height:820px; }
  .hero-video { object-position:55% center; }
  .hero-copy { padding-bottom:40px; }
  .hero h1 { line-height:.88; }
  .hero-actions { flex-direction:column; align-items:stretch; }
  .button { width:100%; }
  .feature-card { padding-inline:18px; }
  .product-image, .product-card:not(.product-card--large):not(.product-card--wide) .product-image { height:245px; }
  .story-visual { min-height:460px; }
  .story-card--main { left:20px; bottom:30px; }
  .story-card--floating { border-width:6px; width:48%; }
  .round-stamp { width:100px; height:100px; }
  .round-stamp span { font-size:1rem; }
  .masonry-gallery { grid-template-columns:1fr; grid-template-rows:repeat(4,280px); }
  .gallery-item--tall, .gallery-item--wide { grid-row:auto; grid-column:auto; }
  .events-visual, .events-visual img { min-height:430px; }
  .google-rating { padding:24px 20px; }
  .google-rating__score { font-size:4.5rem; }
  .review-card { min-height:0; padding:30px 23px; }
  .location-card { padding:38px 22px; }
  .location-actions { flex-direction:column; }
  .accordion-item button { font-size:1.35rem; }
  .final-cta { min-height:620px; }
  .final-cta-content > div { flex-direction:column; }
  .footer-grid { grid-template-columns:1fr; }
  .floating-whatsapp { right:14px; bottom:14px; width:54px; padding:0; justify-content:center; }
  .floating-whatsapp span { display:none; }
  .demo-dialog { padding:45px 25px 30px; }
  .demo-dialog h2 { font-size:2.4rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  *, *::before, *::after { animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; }
  .hero-video { display:none; }
  .hero-media { background:url("assets/images/hero-poster.jpg") center/cover no-repeat; }
  .reveal { opacity:1; transform:none; }
}
