/* ─── TOKENS — palette ─── */
:root {
  /* Neutrals */
  --ink:       #15161F;
  --cream:     #F0EDE8;
  --warm-mid:  #D8D3CB;
  --muted:     #6B6862;
  --white:     #ffffff;

  /* Brand colors */
  --accent:    #5C7AD6;
  --accent-dk: #C43420;
  --lavender:  #C4C6D8;
  --teal:      #2D4F44;
  --hero-bg:   #15161F;

  --font: 'Manrope', system-ui, sans-serif;
  --max-w: 1280px;
  --gutter: clamp(1.5rem, 5vw, 5rem);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 6px;
  --fw-heading: 800;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font);
  font-size: clamp(1rem, 1.05vw, 1.1rem);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.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;
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(1.6rem);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.9rem 2rem;
  background: var(--white); color: var(--ink);
  font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700;
  border-radius: var(--radius);
  transition: background 0.22s, color 0.22s;
}
.nav .btn-primary { color: var(--ink); }
.btn-primary:hover { background: var(--teal); color: var(--white); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.9rem 2rem;
  border: 1.5px solid rgba(255,255,255,0.4); color: var(--white);
  font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700;
  border-radius: var(--radius);
  transition: border-color 0.22s, background 0.22s;
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

.btn-dark {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.85rem 1.8rem;
  background: var(--teal); color: var(--white);
  font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700;
  border-radius: var(--radius);
  transition: background 0.22s;
  margin-top: auto;
}
.btn-dark:hover { background: var(--ink); }

.btn-white {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.9rem 2.2rem;
  background: var(--white); color: var(--teal);
  font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700;
  border-radius: var(--radius);
  transition: background 0.22s, color 0.22s;
}
.btn-white:hover { background: var(--ink); color: var(--white); }

/* ─── NAV ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem var(--gutter);
  transition: background 0.4s, backdrop-filter 0.4s;
}
.nav.scrolled {
  background: rgba(240, 237, 232, 0.93);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--warm-mid);
}
.nav-logo {
  display: flex; align-items: center;
}
.nav-logo img { height: 28px; width: auto; display: block; }
.nav-logo .logo-light { display: none; }
.nav.scrolled .nav-logo .logo-dark { display: none; }
.nav.scrolled .nav-logo .logo-light { display: block; }

.nav-links { display: flex; gap: clamp(1.5rem, 2.5vw, 2.8rem); align-items: center; }
.nav-links a {
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700;
  color: rgba(255,255,255,0.7); transition: color 0.2s;
}
.nav.scrolled .nav-links a { color: var(--muted); }
.nav-links a:hover { color: var(--white) !important; }
.nav.scrolled .nav-links a:hover { color: var(--accent) !important; }

.nav-cta {
  padding: 0.5rem 1.3rem;
  border: 1.5px solid rgba(255,255,255,0.45); color: var(--white);
  font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700;
  border-radius: var(--radius);
  transition: background 0.22s, color 0.22s, border-color 0.22s;
}
.nav-cta:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
.nav.scrolled .nav-cta { border-color: var(--ink); color: var(--ink); }
.nav.scrolled .nav-cta:hover { background: var(--ink); color: var(--cream); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; padding: 4px; cursor: pointer;
}
.nav-toggle span {
  display: block; width: 24px; height: 1.5px;
  background: var(--white); transition: transform 0.3s, opacity 0.3s;
}
.nav.scrolled .nav-toggle span { background: var(--ink); }
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  display: none; position: fixed; inset: 0; z-index: 99;
  background: var(--ink);
  flex-direction: column; justify-content: center; align-items: center;
  gap: 2.5rem; text-align: center;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: clamp(2rem, 8vw, 3rem); font-weight: 800;
  letter-spacing: -0.04em; color: var(--cream); transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--accent); }
.nav-mobile .nav-mobile-cta {
  font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 700; color: var(--accent); margin-top: 0.5rem;
}

/* ─── LANG TOGGLE ─── */
.lang-toggle {
  display: flex; align-items: center; gap: 0.25rem;
  background: none; border: none; cursor: pointer; padding: 0.2rem 0;
  font-family: var(--font);
}
.lang-opt {
  font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 700; color: rgba(255,255,255,0.35);
  transition: color 0.2s; padding: 0.15rem 0.1rem; line-height: 1;
}
.lang-opt:hover { color: rgba(255,255,255,0.7); }
.lang-opt.active { color: var(--white); }
.lang-sep { font-size: 0.6rem; color: rgba(255,255,255,0.18); line-height: 1; }
.nav.scrolled .lang-opt { color: var(--muted); }
.nav.scrolled .lang-opt:hover { color: var(--ink); }
.nav.scrolled .lang-opt.active { color: var(--ink); }
.nav.scrolled .lang-sep { color: var(--warm-mid); }

.lang-toggle-mobile {
  margin-top: 1.5rem;
}
.lang-toggle-mobile .lang-opt {
  font-size: 1rem; color: rgba(240,237,232,0.35);
}
.lang-toggle-mobile .lang-opt:hover { color: rgba(240,237,232,0.7); }
.lang-toggle-mobile .lang-opt.active { color: var(--cream); }
.lang-toggle-mobile .lang-sep { font-size: 0.85rem; color: rgba(240,237,232,0.18); }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: clamp(4rem, 10vh, 7rem);
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0;
  background: var(--hero-bg); z-index: 0;
  overflow: hidden;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: rgba(21,22,31,0.85);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 6rem;
  width: 100%;
}
.hero-content {
  max-width: 52%;
}
.hero-eyebrow {
  display: block;
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin-bottom: 1.8rem; font-weight: 600;
}
.hero-title {
  font-size: clamp(3.5rem, 6.5vw, 7.5rem);
  font-weight: var(--fw-heading);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 2rem;
}
.hero-title .line { display: block; white-space: nowrap; }
.hero-title .line.hl { color: var(--accent); }

