/* ============================================================
   AZORE TECHNOLOGIES — Design System v3
   Display: Plus Jakarta Sans | Body: Inter | Mono: JetBrains Mono
   Palette: deep navy / signal red / white
   Signature: typographic hero, dot-grid texture, restrained red
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@400;500&display=swap');

/* ── Tokens ── */
:root {
  --red:        #C8252A;
  --red-hover:  #A91E23;
  --navy:       #0B1D3A;
  --navy-mid:   #16305C;
  --white:      #FFFFFF;
  --off-white:  #F7F9FC;
  --surface:    #EEF1F8;
  --ink:        #0D1421;
  --body-text:  #374151;
  --muted:      #6B7280;
  --line:       #E5E8EF;
  --radius-sm:  5px;
  --radius:     8px;
  --radius-lg:  14px;
  --container:  1200px;
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--body-text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; }

/* ── Layout ── */
.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
h1 { font-size: clamp(2.8rem, 6.5vw, 5.6rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.6rem); line-height: 1.15; }
h3 { font-size: 1.15rem; font-weight: 600; line-height: 1.3; }
p  { line-height: 1.7; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--red);
  display: inline-block;
  flex-shrink: 0;
}

/* ── Ticker ── */
.ticker {
  background: var(--navy);
  color: rgba(255,255,255,0.55);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  overflow: hidden;
  white-space: nowrap;
}
.ticker__track {
  display: inline-flex;
  gap: 56px;
  padding: 8px 0;
  animation: ticker-scroll 30s linear infinite;
}
.ticker__track span { display: inline-flex; align-items: center; gap: 10px; }
.ticker__track span::before {
  content: '◆';
  color: var(--red);
  font-size: 0.45rem;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation: none; }
}

/* ── Header ── */
header.site {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.brand img.brand__logo {
  height: 38px;
  width: auto;
  display: block;
}
.brand--footer .brand__logo { height: 42px; }
.brand__plate {
  background: var(--white);
  border-radius: var(--radius);
  padding: 6px 12px;
  display: inline-flex;
  align-items: center;
}
.navlinks {
  display: flex;
  align-items: center;
  gap: 32px;
}
.navlinks a:not(.btn) {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
  transition: color 0.15s;
}
.navlinks a:not(.btn):hover,
.navlinks a.active:not(.btn) { color: var(--red); }
.navlinks a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1.5px;
  background: var(--red);
  transition: width 0.2s ease;
}
.navlinks a:not(.btn):hover::after,
.navlinks a.active:not(.btn)::after { width: 100%; }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 11px 22px;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.15s ease;
  letter-spacing: 0.01em;
}
.btn--primary {
  background: var(--red);
  color: var(--white) !important;
  border-color: var(--red);
}
.btn--primary:hover { background: var(--red-hover); border-color: var(--red-hover); }
.btn--ghost {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--white); }
.btn--ghost-light {
  background: transparent;
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}
.btn--ghost-light:hover { background: rgba(255,255,255,0.12); }
.btn--light {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn--light:hover { background: var(--off-white); }

/* ── Hero ── */
.hero {
  position: relative;
  background: var(--navy);
  padding: 120px 0 110px;
  overflow: hidden;
}
/* Dot-grid signature texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
/* Red accent line left edge */
.hero::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--red);
}
.hero .wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
}
.hero__content { max-width: 680px; }
.hero h1 {
  color: var(--white);
  margin-bottom: 28px;
  font-weight: 800;
}
.hero h1 em {
  font-style: normal;
  color: var(--red);
}
.hero .lead {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  max-width: 50ch;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero__chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero__chip {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 5px 14px;
}
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Services ── */
.services { padding: 100px 0; background: var(--white); }
.services .section-head { max-width: 580px; margin-bottom: 56px; }
.services .section-head h2 { color: var(--ink); }
.services .section-head p { color: var(--muted); margin-top: 14px; font-size: 1rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-card {
  background: var(--white);
  padding: 40px 34px;
  transition: background 0.15s;
  position: relative;
}
.service-card:hover { background: var(--off-white); }
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: transparent;
  transition: background 0.15s;
}
.service-card:hover::before { background: var(--red); }
.service-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  border-radius: var(--radius);
}
.service-card__icon svg { width: 22px; height: 22px; }
.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--ink);
}
.service-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }
.service-card__list { margin-top: 20px; }
.service-card__list li {
  font-size: 0.84rem;
  color: var(--muted);
  padding: 5px 0 5px 16px;
  position: relative;
  border-top: 1px solid var(--line);
}
.service-card__list li:last-child { border-bottom: 1px solid var(--line); }
.service-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
}

