/* =========================================================================
   Brickyard Plantation Golf Club & RV Park — styles.css
   Vanilla CSS. Mobile-first. Custom properties for easy retuning.
   Sections: 1) Tokens  2) Base/reset  3) Layout  4) Buttons
             5) Header/nav  6) Hero  7) Quickbar  8) Sections (golf, stay,
             disc, story, rates, visit, reviews)  9) CTA  10) Footer
             11) FAB  12) Reveal/motion  13) Responsive
   ========================================================================= */

/* ----------------------------- 1) TOKENS ------------------------------ */
:root {
  /* Brand greens */
  --green-900: #12301d;
  --green-800: #173f26;
  --green-700: #1b4b2e;   /* primary */
  --green-600: #236b41;
  --green-500: #2f8a52;
  --green-400: #5aa873;

  /* Warm neutrals */
  --cream:    #f7f4ec;
  --cream-50: #fcfaf5;
  --paper:    #ffffff;
  --sand:     #e9dcbd;

  /* Clay / brick accents (the "Brickyard" red-clay nod) */
  --brick:    #b3552f;
  --brick-600:#9a4625;
  --clay:     #c0894f;
  --gold:     #d9a23f;

  /* Ink */
  --ink:      #21281d;
  --ink-soft: #56604e;
  --ink-mute: #7c8473;
  --line:     #e8e2d3;
  --line-dk:  rgba(255,255,255,.16);

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(18,38,24,.06), 0 2px 6px rgba(18,38,24,.06);
  --shadow-md: 0 10px 24px -12px rgba(18,38,24,.28);
  --shadow-lg: 0 30px 60px -28px rgba(18,38,24,.40);
  --ring: 0 0 0 3px rgba(47,138,82,.45);

  --r-sm: 10px;
  --r:    16px;
  --r-lg: 24px;
  --r-pill: 999px;

  --container: 1140px;
  --gutter: clamp(1.1rem, 4vw, 2.25rem);
  --header-h: 76px;

  --font-serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-sans:  'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --ease: cubic-bezier(.22,.61,.36,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) + 10px); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

h1, h2, h3 { font-family: var(--font-serif); font-weight: 600; line-height: 1.08; color: var(--ink); margin: 0; letter-spacing: -0.01em; }

a { color: var(--green-600); text-decoration-color: rgba(35,107,65,.35); text-underline-offset: 3px; }
a:hover { text-decoration-color: currentColor; }

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--green-400); 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(--green-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 ------------------------------ */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }

.section { padding-block: clamp(3.75rem, 7vw, 6.5rem); position: relative; }
.section-head { max-width: 60ch; margin-bottom: clamp(2rem, 4vw, 3rem); }

.kicker {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-sans); font-weight: 700; font-size: .8rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--brick);
  margin: 0 0 1rem;
}
.kicker-mark { width: 26px; height: 2px; background: var(--brick); border-radius: 2px; }
.kicker-light { color: var(--gold); }
.kicker-light .kicker-mark { background: var(--gold); }

.section-title { font-size: clamp(1.9rem, 1.3rem + 2.6vw, 3rem); }
.section-lead { font-size: clamp(1.05rem, 1rem + 0.4vw, 1.25rem); color: var(--ink-soft); margin-top: 1rem; }

.fineprint { margin-top: 2rem; font-size: .9rem; color: var(--ink-mute); letter-spacing: .01em; }

/* ----------------------------- 4) BUTTONS ----------------------------- */
.btn {
  --btn-bg: var(--green-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;
  padding: .85rem 1.35rem; 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 .15s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), 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; }

.btn-primary { --btn-bg: var(--green-700); }
.btn-primary:hover { background: var(--green-600); }

