/* =========================================================
   THE ORCHARD GOLF & COUNTRY CLUB
   Editorial mountain-golf design system
   Palette: deep pine green, warm bone, brass gold
   Type: Playfair Display (display serif) + Barlow (body) + Barlow Condensed (labels/nav)
   ========================================================= */

:root {
  --pine:        #1d2a22;
  --pine-deep:   #141d17;
  --pine-soft:   #28382e;
  --bone:        #f6f1e7;
  --bone-2:      #efe6d5;
  --bone-3:      #e7dcc6;
  --brass:       #ad8645;
  --brass-light: #c8a567;
  --ink:         #1f231e;
  --ink-soft:    #43483f;
  --muted:       #6f7468;
  --muted-light: #b9c0b2;
  --line:        rgba(31,35,30,.14);
  --line-light:  rgba(246,241,231,.18);

  --ff-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --ff-sans:    "Barlow", system-ui, -apple-system, sans-serif;
  --ff-label:   "Barlow Condensed", "Barlow", system-ui, sans-serif;

  --maxw: 1200px;
  --gutter: clamp(1.25rem, 5vw, 4.5rem);
  --section-pad: clamp(4.5rem, 9vw, 8.5rem);

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

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--ff-sans);
  background: var(--bone);
  color: var(--ink);
  line-height: 1.65;
  font-weight: 300;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip; /* clip (not hidden) so it never becomes a scroll container that disables position:sticky */
}
img, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }

::selection { background: var(--brass); color: var(--bone); }

:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- LAYOUT HELPERS ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-pad); }

.eyebrow {
  font-family: var(--ff-label);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1.4rem;
}
.eyebrow-light { color: var(--brass-light); }

.section-head { max-width: 40rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-title {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.section-lede {
  margin-top: 1.3rem;
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 34rem;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--ff-label);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 1.05rem 2.1rem;
  border-radius: 2px;
  transition: transform .4s var(--ease), background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
  will-change: transform;
}
.btn-solid {
  background: var(--brass);
  color: var(--bone);
  border: 1px solid var(--brass);
}
.btn-solid:hover { background: var(--pine); border-color: var(--pine); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-ghost-light {
  background: transparent;
  color: var(--bone);
  border: 1px solid rgba(246,241,231,.5);
  backdrop-filter: blur(2px);
}
.btn-ghost-light:hover { background: var(--bone); color: var(--pine); border-color: var(--bone); transform: translateY(-2px); }
.btn-pill { border-radius: 100px; padding: .7rem 1.5rem; }
.btn-block { width: 100%; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--ff-label);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brass);
  transition: gap .3s var(--ease), color .3s var(--ease);
}
.card-link span { transition: transform .3s var(--ease); }
.card-link:hover { color: var(--ink); }
.card-link:hover span { transform: translateX(5px); }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .45s var(--ease), box-shadow .45s var(--ease), transform .45s var(--ease);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 1.15rem var(--gutter);
}
.site-header[data-state="top"] {
  background: linear-gradient(180deg, rgba(20,29,23,.42) 0%, rgba(20,29,23,.12) 60%, transparent 100%);
}
.site-header[data-state="top"] .brand-name,
.site-header[data-state="top"] .brand-sub { text-shadow: 0 1px 16px rgba(20,29,23,.55); }
.site-header[data-state="top"] .brand,
.site-header[data-state="top"] .nav a,
.site-header[data-state="top"] .header-phone,
.site-header[data-state="top"] .nav-toggle span { color: var(--bone); }
.site-header[data-state="top"] .nav-toggle span { background: var(--bone); }

.site-header[data-state="scrolled"] {
  background: rgba(246,241,231,.92);
  backdrop-filter: blur(12px) saturate(1.2);
  box-shadow: 0 1px 0 var(--line), 0 12px 40px -28px rgba(20,29,23,.5);
}
.site-header[data-state="scrolled"] .brand,
.site-header[data-state="scrolled"] .nav a,
.site-header[data-state="scrolled"] .header-phone { color: var(--ink); }
.site-header[data-state="scrolled"] .nav-toggle span { background: var(--ink); }
.site-header[data-state="hidden"] { transform: translateY(-100%); }

