/* ============================================================
   BÅRDSENG GÅRD · shared visual system (all pages) · v5.1
   Design system: luxury, off-white expression · warm ivory
   ground, espresso ink, antique gold. Didone display +
   geometric sans + curatorial mono. Dark espresso footer,
   image-led heroes keep a dark scrim with light type.
   Layout language: modern listing-driven hospitality site
   (emaratrealty.com reference).
   ============================================================ */

:root {
  /* ---- Surfaces (off-white luxury) ---- */
  --bg:          #f7f3ea;   /* warm ivory page */
  --surface:     #efe9db;   /* card / panel */
  --surface-2:   #e7dfcc;   /* raised warm sand */
  --line:        #d9cfb9;   /* hairline border */
  --line-soft:   #e4dcc9;   /* quieter hairline */

  /* ---- Ink ---- */
  --ink:         #262019;   /* espresso black text */
  --ink-soft:    #5d5443;   /* secondary text */
  --muted:       #6b604b;   /* meta text */

  /* ---- Accent: antique gold family ---- */
  --accent:      #ab8237;   /* gold for buttons / UI shapes */
  --accent-on:   #100c08;   /* text on gold (near-black espresso) */
  --accent-hover: color-mix(in oklab, #ab8237, black 10%);
  --accent-active: color-mix(in oklab, #ab8237, black 10%);
  --gold-deep:   #7c5d1e;   /* gold text on light surfaces */
  --gold-soft:   #d3b06a;   /* gold text on dark surfaces */

  /* Season / state hues */
  --moss:        #4e7a55;   /* season green */
  --moss-deep:   #37603f;   /* readable green on light tints */

  /* Text over dark-scrimmed imagery */
  --on-img:      #fdfaf2;
  --on-img-soft: rgba(253, 250, 242, 0.8);

  /* Dark anchor surfaces */
  --foot-bg:     #262019;   /* espresso footer */

  /* Roles */
  --fg:          var(--ink);
  --border:      var(--line);
  --amber-deep:  var(--gold-deep);  /* legacy alias */

  /* ---- Typography ---- */
  --font-display: "Source Serif 4", "Source Serif", "Charter", Georgia, serif;
  --font-caps:    "Mulish", "Avenir Next", Inter, sans-serif;
  --font-body:    "Mulish", "Avenir Next", Inter, sans-serif;
  --font-mono:    "JetBrains Mono", "SF Mono", ui-monospace, Menlo, monospace;

  /* ---- Scale ---- */
  --maxw: 1180px;
  --radius: 14px;
  --radius-sm: 8px;
  --radius-pill: 9999px;
  --pad: clamp(1rem, 4vw, 2.25rem);
  --section-y: clamp(4.5rem, 11vh, 8rem);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --nav-h: 108px;
}

/* ============================================================
   BASE
   ============================================================ */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: clamp(16px, 0.9vw + 12px, 18px);
  line-height: 1.7;
  font-weight: 400;
  font-feature-settings: "liga", "kern";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul { list-style: none; }

::selection { background: var(--accent); color: var(--accent-on); }

/* Single restrained flourish: warm light pooling at the top of the ivory. */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(120% 60% at 50% -10%, rgba(171, 130, 55, 0.06), transparent 60%);
}

:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(124, 93, 30, 0.4);
  border-radius: var(--radius-sm);
}

/* ============================================================
   SHARED PRIMITIVES
   ============================================================ */
.wrap {
  width: 100%; max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  position: relative;
  z-index: 2;
}
section.wrap { padding-top: var(--section-y); padding-bottom: var(--section-y); }
.rule { border: 0; border-top: 1px solid var(--line-soft); margin: 0; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex; align-items: center; gap: 1rem;
}
.eyebrow::before { content: ""; width: 2.6rem; height: 1px; background: var(--accent); }

.h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.1rem, 4.2vw, 3.3rem);
  line-height: 1.08; letter-spacing: -0.015em;
  color: var(--ink);
  margin-top: 1.3rem;
  text-wrap: balance;
}
.h2 .sub {
  display: block;
  font-style: italic; font-weight: 400;
  font-size: 0.52em; letter-spacing: 0;
  color: var(--ink-soft);
  margin-top: 0.55rem;
  text-wrap: pretty;
}
.lede {
  font-size: clamp(1.05rem, 1.3vw, 1.22rem);
  line-height: 1.65; color: var(--ink-soft);
  max-width: 56ch; margin-top: 1.4rem;
  text-wrap: pretty;
}
.textlink {
  color: var(--ink);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 1px;
  transition: color .2s var(--ease);
}
.textlink:hover { color: var(--gold-deep); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-caps); font-weight: 700;
  font-size: 0.86rem; letter-spacing: 0.09em; text-transform: uppercase;
  padding: 0.95rem 1.6rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease),
              border-color .25s var(--ease), transform .25s var(--ease),
              box-shadow .25s var(--ease);
  white-space: nowrap;
}
.btn .arr { transition: transform .25s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }
.btn-primary { background: var(--accent); color: var(--accent-on); }
.btn-primary:hover {
  background: var(--accent-hover); color: var(--accent-on);
  transform: translateY(-1px);
  box-shadow: 0 16px 32px -16px rgba(171, 130, 55, 0.55);
}
.btn-primary:active { background: var(--accent-active); transform: translateY(0); }
.btn-ghost { border-color: rgba(38, 32, 25, 0.4); color: var(--ink); }
.btn-ghost:hover {
  border-color: var(--accent); color: var(--gold-deep);
  background: rgba(171, 130, 55, 0.08);
}

