/* =========================================================
   The Office Park at the California Club
   Warm / Classic / Luxe / Corporate
   ========================================================= */

:root {
  --bg: #faf7f1;
  --surface: #ffffff;
  --surface-2: #f3ede2;
  --ink: #1c1a17;
  --muted: #6b6457;
  --accent: #7d5a3c;       /* warm brown */
  --accent-dark: #5f4429;
  --accent-2: #b08d57;     /* luxe gold */
  --line: #e6ddcd;
  --shadow-sm: 0 1px 2px rgba(28, 26, 23, .05), 0 4px 14px rgba(28, 26, 23, .06);
  --shadow-md: 0 10px 30px rgba(28, 26, 23, .10);
  --shadow-lg: 0 24px 60px rgba(28, 26, 23, .16);

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

  --maxw: 1200px;
  --gutter: clamp(1.1rem, 4vw, 2.5rem);
  --radius: 14px;
  --radius-sm: 9px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 .5em;
  font-optical-sizing: auto;
}
h1 { font-size: clamp(2.1rem, 5.4vw, 3.9rem); }
h2 { font-size: clamp(1.7rem, 3.8vw, 2.7rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); }
p { margin: 0 0 1rem; }
a { color: var(--accent); text-decoration-color: rgba(125, 90, 60, .35); text-underline-offset: 3px; }
a:hover { color: var(--accent-dark); }

ul { margin: 0; padding: 0; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--surface { background: var(--surface); }
.section--cream { background: var(--surface-2); }

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .74rem;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 1rem;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--accent-2);
  display: inline-block;
}
.section-head { max-width: 64ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--muted); }

.muted { color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .96rem;
  line-height: 1;
  padding: .92rem 1.55rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .25s var(--ease), background-color .25s var(--ease), box-shadow .25s var(--ease), color .25s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid var(--accent-2); outline-offset: 3px; }
.btn--primary { background: var(--accent); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--accent-dark); color: #fff; box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent-dark); }
.btn--light { background: #fff; color: var(--ink); }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn--outline-light:hover { background: rgba(255,255,255,.12); color: #fff; }

.arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute; left: 50%; transform: translateX(-50%) translateY(-120%);
  top: .6rem; z-index: 200;
  background: var(--ink); color: #fff; padding: .7rem 1.1rem; border-radius: 8px;
  text-decoration: none; font-weight: 600; font-size: .9rem;
  transition: transform .2s var(--ease);
}
.skip-link:focus { transform: translateX(-50%) translateY(0); color: #fff; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 247, 241, .85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), background-color .3s var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(28, 26, 23, .06);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 72px;
}
.brand { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; flex-shrink: 0; }
.brand img { height: 34px; width: auto; }
.brand .brand-fallback {
  font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: var(--ink); letter-spacing: -.01em;
}

