/* ============================================
   ALEXANDER ATHLETIC CLUB
   Premium Lifestyle Club — Complete Redesign
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

/* ---- Design Tokens ---- */
:root {
  --ivory:       #F9F6F0;
  --ivory-deep:  #F0EBE1;
  --cream:       #FAF8F5;
  --white:       #FFFFFF;
  --ink:         #1A1410;
  --ink-soft:    #3D3530;
  --ink-muted:   #6B6158;
  --gold:        #9A7B4F;
  --gold-light:  #C9A96E;
  --gold-pale:   #F0E6D3;
  --gold-grad:   linear-gradient(135deg, #9A7B4F 0%, #C9A96E 50%, #9A7B4F 100%);
  --border:      rgba(154,123,79,0.18);
  --border-soft: rgba(28,25,23,0.1);

  --ff-serif:  'Lora', Georgia, serif;
  --ff-body:   'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --nav-h: 76px;
  --max-w: 1180px;
  --ease:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---- Reset ---- */
*,*::before,*::after { margin:0; padding:0; box-sizing:border-box; }
html { font-size:16px; scroll-behavior:smooth; -webkit-font-smoothing:antialiased; }
body { font-family:var(--ff-body); font-size:16px; background:var(--ivory); color:var(--ink); line-height:1.75; overflow-x:hidden; }
img { max-width:100%; height:auto; display:block; }
a { text-decoration:none; color:inherit; }
ul,ol { list-style:none; }

/* ============================================
   SCROLL PROGRESS
   ============================================ */
.scroll-progress {
  position:fixed; top:0; left:0; width:0; height:2px;
  background:var(--gold-grad); z-index:9999; transition:width .1s linear;
}

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
  position:fixed; inset:0; background:var(--ivory); z-index:10000;
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:24px;
  transition:opacity .9s var(--ease), visibility .9s;
}
.preloader.hidden { opacity:0; visibility:hidden; pointer-events:none; }

.preloader-logo-wrap {
  width:110px; height:110px; border-radius:50%;
  background:var(--white); border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  animation:plFloat 2s ease-in-out infinite;
  box-shadow:0 8px 32px rgba(154,123,79,0.12);
}
.preloader-logo-wrap img { width:80px; height:80px; object-fit:contain; mix-blend-mode:multiply; }

@keyframes plFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

.preloader-bar-wrap {
  width:160px; height:2px; background:var(--border); border-radius:2px; overflow:hidden;
}
.preloader-bar {
  height:100%; width:0; background:var(--gold-grad);
  animation:plBar 2.4s var(--ease) forwards;
}
@keyframes plBar { to { width:100%; } }

.preloader-label {
  font-family:var(--ff-serif); font-size:.9rem; letter-spacing:.25em;
  text-transform:uppercase; color:var(--ink-muted); font-style:italic;
}

/* ============================================
   CURSOR
   ============================================ */
.c-dot,.c-ring { position:fixed; top:0; left:0; pointer-events:none; z-index:8888; border-radius:50%; display:none; }
.c-dot { width:7px; height:7px; background:var(--gold); transition:transform .1s,width .25s,height .25s; }
.c-ring { width:34px; height:34px; border:1.5px solid var(--gold); opacity:.65; transition:transform .3s var(--ease),width .25s,height .25s,opacity .25s; }
@media(hover:hover)and(pointer:fine){ .c-dot,.c-ring{display:block;} }

/* ============================================
   BACK TO TOP
   ============================================ */
.back-top {
  position:fixed; bottom:28px; right:28px; width:48px; height:48px;
  background:var(--white); border:1px solid var(--border); border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:1.1rem; color:var(--gold); cursor:pointer;
  opacity:0; visibility:hidden; transform:translateY(16px);
  transition:all .4s var(--ease); z-index:900;
  box-shadow:0 4px 20px rgba(0,0,0,.06);
}
.back-top.show { opacity:1; visibility:visible; transform:translateY(0); }
.back-top:hover { background:var(--gold); color:var(--white); border-color:var(--gold); transform:translateY(-3px); }

/* ============================================
   SCROLL REVEAL
   ============================================ */
.fade-up   { opacity:0; transform:translateY(50px); transition:opacity 1s var(--ease), transform 1s var(--ease); }
.fade-left { opacity:0; transform:translateX(-60px); transition:opacity 1s var(--ease), transform 1s var(--ease); }
.fade-right{ opacity:0; transform:translateX(60px);  transition:opacity 1s var(--ease), transform 1s var(--ease); }
.fade-sc   { opacity:0; transform:scale(.92);         transition:opacity 1s var(--ease), transform 1s var(--ease); }
.in { opacity:1 !important; transform:none !important; }
.d1{transition-delay:.1s} .d2{transition-delay:.2s} .d3{transition-delay:.3s}
.d4{transition-delay:.4s} .d5{transition-delay:.5s} .d6{transition-delay:.6s}

/* ============================================
   NAV
   ============================================ */
.nav {
  position:fixed; top:0; left:0; width:100%; height:var(--nav-h); z-index:1000;
  display:flex; align-items:center; justify-content:center;
  transition:background .4s, box-shadow .4s, backdrop-filter .4s;
}
.nav.scrolled {
  background:rgba(249,246,240,.88);
  backdrop-filter:blur(20px) saturate(160%);
  -webkit-backdrop-filter:blur(20px) saturate(160%);
  box-shadow:0 1px 0 var(--border-soft);
}
.nav-inner {
  width:100%; max-width:var(--max-w); padding:0 32px;
  display:flex; align-items:center; justify-content:space-between;
}

/* Logo — SINGLE, clean */
.nav-logo { display:flex; align-items:center; gap:14px; text-decoration:none; }
.nav-logo-img {
  width:48px; height:48px; border-radius:50%;
  background:var(--white); border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 2px 12px rgba(154,123,79,0.1);
  overflow:hidden; flex-shrink:0;
  transition:transform .4s var(--ease-spring);
}
.nav-logo-img img { width:36px; height:36px; object-fit:contain; mix-blend-mode:multiply; }
.nav-logo:hover .nav-logo-img { transform:scale(1.08); }
.nav-logo-text { display:flex; flex-direction:column; line-height:1.1; }
.nav-logo-text span:first-child {
  font-family:var(--ff-serif); font-size:1.15rem; font-weight:600; color:var(--white); letter-spacing:.02em;
  transition:color .4s;
}
.nav-logo-text span:last-child {
  font-family:var(--ff-body); font-size:.65rem; font-weight:400; letter-spacing:.18em;
  text-transform:uppercase; color:rgba(255,255,255,.7);
  transition:color .4s;
}

.nav.scrolled .nav-logo-text span:first-child { color:var(--ink); }
.nav.scrolled .nav-logo-text span:last-child { color:var(--ink-muted); }

.nav-menu { display:flex; align-items:center; gap:36px; }
.nav-menu a {
  font-family:var(--ff-body); font-size:.78rem; font-weight:500;
  letter-spacing:.1em; text-transform:uppercase; color:rgba(255,255,255,.8);
  position:relative; padding:4px 0;
  transition:color .25s;
}
.nav-menu a::after {
  content:''; position:absolute; bottom:-2px; left:0; width:0; height:1px;
  background:var(--gold-grad); transition:width .35s var(--ease); border-radius:1px;
}
.nav-menu a:hover { color:var(--white); }
.nav-menu a:hover::after { width:100%; }

.nav.scrolled .nav-menu a { color:var(--ink-soft); }
.nav.scrolled .nav-menu a:hover { color:var(--gold); }
.nav-cta-btn {
  font-family:var(--ff-body) !important; font-size:.75rem !important; font-weight:600 !important;
  padding:10px 26px; background:var(--ink); color:var(--white) !important;
  border-radius:40px; letter-spacing:.08em !important; text-transform:uppercase !important;
  transition:background .25s, transform .35s var(--ease-spring), box-shadow .35s !important;
}
.nav-cta-btn::after { display:none !important; }
.nav-cta-btn:hover { background:var(--gold) !important; transform:translateY(-2px); box-shadow:0 8px 24px rgba(154,123,79,.25) !important; }

/* Hamburger */
.ham { display:none; flex-direction:column; gap:5px; cursor:pointer; background:none; border:none; padding:8px; }
.ham span { display:block; width:22px; height:1.5px; background:var(--white); border-radius:2px; transition:transform .35s var(--ease), opacity .2s, background .4s; }
.nav.scrolled .ham span { background:var(--ink); }
.ham.open span:nth-child(1) { transform:rotate(45deg) translate(5px,5px); }
.ham.open span:nth-child(2) { opacity:0; }
.ham.open span:nth-child(3) { transform:rotate(-45deg) translate(5px,-5px); }

/* Mobile Nav */
.mob-nav {
  display:none; position:fixed; inset:0; z-index:999;
  background:rgba(249,246,240,.97); backdrop-filter:blur(24px);
  flex-direction:column; align-items:center; justify-content:center; gap:32px;
  opacity:0; visibility:hidden; transition:all .4s var(--ease);
}
.mob-nav.open { opacity:1; visibility:visible; }
.mob-nav a {
  font-family:var(--ff-serif); font-size:2.2rem; font-weight:400; font-style:italic;
  color:var(--ink); letter-spacing:.02em;
  transform:translateY(24px); opacity:0; transition:all .5s var(--ease);
}
.mob-nav.open a { transform:translateY(0); opacity:1; }
.mob-nav.open a:nth-child(1){transition-delay:.05s}
.mob-nav.open a:nth-child(2){transition-delay:.10s}
.mob-nav.open a:nth-child(3){transition-delay:.15s}
.mob-nav.open a:nth-child(4){transition-delay:.20s}
.mob-nav.open a:nth-child(5){transition-delay:.25s}
.mob-nav.open a:nth-child(6){transition-delay:.30s}
.mob-nav.open a:nth-child(7){transition-delay:.35s}
.mob-nav a:hover { color:var(--gold); }

/* ============================================
   BUTTONS
   ============================================ */
.btn-gold {
  display:inline-flex; align-items:center; gap:8px;
  padding:15px 38px; background:var(--gold); color:var(--white);
  font-family:var(--ff-body); font-size:.8rem; font-weight:600;
  letter-spacing:.1em; text-transform:uppercase; border-radius:40px;
  border:none; cursor:pointer;
  transition:transform .35s var(--ease-spring), box-shadow .35s, background .25s;
}
.btn-gold:hover { transform:translateY(-3px); box-shadow:0 12px 32px rgba(154,123,79,.28); background:var(--gold-light); }

.btn-outline {
  display:inline-flex; align-items:center; gap:8px;
  padding:15px 38px; background:transparent; color:var(--ink);
  font-family:var(--ff-body); font-size:.8rem; font-weight:600;
  letter-spacing:.1em; text-transform:uppercase; border-radius:40px;
  border:1.5px solid var(--border-soft); cursor:pointer;
  transition:transform .35s var(--ease-spring), border-color .25s, color .25s, background .25s;
}
.btn-outline:hover { transform:translateY(-3px); border-color:var(--gold); color:var(--gold); background:var(--gold-pale); }

/* ============================================
   SECTION UTILS
   ============================================ */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.section { padding:100px 32px; }
.wrap { max-width:var(--max-w); margin:0 auto; }
.wrap-sm { max-width:760px; margin:0 auto; }
.text-center { text-align:center; }

.eyebrow {
  display:inline-flex; align-items:center; gap:12px;
  font-family:var(--ff-body); font-size:.72rem; font-weight:700;
  letter-spacing:.2em; text-transform:uppercase; color:var(--gold);
  margin-bottom:20px;
}
.eyebrow::before { content:''; width:28px; height:1.5px; background:var(--gold); }

.h1 {
  font-family:var(--ff-serif); font-size:clamp(3rem,7vw,5.5rem);
  font-weight:600; line-height:1.1; letter-spacing:-.01em;
  color:var(--ink);
}
.h2 {
  font-family:var(--ff-serif); font-size:clamp(2rem,4.5vw,3.2rem);
  font-weight:600; line-height:1.2; letter-spacing:-.01em;
  color:var(--ink);
}
.h3 {
  font-family:var(--ff-serif); font-size:clamp(1.4rem,2.5vw,1.9rem);
  font-weight:600; line-height:1.3; color:var(--ink);
}
.lead {
  font-family:var(--ff-body); font-size:clamp(1rem,1.5vw,1.1rem);
  font-weight:400; color:var(--ink-soft); line-height:1.85;
}
.divider {
  width:100%; height:1px;
  background:linear-gradient(90deg,transparent,var(--gold),transparent);
  opacity:.2;
}

.gold-text {
  background:var(--gold-grad); -webkit-background-clip:text;
  -webkit-text-fill-color:transparent; background-clip:text;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height:100vh; padding:var(--nav-h) 32px 80px;
  display:flex; flex-direction:column;
  align-items:center; justify-content:center; text-align:center;
  position:relative; overflow:hidden;
}

/* Full-screen photo */
.hero-bg-img {
  position:absolute; inset:0; width:100%; height:100%;
  object-fit:cover; object-position:center;
  z-index:0;
}

/* Gradient overlay — dark bottom, slightly dark top */
.hero-overlay {
  position:absolute; inset:0; z-index:1;
  background:linear-gradient(
    to bottom,
    rgba(10,8,5,.45) 0%,
    rgba(10,8,5,.35) 40%,
    rgba(10,8,5,.65) 100%
  );
}

.hero-inner { position:relative; z-index:2; display:flex; flex-direction:column; align-items:center; margin-top: auto; margin-bottom: 20px; }

/* Hero badge — on dark background */
.hero-badge {
  display:inline-flex; align-items:center; gap:10px;
  padding:8px 22px; border:1px solid rgba(255,255,255,.25); border-radius:40px;
  background:rgba(255,255,255,.1); backdrop-filter:blur(10px);
  margin-bottom:36px;
  font-family:var(--ff-body); font-size:.7rem; font-weight:500;
  letter-spacing:.2em; text-transform:uppercase; color:rgba(255,255,255,.9);
  animation:fadeSlideDown .8s var(--ease) both;
}
.badge-dot {
  width:6px; height:6px; border-radius:50%; background:var(--gold);
  animation:pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:.4;transform:scale(1)} 50%{opacity:1;transform:scale(1.4)} }
