/* =========================================================
   AIMMS Facilities Careers Development Network
   Shared stylesheet — clean, modern, institutional
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Brand palette (extracted from logo) */
  --navy:        #15294d;
  --navy-700:    #1d3563;
  --navy-600:    #25416f;
  --blue:        #2c6bb0;
  --blue-600:    #2f78c4;
  --green:       #6dae43;
  --green-600:   #5f9c38;
  --gold:        #f2b134;
  --gold-600:    #e0a01f;

  /* Neutrals */
  --ink:         #1b2433;
  --body:        #44515f;
  --muted:       #6b7785;
  --line:        #e2e8f0;
  --surface:     #ffffff;
  --surface-alt: #f5f7fa;
  --surface-2:   #eef2f7;

  /* Type — Source Serif 4 (institutional headings) + Libre Franklin
     (Franklin-Gothic lineage; a civic, public-works voice — deliberately
     not Inter, which reads as a generated default). */
  --font-head: "Source Serif 4", Georgia, "Times New Roman", serif;
  --font-body: "Libre Franklin", "Segoe UI", Tahoma, Arial, sans-serif;

  /* Spacing / shape — a deliberate, non-uniform scale: squared, sturdy
     buttons/inputs; modestly rounded panels; fully round pills. The point
     is hierarchy you can feel, not one radius copy-pasted everywhere. */
  --radius:    10px;
  --radius-sm: 5px;
  --shadow-sm: 0 1px 2px rgba(21,41,77,.06), 0 1px 3px rgba(21,41,77,.08);
  --shadow:    0 8px 24px rgba(21,41,77,.08);
  --shadow-lg: 0 20px 48px rgba(21,41,77,.14);
  --container:  1180px;
  --ease:       cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--surface);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--blue); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--navy); }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.01em;
}
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 4px; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.section { padding: 84px 0; }
.section--tight { padding: 56px 0; }
.section--alt { background: var(--surface-alt); }
.section--navy { background: var(--navy); color: #cdd6e4; }
.section--navy h2, .section--navy h3 { color: #fff; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-weight: 700; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold); border-radius: 2px; }
.section--navy .eyebrow { color: var(--gold); }

.section-head { max-width: 720px; margin-bottom: 52px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin: 14px 0 16px; }
.section-head p { font-size: 1.08rem; color: var(--muted); }

.lead { font-size: 1.18rem; color: var(--body); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  padding: 14px 26px; border-radius: var(--radius-sm);
  border: 2px solid transparent; cursor: pointer;
  transition: transform .15s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease), color .2s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--gold); color: var(--navy); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--gold-600); color: var(--navy); box-shadow: var(--shadow); }
.btn--solid { background: var(--blue); color: #fff; }
.btn--solid:hover { background: var(--navy); color: #fff; }
.btn--outline { background: transparent; border-color: var(--line); color: var(--ink); }
.btn--outline:hover { border-color: var(--navy); color: var(--navy); }
.btn--ghost-light { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.35); color: #fff; }
.btn--ghost-light:hover { background: rgba(255,255,255,.16); color: #fff; }
.btn--lg { padding: 16px 32px; font-size: 1.05rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 76px; }
.brand { display: flex; align-items: center; gap: 13px; flex-shrink: 0; }
.brand img { width: 50px; height: 50px; border-radius: 50%; box-shadow: var(--shadow-sm); }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name { font-family: var(--font-head); font-weight: 700; font-size: 1.04rem; color: var(--navy); letter-spacing: -.01em; }
.brand__tag { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 600; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-weight: 500; font-size: .97rem; color: var(--ink);
  padding: 9px 14px; border-radius: 8px; position: relative;
}
.nav-links a:hover { background: var(--surface-2); color: var(--navy); }
.nav-links a.active { color: var(--navy); font-weight: 600; }
.nav-links a.active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 2px;
  height: 2px; background: var(--gold); border-radius: 2px;
}
.nav-cta { margin-left: 8px; }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px; padding: 10px; border-radius: 8px;
}
.nav-toggle:hover { background: var(--surface-2); }
.nav-toggle span { display: block; height: 2px; background: var(--navy); border-radius: 2px; transition: transform .25s var(--ease), opacity .2s var(--ease); }
.nav-toggle span + span { margin-top: 5px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--navy); color: #d7deea; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(44,107,176,.45), transparent 60%),
    radial-gradient(700px 500px at 10% 110%, rgba(109,174,67,.22), transparent 55%);
}
/* (Removed the grid-mesh hero overlay — it's the single most overused
   "AI hero" texture. The navy brand glow above carries the depth on its own.) */
