/* ==========================================================================
   SILVERWOOD RESIDENCES — Redesign concept
   Fonts: Fraunces (display) + Inter (body/UI)
   ========================================================================== */

:root {
  --ink:        #0a0c1a;
  --navy-950:   #0a0c1a;
  --navy-900:   #10132a;
  --navy-800:   #171b3a;
  --navy-700:   #232853;
  --navy-line:  rgba(255,255,255,0.12);
  --gold:       #c9a961;
  --gold-soft:  #e3cd97;
  --gold-deep:  #a9803c;
  --cream:      #f7f4ec;
  --cream-dim:  #efe9db;
  --paper:      #fbf9f4;
  --ink-text:   #14172c;
  --ink-soft:   #6b6f85;
  --ink-faint:  #9a9db0;
  --white:      #ffffff;

  --serif: 'Fraunces', 'Times New Roman', serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius: 2px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink-text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }

.container { max-width: 1320px; margin: 0 auto; padding: 0 48px; }
@media (max-width: 720px) { .container { padding: 0 24px; } }

h1, h2, h3 { font-family: var(--serif); font-weight: 500; margin: 0; letter-spacing: -0.01em; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold-deep); display: inline-block; }
.section-head-light .eyebrow, .on-dark .eyebrow { color: var(--gold-soft); }
.section-head-light .eyebrow::before, .on-dark .eyebrow::before { background: var(--gold-soft); }

