/* ============================================================
   ELIKS DESIGN SYSTEM — Colors & Type
   Brand: bold, geometric, engineering-forward. Primary red #E11A1F.
   Load this once, then use the semantic vars (--h1, --fg, --brand…).
   ============================================================ */

/* --- Webfonts (substitutions — see README "Fonts" note) ---------
   Archivo  : display + UI sans (squared grotesque echoing the wordmark)
   IBM Plex Mono : technical labels, code, metadata
----------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700;800;900&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

:root {
  color-scheme: light only;  /* this is a light brand — opt out of UA auto-dark */

  /* ---------- BRAND RED SCALE ---------- */
  --red-50:  #FEF2F2;
  --red-100: #FCE0E0;
  --red-200: #F7BBBC;
  --red-300: #F08E90;
  --red-400: #E9595D;
  --red-500: #E11A1F;   /* ← brand primary (sampled from logo) */
  --red-600: #C2161B;   /* hover */
  --red-700: #9E1216;   /* pressed / active */
  --red-800: #790E11;
  --red-900: #58090C;

  /* ---------- INK / NEUTRAL SCALE ---------- */
  --white:   #FFFFFF;
  --ink-50:  #F8F8FA;
  --ink-100: #F1F1F3;
  --ink-200: #E4E4E8;
  --ink-300: #C9C9CF;
  --ink-400: #A1A1AA;
  --ink-500: #71717A;
  --ink-600: #52525B;
  --ink-700: #36363C;
  --ink-800: #232327;
  --ink-900: #161618;
  --ink-950: #0E0E10;

  /* ---------- SEMANTIC ROLES ---------- */
  --brand:            var(--red-500);
  --brand-hover:      var(--red-600);
  --brand-active:     var(--red-700);
  --brand-wash:       var(--red-50);
  --brand-contrast:   #FFFFFF;

  --fg:               var(--ink-900);   /* primary text */
  --fg-muted:         var(--ink-600);   /* secondary text */
  --fg-subtle:        var(--ink-400);   /* tertiary / placeholder */
  --fg-on-dark:       #FFFFFF;
  --fg-on-dark-muted: rgba(255,255,255,0.66);

  --bg:               #FFFFFF;          /* page */
  --bg-subtle:        var(--ink-50);    /* alt sections */
  --bg-muted:         var(--ink-100);   /* wells, inputs */
  --bg-inverse:       var(--ink-950);   /* dark sections / footer */
  --surface:          #FFFFFF;          /* cards / elevated panels */
  --surface-2:        var(--ink-50);    /* nested surface */
  --header-bg:        rgba(255,255,255,0.82); /* translucent sticky header */

  --border:           var(--ink-200);
  --border-strong:    var(--ink-300);
  --border-inverse:   rgba(255,255,255,0.14);

  /* ---------- STATUS ---------- */
  --success: #1E9E5A;  --success-wash: #E7F6EE;
  --warning: #E08D14;  --warning-wash: #FBF0DC;
  --info:    #2563EB;  --info-wash:    #E7EEFD;
  --danger:  var(--red-600); --danger-wash: var(--red-50);

  /* ============================================================
     TYPOGRAPHY
     ============================================================ */
  --font-display: 'Archivo', system-ui, sans-serif;
  --font-sans:    'Archivo', system-ui, sans-serif;
  --font-mono:    'IBM Plex Mono', ui-monospace, 'SF Mono', monospace;

  /* weights */
  --w-regular: 400;
  --w-medium:  500;
  --w-semibold:600;
  --w-bold:    700;
  --w-extra:   800;
  --w-black:   900;

  /* fluid-ish display scale (px) */
  --fs-display: 64px;
  --fs-h1: 48px;
  --fs-h2: 36px;
  --fs-h3: 28px;
  --fs-h4: 22px;
  --fs-h5: 18px;
  --fs-body-lg: 18px;
  --fs-body: 16px;
  --fs-body-sm: 14px;
  --fs-caption: 13px;
  --fs-overline: 12px;

  /* ============================================================
     SPACING — 4px base
     ============================================================ */
  --space-1: 4px;   --space-2: 8px;   --space-3: 12px;  --space-4: 16px;
  --space-5: 20px;  --space-6: 24px;  --space-8: 32px;  --space-10: 40px;
  --space-12: 48px; --space-16: 64px; --space-20: 80px; --space-24: 96px;
  --space-32: 128px;

  /* ---------- RADII (crisp / squared brand) ---------- */
  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 10px;
  --radius-xl: 16px;
  --radius-pill: 999px;

  /* ---------- ELEVATION ---------- */
  --shadow-xs: 0 1px 2px rgba(14,14,16,0.06);
  --shadow-sm: 0 1px 3px rgba(14,14,16,0.08), 0 1px 2px rgba(14,14,16,0.04);
  --shadow-md: 0 4px 12px rgba(14,14,16,0.08), 0 2px 4px rgba(14,14,16,0.05);
  --shadow-lg: 0 12px 32px rgba(14,14,16,0.12), 0 4px 8px rgba(14,14,16,0.06);
  --shadow-brand: 0 8px 24px rgba(225,26,31,0.28);

  /* ---------- MOTION ---------- */
  --ease-standard: cubic-bezier(0.2, 0, 0, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 120ms;
  --dur-base: 200ms;
  --dur-slow: 320ms;
}