@keyframes fadeSlideDown { from{opacity:0;transform:translateY(-20px)} to{opacity:1;transform:translateY(0)} }

/* Hero logo — SINGLE, no box */
.hero-logo {
  width:130px; height:130px; object-fit:contain;
  mix-blend-mode:multiply;
  margin-bottom:32px;
  animation:heroFloat 6s ease-in-out infinite, fadeIn 1s var(--ease) .3s both;
  filter:drop-shadow(0 8px 24px rgba(0,0,0,.06));
}
@keyframes heroFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }

/* Hero title — NO inner HTML manipulation in JS */
.hero-title {
  font-family:var(--ff-serif); font-size:clamp(3rem,7.5vw,5.8rem);
  font-weight:700; line-height:1.08; letter-spacing:-.02em; color:var(--white);
  margin-bottom:24px;
  text-shadow:0 2px 20px rgba(0,0,0,.3);
  animation:titleReveal 1.2s var(--ease) .5s both;
}
@keyframes titleReveal { from{opacity:0;transform:translateY(40px)} to{opacity:1;transform:translateY(0)} }

.hero-title em {
  font-style:italic;
  color:var(--gold-light);
  -webkit-text-fill-color: var(--gold-light);
}

.hero-sub {
  max-width:580px; font-family:var(--ff-body); font-size:1.05rem; font-weight:400;
  color:rgba(255,255,255,.82); line-height:1.9; margin:0 auto 44px;
  text-shadow:0 1px 8px rgba(0,0,0,.3);
  animation:titleReveal 1.2s var(--ease) .7s both;
}
.hero-sub strong { font-weight:600; color:var(--white); }