/* ---------- grain overlay ---------- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9990;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ---------- custom cursor (desktop only) ---------- */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  will-change: transform;
}
.cursor-dot { width: 6px; height: 6px; background: var(--gold); opacity: 0; transition: opacity 0.2s; }
.cursor-ring {
  width: 40px; height: 40px;
  border: 1px solid rgba(201,169,97,0.55);
  opacity: 0;
  transition: width 0.3s var(--ease), height 0.3s var(--ease), border-color 0.3s, background 0.3s, opacity 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.cursor-dot.is-active, .cursor-ring.is-active { opacity: 1; }
.cursor-ring span {
  opacity: 0; font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--navy-950); font-weight: 600; white-space: nowrap; transition: opacity 0.2s;
}
.cursor-ring.is-hover { width: 84px; height: 84px; background: var(--gold); border-color: var(--gold); }
.cursor-ring.is-hover span { opacity: 1; }
.cursor-ring.is-hidden, .cursor-dot.is-hidden { opacity: 0; }
@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ---------- preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--navy-950);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s var(--ease), visibility 0.8s;
}
.preloader svg { width: 64px; height: 58px; color: var(--gold); opacity: 0; animation: pl-in 0.9s var(--ease) 0.15s forwards; }
.preloader-bar { position: absolute; bottom: 0; left: 0; height: 2px; width: 0%; background: var(--gold); animation: pl-bar 1.3s var(--ease) forwards; }
@keyframes pl-in { to { opacity: 1; } }
@keyframes pl-bar { to { width: 100%; } }
body.is-loaded .preloader { opacity: 0; visibility: hidden; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding: 30px 0;
  transition: padding 0.5s var(--ease), background 0.5s var(--ease), border-color 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  padding: 18px 0;
  background: rgba(10,12,26,0.72);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid var(--navy-line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: flex; align-items: center; }
.brand-logo-img { height: 40px; width: auto; display: block; transition: height 0.5s var(--ease); }
.scrolled .brand-logo-img { height: 32px; }

.main-nav { display: flex; gap: 44px; }
.main-nav a {
  position: relative;
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.03em;
  color: rgba(255,255,255,0.82);
  padding: 4px 0;
}
.main-nav a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.main-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.main-nav a:hover { color: #fff; }

.header-actions { display: flex; align-items: center; gap: 14px; }
.icon-btn {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.28);
  display: flex; align-items: center; justify-content: center;
  color: #fff; transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease);
}
.icon-btn svg { width: 16px; height: 16px; fill: currentColor; }
.icon-btn:hover { border-color: var(--gold); background: var(--gold); color: var(--navy-950); transform: translateY(-2px); }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em;
  padding: 14px 28px; border-radius: 999px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s, color 0.35s, border-color 0.35s;
  white-space: nowrap;
}
.btn-primary { background: var(--gold); color: var(--navy-950); }
.btn-primary:hover { background: var(--gold-soft); transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(201,169,97,0.55); }
.btn-ghost { border: 1px solid rgba(255,255,255,0.35); color: #fff; }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.08); transform: translateY(-2px); }
.btn-outline { border: 1px solid rgba(20,23,44,0.25); color: var(--ink-text); }
.btn-outline:hover { border-color: var(--ink-text); background: var(--ink-text); color: #fff; transform: translateY(-2px); }
.btn-sm { padding: 11px 22px; font-size: 0.76rem; }
.btn-full { width: 100%; justify-content: center; }

.menu-toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 6px;
  position: relative; z-index: 401;
}
.menu-toggle span { width: 22px; height: 1.5px; background: #fff; transition: transform 0.35s var(--ease), opacity 0.35s; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden;
  background: var(--navy-950);
}
.hero-media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-bg {
  position: absolute; inset: -6% -6%;
  background-image: url('../hero-bg.jpg');
  background-size: cover; background-position: center 62%;
  transform: scale(1.06);
  will-change: transform;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8,10,22,0.55) 0%, rgba(8,10,22,0.35) 32%, rgba(8,10,22,0.78) 78%, rgba(8,10,22,0.96) 100%),
    linear-gradient(90deg, rgba(8,10,22,0.55) 0%, rgba(8,10,22,0) 42%);
}
.hero-content { position: relative; z-index: 2; padding: 220px 0 64px; color: #fff; }
.hero-content .eyebrow { color: var(--gold-soft); }
.hero-content .eyebrow::before { background: var(--gold-soft); }

.hero-title {
  font-size: clamp(2.6rem, 7.2vw, 6.4rem);
  line-height: 0.98;
  font-weight: 500;
  max-width: 920px;
  margin: 0 0 30px;
}
.hero-title .line { display: block; overflow: hidden; padding-bottom: 0.05em; }
.hero-title .line span { display: inline-block; transform: translateY(112%); transition: transform 1.1s var(--ease); }
.hero-title .line:nth-child(1) span { transition-delay: 0.25s; }
.hero-title .line:nth-child(2) span { transition-delay: 0.4s; }
body.is-loaded .hero-title .line span { transform: translateY(0); }
.hero-title em { font-style: italic; color: var(--gold-soft); }

.hero-lede {
  font-size: 1.05rem; line-height: 1.65; color: rgba(255,255,255,0.78);
  max-width: 480px; margin: 0 0 40px;
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.9s var(--ease) 0.7s, transform 0.9s var(--ease) 0.7s;
}
body.is-loaded .hero-lede { opacity: 1; transform: translateY(0); }

.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.9s var(--ease) 0.85s, transform 0.9s var(--ease) 0.85s;
}
body.is-loaded .hero-actions { opacity: 1; transform: translateY(0); }

.hero-meta {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 0 0;
  border-top: 1px solid rgba(255,255,255,0.16);
}
.hero-meta .container { display: flex; align-items: center; justify-content: space-between; padding-top: 22px; padding-bottom: 22px; flex-wrap: wrap; gap: 16px; }
.hero-coords { font-size: 0.72rem; letter-spacing: 0.14em; color: rgba(255,255,255,0.55); text-transform: uppercase; }
.scroll-cue {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.7);
}
.scroll-cue .line { width: 1px; height: 30px; background: rgba(255,255,255,0.3); position: relative; overflow: hidden; }
.scroll-cue .line::after {
  content: ''; position: absolute; top: -100%; left: 0; width: 100%; height: 100%; background: var(--gold);
  animation: cue 2.2s ease-in-out infinite;
}
@keyframes cue { 0% { top: -100%; } 50% { top: 0; } 100% { top: 100%; } }

