/* ============================================================
   JACKSON BAKER® · jacksonbaker.co.uk · v1
   Mobile first: 360 → 768 → 1200
   ============================================================ */

/* --- 1. TOKENS --------------------------------------------- */
:root{
  --ecru:#ECE8DF;
  --ink:#101010;
  --olive:#55523F;
  --safety:#FF4D00;
  --steel:#8A867C;
  --hair:#D6D1C4;

  --font-sans:'Archivo','Helvetica Neue',Arial,sans-serif;
  --font-mono:'IBM Plex Mono',ui-monospace,Consolas,'Courier New',monospace;

  --gut:20px;
  --max:1200px;
  --nav-h:56px;
  --sec-y:64px;
}

@media (min-width:768px){ :root{ --gut:32px; --sec-y:96px; --nav-h:64px; } }
@media (min-width:1200px){ :root{ --gut:48px; --sec-y:128px; } }

/* --- 2. RESET ---------------------------------------------- */
*,*::before,*::after{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; }
body,h1,h2,h3,p,figure,fieldset,legend,ol,ul{ margin:0; padding:0; }
ol,ul{ list-style:none; }
fieldset{ border:0; min-width:0; }
img,svg{ display:block; max-width:100%; height:auto; }
button,input,textarea,select{ font:inherit; color:inherit; }
button{ background:none; border:0; cursor:pointer; }

/* Sharp corners everywhere. No exceptions. */
*{ border-radius:0 !important; }

body{
  background:var(--ecru);
  color:var(--ink);
  font-family:var(--font-sans);
  font-size:16px;
  line-height:1.6;
  font-weight:400;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

/* --- 3. TYPE ----------------------------------------------- */
.display{
  font-family:var(--font-sans);
  font-weight:680;
  font-stretch:125%;
  font-variation-settings:"wdth" 125;
  text-transform:uppercase;
  letter-spacing:0.03em;
  line-height:1.04;
}
.mono{
  font-family:var(--font-mono);
  font-weight:500;
  font-size:11px;
  line-height:1.5;
  letter-spacing:0.14em;
  text-transform:uppercase;
}
@media (min-width:768px){ .mono{ font-size:12px; } }

a{ color:inherit; text-decoration:none; }
p a{ text-decoration:underline; text-underline-offset:3px; }

/* --- 4. LAYOUT --------------------------------------------- */
.wrap{ width:100%; max-width:var(--max); margin-inline:auto; padding-inline:var(--gut); }
.wrap--narrow{ max-width:760px; }
.section{ padding-block:var(--sec-y); }
.section--rule{ border-top:1px solid var(--hair); }

[id]{ scroll-margin-top:calc(var(--nav-h) + 16px); }

.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; border:0;
}
.skip{
  position:absolute; left:-9999px; top:0; z-index:100;
  background:var(--ink); color:var(--ecru);
  padding:12px 16px; font-family:var(--font-mono); font-size:12px;
  letter-spacing:0.14em; text-transform:uppercase;
}
.skip:focus{ left:0; }

/* --- 5. FOCUS ---------------------------------------------- */
:focus-visible{ outline:2px solid var(--safety); outline-offset:2px; }

/* --- 6. THE STITCH (safety accent) ------------------------- */
.stitch{
  display:inline-block; flex:0 0 auto;
  width:7px; height:7px; background:var(--safety);
}

/* --- 7. BUTTONS -------------------------------------------- */
.btn{
  display:inline-flex; text-decoration:none; align-items:center; gap:10px;
  padding:14px 20px;
  background:var(--ink); color:var(--ecru);
  border:1px solid var(--ink);
  font-family:var(--font-mono); font-weight:500; font-size:11px;
  letter-spacing:0.14em; text-transform:uppercase; line-height:1;
  transition:background-color 160ms ease-out, color 160ms ease-out;
}
@media (min-width:768px){ .btn{ font-size:12px; padding:15px 24px; } }
.btn .stitch{ transition:transform 160ms ease-out; }
.btn:hover{ background:var(--olive); border-color:var(--olive); }
.btn:hover .stitch{ transform:translateX(4px); }

.btn--ghost{ background:transparent; color:var(--ink); border-color:var(--ink); }
.btn--ghost:hover{ background:var(--ink); color:var(--ecru); border-color:var(--ink); }