.hero-subtitle {
  max-width: 52ch;
  color: rgba(255,255,255,0.6);
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
  font-weight: 400; line-height: 1.75; margin-bottom: 2.8rem;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center;
}

@media (max-width: 768px) {
  .hero-inner { padding-top: 7rem; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-title .line { white-space: normal; }
  .hero-subtitle { margin-inline: auto; }
  .hero-actions { justify-content: center; }
}

.hero-scroll {
  position: absolute; bottom: 2.2rem; right: var(--gutter);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.28); font-size: 0.62rem; letter-spacing: 0.14em;
  text-transform: uppercase; z-index: 2;
}
.hero-scroll-line {
  width: 1px; height: 48px;
  background: rgba(255,255,255,0.12); position: relative; overflow: hidden;
}
.hero-scroll-line::after {
  content: ''; position: absolute; top: -100%; left: 0;
  width: 100%; height: 100%; background: rgba(255,255,255,0.45);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine { 0% { top: -100%; } 100% { top: 100%; } }

/* ─── SECTION SHARED ─── */
.section-label {
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 1rem; font-weight: 700;
}
.section-title {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: var(--fw-heading);
  line-height: 1.02; letter-spacing: -0.04em; color: var(--ink);
}
.section-title .hl {
  color: var(--accent);
  font-weight: var(--fw-heading);
}

/* ─── ABOUT ─── */
.intro { padding: clamp(5rem, 12vh, 10rem) 0; border-bottom: 1px solid var(--warm-mid); }
.intro-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 8rem); align-items: start;
}
.intro-label {
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 1.2rem; font-weight: 700;
}
.intro-heading {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: var(--fw-heading); line-height: 1.02; letter-spacing: -0.04em;
}
.intro-heading .hl { color: var(--accent); font-weight: var(--fw-heading); }
.intro-right { padding-top: clamp(1rem, 3vw, 3rem); }
.intro-body {
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  line-height: 1.8; color: #3a3733; margin-bottom: 1.8rem;
}
.stat-row {
  display: flex; gap: 3rem; margin-top: 3rem;
  padding-top: 2.5rem; border-top: 1px solid var(--warm-mid);
}
.stat-item { flex: 1; }
.stat-num {
  font-size: clamp(2.2rem, 3.5vw, 3.4rem); font-weight: var(--fw-heading);
  line-height: 1; color: var(--accent); letter-spacing: -0.04em;
}
.stat-label {
  font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); margin-top: 0.4rem; font-weight: 600;
}