.hero-btns {
  display:flex; gap:16px; flex-wrap:wrap; justify-content:center;
  animation:titleReveal 1.2s var(--ease) .9s both;
}

/* Stats bar */
/* Stats bar — white on dark */
.hero-stats {
  display:flex; gap:60px; margin-top:72px; padding-top:40px;
  border-top:1px solid rgba(255,255,255,.18);
  animation:titleReveal 1.2s var(--ease) 1.1s both;
}
.hs-num {
  font-family:var(--ff-serif); font-size:2.4rem; font-weight:600;
  color:var(--gold-light); line-height:1;
}
.hs-lbl {
  font-family:var(--ff-body); font-size:.68rem; font-weight:500;
  letter-spacing:.14em; text-transform:uppercase; color:rgba(255,255,255,.65); margin-top:5px;
}

.scroll-hint {
  position:absolute; bottom:36px; left:50%; transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:8px;
  animation:scrollBounce 2.4s ease-in-out infinite;
  z-index:2;
}
.scroll-hint span {
  font-family:var(--ff-body); font-size:.6rem; letter-spacing:.2em;
  text-transform:uppercase; color:rgba(255,255,255,.6);
}
.scroll-line {
  width:1px; height:44px;
  background:linear-gradient(to bottom, rgba(255,255,255,.7), transparent);
}
@keyframes scrollBounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* Light outline button (for dark/image backgrounds) */
.btn-outline-light {
  display:inline-flex; align-items:center; gap:8px;
  padding:15px 38px; background:rgba(255,255,255,.1); color:var(--white);
  font-family:var(--ff-body); font-size:.8rem; font-weight:600;
  letter-spacing:.1em; text-transform:uppercase; border-radius:40px;
  border:1.5px solid rgba(255,255,255,.45); cursor:pointer; backdrop-filter:blur(6px);
  transition:transform .35s var(--ease-spring), border-color .25s, background .25s;
}
.btn-outline-light:hover { transform:translateY(-3px); border-color:rgba(255,255,255,.9); background:rgba(255,255,255,.2); }