.btn--inverted{ background:var(--ecru); color:var(--ink); border-color:var(--ecru); }
.btn--inverted:hover{ background:var(--olive); color:var(--ecru); border-color:var(--olive); }

.btn[disabled]{ opacity:.35; cursor:not-allowed; }
.btn[disabled]:hover{ background:var(--ink); border-color:var(--ink); }
.btn[disabled]:hover .stitch{ transform:none; }

.cta-row{ display:flex; flex-wrap:wrap; gap:12px; }
.sec-cta{ margin-top:48px; display:flex; justify-content:center; }

.ghost-link{
  display:inline-block; border-bottom:1px solid var(--ink);
  padding-bottom:2px; color:var(--ink);
}
.ghost-link:hover{ color:var(--olive); border-color:var(--olive); }

/* --- 8. UTILITY BAR ---------------------------------------- */
.utility{ border-bottom:1px solid var(--hair); }
.utility__row{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; min-height:34px;
}
.utility__item{ color:var(--steel); white-space:nowrap; }
/* Narrow screens carry the status only. The domain is in the footer and in
   the address bar, the status is the line that has to survive. */
.utility__item--domain,.utility__item--mid{ display:none; }
@media (min-width:480px){ .utility__item--domain{ display:block; } }
@media (min-width:768px){ .utility__item--mid{ display:block; } }
.intake{ display:inline-flex; align-items:center; gap:8px; }

/* --- 9. NAV ------------------------------------------------ */
.nav{
  position:sticky; top:0; z-index:50;
  background:var(--ecru); border-bottom:1px solid var(--ink);
}
.nav__row{
  display:flex; align-items:center; gap:16px;
  min-height:var(--nav-h);
}
.nav__mark img{ height:24px; width:auto; }
.nav__toggle{
  margin-left:auto; color:var(--ink);
  padding:8px 0; letter-spacing:0.14em;
}
.nav__links{ display:none; }
.nav__links.is-open{
  display:flex; flex-direction:column; gap:0;
  position:absolute; left:0; right:0; top:100%;
  background:var(--ecru); border-bottom:1px solid var(--ink);
  padding:0 var(--gut);
}
.nav__links.is-open .nav__link{ padding:16px 0; border-top:1px solid var(--hair); }
.nav__link:hover{ color:var(--olive); }
.nav__cta{ padding:11px 16px; }

@media (min-width:768px){
  .nav__toggle{ display:none; }
  .nav__links{
    display:flex !important; position:static; flex-direction:row;
    gap:28px; margin-left:auto; padding:0; border:0; background:none;
  }
  .nav__links .nav__link{ padding:0; border:0; }
  .nav__cta{ margin-left:28px; }
}

/* --- 10. HERO ---------------------------------------------- */
.hero{ padding-block:56px 64px; }
@media (min-width:768px){ .hero{ padding-block:80px 96px; } }
@media (min-width:1200px){ .hero{ padding-block:112px 128px; } }

.hero__grid{ display:grid; gap:48px; align-items:center; }
@media (min-width:1200px){
  .hero__grid{ grid-template-columns:1fr minmax(0,560px); gap:64px; }
}
.hero__eyebrow{ color:var(--steel); margin-bottom:24px; }
.hero__title{
  font-size:clamp(40px,10vw,84px);
  letter-spacing:0.02em;
  margin-bottom:24px;
}
.hero__sub{ max-width:60ch; margin-bottom:32px; }
.hero__art img{ width:100%; max-width:560px; margin-inline:auto; }

/* --- 11. MARQUEE ------------------------------------------- */
.marquee{
  border-top:1px solid var(--ink); border-bottom:1px solid var(--ink);
  overflow:hidden; padding-block:14px;
}
.marquee__track{ display:flex; width:max-content; }
.marquee__group{
  display:flex; align-items:center; gap:0.5em;
  padding-right:0.5em; white-space:nowrap;
  font-weight:640; font-size:14px;
  letter-spacing:0.22em; text-transform:uppercase;
}
@media (min-width:768px){ .marquee__group{ font-size:18px; } }
.marquee__group b{ color:var(--safety); font-weight:640; }

/* --- 12. SECTION HEADS ------------------------------------- */
.sec-head{
  display:flex; align-items:baseline; justify-content:space-between;
  gap:24px; padding-bottom:24px; margin-bottom:48px;
  border-bottom:1px solid var(--ink);
}
.sec-head__title{ font-size:clamp(26px,5.2vw,48px); letter-spacing:0.02em; }
.sec-head__num{ color:var(--steel); text-align:right; flex:0 0 auto; }

