/* ============================================================
   NOIDA DAILY MART — Luxury Digital Authority
   Design system: Deep Forest Green · Warm Ivory · Champagne Gold
   Typography: Playfair Display (display) · Inter (text)
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --green-950: #08201a;
  --green-900: #0b2a21;
  --green-800: #123528;
  --green-700: #1b4332;
  --green-600: #2d6a4f;
  --green-500: #40916c;
  --green-300: #95d5b2;
  --green-100: #d8efe2;

  --ivory: #faf7f0;
  --ivory-soft: #f4efe4;
  --ivory-dim: #ece4d3;
  --paper: #ffffff;

  --gold: #b9933f;
  --gold-deep: #9c7a33;
  --gold-soft: #d8bd7e;
  --gold-pale: #efe1bf;
  --gold-grad: linear-gradient(135deg, #f3e1a6 0%, #cda84f 42%, #9c7733 100%);
  --gold-grad-soft: linear-gradient(135deg, #e9d6a0 0%, #c5a14c 100%);

  --ink: #1c2420;
  --ink-soft: #46514a;
  --muted: #7a8079;
  --line: rgba(27, 67, 50, 0.14);
  --line-gold: rgba(185, 147, 63, 0.34);

  --on-dark: #f2ede1;
  --on-dark-soft: #c7cdc4;

  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --space-section: clamp(4.5rem, 9vw, 9rem);
  --container: 1240px;
  --container-narrow: 760px;
  --radius: 4px;
  --radius-lg: 10px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.6s;

  --shadow-sm: 0 1px 2px rgba(8, 32, 26, 0.05), 0 6px 18px rgba(8, 32, 26, 0.06);
  --shadow-md: 0 10px 40px rgba(8, 32, 26, 0.10);
  --shadow-lg: 0 30px 80px rgba(8, 32, 26, 0.16);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.65;
  font-size: 1.0625rem;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, picture, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; padding: 0; }
input, textarea, select { font: inherit; color: inherit; }

::selection { background: var(--gold-soft); color: var(--green-900); }

:focus-visible { outline: 2px solid var(--gold-deep); outline-offset: 3px; border-radius: 2px; }
:target, [id] { scroll-margin-top: 96px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.12; letter-spacing: -0.01em; color: var(--green-900); }
h1 { font-size: clamp(2.5rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.25rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.95rem); }
h4 { font-size: clamp(1.15rem, 1.6vw, 1.4rem); }
p { color: var(--ink-soft); }
strong { color: var(--ink); font-weight: 600; }
.serif-italic { font-family: var(--font-display); font-style: italic; font-weight: 400; }

.eyebrow {
  font-family: var(--font-sans); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold-deep);
  display: inline-flex; align-items: center; gap: 0.7rem;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--gold); display: inline-block; }
.eyebrow.center::after { content: ""; width: 28px; height: 1px; background: var(--gold); display: inline-block; }
.eyebrow.center { justify-content: center; }
.eyebrow.no-line::before, .eyebrow.no-line::after { display: none; }

.lead { font-size: clamp(1.15rem, 1.7vw, 1.4rem); line-height: 1.6; color: var(--ink-soft); font-weight: 400; }
.text-gold { color: var(--gold-deep); }
.text-center { text-align: center; }
.measure { max-width: 62ch; }
.measure-narrow { max-width: 46ch; }

.gold-text { background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); }
.container-narrow { max-width: var(--container-narrow); }
.section { padding-block: var(--space-section); }
.section-sm { padding-block: clamp(3rem, 6vw, 5rem); }
.bg-ivory-soft { background: var(--ivory-soft); }
.bg-paper { background: var(--paper); }
.bg-green { background: var(--green-800); color: var(--on-dark); }
.bg-green-deep { background: radial-gradient(120% 120% at 50% 0%, var(--green-800) 0%, var(--green-950) 100%); color: var(--on-dark); }
.bg-green h1, .bg-green h2, .bg-green h3, .bg-green h4,
.bg-green-deep h1, .bg-green-deep h2, .bg-green-deep h3, .bg-green-deep h4 { color: var(--on-dark); }
.bg-green p, .bg-green-deep p { color: var(--on-dark-soft); }

.grid { display: grid; gap: clamp(1.5rem, 3vw, 2.5rem); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 6rem); align-items: center; }

.section-head { max-width: 720px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 1.25rem; }
.section-head h2 + p { margin-top: 1.25rem; }
.stack > * + * { margin-top: 1.1rem; }

.divider { height: 1px; background: var(--line); border: 0; }
.rule-gold { width: 56px; height: 2px; background: var(--gold-grad); border: 0; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--green-700); --btn-fg: var(--ivory);
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  padding: 0.95rem 1.7rem; background: var(--btn-bg); color: var(--btn-fg);
  font-family: var(--font-sans); font-size: 0.92rem; font-weight: 600; letter-spacing: 0.02em;
  border-radius: 100px; border: 1px solid transparent;
  transition: transform var(--dur) var(--ease), background-color .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn .ico { width: 18px; height: 18px; }
.btn-gold { --btn-bg: transparent; color: var(--green-900); background: var(--gold-grad); }
.btn-gold:hover { box-shadow: 0 12px 30px rgba(156, 122, 51, 0.35); }
.btn-outline { background: transparent; color: var(--green-800); border-color: var(--line-gold); }
.btn-outline:hover { background: var(--green-700); color: var(--ivory); border-color: var(--green-700); }
.btn-ghost-light { background: transparent; color: var(--on-dark); border-color: rgba(242,237,225,0.32); }
.btn-ghost-light:hover { background: var(--ivory); color: var(--green-900); border-color: var(--ivory); }
.btn-whatsapp { --btn-bg: #1f8f5f; color: #fff; }
.btn-lg { padding: 1.1rem 2.1rem; font-size: 1rem; }
.btn-block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.9rem; }

.link-arrow { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 600; font-size: 0.95rem; color: var(--green-700); letter-spacing: 0.01em; }
.link-arrow .ico { transition: transform .35s var(--ease); }
.link-arrow:hover .ico { transform: translateX(5px); }
.bg-green .link-arrow, .bg-green-deep .link-arrow { color: var(--gold-soft); }

/* ---------- Header ---------- */
.site-header { position: fixed; inset: 0 0 auto 0; z-index: 100; transition: background-color .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease); padding-block: 1.1rem; }
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 1.4rem; }
.site-header.scrolled { background: rgba(250, 247, 240, 0.86); backdrop-filter: blur(14px) saturate(1.2); -webkit-backdrop-filter: blur(14px) saturate(1.2); box-shadow: 0 1px 0 var(--line); padding-block: 0.7rem; }

