/* ============ DESIGN TOKENS ============ */
:root {
  --navy: #1E3A8A;
  --navy-deep: #0F172A;
  --navy-secondary: #1E40AF;
  --gold: #C9A227;
  --gold-deep: #9C7A1A;
  --bg: #FFFFFF;
  --bg-soft: #F4F6FA;
  --text: #0F172A;
  --text-muted: #55617A;
  --border: #E2E8F0;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;

  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 96px;

  --radius: 16px;
  --radius-sm: 10px;
  --shadow-card: 0 10px 30px -12px rgba(15, 23, 42, 0.18);
  --shadow-lift: 0 20px 45px -15px rgba(15, 23, 42, 0.28);
  --ease-out: cubic-bezier(.16,.84,.44,1);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; font-weight: 600; color: var(--navy-deep); }
p { margin: 0; }
button { font-family: inherit; cursor: pointer; }
svg { width: 1em; height: 1em; }
.section-inner { max-width: 1240px; margin: 0 auto; padding: 0 var(--space-3); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out), background 200ms var(--ease-out), color 200ms var(--ease-out);
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-secondary); box-shadow: var(--shadow-card); }
.btn-ghost { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn-ghost:hover { background: var(--navy); color: #fff; }
.btn-gold { background: var(--gold); color: #fff; display: inline-flex; margin: var(--space-2) 0; }
.btn-gold:hover { background: var(--gold-deep); box-shadow: var(--shadow-card); }

/* ============ SIDE SCROLL-SPY DOTS ============ */
.side-dots {
  position: fixed; right: 22px; top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 14px; z-index: 60;
}
.side-dots a {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(15,23,42,0.18);
  transition: background 200ms, transform 200ms;
}
.side-dots a:hover { transform: scale(1.3); }
.side-dots a.active { background: var(--gold); }
@media (max-width: 900px) { .side-dots { display: none; } }

/* ============ EMAIL US MODAL ============ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(15,23,42,0.55);
  display: flex; align-items: center; justify-content: center;
  padding: var(--space-3);
  opacity: 0; transition: opacity 220ms var(--ease-out);
}
.modal-overlay.open { opacity: 1; }
.modal-overlay[hidden] { display: none; }
.modal {
  position: relative; background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow-lift); max-width: 440px; width: 100%;
  padding: var(--space-4); transform: translateY(16px) scale(0.98); opacity: 0;
  transition: transform 220ms var(--ease-out), opacity 220ms var(--ease-out);
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); opacity: 1; }
.modal h3 { font-size: 1.4rem; margin-bottom: 6px; }
.modal-sub { color: var(--text-muted); font-size: 0.92rem; margin-bottom: var(--space-3); }
.modal-close {
  position: absolute; top: 16px; right: 16px; width: 32px; height: 32px;
  border: none; background: var(--bg-soft); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--navy-deep);
}
.modal-close svg { width: 16px; height: 16px; }
.modal-close:hover { background: var(--border); }

/* ============ TOAST ============ */
.toast {
  position: fixed; top: calc(var(--header-h, 76px) + 16px); right: 24px; z-index: 200;
  display: flex; align-items: flex-start; gap: 12px;
  background: #fff; border-radius: var(--radius-sm); box-shadow: var(--shadow-lift);
  padding: 16px 18px; max-width: 380px;
  border-left: 4px solid var(--navy);
  transform: translateX(120%); transition: transform 320ms var(--ease-out);
}
.toast[hidden] { display: none; }
.toast.show { transform: translateX(0); }
.toast.error { border-left-color: var(--destructive, #DC2626); }
.toast-icon { width: 22px; height: 22px; color: var(--navy); flex-shrink: 0; margin-top: 2px; }
.toast.error .toast-icon { color: #DC2626; }
.toast-body strong { display: block; font-family: var(--font-body); font-size: 0.95rem; color: var(--navy-deep); margin-bottom: 2px; }
.toast-body p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }
.toast-close {
  border: none; background: none; color: var(--text-muted); width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-left: auto;
}
.toast-close svg { width: 14px; height: 14px; }
.toast-close:hover { color: var(--navy-deep); }
@media (max-width: 480px) {
  .toast { left: 16px; right: 16px; max-width: none; }
}

/* ============ HEADER ============ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; align-items: center; gap: var(--space-3);
  padding: 12px var(--space-3);
}
.brand { display: flex; align-items: center; gap: 10px; margin-right: auto; }
.brand-mark { width: 34px; height: 34px; color: var(--navy); flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-text strong { font-family: var(--font-display); font-size: 1.05rem; color: var(--navy-deep); }
.brand-text small { font-size: 0.68rem; letter-spacing: 0.04em; color: var(--text-muted); text-transform: uppercase; }

.main-nav { display: flex; align-items: center; gap: var(--space-3); }
.nav-link {
  background: none; border: none; font-family: inherit; font-size: 0.95rem; font-weight: 600;
  color: var(--navy-deep); display: flex; align-items: center; gap: 4px; padding: 8px 2px;
  cursor: pointer; position: relative;
}
.nav-link .chev { width: 14px; height: 14px; transition: transform 200ms; }
.nav-item.has-dropdown:hover .chev, .nav-item.has-dropdown:focus-within .chev { transform: rotate(180deg); }
.nav-item { position: relative; }
.dropdown {
  position: absolute; top: 100%; left: 0; min-width: 220px;
  background: #fff; border-radius: var(--radius-sm); box-shadow: var(--shadow-lift);
  padding: 10px; display: flex; flex-direction: column; gap: 2px;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity 180ms var(--ease-out), transform 180ms var(--ease-out), visibility 180ms;
}
.nav-item.has-dropdown:hover .dropdown,
.nav-item.has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { padding: 8px 12px; border-radius: 8px; font-size: 0.9rem; color: var(--text-muted); }
.dropdown a:hover { background: var(--bg-soft); color: var(--navy); }

.call-cta {
  display: flex; align-items: center; gap: 8px;
  background: var(--gold); color: #fff; padding: 10px 18px;
  border-radius: 999px; font-size: 0.9rem; white-space: nowrap;
  transition: background 200ms;
}
.call-cta svg { width: 16px; height: 16px; }
.call-cta:hover { background: var(--gold-deep); }
.btn-nav { padding: 10px 20px; font-size: 0.88rem; }

.nav-toggle {
  display: none; background: none; border: none; width: 40px; height: 40px;
  align-items: center; justify-content: center; color: var(--navy-deep);
}
.nav-toggle svg { width: 26px; height: 26px; }

@media (max-width: 640px) {
  .brand-text small { display: none; }
  .brand-text strong { font-size: 0.95rem; }
}
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed; inset: var(--header-h, 64px) 0 0 0; background: #fff; flex-direction: column;
    align-items: flex-start; padding: var(--space-3); gap: var(--space-2);
    transform: translateX(100%); transition: transform 260ms var(--ease-out);
    overflow-y: auto;
  }
  .main-nav.open { transform: translateX(0); }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; display: none; padding-left: 12px; }
  .nav-item.has-dropdown.open .dropdown { display: flex; }
  .call-cta span { display: inline; }
  .btn-nav { display: none; }
}

/* ============ HERO ============ */
.hero {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 88vh;
  position: relative;
}
.hero-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--space-6) var(--space-6) var(--space-5) var(--space-6);
  background:
    radial-gradient(circle at 15% 20%, rgba(30,58,138,0.05) 0, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(201,162,39,0.06) 0, transparent 40%),
    #fff;
}
.hero-eyebrow {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em; color: var(--gold-deep);
  margin-bottom: var(--space-2);
}
.hero-heading { font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 1.08; margin-bottom: var(--space-3); }
.hero-heading .line-thin { font-weight: 500; font-style: italic; display: block; color: var(--navy-secondary); font-size: 0.55em; }
.hero-heading .line-bold { display: block; font-weight: 700; text-transform: uppercase; letter-spacing: 0.01em; }
.underline-navy, .underline-gold { position: relative; display: inline-block; }
.underline-navy::after, .underline-gold::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px; height: 4px; border-radius: 2px;
}
.underline-navy::after { background: var(--navy); }
.underline-gold::after { background: var(--gold); }
.hero-sub { font-size: 1.08rem; color: var(--text-muted); max-width: 46ch; margin-bottom: var(--space-4); line-height: 1.6; }
.hero-actions { display: flex; gap: var(--space-2); flex-wrap: wrap; margin-bottom: var(--space-5); }

.hero-widget {
  display: flex; align-items: flex-end; gap: var(--space-2); flex-wrap: wrap;
  border-top: 1px solid var(--border); padding-top: var(--space-3);
}
.hero-widget-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; color: var(--navy);
  line-height: 1.4; text-transform: uppercase; white-space: nowrap;
}
.hero-form { display: flex; align-items: center; gap: var(--space-2); flex-wrap: wrap; flex: 1; }
.hero-form-grid { display: flex; gap: 10px; flex-wrap: wrap; flex: 1; }
.hero-form input {
  border: none; border-bottom: 2px solid var(--border); background: transparent;
  padding: 8px 4px; font-family: inherit; font-size: 0.92rem; min-width: 150px; flex: 1;
  transition: border-color 200ms;
}
.hero-form input:focus { outline: none; border-color: var(--navy); }
.hero-go {
  display: flex; align-items: center; gap: 6px; background: none; border: none;
  color: var(--navy); font-weight: 700; font-size: 0.95rem; padding: 8px 4px; white-space: nowrap;
}
.hero-go svg { width: 18px; height: 18px; color: var(--gold); transition: transform 200ms; }
.hero-go:hover svg { transform: translateX(4px); }

.hero-visual { position: relative; overflow: hidden; }
.hero-panel {
  position: absolute; inset: -2px; background-size: cover; background-position: center;
  transition: transform 900ms var(--ease-out), opacity 900ms var(--ease-out);
}
.hero-panel::after { content: ''; position: absolute; inset: 0; }
.panel-navy { clip-path: polygon(0 0, 100% 0, 100% 52%, 0 82%); z-index: 2; transform: translateY(-110%); opacity: 0; }
.panel-navy::after { background: linear-gradient(160deg, rgba(15,23,42,0.75), rgba(30,58,138,0.55)); }
.panel-gold { clip-path: polygon(0 82%, 100% 52%, 100% 100%, 0 100%); z-index: 1; transform: translateY(-110%); opacity: 0; transition-delay: 140ms; }
.panel-gold::after { background: linear-gradient(160deg, rgba(180,131,9,0.6), rgba(201,162,39,0.72)); }
.hero-panel.in-view { transform: translateY(0); opacity: 1; }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { height: 60vh; order: -1; }
  .hero-content { padding: var(--space-4) var(--space-3); }
}