.btn-ghost { --btn-bg: rgba(255,255,255,.14); --btn-fg: #fff; --btn-bd: rgba(255,255,255,.55); backdrop-filter: blur(4px); box-shadow: none; }
.btn-ghost:hover { background: rgba(255,255,255,.24); }

.btn-ghost-dark { --btn-bg: transparent; --btn-fg: #eaf3ec; --btn-bd: rgba(255,255,255,.4); box-shadow: none; }
.btn-ghost-dark:hover { background: rgba(255,255,255,.1); }

.btn-lg { padding: 1.05rem 1.7rem; font-size: 1.0625rem; }
.btn-block { width: 100%; }

.btn-call { --btn-bg: var(--brick); }
.btn-call:hover { background: var(--brick-600); }

/* ----------------------------- 5) HEADER ------------------------------ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247,244,236,.82);
  backdrop-filter: saturate(140%) blur(12px);
  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(252,250,245,.95);
  box-shadow: 0 6px 24px -16px rgba(18,38,24,.5);
  border-bottom-color: var(--line);
}
.nav-wrap { display: flex; align-items: center; gap: 1rem; min-height: var(--header-h); }

.brand { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; color: var(--ink); flex: none; }
.brand-mark { border-radius: 12px; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease); flex: none; }
.brand:hover .brand-mark { transform: rotate(-4deg) scale(1.04); }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--font-serif); font-weight: 600; font-size: 1.12rem; color: var(--green-800); letter-spacing: -.01em; }
.brand-sub { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-mute); font-weight: 600; }

.nav { margin-left: auto; }
.nav-list { display: flex; align-items: center; gap: .35rem; list-style: none; margin: 0; padding: 0; }
.nav-list a {
  display: inline-block; padding: .5rem .8rem; border-radius: var(--r-pill);
  color: var(--ink); text-decoration: none; font-weight: 600; font-size: .95rem;
  transition: background .18s var(--ease), color .18s var(--ease);
}
.nav-list a:hover { background: rgba(35,107,65,.1); color: var(--green-700); }
.nav-list a[data-active] { color: var(--green-700); background: rgba(35,107,65,.12); }

.nav-call { flex: none; }
.nav-call span { font-variant-numeric: tabular-nums; }

.nav-toggle { display: none; }

/* ----------------------------- 6) HERO -------------------------------- */
.hero {
  position: relative; isolation: isolate;
  min-height: min(92vh, 820px);
  display: grid; grid-template-columns: 1fr; align-items: center;   /* 1fr column keeps .container full-width so hero text stays left-anchored */
  padding-block: clamp(4rem, 12vh, 9rem);
  overflow: hidden;
}
.hero-art { position: absolute; inset: 0; z-index: -2; }
.hero-svg { width: 100%; height: 100%; object-fit: cover; }
.hero-scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(100deg, rgba(12,32,20,.66) 0%, rgba(12,32,20,.40) 46%, rgba(12,32,20,0) 74%),
    linear-gradient(180deg, rgba(12,32,20,.42) 0%, rgba(12,32,20,0) 30%),
    linear-gradient(0deg, rgba(12,32,20,.45) 0%, rgba(12,32,20,0) 40%);
}

.hero-sun { transform-origin: 1080px 230px; animation: heroSun 16s ease-in-out infinite alternate; }
.hero-clouds { animation: heroDrift 40s linear infinite alternate; }
@keyframes heroSun { from { transform: translateY(0); } to { transform: translateY(-14px); } }
@keyframes heroDrift { from { transform: translateX(0); } to { transform: translateX(40px); } }

.hero-inner { position: relative; max-width: 40rem; color: #fff; }
.hero-eyebrow {
  display: inline-block;
  font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  font-size: .8rem; color: #ffe7bd; margin: 0 0 1.25rem;
  padding: .5rem .95rem; border-radius: var(--r-pill);
  background: rgba(12,32,20,.52);
  border: 1px solid rgba(255,255,255,.24);
  -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
  box-shadow: 0 8px 22px -12px rgba(8,24,14,.7);
}
.hero-title {
  color: #fff; font-size: clamp(2.6rem, 1.6rem + 5vw, 5rem); font-weight: 600;
  letter-spacing: -.02em; text-shadow: 0 2px 30px rgba(8,24,14,.35);
}
.hero-sub {
  margin: 1.4rem 0 0; font-size: clamp(1.08rem, 1rem + 0.5vw, 1.3rem);
  color: rgba(255,255,255,.94); max-width: 34rem;
  text-shadow: 0 1px 3px rgba(8,24,14,.5), 0 1px 18px rgba(8,24,14,.32);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; }
.hero-trust {
  margin: 1.8rem 0 0; font-size: .92rem; color: rgba(255,255,255,.8);
  display: inline-flex; flex-wrap: wrap; gap: .25rem .1rem;
}

/* ----------------------------- 7) QUICKBAR ---------------------------- */
.quickbar { background: var(--green-800); color: #fff; }
.quickbar-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1rem; padding-block: clamp(1.6rem, 3vw, 2.4rem);
}
.quickbar-item {
  text-align: center; display: flex; flex-direction: column; gap: .1rem;
  position: relative;
}
.quickbar-item + .quickbar-item::before {
  content: ""; position: absolute; left: 0; top: 12%; height: 76%; width: 1px;
  background: var(--line-dk);
}
.quickbar-num { font-family: var(--font-serif); font-size: clamp(2rem, 1.4rem + 2.4vw, 3rem); font-weight: 600; color: #fff; line-height: 1; }
.quickbar-label { font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.72); font-weight: 600; }

/* ----------------------------- 8) SECTIONS ---------------------------- */
.section-golf { background: var(--cream); }

/* The three nines */
.nines { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-bottom: 3rem; }
.nine-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 1.6rem 1.5rem; box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.nine-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 5px; background: linear-gradient(90deg, var(--green-600), var(--green-400)); }
.nine-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.nine-tag { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 600; color: var(--green-700); margin-top: .4rem; }
.nine-meta { font-size: .85rem; font-weight: 600; letter-spacing: .04em; color: var(--brick); text-transform: uppercase; margin: .35rem 0 .9rem; }
.nine-card p:last-child { color: var(--ink-soft); margin: 0; }

/* Amenity tiles */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; list-style: none; margin: 0; padding: 0; }
.feature-tile {
  background: var(--cream-50); border: 1px solid var(--line); border-radius: var(--r);
  padding: 1.5rem 1.3rem; transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.feature-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--sand); }