.brand { display: inline-flex; align-items: center; gap: 0.7rem; }
.brand__mark { width: 42px; height: 42px; flex: none; transition: transform .5s var(--ease); }
.brand:hover .brand__mark { transform: rotate(-4deg) scale(1.04); }
.brand__name { display: flex; flex-direction: column; line-height: 1; }
.brand__name b { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; letter-spacing: 0.04em; color: var(--green-900); }
.brand__name span { font-size: 0.58rem; letter-spacing: 0.34em; text-transform: uppercase; color: var(--gold-deep); margin-top: 0.32rem; font-weight: 600; }

.site-header:not(.scrolled).on-hero .brand__name b { color: var(--ivory); }
.site-header:not(.scrolled).on-hero .nav-links a { color: var(--on-dark-soft); }
.site-header:not(.scrolled).on-hero .nav-links a:hover,
.site-header:not(.scrolled).on-hero .nav-links a[aria-current="page"] { color: var(--ivory); }
.site-header:not(.scrolled).on-hero .menu-toggle span { background: var(--ivory); }

.nav { display: flex; align-items: center; gap: 2.2rem; }
.nav-links { display: flex; align-items: center; gap: 1.9rem; }
.nav-links a { font-size: 0.9rem; font-weight: 500; letter-spacing: 0.01em; color: var(--ink-soft); position: relative; padding-block: 0.3rem; transition: color .3s var(--ease); }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0; background: var(--gold-grad); transition: width .35s var(--ease); }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--green-900); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { width: 100%; }

.header-cta { display: inline-flex; align-items: center; gap: 0.75rem; }

.menu-toggle { display: none; width: 30px; height: 22px; position: relative; z-index: 120; }
.menu-toggle span { position: absolute; left: 0; height: 2px; width: 100%; background: var(--green-900); transition: transform .4s var(--ease), opacity .3s var(--ease), top .4s var(--ease); }
.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 10px; }
.menu-toggle span:nth-child(3) { top: 20px; }
body.menu-open .menu-toggle span:nth-child(1) { top: 10px; transform: rotate(45deg); }
body.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .menu-toggle span:nth-child(3) { top: 10px; transform: rotate(-45deg); }
body.menu-open .menu-toggle span { background: var(--green-900) !important; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; background: radial-gradient(130% 120% at 75% 12%, #18402f 0%, #0b2a21 48%, #07201a 100%); color: var(--on-dark); overflow: hidden; isolation: isolate; }
.hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background-image: radial-gradient(40% 50% at 85% 30%, rgba(185,147,63,0.18), transparent 70%), radial-gradient(30% 40% at 10% 80%, rgba(45,106,79,0.4), transparent 70%); }
.hero__wreath { position: absolute; right: -6%; top: 50%; transform: translateY(-50%); width: min(58vw, 760px); opacity: 0.12; z-index: -1; pointer-events: none; }
.hero .container { padding-top: 7rem; padding-bottom: 4rem; }
.hero__inner { max-width: 760px; }
.hero h1 { color: var(--ivory); margin-top: 1.5rem; }
.hero h1 .gold-text { display: block; }
.hero__sub { margin-top: 1.8rem; max-width: 33rem; font-size: clamp(1.1rem, 1.6vw, 1.3rem); color: var(--on-dark-soft); }
.hero .btn-row { margin-top: 2.6rem; }
.hero__meta { margin-top: 3.5rem; display: flex; flex-wrap: wrap; gap: 2.5rem; padding-top: 2rem; border-top: 1px solid rgba(242,237,225,0.16); }
.hero__meta .stat b { font-family: var(--font-display); font-size: 2.1rem; color: var(--gold-soft); display: block; line-height: 1; }
.hero__meta .stat span { font-size: 0.82rem; letter-spacing: 0.04em; color: var(--on-dark-soft); margin-top: 0.5rem; display: block; }

.scroll-hint { position: absolute; left: 50%; bottom: 1.8rem; transform: translateX(-50%); font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--on-dark-soft); display: flex; flex-direction: column; align-items: center; gap: 0.6rem; opacity: 0.8; }
.scroll-hint .line { width: 1px; height: 40px; background: linear-gradient(var(--gold-soft), transparent); animation: scrollLine 2.2s var(--ease) infinite; }
@keyframes scrollLine { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

.page-hero { position: relative; padding-top: 9rem; padding-bottom: clamp(3rem,6vw,5rem); background: radial-gradient(120% 130% at 80% 0%, #163b2c, #0b2a21 70%); color: var(--on-dark); overflow: hidden; }
.page-hero::after { content:""; position:absolute; inset:0; background: radial-gradient(35% 60% at 90% 20%, rgba(185,147,63,0.14), transparent 70%); pointer-events:none; }
.page-hero h1 { color: var(--ivory); margin-top: 1.2rem; max-width: 16ch; }
.page-hero p { color: var(--on-dark-soft); margin-top: 1.4rem; max-width: 60ch; }
.page-hero .eyebrow { color: var(--gold-soft); }
.page-hero .eyebrow::before { background: var(--gold-soft); }

.breadcrumb { font-size: 0.82rem; color: var(--on-dark-soft); display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; }
.breadcrumb a:hover { color: var(--gold-soft); }
.breadcrumb .sep { opacity: 0.5; }
.breadcrumb-light a:hover { color: var(--green-700); }

/* ---------- Cards ---------- */
.card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2rem; transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease); height: 100%; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--line-gold); }
.card .ico-badge { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; background: var(--green-100); color: var(--green-700); margin-bottom: 1.4rem; }
.card h3 { font-size: 1.35rem; margin-bottom: 0.7rem; }
.card p { font-size: 0.98rem; }