@media (max-width: 768px) {
  .intro-grid { grid-template-columns: 1fr; }
  .stat-row { gap: 2rem; }
}

/* ─── SERVICES ─── */
.services { padding: clamp(5rem, 12vh, 10rem) 0; border-bottom: 1px solid var(--warm-mid); }
.section-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: clamp(3rem, 6vw, 5rem); gap: 2rem; flex-wrap: wrap;
}
.section-note { max-width: 36ch; color: var(--muted); font-size: 0.88rem; text-align: right; line-height: 1.65; }

.service-pillars {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2px; background: var(--warm-mid); border: 1px solid var(--warm-mid);
}
.service-pillar {
  background: var(--cream); padding: clamp(2rem, 4vw, 3.5rem); transition: background 0.3s;
}
.service-pillar:hover { background: var(--teal); }
.service-pillar:hover .pillar-num { color: rgba(255,255,255,0.2) !important; }
.service-pillar:hover .pillar-title,
.service-pillar:hover .pillar-body { color: var(--white) !important; }
.service-pillar:hover .pillar-list li { color: rgba(255,255,255,0.65) !important; }

.pillar-num {
  font-size: 2rem; font-weight: var(--fw-heading); color: var(--warm-mid);
  line-height: 1; margin-bottom: 1.5rem; letter-spacing: -0.04em; transition: color 0.3s;
}
.pillar-title {
  font-size: clamp(1.4rem, 2.2vw, 1.9rem); font-weight: 700;
  margin-bottom: 1rem; line-height: 1.15; letter-spacing: -0.03em; transition: color 0.3s;
}
.pillar-body {
  font-size: 0.9rem; line-height: 1.72; color: var(--muted);
  margin-bottom: 1.8rem; transition: color 0.3s;
}
.pillar-list { display: flex; flex-direction: column; gap: 0.45rem; }
.pillar-list li {
  font-size: 0.75rem; letter-spacing: 0.06em; text-transform: uppercase;
  font-weight: 700; color: var(--muted);
  display: flex; align-items: center; gap: 0.6rem; transition: color 0.3s;
}
.pillar-list li::before {
  content: ''; display: inline-block; width: 14px; height: 1.5px;
  background: var(--accent); flex-shrink: 0;
}

@media (max-width: 640px) {
  .service-pillars { grid-template-columns: 1fr; }
  .section-note { text-align: left; }
}

/* ─── PACKAGES ─── */
.packages { padding: clamp(5rem, 12vh, 10rem) 0; border-bottom: 1px solid var(--warm-mid); }
.packages-intro { max-width: 58ch; margin-bottom: clamp(3rem, 6vw, 5rem); }
.packages-intro p {
  color: var(--muted); font-size: clamp(0.95rem, 1.1vw, 1.05rem); line-height: 1.8; margin-top: 1.2rem;
}
.pkg-tabs { display: flex; border-bottom: 1.5px solid var(--warm-mid); margin-bottom: 3rem; }
.pkg-tab {
  padding: 1rem 2.2rem 1rem 0;
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700;
  color: var(--muted); cursor: pointer;
  border-bottom: 2.5px solid transparent; margin-bottom: -1.5px;
  transition: color 0.2s, border-color 0.2s;
  background: none; border-top: none; border-left: none; border-right: none;
}
.pkg-tab.active { color: var(--ink); border-bottom-color: var(--accent); }
.pkg-panel { display: none; }
.pkg-panel.active { display: block; }
.pkg-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5px; background: var(--warm-mid); border: 1px solid var(--warm-mid);
}
.pkg-card {
  background: var(--cream); padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex; flex-direction: column;
}
.pkg-card.featured { background: var(--teal); color: var(--white); }
.pkg-card.featured .pkg-price { color: var(--white); }
.pkg-card.featured .pkg-name { color: var(--white); }
.pkg-card.featured .pkg-desc { color: rgba(255,255,255,0.65); }
.pkg-card.featured .pkg-feature { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.15); }
.pkg-card.featured .pkg-feature::before { background: var(--accent); }
.pkg-card.featured .pkg-badge { background: var(--accent); color: var(--white); }
.pkg-card.featured .btn-dark { background: var(--white); color: var(--teal); }
.pkg-card.featured .btn-dark:hover { background: var(--accent); color: var(--white); }