/* ============================================================
   DARK THEME  —  applied via <html data-theme="dark"> (the default
   on Eliks product surfaces). Remove the attribute for the light theme.
   Brand red stays the same; surfaces invert; borders carry structure.
   ============================================================ */
:root[data-theme="dark"] {
  color-scheme: dark;

  --brand-hover:      var(--red-400);
  --brand-active:     var(--red-300);
  --brand-wash:       rgba(225,26,31,0.16);

  --fg:               #F4F4F6;
  --fg-muted:         #A6A6AE;
  --fg-subtle:        #6E6E78;
  --fg-on-dark:       #FFFFFF;
  --fg-on-dark-muted: rgba(255,255,255,0.66);

  --bg:               #0E0E10;
  --bg-subtle:        #161618;
  --bg-muted:         #202024;
  --bg-inverse:       #F4F4F6;
  --surface:          #161618;
  --surface-2:        #202024;
  --header-bg:        rgba(14,14,16,0.72);

  --border:           rgba(255,255,255,0.10);
  --border-strong:    rgba(255,255,255,0.20);
  --border-inverse:   rgba(255,255,255,0.14);

  --success-wash: rgba(30,158,90,0.18);
  --warning-wash: rgba(224,141,20,0.18);
  --info-wash:    rgba(37,99,235,0.20);
  --danger-wash:  rgba(225,26,31,0.18);

  --shadow-xs: 0 1px 2px rgba(0,0,0,0.4);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.5), 0 1px 2px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 14px rgba(0,0,0,0.55), 0 2px 4px rgba(0,0,0,0.4);
  --shadow-lg: 0 16px 40px rgba(0,0,0,0.6), 0 4px 8px rgba(0,0,0,0.4);
}

/* ============================================================
   SEMANTIC TYPE CLASSES
   ============================================================ */