.feature { padding: 1.8rem 0; border-top: 1px solid rgba(242,237,225,0.16); }
.feature .num { font-family: var(--font-display); font-size: 0.95rem; color: var(--gold-soft); letter-spacing: 0.1em; }
.feature h3 { color: var(--ivory); margin: 0.8rem 0 0.6rem; font-size: 1.3rem; }
.feature p { color: var(--on-dark-soft); font-size: 0.97rem; }

.loc-card { position: relative; display: flex; flex-direction: column; overflow: hidden; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.loc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.loc-card__media { aspect-ratio: 16/11; position: relative; overflow: hidden; }
.loc-card__media .ph-img { height: 100%; border-radius: 0; }
.loc-card__tag { position: absolute; top: 1rem; left: 1rem; background: rgba(11,42,33,0.78); color: var(--gold-soft); font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; padding: 0.4rem 0.8rem; border-radius: 100px; backdrop-filter: blur(4px); z-index: 2; }
.loc-card__body { padding: 1.7rem; display: flex; flex-direction: column; flex: 1; }
.loc-card__body h3 { font-size: 1.45rem; margin-bottom: 0.4rem; }
.loc-card__addr { font-size: 0.9rem; color: var(--muted); margin-bottom: 1rem; }
.loc-card__foot { margin-top: auto; padding-top: 1.2rem; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--line); }
.loc-card.is-nearest { outline: 2px solid var(--gold); outline-offset: -2px; box-shadow: var(--shadow-lg); }
.loc-card__dist { display: inline-block; font-size: 0.82rem; font-weight: 600; color: var(--green-600); margin: 0.3rem 0 0.4rem; }
.loc-card__dist:empty { display: none; }
.nearest-tools { display: flex; flex-wrap: wrap; gap: 0.8rem; align-items: center; }
.nearest-badge { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--gold-deep); background: var(--gold-pale); border-radius: 100px; padding: 0.3rem 0.8rem; }

.ph-img { width: 100%; aspect-ratio: 4/3; position: relative; overflow: hidden; background: linear-gradient(135deg, rgba(185,147,63,0.10), rgba(27,67,50,0.04)), repeating-linear-gradient(45deg, var(--ivory-soft) 0 14px, var(--ivory-dim) 14px 28px); display: grid; place-items: center; color: var(--green-700); border-radius: var(--radius-lg); }
.ph-img[data-mono] { background: linear-gradient(150deg, var(--green-700), var(--green-900)); color: var(--gold-soft); }
.ph-img .ph-emblem { width: 46%; max-width: 130px; opacity: 0.5; }
.ph-img .art { position: absolute; inset: 0; width: 100%; height: 100%; max-width: none; object-fit: cover; }
.ph-img figcaption { position: absolute; z-index: 2; bottom: 0; left: 0; right: 0; padding: 0.6rem 0.9rem; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--on-dark); background: linear-gradient(transparent, rgba(8,32,26,0.65)); }

.answer-box { background: var(--green-800); color: var(--on-dark); border-radius: var(--radius-lg); padding: clamp(1.6rem, 3vw, 2.4rem); border: 1px solid rgba(185,147,63,0.28); position: relative; }
.answer-box .eyebrow { color: var(--gold-soft); margin-bottom: 1rem; }
.answer-box .eyebrow::before { background: var(--gold-soft); }
.answer-box p { color: var(--on-dark); font-size: 1.05rem; }
.answer-box strong { color: var(--gold-soft); }

.tldr { border-left: 3px solid var(--gold); background: var(--ivory-soft); padding: 1.3rem 1.6rem; border-radius: 0 var(--radius) var(--radius) 0; }
.tldr .eyebrow { margin-bottom: 0.6rem; }
.tldr p { color: var(--ink); margin: 0; }

.facts { display: grid; gap: 0; border-top: 1px solid var(--line); }
.facts div { display: grid; grid-template-columns: 200px 1fr; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--line); font-size: 0.97rem; }
.facts dt { color: var(--muted); font-weight: 500; }
.facts dd { color: var(--ink); font-weight: 500; }
.facts a { color: var(--green-600); font-weight: 600; }

.timeline { position: relative; margin-top: 3rem; }
.timeline::before { content: ""; position: absolute; left: 0; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(var(--gold-soft), var(--line)); }
.tl-item { position: relative; padding: 0 0 3rem 2.6rem; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before { content: ""; position: absolute; left: -7px; top: 4px; width: 16px; height: 16px; border-radius: 50%; background: var(--ivory); border: 2px solid var(--gold); }
.tl-item.is-active::before { background: var(--gold-grad); box-shadow: 0 0 0 5px rgba(185,147,63,0.18); }
.tl-year { font-family: var(--font-display); font-size: 1.8rem; color: var(--green-700); line-height: 1; }
.tl-item h3 { font-size: 1.3rem; margin: 0.5rem 0 0.5rem; }
.tl-item p { font-size: 0.98rem; max-width: 54ch; }
.bg-green .timeline::before, .bg-green-deep .timeline::before { background: linear-gradient(var(--gold-soft), rgba(242,237,225,0.15)); }
.bg-green .tl-item::before, .bg-green-deep .tl-item::before { background: var(--green-900); }
.bg-green .tl-year, .bg-green-deep .tl-year { color: var(--gold-soft); }

.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; padding: 1.5rem 0; text-align: left; font-family: var(--font-display); font-size: clamp(1.1rem, 1.7vw, 1.3rem); color: var(--green-900); transition: color .3s var(--ease); }
.faq__q:hover { color: var(--gold-deep); }
.faq__icon { flex: none; width: 26px; height: 26px; position: relative; }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; background: var(--gold-deep); transition: transform .4s var(--ease); }
.faq__icon::before { top: 50%; left: 0; width: 100%; height: 2px; transform: translateY(-50%); }
.faq__icon::after { left: 50%; top: 0; width: 2px; height: 100%; transform: translateX(-50%); }
.faq__item[aria-expanded="true"] .faq__icon::after { transform: translateX(-50%) scaleY(0); }
.faq__a { overflow: hidden; max-height: 0; transition: max-height .5s var(--ease); }
.faq__a-inner { padding: 0 0 1.6rem; max-width: 70ch; }
.faq__a-inner p + p { margin-top: 0.9rem; }