.nav-toggle {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 0 10px;
  background: transparent; border: 1px solid var(--line); border-radius: 10px; cursor: pointer;
}
.nav-toggle span { height: 2px; width: 100%; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-menu { list-style: none; display: flex; align-items: center; gap: .35rem; }
.nav-menu a {
  display: inline-block; text-decoration: none; color: var(--ink);
  font-weight: 500; font-size: .96rem; padding: .55rem .85rem; border-radius: 8px;
  transition: color .2s var(--ease), background-color .2s var(--ease);
}
.nav-menu a:hover { color: var(--accent-dark); background: var(--surface-2); }
.nav-menu a[aria-current="page"] { color: var(--accent); }
.nav-menu a[aria-current="page"]::after {
  content: ""; display: block; height: 2px; width: 18px; margin: 2px auto 0; background: var(--accent-2); border-radius: 2px;
}
.nav-cta { margin-left: .4rem; }

/* Mobile nav */
@media (max-width: 880px) {
  .nav-menu {
    position: fixed; inset: 72px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: .15rem;
    background: var(--surface);
    padding: 1rem var(--gutter) 1.6rem;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    transform: translateY(-130%);
    transition: transform .38s var(--ease);
    max-height: calc(100dvh - 72px); overflow-y: auto;
  }
  .nav-menu.is-open { transform: translateY(0); }
  .nav-menu a { padding: .85rem .6rem; font-size: 1.05rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav-menu a[aria-current="page"]::after { margin: 4px 0 0; }
  .nav-menu li:last-child a { border-bottom: none; }
  .nav-cta { margin: .8rem 0 0; }
  .nav-cta .btn { width: 100%; justify-content: center; }
}
@media (min-width: 881px) {
  .nav-toggle { display: none; }
  .nav-menu { transform: none !important; }
}

/* ---------- Hero ---------- */
.hero { position: relative; isolation: isolate; color: #fff; overflow: hidden; }
.hero-media { position: absolute; inset: -9% 0; z-index: -2; will-change: transform; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(28,26,23,.30) 0%, rgba(28,26,23,.20) 35%, rgba(28,26,23,.66) 100%),
    linear-gradient(90deg, rgba(28,26,23,.55) 0%, rgba(28,26,23,.10) 60%);
}
.hero-inner {
  display: flex; flex-direction: column; justify-content: flex-end;
  min-height: clamp(560px, 86vh, 820px);
  padding-block: clamp(3rem, 8vh, 6rem);
  max-width: 760px;
}
.hero h1 { color: #fff; margin-bottom: .4em; }
.hero .eyebrow { color: #f0e2cf; }
.hero .eyebrow::before { background: var(--accent-2); }
.hero-sub { font-size: clamp(1.05rem, 1.8vw, 1.3rem); color: rgba(255,255,255,.92); max-width: 56ch; margin-bottom: 1.8rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }

.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1rem; margin-top: clamp(2rem, 5vw, 3.2rem);
  border-top: 1px solid rgba(255,255,255,.22); padding-top: 1.6rem;
  max-width: 600px;
}
.hero-stats .stat-num { font-family: var(--font-display); font-size: clamp(1.7rem, 4vw, 2.4rem); line-height: 1; color: #fff; }
.hero-stats .stat-label { font-size: .82rem; color: rgba(255,255,255,.82); letter-spacing: .04em; }

/* ---------- Page banner (interior pages) ---------- */
.page-banner { position: relative; isolation: isolate; color: #fff; overflow: hidden; }
.page-banner-media { position: absolute; inset: 0; z-index: -2; }
.page-banner-media img { width: 100%; height: 100%; object-fit: cover; }
.page-banner::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(28,26,23,.42), rgba(28,26,23,.62));
}
.page-banner-inner { padding-block: clamp(3.2rem, 9vw, 5.4rem); max-width: 720px; }
.page-banner h1 { color: #fff; margin-bottom: .35em; }
.page-banner .eyebrow { color: #f0e2cf; }
.page-banner p { color: rgba(255,255,255,.92); font-size: clamp(1rem,1.5vw,1.18rem); margin: 0; max-width: 54ch; }
.breadcrumb { font-size: .82rem; color: rgba(255,255,255,.8); margin-bottom: 1rem; letter-spacing: .03em; }
.breadcrumb a { color: rgba(255,255,255,.9); text-decoration: none; }
.breadcrumb a:hover { color: #fff; text-decoration: underline; }

/* ---------- Generic grids ---------- */
.grid { display: grid; gap: clamp(1.1rem, 2.2vw, 1.8rem); }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 640px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 760px) { .grid-2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 940px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- Cards ---------- */
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: #ddd0bb; }
.card-media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--surface-2); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.card:hover .card-media img { transform: scale(1.05); }
.card-body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: .4rem; flex: 1; }
.card-body h3 { margin: 0; }
.card-body p { margin: 0; color: var(--muted); font-size: .96rem; }
.card-tag {
  align-self: flex-start; font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent); background: var(--surface-2); padding: .3rem .6rem; border-radius: 999px; margin-bottom: .2rem;
}

/* Feature (icon) cards */
.feature {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.7rem 1.6rem; box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature .icon {
  width: 50px; height: 50px; border-radius: 12px; display: grid; place-items: center;
  background: var(--surface-2); color: var(--accent); margin-bottom: 1.1rem;
}
.feature .icon svg { width: 26px; height: 26px; }
.feature h3 { margin-bottom: .4rem; }
.feature p { margin: 0; color: var(--muted); font-size: .96rem; }

/* ---------- Split / media+text ---------- */
.split { display: grid; gap: clamp(1.8rem, 4vw, 3.5rem); align-items: center; }
@media (min-width: 860px) { .split { grid-template-columns: 1fr 1fr; } .split.reverse .split-media { order: 2; } }
.split-media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); position: relative; }
.split-media img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; }
.split-body h2 { margin-bottom: .6rem; }

.checklist { list-style: none; display: grid; gap: .7rem; margin: 1.2rem 0 1.6rem; }
.checklist li { display: flex; gap: .7rem; align-items: flex-start; color: var(--ink); }
.checklist li::before {
  content: ""; flex-shrink: 0; margin-top: .35em;
  width: 1.05rem; height: 1.05rem; border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 64% no-repeat,
    var(--accent);
}

/* ---------- Stats band ---------- */
.stat-band { background: var(--accent); color: #fff; }
.stat-band .grid-4 { gap: clamp(1.5rem, 4vw, 2rem); }
.stat-band .stat { text-align: center; }
.stat-band .stat-num { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3rem); line-height: 1; }
.stat-band .stat-label { color: rgba(255,255,255,.85); font-size: .9rem; margin-top: .35rem; letter-spacing: .03em; }

/* ---------- Gallery ---------- */
.gallery-filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; }
.filter-btn {
  font-family: var(--font-body); font-weight: 500; font-size: .9rem;
  padding: .55rem 1.05rem; border-radius: 999px; cursor: pointer;
  background: var(--surface); border: 1px solid var(--line); color: var(--muted);
  transition: all .2s var(--ease);
}
.filter-btn:hover { border-color: var(--accent); color: var(--accent-dark); }
.filter-btn[aria-pressed="true"] { background: var(--accent); border-color: var(--accent); color: #fff; }
.filter-btn:focus-visible { outline: 3px solid var(--accent-2); outline-offset: 2px; }

.gallery { columns: 1; column-gap: clamp(.8rem, 2vw, 1.2rem); }
@media (min-width: 560px) { .gallery { columns: 2; } }
@media (min-width: 920px) { .gallery { columns: 3; } }
.gallery-item {
  break-inside: avoid; margin-bottom: clamp(.8rem, 2vw, 1.2rem);
  border-radius: var(--radius-sm); overflow: hidden; position: relative;
  background: var(--surface-2); box-shadow: var(--shadow-sm); cursor: zoom-in;
  width: 100%; padding: 0; border: 0; display: block; font: inherit; color: inherit; text-align: left;
}
.gallery-item img { width: 100%; height: auto; display: block; transition: transform .6s var(--ease); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(28,26,23,0) 55%, rgba(28,26,23,.45));
  opacity: 0; transition: opacity .3s var(--ease);
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item .gi-cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 1rem; color: #fff; font-size: .9rem; font-weight: 500;
  transform: translateY(6px); opacity: 0; transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.gallery-item:hover .gi-cap { opacity: 1; transform: translateY(0); }
.gallery-item:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.gallery-item[hidden] { display: none; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 300; display: none;
  align-items: center; justify-content: center;
  background: rgba(20, 18, 15, .92); padding: clamp(1rem, 4vw, 3rem);
}
.lightbox.is-open { display: flex; }
.lightbox-figure { margin: 0; max-width: 1200px; width: 100%; text-align: center; }
.lightbox img { max-width: 100%; max-height: 80vh; width: auto; margin-inline: auto; border-radius: 8px; box-shadow: var(--shadow-lg); }
.lightbox figcaption { color: rgba(255,255,255,.85); margin-top: 1rem; font-size: .95rem; }
.lb-btn {
  position: absolute; background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.25);
  width: 52px; height: 52px; border-radius: 50%; cursor: pointer; display: grid; place-items: center;
  transition: background-color .2s var(--ease);
}
.lb-btn:hover { background: rgba(255,255,255,.25); }
.lb-btn:focus-visible { outline: 3px solid var(--accent-2); outline-offset: 2px; }
.lb-btn svg { width: 24px; height: 24px; }
.lb-close { top: clamp(1rem, 3vw, 2rem); right: clamp(1rem, 3vw, 2rem); }
.lb-prev { left: clamp(.5rem, 2vw, 1.5rem); top: 50%; transform: translateY(-50%); }
.lb-next { right: clamp(.5rem, 2vw, 1.5rem); top: 50%; transform: translateY(-50%); }
@media (max-width: 640px) {
  .lb-prev { left: .5rem; } .lb-next { right: .5rem; }
  .lb-btn { width: 44px; height: 44px; }
}