.t-display {
  font-family: var(--font-display);
  font-weight: var(--w-black);
  font-size: var(--fs-display);
  line-height: 1.02;
  letter-spacing: -0.022em;
  color: var(--fg);
}
.t-h1 {
  font-family: var(--font-display);
  font-weight: var(--w-extra);
  font-size: var(--fs-h1);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.t-h2 {
  font-family: var(--font-display);
  font-weight: var(--w-bold);
  font-size: var(--fs-h2);
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--fg);
}
.t-h3 {
  font-family: var(--font-display);
  font-weight: var(--w-bold);
  font-size: var(--fs-h3);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--fg);
}
.t-h4 {
  font-family: var(--font-sans);
  font-weight: var(--w-semibold);
  font-size: var(--fs-h4);
  line-height: 1.3;
  letter-spacing: -0.006em;
  color: var(--fg);
}
.t-h5 {
  font-family: var(--font-sans);
  font-weight: var(--w-semibold);
  font-size: var(--fs-h5);
  line-height: 1.4;
  color: var(--fg);
}
.t-body-lg {
  font-family: var(--font-sans);
  font-weight: var(--w-regular);
  font-size: var(--fs-body-lg);
  line-height: 1.6;
  color: var(--fg-muted);
}
.t-body {
  font-family: var(--font-sans);
  font-weight: var(--w-regular);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--fg-muted);
}
.t-body-sm {
  font-family: var(--font-sans);
  font-weight: var(--w-regular);
  font-size: var(--fs-body-sm);
  line-height: 1.55;
  color: var(--fg-muted);
}
.t-caption {
  font-family: var(--font-sans);
  font-weight: var(--w-medium);
  font-size: var(--fs-caption);
  line-height: 1.4;
  color: var(--fg-subtle);
}
.t-overline {
  font-family: var(--font-mono);
  font-weight: var(--w-medium);
  font-size: var(--fs-overline);
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
}
.t-code {
  font-family: var(--font-mono);
  font-weight: var(--w-regular);
  font-size: var(--fs-body-sm);
  line-height: 1.5;
  color: var(--fg);
}

/* ============================================================
   ELIKS — Component primitives. Requires colors_and_type.css.
   ============================================================ */

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-sans); font-weight: var(--w-semibold); font-size: 15px;
  line-height: 1; padding: 12px 20px; border-radius: var(--radius-md);
  border: 1px solid transparent; cursor: pointer; white-space: nowrap;
  transition: background var(--dur-fast) var(--ease-standard),
              color var(--dur-fast) var(--ease-standard),
              border-color var(--dur-fast) var(--ease-standard),
              transform var(--dur-fast) var(--ease-standard),
              box-shadow var(--dur-fast) var(--ease-standard);
  text-decoration: none; user-select: none;
}
.btn:active { transform: scale(0.98); }
.btn svg { width: 18px; height: 18px; }

.btn--primary { background: var(--brand); color: var(--brand-contrast); }
.btn--primary:hover { background: var(--brand-hover); }
.btn--primary:active { background: var(--brand-active); }

.btn--secondary { background: var(--fg); color: var(--bg); }
.btn--secondary:hover { opacity: 0.86; }

.btn--outline { background: transparent; color: var(--fg); border-color: var(--border-strong); }
.btn--outline:hover { border-color: var(--fg); background: var(--bg-subtle); }

.btn--ghost { background: transparent; color: var(--fg); }
.btn--ghost:hover { background: var(--bg-muted); }

.btn--sm { padding: 8px 14px; font-size: 13px; border-radius: var(--radius-sm); }
.btn--lg { padding: 15px 26px; font-size: 16px; }
.btn:disabled, .btn[aria-disabled="true"] { opacity: 0.4; pointer-events: none; }

/* ---------- INPUTS ---------- */
.field { display: flex; flex-direction: column; gap: 6px; }
.field > label {
  font-family: var(--font-sans); font-weight: var(--w-medium); font-size: 13px; color: var(--fg);
}
.input, .textarea, .select {
  font-family: var(--font-sans); font-size: 15px; color: var(--fg);
  background: var(--surface); border: 1px solid var(--border-strong);
  border-radius: var(--radius-md); padding: 11px 13px; width: 100%;
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
}
.input::placeholder, .textarea::placeholder { color: var(--fg-subtle); }
.input:focus, .textarea:focus, .select:focus {
  outline: none; border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(225,26,31,0.15);
}
.input:disabled { background: var(--bg-muted); color: var(--fg-subtle); }
.field .hint { font-size: 12px; color: var(--fg-subtle); }
.field.is-error .input { border-color: var(--danger); }
.field.is-error .hint { color: var(--danger); }