/* --- 13. CARDS --------------------------------------------- */
.cards{ display:grid; gap:0; border-top:1px solid var(--ink); }
@media (min-width:768px){ .cards{ grid-template-columns:repeat(2,1fr); } }
@media (min-width:1200px){ .cards{ grid-template-columns:repeat(3,1fr); } }

.card{
  position:relative;
  display:flex; flex-direction:column;
  padding:28px 24px 24px;
  border-bottom:1px solid var(--ink);
  border-right:1px solid var(--ink);
  border-left:1px solid var(--ink);
  margin-top:-1px; margin-left:-1px;
  transition:box-shadow 160ms ease-out;
}
@media (min-width:768px){ .card{ padding:32px 28px 28px; } }
.card::before{
  content:""; position:absolute; inset:0 0 auto 0; height:3px;
  background:var(--safety); transform:scaleX(0); transform-origin:left center;
}
.card:hover{ box-shadow:inset 0 0 0 1px var(--ink); }
.card__code{ font-size:44px; line-height:1; letter-spacing:0.02em; }
@media (min-width:768px){ .card__code{ font-size:56px; } }
.card__name{ color:var(--ink); margin-top:12px; }
.card__body{ margin-top:16px; margin-bottom:28px; }
.micro{
  margin-top:auto; align-self:flex-start;
  border-bottom:1px solid var(--ink); padding-bottom:3px;
}
.micro:hover{ color:var(--olive); border-color:var(--olive); }

/* --- 14. METHOD -------------------------------------------- */
.steps{ border-top:1px solid var(--hair); }
.step-row{
  display:grid; gap:8px 32px;
  padding-block:28px; border-bottom:1px solid var(--hair);
}
@media (min-width:768px){
  .step-row{ grid-template-columns:80px 1fr; padding-block:36px; }
}
.step-row__num{ color:var(--steel); }
.step-row__title{ font-size:20px; letter-spacing:0.04em; margin-bottom:10px; }
@media (min-width:768px){ .step-row__title{ font-size:24px; } }
.step-row__body p{ max-width:62ch; }

.lines{
  margin-top:56px; display:grid;
  border:1px solid var(--ink);
}
@media (min-width:768px){ .lines{ grid-template-columns:1fr 1fr; } }
.lines__col{ padding:28px 24px; }
@media (min-width:768px){ .lines__col{ padding:32px 28px; } }
.lines__col + .lines__col{ border-top:1px solid var(--ink); }
@media (min-width:768px){
  .lines__col + .lines__col{ border-top:0; border-left:1px solid var(--ink); }
}
.lines__name{ color:var(--ink); margin-bottom:12px; }
.lines__col p{ max-width:52ch; }

/* --- 15. LABEL BAND ---------------------------------------- */
.band{ background:var(--ink); color:var(--ecru); padding-block:var(--sec-y); }
.band__inner{ display:flex; flex-direction:column; align-items:center; text-align:center; }
.band__title{ font-size:clamp(24px,5vw,44px); letter-spacing:0.04em; margin-bottom:40px; }
.band__art{ width:100%; max-width:640px; margin-bottom:40px; }
.band__meta{ color:var(--steel); margin-bottom:32px; }

/* --- 16. APPLICATION PANEL --------------------------------- */
.apply__sub{ max-width:52ch; margin-top:-24px; margin-bottom:40px; }

.panel{
  position:relative;
  background:var(--ecru); border:2px solid var(--ink);
  padding:0;
}
.panel__progress{ height:3px; background:var(--hair); }
.panel__fill{
  display:block; height:100%; width:33.333%;
  background:var(--safety);
  transition:width 240ms ease-out;
}
.panel__head{ display:flex; justify-content:flex-end; padding:16px 20px 0; }
@media (min-width:768px){ .panel__head{ padding:20px 28px 0; } }
.panel__step{ color:var(--steel); }

.form{ padding:16px 20px 24px; }
@media (min-width:768px){ .form{ padding:20px 28px 32px; } }

