/* ═══════════════════════════════════════════════════════
   NOSTRUM PUBLIC AFFAIRS v2
   Aesthetic: Refined editorial — think Economist meets
   institutional finance. Playfair Display for gravitas,
   Outfit for precision. Deep navy + warm gold + white space.
   ═══════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0B1C35;
  --navy-2:     #132340;
  --navy-3:     #1D3461;
  --blue:       #2563EB;
  --gold:       #B8962A;
  --gold-light: #F0E4C0;
  --gold-pale:  #FAF5E8;
  --white:      #FFFFFF;
  --cream:      #F9F7F3;
  --stone:      #F1EDE5;
  --mist:       #E8E4DC;
  --ink:        #0B1C35;
  --ink-2:      #2D3F5C;
  --ink-3:      #5A6B85;
  --ink-4:      #8A9AB5;

  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body:    'Outfit', system-ui, sans-serif;

  --mw: 1200px;
  --pad: 0 2rem;
  --ease: cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container { max-width: var(--mw); margin: 0 auto; padding: var(--pad); }

/* ── TYPE HELPERS ─────────────────────────────────────── */
.kicker {
  font-family: var(--ff-body);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  gap: .7rem;
}
.kicker::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.kicker-light { color: rgba(255,255,255,.55); }
.kicker-light::before { background: rgba(255,255,255,.35); }

.sec-title {
  font-family: var(--ff-display);
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 400;
  line-height: 1.18;
  color: var(--navy);
  margin-bottom: 1.8rem;
}
.sec-title em { font-style: italic; color: var(--gold); }
.sec-title-light { color: var(--white); }
.sec-title-light em { color: var(--gold-light); }

/* ── REVEAL ANIMATION ─────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }

/* ── BUTTONS ──────────────────────────────────────────── */
.btn-solid {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .8rem 1.9rem;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--ff-body);
  font-size: .78rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  border: none; cursor: pointer;
  transition: background .25s var(--ease), transform .2s;
}
.btn-solid:hover { background: #9f7e20; transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }

.btn-line {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .8rem 1.9rem;
  background: transparent;
  color: rgba(255,255,255,.8);
  font-size: .78rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.28);
  cursor: pointer;
  transition: all .25s var(--ease);
}
.btn-line:hover { border-color: rgba(255,255,255,.7); color: #fff; background: rgba(255,255,255,.06); }

/* ═══════════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════════ */
#nav {
  position: fixed; inset: 0 0 auto;
  z-index: 200;
  transition: background .4s var(--ease), box-shadow .4s var(--ease);
}
#nav.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--mist);
}
.nav-inner {
  max-width: var(--mw); margin: 0 auto; padding: var(--pad);
  height: 70px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img {
  height: 42px; width: auto;
  filter: brightness(0) invert(1);
  transition: filter .35s;
}
#nav.scrolled .nav-logo img { filter: brightness(1.2); }

.nav-links {
  display: flex; align-items: center; gap: 2rem;
}
.nav-links a {
  font-size: .78rem; font-weight: 500;
  letter-spacing: .07em; text-transform: uppercase;
  color: rgba(255,255,255,.78);
  transition: color .25s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
#nav.scrolled .nav-links a { color: var(--ink-2); }
#nav.scrolled .nav-links a:hover { color: var(--navy); }

.lang-toggle {
  font-family: var(--ff-body);
  font-size: .72rem; font-weight: 600;
  letter-spacing: .12em;
  color: rgba(255,255,255,.5);
  background: none; border: 1px solid rgba(255,255,255,.22);
  padding: .25rem .65rem; cursor: pointer;
  transition: all .25s;
}
.lang-toggle:hover { color: var(--gold); border-color: var(--gold); }
#nav.scrolled .lang-toggle { color: var(--ink-3); border-color: var(--mist); }
#nav.scrolled .lang-toggle:hover { color: var(--gold); border-color: var(--gold); }

.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-burger span { display: block; width: 22px; height: 1.5px; background: white; transition: background .3s; }
#nav.scrolled .nav-burger span { background: var(--navy); }

.mobile-nav {
  display: none; flex-direction: column;
  position: fixed; top: 70px; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--mist);
  z-index: 199;
  padding: 1rem 2rem 1.5rem;
  box-shadow: 0 12px 32px rgba(11,28,53,.12);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: .85rem 0;
  font-size: .88rem; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--ink-2);
  border-bottom: 1px solid var(--stone);
}
.mobile-nav a:last-child { border: none; }