/* ---------- marquee ---------- */
.marquee-strip {
  background: var(--navy-950);
  border-top: 1px solid var(--navy-line);
  overflow: hidden;
  padding: 18px 0;
  position: relative;
}
.marquee-track { display: flex; width: max-content; animation: marquee 34s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: flex; align-items: center; gap: 28px;
  font-family: var(--serif); font-style: italic; font-size: 1.15rem;
  color: rgba(255,255,255,0.55);
  padding: 0 28px;
  white-space: nowrap;
}
.marquee-item svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ==========================================================================
   SECTION SCAFFOLDING
   ========================================================================== */
section { position: relative; }
.section-pad { padding: 140px 0; }
@media (max-width: 720px) { .section-pad { padding: 90px 0; } }
.on-dark { background: var(--navy-950); color: #fff; }
.section-head { max-width: 640px; margin-bottom: 72px; }
.section-head h2 { font-size: clamp(2.1rem, 4vw, 3.2rem); line-height: 1.08; }
.section-lede { font-size: 1rem; color: var(--ink-soft); margin-top: 22px; line-height: 1.6; }
.on-dark .section-lede { color: rgba(255,255,255,0.62); }

.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > * { }

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about { background: var(--paper); }
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 100px; align-items: center; }
.about-visual { position: relative; }
.about-frame {
  position: relative; aspect-ratio: 4/5; border-radius: var(--radius); overflow: hidden;
  background: var(--navy-900);
}
.about-photo {
  width: 100%; height: 100%; object-fit: cover;
  clip-path: inset(0 0 0 0);
  transform: scale(1.15);
  transition: clip-path 1.4s var(--ease), transform 1.6s var(--ease);
}
.about-frame.is-revealed .about-photo { transform: scale(1); }
.about-frame:not(.is-revealed) .about-photo { clip-path: inset(0 0 100% 0); }
.about-frame::after {
  content: ''; position: absolute; inset: 16px; border: 1px solid rgba(201,169,97,0.4);
  pointer-events: none;
}
.about-tag {
  position: absolute; bottom: -26px; left: -26px;
  background: var(--navy-950); color: #fff;
  padding: 22px 26px; border-radius: var(--radius);
  box-shadow: 0 30px 60px -20px rgba(10,12,26,0.4);
  font-family: var(--serif); font-style: italic; font-size: 1.5rem;
  border: 1px solid var(--navy-line);
}
.about-tag small { display: block; font-family: var(--sans); font-style: normal; font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-soft); margin-top: 6px; }
@media (max-width: 640px) { .about-tag { left: 0; bottom: -20px; padding: 16px 20px; } }

.about-copy h2 { font-size: clamp(2rem, 3.4vw, 2.8rem); margin-bottom: 26px; line-height: 1.12; }
.about-copy p { font-size: 1.02rem; line-height: 1.72; color: var(--ink-soft); max-width: 560px; }
.about-copy p + p { margin-top: 18px; }

.stat-row { display: flex; gap: 0; margin-top: 46px; border-top: 1px solid rgba(20,23,44,0.12); }
.stat { display: flex; flex-direction: column; padding: 24px 32px 0 0; flex: 1; }
.stat:first-child { padding-left: 0; }
.stat-num { font-family: var(--serif); font-size: 2.6rem; font-weight: 500; color: var(--ink-text); line-height: 1; }
.stat-label { font-size: 0.78rem; color: var(--ink-faint); max-width: 140px; margin-top: 10px; letter-spacing: 0.01em; }

/* ==========================================================================
   FEATURED BUILDINGS — editorial alternating rows
   ========================================================================== */
