/* =========================================================
   THE ACTIVATION TEAM — activate4impact.com
   Corporate design system. Brand palette derived from
   krystalore.com (teal #2BA8A8 / amber #FF8900) elevated
   to a defense-grade corporate look: teal-ink + gold + ivory.
   ========================================================= */

:root {
  /* Core palette */
  --ink:        #0B1A1B;
  --ink-2:      #11272A;
  --ink-3:      #18353A;
  --teal:       #14716E;
  --teal-bright:#2BA8A8;
  --teal-soft:  #A6F0EC;
  --gold:       #C9A24B;
  --gold-2:     #E2C178;
  --amber:      #FF8900;
  --ivory:      #FAF8F3;
  --paper:      #FFFFFF;
  --stone:      #ECE7DC;
  --stone-2:    #DAD3C4;
  --muted:      #5C6E6D;
  --muted-2:    #8A9897;
  --line:       rgba(11,26,27,.10);
  --line-light: rgba(255,255,255,.14);

  --shadow-sm: 0 2px 10px rgba(11,26,27,.06);
  --shadow:    0 16px 50px -18px rgba(11,26,27,.30);
  --shadow-lg: 0 40px 90px -30px rgba(11,26,27,.45);

  --maxw: 1180px;
  --radius: 16px;
  --radius-lg: 26px;

  --serif: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --ease: cubic-bezier(.2,.7,.2,1);

  /* Dark-teal glow for text sitting over the light-teal photo overlays */
  --teal-glow: 0 0 2px rgba(3,40,38,.65), 0 0 14px rgba(4,48,46,.7), 0 0 34px rgba(3,32,30,.55), 0 3px 22px rgba(3,26,25,.5);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.62;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4 { font-family: var(--serif); font-weight: 600; line-height: 1.07; margin: 0; letter-spacing: -.01em; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.eyebrow {
  font: 600 12.5px/1 var(--sans);
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--teal); display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ""; width: 26px; height: 1.5px; background: var(--gold); display: inline-block; }
.eyebrow.light { color: var(--gold-2); }
.eyebrow.center { justify-content: center; }

.section { padding: clamp(64px, 9vw, 128px) 0; position: relative; }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(30px, 4.4vw, 52px); margin: 18px 0 0; }
.section-head p { color: var(--muted); font-size: 18px; margin: 18px 0 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font: 600 15px/1 var(--sans); letter-spacing: .01em;
  padding: 16px 28px; border-radius: 100px; cursor: pointer;
  border: 1px solid transparent; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  color: #2A2008; box-shadow: 0 14px 30px -12px rgba(201,162,75,.65);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 22px 44px -14px rgba(201,162,75,.8); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { transform: translateY(-2px); background: var(--ink-2); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-light { background: rgba(255,255,255,.10); color: #fff; border-color: var(--line-light); backdrop-filter: blur(6px); }
.btn-light:hover { background: rgba(255,255,255,.2); transform: translateY(-2px); }
.btn-teal { background: linear-gradient(135deg, var(--teal-bright) 0%, var(--teal) 100%); color: #fff; box-shadow: 0 14px 30px -12px rgba(43,168,168,.6); }
.btn-teal:hover { transform: translateY(-2px); box-shadow: 0 22px 44px -14px rgba(43,168,168,.75); }
.btn-teal .swap { width: 18px; height: 18px; }
.btn-lg { padding: 19px 36px; font-size: 16px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 80;
  transition: background .35s var(--ease), box-shadow .35s, padding .35s;
  padding: 22px 0;
}
.site-header.scrolled {
  background: rgba(250,248,243,.86); backdrop-filter: saturate(150%) blur(14px);
  box-shadow: 0 1px 0 var(--line); padding: 14px 0;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 40px; height: 40px; border-radius: 11px; flex: none;
  background: linear-gradient(150deg, var(--teal-bright), var(--teal));
  display: grid; place-items: center; box-shadow: var(--shadow-sm);
}
.brand-mark svg { width: 22px; height: 22px; }
.brand-name { line-height: 1.05; }
.brand-name b { font-family: var(--serif); font-weight: 600; font-size: 18.5px; letter-spacing: -.01em; display: block; color: var(--ink); }
.brand-name span { font: 600 9.5px/1 var(--sans); letter-spacing: .26em; text-transform: uppercase; color: var(--teal); }
.site-header:not(.scrolled).on-dark .brand-name b { color: #fff; }
.site-header:not(.scrolled).on-dark .brand-name span { color: var(--gold-2); }
.site-header:not(.scrolled).on-dark .nav-links a { color: rgba(255,255,255,.82); }
.site-header:not(.scrolled).on-dark .nav-toggle span { background: #fff; }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font: 500 15px/1 var(--sans); color: var(--ink); opacity: .82; transition: opacity .2s; }
.nav-links a:hover { opacity: 1; }
.nav-actions { display: flex; align-items: center; gap: 14px; }

/* Activate <-> Amplify segmented toggle */
.seg-toggle { display: inline-flex; background: rgba(11,26,27,.06); border: 1px solid var(--line); border-radius: 100px; padding: 4px; }
.seg-toggle a { font: 600 13.5px/1 var(--sans); letter-spacing: .01em; padding: 9px 17px; border-radius: 100px; color: var(--muted); transition: color .2s, background .25s var(--ease); }
.seg-toggle a:hover { color: var(--ink); }
.seg-toggle a.active { background: var(--ink); color: #fff; box-shadow: var(--shadow-sm); }
.seg-toggle a.active .dot { background: var(--gold-2); }
.seg-toggle .dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--muted-2); margin-right: 7px; vertical-align: middle; }
.site-header.on-dark:not(.scrolled) .seg-toggle { background: rgba(255,255,255,.10); border-color: var(--line-light); backdrop-filter: blur(6px); }
.site-header.on-dark:not(.scrolled) .seg-toggle a { color: rgba(255,255,255,.78); }
.site-header.on-dark:not(.scrolled) .seg-toggle a:hover { color: #fff; }
.site-header.on-dark:not(.scrolled) .seg-toggle a.active { background: #fff; color: var(--ink); }
@media (max-width: 760px) { .seg-toggle a { padding: 8px 13px; font-size: 12.5px; } .seg-toggle .dot { display: none; } }
@media (max-width: 400px) { .seg-toggle a { padding: 7px 11px; } }
.nav-toggle { display: none; background: none; border: 0; width: 30px; height: 22px; position: relative; cursor: pointer; }
.nav-toggle span { position: absolute; left: 0; right: 0; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s var(--ease); }
.nav-toggle span:nth-child(1){ top: 0; } .nav-toggle span:nth-child(2){ top: 10px; } .nav-toggle span:nth-child(3){ top: 20px; }
body.menu-open .nav-toggle span:nth-child(1){ top:10px; transform: rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2){ opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3){ top:10px; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; color: #fff; padding: 150px 0 90px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; transform: scale(1.05); }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(13,75,72,.50) 0%, rgba(43,168,168,.14) 42%, rgba(13,75,72,.42) 100%),
    linear-gradient(100deg, rgba(11,52,50,.66) 0%, rgba(43,168,168,.18) 60%, rgba(166,240,236,0) 100%);
}
.hero .wrap { position: relative; z-index: 2; }
.hero-inner { max-width: 760px; }
.hero h1 { font-size: clamp(42px, 7vw, 84px); letter-spacing: -.02em; text-shadow: var(--teal-glow); }
.hero .eyebrow, .hero-sub, .hero-trust .label, .hero-trust .logos span { text-shadow: var(--teal-glow); }
.hero h1 .accent { color: var(--gold-2); font-style: italic; }
.hero-sub { font-size: clamp(17px, 2.1vw, 21px); color: rgba(255,255,255,.84); max-width: 600px; margin: 26px 0 38px; line-height: 1.55; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-trust { margin-top: 52px; padding-top: 30px; border-top: 1px solid var(--line-light); }
.hero-trust .label { font: 600 11px/1 var(--sans); letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-bottom: 16px; }
.hero-trust .logos { display: flex; flex-wrap: wrap; gap: 14px 30px; align-items: center; }
.hero-trust .logos span { font: 600 15px/1 var(--sans); color: rgba(255,255,255,.9); letter-spacing: .04em; display: inline-flex; align-items: center; gap: 9px; }
.hero-trust .logos span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.scroll-hint { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2; color: rgba(255,255,255,.6); font: 600 10.5px/1 var(--sans); letter-spacing: .22em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.scroll-hint i { width: 1px; height: 38px; background: linear-gradient(var(--gold), transparent); animation: drop 2s infinite; }
@keyframes drop { 0%{ transform: scaleY(0); transform-origin: top; } 50%{ transform: scaleY(1); transform-origin: top;} 51%{ transform-origin: bottom;} 100%{ transform: scaleY(0); transform-origin: bottom; } }

/* ---------- Stat bar ---------- */
.stat-bar { background: var(--ink); color: #fff; position: relative; z-index: 3; }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 44px 30px; border-right: 1px solid rgba(255,255,255,.08); text-align: center; }
.stat:last-child { border-right: 0; }
.stat .num { font-family: var(--serif); font-size: clamp(34px, 4.5vw, 52px); font-weight: 600; color: var(--gold-2); line-height: 1; }
.stat .lbl { font-size: 13.5px; color: rgba(255,255,255,.72); margin-top: 12px; letter-spacing: .02em; }

/* ---------- Capabilities ---------- */
.cap-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.cap {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
  position: relative; overflow: hidden;
}
.cap::before { content:""; position:absolute; left:0; top:0; bottom:0; width:3px; background: linear-gradient(var(--teal-bright), var(--teal)); transform: scaleY(0); transform-origin: top; transition: transform .35s var(--ease); }
.cap:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.cap:hover::before { transform: scaleY(1); }
.cap-ico { width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(150deg, rgba(43,168,168,.14), rgba(20,113,110,.12)); display: grid; place-items: center; color: var(--teal); margin-bottom: 20px; }
.cap-ico svg { width: 24px; height: 24px; }
.cap h3 { font-size: 21px; }
.cap p { color: var(--muted); font-size: 15px; margin: 10px 0 0; }

/* ---------- Process ---------- */
.process { background: linear-gradient(180deg, var(--ivory), #F2EEE4); }
.proc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.proc-step { background: var(--paper); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s; }
.proc-step:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.proc-img { aspect-ratio: 4/3; position: relative; overflow: hidden; }
.proc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.proc-step:hover .proc-img img { transform: scale(1.07); }
.proc-num { position: absolute; top: 14px; left: 14px; width: 40px; height: 40px; border-radius: 11px; background: rgba(11,26,27,.78); backdrop-filter: blur(6px); color: var(--gold-2); font-family: var(--serif); font-size: 20px; font-weight: 600; display: grid; place-items: center; }
.proc-body { padding: 24px 24px 28px; }
.proc-body h3 { font-size: 21px; }
.proc-body p { color: var(--muted); font-size: 14.5px; margin: 9px 0 0; }

/* ---------- Sectors / split ---------- */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.split.rev .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.media-badge {
  position: absolute; bottom: 26px; left: -26px; background: var(--ink); color: #fff;
  padding: 22px 26px; border-radius: var(--radius); box-shadow: var(--shadow);
  max-width: 250px;
}
.media-badge .big { font-family: var(--serif); font-size: 34px; color: var(--gold-2); line-height: 1; }
.media-badge .small { font-size: 13px; color: rgba(255,255,255,.78); margin-top: 8px; }
.sector-list { list-style: none; padding: 0; margin: 28px 0 34px; display: grid; gap: 2px; }
.sector-list li { display: flex; gap: 16px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid var(--line); }
.sector-list li:last-child { border-bottom: 0; }
.sector-list .s-ico { flex: none; width: 38px; height: 38px; border-radius: 10px; background: var(--ink); color: var(--gold-2); display: grid; place-items: center; }
.sector-list .s-ico svg { width: 19px; height: 19px; }
.sector-list b { font-size: 16.5px; display: block; }
.sector-list span { color: var(--muted); font-size: 14.5px; }

/* ---------- Featured engagements ---------- */
.engagements { background: var(--ink); color: #fff; }
.eng-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.eng {
  background: linear-gradient(160deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.10); border-radius: var(--radius);
  padding: 30px 28px; transition: transform .3s var(--ease), border-color .3s, background .3s;
}
.eng:hover { transform: translateY(-6px); border-color: var(--gold); background: linear-gradient(160deg, rgba(201,162,75,.12), rgba(255,255,255,.02)); }
.eng .tag { font: 600 11px/1 var(--sans); letter-spacing: .16em; text-transform: uppercase; color: var(--gold-2); }
.eng h3 { font-size: 22px; margin: 14px 0 0; color: #fff; }
.eng p { color: rgba(255,255,255,.72); font-size: 14.5px; margin: 12px 0 0; }
.eng .metric { margin-top: 18px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.1); font-size: 14px; color: var(--teal-soft); display: flex; align-items: center; gap: 9px; }
.eng .metric::before { content:""; width:6px; height:6px; border-radius:50%; background: var(--gold); }

/* ---------- Marquee / global reach ---------- */
.reach { background: var(--ink-2); color: #fff; padding: 30px 0; overflow: hidden; }
.marquee { display: flex; gap: 50px; white-space: nowrap; animation: scroll 38s linear infinite; width: max-content; }
.marquee span { font-family: var(--serif); font-size: 24px; color: rgba(255,255,255,.5); display: inline-flex; align-items: center; gap: 50px; }
.marquee span::after { content: "✦"; color: var(--gold); font-size: 13px; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- CTA band ---------- */
.cta-band { position: relative; color: #fff; overflow: hidden; }
.cta-band .bg { position: absolute; inset: 0; }
.cta-band .bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band .bg::after { content:""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(13,75,72,.80), rgba(43,168,168,.50)); }
.cta-band .wrap { position: relative; z-index: 2; text-align: center; padding: clamp(70px,10vw,130px) 24px; }
.cta-band h2 { font-size: clamp(32px, 5vw, 58px); max-width: 800px; margin: 18px auto 0; text-shadow: var(--teal-glow); }
.cta-band .eyebrow { text-shadow: var(--teal-glow); }
.cta-band p { color: rgba(255,255,255,.85); font-size: 19px; max-width: 560px; margin: 22px auto 36px; text-shadow: var(--teal-glow); }
.cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { background: #07110F; color: rgba(255,255,255,.66); padding: 80px 0 36px; font-size: 14.5px; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.foot-brand .brand-name b { color: #fff; } .foot-brand .brand-name span { color: var(--gold-2); }
.foot-brand p { margin: 20px 0 0; max-width: 300px; line-height: 1.6; }
.foot-col h4 { font: 600 12px/1 var(--sans); letter-spacing: .16em; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
.foot-col a, .foot-col p { display: block; color: rgba(255,255,255,.62); margin-bottom: 11px; transition: color .2s; }
.foot-col a:hover { color: var(--gold-2); }
.foot-bottom { margin-top: 56px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; font-size: 13px; color: rgba(255,255,255,.45); }
.foot-bottom .aka { color: rgba(255,255,255,.4); }

/* ---------- Modal / lead form ---------- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200; background: rgba(7,17,15,.62);
  backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center;
  padding: 24px; opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility .3s;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal {
  background: var(--ivory); border-radius: var(--radius-lg); width: 100%; max-width: 920px;
  max-height: 92vh; overflow: hidden; display: grid; grid-template-columns: .9fr 1.1fr;
  box-shadow: var(--shadow-lg); transform: translateY(20px) scale(.98); transition: transform .35s var(--ease);
}
.modal-overlay.open .modal { transform: none; }
.modal-aside { background: var(--ink); color: #fff; padding: 44px 38px; position: relative; overflow: hidden; }
.modal-aside::after { content:""; position:absolute; right:-60px; bottom:-60px; width: 220px; height: 220px; border-radius: 50%; background: radial-gradient(circle, rgba(43,168,168,.4), transparent 70%); }
.modal-aside .eyebrow { color: var(--gold-2); }
.modal-aside h3 { font-size: 30px; margin: 16px 0 0; position: relative; z-index: 1; }
.modal-aside p { color: rgba(255,255,255,.78); font-size: 15px; margin: 16px 0 0; }
.modal-aside .assure { margin-top: 28px; display: grid; gap: 14px; position: relative; z-index: 1; }
.modal-aside .assure div { display: flex; gap: 12px; align-items: center; font-size: 14px; color: rgba(255,255,255,.86); }
.modal-aside .assure svg { width: 18px; height: 18px; color: var(--gold-2); flex: none; }
.modal-form { padding: 40px 38px; overflow-y: auto; }
.modal-form .mhead { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 22px; }
.modal-form h4 { font-size: 24px; }
.modal-close { background: none; border: 0; cursor: pointer; color: var(--muted); width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; transition: background .2s; flex: none; }
.modal-close:hover { background: var(--stone); }
.field { margin-bottom: 16px; }
.field.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label { display: block; font: 600 12.5px/1 var(--sans); letter-spacing: .04em; color: var(--ink); margin-bottom: 8px; }
.field label .req { color: var(--amber); }
.field input, .field textarea {
  width: 100%; padding: 13px 15px; border: 1px solid var(--stone-2); border-radius: 11px;
  font: 400 15px/1.4 var(--sans); color: var(--ink); background: var(--paper); transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 92px; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--teal-bright); box-shadow: 0 0 0 3px rgba(43,168,168,.16); }
.modal-form .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form-note { font-size: 12.5px; color: var(--muted); margin-top: 14px; text-align: center; line-height: 1.5; }
.form-success { display: none; text-align: center; padding: 20px 0; }
.form-success.show { display: block; }
.form-success .check { width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, var(--teal-bright), var(--teal)); display: grid; place-items: center; margin: 0 auto 18px; color: #fff; }
.form-success h4 { margin-bottom: 10px; }
.form-success p { color: var(--muted); font-size: 15px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .stat-grid, .cap-grid, .proc-grid { grid-template-columns: repeat(2, 1fr); }
  .eng-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split.rev .split-media { order: 0; }
  .media-badge { left: 20px; }
  .modal { grid-template-columns: 1fr; max-width: 520px; }
  .modal-aside { display: none; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 760px) {
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px); background: var(--ivory);
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 26px; padding: 40px;
    transform: translateX(100%); transition: transform .4s var(--ease); box-shadow: var(--shadow-lg); z-index: 90;
  }
  body.menu-open .nav-links { transform: none; }
  .nav-links a { font-size: 20px; opacity: 1; }
  .nav-toggle { display: block; z-index: 95; }
  .nav-actions .btn:not(.nav-toggle) { display: none; }
  .stat { padding: 30px 16px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .eng-grid { grid-template-columns: 1fr; }
  .cap-grid, .proc-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 130px 0 70px; }
  .media-badge { position: static; margin-top: -40px; margin-left: 20px; }
}
