/* =========================================================================
   Brickyard Plantation · Americus KOA Journey — styles.css  (VERSION 2)
   ------------------------------------------------------------------------
   A more grown-up, editorial, KOA/camping-forward design.
   Vanilla CSS. Mobile-first. All design tokens live in :root for retuning.

   Palette direction (2025 outdoor-hospitality): deep pine greens as the
   "new neutrals," grounded by terracotta / red-clay (the "Brickyard" nod),
   warm honey, and linen/oat neutrals over an espresso ink. Motif is
   topographic contour line-art + warm photography — no golf-flag kitsch.

   Sections:
     1) Tokens        2) Base / reset     3) Layout helpers
     4) Buttons       5) Utility bar      6) Header / nav
     7) Hero          8) Fact strip       9) Welcome
    10) Stay / sites 11) Amenities       12) Golf feature
    13) Gallery      14) Explore area    15) Heritage
    16) Rates        17) Reviews         18) Visit
    19) CTA          20) Footer          21) FAB
    22) Topo + grain 23) Reveal / motion 24) Responsive
    25) Golf page (golf.html) additions
   ========================================================================= */

/* ------------------------------- 1) TOKENS ------------------------------ */
:root {
  /* Pine greens — the structural anchor */
  --pine-900: #142520;
  --pine-800: #193026;
  --pine-700: #21402f;   /* primary green */
  --pine-600: #2c5540;
  --pine-500: #3d6d51;
  --pine-400: #5c8a6d;
  --sage:     #93a888;   /* soft muted sage accent */
  --sage-200: #c3d0b6;

  /* Terracotta / red-clay — the warm "Brickyard" accent */
  --clay-800: #833a22;
  --clay-700: #9d4a2c;   /* primary button */
  --clay-600: #b65c3b;   /* accent / kicker / rules */
  --clay-500: #c6714d;
  --clay-300: #e2a684;

  /* Honey / wheat — small warm accents (echoes KOA yellow, used sparingly) */
  --honey:        #d3a144;
  --honey-bright: #e3b45a;
  --wheat:        #ecd7a6;

  /* Warm neutrals */
  --linen:   #f5efe3;   /* page background */
  --linen-2: #efe7d7;   /* alt warm background */
  --oat:     #e9dfca;   /* deeper warm background */
  --paper:   #fcf9f2;   /* cards / paper */
  --sand:    #ddd0b4;

  /* Ink — espresso, not pure black */
  --ink:      #29241d;
  --ink-soft: #6b6353;
  --ink-body: #574f42;
  --ink-mute: #857b6a;
  --line:     #e5ddca;
  --line-2:   #d8cdb4;
  --line-dk:  rgba(255,255,255,.15);

  /* Effects */
  --shadow-xs: 0 1px 2px rgba(28,22,14,.06);
  --shadow-sm: 0 1px 2px rgba(28,22,14,.05), 0 3px 8px rgba(28,22,14,.06);
  --shadow-md: 0 14px 30px -16px rgba(28,22,14,.30);
  --shadow-lg: 0 34px 66px -30px rgba(20,30,22,.46);
  --ring: 0 0 0 3px rgba(182,92,59,.42);

  --r-xs: 6px;
  --r-sm: 10px;
  --r:    14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  --container: 1180px;
  --container-tight: 940px;
  --gutter: clamp(1.15rem, 4vw, 2.4rem);
  --header-h: 78px;

  --font-serif: 'Fraunces', 'Iowan Old Style', Georgia, 'Times New Roman', serif;
  --font-sans:  'Instrument Sans', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

/* -------------------------------- 2) BASE ------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(1rem, 0.965rem + 0.18vw, 1.075rem);
  line-height: 1.72;
  color: var(--ink-body);
  background: var(--linen);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, iframe, video { display: block; max-width: 100%; }
img { height: auto; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.06;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.012em;
  font-optical-sizing: auto;
}

a { color: var(--clay-700); text-underline-offset: 3px; text-decoration-color: rgba(157,74,44,.4); }
a:hover { text-decoration-color: currentColor; }

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 600; color: var(--ink); }

::selection { background: var(--pine-500); color: #fff; }
:focus-visible { outline: none; box-shadow: var(--ring); border-radius: 6px; }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--pine-700); color: #fff; padding: .6rem 1rem;
  border-radius: var(--r-sm); font-weight: 600; transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

/* ---------------------------- 3) LAYOUT HELPERS ------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container-tight { max-width: var(--container-tight); }

.section { padding-block: clamp(3.75rem, 7vw, 7rem); position: relative; }
.section-head { max-width: 62ch; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head.center { margin-inline: auto; text-align: center; }

.kicker {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-sans); font-weight: 600; font-size: .78rem;
  letter-spacing: .17em; text-transform: uppercase; color: var(--clay-600);
  margin: 0 0 1.1rem;
}
.kicker-mark { width: 24px; height: 2px; background: var(--clay-600); border-radius: 2px; }
.center .kicker { justify-content: center; }
.kicker-light { color: var(--honey); }
.kicker-light .kicker-mark { background: var(--honey); }

.section-title { font-size: clamp(1.95rem, 1.3rem + 2.7vw, 3.15rem); }
.section-lead { font-size: clamp(1.06rem, 1rem + 0.42vw, 1.28rem); color: var(--ink-soft); margin-top: 1.05rem; text-wrap: pretty; }
.section-title + .section-lead { margin-top: 1.15rem; }

.fineprint { margin-top: 2rem; font-size: .9rem; color: var(--ink-mute); }
.eyebrow-serif { font-family: var(--font-serif); font-style: italic; }

/* ------------------------------- 4) BUTTONS ----------------------------- */
.btn {
  --btn-bg: var(--pine-700); --btn-fg: #fff; --btn-bd: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-sans); font-weight: 600; font-size: 1rem; line-height: 1;
  letter-spacing: .005em;
  padding: .92rem 1.5rem; border-radius: var(--r-pill);
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1.5px solid var(--btn-bd); cursor: pointer;
  text-decoration: none; white-space: nowrap;
  transition: transform .16s var(--ease), box-shadow .22s var(--ease), background .22s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
  box-shadow: var(--shadow-sm);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn svg { flex: none; }

/* Primary = terracotta (the high-contrast "Reserve" action) */
.btn-primary { --btn-bg: var(--clay-700); }
.btn-primary:hover { background: var(--clay-800); }

/* Solid pine (secondary weight on light backgrounds) */
.btn-solid { --btn-bg: var(--pine-700); }
.btn-solid:hover { background: var(--pine-600); }

/* Outline on light */
.btn-outline { --btn-bg: transparent; --btn-fg: var(--pine-700); --btn-bd: rgba(33,64,47,.4); box-shadow: none; }
.btn-outline:hover { background: rgba(33,64,47,.06); border-color: var(--pine-700); }

/* Ghost on photos (glass) */
.btn-ghost { --btn-bg: rgba(255,255,255,.13); --btn-fg: #fff; --btn-bd: rgba(255,255,255,.5); box-shadow: none; -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px); }
.btn-ghost:hover { background: rgba(255,255,255,.22); }

/* Ghost on dark solid */
.btn-ghost-dark { --btn-bg: transparent; --btn-fg: #f2ece0; --btn-bd: rgba(255,255,255,.38); box-shadow: none; }
.btn-ghost-dark:hover { background: rgba(255,255,255,.1); }

/* Honey button (KOA-flavored accent, used on dark bands) */
.btn-honey { --btn-bg: var(--honey); --btn-fg: #3a2a0e; }
.btn-honey:hover { background: var(--honey-bright); }

.btn-lg { padding: 1.08rem 1.85rem; font-size: 1.06rem; }
.btn-block { width: 100%; }

/* ----------------------------- 5) UTILITY BAR --------------------------- */
.util-bar {
  background: var(--pine-900); color: rgba(255,255,255,.82);
  font-size: .82rem; letter-spacing: .02em;
}
.util-bar-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  min-height: 40px; padding-block: .4rem;
}
.util-bar a { color: #fff; text-decoration: none; }
.util-bar a:hover { text-decoration: underline; }
.util-left { display: inline-flex; align-items: center; gap: .55rem; }
.util-left .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--honey); flex: none; }
.util-right { display: inline-flex; align-items: center; gap: 1.3rem; }
.util-right .util-phone { font-weight: 600; font-variant-numeric: tabular-nums; }
.util-right svg { width: 15px; height: 15px; vertical-align: -2px; margin-right: .3rem; }
@media (max-width: 720px) { .util-bar { display: none; } }

/* ------------------------------- 6) HEADER ------------------------------ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(245,239,227,.86);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
          backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.site-header[data-scrolled] {
  background: rgba(250,246,239,.95);
  box-shadow: 0 8px 26px -18px rgba(20,30,22,.55);
  border-bottom-color: var(--line);
}
.nav-wrap { display: flex; align-items: center; gap: 1rem; min-height: var(--header-h); }

/* Brand */
.brand { display: inline-flex; align-items: center; gap: .72rem; text-decoration: none; color: var(--ink); flex: none; }
.brand-mark { flex: none; border-radius: 13px; box-shadow: var(--shadow-sm); transition: transform .35s var(--ease); }
.brand:hover .brand-mark { transform: rotate(-3deg) scale(1.04); }
.brand-text { display: flex; flex-direction: column; line-height: 1.08; }
.brand-name { font-family: var(--font-serif); font-weight: 600; font-size: 1.14rem; color: var(--pine-800); letter-spacing: -.01em; }
.brand-sub { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-mute); font-weight: 600; }

/* Nav */
.nav { margin-left: auto; }
.nav-list { display: flex; align-items: center; gap: .15rem; list-style: none; margin: 0; padding: 0; }
.nav-list a {
  display: inline-block; padding: .5rem .78rem; border-radius: var(--r-pill);
  color: var(--ink); text-decoration: none; font-weight: 500; font-size: .95rem;
  transition: background .18s var(--ease), color .18s var(--ease);
}
.nav-list a:hover { background: rgba(33,64,47,.08); color: var(--pine-700); }
.nav-list a[data-active] { color: var(--pine-700); background: rgba(33,64,47,.1); }

.nav-actions { display: inline-flex; align-items: center; gap: .55rem; flex: none; }
.nav-call {
  display: inline-flex; align-items: center; gap: .4rem; text-decoration: none;
  font-weight: 600; color: var(--pine-700); font-size: .95rem; padding: .5rem .5rem;
  font-variant-numeric: tabular-nums; border-radius: var(--r-pill);
}
.nav-call:hover { color: var(--clay-700); }
.nav-call svg { width: 17px; height: 17px; }
.nav-reserve { padding: .68rem 1.15rem; }

.nav-toggle { display: none; }

/* -------------------------------- 7) HERO ------------------------------- */
.hero {
  position: relative; isolation: isolate;
  min-height: min(90vh, 800px);
  display: grid; grid-template-columns: 1fr; align-items: end;
  padding-block: clamp(4rem, 12vh, 8rem) clamp(2.75rem, 7vh, 5rem);
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
/* Warm unifying grade over the photography so snapshot shots read as one set */
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 78% 18%, rgba(211,161,68,.16), transparent 55%),
              linear-gradient(180deg, rgba(20,37,32,.10), rgba(20,37,32,.02) 30%);
  mix-blend-mode: multiply;
}
.hero-scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(94deg, rgba(16,30,24,.74) 0%, rgba(16,30,24,.46) 42%, rgba(16,30,24,.05) 74%),
    linear-gradient(0deg, rgba(13,26,20,.62) 0%, rgba(13,26,20,0) 42%),
    linear-gradient(180deg, rgba(13,26,20,.34) 0%, rgba(13,26,20,0) 24%);
}
.hero .topo { position: absolute; inset: auto 0 0 0; height: 62%; z-index: -1; color: #fff; opacity: .09; }

.hero-inner { position: relative; max-width: 41rem; color: #fff; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-weight: 600; letter-spacing: .13em; text-transform: uppercase;
  font-size: .76rem; color: #fbeccd; margin: 0 0 1.3rem;
  padding: .4rem .95rem .4rem .42rem; border-radius: var(--r-pill);
  background: rgba(16,30,24,.5); border: 1px solid rgba(255,255,255,.22);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.hero-eyebrow img { height: 26px; width: auto; border-radius: 4px; }
.hero-title {
  color: #fff; font-size: clamp(2.7rem, 1.5rem + 5.4vw, 5.2rem); font-weight: 400;
  letter-spacing: -.022em; line-height: 1.0; text-shadow: 0 2px 34px rgba(8,20,14,.4);
}
.hero-title em { font-style: italic; font-weight: 400; }
.hero-sub {
  margin: 1.5rem 0 0; font-size: clamp(1.1rem, 1rem + 0.55vw, 1.32rem);
  color: rgba(255,255,255,.94); max-width: 37rem; line-height: 1.6;
  text-shadow: 0 1px 3px rgba(8,20,14,.5), 0 1px 20px rgba(8,20,14,.3);
}
.hero-sub strong { color: #fff; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2.1rem; }
.hero-trust {
  margin: 1.9rem 0 0; font-size: .9rem; color: rgba(255,255,255,.82);
  display: flex; flex-wrap: wrap; gap: .3rem .9rem;
}
.hero-trust span { display: inline-flex; align-items: center; gap: .45rem; }
.hero-trust span::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--honey); }

/* ----------------------------- 8) FACT STRIP ---------------------------- */
.factbar { background: var(--pine-800); color: #fff; position: relative; z-index: 1; }
.factbar-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1rem; padding-block: clamp(1.7rem, 3vw, 2.5rem);
}
.factbar-item { text-align: center; display: flex; flex-direction: column; gap: .15rem; position: relative; }
.factbar-item + .factbar-item::before {
  content: ""; position: absolute; left: 0; top: 10%; height: 80%; width: 1px; background: var(--line-dk);
}
.factbar-num { font-family: var(--font-serif); font-size: clamp(2rem, 1.4rem + 2.4vw, 3rem); font-weight: 500; color: #fff; line-height: 1; }
.factbar-num .u { font-size: .55em; color: var(--honey); }
.factbar-label { font-size: .78rem; letter-spacing: .09em; text-transform: uppercase; color: rgba(255,255,255,.72); font-weight: 600; }

/* ------------------------------ 9) WELCOME ------------------------------ */
.section-welcome { background: var(--linen); }
.welcome-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(1.8rem, 5vw, 4.5rem); align-items: center; }
.welcome-copy .section-lead:first-of-type { color: var(--ink); font-family: var(--font-serif); font-size: clamp(1.35rem, 1.1rem + 1vw, 1.85rem); font-weight: 400; line-height: 1.34; letter-spacing: -.01em; }
.welcome-copy .section-lead:first-of-type + p { margin-top: 1.3rem; }
.welcome-signature { margin-top: 1.7rem; display: inline-flex; align-items: center; gap: .8rem; font-size: .9rem; color: var(--ink-mute); }
.welcome-signature .line { width: 34px; height: 1px; background: var(--line-2); }

/* Framed photo cluster */
.welcome-media { position: relative; }
.framed {
  margin: 0; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 6px solid var(--paper); background: var(--paper);
}
.framed img { width: 100%; height: 100%; object-fit: cover; display: block; }
.welcome-media .framed-main { aspect-ratio: 4/5; }
.welcome-media .framed-badge {
  position: absolute; left: -22px; bottom: -22px; width: 128px; height: 128px;
  border-radius: 50%; display: grid; place-items: center; text-align: center;
  background: var(--clay-700); color: #fbeeda; box-shadow: var(--shadow-lg);
  border: 5px solid var(--paper); padding: .5rem;
  font-family: var(--font-serif); line-height: 1.1;
}
.framed-badge .big { font-size: 1.9rem; font-weight: 600; display: block; }
.framed-badge .small { font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; font-family: var(--font-sans); font-weight: 600; margin-top: .2rem; color: #f2d3b2; }

/* ---------------------------- 10) STAY / SITES -------------------------- */
.section-stay { background: var(--paper); }
.stay-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(1.8rem, 5vw, 4rem); align-items: center; }
.stay-media { position: relative; }
.stay-media .framed-main { aspect-ratio: 5/4; }
.stay-media .stay-caption {
  position: absolute; right: .9rem; bottom: .9rem;
  background: rgba(20,37,32,.82); color: #fff; font-size: .78rem; font-weight: 500;
  padding: .45rem .8rem; border-radius: var(--r-pill); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.check-list { list-style: none; margin: 1.6rem 0 0; padding: 0; display: grid; gap: .85rem; }
.check-list li { position: relative; padding-left: 2.1rem; color: var(--ink-body); }
.check-list li strong { color: var(--ink); }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: .12em; width: 1.42rem; height: 1.42rem;
  background: var(--pine-600); border-radius: 50%;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9.5 16.2 5.3 12l-1.4 1.4 5.6 5.6 12-12-1.4-1.4z'/%3E%3C/svg%3E") center/74% no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9.5 16.2 5.3 12l-1.4 1.4 5.6 5.6 12-12-1.4-1.4z'/%3E%3C/svg%3E") center/74% no-repeat;
}
.stay-actions { margin-top: 1.9rem; display: flex; flex-wrap: wrap; gap: .8rem; }

/* ----------------------------- 11) AMENITIES ---------------------------- */
.section-amenities { background: var(--linen); }
.amenity-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.amenity {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r);
  padding: 1.45rem 1.3rem; transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.amenity:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--sand); }