.pkg-badge {
  display: inline-block;
  font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.22rem 0.75rem; background: var(--warm-mid); color: var(--muted);
  margin-bottom: 1.5rem; font-weight: 700; align-self: flex-start; border-radius: 100px;
}
.pkg-name {
  font-size: clamp(1.2rem, 1.8vw, 1.6rem); font-weight: 700;
  line-height: 1.15; margin-bottom: 0.5rem; letter-spacing: -0.03em;
}
.pkg-price {
  font-size: clamp(2rem, 3vw, 2.8rem); font-weight: var(--fw-heading);
  line-height: 1; color: var(--ink); margin-bottom: 0.3rem; letter-spacing: -0.04em;
}
.pkg-price-note { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.04em; margin-bottom: 1.5rem; }
.pkg-desc { font-size: 0.87rem; color: var(--muted); line-height: 1.68; margin-bottom: 1.5rem; flex: 1; }
.pkg-features { display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 2rem; }
.pkg-feature {
  font-size: 0.81rem; color: var(--ink);
  padding-bottom: 0.45rem; border-bottom: 1px solid var(--warm-mid);
  display: flex; align-items: center; gap: 0.6rem;
}
.pkg-feature::before {
  content: ''; display: inline-block; width: 12px; height: 1.5px;
  background: var(--accent); flex-shrink: 0;
}
.pkg-note { margin-top: 2rem; font-size: 0.82rem; color: var(--muted); text-align: center; }
.pkg-note a { font-weight: 700; color: var(--accent); border-bottom: 1px solid transparent; transition: border-color 0.2s; }
.pkg-note a:hover { border-color: var(--accent); }

@media (max-width: 900px) { .pkg-grid { grid-template-columns: 1fr; } }

/* ─── PULL QUOTE ─── */
.pullquote { padding: clamp(5rem, 12vh, 10rem) 0; border-bottom: 1px solid var(--warm-mid); }
.pullquote-inner {
  display: grid; grid-template-columns: 1fr 3fr;
  gap: clamp(2rem, 6vw, 6rem); align-items: start;
}
.pullquote-label {
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 2rem; font-weight: 700;
}
.pullquote-decoration { width: 1px; height: 80px; background: var(--warm-mid); margin-top: 0.5rem; }
.pullquote-text {
  font-size: clamp(1.8rem, 4vw, 3.6rem);
  font-weight: var(--fw-heading); line-height: 1.18; letter-spacing: -0.03em;
}
.pullquote-text .hl { color: var(--accent); font-weight: var(--fw-heading); }

@media (max-width: 768px) {
  .pullquote-inner { grid-template-columns: 1fr; }
  .pullquote-left { display: flex; align-items: center; gap: 1rem; }
  .pullquote-decoration { width: 40px; height: 1px; margin: 0; }
}