.buildings { background: var(--navy-950); color: #fff; }
.building-row {
  display: grid; grid-template-columns: 90px 1fr 1fr; align-items: center; gap: 56px;
  padding: 64px 0; border-top: 1px solid var(--navy-line);
}
.building-list .building-row:last-child { border-bottom: 1px solid var(--navy-line); }
.building-row:nth-child(even) .building-media { order: 2; }
.building-row:nth-child(even) .building-copy { order: 1; }
.building-index {
  font-family: var(--serif); font-size: 1.1rem; color: rgba(255,255,255,0.28);
  letter-spacing: 0.02em;
}
.building-media {
  position: relative; aspect-ratio: 4/3; overflow: hidden; border-radius: var(--radius);
}
.building-media img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.18); transition: transform 1.2s var(--ease);
  filter: grayscale(0.15) brightness(0.94);
}
.building-row:hover .building-media img { transform: scale(1.05); filter: grayscale(0) brightness(1); }
.building-media::after {
  content: ''; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,0.08); pointer-events: none;
}
.district-tag {
  position: absolute; top: 18px; left: 18px; z-index: 2;
  font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: #fff; background: rgba(10,12,26,0.55); backdrop-filter: blur(6px);
  padding: 8px 14px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.2);
}
.building-copy h3 { font-size: clamp(1.5rem, 2.4vw, 2.05rem); margin-bottom: 16px; line-height: 1.15; }
.building-copy p { font-size: 0.96rem; line-height: 1.68; color: rgba(255,255,255,0.6); max-width: 460px; }
.building-link {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 26px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--gold-soft);
}
.building-link svg { width: 14px; height: 14px; transition: transform 0.35s var(--ease); }
.building-link:hover svg { transform: translateX(6px); }

@media (max-width: 900px) {
  .building-row { grid-template-columns: 1fr; gap: 24px; padding: 48px 0; }
  .building-index { display: none; }
  .building-row:nth-child(even) .building-media, .building-row:nth-child(even) .building-copy { order: initial; }
}

.buildings-cta {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  padding-top: 56px;
}
.buildings-cta p { font-size: 1rem; color: rgba(255,255,255,0.65); max-width: 420px; margin: 0; font-family: var(--serif); font-style: italic; }

/* ==========================================================================
   PROCESS — pinned horizontal scroll on desktop
   ========================================================================== */
.process { background: var(--cream); overflow: hidden; }
.process-pin { position: relative; }
.process-head-wrap { padding-top: 140px; }
.process-track {
  display: flex; gap: 0; margin-top: 90px;
}
.process-step {
  flex: 0 0 auto; width: min(560px, 82vw);
  padding: 0 60px 0 0;
  border-left: 1px solid rgba(20,23,44,0.14);
  padding-left: 44px;
  scroll-snap-align: start;
}
.process-num {
  font-family: var(--serif); font-size: 1rem; color: var(--gold-deep);
  display: block; margin-bottom: 28px;
}
.process-step h3 { font-size: 1.7rem; margin-bottom: 18px; }
.process-step p { font-size: 0.98rem; line-height: 1.68; color: var(--ink-soft); max-width: 380px; }

/* Default (no-JS / GSAP-unavailable) fallback: a normal horizontally
   scrollable strip — swipeable on touch, trackpad/wheel-scrollable on
   desktop, so every step stays reachable no matter what. When GSAP loads
   successfully, main.js adds .js-pinned and takes over with a pinned
   scroll-jack animation instead. */
.process-track-wrap {
  padding-bottom: 90px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-deep) transparent;
}
.process-track-wrap.js-pinned { overflow: hidden; padding-bottom: 0; }
.process-track-wrap:not(.js-pinned) .process-track { padding-right: 12vw; }

@media (max-width: 980px) {
  .process-track { flex-direction: column; gap: 56px; }
  .process-step { width: 100%; padding-right: 0; }
  .process-track-wrap { padding-bottom: 90px; }
}

/* ==========================================================================
   QUOTE
   ========================================================================== */