.amenity-ico { width: 44px; height: 44px; border-radius: 11px; display: grid; place-items: center; background: rgba(44,85,64,.09); color: var(--pine-600); margin-bottom: .95rem; }
.amenity-ico svg { width: 24px; height: 24px; }
.amenity h3 { font-size: 1.08rem; margin-bottom: .3rem; }
.amenity p { font-size: .92rem; color: var(--ink-soft); margin: 0; }

/* --------------------------- 12) GOLF FEATURE --------------------------- */
.section-golf { background: var(--pine-900); color: #fff; position: relative; overflow: hidden; }
.section-golf .topo { position: absolute; inset: 0; height: 100%; color: #fff; opacity: .06; z-index: 0; }
.section-golf > .container { position: relative; z-index: 1; }
.section-golf .section-title, .section-golf h3 { color: #fff; }
.section-golf .section-lead { color: rgba(255,255,255,.84); }
.section-golf .kicker { color: var(--honey); }
.section-golf .kicker-mark { background: var(--honey); }

.golf-hook {
  display: inline-flex; align-items: center; gap: .6rem; margin-bottom: 1.4rem;
  background: rgba(211,161,68,.14); border: 1px solid rgba(211,161,68,.36);
  color: var(--honey); font-weight: 600; font-size: .82rem; letter-spacing: .06em; text-transform: uppercase;
  padding: .45rem .9rem; border-radius: var(--r-pill);
}
.golf-hook svg { width: 16px; height: 16px; }

.nines { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; margin-top: .5rem; }
.nine-card {
  background: rgba(255,255,255,.045); border: 1px solid var(--line-dk); border-radius: var(--r-lg);
  padding: 1.6rem 1.5rem; position: relative; overflow: hidden;
  transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
}
.nine-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: linear-gradient(90deg, var(--honey), var(--clay-500)); }
.nine-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.07); border-color: rgba(211,161,68,.4); }
.nine-tag { font-family: var(--font-serif); font-size: 1.45rem; font-weight: 500; color: #fff; margin-top: .35rem; }
.nine-meta { font-size: .8rem; font-weight: 600; letter-spacing: .05em; color: var(--honey); text-transform: uppercase; margin: .35rem 0 .9rem; }
.nine-card p:last-child { color: rgba(255,255,255,.8); margin: 0; font-size: .95rem; }

.golf-feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 1.7rem; }
.golf-mini { display: flex; align-items: center; gap: .7rem; background: rgba(255,255,255,.04); border: 1px solid var(--line-dk); border-radius: var(--r); padding: .95rem 1.1rem; }
.golf-mini svg { width: 22px; height: 22px; color: var(--honey); flex: none; }
.golf-mini span { font-size: .92rem; color: rgba(255,255,255,.9); font-weight: 500; }
.golf-cta { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: .85rem; align-items: center; }
.golf-note { margin-top: 1.4rem; font-size: .88rem; color: rgba(255,255,255,.62); }

