/* =============================================================================
   THE MAVERICK MONK — DESIGN SYSTEM
   "Bold Maverick" aesthetic: near-black canvas, gold + crimson accents,
   bold grotesque display type. Plain CSS, no build step.
   ----------------------------------------------------------------------------
   Table of contents
   1.  Design tokens (CSS custom properties)
   2.  Reset & base elements
   3.  Layout primitives (container, section, grid)
   4.  Typography helpers
   5.  Buttons
   6.  Header / navigation
   7.  Hero
   8.  Section header (eyebrow + title)
   9.  Cards (blog, video, testimonial, stat, product)
   10. CTA band / marquee
   11. Forms
   12. Footer
   13. Utilities
   14. Reveal-on-scroll animation
   15. Responsive
============================================================================= */

/* ----------------------------------------------------------------------------
   1. DESIGN TOKENS
---------------------------------------------------------------------------- */
:root {
  /* Color — surfaces */
  --bg:          #0E0E0F;
  --surface:     #16161A;
  --surface-2:   #1C1C20;
  --surface-3:   #25252B;

  /* Color — brand accents */
  --gold:        #F0B429;
  --gold-deep:   #C99A2E;
  --gold-soft:   rgba(240, 180, 41, 0.12);
  --crimson:     #B91C1C;
  --crimson-soft:rgba(185, 28, 28, 0.14);

  /* Color — text */
  --text:        #F5F5F4;
  --text-dim:    #C9C9C4;
  --muted:       #9B9BA3;
  --line:        rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.18);

  /* Typography */
  --font-display: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
  --font-body:    "Inter", "Segoe UI", system-ui, sans-serif;

  /* Fluid type scale */
  --fs-xs:   0.78rem;
  --fs-sm:   0.9rem;
  --fs-base: 1rem;
  --fs-md:   clamp(1.05rem, 0.98rem + 0.4vw, 1.25rem);
  --fs-lg:   clamp(1.3rem, 1.1rem + 1vw, 1.75rem);
  --fs-xl:   clamp(1.8rem, 1.4rem + 2vw, 2.75rem);
  --fs-2xl:  clamp(2.4rem, 1.7rem + 3.4vw, 4.25rem);
  --fs-3xl:  clamp(3rem, 1.9rem + 5.5vw, 6.5rem);

  /* Spacing scale (4px base) */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.5rem;
  --space-6:  2rem;
  --space-7:  3rem;
  --space-8:  4rem;
  --space-10: 6rem;
  --space-12: 8rem;

  /* Radius */
  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow:    0 12px 40px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 10px 40px rgba(240, 180, 41, 0.18);

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.3s var(--ease);

  /* Layout */
  --container: 1180px;
  --container-narrow: 760px;
  --header-h: 76px;
}