.review { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2rem; height: 100%; display: flex; flex-direction: column; }
.review .stars { color: var(--gold); letter-spacing: 0.15em; margin-bottom: 1rem; font-size: 0.95rem; }
.review blockquote { font-family: var(--font-display); font-size: 1.18rem; line-height: 1.5; color: var(--green-900); font-style: italic; }
.review .who { margin-top: auto; padding-top: 1.4rem; display: flex; align-items: center; gap: 0.9rem; }
.review .avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--gold-grad-soft); display: grid; place-items: center; font-family: var(--font-display); color: var(--green-900); font-weight: 600; }
.review .who b { display: block; font-size: 0.95rem; color: var(--ink); }
.review .who span { font-size: 0.82rem; color: var(--muted); }

.rating-summary { display: inline-flex; align-items: center; gap: 1rem; background: var(--ivory-soft); border: 1px solid var(--line-gold); border-radius: 100px; padding: 0.6rem 1.3rem; }
.rating-summary .score { font-family: var(--font-display); font-size: 1.6rem; color: var(--green-800); }
.rating-summary .stars { color: var(--gold); }

.statband { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.statband .stat b { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.2rem); color: var(--gold-soft); display: block; line-height: 1; }
.statband .stat span { font-size: 0.85rem; letter-spacing: 0.06em; color: var(--on-dark-soft); margin-top: 0.7rem; display: block; }

.cta-band { background: radial-gradient(120% 140% at 50% 0%, #18402f, #0b2a21 70%); color: var(--on-dark); text-align: center; position: relative; overflow: hidden; }
.cta-band::after { content:""; position:absolute; inset:0; background: radial-gradient(40% 60% at 50% 120%, rgba(185,147,63,0.2), transparent 70%); }
.cta-band .container { position: relative; }
.cta-band h2 { color: var(--ivory); }
.cta-band p { color: var(--on-dark-soft); margin: 1.2rem auto 0; max-width: 52ch; }
.cta-band .btn-row { justify-content: center; margin-top: 2.4rem; }

.prose { max-width: 720px; margin-inline: auto; }
.prose p, .prose li { font-size: 1.12rem; line-height: 1.8; color: var(--ink-soft); }
.prose > p + p { margin-top: 1.4rem; }
.prose h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin: 3rem 0 1.1rem; }
.prose h3 { font-size: clamp(1.3rem, 2.2vw, 1.6rem); margin: 2.3rem 0 0.9rem; }
.prose ul, .prose ol { margin: 1.2rem 0; padding-left: 1.3rem; }
.prose ul li { list-style: none; position: relative; padding-left: 1.5rem; margin: 0.6rem 0; }
.prose ul li::before { content: ""; position: absolute; left: 0; top: 0.7em; width: 7px; height: 7px; background: var(--gold-grad); border-radius: 50%; }
.prose ol { list-style: decimal; }
.prose ol li { margin: 0.6rem 0; padding-left: 0.4rem; }
.prose ol li::marker { color: var(--gold-deep); font-family: var(--font-display); }
.prose a { color: var(--green-600); font-weight: 600; border-bottom: 1px solid var(--line-gold); transition: color .3s, border-color .3s; }
.prose a:hover { color: var(--gold-deep); border-color: var(--gold); }
.prose blockquote { margin: 2rem 0; padding: 1.4rem 1.8rem; border-left: 3px solid var(--gold); background: var(--ivory-soft); font-family: var(--font-display); font-style: italic; font-size: 1.25rem; color: var(--green-900); border-radius: 0 var(--radius) var(--radius) 0; }
.prose blockquote p { color: var(--green-900); font-size: 1.25rem; }
.prose img, .prose .ph-img { margin: 2rem 0; }
.prose figcaption { text-align: center; font-size: 0.85rem; color: var(--muted); margin-top: 0.6rem; }

.article-meta { display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; align-items: center; font-size: 0.88rem; color: var(--muted); }
.article-meta .pill { background: var(--ivory-soft); border: 1px solid var(--line); padding: 0.3rem 0.85rem; border-radius: 100px; color: var(--green-700); font-weight: 600; letter-spacing: 0.04em; }
.share-cta { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--line); }

.post-card { display: flex; flex-direction: column; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: transform .5s var(--ease), box-shadow .5s var(--ease); height: 100%; }
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.post-card__media { aspect-ratio: 16/10; }
.post-card__media .ph-img { height: 100%; border-radius: 0; }
.post-card__body { padding: 1.6rem; display: flex; flex-direction: column; flex: 1; }
.post-card__cat { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; }
.post-card__body h3 { font-size: 1.28rem; margin: 0.7rem 0 0.7rem; line-height: 1.25; }
.post-card__body p { font-size: 0.95rem; }
.post-card__foot { margin-top: auto; padding-top: 1.2rem; font-size: 0.82rem; color: var(--muted); }

.form-grid { display: grid; gap: 1.3rem; }
.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field label { font-size: 0.85rem; font-weight: 600; letter-spacing: 0.02em; color: var(--green-900); }
.field input, .field select, .field textarea { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 0.85rem 1rem; font-size: 1rem; transition: border-color .3s, box-shadow .3s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(185,147,63,0.16); }
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.82rem; color: var(--muted); }

/* ---------- Footer ---------- */
.site-footer { background: var(--green-950); color: var(--on-dark-soft); padding-top: clamp(4rem, 7vw, 6rem); }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: clamp(2rem, 4vw, 3rem); padding-bottom: 3.5rem; border-bottom: 1px solid rgba(242,237,225,0.12); }
.footer-brand .brand__name b { color: var(--ivory); }
.footer-logo { display: inline-block; }
.footer-logo img { width: clamp(196px, 17vw, 244px); height: auto; }
.footer-brand p { margin-top: 1.6rem; max-width: 32ch; font-size: 0.95rem; color: var(--on-dark-soft); }
.footer-col h4 { color: var(--ivory); font-family: var(--font-sans); font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 1.2rem; font-weight: 600; }
.footer-col ul li { margin-bottom: 0.7rem; }
.footer-col a { font-size: 0.93rem; color: var(--on-dark-soft); transition: color .3s; }
.footer-col a:hover { color: var(--gold-soft); }
.footer-contact a { display: flex; gap: 0.6rem; align-items: flex-start; }
.footer-contact .ico { width: 17px; height: 17px; color: var(--gold-soft); margin-top: 3px; flex: none; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding: 1.8rem 0; font-size: 0.82rem; color: var(--on-dark-soft); }
.footer-bottom a:hover { color: var(--gold-soft); }
.footer-social { display: flex; gap: 0.8rem; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(242,237,225,0.18); display: grid; place-items: center; transition: background .3s, border-color .3s, color .3s; }
.footer-social a:hover { background: var(--gold-grad); border-color: transparent; color: var(--green-900); }
.footer-social .ico { width: 17px; height: 17px; }