/* ============================================
   MARQUEE
   ============================================ */
.marquee-strip {
  overflow:hidden; padding:16px 0;
  background:var(--ink); position:relative;
}
.marquee-track { display:flex; width:max-content; animation:mScroll 28s linear infinite; }
.marquee-item {
  display:flex; align-items:center; gap:20px; padding:0 20px;
  white-space:nowrap; font-family:var(--ff-serif); font-size:1rem; font-style:italic;
  color:rgba(255,255,255,.75); letter-spacing:.04em;
}
.m-sep { width:5px; height:5px; border-radius:50%; background:var(--gold); flex-shrink:0; }
@keyframes mScroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ============================================
   HERO IMAGE STRIP
   ============================================ */
.img-strip { padding:0 32px 80px; background:var(--ivory); }
.img-strip-inner { max-width:var(--max-w); margin:0 auto; position:relative; }
.img-strip-frame {
  border-radius:20px; overflow:hidden;
  box-shadow:0 24px 80px rgba(0,0,0,.1);
  position:relative;
}
.img-strip-frame img {
  width:100%; height:520px; object-fit:cover;
  transition:transform 7s ease;
}
.img-strip-frame:hover img { transform:scale(1.04); }
.img-caption {
  position:absolute; bottom:0; left:0; width:100%;
  padding:48px 40px 32px;
  background:linear-gradient(to top, rgba(15,10,5,.55), transparent);
}
.img-caption h3 {
  font-family:var(--ff-serif); font-size:1.8rem; font-weight:400;
  font-style:italic; color:var(--white); margin-bottom:4px;
}
.img-caption p {
  font-family:var(--ff-body); font-size:.75rem; letter-spacing:.14em;
  text-transform:uppercase; color:rgba(255,255,255,.65);
}