/* ----------------------------------------------------------------------------
   2. RESET & BASE
---------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, picture, svg, video { display: block; max-width: 100%; height: auto; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  margin: 0 0 0.5em;
  letter-spacing: -0.02em;
}

p { margin: 0 0 1.1em; color: var(--text-dim); }
p:last-child { margin-bottom: 0; }

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--text); }

ul, ol { margin: 0 0 1.1em; padding-left: 1.2em; }
li { margin-bottom: 0.4em; color: var(--text-dim); }

strong { color: var(--text); font-weight: 600; }
hr { border: 0; border-top: 1px solid var(--line); margin: var(--space-6) 0; }

blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  line-height: 1.35;
  color: var(--text);
}

::selection { background: var(--gold); color: #0E0E0F; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ----------------------------------------------------------------------------
   3. LAYOUT PRIMITIVES
---------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-5);
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: clamp(3.5rem, 2rem + 7vw, 7rem); }
.section--tight { padding-block: clamp(2.5rem, 1.5rem + 4vw, 4.5rem); }
.section--surface { background: var(--surface); }
.section--alt {
  background:
    radial-gradient(120% 80% at 80% -10%, rgba(240,180,41,0.06), transparent 60%),
    var(--surface);
}

.grid { display: grid; gap: var(--space-5); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 1rem + 4vw, 5rem);
  align-items: center;
}

/* ----------------------------------------------------------------------------
   4. TYPOGRAPHY HELPERS
---------------------------------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 var(--space-4);
}
.eyebrow::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--gold);
}

.display-1 { font-size: var(--fs-3xl); }
.display-2 { font-size: var(--fs-2xl); }
.display-3 { font-size: var(--fs-xl); }

.lead { font-size: var(--fs-md); color: var(--text-dim); }
.text-gold { color: var(--gold); }
.text-muted { color: var(--muted); }
.text-center { text-align: center; }
.measure { max-width: 60ch; }
.mx-auto { margin-inline: auto; }

/* ----------------------------------------------------------------------------
   5. BUTTONS
---------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-sm);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.95em 1.8em;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition),
              color var(--transition), border-color var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--gold); color: #0E0E0F; box-shadow: var(--shadow-gold); }
.btn--primary:hover { background: #ffc94d; color: #0E0E0F; }

.btn--secondary { background: transparent; color: var(--text); border-color: var(--line-strong); }
.btn--secondary:hover { border-color: var(--gold); color: var(--gold); }

.btn--ghost { background: transparent; color: var(--gold); padding-inline: 0.4em; }
.btn--ghost:hover { color: var(--text); }
.btn--ghost::after { content: "\2192"; transition: transform var(--transition); }
.btn--ghost:hover::after { transform: translateX(4px); }

.btn--crimson { background: var(--crimson); color: #fff; }
.btn--crimson:hover { background: #d12424; color: #fff; }

.btn--lg { font-size: var(--fs-base); padding: 1.1em 2.3em; }
.btn--block { display: flex; width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--space-4); }

/* ----------------------------------------------------------------------------
   6. HEADER / NAVIGATION
---------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), border-color var(--transition), backdrop-filter var(--transition);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(14, 14, 15, 0.82);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: var(--text);
}
.brand:hover { color: var(--text); }
.brand img { height: 34px; width: auto; }
.brand b { color: var(--gold); font-weight: 700; }
.brand small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}

.nav { display: flex; align-items: center; gap: var(--space-6); }
.nav__links { display: flex; align-items: center; gap: var(--space-5); list-style: none; margin: 0; padding: 0; }
.nav__links a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--text-dim);
  position: relative;
  padding: 0.3em 0;
}
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--text); }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav__links a:hover::after, .nav__links a[aria-current="page"]::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--text); margin-inline: auto; transition: var(--transition); }
.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); }

/* ----------------------------------------------------------------------------
   7. HERO
---------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: clamp(560px, 90vh, 880px);
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center top; opacity: 0.55; }
.hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, var(--bg) 8%, rgba(14,14,15,0.6) 55%, rgba(14,14,15,0.25) 100%),
    linear-gradient(0deg, var(--bg), transparent 45%);
}
.hero__inner { position: relative; z-index: 1; max-width: 720px; }
.hero h1 { font-size: var(--fs-3xl); margin-bottom: 0.25em; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero__tagline {
  font-family: var(--font-display);
  font-size: var(--fs-md);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: var(--space-5);
}

/* page banner (smaller hero for inner pages) */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + var(--space-8)) 0 var(--space-8);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.page-hero__bg { position: absolute; inset: 0; z-index: 0; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.28; }
.page-hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, var(--bg), rgba(14,14,15,0.5));
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: var(--fs-2xl); }

/* ----------------------------------------------------------------------------
   8. SECTION HEADER
---------------------------------------------------------------------------- */
.section-head { max-width: 720px; margin-bottom: var(--space-7); }
.section-head.text-center { margin-inline: auto; }
.section-head h2 { font-size: var(--fs-xl); }

/* ----------------------------------------------------------------------------
   9. CARDS
---------------------------------------------------------------------------- */
.card {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); border-color: var(--line-strong); box-shadow: var(--shadow); }

.card__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--surface-3); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.card:hover .card__media img { transform: scale(1.05); }
.card__body { padding: var(--space-5); display: flex; flex-direction: column; gap: var(--space-3); flex: 1; }
.card__tag {
  align-self: flex-start;
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-soft);
  padding: 0.35em 0.9em;
  border-radius: var(--radius-pill);
}
.card__title { font-size: var(--fs-lg); margin: 0; }
.card__title a { color: var(--text); }
.card__title a:hover { color: var(--gold); }
.card__meta { font-size: var(--fs-xs); color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }
.card__body .btn--ghost { margin-top: auto; align-self: flex-start; }

/* video card */
.video-card .card__media::after {
  content: "";
  position: absolute; inset: 0; margin: auto;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--crimson) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E") center / 24px no-repeat;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  transition: transform var(--transition), background var(--transition);
}
.video-card:hover .card__media::after { transform: scale(1.1); background-color: #d12424; }

/* stat / achievement item */
.stat {
  border-left: 2px solid var(--gold);
  padding: var(--space-2) 0 var(--space-2) var(--space-5);
}
.stat__num {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat__label { color: var(--text-dim); margin: 0.4em 0 0; font-size: var(--fs-sm); }

.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--space-3); }
.checklist li {
  position: relative;
  padding-left: 2em;
  color: var(--text-dim);
}
.checklist li::before {
  content: "\2713";
  position: absolute; left: 0; top: 0;
  width: 1.4em; height: 1.4em;
  display: grid; place-items: center;
  background: var(--gold-soft);
  color: var(--gold);
  border-radius: 50%;
  font-size: 0.75em;
  font-weight: 700;
}