/* ---------- Sticky conversion CTAs ---------- */
.float-cta { position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 90; display: flex; flex-direction: column; gap: 0.7rem; }
.float-cta a { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; box-shadow: var(--shadow-md); color: #fff; transition: transform .3s var(--ease); position: relative; }
.float-cta a:hover { transform: scale(1.08); }
.float-cta .fc-call { background: var(--green-700); }
.float-cta .fc-wa { background: #1f8f5f; }
.float-cta .ico { width: 26px; height: 26px; }
.float-cta a::after { content: attr(data-label); position: absolute; right: 120%; top: 50%; transform: translateY(-50%) translateX(6px); background: var(--green-900); color: var(--ivory); font-size: 0.78rem; padding: 0.4rem 0.7rem; border-radius: 6px; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity .3s, transform .3s; }
.float-cta a:hover::after { opacity: 1; transform: translateY(-50%) translateX(0); }
.float-cta .pulse { animation: pulse 2.4s var(--ease) infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(31,143,95,0.5); } 70% { box-shadow: 0 0 0 14px rgba(31,143,95,0); } 100% { box-shadow: 0 0 0 0 rgba(31,143,95,0); } }

.mobile-bar { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 95; background: var(--paper); border-top: 1px solid var(--line); box-shadow: 0 -6px 24px rgba(8,32,26,0.08); }
.mobile-bar a { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 0.2rem; padding: 0.6rem; font-size: 0.72rem; font-weight: 600; color: var(--green-800); }
.mobile-bar a .ico { width: 22px; height: 22px; }
.mobile-bar a.wa { color: #1f8f5f; }
.mobile-bar a + a { border-left: 1px solid var(--line); }

/* ---------- Reveal animations ---------- */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
[data-reveal][data-delay="4"] { transition-delay: .32s; }

.skip-link { position: absolute; left: 1rem; top: -3rem; z-index: 200; background: var(--green-900); color: var(--ivory); padding: 0.7rem 1.1rem; border-radius: 6px; transition: top .3s; }
.skip-link:focus { top: 1rem; }

.mt-0 { margin-top: 0; } .mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; } .mb-2 { margin-bottom: 2rem; }
.hide { display: none !important; }
.chip-row { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.chip { font-size: 0.82rem; padding: 0.45rem 0.95rem; border-radius: 100px; background: var(--ivory-soft); border: 1px solid var(--line); color: var(--green-800); font-weight: 500; }
.bg-green .chip, .bg-green-deep .chip { background: rgba(242,237,225,0.08); border-color: rgba(242,237,225,0.18); color: var(--on-dark); }

.map-embed { width: 100%; aspect-ratio: 16/9; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .statband { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}
@media (max-width: 860px) {
  .menu-toggle { display: block; }
  .nav { position: fixed; inset: 0; z-index: 110; flex-direction: column; justify-content: center; gap: 2rem; background: var(--ivory); padding: 5rem 2rem 2rem; transform: translateX(100%); transition: transform .5s var(--ease); overflow-y: auto; -webkit-overflow-scrolling: touch; }
  body.menu-open .nav { transform: translateX(0); }
  /* A scrolled header carries backdrop-filter, which makes it the containing block for this
     fixed panel (so it would only cover the header strip). Drop it while the menu is open. */
  body.menu-open .site-header { background: var(--ivory); -webkit-backdrop-filter: none; backdrop-filter: none; box-shadow: none; }
  body.menu-open { overflow: hidden; }
  /* Current-page link must stay visible on the ivory panel (it would otherwise be ivory-on-ivory) */
  .site-header:not(.scrolled).on-hero .nav-links a[aria-current="page"] { color: var(--gold-deep); }
  .nav-links a[aria-current="page"]::after { display: none; }
  .nav-links { flex-direction: column; gap: 1.5rem; text-align: center; }
  .nav-links a { font-size: 1.4rem; font-family: var(--font-display); color: var(--green-900); }
  .header-cta .btn { font-size: 1rem; }
  .site-header:not(.scrolled).on-hero .nav-links a { color: var(--green-900); }
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .facts div { grid-template-columns: 1fr; gap: 0.2rem; }
  .facts dt { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; }
  .float-cta { display: none; }
  .mobile-bar { display: flex; }
  body { padding-bottom: 64px; }
  .hero__meta { gap: 1.5rem 2rem; }
}
@media (max-width: 520px) {
  .grid-4 { grid-template-columns: 1fr; }
  .statband { grid-template-columns: 1fr 1fr; }
  .brand__name span { display: none; }
  .footer-top { grid-template-columns: 1fr; }
  .hero .container { padding-top: 6rem; }
}
@media print {
  .site-header, .float-cta, .mobile-bar, .scroll-hint, .cta-band { display: none !important; }
  body { color: #000; background: #fff; }
}

/* ============================================================
   PREMIUM REFINEMENTS (loaded last → intentional overrides)
   ============================================================ */
:root { --radius-lg: 14px; }

/* Header — keep the nav on one tidy line, refined scale */
.site-header .container { gap: 1.4rem; }
.nav { gap: 1.4rem; }
.nav-links { gap: 1.45rem; }
.nav-links a { font-size: 0.875rem; letter-spacing: 0.015em; white-space: nowrap; }
.brand__name b { font-size: 1.05rem; }
.brand__name span { white-space: nowrap; }
@media (max-width: 1240px) and (min-width: 861px) {
  .nav-links { gap: 1.05rem; }
  .nav-links a { font-size: 0.8rem; }
  .header-cta .btn { padding: 0.7rem 1.15rem; font-size: 0.82rem; }
  .brand__name span { display: none; }
}

/* Typography — more confident, editorial */
h1 { line-height: 1.03; letter-spacing: -0.025em; }
h2 { line-height: 1.08; letter-spacing: -0.018em; }
.lead { letter-spacing: -0.005em; }

/* Subtle film grain for tactile depth */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 9998; pointer-events: none; opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Buttons — refined gold with inner highlight */
.btn-gold { box-shadow: inset 0 1px 0 rgba(255,255,255,0.4), 0 8px 22px rgba(156,122,51,0.26); }
.btn-gold:hover { box-shadow: inset 0 1px 0 rgba(255,255,255,0.5), 0 14px 34px rgba(156,122,51,0.36); }

/* Cards — softer borders, deeper layered shadow */
.card, .loc-card, .post-card, .review {
  border-color: rgba(27,67,50,0.10);
  box-shadow: 0 1px 2px rgba(8,32,26,0.04), 0 24px 48px -32px rgba(8,32,26,0.34);
}
.card:hover, .loc-card:hover, .post-card:hover { box-shadow: 0 36px 64px -34px rgba(8,32,26,0.42); }

/* ---- HERO: split editorial layout with a real photo ---- */
.hero { min-height: auto; align-items: center; padding-block: clamp(7.5rem, 13vh, 11rem) clamp(3.5rem, 7vh, 6rem); }
.hero .container { padding-top: 0; padding-bottom: 0; }
.hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 5.5rem); align-items: center; width: 100%; }
.hero__inner { max-width: 620px; }
.hero h1 { margin-top: 1.4rem; }
.hero__sub { margin-top: 1.4rem; }
.hero .btn-row { margin-top: 2.1rem; }
.hero__meta { margin-top: 2.6rem; gap: 1.8rem 2.4rem; }
.hero__media { position: relative; }
.hero__photo { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 20px; border: 1px solid rgba(216,189,126,0.35); box-shadow: 0 50px 90px -34px rgba(0,0,0,0.65); }
.hero__rating { position: absolute; left: clamp(-20px, -1.4vw, -8px); bottom: 26px; background: var(--ivory); color: var(--green-900); border-radius: 16px; padding: 0.85rem 1.15rem; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 0.75rem; }
.hero__rating b { font-family: var(--font-display); font-size: 1.7rem; line-height: 1; color: var(--green-800); }
.hero__rating .stars { color: var(--gold); font-size: 0.82rem; letter-spacing: 0.08em; display: block; }
.hero__rating small { font-size: 0.7rem; color: var(--muted); display: block; margin-top: 2px; }
.hero__trust { display: flex; align-items: center; flex-wrap: wrap; gap: 0.6rem 0.9rem; margin-top: 1.6rem; color: var(--on-dark-soft); font-size: 0.9rem; }
.hero__trust .stars { color: var(--gold-soft); letter-spacing: 0.12em; }
@media (max-width: 900px) {
  .hero { min-height: auto; }
  .hero__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero__photo { aspect-ratio: 16/11; }
  .hero__rating { left: 14px; }
}

/* ============================================================
   FULL-WIDTH HERO SLIDER · LOOPING REVIEWS · ROYAL DEPTH
   ============================================================ */
.hero { min-height: 100svh; align-items: center; overflow: hidden; padding-block: 0; }
.hero .container { padding-top: 7rem; padding-bottom: 4.5rem; position: relative; z-index: 3; }
.hero__inner { max-width: 660px; }
.hero__slides { position: absolute; inset: 0; z-index: 0; background: var(--green-950); }
.hero__slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.6s var(--ease); }
.hero__slide.is-active { opacity: 1; animation: heroKen 8s var(--ease) forwards; }
@keyframes heroKen { from { transform: scale(1.06); } to { transform: scale(1.16); } }
.hero__overlay { position: absolute; inset: 0; z-index: 1; background:
  linear-gradient(100deg, rgba(7,32,26,0.95) 0%, rgba(7,32,26,0.82) 40%, rgba(7,32,26,0.45) 72%, rgba(7,32,26,0.6) 100%),
  linear-gradient(to top, rgba(7,32,26,0.75), transparent 45%); }
.hero .scroll-hint { z-index: 4; }
.hero__badge { display: inline-flex; align-items: center; gap: 0.55rem; margin-top: 1.6rem; padding: 0.5rem 1rem; border-radius: 100px; background: rgba(255,255,255,0.08); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); border: 1px solid rgba(216,189,126,0.4); color: var(--on-dark); font-size: 0.88rem; }
.hero__badge b { color: var(--gold-soft); font-weight: 700; }
.hero__dots { position: absolute; left: 50%; transform: translateX(-50%); bottom: 1.5rem; z-index: 5; display: flex; gap: 0.55rem; }
.hero__dot { width: 30px; height: 4px; border-radius: 100px; background: rgba(242,237,225,0.32); cursor: pointer; transition: background .35s var(--ease), width .35s var(--ease); border: 0; padding: 0; }
.hero__dot.is-active { background: var(--gold-grad); width: 48px; }
@media (prefers-reduced-motion: reduce) { .hero__slide.is-active { animation: none; transform: none; } }
@media (max-width: 900px) {
  .hero .container { padding-top: 6.5rem; }
  .hero__overlay { background: linear-gradient(rgba(7,32,26,0.84), rgba(7,32,26,0.92)); }
}