/* ═══════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-canvas {
  position: absolute; inset: 0; overflow: hidden;
}

/* Geometric lines — the "circle" from the logo abstracted */
.hero-line {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(184,150,42,.12);
}
.l1 { width: 700px; height: 700px; top: -180px; right: -140px; }
.l2 { width: 500px; height: 500px; top: -80px;  right: -40px; border-color: rgba(184,150,42,.07); }
.l3 { width: 900px; height: 900px; top: -280px; right: -240px; border-color: rgba(184,150,42,.05); }

.hero-glow {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none;
}
.g1 { width: 600px; height: 600px; top: -150px; right: -100px; background: radial-gradient(circle, rgba(37,99,235,.18) 0%, transparent 70%); }
.g2 { width: 400px; height: 400px; bottom: 0; left: -80px; background: radial-gradient(circle, rgba(184,150,42,.1) 0%, transparent 70%); }

.hero-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");
  opacity: .5; mix-blend-mode: overlay;
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: var(--mw); margin: 0 auto;
  padding: 9rem 2rem 5rem;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .75rem;
  font-size: .7rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}
.eyebrow-bar { display: block; width: 28px; height: 1px; background: var(--gold); }
.eyebrow-sep { color: rgba(255,255,255,.25); }

.hero-h1 {
  display: block;
  margin-bottom: 1.8rem;
}
.h1-line {
  display: block;
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--white);
  letter-spacing: -.01em;
}
.h1-em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-deck {
  font-size: 1.05rem; font-weight: 300;
  color: rgba(255,255,255,.62);
  max-width: 580px; line-height: 1.8;
  margin-bottom: 2.75rem;
}

.hero-stats {
  display: flex; align-items: center; gap: 2.5rem;
  margin-bottom: 2.75rem; flex-wrap: wrap;
}
.hstat-n {
  font-family: var(--ff-display);
  font-size: 1.85rem; font-weight: 500;
  color: var(--white); line-height: 1;
  margin-bottom: .35rem;
}
.hstat-l {
  font-size: .72rem; font-weight: 400;
  color: rgba(255,255,255,.45);
  line-height: 1.45; letter-spacing: .02em;
}
.hstat-rule { width: 1px; height: 44px; background: rgba(255,255,255,.12); }

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  font-size: .62rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.25);
}
.scroll-track {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,.3), transparent);
  animation: pulse 2.2s ease infinite;
}
@keyframes pulse { 0%,100%{opacity:.25} 50%{opacity:1} }

/* ═══════════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════════ */
#about {
  padding: 7rem 0;
  background: var(--cream);
}
.about-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start;
}
.about-body {
  font-size: .98rem; font-weight: 300;
  color: var(--ink-2); line-height: 1.85;
  margin-bottom: 1.2rem;
}
.eu-badge {
  display: inline-flex; align-items: center; gap: .7rem;
  margin-top: .5rem;
  font-size: .75rem; font-weight: 500; letter-spacing: .04em;
  color: var(--ink-3);
  background: var(--white);
  padding: .65rem 1.1rem;
  border-left: 3px solid var(--gold);
  box-shadow: 0 1px 4px rgba(11,28,53,.06);
}
.eu-badge-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }

.pillar-list { display: flex; flex-direction: column; }
.pillar {
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--mist);
}
.pillar:last-child { border-bottom: none; }
.pillar-head { display: flex; align-items: center; gap: 1rem; margin-bottom: .6rem; }
.pnum { font-family: var(--ff-display); font-size: 1rem; color: var(--gold); font-weight: 500; flex-shrink: 0; }
.pillar-head h3 { font-size: .9rem; font-weight: 600; color: var(--navy); letter-spacing: .02em; }
.pillar p { font-size: .88rem; font-weight: 300; color: var(--ink-2); line-height: 1.75; padding-left: 2.2rem; }

/* ═══════════════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════════════ */
.services-sec { padding: 7rem 0; background: var(--white); }

.svc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; margin-top: 3.5rem; }

.svc-card {
  background: var(--cream);
  padding: 3rem 2.5rem;
  border-top: 3px solid var(--navy);
  transition: border-color .3s;
}
.svc-card:hover { border-color: var(--gold); }
.svc-num {
  font-family: var(--ff-display); font-size: 3.5rem; font-weight: 300;
  color: var(--mist); line-height: 1; margin-bottom: .9rem;
}
.svc-card h3 {
  font-family: var(--ff-display); font-size: 1.55rem; font-weight: 400;
  color: var(--navy); margin-bottom: 1.1rem; line-height: 1.25;
}
.svc-card > p {
  font-size: .9rem; font-weight: 300; color: var(--ink-2);
  line-height: 1.8; margin-bottom: 1.75rem;
}
.svc-items { list-style: none; display: flex; flex-direction: column; gap: .45rem; }
.svc-items li {
  font-size: .82rem; color: var(--ink-2);
  padding-left: 1.1rem; position: relative;
  font-weight: 300;
}
.svc-items li::before {
  content: '›'; position: absolute; left: 0;
  color: var(--gold); font-size: 1rem; top: -.05rem;
}

/* ═══════════════════════════════════════════════════════
   WORK
   ═══════════════════════════════════════════════════════ */
.work-sec { padding: 7rem 0; background: var(--stone); }

/* Featured case */
.case-featured {
  display: flex; margin: 3.5rem 0 2rem;
  background: var(--navy);
  overflow: hidden;
}
.case-stripe { width: 4px; background: var(--gold); flex-shrink: 0; }
.case-body { padding: 3rem 3rem 3rem 2.75rem; flex: 1; }
.case-meta { margin-bottom: 1.75rem; }
.case-tag {
  font-size: .68rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold);
}
.case-inner { display: grid; grid-template-columns: 1.35fr 1fr; gap: 3.5rem; align-items: start; }

.case-left h3 {
  font-family: var(--ff-display); font-size: 1.8rem; font-weight: 400;
  color: var(--white); margin-bottom: 1.5rem; line-height: 1.25;
}
.case-problem {
  font-size: .92rem; font-weight: 300;
  color: rgba(255,255,255,.75); line-height: 1.85; margin-bottom: 1.1rem;
}
.case-what {
  font-size: .92rem; font-weight: 300;
  color: rgba(255,255,255,.65); line-height: 1.85; margin-bottom: 1.1rem;
}
.case-now {
  font-size: .92rem; font-weight: 400;
  color: rgba(255,255,255,.85); line-height: 1.85; margin-bottom: 1.75rem;
  font-style: italic;
}
.case-partners { display: flex; flex-direction: column; gap: .6rem; }
.cp-label { font-size: .68rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.35); }
.cp-tags { display: flex; flex-wrap: wrap; gap: .4rem; }
.cp-tags span {
  font-size: .72rem; font-weight: 400;
  color: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.15);
  padding: .28rem .7rem; border-radius: 20px;
}

.case-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.cs {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  padding: 1.25rem 1.1rem;
}
.cs-n {
  display: block; font-family: var(--ff-display);
  font-size: 1.55rem; font-weight: 500;
  color: var(--gold-light); margin-bottom: .3rem; line-height: 1;
}
.cs-l { display: block; font-size: .72rem; font-weight: 300; color: rgba(255,255,255,.45); line-height: 1.4; }

