/* =========================================================
   DNA ACADEMY - Stoke-on-Trent
   Shared stylesheet
   Palette: black / yellow accents / white space
   Type: Anton (display) + Plus Jakarta Sans (body)
   Motif: the kit's diagonal "slash"
   ========================================================= */

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.65;
  font-size: 1.0625rem;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; }

/* ---------- Tokens ---------- */
:root {
  --black:      #080808;
  --ink:        #0f0f0f;
  --surface:    #161616;
  --surface-2:  #1e1e1e;
  --line:       rgba(255,255,255,.10);
  --white:      #ffffff;
  --muted:      #a7a7a7;
  --muted-2:    #7c7c7c;
  --yellow:     #ffd400;
  --yellow-deep:#e6bd00;

  --maxw: 1240px;
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --section-y: clamp(4.5rem, 10vw, 9rem);
  --radius: 4px;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Type ---------- */
.display,
h1, h2, h3 {
  font-family: "Anton", "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  line-height: .95;
  letter-spacing: .01em;
}

h1 { font-size: clamp(2.7rem, 8vw, 6.5rem); }
h2 { font-size: clamp(2.1rem, 5vw, 4rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); }

p { max-width: 62ch; }

.text-yellow { color: var(--yellow); }

/* Small uppercase kicker/eyebrow label */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .72rem;
  color: var(--yellow);
  margin-bottom: 1.25rem;
}
.kicker::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--yellow);
  transform: skewX(-24deg);
}

.lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--muted); }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.bg-ink { background: var(--ink); }
.bg-surface { background: var(--surface); }

.stack > * + * { margin-top: 1.25rem; }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }
.measure { max-width: 70ch; }
.measure-wide { max-width: 72ch; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--yellow);
  --btn-fg: #000;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: 1rem 1.9rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .82rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  clip-path: polygon(0 0, 100% 0, calc(100% - 14px) 100%, 0 100%);
  transition: transform .25s var(--ease), background .25s var(--ease);
}
.btn:hover { transform: translateY(-3px); background: #fff; }
.btn:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: #fff;
  border: 2px solid rgba(255,255,255,.35);
  clip-path: polygon(14px 0, 100% 0, 100% 100%, 0 100%);
}
.btn--ghost:hover { background: rgba(255,255,255,.08); border-color: #fff; color:#fff; }

.btn--dark {
  --btn-bg: #111;
  --btn-fg: #fff;
}
.btn--dark:hover { background:#000; color: var(--yellow); }

.btn-row { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Text link with slash underline */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .8rem;
  color: var(--white);
  padding-bottom: .35rem;
  border-bottom: 2px solid var(--yellow);
  transition: gap .25s var(--ease), color .25s var(--ease);
}
.link-arrow:hover { gap: 1.1rem; color: var(--yellow); }
.link-arrow span { display:inline-block; transform: skewX(-12deg); }

/* ---------- Slash motif helpers ---------- */
/* diagonal-clipped media */
.slash-media {
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 42px), 0 100%);
}
.slash-media.--flip { clip-path: polygon(0 42px, 100% 0, 100% 100%, 0 100%); }
.slash-media img { width: 100%; height: 100%; object-fit: cover; }

/* thin diagonal accent bar */
.slash-bar {
  width: 64px; height: 6px;
  background: var(--yellow);
  transform: skewX(-24deg);
}

/* full-width diagonal divider */
.divider-slash {
  height: clamp(46px, 6vw, 90px);
  background: var(--yellow);
  clip-path: polygon(0 0, 100% 100%, 100% 100%, 0 100%);
}
.divider-slash.--dark { background: var(--ink); }