.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  color: var(--bone);
  transition: color .45s var(--ease);
}
.brand-mark { display: inline-flex; color: var(--brass-light); }
.brand-words { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: .005em;
}
.brand-sub {
  font-family: var(--ff-label);
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  margin-top: .28rem;
  opacity: .85;
}
.brand-logo {
  height: 46px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  transition: filter .45s var(--ease);
}
.site-header[data-state="scrolled"] .brand-logo {
  filter: none;
}

.nav { display: flex; gap: 2.4rem; }
.nav a {
  position: relative;
  font-family: var(--ff-label);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--bone);
  transition: color .3s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--brass);
  transition: width .35s var(--ease);
}
.nav a:hover::after, .nav a.active::after { width: 100%; }
.nav a:hover { color: var(--brass-light); }

.header-actions { display: flex; align-items: center; gap: 1.3rem; }
.header-phone {
  font-family: var(--ff-label);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--bone);
}
.site-header[data-state="top"] .btn-pill { background: var(--brass); color: var(--bone); border: 1px solid var(--brass); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--bone);
  border-radius: 2px;
  transition: transform .35s var(--ease), opacity .25s var(--ease), background .45s var(--ease);
}
body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- MOBILE NAV ---------- */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--pine-deep);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3rem;
  padding: 6rem var(--gutter) 3rem;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform .55s var(--ease), opacity .4s var(--ease), visibility .55s;
}
body.menu-open .mobile-nav { transform: translateY(0); opacity: 1; visibility: visible; }
.mobile-nav nav { display: flex; flex-direction: column; gap: 1.4rem; }
.mobile-nav nav a {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 9vw, 3rem);
  font-weight: 400;
  color: var(--bone);
  transition: color .3s var(--ease);
}
.mobile-nav nav a:hover { color: var(--brass-light); }
.mobile-nav-foot { display: flex; flex-direction: column; gap: 1.2rem; align-items: flex-start; }
.mobile-nav-foot .btn { color: var(--bone); }
.mobile-phone { font-family: var(--ff-label); color: var(--brass-light); font-weight: 600; letter-spacing: .06em; }
.mobile-login { font-family: var(--ff-label); color: var(--muted-light); font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--bone);
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: kenburns 24s ease-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1.04) translate(0,0); }
  to   { transform: scale(1.14) translate(-1.5%, -1.5%); }
}
.hero-scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(20,29,23,.55) 0%, rgba(20,29,23,.12) 32%, rgba(20,29,23,.22) 62%, rgba(20,29,23,.82) 100%),
    radial-gradient(120% 80% at 20% 30%, rgba(20,29,23,.35), transparent 60%);
}
.hero-content { max-width: 56rem; padding-inline: var(--gutter); margin-inline: auto; width: 100%; }
.hero-title {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: clamp(2.8rem, 8vw, 6.4rem);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 1.6rem;
  text-shadow: 0 2px 40px rgba(20,29,23,.4);
}
.hero-lede {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  max-width: 34rem;
  color: rgba(246,241,231,.9);
  margin-bottom: 2.4rem;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-meta {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.1rem;
  padding: 1.3rem var(--gutter);
  font-family: var(--ff-label);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(246,241,231,.82);
  border-top: 1px solid var(--line-light);
  background: linear-gradient(180deg, transparent, rgba(20,29,23,.4));
}
.hero-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--brass-light); }

.scroll-cue {
  position: absolute;
  left: 50%; bottom: 5.2rem;
  transform: translateX(-50%);
  z-index: 3;
  width: 1px; height: 54px;
  overflow: hidden;
}
.scroll-line { display: block; width: 1px; height: 100%; background: rgba(246,241,231,.4); position: relative; }
.scroll-line::after {
  content: ""; position: absolute; top: 0; left: 0;
  width: 100%; height: 40%;
  background: var(--brass-light);
  animation: scrolldrop 2.2s var(--ease) infinite;
}
@keyframes scrolldrop {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(250%); }
}

/* =========================================================
   INTRO STATEMENT
   ========================================================= */