/* ---- Reveal on scroll ---- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   NAV · fixed ivory glass bar, dark-ink logo, gold pill CTA
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem clamp(1rem, 4vw, 2.25rem);
  background: rgba(247, 243, 234, 0.88);
  backdrop-filter: blur(16px) saturate(1.1);
  -webkit-backdrop-filter: blur(16px) saturate(1.1);
  border-bottom: 1px solid transparent;
  transition: border-color .35s var(--ease), background .35s var(--ease), padding .35s var(--ease);
}
.nav.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(247, 243, 234, 0.97);
  padding-top: 0.6rem; padding-bottom: 0.6rem;
}
.nav-brand { display: flex; align-items: center; flex-shrink: 0; }
.nav-brand img { height: 76px; width: auto; }
.nav-links {
  display: flex; align-items: center; gap: clamp(1rem, 2vw, 1.9rem);
  margin: 0 auto;
}
.nav-item > a, .nav-drop-btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-caps); font-weight: 600;
  font-size: 0.94rem; letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--ink);
  padding: 0.4rem 0;
  cursor: pointer;
  transition: color .2s var(--ease), box-shadow .2s var(--ease);
}
.nav-item > a:hover, .nav-drop-btn:hover {
  color: #191510;
  box-shadow: inset 0 -2px 0 rgba(171, 130, 55, 0.55);
}
.nav-item > a[aria-current="page"] { color: #191510; box-shadow: inset 0 -2px 0 var(--accent); }
.nav-drop-btn .caret { font-size: 0.6rem; transition: transform .25s var(--ease); color: var(--muted); }
.nav-item:hover .caret, .nav-item:focus-within .caret { transform: translateY(2px); color: var(--accent); }

.nav-item { position: relative; }
.nav-drop {
  position: absolute; top: calc(100% + 0.4rem); left: 50%; transform: translateX(-50%) translateY(6px);
  min-width: 300px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.6rem;
  box-shadow: 0 24px 48px -20px rgba(38, 32, 25, 0.35);
  opacity: 0; visibility: hidden;
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
  z-index: 60;
}
.nav-drop-xl { min-width: 540px; }
.nav-item:hover .nav-drop, .nav-item:focus-within .nav-drop {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.drop-head {
  font-family: var(--font-mono); font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--muted);
  padding: 0.5rem 0.8rem 0.45rem;
}
.nav-drop li a {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1.2rem;
  padding: 0.5rem 0.8rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-caps); font-weight: 600;
  font-size: 1.06rem; color: var(--ink-soft);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.nav-drop li a:hover { background: rgba(38, 32, 25, 0.06); color: var(--ink); }
.nav-drop li a .seas {
  font-family: var(--font-mono); font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted);
  white-space: nowrap;
}
.nav-drop li a:hover .seas { color: var(--gold-deep); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: clamp(0.7rem, 1.4vw, 1.3rem);
  flex-shrink: 0;
}
.nav-socials {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.nav-socials a {
  color: var(--ink-soft);
  display: inline-flex;
  padding: 0.35rem;
  border-radius: 50%;
  transition: color .2s var(--ease), background .2s var(--ease), transform .2s var(--ease);
}
.nav-socials a:hover {
  color: var(--ink);
  background: rgba(38, 32, 25, 0.06);
  transform: translateY(-1px);
}
.nav-socials svg {
  width: 17px;
  height: 17px;
  display: block;
}

.nav-cta {
  flex-shrink: 0;
  font-family: var(--font-caps); font-weight: 700;
  font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent-on); background: var(--accent);
  padding: 0.62rem 1.25rem;
  border-radius: var(--radius-pill);
  transition: background .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
}
.nav-cta:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 12px 24px -12px rgba(171,130,55,.6); }

.nav-toggle {
  display: none;
  font-family: var(--font-mono); font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 0.55rem 1rem;
}

@media (max-width: 1020px) {
  .nav-toggle { display: block; }
  .nav-socials { display: none; }
  .nav-links {
    position: fixed; inset: 0;
    flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 0.4rem;
    background: rgba(247, 243, 234, 0.98);
    backdrop-filter: blur(20px);
    padding: calc(var(--nav-h) + 2rem) clamp(1.4rem, 7vw, 3rem) 3rem;
    margin: 0;
    transform: translateY(-100%);
    transition: transform .45s var(--ease);
    overflow-y: auto;
    z-index: -1;
  }
  .nav-links.is-open { transform: translateY(0); }
  .nav-item > a, .nav-drop-btn {
    font-size: 1.2rem; padding: 0.7rem 0;
  }
  .nav-item { width: 100%; }
  .nav-drop {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; background: transparent; border: 0;
    border-left: 1px solid var(--line);
    border-radius: 0; margin-left: 0.9rem; min-width: 0;
    padding: 0.2rem 0 0.2rem 1.1rem;
  }
  .nav-drop-xl { min-width: 0; }
  .nav-actions { position: fixed; right: clamp(1rem, 4vw, 2.25rem); top: 0.85rem; z-index: 1; }
  .nav-brand { position: relative; z-index: 1; }
}

/* ============================================================
   PAGE HERO (subpages) · dark-scrimmed image, light pinned type
   ============================================================ */