/* ============================================
   ABOUT
   ============================================ */
.about-sec { background:var(--white); }
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.about-body p {
  font-family:var(--ff-body); font-size:1.05rem; font-weight:400;
  color:var(--ink-soft); line-height:1.9; margin-bottom:20px;
}
.about-body p:first-of-type::first-letter {
  font-family:var(--ff-serif); font-size:3.2rem; font-weight:400;
  float:left; line-height:.85; margin:8px 12px 0 0; color:var(--gold);
}
.quote-block {
  margin-top:32px; padding:28px 28px 28px 32px;
  border-left:2px solid var(--gold); background:var(--ivory);
  border-radius:0 12px 12px 0;
}
.quote-block p {
  font-family:var(--ff-serif); font-size:1.1rem; font-style:italic; font-weight:500;
  color:var(--ink); line-height:1.75; margin:0 !important;
}

/* Photo stack */
.photo-stack { position:relative; height:540px; }
.ps-main {
  position:absolute; top:0; left:0; width:88%; height:88%;
  object-fit:cover; border-radius:16px;
  box-shadow:0 20px 60px rgba(0,0,0,.1);
}
.ps-float {
  position:absolute; bottom:0; right:0; width:58%; height:58%;
  object-fit:cover; border-radius:16px;
  border:5px solid var(--white);
  box-shadow:0 16px 48px rgba(0,0,0,.12); z-index:2;
}
.ps-badge {
  position:absolute; top:32px; right:32px; z-index:3;
  width:90px; height:90px; border-radius:50%;
  background:var(--gold-grad); display:flex; flex-direction:column;
  align-items:center; justify-content:center;
  box-shadow:0 8px 28px rgba(154,123,79,.3);
  animation:rotateBadge 18s linear infinite;
}
.ps-badge span:first-child {
  font-family:var(--ff-body); font-size:.5rem; font-weight:600;
  letter-spacing:.14em; text-transform:uppercase; color:rgba(255,255,255,.8);
}
.ps-badge span:last-child {
  font-family:var(--ff-serif); font-size:1.4rem; font-weight:600;
  color:var(--white); line-height:1;
}
@keyframes rotateBadge { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }

/* ============================================
   COUNTERS
   ============================================ */
.counters-sec { background:var(--ivory-deep); padding:80px 32px; }
.counters-grid {
  max-width:var(--max-w); margin:0 auto;
  display:grid; grid-template-columns:repeat(4,1fr);
  gap:2px; background:var(--border-soft); border-radius:16px; overflow:hidden;
}
.cnt-item {
  background:var(--white); padding:48px 32px; text-align:center;
}
.cnt-num {
  font-family:var(--ff-serif); font-size:clamp(2.8rem,5vw,4rem);
  font-weight:300; color:var(--gold); line-height:1; margin-bottom:8px;
}
.cnt-lbl {
  font-family:var(--ff-body); font-size:.72rem; font-weight:500;
  letter-spacing:.14em; text-transform:uppercase; color:var(--ink-muted);
}

/* ============================================
   GOVERNANCE
   ============================================ */
.gov-sec { background:var(--white); }
.gov-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; margin-top:56px; }
.gov-card {
  background:var(--ivory); border-radius:16px; padding:40px 28px;
  text-align:center; border:1px solid transparent;
  transition:transform .4s var(--ease), box-shadow .4s, border-color .25s;
  position:relative; overflow:hidden;
}
.gov-card::before {
  content:''; position:absolute; top:0; left:0; width:100%; height:3px;
  background:var(--gold-grad); transform:scaleX(0); transform-origin:left;
  transition:transform .4s var(--ease);
}
.gov-card:hover { transform:translateY(-8px); box-shadow:0 20px 60px rgba(0,0,0,.07); border-color:var(--border); }
.gov-card:hover::before { transform:scaleX(1); }
.gov-icon {
  width:58px; height:58px; background:var(--gold-pale); border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:1.4rem; margin:0 auto 20px;
}
.gov-role {
  font-family:var(--ff-body); font-size:.68rem; font-weight:600;
  letter-spacing:.18em; text-transform:uppercase; color:var(--gold);
  margin-bottom:8px;
}
.gov-role {
  font-family:var(--ff-body); font-size:.72rem; font-weight:700;
  letter-spacing:.18em; text-transform:uppercase; color:var(--gold);
  margin-bottom:8px;
}
.gov-name { font-family:var(--ff-serif); font-size:1.2rem; font-weight:600; color:var(--ink); margin-bottom:6px; }
.gov-note { font-family:var(--ff-body); font-size:.85rem; font-weight:400; color:var(--ink-muted); font-style:italic; }