/* Secondary cases */
.case-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 3px; }
.case-card {
  background: var(--white); padding: 2.25rem;
  border-top: 2px solid var(--mist);
  transition: border-color .3s, background .3s;
}
.case-card:hover { border-color: var(--gold); background: var(--cream); }
.cc-tag { font-size: .67rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; color: var(--gold); margin-bottom: .85rem; }
.case-card h4 { font-family: var(--ff-display); font-size: 1.2rem; font-weight: 400; color: var(--navy); margin-bottom: .85rem; line-height: 1.3; }
.case-card p { font-size: .86rem; font-weight: 300; color: var(--ink-2); line-height: 1.75; }

/* ═══════════════════════════════════════════════════════
   THE STANDARD
   ═══════════════════════════════════════════════════════ */
.standard-sec {
  padding: 7rem 0;
  background: var(--navy-2);
}
.standard-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.std-body { font-size: .95rem; font-weight: 300; color: rgba(255,255,255,.62); line-height: 1.85; margin-bottom: 1.15rem; }
.std-body-em { color: rgba(255,255,255,.88); font-weight: 400; font-style: italic; border-left: 2px solid var(--gold); padding-left: 1rem; margin-top: .5rem; }

.std-blocks { display: flex; flex-direction: column; gap: 2px; margin-bottom: 2px; }
.std-block {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  padding: 1.5rem;
  transition: background .3s;
}
.std-block:hover { background: rgba(255,255,255,.07); }
.std-block-n { font-size: .7rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-bottom: .6rem; }
.std-block p { font-size: .86rem; font-weight: 300; color: rgba(255,255,255,.58); line-height: 1.7; }

.std-coalition { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); padding: 1.5rem; margin-top: 2px; }
.std-col-label { font-size: .67rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: .75rem; }
.std-col-tags { display: flex; flex-wrap: wrap; gap: .4rem; }
.std-col-tags span { font-size: .72rem; color: rgba(255,255,255,.5); border: 1px solid rgba(255,255,255,.14); padding: .28rem .75rem; border-radius: 20px; }

/* ═══════════════════════════════════════════════════════
   METHOD
   ═══════════════════════════════════════════════════════ */
.method-sec { padding: 7rem 0; background: var(--cream); }

.method-steps {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 1.5rem; align-items: start; margin-top: 3.5rem;
}
.mstep-arrow { color: var(--gold); font-size: 1.2rem; padding-top: 2.2rem; opacity: .5; }
.mstep-n { font-family: var(--ff-display); font-size: 2.2rem; font-weight: 300; color: var(--mist); margin-bottom: .5rem; }
.mstep h4 { font-size: .82rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--navy); margin-bottom: .7rem; }
.mstep p { font-size: .84rem; font-weight: 300; color: var(--ink-2); line-height: 1.75; }

/* ═══════════════════════════════════════════════════════
   TEAM
   ═══════════════════════════════════════════════════════ */
.team-sec { padding: 7rem 0; background: var(--white); }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; margin-top: 3.5rem; }

.tcard { background: var(--cream); padding: 2.5rem; border-top: 3px solid var(--navy); }
.tcard-open { border-top-color: var(--mist); background: var(--stone); }

.tcard-top { display: flex; gap: 1.1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.tcard-av {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--navy); color: var(--white);
  font-family: var(--ff-display); font-size: 1rem; font-weight: 500;
  display: flex; align-items: center; justify-content: center;
  letter-spacing: .04em;
}
.tcard-av-open { background: var(--mist); color: var(--ink-3); font-size: 1.4rem; font-weight: 300; }
.tcard-id h3 { font-family: var(--ff-display); font-size: 1.25rem; font-weight: 500; color: var(--navy); margin-bottom: .2rem; }
.tcard-role { display: block; font-size: .75rem; font-weight: 600; color: var(--gold); letter-spacing: .04em; margin-bottom: .2rem; }
.tcard-focus { display: block; font-size: .72rem; font-weight: 300; color: var(--ink-3); }

.tcard-quote {
  font-family: var(--ff-display); font-style: italic;
  font-size: 1rem; color: var(--navy);
  border-left: 2px solid var(--gold); padding-left: 1rem;
  margin-bottom: 1.25rem; line-height: 1.5;
}