/* Looping reviews marquee */
.marquee { overflow: hidden; padding: 0.5rem 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.marquee__track { display: flex; gap: 1.5rem; width: max-content; animation: marqueeScroll 64s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee .review { width: 348px; flex: 0 0 348px; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee { mask-image: none; -webkit-mask-image: none; } .marquee__track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; } .marquee .review { width: 320px; } }

/* Royal depth — premium hover interaction */
.loc-card:hover, .card:hover, .post-card:hover { transform: translateY(-8px) scale(1.012); }
.loc-card:hover { box-shadow: 0 44px 72px -34px rgba(8,32,26,0.5), 0 0 0 1px rgba(216,189,126,0.28); border-color: var(--line-gold); }
.btn-gold { position: relative; overflow: hidden; }
.btn-gold::after { content: ""; position: absolute; top: 0; left: -130%; width: 55%; height: 100%; background: linear-gradient(100deg, transparent, rgba(255,255,255,0.55), transparent); transform: skewX(-20deg); transition: left .75s var(--ease); pointer-events: none; }
.btn-gold:hover::after { left: 150%; }

/* ============================================================
   3D STORYTELLING TOOLKIT + OUR JOURNEY  (appended last)
   ============================================================ */

/* Pointer-driven 3D tilt — JS sets --rx/--ry and toggles .is-tilting */
[data-tilt] { transform: perspective(1000px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)); transition: transform .6s var(--ease); transform-style: preserve-3d; will-change: transform; }
[data-tilt].is-tilting { transition: transform .12s linear; }
[data-tilt] .tilt-pop { transform: translateZ(36px); transition: transform .6s var(--ease); }

