/* ═══════════════════════════════════════════
   MTGEO – main.css v1.0
   ═══════════════════════════════════════════ */

:root {
  --bg:          #07090f;
  --surface:     #0c0f1c;
  --gold:        #c9a566;
  --gold-dim:    rgba(201,165,102,.13);
  --text:        #ede8de;
  --text-muted:  rgba(237,232,222,.44);
  --serif:       'Cormorant Garamond', Georgia, serif;
  --sans:        'Jost', 'Helvetica Neue', sans-serif;
  --max:         1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--bg); color: var(--text); font-size: 15px; line-height: 1.65; font-weight: 300; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
p + p { margin-top: 1em; }
ul { list-style: none; }

/* ── NAV ── */
.site-header { position: sticky; top: 0; z-index: 100; }
.site-nav {
  display: flex; align-items: center; padding: 14px 60px;
  border-bottom: 1px solid var(--gold-dim);
  background: rgba(7,9,15,.94);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  gap: 0;
}
.nav-logo img { height: 42px; width: auto; }
.nav-tel { margin-left: auto; font-size: 13px; color: rgba(237,232,222,.4); margin-right: 28px; }
.nav-tel a:hover { color: var(--gold); }
.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a { font-size: 10px; letter-spacing: 1.8px; text-transform: uppercase; color: rgba(237,232,222,.4); transition: color .2s; }
.nav-links a:hover, .nav-links a[aria-current] { color: var(--gold); }
.nav-cta { padding: 9px 18px; border: 1px solid rgba(201,165,102,.38) !important; color: var(--gold) !important; }
.nav-cta:hover { background: rgba(201,165,102,.09) !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--text); transition: all .25s; }

/* ── HERO (homepage) ── */
.hero { position: relative; height: 100vh; min-height: 580px; max-height: 920px; display: flex; align-items: center; overflow: hidden; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; z-index: 0; }
.hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(110deg, rgba(7,9,15,.9) 0%, rgba(7,9,15,.62) 55%, rgba(7,9,15,.28) 100%); }
.hero-topo { position: absolute; right: 0; top: 0; width: 54%; height: 100%; opacity: .07; z-index: 2; pointer-events: none; }
.hero-content { position: relative; z-index: 3; padding: 0 60px; max-width: 680px; }
.hero-loc { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 26px; display: flex; align-items: center; gap: 12px; }
.hero-loc::before { content: ''; width: 30px; height: 1px; background: var(--gold); }
.hero h1 { font-family: var(--serif); font-size: 70px; font-weight: 400; line-height: 1.05; color: var(--text); margin-bottom: 24px; letter-spacing: -.5px; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-sub { font-size: 14px; color: rgba(237,232,222,.55); line-height: 1.8; margin-bottom: 40px; max-width: 440px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 28px; left: 60px; z-index: 3; display: flex; align-items: center; gap: 10px; font-size: 9.5px; letter-spacing: 2px; text-transform: uppercase; color: rgba(237,232,222,.25); }
.hero-scroll::before { content: ''; width: 1px; height: 36px; background: linear-gradient(to bottom, rgba(201,165,102,.7), transparent); }

/* ── PAGE HERO (service pages) ── */
.page-hero { position: relative; background: var(--surface); padding: 80px 60px 70px; border-bottom: 1px solid var(--gold-dim); overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 80% 50%, rgba(201,165,102,.06) 0%, transparent 70%); pointer-events: none; }
.page-hero-content { position: relative; max-width: var(--max); margin: 0 auto; }
.page-hero h1 { font-family: var(--serif); font-size: 58px; font-weight: 400; line-height: 1.06; color: var(--text); margin-bottom: 20px; }
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero p { font-size: 15px; color: var(--text-muted); line-height: 1.75; max-width: 560px; margin-bottom: 32px; }
.page-hero--short { padding: 60px 60px 50px; }