/* ============================================
   PARALLAX BREAK
   ============================================ */
.parallax-sec {
  height:55vh; min-height:340px; position:relative; overflow:hidden;
  display:flex; align-items:center; justify-content:center;
}
.par-img {
  position:absolute; top:-15%; left:0; width:100%; height:130%;
  object-fit:cover; will-change:transform;
}
.par-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to right, rgba(10,8,5,.5), rgba(10,8,5,.2));
}
.par-text { position:relative; z-index:2; text-align:center; color:var(--white); }
.par-text h2 {
  font-family:var(--ff-serif); font-size:clamp(2rem,5vw,3.5rem);
  font-weight:300; font-style:italic; margin-bottom:8px;
}
.par-text p {
  font-family:var(--ff-body); font-size:.82rem; font-weight:300;
  letter-spacing:.12em; text-transform:uppercase; opacity:.75;
}

/* ============================================
   FACILITIES
   ============================================ */
.fac-sec { background:var(--ivory); }
.fac-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:56px; }
.fac-card {
  background:var(--white); border-radius:16px; overflow:hidden;
  border:1px solid var(--border-soft);
  transition:transform .4s var(--ease), box-shadow .4s;
}
.fac-card:hover { transform:translateY(-8px) scale(1.005); box-shadow:0 24px 64px rgba(0,0,0,.08); }
.fac-img-wrap { overflow:hidden; position:relative; }
.fac-img {
  width:100%; height:200px; object-fit:cover;
  transition:transform .7s var(--ease);
}
.fac-card:hover .fac-img { transform:scale(1.07); }
.fac-emoji {
  position:absolute; bottom:14px; right:14px;
  width:44px; height:44px; border-radius:50%;
  background:rgba(255,255,255,.88); backdrop-filter:blur(8px);
  display:flex; align-items:center; justify-content:center; font-size:1.1rem;
}
.fac-body { padding:28px 24px; }
.fac-name { font-family:var(--ff-serif); font-size:1.25rem; font-weight:600; color:var(--ink); margin-bottom:8px; }
.fac-desc { font-family:var(--ff-body); font-size:.92rem; font-weight:400; color:var(--ink-soft); line-height:1.8; }

/* ============================================
   SCROLL TEXT
   ============================================ */
.scroll-text-sec { padding:60px 0; overflow:hidden; background:var(--ivory); }
.st-track { display:flex; animation:mScroll 22s linear infinite; width:max-content; }
.st-track.rev { animation-direction:reverse; }
.st-item {
  font-family:var(--ff-serif); font-size:clamp(3rem,7vw,5.5rem);
  font-weight:600; color:transparent; -webkit-text-stroke:1.5px rgba(28,25,23,.15);
  padding:0 24px; flex-shrink:0; white-space:nowrap;
}
.st-item.filled {
  color:var(--gold); -webkit-text-stroke:0; opacity:.9;
}

/* ============================================
   REGISTRATION
   ============================================ */
.reg-sec { background:var(--white); }
.reg-wrap { display:grid; grid-template-columns:1fr 1fr; gap:72px; align-items:start; margin-top:48px; }
.reg-info p {
  font-family:var(--ff-body); font-size:1rem; font-weight:400;
  color:var(--ink-soft); line-height:1.9; margin-bottom:20px;
}
.reg-table { border-radius:14px; overflow:hidden; border:1px solid var(--border-soft); }
.reg-row { display:flex; border-bottom:1px solid var(--border-soft); transition:background .2s; }
.reg-row:last-child { border-bottom:none; }
.reg-row:hover { background:var(--ivory); }
.reg-k {
  flex:0 0 44%; padding:14px 18px;
  font-family:var(--ff-body); font-size:.82rem; font-weight:600;
  color:var(--ink); background:var(--ivory); border-right:1px solid var(--border-soft);
}
.reg-v {
  flex:1; padding:14px 18px;
  font-family:var(--ff-body); font-size:.88rem; font-weight:400; color:var(--ink-soft);
}

/* ============================================
   MEMBERSHIP
   ============================================ */