/* testimonial card */
.quote-card {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.quote-card__mark {
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 0.5;
  color: var(--gold);
  height: 0.5em;
}
.quote-card p { color: var(--text); font-size: var(--fs-md); }
.quote-card__author { display: flex; align-items: center; gap: var(--space-3); margin-top: auto; }
.quote-card__author img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.quote-card__name { font-family: var(--font-display); font-weight: 600; color: var(--text); line-height: 1.2; }
.quote-card__role { font-size: var(--fs-xs); color: var(--muted); }

/* contact detail card */
.info-card {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-5);
}
.info-card h3 { font-size: var(--fs-md); color: var(--gold); }
.info-card a { color: var(--text); }
.info-card a:hover { color: var(--gold); }

/* logo strip */
.logo-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-6);
  filter: grayscale(1) brightness(1.6);
  opacity: 0.7;
}
.logo-strip img { height: 38px; width: auto; }

/* ----------------------------------------------------------------------------
   10. CTA BAND
---------------------------------------------------------------------------- */
.cta-band {
  position: relative;
  background:
    radial-gradient(120% 140% at 50% 0%, rgba(240,180,41,0.16), transparent 60%),
    var(--surface);
  border-block: 1px solid var(--line);
  text-align: center;
  overflow: hidden;
}
.cta-band h2 { font-size: var(--fs-xl); margin-bottom: var(--space-3); }
.cta-band p { max-width: 56ch; margin-inline: auto; }
.cta-band .btn-row { justify-content: center; margin-top: var(--space-5); }

/* ----------------------------------------------------------------------------
   11. FORMS
---------------------------------------------------------------------------- */
.form { display: grid; gap: var(--space-4); }
.field { display: grid; gap: var(--space-2); }
.field label {
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--text-dim);
}
.field input, .field textarea, .field select {
  width: 100%;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  color: var(--text);
  background: var(--surface-2);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 0.85em 1em;
  transition: border-color var(--transition), background var(--transition);
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--surface-3);
}
.field textarea { resize: vertical; min-height: 140px; }

/* ----------------------------------------------------------------------------
   12. FOOTER
---------------------------------------------------------------------------- */
.site-footer {
  background: #0A0A0B;
  border-top: 1px solid var(--line);
  padding-block: var(--space-8) var(--space-6);
}
.site-footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: var(--space-7);
  padding-bottom: var(--space-7);
  border-bottom: 1px solid var(--line);
}
.site-footer h4 {
  font-size: var(--fs-sm);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--space-4);
}
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--space-3); }
.footer-links a { color: var(--text-dim); font-size: var(--fs-sm); }
.footer-links a:hover { color: var(--gold); }
.site-footer__brand p { font-size: var(--fs-sm); max-width: 38ch; }
.social { display: flex; gap: var(--space-3); margin-top: var(--space-4); }
.social a {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--text-dim);
  transition: var(--transition);
}
.social a:hover { background: var(--gold); color: #0E0E0F; border-color: var(--gold); transform: translateY(-2px); }
.social svg { width: 18px; height: 18px; fill: currentColor; }
.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-3);
  padding-top: var(--space-5);
  font-size: var(--fs-xs);
  color: var(--muted);
}
.site-footer__bottom a { color: var(--muted); }
.site-footer__bottom a:hover { color: var(--gold); }

/* ----------------------------------------------------------------------------
   13. UTILITIES
---------------------------------------------------------------------------- */
.framed {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.framed--gold { position: relative; }
.framed--gold::before {
  content: "";
  position: absolute; inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(160deg, var(--gold), transparent 45%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
}
.tag-pill {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  padding: 0.35em 1em;
}
.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--gold); color: #0E0E0F;
  padding: 0.6em 1em; border-radius: 0 0 var(--radius-sm) 0;
  z-index: 200; font-weight: 600;
}
.skip-link:focus { left: 0; color: #0E0E0F; }

.mt-0 { margin-top: 0; }
.mt-4 { margin-top: var(--space-4); }
.mt-5 { margin-top: var(--space-5); }
.mt-6 { margin-top: var(--space-6); }
.mb-0 { margin-bottom: 0; }

/* ----------------------------------------------------------------------------
   14. REVEAL ON SCROLL
---------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ----------------------------------------------------------------------------
   15. RESPONSIVE
---------------------------------------------------------------------------- */
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .site-footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .nav__links {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(14, 14, 15, 0.97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    padding: var(--space-3) var(--space-5) var(--space-5);
    transform: translateY(-120%);
    transition: transform var(--transition);
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  .nav__links.is-open { transform: translateY(0); }
  .nav__links li { border-bottom: 1px solid var(--line); }
  .nav__links a { display: block; padding: var(--space-4) 0; font-size: 1.05rem; }
  .nav__links a::after { display: none; }
  .nav__cta { margin-top: var(--space-4); }
  .nav__cta .btn { width: 100%; }
  .nav-toggle { display: flex; }

  .split { grid-template-columns: 1fr; }
  .split--reverse > *:first-child { order: 2; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .site-footer__top { grid-template-columns: 1fr; gap: var(--space-6); }
  .btn-row .btn { width: 100%; }
  .logo-strip { gap: var(--space-5); }
}