/* ── BREADCRUMB ── */
.breadcrumb { font-size: 11px; letter-spacing: 1px; color: rgba(237,232,222,.35); margin-bottom: 20px; }
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { color: var(--text); }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px; border: 1px solid rgba(201,165,102,.45); font-family: var(--sans); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); transition: all .2s; cursor: pointer; white-space: nowrap; }
.btn:hover { background: rgba(201,165,102,.09); border-color: var(--gold); }
.btn-ghost { border-color: rgba(237,232,222,.15); color: rgba(237,232,222,.5); }
.btn-ghost:hover { border-color: rgba(237,232,222,.35); color: var(--text); background: transparent; }
.btn-send { width: 100%; padding: 15px; background: rgba(201,165,102,.07); border: 1px solid rgba(201,165,102,.35); font-family: var(--sans); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); cursor: pointer; transition: background .2s; }
.btn-send:hover { background: rgba(201,165,102,.14); }

/* ── BAND STATS ── */
.band { display: flex; border-top: 1px solid var(--gold-dim); border-bottom: 1px solid var(--gold-dim); }
.band-item { flex: 1; padding: 28px 40px; border-right: 1px solid var(--gold-dim); }
.band-item:last-child { border-right: none; }
.band-n { font-family: var(--serif); font-size: 36px; font-weight: 600; color: var(--gold); line-height: 1; margin-bottom: 4px; }
.band-l { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(237,232,222,.3); }

/* ── SECTIONS ── */
.content-section { padding: 80px 60px; max-width: 100%; }
.content-section > * { max-width: var(--max); margin-left: auto; margin-right: auto; }
.section-intro { margin-bottom: 44px; }
.section-intro h2 { max-width: 520px; }
.section-services { padding: 80px 60px; }
.bg-surface { background: var(--surface); }

/* ── TAG ── */
.tag { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; display: flex; align-items: center; gap: 12px; }
.tag::after { content: ''; width: 28px; height: 1px; background: rgba(201,165,102,.35); }

/* ── HEADINGS ── */
h2 { font-family: var(--serif); font-size: 38px; font-weight: 400; line-height: 1.13; color: var(--text); }
h3 { font-family: var(--serif); font-size: 20px; font-weight: 600; color: var(--text); margin-bottom: 8px; }

/* ── SERVICE CARDS (homepage grid) ── */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(201,165,102,.08); max-width: var(--max); margin: 0 auto; }
.svc-card { background: var(--bg); padding: 32px 28px; transition: background .2s; text-decoration: none; display: block; }
a.svc-card:hover { background: rgba(201,165,102,.05); }
.svc-card--cta { background: var(--surface); }
.svc-icon { width: 34px; height: 34px; border: 1px solid rgba(201,165,102,.2); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; color: var(--gold); }
.svc-icon svg { width: 15px; height: 15px; }
.svc-title { font-family: var(--serif); font-size: 19px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.svc-desc { font-size: 12.5px; color: var(--text-muted); line-height: 1.7; }
.svc-more { display: block; margin-top: 16px; font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(201,165,102,.5); }

/* ── SERVICE CARDS (3-col light, inner pages) ── */
.svc-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(201,165,102,.08); max-width: var(--max); margin: 0 auto; }
.svc-card-light { background: var(--surface); padding: 30px 26px; }
.bg-surface .svc-card-light { background: var(--bg); }
.svc-n { font-family: var(--serif); font-size: 40px; font-weight: 600; color: rgba(201,165,102,.25); line-height: 1; margin-bottom: 14px; }
.svc-ideal { font-size: 11.5px; color: rgba(201,165,102,.55); margin-top: 12px; }

/* ── EXPERTISE ── */
.section-expertise { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; padding: 80px 60px; align-items: start; max-width: 100%; }
.section-expertise > * { max-width: none; }
.expertise-text p { font-size: 13px; color: var(--text-muted); line-height: 1.85; margin-bottom: 20px; }
.badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.badge { font-size: 9.5px; letter-spacing: 1.5px; text-transform: uppercase; padding: 6px 14px; border: 1px solid rgba(201,165,102,.18); color: rgba(201,165,102,.6); }
.agence-block { border-left: 2px solid rgba(201,165,102,.25); padding-left: 16px; margin-top: 28px; }
.agence-label { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.agence-addr { font-size: 13px; color: var(--text-muted); }
.exp-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(201,165,102,.08); }
.ev { background: var(--surface); padding: 26px 20px; }
.ev-n { font-family: var(--serif); font-size: 28px; color: var(--gold); font-weight: 600; line-height: 1; margin-bottom: 5px; }
.ev-l { font-size: 9.5px; letter-spacing: 1px; text-transform: uppercase; color: rgba(237,232,222,.3); }