/* ============ STATS ============ */
.stats { background: var(--navy-deep); color: #fff; padding: var(--space-5) 0; }
.stats-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 var(--space-3);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-3); text-align: center;
}
.stat-num { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.8rem); color: var(--gold); font-weight: 700; }
.stat p { margin-top: 6px; color: rgba(255,255,255,0.75); font-size: 0.92rem; }
@media (max-width: 700px) { .stats-inner { grid-template-columns: repeat(2, 1fr); } }

/* ============ SHARED SECTION TITLES ============ */
.eyebrow { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em; color: var(--gold-deep); text-transform: uppercase; margin-bottom: 10px; }
.eyebrow.center { text-align: center; }
.section-title { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.section-title.center { text-align: center; margin: 0 auto var(--space-2); max-width: 60ch; }
.section-lead { color: var(--text-muted); font-size: 1.05rem; max-width: 60ch; margin: 0 auto var(--space-5); text-align: center; }
.dash { display: inline-block; width: 44px; height: 3px; background: var(--navy); vertical-align: middle; margin: 0 16px 6px; border-radius: 2px; }
.dash.gold-dash:last-child { background: var(--gold); }
.howwe-title { margin-bottom: var(--space-6); }

section { padding: var(--space-7) 0; }

/* ============ ABOUT ============ */
.about-grid { display: grid; grid-template-columns: 0.62fr 1.38fr; gap: var(--space-6); align-items: center; }
.about-media img {
  max-width: 380px; width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow-card);
}
.about-copy p { color: var(--text-muted); line-height: 1.7; margin-bottom: var(--space-2); }
.mvv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-2); margin-top: var(--space-4); }
.mvv-card { background: var(--bg-soft); border-radius: var(--radius-sm); padding: var(--space-3); }
.mvv-card svg { width: 30px; height: 30px; color: var(--navy); margin-bottom: 10px; }
.mvv-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.mvv-card p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }
@media (max-width: 980px) {
  .about-grid { grid-template-columns: 1fr; }
  .mvv-grid { grid-template-columns: 1fr; }
}