/* ------------------------------ 13) GALLERY ----------------------------- */
.section-gallery { background: var(--paper); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 1rem; }
.shot { margin: 0; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); position: relative; }
.shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.shot:hover img { transform: scale(1.045); }
.shot figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1.4rem .9rem .7rem;
  font-size: .8rem; font-weight: 500; color: #fff;
  background: linear-gradient(0deg, rgba(16,30,24,.7), transparent);
  opacity: 0; transform: translateY(6px); transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.shot:hover figcaption { opacity: 1; transform: none; }
.shot-tall { grid-row: span 2; }
.shot-wide { grid-column: span 2; }

/* --------------------------- 14) EXPLORE AREA --------------------------- */
.section-explore { background: var(--linen); }
.explore-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.explore-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 1.55rem 1.5rem; transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.explore-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.explore-dist { display: inline-flex; align-items: center; gap: .35rem; font-size: .72rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: var(--clay-700); background: rgba(182,92,59,.1); border-radius: var(--r-pill); padding: .3rem .7rem; margin-bottom: .95rem; }
.explore-dist svg { width: 13px; height: 13px; }
.explore-card h3 { font-size: 1.18rem; color: var(--pine-800); margin-bottom: .4rem; }
.explore-card p { font-size: .93rem; color: var(--ink-soft); margin: 0; }