.feature-tile svg { width: 30px; height: 30px; color: var(--green-600); margin-bottom: .85rem; }
.feature-tile h3 { font-size: 1.12rem; margin-bottom: .35rem; }
.feature-tile p { font-size: .94rem; color: var(--ink-soft); margin: 0; }

/* Stay & Play */
.section-stay { background: var(--paper); }
.stay-grid { display: grid; grid-template-columns: 1.25fr .85fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
.check-list { list-style: none; margin: 1.75rem 0 0; padding: 0; display: grid; gap: .8rem; }
.check-list li { position: relative; padding-left: 2.1rem; color: var(--ink-soft); }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: .15em; width: 1.4rem; height: 1.4rem;
  background: var(--green-500); 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/76% 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/76% no-repeat;
}
.stay-actions { margin-top: 1.9rem; }
.stay-card {
  background: linear-gradient(165deg, var(--green-700), var(--green-800));
  color: #fff; border-radius: var(--r-lg); padding: clamp(1.6rem, 3vw, 2.2rem);
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.stay-card::after { content: ""; position: absolute; right: -40px; bottom: -40px; width: 180px; height: 180px; background: radial-gradient(circle, rgba(255,255,255,.08), transparent 70%); }
.stay-card svg { color: var(--gold); margin-bottom: .8rem; }
.stay-card h3 { color: #fff; font-size: 1.4rem; }
.stay-card p { color: rgba(255,255,255,.86); margin-top: .6rem; }
.stay-quote { font-family: var(--font-serif); font-style: italic; font-size: 1.05rem; color: #fff; border-left: 3px solid var(--gold); padding-left: 1rem; margin-top: 1.3rem; }

/* Disc golf (dark) */
.section-disc { background: var(--green-900); color: #fff; }
.section-disc .section-title { color: #fff; }
.section-disc .section-lead { color: rgba(255,255,255,.82); }
.disc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.disc-feature {
  background: rgba(255,255,255,.05); border: 1px solid var(--line-dk);
  border-radius: var(--r-lg); padding: 1.8rem 1.5rem; text-align: center;
}
.disc-num { display: block; font-family: var(--font-serif); font-size: clamp(2.4rem, 1.8rem + 2.4vw, 3.4rem); font-weight: 600; color: var(--gold); line-height: 1; }
.disc-feature p { margin: .6rem 0 0; color: rgba(255,255,255,.82); font-size: .96rem; }
.disc-extra {
  margin-top: 1.5rem; background: rgba(217,162,63,.12); border: 1px solid rgba(217,162,63,.3);
  border-radius: var(--r); padding: 1.2rem 1.4rem;
}
.disc-extra p { margin: 0; color: rgba(255,255,255,.9); }
.disc-extra strong { color: var(--gold); }

/* Our Story */
.section-story { background: var(--cream); }
.story-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: start; }
.timeline { list-style: none; margin: 1.75rem 0 0; padding: 0; position: relative; }
.timeline::before { content: ""; position: absolute; left: 7px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(var(--clay), var(--sand)); }
.timeline li { position: relative; padding: 0 0 1.5rem 2.4rem; }
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before {
  content: ""; position: absolute; left: 0; top: .35rem; width: 16px; height: 16px;
  border-radius: 50%; background: var(--brick); border: 3px solid var(--cream);
  box-shadow: 0 0 0 2px var(--clay);
}
.timeline-year { display: block; font-family: var(--font-serif); font-weight: 600; font-size: 1.05rem; color: var(--brick); }
.timeline p { margin: .2rem 0 0; color: var(--ink-soft); }

.story-photo { margin: 0; }
.story-photo img {
  width: 100%; border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
  border: 6px solid var(--paper); background: var(--paper);
  aspect-ratio: 4 / 3; object-fit: cover;
}
.story-photo figcaption { margin-top: .85rem; font-size: .88rem; color: var(--ink-mute); font-style: italic; text-align: center; }

/* Rates */
.section-rates { background: var(--paper); }
.rate-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; align-items: stretch; }
.rate-card {
  background: var(--cream-50); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 1.6rem 1.4rem; 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(--green-800); }
.rate-price { font-family: var(--font-serif); font-size: 2.4rem; font-weight: 600; color: var(--ink); margin: .6rem 0 .4rem; line-height: 1; }
.rate-price span { display: block; font-family: var(--font-sans); font-size: .82rem; font-weight: 600; color: var(--ink-mute); letter-spacing: .02em; margin-top: .4rem; }
.rate-note { font-size: .92rem; color: var(--ink-soft); margin: 0; }
.rate-card-feature { background: linear-gradient(165deg, var(--green-700), var(--green-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.4rem; background: var(--gold); color: #3a2a10; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .3rem .7rem; border-radius: var(--r-pill); box-shadow: var(--shadow-sm); }
.rate-disclaimer {
  display: flex; align-items: center; gap: .6rem; justify-content: center;
  margin: 2.2rem auto 0; max-width: 52ch; text-align: center;
  background: rgba(179,85,47,.08); border: 1px solid rgba(179,85,47,.22);
  border-radius: var(--r); padding: 1rem 1.3rem; color: var(--brick-600); font-size: .95rem;
}
.rate-disclaimer svg { flex: none; color: var(--brick); }
.rate-disclaimer a { color: var(--brick-600); font-weight: 700; }

/* Visit */
.section-visit { background: var(--cream); }
.visit-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: stretch; }
.visit-block { margin-top: 1.8rem; }
.visit-block:first-of-type { margin-top: 0; }
.visit-label { font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--brick); margin: 0 0 .5rem; }
.visit-address { font-family: var(--font-serif); font-size: 1.3rem; 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: 22rem; }
.hours li { display: flex; justify-content: space-between; gap: 1rem; padding: .55rem 0; border-bottom: 1px dashed var(--line); }
.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: 36ch; }
.visit-map { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); min-height: 340px; }
.visit-map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; }

/* Reviews */
.section-reviews { background: var(--green-800); color: #fff; }
.section-reviews .section-title { color: #fff; }
.review-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.review-card {
  background: rgba(255,255,255,.06); border: 1px solid var(--line-dk);
  border-radius: var(--r-lg); padding: 1.7rem 1.6rem; margin: 0;
}
.stars { color: var(--gold); letter-spacing: .15em; font-size: 1rem; margin-bottom: .8rem; }
.review-card blockquote { margin: 0; font-family: var(--font-serif); font-size: 1.18rem; line-height: 1.5; color: #fff; }
.review-card figcaption { margin-top: 1rem; font-weight: 600; color: var(--gold); font-size: .95rem; }

/* ----------------------------- 9) CTA --------------------------------- */
.cta-band { background: linear-gradient(135deg, var(--brick), var(--brick-600)); color: #fff; text-align: center; }
.cta-inner { padding-block: clamp(3rem, 6vw, 4.5rem); }
.cta-title { color: #fff; font-size: clamp(1.9rem, 1.4rem + 2.4vw, 2.9rem); }
.cta-sub { margin: .8rem 0 1.8rem; color: rgba(255,255,255,.9); font-size: 1.1rem; }
.cta-band .btn-primary { --btn-bg: #fff; --btn-fg: var(--brick-600); }
.cta-band .btn-primary:hover { --btn-bg: #fff5ec; background: #fff5ec; }

/* ----------------------------- 10) FOOTER ----------------------------- */
.site-footer { background: var(--green-900); color: rgba(255,255,255,.78); padding-top: clamp(3rem, 6vw, 4.5rem); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr .9fr 1fr; 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,.6); }
.footer-tag { margin-top: 1.1rem; font-family: var(--font-serif); font-style: italic; font-size: 1.05rem; color: rgba(255,255,255,.82); line-height: 1.5; }
.footer-col h3 { color: #fff; font-size: 1.05rem; margin-bottom: 1rem; font-family: var(--font-sans); font-weight: 700; letter-spacing: .02em; }
.footer-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .65rem; }
.footer-list a { color: rgba(255,255,255,.82); 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; }
.footer-hours li span:first-child { color: rgba(255,255,255,.6); }
.footer-cta .btn { margin-bottom: .7rem; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; padding-block: 1.5rem; border-top: 1px solid var(--line-dk); font-size: .85rem; color: rgba(255,255,255,.55); }
.footer-bottom p { margin: 0; }

/* ----------------------------- 11) FAB -------------------------------- */
.fab-call {
  position: fixed; right: 1rem; bottom: 1rem; z-index: 90;
  display: none; align-items: center; gap: .5rem;
  background: var(--brick); color: #fff; font-weight: 700; text-decoration: none;
  padding: .9rem 1.15rem; border-radius: var(--r-pill);
  box-shadow: 0 12px 30px -8px rgba(154,69,37,.7);
}
.fab-call:active { transform: scale(.97); }
.fab-call svg { flex: none; }

/* ----------------------------- 12) REVEAL ----------------------------- */
/* Reveal is gated on the .js class (set by an inline script in <head>) so that
   if JavaScript is disabled, all content stays fully visible. */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); 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; }
  .hero-sun, .hero-clouds { animation: none !important; }
  .btn:hover, .nine-card:hover, .feature-tile:hover, .rate-card:hover { transform: none; }
}

/* ----------------------------- 13) RESPONSIVE ------------------------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 880px) {
  :root { --header-h: 66px; }

  /* Mobile nav */
  .nav { position: fixed; inset: var(--header-h) 0 auto 0; margin: 0;
         background: var(--cream-50); 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: .85rem .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); border-radius: var(--r-sm); cursor: pointer;
  }
  .nav-toggle-bar { display: block; height: 2.5px; width: 100%; background: var(--green-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 everything */
  .nines, .feature-grid, .disc-grid, .rate-grid, .review-grid,
  .stay-grid, .story-grid, .visit-grid { grid-template-columns: 1fr; }
  .quickbar-grid { grid-template-columns: repeat(2, 1fr); gap: 1.4rem 1rem; }
  .quickbar-item:nth-child(odd)::before { display: none; }
  .quickbar-item:nth-child(3)::before, .quickbar-item:nth-child(4)::before { display: none; }

  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .story-photo { max-width: 460px; margin-inline: auto; }
  .stay-card { order: -1; }

  /* Tuck the hero content up closer to the header (less wasted space on top) */
  .hero { padding-block: 1.85rem clamp(2.5rem, 7vh, 4rem); }

  /* Frosted hero CTA so the golf flag behind it stays visible on phones */
  .hero-actions .btn-primary {
    --btn-bg: rgba(17,43,26,.6);
    border-color: rgba(255,255,255,.3);
    -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
  }
  .hero-actions .btn-primary:hover { --btn-bg: rgba(17,43,26,.76); background: rgba(17,43,26,.76); }

  /* Sticky tap-to-call on phones */
  .fab-call { display: inline-flex; }
}

@media (max-width: 520px) {
  .brand-sub { display: none; }
  .hero-eyebrow { font-size: .67rem; letter-spacing: .08em; padding: .45rem .8rem; }
  .feature-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-actions .btn { flex: 1 1 auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
}