/* Decorative blurred gradient orbs (depth backdrop) */
.orb { position: absolute; border-radius: 50%; filter: blur(64px); opacity: .55; z-index: 0; pointer-events: none; }
.orb--gold { background: radial-gradient(circle, rgba(185,147,63,.55), transparent 70%); }
.orb--green { background: radial-gradient(circle, rgba(45,106,79,.6), transparent 70%); }

/* ---- Journey media hero ---- */
.jhero { position: relative; min-height: 80vh; display: flex; align-items: flex-end; overflow: hidden; isolation: isolate; color: var(--on-dark); background: var(--green-950); }
.jhero__media { position: absolute; inset: 0; z-index: 0; background: var(--green-950); }
.jhero__media video, .jhero__media img { width: 100%; height: 100%; object-fit: cover; }
.jhero__media video { opacity: 0.6; }
.jhero__overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(7,32,26,.55), rgba(7,32,26,.4) 42%, rgba(7,32,26,.96)); }
.jhero .container { position: relative; z-index: 2; padding-block: clamp(7.5rem, 13vh, 10rem) clamp(2.6rem, 6vh, 4.5rem); }
.jhero .breadcrumb a, .jhero .breadcrumb span { color: var(--on-dark-soft); }
.jhero h1 { color: var(--ivory); max-width: 18ch; margin-top: 1.2rem; }
.jhero h1 .gold-text { color: var(--gold-soft); font-style: italic; }
.jhero__lead { max-width: 50ch; color: var(--on-dark-soft); font-size: clamp(1.05rem, 1.5vw, 1.25rem); margin-top: 1.4rem; }
.jhero__chips { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2.2rem; }
.jchip { display: inline-flex; align-items: center; gap: .5rem; padding: .6rem 1.05rem; border-radius: 100px; background: rgba(255,255,255,.08); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); border: 1px solid rgba(216,189,126,.32); font-size: .86rem; color: var(--on-dark); }
.jchip b { color: var(--gold-soft); font-family: var(--font-display); font-size: 1.05rem; }
@media (max-width: 720px) { .jhero { min-height: 74vh; } }

/* ---- Founder feature ---- */
.founder__media { position: relative; border-radius: 22px; overflow: hidden; box-shadow: 0 50px 90px -34px rgba(0,0,0,.6); border: 1px solid rgba(216,189,126,.3); background: var(--green-950); }
.founder__media video { display: block; width: 100%; height: auto; }
.founder__tag { position: absolute; left: 1rem; bottom: 1rem; z-index: 2; display: inline-flex; align-items: center; gap: .5rem; padding: .5rem .9rem; border-radius: 100px; background: rgba(8,32,26,.6); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); border: 1px solid rgba(216,189,126,.4); color: var(--ivory); font-size: .8rem; pointer-events: none; }
.founder__tag .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold-soft); box-shadow: 0 0 0 4px rgba(185,147,63,.25); }
.founder__role { color: var(--gold-deep); font-weight: 600; letter-spacing: .02em; }
.founder__quote { font-family: var(--font-display); font-style: italic; font-size: clamp(1.3rem, 2.3vw, 1.75rem); line-height: 1.5; color: var(--green-900); margin: 1.3rem 0; position: relative; padding-left: 1.2rem; border-left: 3px solid var(--gold); }
.signature { font-family: var(--font-display); font-style: italic; font-size: 1.5rem; color: var(--gold-deep); margin-top: .4rem; }

/* ---- 3D zig-zag growth timeline ---- */
.jtl { position: relative; max-width: 1060px; margin: 3.5rem auto 0; }
.jtl::before { content: ""; position: absolute; top: 6px; bottom: 60px; left: 50%; width: 2px; transform: translateX(-50%); background: linear-gradient(var(--gold-soft), rgba(216,189,126,.12)); }
.jtl__item { position: relative; width: 50%; padding: 0 2.8rem 2.6rem; }
.jtl__item:nth-child(odd) { text-align: right; }
.jtl__item:nth-child(even) { margin-left: 50%; }
.jtl__dot { position: absolute; top: 12px; width: 18px; height: 18px; border-radius: 50%; background: var(--gold-grad); box-shadow: 0 0 0 6px rgba(185,147,63,.16); z-index: 2; }
.jtl__item:nth-child(odd) .jtl__dot { right: -9px; }
.jtl__item:nth-child(even) .jtl__dot { left: -9px; }
.jtl__item.is-current .jtl__dot { box-shadow: 0 0 0 6px rgba(185,147,63,.16), 0 0 22px 4px rgba(216,189,126,.55); }
.jtl__card { display: block; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 26px 50px -32px rgba(8,32,26,.55); transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease); text-align: left; color: var(--ink); }
a.jtl__card:hover { transform: translateY(-7px); box-shadow: 0 44px 72px -34px rgba(8,32,26,.6); border-color: var(--line-gold); }
.jtl__thumb { width: 100%; aspect-ratio: 16/10; object-fit: cover; background: var(--green-900); }
.jtl__body { padding: 1.3rem 1.5rem 1.5rem; }
.jtl__date { display: inline-block; font-family: var(--font-display); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: .4rem; }
.jtl__body h3 { font-size: 1.25rem; margin-bottom: .5rem; color: var(--green-900); }
.jtl__body p { font-size: .95rem; color: var(--ink-soft); }
.jtl__addr { margin-top: .8rem; font-size: .82rem; color: var(--muted); display: flex; gap: .4rem; align-items: flex-start; }
.jtl__addr svg { flex: 0 0 auto; margin-top: 2px; color: var(--green-600); }
@media (max-width: 820px) {
  .jtl::before { left: 8px; }
  .jtl__item, .jtl__item:nth-child(even) { width: 100%; margin-left: 0; padding: 0 0 2rem 2.2rem; text-align: left; }
  .jtl__item:nth-child(odd) { text-align: left; }
  .jtl__item:nth-child(odd) .jtl__dot, .jtl__item:nth-child(even) .jtl__dot { left: 0; right: auto; }
}