.page-hero {
  position: relative;
  min-height: 64vh;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.ph-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 40%;
  z-index: 0;
}
.ph-veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(8,7,6,0.58) 0%, rgba(8,7,6,0.08) 30%, rgba(8,7,6,0.2) 55%, rgba(8,7,6,0.9) 100%),
    linear-gradient(90deg, rgba(8,7,6,0.35), transparent 60%);
}
.ph-inner {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--maxw);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 3rem) var(--pad) clamp(2.4rem, 6vh, 4.5rem);
  color: var(--on-img);
}
.crumbs {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-mono); font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--on-img-soft);
  margin-bottom: 1.6rem;
  transition: color .2s var(--ease);
}
.crumbs:hover { color: var(--gold-soft); }
.ph-eyebrow {
  font-family: var(--font-mono); font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--on-img);
  display: inline-flex; align-items: center; gap: 1rem;
}
.ph-eyebrow::before { content: ""; width: 2.6rem; height: 1px; background: var(--gold-soft); }
.page-hero h1 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2.3rem, 5vw, 3.9rem);
  line-height: 1.06; letter-spacing: -0.015em;
  margin-top: 1.2rem;
  max-width: 20ch;
  text-wrap: balance;
  text-shadow: 0 4px 40px rgba(0,0,0,0.45);
}
.ph-sub {
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.6;
  color: var(--on-img-soft);
  max-width: 62ch;
  margin-top: 1.2rem;
  text-wrap: pretty;
}
.season-strip {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-top: 1.8rem;
}
.stag {
  font-family: var(--font-mono); font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--on-img-soft);
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(253, 250, 242, 0.35);
  border-radius: var(--radius-pill);
  background: rgba(8, 7, 6, 0.22);
  backdrop-filter: blur(6px);
}
.stag.on {
  color: #c9e0cc;
  border-color: rgba(201, 224, 204, 0.5);
  background: rgba(78, 122, 85, 0.38);
}

/* ============================================================
   EXPERIENCE DETAIL LAYOUT
   ============================================================ */
.act-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: clamp(2rem, 4.5vw, 4rem);
  align-items: start;
  margin-top: 3.2rem;
}
.act-main { max-width: 70ch; min-width: 0; }
.act-main > p {
  margin-top: 1.35rem;
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  line-height: 1.75;
  color: var(--ink-soft);
  text-wrap: pretty;
}
.act-facts {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 2.6rem;
}
.act-facts .f { border-top: 1px solid var(--line); padding-top: 0.9rem; }
.act-facts .lbl {
  font-family: var(--font-mono); font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold-deep);
}
.act-facts .val {
  font-family: var(--font-caps); font-weight: 600; font-size: 1.02rem;
  color: var(--ink); margin-top: 0.4rem; line-height: 1.4;
}
.act-gallery {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
  margin-top: 2.8rem;
}
.act-gallery figure { min-width: 0; }
.act-gallery img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: 0 0 0 1px var(--line);
}
.act-gallery figcaption {
  font-family: var(--font-mono); font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted);
  padding-top: 0.55rem;
}
/* Story callout box (e.g. Olaf Baardseng in crafts) */
.act-story {
  margin-top: 2.8rem;
  padding: 2rem clamp(1.4rem, 2.8vw, 2.2rem);
  background: rgba(38, 32, 25, 0.035);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.act-story-layout {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: clamp(1.4rem, 2.5vw, 2rem);
  align-items: start;
}
.act-story figure {
  margin: 0;
}
.act-story img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 20px -6px rgba(38, 32, 25, 0.15);
  border: 1px solid var(--line);
}
.act-story figcaption {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.55rem;
  line-height: 1.4;
}
.act-story-content h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-top: 0.35rem;
}
.act-story-content p {
  margin-top: 0.95rem;
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--ink-soft);
  text-wrap: pretty;
}
.act-story-content p:first-of-type {
  margin-top: 0.8rem;
}
@media (max-width: 640px) {
  .act-story-layout {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }
  .act-story figure {
    max-width: 220px;
  }
}

/* Olaf Baardseng callout: 20% wider than the standard content column */
.act-wrap-xl { max-width: calc(var(--maxw) * 1.2); }
.wrap-xl { max-width: none; }
@media (min-width: 641px) {
  .act-wrap-xl .act-story-layout { grid-template-columns: 216px minmax(0, 1fr); }
}
@media (max-width: 640px) {
  .act-wrap-xl .act-story figure { max-width: 264px; }
}

.act-side { display: grid; gap: 2rem; min-width: 0; }