/* ============ SERVICES ============ */
.services { background: var(--bg-soft); }
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: var(--space-3); }
.service-card {
  background: #fff; border-radius: var(--radius); padding: var(--space-3);
  box-shadow: var(--shadow-card); transition: transform 250ms var(--ease-out), box-shadow 250ms var(--ease-out);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.service-card svg { width: 40px; height: 40px; color: var(--navy); margin-bottom: var(--space-2); }
.service-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.service-card ul li { color: var(--text-muted); font-size: 0.9rem; padding: 3px 0; position: relative; padding-left: 14px; }
.service-card ul li::before { content: ''; position: absolute; left: 0; top: 12px; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

/* ============ INDUSTRIES ============ */
.industries-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); gap: var(--space-2); }
.industry-chip {
  display: flex; align-items: center; gap: 12px; background: var(--bg-soft);
  border: 1px solid var(--border); border-radius: 999px; padding: 14px 20px;
  transition: background 200ms, border-color 200ms;
}
.industry-chip:hover { background: #fff; border-color: var(--gold); }
.industry-chip svg { width: 26px; height: 26px; color: var(--navy); flex-shrink: 0; }
.industry-chip span { font-weight: 600; font-size: 0.95rem; min-width: 0; hyphens: auto; overflow-wrap: break-word; }

/* ============ WHY CHOOSE US ============ */
.why-grid { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: var(--space-6); align-items: center; }
.check-list li { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px dashed var(--border); font-weight: 500; }
.check-list li:last-child { border-bottom: none; }
.check-list svg { width: 20px; height: 20px; color: #fff; background: var(--navy); border-radius: 50%; padding: 4px; flex-shrink: 0; }
.why-media img {
  max-width: 380px; width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow-card);
}
@media (max-width: 980px) { .why-grid { grid-template-columns: 1fr; } .why-media { order: -1; } }

/* ============ HOW WE WORK ============ */
.how-we-work { background: var(--bg-soft); }
.how-we-work .howwe-title { margin-bottom: var(--space-5); }
.timeline-wrap { max-width: 760px; margin: 0 auto; }
.timeline { position: relative; padding-left: 26px; }
.timeline::before { content: ''; position: absolute; left: 4px; top: 6px; bottom: 6px; width: 2px; background: var(--border); }
.timeline-step { position: relative; margin-bottom: var(--space-4); padding-left: 16px; }
.timeline-step::before {
  content: ''; position: absolute; left: -26px; top: 6px; width: 12px; height: 12px;
  border-radius: 50%; background: var(--gold); border: 3px solid var(--bg-soft); box-shadow: 0 0 0 2px var(--gold);
}
.step-label { font-family: var(--font-display); font-weight: 700; color: var(--navy); font-size: 0.85rem; letter-spacing: 0.06em; display: block; margin-bottom: 8px; }
.step-card { background: #fff; border-radius: var(--radius-sm); padding: var(--space-3); box-shadow: var(--shadow-card); }
.step-card h3 { font-size: 1.1rem; margin-bottom: 6px; }
.step-card p { color: var(--text-muted); font-size: 0.92rem; margin: 0; }

/* ============ CASE STUDIES ============ */
.cs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--space-3); margin-bottom: var(--space-6); }
.cs-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-card); background: #fff; transition: transform 250ms var(--ease-out); }
.cs-card:hover { transform: translateY(-6px); }
.cs-card img { height: 220px; object-fit: cover; }
.cs-card--logo img { object-fit: contain; padding: 32px; background: var(--bg-soft); }
.cs-body { padding: var(--space-3); }
.cs-body h3 { font-size: 1.15rem; margin-bottom: 8px; }
.cs-body p { color: var(--text-muted); font-size: 0.92rem; }