.quote-section { background: var(--navy-950); color: #fff; padding: 160px 0; position: relative; overflow: hidden; }
.quote-mark {
  position: absolute; top: -40px; left: 50%; transform: translateX(-50%);
  font-family: var(--serif); font-size: 22rem; color: rgba(255,255,255,0.035); line-height: 1;
  pointer-events: none; user-select: none;
}
.quote-section blockquote {
  position: relative; z-index: 1; max-width: 820px; margin: 0 auto; text-align: center;
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(1.4rem, 2.6vw, 2.1rem); line-height: 1.5; color: #fff;
}
.quote-section cite {
  display: block; margin-top: 36px; font-family: var(--sans); font-style: normal;
  font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-soft);
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact { background: var(--paper); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; }
.contact-copy h2 { font-size: clamp(2.1rem, 3.6vw, 3rem); margin-bottom: 20px; line-height: 1.1; }
.contact-copy > p { font-size: 1.02rem; color: var(--ink-soft); max-width: 420px; margin-bottom: 44px; }

.contact-methods { border-top: 1px solid rgba(20,23,44,0.12); }
.contact-method {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 0; border-bottom: 1px solid rgba(20,23,44,0.12);
  transition: padding-left 0.4s var(--ease);
}
.contact-method:hover { padding-left: 10px; }
.contact-method-left { display: flex; align-items: center; gap: 18px; }
.contact-method svg.method-icon { width: 18px; height: 18px; color: var(--gold-deep); flex-shrink: 0; }
.contact-method span { font-size: 1rem; font-weight: 500; }
.contact-method .arrow { width: 16px; height: 16px; color: var(--ink-faint); transition: transform 0.4s var(--ease), color 0.4s; }
.contact-method:hover .arrow { transform: translateX(6px); color: var(--gold-deep); }

.contact-form { }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.contact-form label {
  display: block; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-faint); margin-bottom: 30px; font-weight: 600;
}
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; margin-top: 12px; font-family: var(--sans); font-size: 1rem; color: var(--ink-text);
  background: transparent; border: none; border-bottom: 1px solid rgba(20,23,44,0.22);
  padding: 8px 0; outline: none; transition: border-color 0.3s;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--gold-deep); }
.contact-form textarea { resize: none; }
.contact-form select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b6f85' stroke-width='1.6'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 2px center; background-size: 16px; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 64px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--navy-950); color: #fff; padding: 90px 0 0; position: relative; overflow: hidden; }
.footer-wordmark {
  text-align: center; font-family: var(--serif); font-weight: 500;
  font-size: clamp(3rem, 13vw, 11rem); line-height: 1; letter-spacing: -0.02em;
  color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,0.14);
  margin-bottom: 60px; user-select: none;
}
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; padding-bottom: 40px; }
.brand-logo-img-footer { height: 44px; }
.footer-links { display: flex; gap: 30px; font-size: 0.86rem; flex-wrap: wrap; }
.footer-links a, .footer-social a { color: rgba(255,255,255,0.65); transition: color 0.3s; }
.footer-links a:hover, .footer-social a:hover { color: var(--gold-soft); }
.footer-social { display: flex; gap: 22px; align-items: center; }
.footer-social a { display: flex; align-items: center; }
.footer-social svg { display: block; }
.footer-bottom { border-top: 1px solid var(--navy-line); padding: 26px 0; }
.footer-bottom p { color: rgba(255,255,255,0.38); font-size: 0.78rem; margin: 0; text-align: center; }

/* ==========================================================================
   RESPONSIVE NAV
   ========================================================================== */
@media (max-width: 980px) {
  .main-nav { display: none; }
  .header-actions .btn-sm { display: none; }
  .menu-toggle { display: flex; }
  .site-header.nav-open .main-nav {
    display: flex; flex-direction: column; position: fixed; inset: 0; top: 0;
    background: var(--navy-950); padding: 120px 40px 40px; gap: 24px; z-index: 400;
  }
  .site-header.nav-open .main-nav a { font-size: 1.4rem; }
  .site-header.nav-open .menu-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .site-header.nav-open .menu-toggle span:nth-child(2) { opacity: 0; }
  .site-header.nav-open .menu-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
}

@media (max-width: 640px) {
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .stat-row { flex-wrap: wrap; row-gap: 24px; }
  .stat { flex: 0 0 50%; padding-right: 16px; }
}