/* Availability calendar */
.avail {
  border-top: 1px solid var(--line);
  padding: 1.5rem 0 0.2rem;
}
.avail-lbl, .includes-lbl {
  font-family: var(--font-mono); font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold-deep);
}
.avail-months {
  display: grid; grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.35rem;
  margin-top: 1rem;
}
.amonth {
  font-family: var(--font-mono); font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-align: center;
  padding: 0.5rem 0;
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  color: var(--muted);
}
.amonth.on { background: rgba(78, 122, 85, 0.16); color: var(--moss-deep); }
.amonth.peak { background: rgba(171, 130, 55, 0.18); color: #6e5217; }
.avail-legend {
  display: flex; flex-wrap: wrap; gap: 1.1rem;
  margin-top: 1.1rem;
  font-family: var(--font-mono); font-size: 0.58rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
}
.avail-legend span { display: inline-flex; align-items: center; gap: 0.45rem; }
.sw { width: 10px; height: 10px; border-radius: 3px; background: var(--surface-2); box-shadow: 0 0 0 1px var(--line); }
.sw.on { background: rgba(78, 122, 85, 0.55); box-shadow: none; }
.sw.peak { background: rgba(171, 130, 55, 0.7); box-shadow: none; }
.avail-note {
  font-style: italic; font-size: 0.92rem; line-height: 1.6;
  color: var(--ink-soft);
  margin-top: 1.1rem;
  text-wrap: pretty;
}

/* Includes card */
.includes {
  border-top: 1px solid var(--line);
  padding: 1.5rem 0 0.2rem;
}
.includes ul { margin-top: 1rem; display: grid; gap: 0.6rem; }
.includes li {
  font-size: 0.95rem; color: var(--ink-soft);
  padding-left: 1.3rem; position: relative;
}
.includes li::before {
  content: ""; position: absolute; left: 0; top: 0.62em;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
}

/* Booking / enquiry — email CTA card */
.booking {
  border-top: 1px solid var(--line);
  padding: 1.6rem 0 0.4rem;
}
.booking h3 {
  font-family: var(--font-display); font-weight: 400;
  font-size: 1.5rem; line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.bk-sub {
  font-size: 0.92rem; line-height: 1.55;
  color: var(--ink-soft);
  margin-top: 0.7rem;
  text-wrap: pretty;
}
/* Email CTA — the primary action on every booking / contact card */
.mail-cta {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  margin-top: 1.4rem;
  padding: 1.05rem 1.35rem;
  border-radius: var(--radius-pill);
  background: var(--accent);
  color: var(--accent-on);
  transition: background .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.mail-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 16px 32px -16px rgba(171, 130, 55, 0.55);
}
.mail-cta:active { background: var(--accent-active); transform: translateY(0); }
.mail-lbl {
  display: block;
  font-family: var(--font-mono); font-size: 0.58rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent-on);
}
.mail-addr {
  display: block;
  font-size: 1rem; font-weight: 600; letter-spacing: 0.01em;
  color: var(--accent-on);
  margin-top: 0.32rem;
  overflow-wrap: anywhere;
}
.mail-arr { font-size: 1.15rem; line-height: 1; flex-shrink: 0; transition: transform .25s var(--ease); }
.mail-cta:hover .mail-arr { transform: translateX(4px); }

/* ============================================================
   EXPERIENCE CARDS (listing grid)
   ============================================================ */
.xp-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.2rem;
  margin-top: 3.2rem;
}
.xp-card {
  display: flex; flex-direction: column;
}
.xp-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; border-radius: var(--radius-sm); }
.xp-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.xp-card:hover .xp-media img { transform: scale(1.045); }
.xp-when {
  position: absolute; top: 0.85rem; left: 0.85rem;
  font-family: var(--font-mono); font-size: 0.58rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: #fdfaf2;
  background: rgba(8, 7, 6, 0.72);
  backdrop-filter: blur(8px);
  padding: 0.42rem 0.7rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(253, 250, 242, 0.14);
}
.xp-body { display: flex; flex-direction: column; flex: 1; padding: 1.15rem 0.15rem 0; min-width: 0; }
.xp-cat {
  font-family: var(--font-mono); font-size: 0.58rem; font-weight: 500;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold-deep);
}
.xp-body h3 {
  font-family: var(--font-display); font-weight: 400;
  font-size: 1.45rem; line-height: 1.12; letter-spacing: -0.01em;
  color: var(--ink);
  margin-top: 0.55rem;
  text-wrap: balance;
}
.xp-body p {
  font-size: 0.93rem; line-height: 1.55;
  color: var(--ink-soft);
  margin-top: 0.6rem;
  text-wrap: pretty;
}
.xp-meta {
  margin-top: auto; padding-top: 1rem;
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-mono); font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
}
.xp-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--muted); flex-shrink: 0; }
.xp-meta .xp-go {
  margin-left: auto;
  color: var(--muted);
  transition: color .25s var(--ease), transform .25s var(--ease);
}
.xp-card:hover .xp-meta .xp-go { color: var(--gold-deep); transform: translateX(3px); }

/* Utility tiles inside the grid (kiosk / custom day) */
.xp-tile {
  display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end;
  min-height: 300px;
  padding: 1.4rem 0.2rem 0.4rem;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
  transition: border-color .35s var(--ease);
}
.xp-tile:hover {
  border-top-color: var(--accent);
}
.xp-tile .xp-cat { color: var(--muted); }
.xp-tile h3 {
  font-family: var(--font-display); font-weight: 400;
  font-size: 1.5rem; line-height: 1.12;
  color: var(--ink);
  margin-top: 0.6rem;
  text-wrap: balance;
}
.xp-tile p { font-size: 0.92rem; color: var(--ink-soft); margin-top: 0.55rem; max-width: 32ch; text-wrap: pretty; }
.xp-tile .xp-go {
  margin-top: 1.2rem;
  font-family: var(--font-mono); font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex; gap: 0.5rem;
}
.xp-empty {
  display: none;
  grid-column: 1 / -1;
  padding: 2.5rem 1rem;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  font-family: var(--font-mono); font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}
.xp-grid.has-empty .xp-empty { display: block; }

/* ============================================================
   SPLIT (editorial two-column section)
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.split .txt p {
  margin-top: 1.3rem;
  font-size: clamp(1rem, 1.1vw, 1.1rem);
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 54ch;
  text-wrap: pretty;
}
.split .plate {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(38, 32, 25, 0.14), 0 0 0 1px var(--line);
}
.split .plate img { width: 100%; height: 100%; object-fit: cover; object-position: left center; }
.split .plate .tag {
  position: absolute; left: 1.1rem; bottom: 1.1rem;
  background: rgba(8, 7, 6, 0.82);
  backdrop-filter: blur(8px);
  padding: 0.55rem 0.95rem;
  font-family: var(--font-mono);
  font-size: 0.62rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  color: #fdfaf2;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(253, 250, 242, 0.14);
}

/* ============================================================
   STATS BAND
   ============================================================ */