/* ── Stats strip ── */
.stats-strip {
  background: var(--navy);
  padding: 0;
}
.stats-strip .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 48px 32px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-item b {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-item span {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ── Why Azore ── */
.why {
  padding: 100px 0;
  background: var(--off-white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.why .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.why__left .eyebrow { margin-bottom: 20px; }
.why__left h2 { margin-bottom: 16px; }
.why__left > p { color: var(--muted); margin-bottom: 40px; font-size: 0.975rem; }
.why__item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}
.why__item:last-child { border-bottom: 1px solid var(--line); }
.why__num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--red);
  padding-top: 2px;
  min-width: 28px;
  font-weight: 500;
}
.why__item strong { display: block; font-weight: 600; margin-bottom: 4px; color: var(--ink); font-size: 0.95rem; }
.why__item p { font-size: 0.875rem; color: var(--muted); }
.why__right {
  position: sticky;
  top: 100px;
}
.why__panel {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 44px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.why__panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 24px 24px;
}
.why__panel > * { position: relative; }
.why__panel .eyebrow { color: rgba(255,255,255,0.4); margin-bottom: 20px; }
.why__panel .eyebrow::before { background: rgba(255,255,255,0.3); }
.why__panel h3 { color: var(--white); font-size: 1.4rem; margin-bottom: 16px; }
.why__panel p { color: rgba(255,255,255,0.65); font-size: 0.9rem; line-height: 1.7; }
.why__panel .panel-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin: 28px 0;
}
.why__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}
.why__contact-item:last-child { margin-bottom: 0; }
.why__contact-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  margin-top: 6px;
  flex-shrink: 0;
}
.why__contact-item span { font-size: 0.875rem; color: rgba(255,255,255,0.65); }
.why__contact-item a { color: rgba(255,255,255,0.9); font-weight: 500; }

/* ── CTA Band ── */
.cta-section { padding: 100px 0; background: var(--white); }
.cta-band {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
}
.cta-band > * { position: relative; }
.cta-band h2 { color: var(--white); margin-bottom: 10px; }
.cta-band p { color: rgba(255,255,255,0.6); max-width: 44ch; }
.cta-band__actions { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

/* ── Footer ── */
footer.site {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: 72px 0 28px;
  border-top: 3px solid var(--red);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.foot-grid h4 {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 18px;
  font-weight: 400;
}
.foot-grid p { color: rgba(255,255,255,0.5); font-size: 0.875rem; line-height: 1.7; }
.foot-grid li { margin-bottom: 10px; }
.foot-grid a { color: rgba(255,255,255,0.6); font-size: 0.875rem; transition: color 0.15s; }
.foot-grid a:hover { color: var(--white); }
.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 12px;
}
.social-row { display: flex; gap: 10px; margin-top: 20px; }
.social-row a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s, background 0.15s;
}
.social-row a:hover { border-color: var(--red); background: rgba(200,37,42,0.15); }
.social-row svg { width: 15px; height: 15px; }