/* ---------- BADGES / CHIPS ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 4px 9px; border-radius: var(--radius-pill);
}
.badge--neutral { background: var(--bg-muted); color: var(--fg-muted); }
.badge--brand   { background: var(--red-50); color: var(--red-700); }
.badge--success { background: var(--success-wash); color: #137a44; }
.badge--warning { background: var(--warning-wash); color: #92590a; }
.badge--info    { background: var(--info-wash); color: #1d4ed8; }
.badge--dot::before { content:""; width:6px; height:6px; border-radius:50%; background: currentColor; }

.chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-sans); font-size: 13px; font-weight: 500; color: var(--fg);
  padding: 6px 12px; border-radius: var(--radius-pill);
  border: 1px solid var(--border-strong); background: var(--surface); cursor: pointer;
  transition: all var(--dur-fast);
}
.chip:hover { border-color: var(--fg); }
.chip[aria-pressed="true"] { background: var(--fg); color: var(--bg); border-color: var(--fg); }

/* ---------- CARD ---------- */
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 22px; transition: box-shadow var(--dur-base) var(--ease-standard),
                              transform var(--dur-base) var(--ease-standard);
}
.card--hover:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card--rule { border-top: 3px solid var(--brand); }

/* Eliks marketing site kit — page styles. Requires ../../colors_and_type.css + components.css */
* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); color: var(--fg); background: var(--bg); -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
.shell { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
img { display:block; max-width:100%; }

/* ---- Header ---- */
.hdr { position: sticky; top:0; z-index: 50; background: var(--header-bg);
       backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.hdr__in { display:flex; align-items:center; justify-content:space-between; height: 68px; }
.hdr__logo { height: 26px; }
.hdr__nav { display:flex; align-items:center; gap: 30px; }
.hdr__nav a { font-size: 14.5px; font-weight: 500; color: var(--fg-muted); transition: color var(--dur-fast); }
.hdr__nav a:hover { color: var(--fg); }
.hdr__nav a.active { color: var(--brand); }
.hdr__cta { display:flex; align-items:center; gap: 14px; }
.hdr__burger { display:none; background:none; border:none; cursor:pointer; color:var(--fg); }
.hdr__burger i { width:24px;height:24px; }

/* ---- Hero ---- */
.hero { padding: 92px 0 76px; position: relative; overflow: hidden; }
.hero__grid { position:absolute; inset:0; background-image:
  linear-gradient(var(--border) 1px, transparent 1px),
  linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 56px 56px; mask-image: linear-gradient(180deg, #000 0%, transparent 80%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 80%); opacity:.55; }
.hero__in { position:relative; }
.hero h1 { font-family: var(--font-display); font-weight: 900; font-size: clamp(44px, 7vw, 84px);
           line-height: 0.98; letter-spacing: -0.025em; max-width: 14ch; }
.hero h1 .red { color: var(--brand); }
.hero__sub { font-size: 20px; line-height: 1.55; color: var(--fg-muted); max-width: 54ch; margin-top: 26px; }
.hero__actions { display:flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }

/* ---- Section scaffold ---- */
.sec { padding: 88px 0; }
.sec--alt { background: var(--bg-subtle); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.sec--dark { background: var(--ink-950); color: #fff; }
.eyebrow { font-family: var(--font-mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--brand); }
.sec__head { max-width: 60ch; margin-bottom: 44px; }
.sec__head h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(30px,4vw,44px);
                line-height: 1.08; letter-spacing: -0.02em; margin-top: 14px; }
.sec__head p { font-size: 18px; color: var(--fg-muted); margin-top: 16px; line-height:1.6; }
.sec--dark .sec__head p { color: var(--fg-on-dark-muted); }

/* ---- Services ---- */
.svc { display:grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.svc__item { background:var(--surface); border:1px solid var(--border); border-radius: var(--radius-lg);
             padding: 26px; transition: box-shadow var(--dur-base) var(--ease-standard), transform var(--dur-base) var(--ease-standard), border-color var(--dur-base); }
.svc__item:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--border-strong); }
.svc__ic { width:46px;height:46px;border-radius:var(--radius-md); background: var(--brand-wash); color: var(--brand);
           display:flex;align-items:center;justify-content:center; margin-bottom:18px; }
.svc__ic i { width:24px; height:24px; }
.svc__item h3 { font-size: 19px; font-weight: 700; margin-bottom: 8px; }
.svc__item p { font-size: 14.5px; color: var(--fg-muted); line-height: 1.55; }

/* ---- Work / case studies ---- */
.filters { display:flex; gap:10px; margin-bottom: 28px; flex-wrap:wrap; }
.work { display:grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.proj { display:block; text-decoration:none; color:inherit; border:1px solid var(--border); border-radius: var(--radius-lg); overflow:hidden; background:var(--surface); cursor:pointer;
        transition: box-shadow var(--dur-base), transform var(--dur-base); }
.proj:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.proj__img { aspect-ratio: 16/7; min-height: 132px; background: var(--ink-900); position: relative; overflow:hidden;
             display:flex; align-items:center; justify-content:center;
             border-bottom: 1px solid var(--border); }
.proj__img::before { content:''; position:absolute; inset:0;
                     background-image: radial-gradient(circle, rgba(255,255,255,.08) 1px, transparent 1px);
                     background-size: 18px 18px; opacity:.35; }
.proj__img--tarot {
  background:
    radial-gradient(circle at 78% 22%, rgba(168,85,247,.22), transparent 38%),
    radial-gradient(circle at 22% 78%, rgba(225,26,31,.14), transparent 36%),
    linear-gradient(135deg, #141018 0%, #0e0e10 100%);
}
.proj__img--pastor {
  background:
    radial-gradient(circle at 78% 22%, rgba(249,115,22,.24), transparent 38%),
    radial-gradient(circle at 22% 78%, rgba(234,88,12,.12), transparent 36%),
    linear-gradient(135deg, #141008 0%, #0e0e10 100%);
}
.proj__mark { position:absolute; right:-8px; bottom:-28px; font-family: var(--font-display); font-weight:900;
              font-size: clamp(96px, 14vw, 140px); line-height:1; color: rgba(255,255,255,.04);
              letter-spacing:-.04em; pointer-events:none; user-select:none; }
.proj__icon { position:relative; z-index:1; width:64px; height:64px; border-radius:16px;
              box-shadow: 0 12px 32px rgba(0,0,0,.35); border:1px solid rgba(255,255,255,.1);
              object-fit: contain; }
.proj__tag { position:absolute; top:14px; left:14px; z-index:2; }
.proj__body { padding: 20px 22px 24px; }
.proj__body h3 { font-size: 20px; font-weight: 700; }
.proj__body p { font-size: 14.5px; color: var(--fg-muted); margin-top: 6px; }
.proj__arrow { display:flex; align-items:center; gap:7px; margin-top:16px; font-size:14px; font-weight:600; color:var(--brand); }
.proj__arrow i { width:16px; height:16px; transition: transform var(--dur-base); }
.proj:hover .proj__arrow i { transform: translateX(4px); }

/* ---- Process ---- */
.steps { display:grid; grid-template-columns: repeat(4,1fr); gap: 0; border-top:1px solid var(--border-inverse); }
.step { padding: 30px 24px 30px 0; border-right: 1px solid var(--border-inverse); }
.step:last-child { border-right:none; }
.step .num { font-family: var(--font-mono); font-size: 13px; color: var(--brand); }
.step h3 { font-size: 19px; font-weight:700; margin: 16px 0 8px; }
.step p { font-size: 14px; color: var(--fg-on-dark-muted); line-height:1.55; }

/* ---- Contact ---- */
.contact__details { max-width: 520px; background:var(--surface); border:1px solid var(--border); border-radius: var(--radius-lg); overflow:hidden; }
.contact__row { display:flex; align-items:flex-start; gap:16px; padding:22px 24px; border-bottom:1px solid var(--border); }
.contact__row:last-child { border-bottom:none; }
.contact__ic { width:44px; height:44px; border-radius:var(--radius-md); background:var(--brand-wash); color:var(--brand);
              display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.contact__ic i { width:20px; height:20px; }
.contact__label { font-family:var(--font-mono); font-size:11px; letter-spacing:.1em; text-transform:uppercase; color:var(--fg-subtle); }
.contact__val { font-size:16px; font-weight:600; margin-top:6px; color:var(--fg); line-height:1.4; }
a.contact__val:hover { color:var(--brand); }

/* ---- CTA band ---- */
.cta { background: var(--brand); border-radius: var(--radius-xl); padding: 56px; position:relative; overflow:hidden;
       display:flex; align-items:center; justify-content:space-between; gap: 32px; flex-wrap:wrap; min-height:100%; }
.cta__ghost { position:absolute; right:-40px; bottom:-80px; height: 320px; opacity:.12; }
.cta h2 { font-family: var(--font-display); font-weight:900; font-size: clamp(30px,3.4vw,42px); color:#fff; letter-spacing:-.02em; line-height:1.05; max-width: 18ch; }
.cta .btn--white { background:#fff; color: var(--brand); }
.cta .btn--white:hover { background: var(--ink-100); }

/* ---- Footer ---- */
.ft { background: var(--ink-950); color:#fff; padding: 64px 0 36px; }
.ft__top { display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 44px; border-bottom: 1px solid var(--border-inverse); }
.ft__logo { height: 26px; margin-bottom: 18px; }
.ft__top p { font-size: 14px; color: var(--fg-on-dark-muted); line-height:1.6; max-width: 34ch; }
.ft__social { display:flex; gap: 10px; margin-top: 20px; }
.ft__social-btn {
  width: 40px; height: 40px; border-radius: var(--radius-md);
  background: var(--ink-800); color: rgba(255,255,255,.72);
  display:flex; align-items:center; justify-content:center;
  font-family: var(--font-sans); font-size: 13px; font-weight: 700;
  letter-spacing: -0.02em; transition: background var(--dur-fast), color var(--dur-fast);
}
.ft__social-btn:hover { background: var(--ink-700); color: #fff; }
.ft__col h4 { font-family: var(--font-mono); font-size: 11px; letter-spacing:.12em; text-transform:uppercase; color: var(--ink-400); margin-bottom: 16px; }
.ft__col a { display:block; font-size: 14.5px; color: rgba(255,255,255,.78); padding: 5px 0; transition: color var(--dur-fast); }
.ft__col a:hover { color:#fff; }
.ft__bottom { display:flex; justify-content:space-between; align-items:center; padding-top: 28px; flex-wrap:wrap; gap:12px; }
.ft__bottom span { font-size: 13px; color: var(--ink-500); }

/* ---- Mobile ---- */
.mnav { display:none; }
@media (max-width: 860px) {
  .hdr__nav, .hdr__cta .btn { display:none; }
  .hdr__burger { display:block; }
  .svc, .work, .steps { grid-template-columns: 1fr; }
  .step { border-right:none; border-bottom:1px solid var(--border-inverse); padding-right:0; }
  .ft__top { grid-template-columns: 1fr 1fr; }
  .cta { padding: 36px; }
  .mnav.open { display:block; position:fixed; inset:68px 0 0; background:var(--bg); z-index:40; padding: 24px 32px; }
  .mnav.open a { display:block; font-size:22px; font-weight:600; padding:14px 0; border-bottom:1px solid var(--border); }
}