.tcard-bio { font-size: .86rem; font-weight: 300; color: var(--ink-2); line-height: 1.8; margin-bottom: .85rem; }

.tcard-tags { display: flex; flex-wrap: wrap; gap: .35rem; margin: 1.1rem 0; }
.tcard-tags span { font-size: .7rem; font-weight: 400; background: var(--white); color: var(--ink-2); padding: .28rem .65rem; border-radius: 20px; }

.tcard-li {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .76rem; font-weight: 500; color: var(--navy-3);
  transition: color .25s;
}
.tcard-li:hover { color: var(--gold); }

.tcard-cta {
  display: inline-flex; align-items: center; gap: .5rem; margin-top: 1rem;
  font-size: .8rem; font-weight: 500; color: var(--ink-3);
  border-bottom: 1px solid var(--mist); padding-bottom: .2rem;
  transition: color .25s, border-color .25s;
}
.tcard-cta:hover { color: var(--gold); border-color: var(--gold); }

/* ═══════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════ */
.contact-sec { padding: 7rem 0; background: var(--cream); }
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }

.contact-left > p { font-size: .95rem; font-weight: 300; color: var(--ink-2); line-height: 1.85; margin-bottom: 2.5rem; }

.offices { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 1.75rem; }
.off-city { font-family: var(--ff-display); font-size: 1.1rem; font-weight: 500; color: var(--navy); margin-bottom: .2rem; }
.off-note { font-size: .8rem; font-weight: 300; color: var(--ink-3); }

.contact-mail { font-size: .88rem; font-weight: 500; color: var(--navy-3); transition: color .25s; }
.contact-mail:hover { color: var(--gold); }

.contact-right {}
.fg { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.1rem; }
.fg label { font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); }
.fg input, .fg textarea {
  background: var(--white); border: 1px solid var(--mist);
  padding: .85rem 1rem;
  font-family: var(--ff-body); font-size: .9rem; font-weight: 300;
  color: var(--ink); outline: none; resize: vertical;
  transition: border-color .25s;
}
.fg input:focus, .fg textarea:focus { border-color: var(--navy-3); }
.form-msg { font-size: .82rem; color: var(--gold); min-height: 1.2rem; text-align: center; margin-top: .5rem; }

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
footer { background: var(--navy); padding: 2.75rem 2rem; }
.footer-wrap {
  max-width: var(--mw); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.footer-logo img { height: 34px; filter: brightness(0) invert(1); opacity: .7; }
.footer-nav { display: flex; gap: 1.75rem; flex-wrap: wrap; }
.footer-nav a { font-size: .74rem; font-weight: 500; letter-spacing: .07em; text-transform: uppercase; color: rgba(255,255,255,.35); transition: color .25s; }
.footer-nav a:hover { color: var(--gold); }
.footer-copy { display: flex; flex-direction: column; gap: .3rem; text-align: right; font-size: .72rem; color: rgba(255,255,255,.25); }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .method-steps { grid-template-columns: 1fr 1fr; }
  .mstep-arrow { display: none; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}

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

  #about .about-wrap,
  .svc-grid,
  .standard-wrap,
  .contact-wrap { grid-template-columns: 1fr; gap: 2.5rem; }

  .case-inner { grid-template-columns: 1fr; }
  .case-stats { grid-template-columns: 1fr 1fr; }
  .case-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .method-steps { grid-template-columns: 1fr; }

  .hero-stats { gap: 1.5rem; }
  .hstat-rule { display: none; }
  .hero-actions { flex-direction: column; }
  .btn-solid, .btn-line { text-align: center; justify-content: center; }

  .case-featured { flex-direction: column; }
  .case-stripe { width: 100%; height: 4px; }

  .footer-wrap { flex-direction: column; align-items: flex-start; }
  .footer-copy { text-align: left; }
}

@media (max-width: 480px) {
  .case-stats { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}