.testimonials { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--space-3); }
.testimonials blockquote { margin: 0; background: var(--bg-soft); border-radius: var(--radius); padding: var(--space-3); border-left: 4px solid var(--gold); }
.testimonials p { font-style: italic; color: var(--navy-deep); line-height: 1.6; margin-bottom: var(--space-2); }
.testimonials cite { font-style: normal; font-weight: 600; font-size: 0.85rem; color: var(--text-muted); }

/* ============ CONTACT ============ */
.contact { position: relative; padding: var(--space-7) 0; overflow: hidden; }
.contact-map {
  position: absolute; inset: 0;
  background:
    linear-gradient(rgba(244,246,250,0.9), rgba(244,246,250,0.9)),
    repeating-linear-gradient(0deg, #dfe6ee 0 1px, transparent 1px 64px),
    repeating-linear-gradient(90deg, #dfe6ee 0 1px, transparent 1px 64px),
    #eef1f6;
}
.contact-inner {
  position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 0 var(--space-3);
  display: grid; grid-template-columns: 1.5fr 1fr; gap: var(--space-3);
}
.contact-form-card, .contact-office-card { background: #fff; border-radius: var(--radius); padding: var(--space-4); box-shadow: var(--shadow-lift); }
.contact-form-card h2 { margin-bottom: var(--space-3); font-size: 1.7rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2); }
.field { margin-bottom: var(--space-2); display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 0.85rem; font-weight: 600; color: var(--navy-deep); }
.field input, .field select, .field textarea {
  border: 1px solid var(--border); border-radius: 8px; padding: 10px 12px; font-family: inherit; font-size: 0.95rem;
  transition: border-color 200ms;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--navy); }
.field-full { grid-column: 1 / -1; }

.contact-office-card h3 { margin-bottom: var(--space-2); }
.office-name { font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.office-address { display: flex; align-items: center; gap: 6px; color: var(--text-muted); margin-bottom: var(--space-2); }
.office-address svg { width: 16px; height: 16px; color: var(--gold); }
.office-hours { border-top: 1px dashed var(--border); border-bottom: 1px dashed var(--border); padding: var(--space-2) 0; margin: var(--space-2) 0; }
.office-hours h4, .contact-office-card h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text-muted); margin-bottom: 6px; }
.contact-office-card p { margin-bottom: 6px; font-size: 0.92rem; }
.contact-office-card a[href^="tel"], .contact-office-card a[href^="mailto"] { color: var(--navy); font-weight: 600; }
.social-row { display: flex; gap: 10px; margin-top: 6px; }
.social-row a { width: 36px; height: 36px; border-radius: 8px; background: var(--bg-soft); display: flex; align-items: center; justify-content: center; color: var(--navy); }
.social-row a:hover { background: var(--navy); color: #fff; }

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

/* ============ FOOTER ============ */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.8); }
.footer-inner { max-width: 1240px; margin: 0 auto; padding: var(--space-5) var(--space-3); display: flex; flex-wrap: wrap; gap: var(--space-4); justify-content: space-between; }
.footer-brand { max-width: 280px; }
.footer-brand strong { display: block; color: #fff; font-family: var(--font-display); font-size: 1.15rem; margin: 10px 0 6px; }
.footer-brand .brand-mark { color: var(--gold); }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a:hover { color: var(--gold); }
.footer-social a { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; }
.footer-social a:hover { background: var(--gold); color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding: var(--space-2) var(--space-3);
  max-width: 1240px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: var(--space-2); justify-content: space-between;
  font-size: 0.82rem;
}
.footer-legal { display: flex; gap: var(--space-2); }
.footer-legal a:hover { color: var(--gold); }

/* ============ SCROLL REVEAL ============ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.timeline-step.reverse { transition-delay: 80ms; }