/* ---- Feature cards (offerings + leadership) ---- */
.feat { position: relative; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.9rem; height: 100%; transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease); }
.feat:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--line-gold); }
.feat__ico { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; background: var(--green-100); color: var(--green-700); margin-bottom: 1.1rem; }
.feat__num { display: block; font-family: var(--font-display); font-size: 1.15rem; color: var(--gold-deep); margin-bottom: .5rem; }
.feat h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.feat p { font-size: .96rem; }
.feat--dark { background: rgba(255,255,255,.045); border-color: rgba(216,189,126,.22); color: var(--on-dark); }
.feat--dark h3 { color: var(--ivory); }
.feat--dark p { color: var(--on-dark-soft); }
.feat--dark .feat__ico { background: rgba(216,189,126,.15); color: var(--gold-soft); }

/* ---- Promise strip (compact values) ---- */
.promise { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem 2.2rem; }
.promise__item { display: flex; gap: .95rem; align-items: flex-start; }
.promise__item .feat__ico { width: 44px; height: 44px; border-radius: 11px; margin: 0; }
.promise__item h3 { font-size: 1.05rem; margin-bottom: .25rem; }
.promise__item p { font-size: .9rem; color: var(--ink-soft); }
@media (max-width: 860px) { .promise { grid-template-columns: 1fr; } }

/* ---- Our presence (map + list) ---- */
.presence__map { width: 100%; height: auto; border-radius: var(--radius-lg); border: 1px solid var(--line-gold); box-shadow: var(--shadow-md); background: var(--green-950); display: block; }

/* ---- Looking ahead ---- */
.ahead { position: relative; overflow: hidden; text-align: center; }
.ahead__inner { max-width: 780px; margin: 0 auto; position: relative; z-index: 2; }

/* Animated counter holds layout */
.count[data-count] { font-variant-numeric: tabular-nums; }

@media (prefers-reduced-motion: reduce) {
  [data-tilt] { transform: none !important; }
  .jhero__media video { display: none; }
}

/* ---- Store-page slider hero (reuses .hero slider engine) ---- */
.hero--store { min-height: 82vh; }
.hero--store .hero__overlay { background: linear-gradient(90deg, rgba(7,32,26,.93) 0%, rgba(7,32,26,.74) 46%, rgba(7,32,26,.4) 100%), linear-gradient(0deg, rgba(7,32,26,.8), transparent 56%); }
.hero--store h1 { text-shadow: 0 2px 26px rgba(7,32,26,.55); }
.hero--store .hero__inner p { color: var(--ivory); text-shadow: 0 1px 18px rgba(7,32,26,.85); }
.hero--store .container { padding-top: 6.5rem; padding-bottom: 3.5rem; }
.hero--store .hero__inner { max-width: 720px; }
.hero--store .breadcrumb { margin-bottom: .6rem; }
.hero--store .breadcrumb a { color: var(--on-dark-soft); }
.hero--store .breadcrumb a:hover { color: var(--gold-soft); }
.hero--store .breadcrumb span, .hero--store .breadcrumb .sep { color: var(--on-dark-soft); }
.hero--store h1 { margin-top: .8rem; }
.hero--store .eyebrow { color: var(--gold-soft); }
.hero--store .chip { background: rgba(255,255,255,.1); border-color: rgba(216,189,126,.34); color: var(--on-dark); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
@media (max-width: 720px) { .hero--store { min-height: 76vh; } }

/* ---- Offer poster gallery ---- */
.poster-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 1.4rem; align-items: start; }
.poster-grid figure:first-child { grid-row: span 2; }
.poster { margin: 0; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line-gold); box-shadow: var(--shadow-md); background: var(--paper); transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.poster:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.poster img { display: block; width: 100%; height: auto; }
.poster figcaption { padding: .7rem 1rem; font-size: .82rem; color: var(--muted); letter-spacing: .03em; }
@media (max-width: 760px) { .poster-grid { grid-template-columns: 1fr; } .poster-grid figure:first-child { grid-row: auto; } }

/* ---- Homepage hero background video — all devices, fitted (object-fit), dimmed for legibility ---- */
.hero--video .hero__slides { display: none; } /* video is the visual; slides are the reduced-motion fallback */
.hero--video .hero__video { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.55; background: var(--green-950); }
.hero--video .hero__overlay { background:
  linear-gradient(100deg, rgba(7,32,26,0.92) 0%, rgba(7,32,26,0.78) 42%, rgba(7,32,26,0.55) 72%, rgba(7,32,26,0.68) 100%),
  linear-gradient(to top, rgba(7,32,26,0.82), transparent 50%); }
.hero--video .hero__dots { display: none; }
@media (prefers-reduced-motion: reduce) {
  .hero--video .hero__slides { display: block; }
  .hero--video .hero__video { display: none; }
  .hero--video .hero__dots { display: flex; }
}

/* ---- HTML sitemap link lists ---- */
.link-list { list-style: none; }
.link-list li { margin-bottom: .55rem; }
.link-list a { color: var(--ink-soft); transition: color .3s var(--ease); }
.link-list a:hover { color: var(--green-700); }
.footer-bottom a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }

/* ---- Quick Facts panel (AEO/GEO structured block) ---- */
.qfacts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; max-width: 1000px; margin: 2.5rem auto 0; }
.qfacts > div { background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: 1.05rem 1.3rem; transition: border-color .4s var(--ease), transform .4s var(--ease); }
.qfacts > div:hover { border-color: var(--line-gold); transform: translateY(-3px); }
.qfacts dt { font-size: .74rem; letter-spacing: .09em; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; margin-bottom: .35rem; }
.qfacts dd { font-size: .95rem; color: var(--ink-soft); line-height: 1.5; margin: 0; }
@media (max-width: 640px) { .qfacts { grid-template-columns: 1fr; } }