/* ── Page hero (inner pages) ── */
.page-hero {
  background: var(--navy);
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--red);
}
.page-hero .wrap { position: relative; }
.page-hero h1 { color: var(--white); }
.page-hero .eyebrow { color: rgba(255,255,255,0.4); margin-bottom: 18px; }
.page-hero .eyebrow::before { background: rgba(255,255,255,0.3); }
.page-hero p { color: rgba(255,255,255,0.65); max-width: 54ch; margin-top: 16px; font-size: 1rem; }
.crumb {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

/* ── General sections ── */
section { padding: 100px 0; }
section.tight { padding: 60px 0; }
.section-head { margin-bottom: 52px; }
.section-head h2 { margin-bottom: 14px; }
.section-head p { color: var(--muted); font-size: 0.975rem; max-width: 52ch; }
.section-head.center { text-align: center; }
.section-head.center p { margin-left: auto; margin-right: auto; }

/* ── About page ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.value-row {
  display: flex;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.value-row:last-child { border-bottom: 1px solid var(--line); }
.value-row .num {
  font-family: var(--font-mono);
  color: var(--red);
  font-size: 0.75rem;
  padding-top: 3px;
  min-width: 32px;
  font-weight: 500;
}
.value-row strong { display: block; margin-bottom: 4px; color: var(--ink); font-weight: 600; }
.value-row p { font-size: 0.875rem; color: var(--muted); }

/* ── Services page (detail) ── */
.service-detail {
  padding: 100px 0;
}
.service-detail:nth-child(even) {
  background: var(--off-white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.service-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.service-detail-icon {
  width: 56px; height: 56px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.service-detail-icon svg { width: 26px; height: 26px; }
.service-detail h2 { margin-bottom: 16px; }
.service-detail p { color: var(--muted); margin-bottom: 24px; font-size: 0.975rem; }
.feature-list { margin-top: 8px; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
  color: var(--body-text);
}
.feature-list li:last-child { border-bottom: 1px solid var(--line); }
.feature-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  margin-top: 7px;
  flex-shrink: 0;
}

/* ── Contact page ── */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; }
.contact-card {
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 26px;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-card__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
  margin-top: 6px;
  flex-shrink: 0;
}
.contact-card h4 { font-size: 0.78rem; font-family: var(--font-mono); letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; font-weight: 400; }
.contact-card p, .contact-card a { font-size: 0.9rem; color: var(--ink); font-weight: 500; }
.contact-card a:hover { color: var(--red); }
.map-block {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  height: 220px;
  margin-top: 12px;
}
form.inquiry { display: flex; flex-direction: column; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 0.8rem; font-weight: 600; color: var(--ink); letter-spacing: 0.01em; }
.field input, .field select, .field textarea {
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(11,29,58,0.08);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 0.78rem; color: var(--muted); }

/* ── Updates page ── */
.update-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 16px;
  transition: border-color 0.15s;
}
.update-card:hover { border-color: var(--navy); }
.update-card img {
  width: 100%; max-height: 360px; object-fit: cover;
  border-radius: var(--radius-sm); margin-bottom: 20px;
  cursor: zoom-in;
  transition: opacity 0.15s;
}
.update-card img:hover { opacity: 0.92; }
.update-card video {
  width: 100%; max-height: 420px;
  border-radius: var(--radius-sm); margin-bottom: 20px;
  background: #000;
}
.update-card .file-attach {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.875rem; font-weight: 600;
  color: var(--navy);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 16px; margin-bottom: 16px;
  transition: background 0.15s;
}
.update-card .file-attach:hover { background: var(--off-white); }
.update-date {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 10px;
}
.update-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.update-body { display: none; margin-top: 14px; }
.update-body.open { display: block; }
.read-more {
  background: none; border: none;
  color: var(--navy);
  font-weight: 600; font-size: 0.875rem;
  cursor: pointer; padding: 0; margin-top: 12px;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.read-more:hover { color: var(--red); }
#updates-empty, #updates-error, #updates-loading { color: var(--muted); font-size: 0.95rem; }

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.95);
  align-items: center; justify-content: center;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox__inner {
  max-width: 92vw; max-height: 90vh;
  display: flex; align-items: center; justify-content: center;
}
.lightbox__inner img {
  max-width: 100%; max-height: 90vh;
  border-radius: var(--radius); object-fit: contain;
}
.lightbox__inner video {
  max-width: 100%; max-height: 90vh;
  border-radius: var(--radius);
}
.lightbox__close {
  position: fixed; top: 20px; right: 24px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; cursor: pointer;
  transition: background 0.15s;
}
.lightbox__close:hover { background: var(--red); border-color: var(--red); }

/* ── Focus ── */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .services-grid { grid-template-columns: 1fr; gap: 1px; }
  .stats-strip .wrap { grid-template-columns: repeat(2,1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-item:nth-child(even) { border-right: none; }
  .why .wrap { grid-template-columns: 1fr; gap: 40px; }
  .why__right { position: static; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .cta-band { padding: 44px 32px; }
  .cta-band__actions { width: 100%; }
}
@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
  h1 { font-size: clamp(2.2rem, 10vw, 3.5rem); }
  .navlinks {
    position: fixed; inset: 64px 0 0 0;
    background: var(--white);
    flex-direction: column; align-items: flex-start;
    padding: 32px 24px; gap: 24px;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    border-top: 1px solid var(--line);
  }
  .navlinks.open { transform: translateX(0); }
  .menu-toggle { display: block; }
  .foot-grid { grid-template-columns: 1fr; }
  .stats-strip .wrap { grid-template-columns: 1fr 1fr; }
}