.hero__inner { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; padding: 96px 0 104px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  color: #e7ecf4; padding: 7px 15px; border-radius: 999px;
  font-size: .82rem; font-weight: 600; letter-spacing: .03em; margin-bottom: 24px;
}
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(109,174,67,.25); }
.hero h1 { color: #fff; font-size: clamp(2.3rem, 4.8vw, 3.7rem); line-height: 1.08; margin-bottom: 22px; }
.hero h1 .accent { color: var(--gold); }
.hero p { font-size: 1.18rem; color: #c2ccdc; max-width: 560px; margin-bottom: 34px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 40px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.12); }
.hero__meta div { display: flex; flex-direction: column; }
.hero__meta b { font-family: var(--font-head); color: #fff; font-size: 1.7rem; line-height: 1; }
.hero__meta span { font-size: .85rem; color: #9fadc2; margin-top: 6px; }

.hero__art { position: relative; display: grid; place-items: center; }
.hero__art .ring {
  width: min(420px, 90%); aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 50% 40%, rgba(255,255,255,.08), rgba(255,255,255,0) 70%);
  display: grid; place-items: center;
}
.hero__art img {
  width: 86%; border-radius: 50%;
  box-shadow: 0 30px 70px rgba(0,0,0,.45), 0 0 0 10px rgba(255,255,255,.04);
}
.hero__art .float {
  position: absolute; background: #fff; color: var(--navy);
  border-radius: 12px; padding: 12px 16px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 11px; font-size: .9rem; font-weight: 600;
}
.hero__art .float svg { width: 22px; height: 22px; }
.hero__art .float--1 { top: 8%; left: -4%; }
.hero__art .float--2 { bottom: 10%; right: -6%; }
.hero__art .float .ico { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 9px; }
.hero__art .float--1 .ico { background: rgba(109,174,67,.15); color: var(--green-600); }
.hero__art .float--2 .ico { background: rgba(242,177,52,.18); color: var(--gold-600); }
.hero__art .float small { display: block; font-weight: 500; color: var(--muted); font-size: .76rem; }

/* ---------- Trust bar ---------- */
.trustbar { background: var(--surface-alt); border-bottom: 1px solid var(--line); }
.trustbar__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px 40px; padding: 22px 0; text-align: center; }
.trustbar p { font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.trustbar ul { display: flex; flex-wrap: wrap; gap: 16px 32px; justify-content: center; }
.trustbar li { display: flex; align-items: center; gap: 9px; font-weight: 600; color: var(--navy); font-size: .95rem; }
.trustbar li svg { width: 19px; height: 19px; color: var(--green-600); }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px;
  box-shadow: var(--shadow-sm); transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #cfdae9; }
.card h3 { font-size: 1.22rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .98rem; }

.icon-badge {
  width: 54px; height: 54px; border-radius: 8px; display: grid; place-items: center;
  margin-bottom: 18px; background: var(--surface-2); color: var(--blue);
}
.icon-badge svg { width: 27px; height: 27px; }
.icon-badge.navy  { background: rgba(21,41,77,.08);  color: var(--navy); }
.icon-badge.blue  { background: rgba(44,107,176,.1);  color: var(--blue); }
.icon-badge.green { background: rgba(109,174,67,.14); color: var(--green-600); }
.icon-badge.gold  { background: rgba(242,177,52,.16); color: var(--gold-600); }

/* Value cards with top accent + number */
.value-card { position: relative; overflow: hidden; }
.value-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--accent, var(--blue)); }
.value-card .num {
  position: absolute; top: 22px; right: 26px;
  font-family: var(--font-head); font-weight: 700; font-size: 2.4rem; color: var(--surface-2); line-height: 1;
}

/* ---------- Split / feature blocks ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split__media img { border-radius: var(--radius); box-shadow: var(--shadow); }
.media-frame {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  background: linear-gradient(135deg, var(--navy), var(--blue));
  aspect-ratio: 4/3; display: grid; place-items: center; color: #fff; position: relative;
}
.media-frame::after {
  content: ""; position: absolute; inset: 0; opacity: .25;
  background-image: linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 36px 36px;
}
.media-frame .badge-logo { position: relative; width: 60%; max-width: 230px; border-radius: 50%; box-shadow: 0 20px 50px rgba(0,0,0,.4); }

.check-list { display: grid; gap: 14px; margin-top: 26px; }
.check-list li { display: flex; gap: 13px; align-items: flex-start; color: var(--body); }
.check-list li svg { flex-shrink: 0; width: 22px; height: 22px; color: var(--green-600); margin-top: 2px; }
.check-list li b { color: var(--ink); }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; padding: 14px; }
.stat b { font-family: var(--font-head); display: block; font-size: clamp(2rem, 4vw, 2.8rem); color: #fff; line-height: 1; }
.stat span { display: block; margin-top: 10px; color: #9fadc2; font-size: .95rem; }
.stat .bar { width: 40px; height: 3px; background: var(--gold); border-radius: 2px; margin: 16px auto 0; }

/* ---------- Programs ---------- */
.program-card { display: flex; flex-direction: column; }
.program-card .tag { display: inline-block; align-self: flex-start; font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 5px 11px; border-radius: 999px; margin-bottom: 16px; }
.tag--blue  { background: rgba(44,107,176,.1);  color: var(--blue); }
.tag--green { background: rgba(109,174,67,.14); color: var(--green-600); }
.tag--gold  { background: rgba(242,177,52,.18); color: var(--gold-600); }
.tag--navy  { background: rgba(21,41,77,.08);   color: var(--navy); }
.program-card ul.feat { margin-top: 16px; display: grid; gap: 9px; }
.program-card ul.feat li { display: flex; gap: 10px; align-items: flex-start; font-size: .93rem; color: var(--body); }
.program-card ul.feat li svg { width: 17px; height: 17px; color: var(--blue); flex-shrink: 0; margin-top: 4px; }
.program-card .card-foot { margin-top: auto; padding-top: 20px; }

/* ---------- Accordion (expandable seminars) ---------- */
.accordion { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; box-shadow: var(--shadow-sm); }
.acc-item + .acc-item { border-top: 1px solid var(--line); }
.acc-head {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  padding: 22px 26px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--font-head); font-weight: 700; font-size: 1.12rem; color: var(--ink);
  transition: background .2s var(--ease);
}
.acc-head:hover { background: var(--surface-alt); }
.acc-head .acc-ico { flex-shrink: 0; width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; background: var(--surface-2); color: var(--blue); }
.acc-head .acc-ico svg { width: 21px; height: 21px; }
.acc-head .acc-title { flex: 1; }
.acc-head .acc-sign { flex-shrink: 0; width: 28px; height: 28px; position: relative; transition: transform .25s var(--ease); }
.acc-head .acc-sign::before, .acc-head .acc-sign::after { content: ""; position: absolute; background: var(--blue); border-radius: 2px; }
.acc-head .acc-sign::before { top: 13px; left: 4px; right: 4px; height: 2px; }
.acc-head .acc-sign::after  { left: 13px; top: 4px; bottom: 4px; width: 2px; transition: transform .25s var(--ease); }
.acc-head[aria-expanded="true"] .acc-sign::after { transform: scaleY(0); }
.acc-panel { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.acc-panel__inner { padding: 0 26px 24px 92px; color: var(--body); }
.acc-panel__inner p { margin-bottom: 14px; }
.acc-panel__inner .chips { display: flex; flex-wrap: wrap; gap: 9px; }
.acc-panel__inner .chip { background: var(--surface-alt); border: 1px solid var(--line); color: var(--navy); font-size: .85rem; font-weight: 500; padding: 6px 13px; border-radius: 999px; }

/* ---------- Page hero (interior) ---------- */
.page-hero { background: var(--navy); color: #c8d2e2; position: relative; overflow: hidden; }
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(700px 360px at 80% -20%, rgba(44,107,176,.5), transparent 60%);
}
.page-hero__inner { position: relative; padding: 74px 0 78px; max-width: 760px; }
.page-hero h1 { color: #fff; font-size: clamp(2.1rem, 4.4vw, 3.1rem); margin: 14px 0 16px; }
.page-hero p { font-size: 1.15rem; color: #c2ccdc; }
.breadcrumbs { font-size: .85rem; color: #93a2ba; }
.breadcrumbs a { color: #c2ccdc; }
.breadcrumbs a:hover { color: #fff; }

/* ---------- CTA banner ---------- */
.cta-banner { position: relative; overflow: hidden; background: linear-gradient(120deg, var(--navy), var(--navy-600)); color: #d7deea; border-radius: 6px; border-left: 5px solid var(--gold); padding: 60px; text-align: center; box-shadow: var(--shadow-lg); }
.cta-banner::before { content: ""; position: absolute; inset: 0; opacity: .5; background: radial-gradient(500px 300px at 15% 120%, rgba(109,174,67,.3), transparent 60%), radial-gradient(500px 300px at 90% -20%, rgba(242,177,52,.22), transparent 60%); }
.cta-banner > * { position: relative; }
.cta-banner h2 { color: #fff; font-size: clamp(1.7rem, 3.4vw, 2.5rem); margin-bottom: 14px; }
.cta-banner p { max-width: 560px; margin: 0 auto 30px; color: #c8d2e2; font-size: 1.1rem; }
.cta-banner .hero__actions { justify-content: center; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
.info-card { display: flex; gap: 16px; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.info-card .icon-badge { margin-bottom: 0; }
.info-card h3 { font-size: 1.08rem; margin-bottom: 4px; }
.info-card p, .info-card a { color: var(--muted); font-size: .96rem; }
.info-stack { display: grid; gap: 16px; }

.form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow); }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: .9rem; color: var(--ink); margin-bottom: 7px; }
.field label .req { color: var(--green-600); }
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--ink);
  padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: var(--surface-alt); transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); background: #fff;
  box-shadow: 0 0 0 4px rgba(44,107,176,.12);
}
.field textarea { resize: vertical; min-height: 130px; }
.form__note { font-size: .85rem; color: var(--muted); margin-top: 4px; }
.form-status { margin-top: 16px; padding: 14px 16px; border-radius: var(--radius-sm); font-size: .95rem; font-weight: 500; display: none; }
.form-status.show { display: block; }
.form-status.ok { background: rgba(109,174,67,.12); color: var(--green-600); border: 1px solid rgba(109,174,67,.3); }

/* ---------- FAQ list ---------- */
.faq { max-width: 820px; margin-inline: auto; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #9fadc2; padding: 64px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-brand .brand__name { color: #fff; }
.footer-brand p { margin-top: 16px; font-size: .94rem; color: #9fadc2; max-width: 320px; }
.site-footer h4 { color: #fff; font-family: var(--font-body); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; }
.site-footer ul { display: grid; gap: 10px; }
.site-footer ul a { color: #aebbcd; font-size: .95rem; }
.site-footer ul a:hover { color: #fff; }
.footer-contact li { display: flex; gap: 11px; align-items: flex-start; font-size: .94rem; margin-bottom: 12px; color: #aebbcd; }
.footer-contact li svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.footer-bottom { margin-top: 46px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; font-size: .87rem; color: #8595ab; }
.footer-badges { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-badges span { display: flex; align-items: center; gap: 7px; }
.footer-badges svg { width: 15px; height: 15px; color: var(--green); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; padding: 72px 0 80px; }
  .hero__art { order: -1; max-width: 420px; margin-inline: auto; }
  .split { gap: 44px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; inset: 76px 0 auto 0; flex-direction: column; align-items: stretch; gap: 2px;
    background: #fff; border-bottom: 1px solid var(--line); padding: 14px 20px 22px;
    box-shadow: var(--shadow); transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform .25s var(--ease), opacity .25s var(--ease); max-height: calc(100vh - 76px); overflow-y: auto;
  }
  .nav-links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 13px 14px; font-size: 1.02rem; }
  .nav-links a.active::after { display: none; }
  .nav-cta { margin: 8px 0 0; }
  .nav-cta .btn { width: 100%; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .section { padding: 60px 0; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split__media { order: -1; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .form .row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-banner { padding: 44px 26px; }
  .acc-panel__inner { padding-left: 26px; }
  .hero__meta { gap: 18px; }
  .hero__art .float { display: none; }
}

@media (max-width: 420px) {
  .brand__tag { display: none; }
  .container { padding-inline: 18px; }
  .stats { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .btn:hover, .card:hover { transform: none; }
}