.step__title{ font-size:20px; letter-spacing:0.04em; margin-bottom:24px; display:block; width:100%; }
@media (min-width:768px){ .step__title{ font-size:26px; } }
.step__title:focus{ outline:none; }
.step__foot{ margin-top:28px; display:flex; }
.step__foot--split{ justify-content:space-between; align-items:center; gap:16px; flex-wrap:wrap; }
.back{
  color:var(--olive); font-family:var(--font-mono); font-weight:500;
  font-size:11px; letter-spacing:0.14em; text-transform:uppercase;
  border-bottom:1px solid var(--hair); padding-bottom:3px;
}
.back:hover{ color:var(--ink); border-color:var(--ink); }
.step[data-step="2"] .step__foot{ margin-top:24px; }

.helper{ color:var(--olive); font-size:14px; margin-top:16px; }
.helper--foot{ margin-top:20px; }

/* Chips */
.chips{ display:grid; gap:10px; }
@media (min-width:520px){ .chips{ grid-template-columns:1fr 1fr; } }
.chip{
  display:flex; align-items:center; gap:10px;
  padding:14px 16px; text-align:left;
  border:1px solid var(--ink); color:var(--ink);
  transition:background-color 140ms ease-out, color 140ms ease-out;
}
.chip .stitch{ visibility:hidden; }
.chip:hover{ background:var(--hair); }
.chip[aria-pressed="true"]{ background:var(--ink); color:var(--ecru); }
.chip[aria-pressed="true"] .stitch{ visibility:visible; }

/* Option rows */
.options{ display:grid; gap:10px; }
.option{
  display:block; width:100%; text-align:left;
  padding:18px 16px; border:1px solid var(--ink); color:var(--ink);
  transition:background-color 140ms ease-out, color 140ms ease-out;
}
.option:hover,.option.is-picked{ background:var(--ink); color:var(--ecru); }

/* Fields */
.fields{ display:grid; gap:14px; }
@media (min-width:640px){ .fields{ grid-template-columns:1fr 1fr; } }
.field{ position:relative; }
.field--wide{ grid-column:1 / -1; }
.field input,.field textarea{
  width:100%; background:var(--ecru); color:var(--ink);
  border:1px solid var(--ink);
  padding:24px 14px 10px;
  font-size:16px; line-height:1.4;
}
.field textarea{ resize:vertical; min-height:96px; }
.field label{
  position:absolute; left:14px; top:15px;
  color:var(--steel); pointer-events:none;
  transition:transform 140ms ease-out, color 140ms ease-out;
  transform-origin:left top;
}
.field input:focus + label,
.field textarea:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:not(:placeholder-shown) + label{
  transform:translateY(-8px) scale(.88); color:var(--ink);
}
.field input:focus,.field textarea:focus{
  outline:none;
  box-shadow:inset 0 0 0 1px var(--ink), inset 0 -3px 0 var(--safety);
}
.field input[aria-invalid="true"]{ box-shadow:inset 0 0 0 1px var(--ink); }
.err{ display:flex; align-items:center; gap:8px; color:var(--ink); margin-top:6px; }
.err::before{ content:""; width:7px; height:7px; background:var(--safety); flex:0 0 auto; }
.err:empty{ display:none; }

.hp{ position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }

.form__error{
  margin-top:20px; padding:14px 16px;
  border:1px solid var(--ink); color:var(--ink);
  line-height:1.6; letter-spacing:0.08em;
}
.form__error a{ text-decoration:underline; text-underline-offset:3px; }

.noscript{ padding:20px; border-bottom:1px solid var(--hair); }
.noscript__label{ color:var(--steel); margin-bottom:10px; }
.noscript p + p{ margin-top:14px; }

/* Success */
.success{ padding:24px 20px 32px; }
@media (min-width:768px){ .success{ padding:28px 28px 40px; } }
/* Spec calls for mono here, large. Mono stays labels-and-codes only elsewhere. */
.success__title{
  font-family:var(--font-mono); font-weight:500;
  font-size:clamp(20px,4.4vw,30px); line-height:1.2;
  letter-spacing:0.06em; text-transform:uppercase;
}
.success__ref{ color:var(--steel); margin-top:16px; }
.success__body{ margin-top:20px; max-width:44ch; }
.success .ghost-link{ margin-top:28px; }