/* faint diagonal stripe texture for dark panels */
.stripes {
  position: relative;
}
.stripes::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -24deg,
    rgba(255,212,0,.05) 0 2px,
    transparent 2px 26px
  );
  pointer-events: none;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .3s var(--ease), border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-solid {
  background: rgba(8,8,8,.92);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 78px;
}
.brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.brand-logo {
  height: 100px;
  width: auto;
  display: block;
  transition: transform .25s var(--ease);
  margin-top: 50px;
}
.brand:hover .brand-logo { transform: scale(1.04); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-weight: 600;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.82);
  padding: .4rem 0;
  position: relative;
  transition: color .2s var(--ease);
}
.nav-links a::after {
  content:""; position:absolute; left:0; bottom:-2px;
  width:100%; height:2px; background: var(--yellow);
  transform: scaleX(0) skewX(-20deg); transform-origin: left;
  transition: transform .28s var(--ease);
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color:#fff; }
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { transform: scaleX(1) skewX(-20deg); }

.nav-cta { margin-left: .5rem; }
.nav-cta .btn { padding: .8rem 1.4rem; font-size:.76rem; color:#000; }
.nav-cta .btn:hover { color:#000; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: transparent; border: 0;
}
.nav-toggle span {
  display:block; height:2px; width:26px; background:#fff;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.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;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-top: 78px;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index:-2; }
.hero__media img { width:100%; height:100%; object-fit: cover; object-position: center 25%; }
.hero__media::after {
  content:""; position:absolute; inset:0;
  background:
    linear-gradient(to top, rgba(8,8,8,.96) 0%, rgba(8,8,8,.55) 45%, rgba(8,8,8,.35) 100%),
    linear-gradient(to right, rgba(8,8,8,.85) 0%, rgba(8,8,8,.15) 60%, transparent 100%);
}
.hero__inner { padding-block: clamp(3rem, 8vh, 7rem); width:100%; }
.hero h1 { max-width: 16ch; margin-bottom: 1.6rem; }
.hero .lead { max-width: 46ch; margin-bottom: 2.4rem; color: #d9d9d9; }
.hero .btn-row { margin-top: .5rem; }

/* small page hero (interior pages) */
.page-hero {
  position: relative;
  padding-top: calc(78px + clamp(3.5rem, 9vw, 7rem));
  padding-bottom: clamp(3.5rem, 9vw, 7rem);
  overflow: hidden;
}
.page-hero__media { position:absolute; inset:0; z-index:-2; }
.page-hero__media img { width:100%; height:100%; object-fit: cover; object-position: center 30%; }
.page-hero__media::after {
  content:""; position:absolute; inset:0;
  background: linear-gradient(to right, rgba(8,8,8,.95), rgba(8,8,8,.55) 70%, rgba(8,8,8,.35));
}
.page-hero h1 { max-width: 18ch; }
.page-hero .lead { max-width: 52ch; margin-top: 1.25rem; }
.breadcrumb {
  font-size:.72rem; letter-spacing:.2em; text-transform:uppercase;
  color: var(--muted); margin-bottom:1.5rem;
}
.breadcrumb a:hover { color: var(--yellow); }

/* ---------- Split (image + text) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__media img { width:100%; aspect-ratio: 4/5; object-fit: cover; }
.split__media .slash-bar { position:absolute; left:-10px; bottom:26px; height:10px; width:120px; }

@media (max-width: 800px){
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .split__media img { aspect-ratio: 16/11; }
}

/* ---------- Services (image-led blocks) ---------- */
.services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
.service {
  position: relative;
  min-height: clamp(360px, 44vw, 560px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 34px), 0 100%);
}
.service img {
  position:absolute; inset:0; width:100%; height:100%;
  object-fit: cover; z-index:-2;
  transition: transform .8s var(--ease);
}
.service::after {
  content:""; position:absolute; inset:0; z-index:-1;
  background: linear-gradient(to top, rgba(8,8,8,.92) 8%, rgba(8,8,8,.35) 60%, rgba(8,8,8,.15));
}
.service:hover img { transform: scale(1.05); }
.service__body { padding: clamp(1.75rem, 3vw, 2.75rem); }
.service__body h3 { margin-bottom: .5rem; }
.service__body p { color:#d5d5d5; margin-bottom: 1.4rem; max-width: 40ch; }
.service__num {
  font-family:"Anton",sans-serif; font-size: 1rem; color: var(--yellow);
  letter-spacing:.1em; margin-bottom: 1rem; display:block;
}
@media (max-width: 720px){ .services { grid-template-columns: 1fr; } }

/* ---------- Feature list (why) ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.75rem);
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 3vw, 2.75rem);
}
@media (max-width: 820px){ .grid-3 { grid-template-columns: 1fr; } }
@media (max-width: 640px){ .grid-2 { grid-template-columns: 1fr; } }

.feature__index {
  font-family:"Anton",sans-serif;
  font-size: 2.4rem;
  color: var(--yellow);
  line-height:1;
  margin-bottom: .9rem;
}
.feature h3 { font-size: clamp(1.2rem,1.6vw,1.5rem); margin-bottom:.6rem; }
.feature p { color: var(--muted); }
.feature + .feature { }

/* ---------- Statement / philosophy quote ---------- */
.statement {
  font-family:"Anton",sans-serif;
  text-transform: uppercase;
  line-height: 1.02;
  font-size: clamp(2rem, 4.6vw, 4rem);
  max-width: 20ch;
}
.statement .text-yellow { display:inline; }
.attribution { margin-top: 1.75rem; color: var(--muted); font-size:.9rem; letter-spacing:.04em; }

/* ---------- Full-bleed image band ---------- */
.band {
  position: relative;
  min-height: clamp(340px, 46vw, 620px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.band img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:-2; }
.band::after {
  content:""; position:absolute; inset:0; z-index:-1;
  background: linear-gradient(90deg, rgba(8,8,8,.9), rgba(8,8,8,.4) 60%, transparent);
}

/* ---------- CTA ---------- */
.cta {
  position: relative;
  text-align: center;
  overflow: hidden;
}
.cta__inner { position: relative; z-index:1; }
.cta h2 { margin-bottom: 1.25rem; }
.cta .lead { margin: 0 auto 2rem; }
.cta .btn-row { justify-content: center; }

/* ---------- Steps / process ---------- */
.steps { counter-reset: step; display:grid; gap: 0; }
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step__no {
  counter-increment: step;
  font-family:"Anton",sans-serif;
  font-size: clamp(2rem,4vw,3.4rem);
  color: var(--yellow);
  line-height:.9;
  min-width: 2.4ch;
}
.step__no::before { content: counter(step,decimal-leading-zero); }
.step h3 { margin-bottom:.4rem; }
.step p { color: var(--muted); }

/* ---------- Checklist ---------- */
.ticks { display:grid; gap:1rem; }
.ticks li { display:flex; gap:.9rem; align-items:flex-start; color:#e2e2e2; }
.ticks li::before {
  content:""; flex: 0 0 auto; margin-top:.45rem;
  width: 16px; height: 16px; background: var(--yellow);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 30% 70%, 30% 100%, 0 100%);
  transform: skewX(-12deg);
}

/* ---------- Reviews ---------- */
.reviews { display:grid; grid-template-columns: repeat(3,1fr); gap:1.5rem; }
@media (max-width: 900px){ .reviews { grid-template-columns:1fr; } }
.review {
  background: var(--surface);
  padding: 2rem;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0 100%);
}
.review__stars { color: var(--yellow); letter-spacing:.15em; margin-bottom:1rem; font-size:.95rem; }
.review p { color:#e6e6e6; font-size:1rem; margin-bottom:1.25rem; }
.review__by { font-weight:700; font-size:.82rem; text-transform:uppercase; letter-spacing:.12em; color: var(--muted); }

/* ---------- Contact ---------- */
.contact-grid {
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items:start;
}
@media (max-width: 860px){ .contact-grid { grid-template-columns:1fr; } }

.form-field { margin-bottom: 1.35rem; }
.form-field label {
  display:block; font-size:.74rem; text-transform:uppercase;
  letter-spacing:.16em; font-weight:700; color: var(--muted); margin-bottom:.55rem;
}
.form-field input,
.form-field select,
.form-field textarea {
  width:100%; padding: .95rem 1.05rem;
  background: var(--surface); color:#fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: inherit; font-size:1rem;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none; border-color: var(--yellow); background: var(--surface-2);
}
.form-field textarea { min-height: 150px; resize: vertical; }
.form-note { font-size:.82rem; color: var(--muted-2); margin-top:1rem; }
.form-status { margin-top:1rem; font-weight:700; color: var(--yellow); min-height:1.4em; }

.info-list { display:grid; gap:1.6rem; }
.info-item { display:grid; grid-template-columns:auto 1fr; gap:1rem; align-items:start; }
.info-item .ico {
  width:42px;height:42px;flex:0 0 auto;
  display:grid;place-items:center;
  background: var(--surface); color: var(--yellow);
  clip-path: polygon(0 0,100% 0,100% 78%,78% 100%,0 100%);
}
.info-item h4 { font-family:"Plus Jakarta Sans",sans-serif; font-weight:800; text-transform:uppercase; letter-spacing:.1em; font-size:.78rem; color: var(--muted); margin-bottom:.25rem; }
.info-item a:hover { color: var(--yellow); }

/* ---------- Placeholder marker ---------- */
.placeholder {
  display:inline-block;
  border: 1px dashed var(--yellow);
  background: rgba(255,212,0,.07);
  color: var(--yellow);
  padding: .1rem .5rem;
  font-size: .82em;
  border-radius: 3px;
}
.ph-block {
  border: 1px dashed rgba(255,212,0,.5);
  background: rgba(255,212,0,.05);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  color: #e9e0b0;
  font-size:.95rem;
}
.ph-block strong { color: var(--yellow); }

/* ---------- Footer ---------- */
.site-footer { background: #050505; border-top: 1px solid var(--line); }
.footer-grid {
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding-block: clamp(3rem,6vw,5rem);
}
@media (max-width: 780px){ .footer-grid { grid-template-columns:1fr; } }
.footer-brand .crest { width: 84px; margin-bottom: 1.25rem; border-radius: 6px; }
.footer-brand p { color: var(--muted); max-width: 34ch; }
.footer h4 {
  font-family:"Plus Jakarta Sans",sans-serif; font-weight:800; text-transform:uppercase;
  letter-spacing:.14em; font-size:.76rem; color:#fff; margin-bottom:1.25rem;
}
.footer-links { display:grid; gap:.7rem; }
.footer-links a { color: var(--muted); font-size:.95rem; }
.footer-links a:hover { color: var(--yellow); }
.socials { display:flex; gap:.75rem; margin-top:1rem; }
.socials a {
  width:40px;height:40px;display:grid;place-items:center;
  background: var(--surface); color:#fff; border-radius: 4px;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.socials a:hover { background: var(--yellow); color:#111; }
.footer-bottom {
  border-top:1px solid var(--line);
  padding-block: 1.5rem;
  display:flex; flex-wrap:wrap; gap:.75rem 1.5rem;
  justify-content:space-between; align-items:center;
  font-size:.82rem; color: var(--muted-2);
}
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--yellow); }
.footer-legal { display:flex; gap:1.25rem; }
.footer-legal a { position:relative; }

/* ---------- Credit banner (reusable Designed by Stu component) ---------- */
.credit-banner { background: var(--ink); border-top: 1px solid var(--line); padding: clamp(28px, 4vw, 40px) 0; }
.credit-banner .wrap {
  display:flex; align-items:center; justify-content:center;
  gap:14px; flex-wrap:wrap; text-align:center;
  max-width: var(--maxw); margin-inline:auto; padding-inline: var(--gutter);
}
.credit-banner-text {
  font-family:"Plus Jakarta Sans", sans-serif;
  font-size: clamp(15px, 1.8vw, 19px); font-weight:600;
  color: var(--muted); letter-spacing:.2px;
}
.credit-banner-link {
  font-family:"Plus Jakarta Sans", sans-serif;
  font-size: clamp(15px, 1.8vw, 19px); font-weight:800;
  color:#fff; text-transform:uppercase; letter-spacing:1.5px;
  text-decoration:none; border-bottom:2px solid var(--yellow); padding-bottom:2px;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.credit-banner-link:hover { color: var(--yellow); border-bottom-color: var(--yellow); }
.credit-divider { width:8px; height:8px; background: var(--yellow); transform: skewX(-24deg); flex:none; }

/* ---------- Cookie consent ---------- */
.cookie-banner {
  position: fixed; left:0; right:0; bottom:0; z-index:200;
  background: rgba(12,12,12,.97);
  backdrop-filter: blur(12px);
  border-top: 2px solid var(--yellow);
  transform: translateY(110%);
  transition: transform .35s var(--ease);
}
.cookie-banner.is-shown { transform: translateY(0); }
.cookie-banner__inner {
  display:flex; align-items:center; justify-content:space-between;
  flex-wrap:wrap; gap:1rem 2rem;
  padding-block: 1.25rem;
}
.cookie-banner__text { color:#dcdcdc; font-size:.9rem; margin:0; max-width:70ch; }
.cookie-banner__text a { color: var(--yellow); border-bottom:1px solid rgba(255,212,0,.4); }
.cookie-banner__text a:hover { border-bottom-color: var(--yellow); }
.cookie-banner__actions { display:flex; gap:.75rem; flex:0 0 auto; }
.cookie-banner__actions .btn { padding:.7rem 1.4rem; font-size:.76rem; }
@media (max-width: 620px){
  .cookie-banner__actions { width:100%; }
  .cookie-banner__actions .btn { flex:1; justify-content:center; }
}

/* ---------- Reveal animation ---------- */
.reveal { opacity:0; transform: translateY(20px); transition: opacity .42s var(--ease), transform .42s var(--ease); }
.reveal.is-visible { opacity:1; transform:none; }
.reveal[data-delay="1"]{ transition-delay:.05s; }
.reveal[data-delay="2"]{ transition-delay:.1s; }
.reveal[data-delay="3"]{ transition-delay:.15s; }

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

/* ---------- Mobile nav ---------- */
@media (max-width: 940px){
  .nav-toggle { display:flex; }
  .nav-links {
    position: fixed;
    top: 78px; left: 0; right: 0;
    z-index: -1;                       /* behind the logo + toggle, so it slides out from under the bar */
    height: calc(100vh - 78px);
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    background: #080808;
    padding: 60px var(--gutter) 2rem;
    overflow-y: auto;
    transform: translateY(-100%);      /* parked off-screen above */
    transition: transform .4s var(--ease);
  }
  .nav-links.is-open { transform: translateY(0); }
  .brand-logo { height: 60px; margin-top: 0; }
  .nav-links a { display: block; padding: 1.5em; font-size: 1rem; border-bottom:1px solid var(--line); }
  .nav-links a::after { display:none; }
  .nav-cta { margin: 1.25rem 0 0; }
  .nav-cta .btn { display:flex; width:100%; justify-content:center; }
}

/* ---------- Utilities ---------- */
.mt-0{margin-top:0}.mt-1{margin-top:1rem}.mt-2{margin-top:2rem}.mt-3{margin-top:3rem}
.mb-2{margin-bottom:2rem}.mb-3{margin-bottom:3rem}
.maxw-sm{max-width:640px}.maxw-md{max-width:820px}