.stats {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  padding: 3rem 0;
}
.stat { min-width: 0; }
.stat + .stat { border-left: 1px solid var(--line-soft); padding-left: 1.5rem; }
.stat .n {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2.4rem, 3.8vw, 3.4rem);
  line-height: 1; color: var(--ink);
  letter-spacing: -0.01em;
}
.stat .n small { font-size: 0.5em; color: var(--gold-deep); margin-left: 0.15em; }
.stat .l {
  font-family: var(--font-mono); font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.7rem;
  max-width: 22ch; line-height: 1.7;
}

/* ============================================================
   SEASONS (two-panel band, dark-scrimmed imagery)
   ============================================================ */
.season-panels {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.3rem;
  margin-top: 3.2rem;
}
.season-panel {
  position: relative;
  min-height: 480px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 0 0 1px var(--line);
  display: flex; align-items: flex-end;
}
.season-panel img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s var(--ease);
}
.season-panel:hover img { transform: scale(1.03); }
.season-panel .veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,7,6,0.15) 0%, rgba(8,7,6,0.55) 55%, rgba(8,7,6,0.94) 100%);
}
.season-panel .body {
  position: relative; z-index: 2;
  padding: 2.2rem;
  width: 100%;
  color: var(--on-img);
}
.season-panel .lbl {
  font-family: var(--font-mono); font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold-soft);
}
.season-panel h3 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  line-height: 1.1; color: var(--on-img);
  margin-top: 0.7rem;
  text-wrap: balance;
}
.season-panel p {
  font-size: 0.95rem; line-height: 1.6;
  color: var(--on-img-soft);
  margin-top: 0.7rem;
  max-width: 42ch;
  text-wrap: pretty;
}
.season-panel ul { margin-top: 1.2rem; display: grid; gap: 0.45rem; }
.season-panel ul a {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-caps); font-weight: 600;
  font-size: 0.9rem; color: var(--on-img);
  transition: color .2s var(--ease);
}
.season-panel ul a::before {
  content: ""; width: 4px; height: 4px; border-radius: 50%;
  background: rgba(201, 224, 204, 0.9);
  flex-shrink: 0;
}
.season-panel ul a:hover { color: var(--gold-soft); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.2rem, 2.5vw, 2rem);
  margin-top: 3rem;
}
.testi {
  border-top: 1px solid var(--line);
  padding: 1.6rem 0 0;
  display: flex; flex-direction: column; gap: 1.1rem;
}
.testi .quote-mark {
  font-family: var(--font-display);
  font-size: 2.6rem; line-height: 0.6;
  color: var(--gold-deep);
}
.testi blockquote {
  font-style: italic;
  font-size: 1.02rem; line-height: 1.6; color: var(--ink-soft);
  text-wrap: pretty;
}
.testi .who { margin-top: auto; }
.testi .who .nm {
  font-family: var(--font-caps); font-weight: 700; font-size: 0.95rem;
  color: var(--ink); letter-spacing: 0.02em;
}
.testi .who .mt {
  font-family: var(--font-mono); font-size: 0.58rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); margin-top: 0.25rem;
}

/* ============================================================
   VISIT / PRACTICAL INFO
   ============================================================ */