/* --- 17. FOOTER -------------------------------------------- */
.footer{ border-top:1px solid var(--ink); padding-block:32px 40px; }
.footer__top{
  display:flex; flex-wrap:wrap; align-items:center;
  justify-content:space-between; gap:20px;
  padding-bottom:24px;
}
.footer__mark img{ height:22px; width:auto; }
.footer__links{ display:flex; flex-wrap:wrap; gap:20px; }
.footer__links a:hover{ color:var(--olive); }
.footer__bottom{
  display:flex; flex-wrap:wrap; align-items:center;
  justify-content:space-between; gap:14px;
  padding-top:20px; border-top:1px solid var(--hair);
}
.footer__legal{ color:var(--steel); }
.footer__bottom .intake{ color:var(--steel); }

/* --- 18. MOTION -------------------------------------------- */
@media (prefers-reduced-motion:no-preference){
  html{ scroll-behavior:smooth; }

  .js [data-reveal]{ opacity:0; transform:translateY(12px); }
  .js [data-reveal].is-in{
    opacity:1; transform:none;
    transition:opacity 400ms ease-out, transform 400ms ease-out;
    transition-delay:var(--d,0ms);
  }

  .card::before{ transition:transform 200ms ease-out; }
  .card:hover::before{ transform:scaleX(1); }

  .marquee__track{ animation:slide 32s linear infinite; }
  @keyframes slide{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }

  .step.is-in{ animation:stepIn 200ms ease-out both; }
  @keyframes stepIn{ from{ opacity:0; transform:translateY(8px); } to{ opacity:1; transform:none; } }

  .success.is-in{ animation:stepIn 200ms ease-out both; }
}

/* Belt and braces: with reduced motion nothing moves anywhere, and every
   element is simply visible. The marquee keyframes and the reveal offsets
   only exist inside the no-preference block above, so they never apply. */
@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{
    animation-duration:0.01ms !important;
    animation-iteration-count:1 !important;
    transition-duration:0.01ms !important;
    transition-delay:0ms !important;
    scroll-behavior:auto !important;
  }
}

/* ============================================================
   PART 2 · SERVICE PAGES + EXPANDED APPLICATION
   ============================================================ */

/* --- 19. CARDS AS LINKS ------------------------------------ */
.card__link{ display:block; color:inherit; }
.card__link:hover .card__name{ color:var(--olive); }
.card__foot{
  margin-top:auto; padding-top:20px;
  display:flex; flex-wrap:wrap; gap:8px 20px; align-items:center;
}
.card__foot .micro{ margin-top:0; }

/* --- 20. SERVICE PAGE -------------------------------------- */
.page-hero{ padding-block:48px 56px; border-bottom:1px solid var(--ink); }
@media (min-width:768px){ .page-hero{ padding-block:72px 80px; } }
.crumb{ color:var(--steel); margin-bottom:28px; display:flex; gap:10px; flex-wrap:wrap; }
.crumb a{ color:var(--olive); border-bottom:1px solid var(--hair); padding-bottom:2px; }
.crumb a:hover{ color:var(--ink); border-color:var(--ink); }
.page-hero__code{ font-size:clamp(56px,16vw,140px); line-height:.9; letter-spacing:0.02em; }
.page-hero__name{ font-size:clamp(22px,4.4vw,38px); letter-spacing:0.04em; margin-top:12px; }
.page-hero__line{ margin-top:24px; max-width:52ch; font-size:18px; }
@media (min-width:768px){ .page-hero__line{ font-size:20px; } }

.block{ padding-block:48px; border-bottom:1px solid var(--hair); }
@media (min-width:768px){ .block{ padding-block:64px; } }
.block__grid{ display:grid; gap:20px; }
@media (min-width:900px){ .block__grid{ grid-template-columns:200px 1fr; gap:48px; } }
.block__label{ color:var(--steel); }
.block__body > * + *{ margin-top:18px; }
.block__body p{ max-width:64ch; }

.ticks{ display:grid; gap:0; border-top:1px solid var(--hair); }
.ticks li{
  display:grid; grid-template-columns:auto 1fr; gap:14px;
  padding:16px 0; border-bottom:1px solid var(--hair);
  max-width:64ch;
}
.ticks li::before{
  content:""; width:7px; height:7px; background:var(--ink);
  margin-top:.55em;
}
.ticks li:first-child::before{ background:var(--safety); }