.intro { background: var(--bone); text-align: center; }
.intro .wrap { max-width: 60rem; }
.intro-statement {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 3.4vw, 2.5rem);
  line-height: 1.34;
  letter-spacing: -0.01em;
  color: var(--ink);
}
/* word-by-word scroll reveal */
.intro-statement .word {
  display: inline-block;
  opacity: 0.18;
  transition: opacity 0.45s var(--ease);
}
.intro-statement .word.is-lit { opacity: 1; }
.no-js .intro-statement .word { opacity: 1; }
@media (prefers-reduced-motion: reduce) { .intro-statement .word { opacity: 1; } }
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: clamp(3rem, 6vw, 5rem);
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
  border-top: 1px solid var(--line);
}
.stat { display: flex; flex-direction: column; gap: .6rem; }
.stat-num {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--brass);
  line-height: 1;
}
.stat-num.stat-text { font-size: clamp(1.4rem, 2.6vw, 2rem); }
.stat-label {
  font-family: var(--ff-label);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* =========================================================
   FEATURE (GOLF)
   ========================================================= */
.feature-dark { background: var(--pine); color: var(--bone); }
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.feature-title {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: clamp(2rem, 4.4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: 1.6rem;
}
.feature-text { color: rgba(246,241,231,.82); font-size: 1.08rem; margin-bottom: 2rem; max-width: 32rem; }
.feature-list { margin-bottom: 2.4rem; display: grid; gap: .95rem; }
.feature-list li {
  position: relative;
  padding-left: 1.7rem;
  color: rgba(246,241,231,.9);
  font-size: 1rem;
}
.feature-list li::before {
  content: "";
  position: absolute; left: 0; top: .6em;
  width: 8px; height: 8px;
  border: 1px solid var(--brass-light);
  transform: rotate(45deg);
}
.feature-figure { position: relative; }
.feature-figure img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 3px;
}
.figure-tag {
  position: absolute;
  left: -1px; bottom: 1.4rem;
  background: var(--brass);
  color: var(--bone);
  font-family: var(--ff-label);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .6rem 1.2rem;
}

/* =========================================================
   MEMBERSHIP
   ========================================================= */
.membership { background: var(--bone-2); }
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.m-card {
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 2.4rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
}
.m-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px -40px rgba(20,29,23,.55);
  border-color: var(--brass);
}
.m-card h3 {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: -0.01em;
}
.m-card p { color: var(--muted); font-size: .98rem; flex: 1; }
.m-card-wide { grid-column: span 3; flex-direction: row; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.m-card-wide p { flex: 1 1 28rem; }
.card-note {
  margin-top: 2rem;
  text-align: center;
  font-size: .92rem;
  color: var(--muted);
  font-style: italic;
}

/* =========================================================
   AMENITIES
   ========================================================= */
.amenities { background: var(--bone); }
.amenity-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  margin-top: clamp(3rem, 6vw, 5.5rem);
}
.amenity-row:first-of-type { margin-top: 0; }
.amenity-row-reverse .amenity-figure { order: 2; }
.amenity-figure img {
  width: 100%;
  aspect-ratio: 5/4;
  object-fit: cover;
  border-radius: 4px;
}
.amenity-title {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(1.6rem, 3.4vw, 2.5rem);
  line-height: 1.1;
  margin-bottom: 1.1rem;
  letter-spacing: -0.01em;
}
.amenity-copy p { color: var(--muted); margin-bottom: 1.5rem; max-width: 30rem; }

/* =========================================================
   EVENTS BAND
   ========================================================= */
.events { position: relative; color: var(--bone); overflow: hidden; }
.events-media { position: absolute; inset: 0; z-index: -2; }
.events-media img { width: 100%; height: 100%; object-fit: cover; }
.events-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(20,29,23,.86) 0%, rgba(20,29,23,.62) 45%, rgba(20,29,23,.3) 100%);
}
.events-content { max-width: 40rem; }
.events-title {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  line-height: 1.05;
  margin-bottom: 1.4rem;
  letter-spacing: -0.015em;
}
.events-lede { color: rgba(246,241,231,.86); font-size: 1.1rem; margin-bottom: 2rem; }
.events-tags { display: flex; flex-wrap: wrap; gap: .7rem; margin-bottom: 2.4rem; }
.events-tags span {
  border: 1px solid var(--line-light);
  border-radius: 100px;
  padding: .5rem 1.2rem;
  font-family: var(--ff-label);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(246,241,231,.9);
}