/* ----------------------------- 15) HERITAGE ----------------------------- */
.section-heritage { background: var(--linen-2); position: relative; overflow: hidden; }
.heritage-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(1.8rem, 5vw, 4rem); align-items: center; }
.timeline { list-style: none; margin: 1.6rem 0 0; padding: 0; position: relative; }
.timeline::before { content: ""; position: absolute; left: 8px; top: 10px; bottom: 10px; width: 2px; background: linear-gradient(var(--clay-500), var(--sand)); }
.timeline li { position: relative; padding: 0 0 1.5rem 2.5rem; }
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before {
  content: ""; position: absolute; left: 0; top: .3rem; width: 18px; height: 18px;
  border-radius: 50%; background: var(--clay-700); border: 3px solid var(--linen-2);
  box-shadow: 0 0 0 2px var(--clay-500);
}
.timeline-year { display: block; font-family: var(--font-serif); font-weight: 600; font-size: 1.08rem; color: var(--clay-700); }
.timeline p { margin: .2rem 0 0; color: var(--ink-soft); font-size: .96rem; }
.heritage-media .framed-main { aspect-ratio: 4/3; }
.heritage-media figcaption { margin-top: .9rem; font-size: .86rem; color: var(--ink-mute); font-style: italic; text-align: center; }