/* ─── PROCESS ─── */
.process { padding: clamp(5rem, 12vh, 10rem) 0; background: var(--ink); color: var(--cream); }
.process .section-label { color: rgba(240,237,232,0.35); }
.process .section-title { color: var(--cream); }
.process .section-title .hl {
  color: rgba(240,237,232,0.38);
  font-weight: var(--fw-heading);
}
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px; background: rgba(255,255,255,0.05); margin-top: clamp(3rem, 6vw, 5rem);
}
.process-step {
  background: var(--ink); padding: clamp(1.5rem, 3vw, 2.5rem);
  border-top: 3px solid rgba(255,255,255,0.07); transition: border-color 0.3s;
}
.process-step:hover { border-top-color: var(--accent); }
.step-num {
  font-size: 3rem; font-weight: var(--fw-heading);
  color: rgba(240,237,232,0.07); line-height: 1; margin-bottom: 1.5rem; letter-spacing: -0.05em;
}
.step-title {
  font-size: clamp(1.1rem, 1.6vw, 1.35rem); font-weight: 700;
  margin-bottom: 0.8rem; color: var(--cream); letter-spacing: -0.025em;
}
.step-body { font-size: 0.87rem; color: rgba(240,237,232,0.5); line-height: 1.72; }

@media (max-width: 900px) { .process-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .process-steps { grid-template-columns: 1fr; } }

/* ─── WHY US ─── */
.why { padding: clamp(5rem, 12vh, 10rem) 0; border-bottom: 1px solid var(--warm-mid); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 6vw, 6rem); align-items: start; }
.why-items { display: flex; flex-direction: column; }
.why-item {
  padding: 1.8rem 0; border-bottom: 1px solid var(--warm-mid);
  display: grid; grid-template-columns: 2rem 1fr; gap: 1.5rem; align-items: start;
}
.why-item-num { font-size: 0.9rem; color: var(--accent); padding-top: 0.15rem; font-weight: 800; }
.why-item-title {
  font-size: clamp(1rem, 1.4vw, 1.15rem); font-weight: 700;
  margin-bottom: 0.4rem; letter-spacing: -0.02em;
}
.why-item-body { font-size: 0.87rem; color: var(--muted); line-height: 1.7; }

@media (max-width: 768px) { .why-grid { grid-template-columns: 1fr; } }

/* ─── CTA STRIP ─── */
.cta-strip {
  padding: clamp(5rem, 10vh, 8rem) 0;
  background: var(--lavender); color: var(--ink); text-align: center;
}
.cta-strip-label {
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(17,17,16,0.45); margin-bottom: 1.5rem; font-weight: 700;
}
.cta-strip-heading {
  font-size: clamp(2.4rem, 6vw, 5.2rem); font-weight: var(--fw-heading);
  line-height: 1.02; margin-bottom: 2.8rem; letter-spacing: -0.04em;
}
.cta-strip-heading .hl { color: var(--teal); font-weight: var(--fw-heading); }
.cta-strip .btn-white { background: var(--teal); color: var(--white); }
.cta-strip .btn-white:hover { background: var(--ink); color: var(--white); }

/* ─── FOOTER ─── */
.footer { background: var(--ink); color: var(--cream); padding: clamp(3rem, 6vh, 5rem) 0 2rem; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 2rem;
}
.footer-logo { margin-bottom: 1rem; }
.footer-logo img { height: 28px; width: auto; display: block; }
.footer-tagline { font-size: 0.84rem; color: rgba(240,237,232,0.38); line-height: 1.65; max-width: 26ch; }
.footer-col-title {
  font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(240,237,232,0.28); margin-bottom: 1.2rem; font-weight: 700;
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { font-size: 0.87rem; color: rgba(240,237,232,0.52); transition: color 0.2s; }
.footer-links a:hover { color: var(--cream); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: 0.72rem; color: rgba(240,237,232,0.23); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.72rem; color: rgba(240,237,232,0.23); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(240,237,232,0.6); }

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ─── ACCESSIBILITY ─── */
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--accent); color: var(--white); padding: 0.5rem 1rem;
  font-size: 0.85rem; z-index: 9999; border-radius: var(--radius); transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