.contact-col {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.visit-info { display: grid; gap: 1.6rem; }
.visit-info .item { border-top: 1px solid var(--line); padding-top: 1.2rem; }
.visit-info .item:first-child { border-top: 0; padding-top: 0; }
.visit-info .lbl {
  font-family: var(--font-mono); font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold-deep);
}
.visit-info .val {
  font-family: var(--font-caps); font-weight: 600; font-size: 1.08rem;
  color: var(--ink); margin-top: 0.4rem; line-height: 1.5;
}
.visit-info .val small {
  display: block;
  font-family: var(--font-body); font-style: italic; font-weight: 400;
  font-size: 0.92rem; color: var(--ink-soft); margin-top: 0.3rem;
}
.visit-info .val a { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 3px; }
.visit-info .val a:hover { color: #6a4f16; }

/* ============================================================
   FOOTER · deep espresso anchor, light logo, champagne heads
   ============================================================ */
footer {
  border-top: 1px solid rgba(38, 32, 25, 0.35);
  background: var(--foot-bg);
  position: relative;
  z-index: 2;
  margin-top: var(--section-y);
}
.foot {
  width: 100%; max-width: var(--maxw);
  margin: 0 auto;
  padding: 2rem var(--pad) 3.5rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 4.4rem);
}
.foot-brand img { height: 92px; width: auto; }
.foot-brand p {
  font-size: 0.95rem; line-height: 1.65;
  color: rgba(247, 243, 234, 0.75);
  max-width: 36ch;
  margin-top: 1rem;
  text-wrap: pretty;
}
.foot-brand .foot-contact {
  margin-top: 1.6rem;
  display: grid; gap: 0.4rem;
  font-family: var(--font-mono); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.06em;
}
.foot-brand .foot-contact a { color: rgba(247, 243, 234, 0.85); transition: color .2s var(--ease); }
.foot-brand .foot-contact a:hover { color: var(--gold-soft); }
.foot-brand .foot-contact span { color: rgba(247, 243, 234, 0.6); }
.foot-col h4 {
  font-family: var(--font-mono); font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold-soft);
}
.foot-col ul { margin-top: 1.2rem; display: grid; gap: 0.55rem; }
.foot-col a {
  font-size: 0.93rem; color: rgba(247, 243, 234, 0.72);
  text-transform: uppercase;
  transition: color .2s var(--ease);
}
.foot-col a:hover { color: #fbf8ef; }

.foot-pillars { gap: 0.9rem !important; }
.foot-pillars li { display: grid; gap: 0.15rem; }
.foot-pillars a {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(247, 243, 234, 0.88);
}
.foot-pillars a:hover { color: var(--gold-soft); }
.foot-sub {
  font-size: 0.75rem;
  line-height: 1.35;
  color: rgba(247, 243, 234, 0.45);
  font-family: var(--font-body);
}
.foot-all { margin-top: 0.4rem; padding-top: 0.5rem; border-top: 1px solid rgba(247, 243, 234, 0.1); }
.foot-all a {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.foot-all a:hover { color: #fff; }

.foot-socials {
  margin-top: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.foot-socials a {
  color: rgba(247, 243, 234, 0.65);
  display: inline-flex;
  padding: 0.45rem;
  border-radius: 50%;
  background: rgba(247, 243, 234, 0.05);
  border: 1px solid rgba(247, 243, 234, 0.1);
  transition: color .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.foot-socials a:hover {
  color: #fff;
  background: rgba(247, 243, 234, 0.12);
  border-color: rgba(247, 243, 234, 0.25);
  transform: translateY(-2px);
}
.foot-socials svg {
  width: 17px;
  height: 17px;
  display: block;
}

.foot-bottom { border-top: 1px solid rgba(247, 243, 234, 0.12); }
.foot-bottom .in {
  width: 100%; max-width: var(--maxw);
  margin: 0 auto;
  padding: 1.6rem var(--pad);
  display: flex; flex-wrap: wrap; gap: 1.2rem 2.5rem; justify-content: space-between; align-items: center;
  font-family: var(--font-mono); font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(247, 243, 234, 0.6);
}
.foot-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 2rem;
  align-items: center;
}
.foot-partners {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
}
.foot-partner {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.65rem;
  background: rgba(255, 255, 255, 0.94);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
  opacity: 0.9;
  transition: opacity .25s var(--ease), background .25s var(--ease), transform .25s var(--ease);
}
.foot-partner:hover {
  opacity: 1;
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.26);
}
.foot-partner img {
  height: 24px;
  width: auto;
  max-width: 105px;
  object-fit: contain;
  display: block;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.gen-row {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem; margin-top: 3rem;
}
.gen { border-top: 1px solid var(--line); padding-top: 1rem; min-width: 0; }
.gen .yr {
  font-family: var(--font-mono); font-size: 0.64rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-deep);
}
.gen .nm {
  font-family: var(--font-caps); font-weight: 700; font-size: 1.06rem;
  color: var(--ink); margin-top: 0.4rem;
}
.gen .ds {
  font-style: italic; font-size: 0.9rem;
  color: var(--ink-soft); margin-top: 0.3rem;
  text-wrap: pretty;
}
.gen.today { border-top-color: var(--accent); }
.records { margin-top: 3.2rem; }
.rec-group { margin-top: 2.6rem; }
.rec-group:first-of-type { margin-top: 0; }
.rec-group .grp {
  font-family: var(--font-mono); font-size: 0.66rem; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold-deep);
  display: flex; align-items: center; gap: 0.8rem;
  margin-bottom: 0.4rem;
}
.rec-group .grp::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.rec {
  display: grid;
  grid-template-columns: 8.5rem minmax(0, 0.8fr) minmax(0, 1.4fr);
  gap: clamp(1rem, 3vw, 2.5rem);
  padding: 1.05rem 0;
  border-top: 1px solid var(--line-soft);
  align-items: baseline;
}
.rec:first-of-type { border-top: 0; }
.rec .yr {
  font-family: var(--font-mono); font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-soft);
}
.rec .nm {
  font-family: var(--font-caps); font-weight: 700; font-size: 1.04rem;
  color: var(--ink); letter-spacing: 0.02em;
}
.rec .ds {
  font-style: italic; font-size: 0.97rem;
  line-height: 1.55; color: var(--ink-soft);
  text-wrap: pretty;
}

/* ============================================================
   OWNERSHIP TIMELINE  (about page · snake timeline)
   Desktop: central rail, items alternate left/right.
   Mobile:  single left rail.
   ============================================================ */
.records-intro {
  max-width: 62ch; font-style: italic; font-size: 1.02rem;
  line-height: 1.65; color: var(--ink-soft); margin-top: 1.4rem;
}
.tl {
  position: relative;
  margin-top: 3.4rem;
}
/* central rail */
.tl::before {
  content: ""; position: absolute; top: 0; bottom: 0; left: 50%;
  width: 1px; background: var(--line);
}
.tl-item {
  position: relative; width: 50%;
  padding: 0 clamp(1.5rem, 3vw, 3rem) 2.6rem 0;
  text-align: right;
}
.tl-item:nth-child(even) {
  left: 50%;
  padding: 0 0 2.6rem clamp(1.5rem, 3vw, 3rem);
  text-align: left;
}
.tl-item:last-child { padding-bottom: 0.1rem; }
/* marker dot on the rail */
.tl-item::before {
  content: ""; position: absolute; top: 0.32rem;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--line);
}
.tl-item:nth-child(odd)::before { right: -5px; }
.tl-item:nth-child(even)::before { left: -4px; }
.tl-item.tl-flag::before { background: var(--gold-deep); }
.tl-item.tl-now::before {
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(171, 130, 55, 0.22);
}
.tl-year {
  font-family: var(--font-mono); font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold-deep);
}
.tl-name {
  font-family: var(--font-display); font-weight: 400;
  font-size: 1.26rem; line-height: 1.12; letter-spacing: -0.01em;
  color: var(--ink); margin-top: 0.42rem; text-wrap: balance;
}
.tl-name small { font-size: 0.74em; color: var(--ink-soft); }
.tl-ds {
  font-size: 0.94rem; line-height: 1.6; color: var(--ink-soft);
  margin-top: 0.5rem; text-wrap: pretty;
}
@media (max-width: 767px) {
  .tl::before { left: 0; }
  .tl-item, .tl-item:nth-child(even) {
    width: 100%; left: 0;
    padding: 0 0 2.3rem 2.2rem; text-align: left;
  }
  .tl-item::before, .tl-item.tl-item:nth-child(odd)::before { left: -4px; right: auto; }
  .tl-name { font-size: 1.14rem; }
}