/* ── TÉMOIGNAGES ── */
.section-temoignages { padding: 80px 60px; border-top: 1px solid var(--gold-dim); }
.temo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(201,165,102,.08); max-width: var(--max); margin: 0 auto; }
.temoignage { background: var(--bg); padding: 28px; }
.temo-stars { color: var(--gold); font-size: 14px; margin-bottom: 12px; letter-spacing: 2px; }
.temo-text { font-size: 13px; color: var(--text-muted); line-height: 1.7; font-style: italic; margin-bottom: 14px; }
.temo-author { font-size: 10.5px; letter-spacing: 1px; text-transform: uppercase; color: rgba(237,232,222,.38); }

/* ── ZONES ── */
.section-zones { padding: 80px 60px; background: var(--surface); }
.zones-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; max-width: var(--max); margin: 0 auto; }
.zone-block h3 { font-family: var(--serif); font-size: 18px; font-weight: 600; color: var(--text); margin-bottom: 10px; }
.zone-block p { font-size: 12.5px; color: var(--text-muted); line-height: 1.75; }

/* ── CONTENT TWO-COL ── */
.content-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; max-width: var(--max); margin: 0 auto; }
.content-two-col h2 { font-size: 34px; margin-bottom: 20px; }
.content-two-col p { font-size: 13px; color: var(--text-muted); line-height: 1.85; }

/* ── ASIDE CARD ── */
.aside-card { background: var(--surface); border: 1px solid var(--gold-dim); padding: 28px; }
.aside-card h3 { font-family: var(--serif); font-size: 18px; margin-bottom: 16px; }

/* ── CHECK LIST ── */
.check-list li { font-size: 13px; color: var(--text-muted); padding: 6px 0 6px 22px; position: relative; border-bottom: 1px solid rgba(237,232,222,.06); }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-size: 11px; }

/* ── PRICE LIST ── */
.price-list { margin: 16px 0; }
.price-item { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid rgba(201,165,102,.1); }
.price-label { font-size: 12.5px; color: var(--text-muted); }
.price-val { font-family: var(--serif); font-size: 16px; color: var(--gold); font-weight: 600; }
.price-note { font-size: 11.5px; color: rgba(201,165,102,.55); margin-top: 14px; }

/* ── STEPS ── */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(201,165,102,.08); max-width: var(--max); margin: 0 auto; }
.step { background: var(--bg); padding: 28px 24px; }
.bg-surface .step { background: var(--surface); }
.step-n { font-family: var(--serif); font-size: 42px; color: rgba(201,165,102,.2); font-weight: 600; line-height: 1; margin-bottom: 12px; }
.step h3 { font-size: 16px; margin-bottom: 8px; }
.step p { font-size: 12.5px; color: var(--text-muted); line-height: 1.7; }

/* ── ENGAGEMENTS ── */
.engagements-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(201,165,102,.08); max-width: var(--max); margin: 0 auto; }
.engagement { background: var(--bg); padding: 28px 22px; }
.bg-surface .engagement { background: var(--surface); }
.engagement h3 { font-size: 16px; margin-bottom: 8px; }
.engagement p { font-size: 12.5px; color: var(--text-muted); line-height: 1.7; }
.engagement a { color: var(--gold); }