/* =========================================================
   QUOTE BAND
   ========================================================= */
.quote-band { position: relative; padding-block: clamp(6rem, 14vw, 11rem); color: var(--bone); overflow: hidden; }
.quote-media { position: absolute; inset: 0; z-index: -2; }
.quote-media img { width: 100%; height: 100%; object-fit: cover; }
.quote-scrim { position: absolute; inset: 0; background: rgba(20,29,23,.6); }
.quote-content { text-align: center; max-width: 50rem; }
.quote-content p {
  font-family: var(--ff-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.6rem, 4vw, 3rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.quote-content cite {
  display: block;
  margin-top: 1.8rem;
  font-family: var(--ff-label);
  font-style: normal;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brass-light);
}

/* =========================================================
   VISIT
   ========================================================= */
.visit { background: var(--bone-2); }
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.contact-list { margin: 2.5rem 0; display: grid; grid-template-columns: 1fr 1fr; gap: 1.8rem 2rem; }
.contact-item dt {
  font-family: var(--ff-label);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: .5rem;
}
.contact-item dd { font-size: 1.02rem; color: var(--ink-soft); line-height: 1.5; }
.contact-item a { transition: color .25s var(--ease); }
.contact-item a:hover { color: var(--brass); }
.visit-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.6rem; }
.visit-login { font-family: var(--ff-label); font-size: .85rem; font-weight: 600; letter-spacing: .08em; color: var(--muted); transition: color .25s var(--ease); }
.visit-login:hover { color: var(--brass); }
.visit-map {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 60px -45px rgba(20,29,23,.6);
}
.visit-map iframe { width: 100%; height: 100%; min-height: 460px; border: 0; filter: grayscale(.25) contrast(1.02); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--pine-deep); color: var(--muted-light); }
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
}
.footer-wordmark { color: var(--bone); font-size: 1.9rem; }
.footer-logo {
  height: 58px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  margin-bottom: .9rem;
}
.footer-tagline { color: var(--brass-light); margin-top: .9rem; font-family: var(--ff-display); font-style: italic; font-size: 1.15rem; }
.footer-addr { margin-top: 1rem; font-size: .92rem; color: var(--muted-light); }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer-col h4 {
  font-family: var(--ff-label);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brass-light);
  margin-bottom: 1.2rem;
}
.footer-col a { display: block; padding: .4rem 0; font-size: .95rem; color: var(--muted-light); transition: color .25s var(--ease); }
.footer-col a:hover { color: var(--bone); }
.footer-social {
  display: flex;
  gap: .5rem 1.1rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line-light);
}
.footer-social a {
  display: inline-flex;
  padding: 0;
  font-family: var(--ff-label);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-block: 1.8rem;
  border-top: 1px solid var(--line-light);
  font-size: .82rem;
  color: var(--muted);
}

/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.hero .reveal { transition-duration: 1.1s; }
.hero .reveal:nth-child(1) { transition-delay: .1s; }
.hero .reveal:nth-child(2) { transition-delay: .25s; }
.hero .reveal:nth-child(3) { transition-delay: .4s; }
.hero .reveal:nth-child(4) { transition-delay: .55s; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .nav, .header-phone { display: none; }
  .nav-toggle { display: flex; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-figure { order: -1; }
  .feature-figure img { aspect-ratio: 16/10; }
  .amenity-row, .amenity-row-reverse { grid-template-columns: 1fr; }
  .amenity-row-reverse .amenity-figure { order: -1; }
  .amenity-row .amenity-figure { order: -1; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .m-card-wide { grid-column: span 2; }
  .visit-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  :root { --section-pad: clamp(3.5rem, 12vw, 5rem); }
  .stat-row { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
  .card-grid { grid-template-columns: 1fr; }
  .m-card-wide { grid-column: span 1; flex-direction: column; align-items: flex-start; }
  .m-card-wide p { flex: none; }
  .contact-list { grid-template-columns: 1fr; }
  .brand-logo { height: 34px; }
  .hero-meta { gap: .6rem; font-size: .6rem; }
  .hero-meta .dot { display: none; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .scroll-cue { display: none; }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-media img { animation: none; transform: scale(1.04); }
}