/* ---------- Contact ---------- */
.contact-grid { display: grid; gap: clamp(2rem, 5vw, 3.5rem); }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1.1fr 1fr; align-items: start; } }

.info-list { list-style: none; display: grid; gap: 1.4rem; margin-top: 1.5rem; }
.info-item { display: flex; gap: 1rem; align-items: flex-start; }
.info-item .icon {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: var(--surface-2); color: var(--accent);
}
.info-item .icon svg { width: 22px; height: 22px; }
.info-item .label { font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); margin: 0 0 .15rem; }
.info-item a, .info-item p { margin: 0; font-size: 1.05rem; color: var(--ink); text-decoration: none; font-weight: 500; }
.info-item a:hover { color: var(--accent-dark); }

.form-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.4rem); box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 1.2rem; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: .45rem; }
.field .req { color: var(--accent); }
.field input, .field textarea, .field select {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: .8rem .9rem; border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--bg); transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(125, 90, 60, .14); background: #fff;
}
.field textarea { resize: vertical; min-height: 130px; }
.field-row { display: grid; gap: 1.2rem; }
@media (min-width: 560px) { .field-row { grid-template-columns: 1fr 1fr; } }
.field .error-msg { color: #a33; font-size: .82rem; margin-top: .35rem; display: none; }
.field.has-error input, .field.has-error textarea { border-color: #c66; }
.field.has-error .error-msg { display: block; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: .2rem; }
.form-status {
  margin-top: 1rem; padding: .9rem 1.1rem; border-radius: var(--radius-sm);
  background: #eef5ec; border: 1px solid #cfe3c9; color: #2f5d2a; font-size: .95rem; display: none;
}
.form-status.is-visible { display: block; }

/* visually hidden honeypot */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; isolation: isolate; color: #fff; overflow: hidden; text-align: center; }
.cta-band-media { position: absolute; inset: 0; z-index: -2; }
.cta-band-media img { width: 100%; height: 100%; object-fit: cover; }
.cta-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(95,68,41,.86), rgba(28,26,23,.88)); }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 52ch; margin-inline: auto; }
.cta-band .hero-actions { justify-content: center; margin-top: 1.6rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #cfc7ba; padding-block: clamp(3rem, 6vw, 4.5rem) 1.5rem; }
.footer-grid { display: grid; gap: 2.2rem; margin-bottom: 2.5rem; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
/* Real logo shown as-is on a light plaque so it stays legible on the dark footer */
.footer-brand img {
  width: 188px; height: auto; display: block; margin-bottom: 1.1rem;
  background: #fff; padding: 11px 15px; border-radius: 10px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .28);
}
.footer-brand p { color: #a59c8d; max-width: 38ch; font-size: .95rem; }
.footer-col h4 { color: #fff; font-family: var(--font-body); font-size: .8rem; text-transform: uppercase; letter-spacing: .14em; margin-bottom: 1rem; font-weight: 600; }
.footer-col ul { list-style: none; display: grid; gap: .6rem; }
.footer-col a { color: #cfc7ba; text-decoration: none; font-size: .96rem; transition: color .2s var(--ease); }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12); padding-top: 1.5rem;
  display: flex; flex-wrap: wrap; gap: .6rem 1.2rem; justify-content: space-between; align-items: center;
  font-size: .85rem; color: #968d7e;
}
.footer-bottom a { color: #cfc7ba; }
.footer-bottom a:hover { color: #fff; }
.footer-credit a { text-decoration: none; font-weight: 600; color: #e0d8c9; }
.footer-credit a:hover { color: #fff; }

/* ---------- Reveal animation (progressive enhancement) ---------- */
.anim-ready [data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.anim-ready [data-reveal].is-in { opacity: 1; transform: none; }
.anim-ready [data-reveal][data-delay="1"] { transition-delay: .08s; }
.anim-ready [data-reveal][data-delay="2"] { transition-delay: .16s; }
.anim-ready [data-reveal][data-delay="3"] { transition-delay: .24s; }
.anim-ready [data-reveal][data-delay="4"] { transition-delay: .32s; }
/* Reveal variants */
.anim-ready [data-reveal="fade"] { transform: none; }
.anim-ready [data-reveal="zoom"] { transform: scale(.94); }
.anim-ready [data-reveal="zoom"].is-in { transform: none; }
.anim-ready [data-reveal="left"] { transform: translateX(-26px); }
.anim-ready [data-reveal="right"] { transform: translateX(26px); }
.anim-ready [data-reveal="left"].is-in, .anim-ready [data-reveal="right"].is-in { transform: none; }

/* ---------- Rich motion (gated to motion-safe users) ---------- */
@media (prefers-reduced-motion: no-preference) {
  /* Ken Burns on hero + interior banners (pure CSS, works with JS off) */
  .hero-media img, .page-banner-media img, .cta-band-media img {
    animation: kenburns 28s ease-in-out infinite alternate both;
    transform-origin: 50% 40%;
  }
  .page-banner-media img { animation-duration: 34s; }
  .cta-band-media img { animation-duration: 40s; }

  /* Hero scroll cue */
  .scroll-cue svg { animation: cue-bob 2.2s var(--ease) infinite; }
}
@keyframes kenburns {
  from { transform: scale(1.02); }
  to   { transform: scale(1.13); }
}
@keyframes cue-bob {
  0%, 100% { transform: translateY(0); opacity: .85; }
  50%      { transform: translateY(7px); opacity: 1; }
}

/* Hero scroll cue element */
.scroll-cue {
  position: absolute; left: 50%; bottom: 1.4rem; transform: translateX(-50%);
  z-index: 1; color: rgba(255,255,255,.9); display: grid; place-items: center;
  width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.35); border-radius: 999px;
  background: rgba(255,255,255,.06); text-decoration: none; backdrop-filter: blur(2px);
  transition: background-color .3s var(--ease), border-color .3s var(--ease);
}
.scroll-cue:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.6); color: #fff; }
.scroll-cue svg { width: 22px; height: 22px; }
@media (max-width: 600px) { .scroll-cue { display: none; } }

/* Feature icon flourish on hover */
.feature .icon { transition: transform .4s var(--ease), background-color .4s var(--ease), color .4s var(--ease); }
.feature:hover .icon { transform: translateY(-3px) scale(1.08) rotate(-4deg); background: var(--accent); color: #fff; }

/* Info item icon flourish */
.info-item .icon { transition: transform .35s var(--ease), background-color .35s var(--ease), color .35s var(--ease); }
.info-item:hover .icon { transform: scale(1.08); background: var(--accent); color: #fff; }

/* Counter: avoid layout shift while numbers tick */
.stat-num { font-variant-numeric: tabular-nums; }

/* Button sheen */
.btn--primary, .btn--light { position: relative; overflow: hidden; }
.btn--primary::after, .btn--light::after {
  content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-18deg); transition: left .6s var(--ease); pointer-events: none;
}
.btn--primary:hover::after, .btn--light:hover::after { left: 140%; }

/* Split media subtle zoom on hover */
.split-media img { transition: transform .7s var(--ease); }
.split-media:hover img { transform: scale(1.04); }

/* Map embed (responsive + framed) */
.map-embed {
  position: relative; margin-top: 2.2rem; aspect-ratio: 16 / 10;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-md);
  background: var(--surface-2);
}
.map-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }

/* Incentive callout */
.callout {
  background: linear-gradient(135deg, var(--surface-2), #efe6d6);
  border: 1px solid var(--line); border-left: 4px solid var(--accent);
  border-radius: var(--radius); padding: clamp(1.4rem, 3vw, 2rem);
  box-shadow: var(--shadow-sm);
}
.callout h3 { margin-bottom: .4rem; }
.callout p { margin: 0; color: var(--muted); }

@media (prefers-reduced-motion: reduce) {
  .anim-ready [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  .card, .card-media img, .gallery-item img, .btn, .feature, .feature .icon,
  .info-item .icon, .split-media img, .hero-media, .scroll-cue svg { transition: none !important; animation: none !important; }
  .hero-media img, .page-banner-media img, .cta-band-media img { animation: none !important; transform: none !important; }
  .btn--primary::after, .btn--light::after { display: none; }
  .scroll-cue { display: none; }
}

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.nowrap { white-space: nowrap; }
body.no-scroll { overflow: hidden; }