/* ------------------------------- 16) RATES ------------------------------ */
.section-rates { background: var(--paper); }
.rate-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; align-items: stretch; }
.rate-card {
  background: var(--linen); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 1.65rem 1.45rem; position: relative; display: flex; flex-direction: column;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.rate-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.rate-card h3 { font-size: 1.1rem; color: var(--pine-800); }
.rate-price { font-family: var(--font-serif); font-size: 2.5rem; font-weight: 500; color: var(--ink); margin: .6rem 0 .5rem; line-height: 1; }
.rate-price span { display: block; font-family: var(--font-sans); font-size: .8rem; font-weight: 600; color: var(--ink-mute); letter-spacing: .01em; margin-top: .45rem; }
.rate-note { font-size: .9rem; color: var(--ink-soft); margin: 0; }
.rate-card-feature { background: linear-gradient(165deg, var(--pine-700), var(--pine-800)); border-color: transparent; color: #fff; box-shadow: var(--shadow-lg); }
.rate-card-feature h3, .rate-card-feature .rate-price { color: #fff; }
.rate-card-feature .rate-note { color: rgba(255,255,255,.82); }
.rate-card-feature .rate-price span { color: rgba(255,255,255,.7); }
.rate-flag { position: absolute; top: -11px; left: 1.45rem; background: var(--honey); color: #3a2a0e; font-size: .7rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; padding: .3rem .7rem; border-radius: var(--r-pill); box-shadow: var(--shadow-sm); }
.rate-actions { display: flex; flex-wrap: wrap; gap: .85rem; justify-content: center; margin-top: 2.2rem; }
.rate-disclaimer {
  display: flex; align-items: flex-start; gap: .65rem; justify-content: center;
  margin: 1.6rem auto 0; max-width: 60ch; text-align: left;
  background: rgba(182,92,59,.08); border: 1px solid rgba(182,92,59,.22);
  border-radius: var(--r); padding: 1rem 1.3rem; color: var(--clay-800);
  font-size: .93rem; line-height: 1.5; text-wrap: pretty;
}
.rate-disclaimer svg { flex: none; color: var(--clay-600); margin-top: .12em; }
.rate-disclaimer a { color: var(--clay-800); font-weight: 700; white-space: nowrap; }

/* ------------------------------ 17) REVIEWS ----------------------------- */
.section-reviews { background: var(--pine-800); color: #fff; position: relative; overflow: hidden; }
.section-reviews .topo { position: absolute; inset: 0; height: 100%; color: #fff; opacity: .05; }
.section-reviews > .container { position: relative; z-index: 1; }
.section-reviews .section-title { color: #fff; }
.review-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem; }
.review-card { background: rgba(255,255,255,.055); border: 1px solid var(--line-dk); border-radius: var(--r-lg); padding: 1.7rem 1.65rem; margin: 0; }
.stars { color: var(--honey); letter-spacing: .18em; font-size: 1rem; margin-bottom: .8rem; }
.review-card blockquote { margin: 0; font-family: var(--font-serif); font-size: 1.2rem; line-height: 1.5; color: #fff; font-weight: 400; }
.review-card figcaption { margin-top: 1rem; font-weight: 600; color: var(--honey); font-size: .92rem; }

/* -------------------------------- 18) VISIT ----------------------------- */
.section-visit { background: var(--linen); }
.visit-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: clamp(1.6rem, 4vw, 3rem); align-items: stretch; }
.visit-block { margin-top: 1.8rem; }
.visit-block:first-of-type { margin-top: 0; }
.visit-label { font-size: .76rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--clay-700); margin: 0 0 .5rem; }
.visit-address { font-family: var(--font-serif); font-size: 1.32rem; color: var(--ink); margin: 0 0 1.1rem; line-height: 1.3; }
address.visit-block { font-style: normal; }
.hours { list-style: none; margin: 0; padding: 0; max-width: 23rem; }
.hours li { display: flex; justify-content: space-between; gap: 1rem; padding: .55rem 0; border-bottom: 1px dashed var(--line-2); }
.hours li:last-child { border-bottom: 0; }
.hours li span:first-child { font-weight: 600; color: var(--ink); }
.hours li span:last-child { color: var(--ink-soft); font-variant-numeric: tabular-nums; }
.visit-nearby { color: var(--ink-soft); max-width: 38ch; }
.visit-map { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); min-height: 360px; }
.visit-map iframe { width: 100%; height: 100%; min-height: 360px; border: 0; }

/* --------------------------------- 19) CTA ------------------------------ */
.cta-band { background: linear-gradient(150deg, var(--clay-700), var(--clay-800) 70%); color: #fff; text-align: center; position: relative; overflow: hidden; }
.cta-band .topo { position: absolute; inset: 0; height: 100%; color: #fff; opacity: .1; }
.cta-inner { position: relative; z-index: 1; padding-block: clamp(3.25rem, 6vw, 5rem); }
.cta-title { color: #fff; font-size: clamp(2rem, 1.4rem + 2.6vw, 3rem); }
.cta-sub { margin: .85rem auto 1.9rem; color: rgba(255,255,255,.92); font-size: 1.12rem; max-width: 46ch; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .85rem; justify-content: center; }
.cta-band .btn-primary { --btn-bg: #fff; --btn-fg: var(--clay-800); }
.cta-band .btn-primary:hover { --btn-bg: #fff3ea; background: #fff3ea; }

/* -------------------------------- 20) FOOTER ---------------------------- */
.site-footer { background: var(--pine-900); color: rgba(255,255,255,.76); padding-top: clamp(3rem, 6vw, 4.5rem); }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.05fr; gap: clamp(1.6rem, 4vw, 3rem); padding-bottom: 2.5rem; }
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-sub { color: rgba(255,255,255,.58); }
.footer-tag { margin-top: 1.1rem; font-family: var(--font-serif); font-style: italic; font-size: 1.06rem; color: rgba(255,255,255,.82); line-height: 1.5; max-width: 34ch; }
.footer-koa { margin-top: 1.2rem; display: inline-flex; align-items: center; gap: .6rem; background: rgba(255,255,255,.06); border: 1px solid var(--line-dk); border-radius: var(--r); padding: .55rem .8rem; }
.footer-koa img { height: 40px; width: auto; border-radius: 4px; }
.footer-koa span { font-size: .78rem; color: rgba(255,255,255,.72); line-height: 1.35; }
.footer-col h3 { color: #fff; font-size: 1.02rem; margin-bottom: 1rem; font-family: var(--font-sans); font-weight: 600; letter-spacing: .02em; }
.footer-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .65rem; }
.footer-list a { color: rgba(255,255,255,.8); text-decoration: none; }
.footer-list a:hover { color: #fff; text-decoration: underline; }
.footer-hours li { display: flex; justify-content: space-between; gap: 1rem; font-variant-numeric: tabular-nums; font-size: .92rem; }
.footer-hours li span:first-child { color: rgba(255,255,255,.58); }
.footer-cta .btn { margin-bottom: .7rem; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .5rem 1.5rem; padding-block: 1.5rem; border-top: 1px solid var(--line-dk); font-size: .84rem; color: rgba(255,255,255,.55); }
.footer-bottom p { margin: 0; }
.footer-legal { display: grid; gap: .3rem; }
.footer-credit a { color: rgba(255,255,255,.42); text-decoration: none; letter-spacing: .01em; transition: color .2s var(--ease); }
.footer-credit a:hover { color: rgba(255,255,255,.82); text-decoration: underline; }

/* --------------------------------- 21) FAB ------------------------------ */
.fab-call {
  position: fixed; right: 1rem; bottom: 1rem; z-index: 90;
  display: none; align-items: center; gap: .5rem;
  background: var(--clay-700); color: #fff; font-weight: 700; text-decoration: none;
  padding: .9rem 1.2rem; border-radius: var(--r-pill);
  box-shadow: 0 14px 32px -10px rgba(131,58,34,.75);
}
.fab-call:active { transform: scale(.97); }
.fab-call svg { flex: none; }

/* ---------------------------- 22) TOPO + GRAIN -------------------------- */
/* Reusable decorative topographic contour art. Drop <svg class="topo">…</svg>
   into any section; color + opacity are set per-section above. */
.topo { pointer-events: none; }
.topo path { vector-effect: non-scaling-stroke; }

/* Very subtle paper grain over the whole page for warmth (never over text
   legibility — extremely low opacity, fixed, non-interactive). */
.grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}
@media (prefers-reduced-motion: reduce) { .grain { display: none; } }

/* ---------------------------- 23) REVEAL / MOTION ----------------------- */
.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); will-change: opacity, transform; }
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .btn:hover, .amenity:hover, .nine-card:hover, .rate-card:hover, .explore-card:hover, .shot:hover img { transform: none; }
}

/* ------------------------------ 24) RESPONSIVE -------------------------- */
@media (max-width: 1080px) {
  .amenity-grid { grid-template-columns: repeat(3, 1fr); }
  .golf-feature-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  :root { --header-h: 68px; }

  /* Mobile nav */
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0; margin: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform .28s var(--ease), opacity .28s var(--ease);
  }
  .nav[data-open] { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; padding: .6rem var(--gutter) 1.1rem; }
  .nav-list a { padding: .9rem .6rem; border-radius: var(--r-sm); font-size: 1.05rem; border-bottom: 1px solid var(--line); }
  .nav-list li:last-child a { border-bottom: 0; }

  .nav-call { display: none; }

  .nav-toggle {
    display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
    margin-left: auto; width: 46px; height: 46px; padding: 0 11px;
    background: transparent; border: 1px solid var(--line-2); border-radius: var(--r-sm); cursor: pointer;
  }
  .nav-toggle-bar { display: block; height: 2.5px; width: 100%; background: var(--pine-800); border-radius: 2px; transition: transform .25s var(--ease), opacity .2s var(--ease); }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

  /* Stack grids */
  .welcome-grid, .stay-grid, .heritage-grid, .visit-grid, .rv-intro-grid { grid-template-columns: 1fr; }
  .nines, .rate-grid, .review-grid { grid-template-columns: 1fr; }
  .amenity-grid, .explore-grid { grid-template-columns: repeat(2, 1fr); }
  .factbar-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem; }
  .factbar-item:nth-child(odd)::before { display: none; }

  .welcome-media { max-width: 420px; margin-inline: auto; }
  .welcome-media .framed-badge { width: 108px; height: 108px; left: -12px; }
  .stay-media { order: -1; }

  /* Gallery becomes a simpler 2-col */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .shot-wide { grid-column: span 2; }
  .shot-tall { grid-row: span 1; }

  .fab-call { display: inline-flex; }
}

@media (max-width: 560px) {
  .brand-sub { display: none; }
  /* Keep brand + Reserve + hamburger on one line without overflowing narrow phones */
  .nav-actions { gap: .45rem; }
  .nav-reserve { padding: .58rem .95rem; font-size: .92rem; }
  .brand { gap: .55rem; }
  .brand-mark { width: 38px; height: 38px; }
  .brand-name { font-size: 1.02rem; }
  .hero { min-height: auto; }
  .hero-actions .btn { flex: 1 1 auto; }
  .amenity-grid, .explore-grid, .gallery-grid, .golf-feature-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-auto-rows: 220px; }
  .shot-wide, .shot-tall { grid-column: span 1; grid-row: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
  .rate-actions .btn, .cta-actions .btn { width: 100%; }
}

/* =========================================================================
   25) GOLF PAGE (golf.html) — additive. Reuses tokens + most components.
   ========================================================================= */

/* Simple photographic / textured page hero (also used by rvpark-style pages) */
.page-hero {
  position: relative; isolation: isolate;
  min-height: min(64vh, 560px);
  display: grid; align-items: end;
  padding-block: clamp(3.5rem, 10vh, 6.5rem) clamp(2.5rem, 6vh, 4rem);
  overflow: hidden;
  background: linear-gradient(160deg, var(--pine-700), var(--pine-900));
}
.page-hero .topo { position: absolute; inset: 0; height: 100%; color: #fff; opacity: .08; z-index: -1; }
.page-hero-scrim { position: absolute; inset: 0; z-index: -1; background: radial-gradient(90% 120% at 85% 0%, rgba(211,161,68,.14), transparent 55%); }
.page-hero-inner { position: relative; max-width: 46rem; color: #fff; }
.breadcrumb { font-size: .84rem; color: rgba(255,255,255,.78); margin-bottom: 1rem; }
.breadcrumb a { color: rgba(255,255,255,.92); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 .3rem; opacity: .6; }
.page-hero-eyebrow { display: inline-flex; align-items: center; gap: .55rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; font-size: .76rem; color: var(--honey); margin-bottom: 1rem; }
.page-hero-eyebrow svg { width: 17px; height: 17px; }
.page-hero-title { color: #fff; font-size: clamp(2.4rem, 1.5rem + 4vw, 4.2rem); font-weight: 400; letter-spacing: -.02em; line-height: 1.02; }
.page-hero-title em { font-style: italic; }
.page-hero-sub { margin-top: 1.2rem; font-size: clamp(1.06rem, 1rem + .5vw, 1.28rem); color: rgba(255,255,255,.92); max-width: 42rem; }
.page-hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 1.9rem; }
.page-hero-trust { margin-top: 1.5rem; font-size: .9rem; color: rgba(255,255,255,.82); }

/* Included-with-stay callout used on the golf page */
.rv-hook { background: var(--linen-2); text-align: center; padding-block: clamp(3rem, 6vw, 5rem); position: relative; overflow: hidden; }
.rv-hook-inner { max-width: 52rem; margin-inline: auto; position: relative; z-index: 1; }
.rv-hook-badge { width: 62px; height: 62px; margin: 0 auto 1.2rem; border-radius: 50%; background: rgba(157,74,44,.1); color: var(--clay-700); display: grid; place-items: center; border: 1px solid rgba(157,74,44,.3); }
.rv-hook-title { font-size: clamp(1.8rem, 1.3rem + 2.4vw, 2.7rem); }
.rv-hook-sub { color: var(--ink-soft); font-size: 1.14rem; margin-top: 1rem; }
.rv-hook-sub strong { color: var(--clay-700); }
.rv-hook-tiles { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.rv-hook-tile { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 1.2rem 1.7rem; min-width: 130px; display: flex; flex-direction: column; gap: .25rem; box-shadow: var(--shadow-sm); }
.rv-hook-num { font-family: var(--font-serif); font-size: 2.4rem; font-weight: 500; color: var(--clay-700); line-height: 1; }
.rv-hook-tile span:last-child { font-size: .78rem; letter-spacing: .05em; text-transform: uppercase; color: var(--ink-mute); font-weight: 600; }
.rv-hook-note { margin-top: 1.8rem; font-size: .9rem; color: var(--ink-mute); }

/* Golf page: practice/amenity tiles on light bg */
.section-practice { background: var(--paper); }
.practice-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.practice-tile { background: var(--linen); border: 1px solid var(--line); border-radius: var(--r); padding: 1.5rem 1.35rem; transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.practice-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.practice-tile .amenity-ico { margin-bottom: .9rem; }
.practice-tile h3 { font-size: 1.08rem; margin-bottom: .3rem; }
.practice-tile p { font-size: .92rem; color: var(--ink-soft); margin: 0; }

/* Golf page: intro on light */
.section-golf-intro { background: var(--linen); }
.golf-intro-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(1.8rem, 5vw, 4rem); align-items: center; }
.golf-stat-cluster { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.golf-stat { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.5rem 1.4rem; box-shadow: var(--shadow-sm); }
.golf-stat .num { font-family: var(--font-serif); font-size: 2.6rem; font-weight: 500; color: var(--pine-700); line-height: 1; }
.golf-stat .lbl { font-size: .85rem; color: var(--ink-soft); margin-top: .5rem; display: block; }

/* Golf page: dark nines section reuses .section-golf; disc golf reuses too */
.section-disc { background: var(--linen); }
.disc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.disc-feature { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.7rem 1.5rem; text-align: center; box-shadow: var(--shadow-sm); }
.disc-num { display: block; font-family: var(--font-serif); font-size: clamp(2.3rem, 1.8rem + 2vw, 3.2rem); font-weight: 500; color: var(--clay-700); line-height: 1; }
.disc-feature p { margin: .6rem 0 0; color: var(--ink-soft); font-size: .95rem; }
.disc-extra { margin-top: 1.4rem; background: rgba(211,161,68,.1); border: 1px solid rgba(211,161,68,.32); border-radius: var(--r); padding: 1.2rem 1.4rem; }
.disc-extra p { margin: 0; color: var(--ink-body); }
.disc-extra strong { color: var(--clay-700); }

@media (max-width: 900px) {
  .golf-intro-grid { grid-template-columns: 1fr; }
  .practice-grid { grid-template-columns: repeat(2, 1fr); }
  .disc-grid { grid-template-columns: 1fr; }
  .page-hero-actions .btn { flex: 1 1 auto; }
}
@media (max-width: 560px) {
  .practice-grid { grid-template-columns: 1fr; }
}