.mem-sec { background:var(--ivory); }
.mem-grid { display:grid; grid-template-columns:1fr 1fr; gap:28px; margin-top:56px; }
.mem-card {
  background:var(--white); border-radius:20px; padding:44px 36px;
  border:1px solid var(--border-soft);
  transition:transform .4s var(--ease), box-shadow .4s;
  position:relative; overflow:hidden;
}
.mem-card::after {
  content:''; position:absolute; inset:0;
  background:radial-gradient(ellipse at bottom right, rgba(201,169,110,.06), transparent 60%);
  pointer-events:none;
}
.mem-card:hover { transform:translateY(-6px); box-shadow:0 20px 56px rgba(0,0,0,.07); }
.mem-badge {
  display:inline-block; padding:5px 16px; border-radius:40px;
  background:var(--gold-pale); font-family:var(--ff-body); font-size:.68rem;
  font-weight:600; letter-spacing:.15em; text-transform:uppercase; color:var(--gold);
  margin-bottom:24px;
}
.mem-title { font-family:var(--ff-serif); font-size:1.6rem; font-weight:600; color:var(--ink); margin-bottom:14px; }
.mem-desc { font-family:var(--ff-body); font-size:.95rem; font-weight:400; color:var(--ink-soft); line-height:1.85; }
.mem-cta { margin-top:56px; text-align:center; }
.mem-cta-text {
  font-family:var(--ff-serif); font-size:1.5rem; font-style:italic; font-weight:500;
  color:var(--ink); margin-bottom:28px;
}

/* ============================================
   EVENTS
   ============================================ */
.events-sec { background:var(--ink); }
.events-sec .eyebrow { color:var(--gold-light); }
.events-sec .eyebrow::before { background:var(--gold-light); }
.ev-list { margin-top:48px; }
.ev-item {
  display:flex; align-items:flex-start; gap:28px; padding:32px 0;
  border-bottom:1px solid rgba(255,255,255,.07);
  transition:padding-left .4s var(--ease);
}
.ev-item:hover { padding-left:16px; }
.ev-num {
  font-family:var(--ff-serif); font-size:2.2rem; font-weight:300;
  color:var(--gold); flex-shrink:0; width:56px; opacity:.7;
}
.ev-content h3 { font-family:var(--ff-serif); font-size:1.35rem; font-weight:600; color:var(--white); margin-bottom:8px; }
.ev-content p { font-family:var(--ff-body); font-size:.95rem; font-weight:400; color:rgba(255,255,255,.6); line-height:1.8; }

/* ============================================
   GALLERY
   ============================================ */
.gallery-sec { background:var(--ivory); }
.gal-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:56px; }
.gal-item {
  border-radius:16px; overflow:hidden; cursor:pointer;
  transition:transform .4s var(--ease);
}
.gal-item:first-child { grid-column:1/3; }
.gal-item:hover { transform:scale(1.02); }
.gal-item img {
  width:100%; min-height:240px; object-fit:cover;
  transition:transform .7s var(--ease);
}
.gal-item:first-child img { min-height:380px; }
.gal-item:hover img { transform:scale(1.07); }

/* ============================================
   CONTACT
   ============================================ */
.contact-sec { background:var(--white); }
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:80px; margin-top:56px; }
.c-items { display:flex; flex-direction:column; gap:32px; }
.c-item { display:flex; align-items:flex-start; gap:20px; }
.c-icon {
  width:50px; height:50px; border-radius:12px;
  background:var(--gold-pale); display:flex; align-items:center;
  justify-content:center; font-size:1.2rem; flex-shrink:0;
}
.c-lbl { font-family:var(--ff-body); font-size:.72rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--ink-muted); margin-bottom:5px; }
.c-val { font-family:var(--ff-body); font-size:1rem; font-weight:500; color:var(--ink); }
.c-val a { color:var(--gold); transition:color .2s; }
.c-val a:hover { color:var(--gold-light); }
.c-map { border-radius:16px; overflow:hidden; border:1px solid var(--border-soft); min-height:360px; }
.c-map iframe { width:100%; height:100%; min-height:360px; border:none; display:block; }

/* ============================================
   FOOTER
   ============================================ */
.footer { background:var(--ink); padding:72px 32px 36px; }
.footer-inner { max-width:var(--max-w); margin:0 auto; }
.footer-top {
  display:flex; justify-content:space-between; gap:48px; align-items:flex-start;
  padding-bottom:56px; border-bottom:1px solid rgba(255,255,255,.08);
}
.footer-brand { max-width:340px; }
.footer-logo-wrap {
  display:flex; align-items:center; gap:14px; margin-bottom:20px;
}
.footer-logo-img {
  width:44px; height:44px; border-radius:50%;
  background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.1);
  display:flex; align-items:center; justify-content:center; overflow:hidden;
}
.footer-logo-img img { width:32px; height:32px; object-fit:contain; filter:brightness(0) invert(1) opacity(.7); }
.footer-logo-name { font-family:var(--ff-serif); font-size:1.15rem; color:rgba(255,255,255,.85); letter-spacing:.02em; }
.footer-brand p { font-family:var(--ff-body); font-size:.9rem; font-weight:400; color:rgba(255,255,255,.55); line-height:1.85; }
.footer-nav { display:flex; gap:56px; }
.footer-col h4 {
  font-family:var(--ff-body); font-size:.65rem; font-weight:600;
  letter-spacing:.2em; text-transform:uppercase; color:var(--gold-light); margin-bottom:20px;
}
.footer-col a {
  display:block; font-family:var(--ff-body); font-size:.88rem; font-weight:400;
  color:rgba(255,255,255,.5); padding:5px 0;
  transition:color .2s, padding-left .35s var(--ease);
}
.footer-col a:hover { color:rgba(255,255,255,.95); padding-left:8px; }
.footer-bottom {
  padding-top:28px; display:flex; align-items:center;
  justify-content:space-between; flex-wrap:wrap; gap:12px;
  font-family:var(--ff-body); font-size:.78rem; color:rgba(255,255,255,.28);
}
.footer-bottom a { color:var(--gold-light); transition:color .2s; }
.footer-bottom a:hover { color:rgba(255,255,255,.9); }
.f-credit { display:flex; align-items:center; gap:6px; }
.f-heart { color:var(--gold); animation:heartbeat 1.6s ease-in-out infinite; }
@keyframes heartbeat { 0%,100%{transform:scale(1)} 50%{transform:scale(1.2)} }