/* ============================================================
   KIOSK PAGE
   ============================================================ */
.kiosk-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.kiosk-media {
  position: relative; aspect-ratio: 4 / 3;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 30px 60px -28px rgba(38,32,25,0.35), 0 0 0 1px var(--line);
}
.kiosk-media img { width: 100%; height: 100%; object-fit: cover; }
.kiosk-media .badge {
  position: absolute; top: 1.1rem; left: 1.1rem;
  background: rgba(8, 7, 6, 0.82);
  backdrop-filter: blur(8px);
  color: #fdfaf2;
  font-family: var(--font-mono); font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(253, 250, 242, 0.14);
}
.menu { margin-top: 0.5rem; border-top: 1px solid var(--line); }
.menu-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line-soft);
  align-items: baseline;
}
.menu-row .name {
  font-family: var(--font-caps); font-weight: 600; font-size: 1.02rem;
  color: var(--ink);
}
.menu-row .desc {
  font-style: italic; font-size: 0.9rem; color: var(--muted);
  margin-top: 0.25rem; max-width: 44ch;
  text-wrap: pretty;
}
.menu-row .price {
  font-family: var(--font-mono); font-size: 0.9rem; font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
  white-space: nowrap;
}
.kiosk-hours {
  margin-top: 2rem;
  padding: 0.2rem 0 0.2rem 1.2rem;
  border-left: 3px solid var(--accent);
}
.kiosk-hours .lbl {
  font-family: var(--font-mono); font-size: 0.64rem; font-weight: 500;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold-deep);
}
.kiosk-hours .val {
  font-family: var(--font-caps); font-weight: 600; font-size: 1.02rem;
  color: var(--ink); margin-top: 0.35rem; line-height: 1.5;
}
.kiosk-find {
  margin-top: 1.6rem;
  font-style: italic; font-size: 0.95rem; line-height: 1.6;
  color: var(--ink-soft);
}
.kiosk-find a { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 3px; }
.kiosk-find a:hover { color: #6a4f16; }

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gal {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: 12.5vw;
  grid-auto-flow: dense;
  gap: clamp(0.5rem, 1vw, 0.9rem);
  margin-top: 3.2rem;
}
.gal figure {
  position: relative; overflow: hidden;
  border-radius: var(--radius-sm);
  box-shadow: 0 0 0 1px var(--line);
  background: var(--surface);
}
.gal figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gal figure:hover img { transform: scale(1.05); }
.gal figure figcaption {
  position: absolute; left: 0.85rem; bottom: 0.85rem;
  background: rgba(8, 7, 6, 0.82);
  backdrop-filter: blur(6px);
  padding: 0.45rem 0.75rem;
  font-family: var(--font-mono); font-size: 0.58rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: #fdfaf2; border-radius: var(--radius-sm);
  max-width: calc(100% - 1.7rem);
}
.c4r2 { grid-column: span 4; grid-row: span 2; }
.c3r2 { grid-column: span 3; grid-row: span 2; }
.c3r1 { grid-column: span 3; grid-row: span 1; }
.c2r2 { grid-column: span 2; grid-row: span 2; }
.c2r1 { grid-column: span 2; grid-row: span 1; }
.gal-note {
  margin-top: 2.2rem;
  font-family: var(--font-mono); font-size: 0.66rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted);
  display: flex; align-items: center; gap: 0.8rem;
}
.gal-note::before { content: ""; width: 2.5rem; height: 1px; background: var(--line); }

/* ============================================================
   GETTING HERE PAGE
   ============================================================ */