.related{ display:grid; gap:0; border-top:1px solid var(--ink); }
@media (min-width:768px){ .related{ grid-template-columns:repeat(3,1fr); } }
.related__item{
  display:block; padding:24px 20px; color:inherit;
  border-bottom:1px solid var(--ink); border-right:1px solid var(--ink);
  border-left:1px solid var(--ink);
  margin-left:-1px; margin-top:-1px;
  transition:background-color 160ms ease-out, color 160ms ease-out;
}
.related__item:hover{ background:var(--ink); color:var(--ecru); }
.related__code{ font-size:32px; line-height:1; }
.related__name{ margin-top:8px; color:var(--ink); }
.related__item:hover .related__name{ color:var(--ecru); }

.page-cta{ padding-block:56px 72px; display:flex; flex-direction:column; align-items:flex-start; gap:20px; }
.page-cta__title{ font-size:clamp(22px,4.4vw,36px); letter-spacing:0.03em; }

/* --- 21. EXPANDED FORM CONTROLS ---------------------------- */
.fields--stack{ grid-template-columns:1fr; }

.field select{
  width:100%; background:var(--ecru); color:var(--ink);
  border:1px solid var(--ink);
  padding:24px 14px 10px;
  font-size:16px; line-height:1.4;
  appearance:none; -webkit-appearance:none;
  background-image:linear-gradient(45deg,transparent 50%,var(--ink) 50%),
                   linear-gradient(135deg,var(--ink) 50%,transparent 50%);
  background-position:calc(100% - 18px) calc(50% + 4px), calc(100% - 12px) calc(50% + 4px);
  background-size:6px 6px, 6px 6px;
  background-repeat:no-repeat;
}
.field select:focus{
  outline:none;
  box-shadow:inset 0 0 0 1px var(--ink), inset 0 -3px 0 var(--safety);
}
/* a select always has a value, so its label sits raised permanently */
.field--select label{ transform:translateY(-8px) scale(.88); color:var(--ink); }

.phone{ display:grid; grid-template-columns:118px 1fr; gap:10px; }
.phone .field{ margin:0; }

.radios{ display:grid; gap:10px; }
.radios input{
  position:absolute; width:1px; height:1px; opacity:0;
  margin:0; pointer-events:none;
}
.radios label{
  display:flex; align-items:center; gap:10px;
  padding:16px; border:1px solid var(--ink); cursor:pointer;
  font-family:var(--font-mono); font-weight:500; font-size:11px;
  letter-spacing:0.14em; text-transform:uppercase; line-height:1;
  transition:background-color 140ms ease-out, color 140ms ease-out;
}
@media (min-width:768px){ .radios label{ font-size:12px; } }
.radios label::before{
  content:""; width:7px; height:7px; background:var(--safety);
  flex:0 0 auto; visibility:hidden;
}
.radios label:hover{ background:var(--hair); }
.radios input:checked + label{ background:var(--ink); color:var(--ecru); }
.radios input:checked + label::before{ visibility:visible; }
.radios input:focus-visible + label{ outline:2px solid var(--safety); outline-offset:2px; }

.group{ margin-top:28px; }
.group:first-child{ margin-top:0; }
.group__label{ color:var(--steel); display:block; margin-bottom:14px; }
.group__legend{
  color:var(--steel); font-family:var(--font-mono); font-weight:500;
  font-size:11px; letter-spacing:0.14em; text-transform:uppercase;
  padding:0; margin-bottom:14px; display:block; width:100%;
}
@media (min-width:768px){ .group__legend{ font-size:12px; } }
.req{ color:var(--olive); }
.page-hero__title{ display:block; }
.page-hero__code,.page-hero__name{ display:block; }

/* Without JavaScript the toggle cannot open anything, so show the links
   outright rather than hiding them behind a dead button. */
.no-js .nav__toggle{ display:none; }
.no-js .nav__row{ flex-wrap:wrap; row-gap:4px; padding-block:8px; }
.no-js .nav__links{
  display:flex; flex-direction:row; flex-wrap:wrap;
  gap:0 20px; margin-left:auto; position:static;
  padding:0; border:0; background:none;
}
.no-js .nav__links .nav__link{ padding:0; border:0; }

/* Section opener, sits between the section rule and the grid. */
.sec-intro{
  max-width:58ch; margin-top:-24px; margin-bottom:40px;
  font-size:18px;
}
@media (min-width:768px){ .sec-intro{ font-size:19px; } }