/* ============================================
   RESPONSIVE
   ============================================ */
@media(max-width:1024px){
  .about-grid,.reg-wrap,.contact-grid { grid-template-columns:1fr; gap:48px; }
  .gov-grid { grid-template-columns:repeat(2,1fr); }
  .fac-grid { grid-template-columns:repeat(2,1fr); }
  .counters-grid { grid-template-columns:repeat(2,1fr); }
  .footer-top { flex-direction:column; }
  .footer-nav { flex-wrap:wrap; gap:36px; }
  .photo-stack { height:440px; }
}
@media(max-width:768px){
  :root { --nav-h:68px; }
  .section { padding:72px 20px; }
  .nav-menu { display:none; }
  .ham { display:flex; }
  .mob-nav { display:flex; }
  .hero-stats { flex-direction:column; gap:24px; }
  .gov-grid { grid-template-columns:1fr; }
  .fac-grid { grid-template-columns:1fr; }
  .mem-grid { grid-template-columns:1fr; }
  .gal-grid { grid-template-columns:1fr; }
  .gal-item:first-child { grid-column:auto; }
  .counters-grid { grid-template-columns:repeat(2,1fr); }
  .img-strip-frame img { height:320px; }
  .hero-btns { flex-direction:column; width:100%; }
  .btn-gold,.btn-outline { width:100%; justify-content:center; }
  .photo-stack { height:380px; }
  .reg-row { flex-direction:column; }
  .reg-k { border-right:none; border-bottom:1px solid var(--border-soft); flex:none; }
}
@media(max-width:480px){
  .section { padding:56px 16px; }
  .counters-grid { grid-template-columns:1fr 1fr; }
  .footer-bottom { flex-direction:column; text-align:center; }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media(prefers-reduced-motion:reduce){
  *, *::before, *::after { animation-duration:.01ms !important; transition-duration:.01ms !important; }
  .fade-up,.fade-left,.fade-right,.fade-sc { opacity:1; transform:none; }
}

::selection { background:var(--gold-pale); color:var(--gold); }
:focus-visible { outline:2px solid var(--gold); outline-offset:4px; }

/* ============================================
   AI AGENT (ALEX)
   ============================================ */
.alex-widget {
  position:fixed; bottom:28px; left:28px; z-index:900;
  display:flex; flex-direction:column; align-items:flex-start; gap:12px;
}
.alex-avatar {
  width:52px; height:52px; background:linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius:50%; display:flex; align-items:center; justify-content:center;
  font-size:1.4rem; color:var(--white); cursor:pointer;
  box-shadow:0 8px 24px rgba(154,123,79,.3);
  transition:transform .3s var(--ease-spring), box-shadow .3s;
  animation:float 4s ease-in-out infinite;
}
.alex-avatar:hover { transform:scale(1.1); box-shadow:0 12px 32px rgba(154,123,79,.4); }

.alex-bubble {
  background:var(--white); padding:16px 20px 16px 24px; border-radius:16px 16px 16px 4px;
  box-shadow:0 12px 40px rgba(0,0,0,.12);
  border:1px solid var(--border-soft);
  max-width:280px; position:relative;
  opacity:0; visibility:hidden; transform:translateY(10px) scale(0.95);
  transform-origin:bottom left;
  transition:all .4s var(--ease-spring);
  display:flex; gap:12px; align-items:flex-start;
}
.alex-bubble.show { opacity:1; visibility:visible; transform:translateY(0) scale(1); }
.alex-bubble-text {
  font-family:var(--ff-body); font-size:.85rem; line-height:1.6; color:var(--ink);
}
.alex-bubble-text strong { color:var(--gold); font-weight:600; }
.alex-close {
  background:none; border:none; font-size:1.2rem; color:var(--ink-muted);
  cursor:pointer; padding:0; line-height:1; transition:color .2s;
}
.alex-close:hover { color:var(--ink); }

@keyframes float {
  0%,100% { transform:translateY(0); }
  50% { transform:translateY(-6px); }
}