.directions {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.8rem, 4vw, 3.5rem);
  align-items: stretch;
}
.directions.flip { grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); }
.dir-info { display: flex; flex-direction: column; gap: 1.4rem; min-width: 0; }
.dir-info .dir-item { border-top: 1px solid var(--line-soft); padding-top: 1rem; }
.dir-info .dir-item:first-child { border-top: 0; padding-top: 0; }
.dir-info .lbl {
  font-family: var(--font-mono); font-size: 0.64rem; font-weight: 500;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold-deep);
}
.dir-info .val {
  font-family: var(--font-caps); font-weight: 600; font-size: 1.02rem;
  color: var(--ink); margin-top: 0.35rem; line-height: 1.45;
}
.dir-info .val small {
  display: block; font-family: var(--font-body); font-style: italic; font-weight: 400;
  font-size: 0.92rem; color: var(--muted); margin-top: 0.3rem; max-width: 46ch;
  text-wrap: pretty;
}
.dir-cta { margin-top: auto; display: flex; flex-wrap: wrap; gap: 0.7rem; padding-top: 0.6rem; }
.dir-map {
  position: relative;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 30px 60px -28px rgba(38,32,25,0.35), 0 0 0 1px var(--line);
  background: var(--surface);
  min-height: 360px;
}
.dir-map iframe {
  width: 100%; height: 100%; border: 0; display: block;
  position: absolute; inset: 0;
}
.dir-map .badge {
  position: absolute; left: 0.9rem; top: 0.9rem; z-index: 2;
  background: rgba(8,7,6,0.86);
  backdrop-filter: blur(6px);
  padding: 0.45rem 0.8rem;
  font-family: var(--font-mono); font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: #fdfaf2; border-radius: var(--radius-sm);
}
.steps { margin-top: 2.8rem; display: grid; max-width: 900px; }
.step {
  display: grid;
  grid-template-columns: 3.4rem minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  padding: 1.5rem 0;
  border-top: 1px solid var(--line-soft);
  align-items: start;
}
.step:last-child { border-bottom: 1px solid var(--line-soft); }
.step .no {
  font-family: var(--font-display); font-weight: 400;
  font-size: 2.2rem; line-height: 1;
  color: var(--gold-deep);
}
.step .sh {
  font-family: var(--font-caps); font-weight: 700; font-size: 1.14rem;
  color: var(--ink); margin-top: 0.25rem; line-height: 1.3;
}
.step .sd {
  font-style: italic; font-size: 1rem; line-height: 1.65; color: var(--ink-soft);
  margin-top: 0.45rem; max-width: 62ch;
  text-wrap: pretty;
}
.step .sd b { font-style: normal; font-weight: 600; color: var(--ink); }
.drive-facts {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem; margin: 2.6rem 0 3rem;
  padding: 1.3rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.drive-facts .f .lbl {
  font-family: var(--font-mono); font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-deep);
}
.drive-facts .f .val {
  font-family: var(--font-caps); font-weight: 600; font-size: 1.02rem;
  color: var(--ink); margin-top: 0.3rem; line-height: 1.35;
}
.route-copy p {
  font-size: clamp(1rem, 1.1vw, 1.1rem);
  line-height: 1.7; color: var(--ink-soft);
  max-width: 58ch; text-wrap: pretty;
}
.route-copy p + p { margin-top: 1.2rem; }
.alt-band { background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%); }

/* ============================================================
   FAQ PAGE
   ============================================================ */
.faq-cat { margin-top: 3rem; }
.faq-cat:first-of-type { margin-top: 0; }
.faq-q { border-top: 1px solid var(--line-soft); }
.faq-q:last-child { border-bottom: 1px solid var(--line-soft); }
.faq-q summary {
  cursor: pointer; list-style: none;
  font-family: var(--font-caps); font-weight: 700;
  font-size: clamp(1.02rem, 1.6vw, 1.22rem); line-height: 1.4;
  padding: 1.3rem 0; color: var(--ink);
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  transition: color 0.2s var(--ease);
}
.faq-q summary::-webkit-details-marker { display: none; }
.faq-q summary::after {
  content: "+"; font-family: var(--font-mono); font-weight: 400;
  font-size: 1.4rem; color: var(--accent); flex-shrink: 0; line-height: 1;
  transition: transform 0.2s var(--ease);
}
.faq-q[open] summary::after { content: "−"; }
.faq-q summary:hover { color: var(--gold-deep); }
.faq-a { padding: 0 0 1.4rem; }
.faq-a p { font-size: 1rem; line-height: 1.65; color: var(--ink-soft); margin: 0; max-width: 72ch; }
.faq-a p + p { margin-top: 0.7rem; }
.faq-a a { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 3px; }
.faq-a a:hover { color: #6a4f16; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1020px) {
  .act-layout { grid-template-columns: 1fr; }
  .xp-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .foot { grid-template-columns: 1fr 1fr; row-gap: 2.5rem; }
  .foot-brand { grid-column: 1 / -1; }
}
@media (max-width: 860px) {
  .split, .kiosk-split { grid-template-columns: 1fr; }
  .split .plate { aspect-ratio: 4 / 3; order: -1; }
  .directions, .directions.flip { grid-template-columns: 1fr; }
  .dir-map { aspect-ratio: 4 / 3; min-height: 0; }
  .season-panels { grid-template-columns: 1fr; }
  .season-panel { min-height: 420px; }
  .testi-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2rem; }
  .stat + .stat { border-left: 0; padding-left: 0; }
  .gen-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rec { grid-template-columns: 1fr; gap: 0.2rem; padding: 0.9rem 0; }
  .rec .yr { margin-bottom: 0.15rem; }
  .gal { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 42vw; }
  .gal figure { grid-column: span 1 !important; grid-row: span 1 !important; }
  .gal .c4r2 { grid-column: span 2 !important; }
}
@media (max-width: 620px) {
  .xp-grid { grid-template-columns: 1fr; }
  .mail-cta { padding: 1rem 1.2rem; }
  .act-facts { grid-template-columns: 1fr 1fr; }
  .act-gallery { grid-template-columns: 1fr; }
  .foot { grid-template-columns: 1fr; }
  .drive-facts { grid-template-columns: 1fr 1fr; }
  .gen-row { grid-template-columns: 1fr; }
  .page-hero { min-height: 74vh; }
  .ph-inner { padding-top: calc(var(--nav-h) + 4rem); }
}