/* ── FAQ ── */
.faq-section .section-intro { max-width: var(--max); margin-left: auto; margin-right: auto; }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(201,165,102,.1); }
.faq-q { width: 100%; background: none; border: none; text-align: left; padding: 20px 0; font-family: var(--sans); font-size: 14px; color: var(--text); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq-q:hover { color: var(--gold); }
.faq-icon { font-size: 20px; color: var(--gold); flex-shrink: 0; transition: transform .25s; font-style: normal; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { padding: 0 0 20px; }
.faq-a p { font-size: 13px; color: var(--text-muted); line-height: 1.8; }

/* ── CONTACT ── */
.section-contact { padding: 80px 60px; border-top: 1px solid var(--gold-dim); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.section-contact--full { max-width: var(--max); margin: 0 auto; }
.contact-h { font-family: var(--serif); font-size: 36px; font-weight: 400; line-height: 1.13; margin-bottom: 32px; color: var(--text); }
.contact-info h2 { font-size: 32px; margin-bottom: 28px; }
.cinfo { margin-bottom: 18px; }
.cinfo strong { display: block; font-size: 9.5px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); font-weight: 400; margin-bottom: 4px; }
.cinfo span, .cinfo a { font-size: 13px; color: var(--text-muted); }
.cinfo a:hover { color: var(--gold); }
.contact-services { margin-top: 32px; }
.contact-services h3 { font-size: 14px; margin-bottom: 12px; }
.contact-services li { padding: 5px 0; border-bottom: 1px solid rgba(237,232,222,.06); }
.contact-services a { font-size: 13px; color: var(--text-muted); }
.contact-services a:hover { color: var(--gold); }

/* ── FORM ── */
.mtgeo-form .field { margin-bottom: 14px; }
.mtgeo-form label { display: block; font-size: 9.5px; letter-spacing: 1.8px; text-transform: uppercase; color: rgba(237,232,222,.3); margin-bottom: 7px; }
.mtgeo-form input,
.mtgeo-form select,
.mtgeo-form textarea { width: 100%; background: rgba(255,255,255,.025); border: 1px solid rgba(201,165,102,.12); padding: 11px 14px; font-family: var(--sans); font-size: 13px; color: var(--text); outline: none; transition: border-color .2s; font-weight: 300; -webkit-appearance: none; appearance: none; border-radius: 0; }
.mtgeo-form select option { background: #0c0f1c; }
.mtgeo-form input:focus,
.mtgeo-form select:focus,
.mtgeo-form textarea:focus { border-color: rgba(201,165,102,.4); }
.mtgeo-form textarea { height: 100px; resize: vertical; }

/* ── CTA SECTION ── */
.cta-section { padding: 80px 60px; text-align: center; background: var(--surface); border-top: 1px solid var(--gold-dim); }
.cta-section h2 { font-family: var(--serif); font-size: 36px; margin-bottom: 16px; }
.cta-section p { font-size: 14px; color: var(--text-muted); margin-bottom: 32px; }
.cta-section .hero-btns { justify-content: center; }

/* ── FOOTER ── */
.site-footer { background: var(--surface); border-top: 1px solid var(--gold-dim); }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding: 60px 60px 40px; max-width: var(--max); margin: 0 auto; }
.footer-brand img { margin-bottom: 16px; }
.footer-brand p { font-size: 12px; color: var(--text-muted); line-height: 1.75; }
.footer-services h3, .footer-contact h3, .footer-zones h3 { font-size: 11px; letter-spacing: 1.8px; text-transform: uppercase; color: rgba(237,232,222,.35); font-weight: 400; margin-bottom: 16px; font-family: var(--sans); }
.footer-services li, .footer-contact p, .footer-zones p { font-size: 12.5px; color: var(--text-muted); margin-bottom: 8px; }
.footer-services a:hover, .footer-contact a:hover { color: var(--gold); }
.footer-contact address { font-style: normal; }
.footer-bottom { padding: 20px 60px; border-top: 1px solid rgba(201,165,102,.08); display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.footer-bottom span { font-size: 10px; color: rgba(237,232,222,.2); }
.footer-bottom nav { display: flex; gap: 20px; }
.footer-bottom a { font-size: 10px; color: rgba(237,232,222,.2); letter-spacing: 1px; text-transform: uppercase; }
.footer-bottom a:hover { color: var(--gold); }

/* ── DEFAULT CONTENT ── */
.default-content .content-section { max-width: var(--max); margin: 0 auto; }
.default-content h1 { font-family: var(--serif); font-size: 44px; margin-bottom: 28px; }
.entry-content p { font-size: 14px; color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 1100px) {
  .engagements-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 900px) {
  .site-nav { padding: 14px 24px; }
  .nav-tel { display: none; }
  .nav-toggle { display: flex; margin-left: auto; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(7,9,15,.98); border-bottom: 1px solid var(--gold-dim); padding: 20px 24px; gap: 16px; }
  .nav-links.open { display: flex; }
  .hero-content { padding: 0 24px; }
  .hero h1 { font-size: 46px; }
  .hero-scroll { left: 24px; }
  .page-hero { padding: 60px 24px 50px; }
  .page-hero h1 { font-size: 40px; }
  .band { flex-wrap: wrap; }
  .band-item { flex: 1 1 45%; padding: 20px 24px; }
  .content-section { padding: 60px 24px; }
  .section-services { padding: 60px 24px; }
  .section-expertise { grid-template-columns: 1fr; gap: 48px; padding: 60px 24px; }
  .section-temoignages { padding: 60px 24px; }
  .section-zones { padding: 60px 24px; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .svc-grid-3 { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .content-two-col { grid-template-columns: 1fr; gap: 32px; }
  .section-contact { grid-template-columns: 1fr; gap: 48px; padding: 60px 24px; }
  .cta-section { padding: 60px 24px; }
  .temo-grid { grid-template-columns: 1fr; }
  .zones-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-inner { padding: 40px 24px 32px; grid-template-columns: 1fr 1fr; }
  .footer-bottom { padding: 16px 24px; flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .hero h1, .page-hero h1 { font-size: 34px; }
  h2 { font-size: 28px; }
  .svc-grid { grid-template-columns: 1fr; }
  .svc-grid-3 { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .engagements-grid { grid-template-columns: 1fr; }
  .exp-visual { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hide-mobile { display: none; }
}

/* ════════════════════════════════════════
   ILLUSTRATIONS SVG
   ════════════════════════════════════════ */
.illus-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}
.illus-section--reverse { }
.illus-section--reverse figure { order: -1; }
.page-illus {
  background: var(--surface);
  border: 1px solid rgba(201,165,102,0.18);
  border-radius: 4px;
  overflow: hidden;
  margin: 0;
  line-height: 0;
}
.page-illus img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity .3s;
}
.page-illus img:hover { opacity: .92; }

/* ── Footer updated ── */
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 60px 60px 40px;
  max-width: var(--max);
  margin: 0 auto;
}
.footer-brand img { margin-bottom: 16px; }
.footer-brand p { font-size: 12px; color: var(--text-muted); line-height: 1.75; margin-bottom: 16px; }
.footer-contact-info p { font-size: 12.5px; color: var(--text-muted); margin-bottom: 6px; }
.footer-contact-info a:hover { color: var(--gold); }
.footer-contact-info strong { color: var(--text); font-weight: 400; }
.footer-nav-col h3 { font-family: var(--sans); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(237,232,222,.35); font-weight: 400; margin-bottom: 16px; }
.footer-nav-col ul li { margin-bottom: 8px; }
.footer-nav-col a { font-size: 12.5px; color: var(--text-muted); }
.footer-nav-col a:hover { color: var(--gold); }
.footer-zones-text { font-size: 12px; color: var(--text-muted); line-height: 1.7; }
.footer-zones-text strong { color: var(--text); font-weight: 400; }
.footer-cta {
  display: inline-flex;
  margin-top: 16px;
  padding: 9px 18px;
  border: 1px solid rgba(201,165,102,.35);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
}
.footer-cta:hover { background: rgba(201,165,102,.08); }

@media (max-width: 1100px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 900px) {
  .illus-section { grid-template-columns: 1fr; gap: 32px; }
  .illus-section--reverse figure { order: 0; }
  .footer-top { padding: 40px 24px 32px; grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; }
}
