@font-face {
  font-family: "Archivo";
  src: url("../fonts/archivo-variable.woff2") format("woff2-variations");
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Sans";
  src: url("../fonts/ibm-plex-sans-regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Sans";
  src: url("../fonts/ibm-plex-sans-semibold.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("../fonts/ibm-plex-mono-regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --black: #14140f;
  --concrete: #c9c5bc;
  --dust: #e8e4dc;
  --hazard: #f2c300;
  --steel: #3d3f3c;
  --white: #fff;
  --gutter: clamp(20px, 4vw, 64px);
  --section-space: clamp(80px, 10vh, 140px);
  --display: "Archivo", "Arial Black", sans-serif;
  --body: "IBM Plex Sans", Arial, sans-serif;
  --mono: "IBM Plex Mono", Consolas, monospace;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--black); }
body { margin: 0; color: var(--black); background: var(--dust); font: 400 18px/1.6 var(--body); overflow-x: clip; }
body.menu-open { overflow: hidden; }
a { color: inherit; }
button { color: inherit; }
:focus-visible { outline: 3px solid var(--hazard); outline-offset: 4px; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 1000; padding: 10px 14px; color: var(--black); background: var(--hazard); font: 400 14px/1 var(--mono); transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }
.shell { width: min(100%, 1600px); margin-inline: auto; padding-inline: var(--gutter); }
.grid-12 { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: clamp(12px, 1.7vw, 28px); }
.mono { font-family: var(--mono); text-transform: uppercase; letter-spacing: .1em; }

.masthead { position: sticky; top: 0; z-index: 100; isolation: isolate; height: 72px; color: var(--white); background: var(--black); border-bottom: 1px solid var(--steel); }
.masthead__inner { height: 100%; display: flex; align-items: center; gap: clamp(24px, 4vw, 72px); }
.wordmark { flex: 0 0 auto; color: var(--white); font: 850 21px/.9 var(--display); font-stretch: expanded; font-variation-settings: "wdth" 125, "wght" 850; letter-spacing: -.03em; text-decoration: none; text-transform: uppercase; }
.desktop-nav { margin-left: auto; }
.desktop-nav ul { display: flex; align-items: center; gap: clamp(20px, 2.6vw, 42px); margin: 0; padding: 0; list-style: none; }
.desktop-nav a, .header-phone { font: 400 13px/1.2 var(--mono); letter-spacing: .1em; text-decoration: none; text-transform: uppercase; }
.desktop-nav a { padding-block: 10px 8px; }
.desktop-nav a[aria-current="page"] { border-bottom: 3px solid var(--hazard); }
.header-phone { padding-bottom: 5px; border-bottom: 2px solid var(--hazard); }
.menu-toggle { display: none; margin-left: auto; padding: 10px 0; border: 0; background: none; font: 400 14px/1 var(--mono); letter-spacing: .1em; }
.mobile-menu { display: none; }

.hero { position: relative; z-index: 0; isolation: isolate; min-height: clamp(620px, calc(100svh - 280px), 720px); color: var(--white); background: var(--black); display: flex; align-items: center; }
.hero__inner { width: 100%; padding-block: clamp(56px, 8vh, 96px); }
.hero__title-wrap { position: relative; grid-column: 1 / 13; isolation: isolate; }
.hero__title-wrap::before { content: ""; position: absolute; z-index: -1; top: 51%; left: calc(var(--gutter) * -1); width: calc(100% + var(--gutter) * 2); height: 4px; background: var(--hazard); transform-origin: left; }
.js .hero__title-wrap::before { transform: scaleX(0); }
.js .hero__title-wrap.is-visible::before { animation: cut-in 180ms linear forwards; }
h1, h2, h3 { margin: 0; font-family: var(--display); font-stretch: expanded; font-variation-settings: "wdth" 125, "wght" 860; }
h1 { max-width: 12ch; font-size: clamp(68px, 8.4vw, 122px); font-weight: 860; line-height: .86; letter-spacing: -.055em; text-transform: uppercase; }
.hero__lower { grid-column: 1 / 13; display: grid; grid-template-columns: 7fr 5fr; gap: clamp(24px, 4vw, 64px); align-items: end; margin-top: clamp(36px, 6vh, 68px); }
.hero__standfirst { max-width: 52ch; margin: 0; color: var(--concrete); font-size: clamp(18px, 1.45vw, 22px); line-height: 1.55; }
.hero__actions { justify-self: end; display: flex; align-items: flex-end; gap: 24px; }
.hero__location { color: var(--concrete); font-size: 12px; line-height: 1.45; white-space: nowrap; }
.cta { display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: 0 26px; color: var(--black); background: var(--hazard); border: 2px solid var(--hazard); font: 400 14px/1 var(--mono); letter-spacing: .1em; text-decoration: none; text-transform: uppercase; transition: background 100ms linear, color 100ms linear; }
.cta:hover { color: var(--hazard); background: var(--black); }

.cut-rule { height: 4px; background: var(--hazard); transform-origin: left; }
.js .cut-rule { transform: scaleX(0); }
.js .cut-rule.is-visible { animation: cut-in 180ms linear forwards; }
@keyframes cut-in { to { transform: scaleX(1); } }

.band { position: relative; padding-block: var(--section-space); }
.band--dust { color: var(--black); background: var(--dust); }
.band--black { color: var(--white); background: var(--black); }
.band--concrete { color: var(--black); background: var(--concrete); }
.section-head { margin-bottom: clamp(48px, 7vw, 88px); border-top: 1px solid currentColor; border-bottom: 1px solid currentColor; }
.section-head > * { grid-column: 1 / 9; padding-block: 20px; }
.section-label { display: block; margin-bottom: 10px; font: 400 13px/1.2 var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.section-head h2, .split-copy h2, .cta-band h2 { font-size: clamp(45px, 5vw, 72px); font-weight: 850; line-height: .94; letter-spacing: -.04em; }
.section-intro { grid-column: 10 / 13; align-self: end; margin: 0; padding-block: 20px; border-left: 1px solid currentColor; padding-left: clamp(16px, 2vw, 30px); }

.address__heading { grid-column: 1 / 5; align-self: start; }
.address__body { grid-column: 5 / 13; }
.address__body address { margin: 0 0 36px; font-style: normal; }
.address__line { display: block; font: 850 clamp(50px, 6.4vw, 96px)/.92 var(--display); font-stretch: expanded; font-variation-settings: "wdth" 125, "wght" 850; letter-spacing: -.045em; text-transform: uppercase; }
.address__phone { display: inline-block; margin-top: 22px; font: 400 clamp(18px, 2vw, 27px)/1.2 var(--mono); letter-spacing: .08em; text-decoration-thickness: 3px; text-decoration-color: var(--black); text-underline-offset: 8px; }
.address__why { max-width: 59ch; margin: 0; font-size: 20px; }

.tickets { display: grid; grid-template-columns: 7fr 5fr; gap: clamp(20px, 2vw, 32px); }
.ticket { min-height: 390px; display: flex; flex-direction: column; padding: clamp(28px, 3vw, 48px); border: 2px solid var(--steel); border-top: 6px solid var(--hazard); }
.ticket:nth-child(3) { grid-column: 5 / 13; min-height: 350px; }
.ticket__number { margin-bottom: auto; color: var(--hazard); font: 400 14px/1 var(--mono); letter-spacing: .12em; }
.band--dust .ticket__number { color: var(--black); }
.ticket h3 { margin: 48px 0 18px; font-size: clamp(34px, 3.4vw, 52px); font-weight: 820; line-height: .95; letter-spacing: -.035em; }
.ticket p { max-width: 48ch; margin: 0 0 30px; color: var(--concrete); }
.band--dust .ticket p { color: var(--steel); }
.text-link { align-self: flex-start; font: 400 13px/1.35 var(--mono); letter-spacing: .08em; text-decoration: none; text-transform: uppercase; border-bottom: 2px solid var(--hazard); }
.text-link::after { content: ""; display: block; width: 0; height: 2px; margin-bottom: -4px; background: currentColor; transition: width 180ms linear; }
.text-link:hover::after { width: 100%; }

.split-copy { row-gap: 48px; }
.split-copy h2 { grid-column: 1 / 6; }
.split-copy__body { grid-column: 7 / 13; }
.split-copy__body p { max-width: 62ch; margin: 0; font-size: clamp(18px, 1.55vw, 22px); }
.split-copy__body p + p { margin-top: 32px; }
.scope-block { margin-top: clamp(72px, 10vw, 140px); padding-top: 48px; border-top: 1px solid var(--steel); }
.scope-block h3 { margin-bottom: 24px; font-size: clamp(34px, 4vw, 56px); line-height: .95; }

.cta-band { padding-block: clamp(72px, 8vw, 110px); color: var(--black); background: var(--hazard); }
.cta-band h2 { grid-column: 1 / 8; }
.cta-band__body { grid-column: 9 / 13; align-self: end; }
.cta-band__body p { margin: 0 0 28px; }
.cta-band .cta { color: var(--white); background: var(--black); border-color: var(--black); }
.cta-band .cta:hover { color: var(--black); background: transparent; }

.footer { padding: 64px 0 92px; color: var(--concrete); background: var(--black); border-top: 1px solid var(--steel); }
.footer__wordmark { grid-column: 1 / 5; color: var(--white); font: 850 clamp(28px, 3vw, 44px)/.9 var(--display); font-stretch: expanded; font-variation-settings: "wdth" 125, "wght" 850; letter-spacing: -.04em; text-transform: uppercase; }
.footer nav { grid-column: 6 / 13; }
.footer ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 30px; margin: 0; padding: 0; list-style: none; }
.footer a { font: 400 13px/1.5 var(--mono); letter-spacing: .07em; text-transform: uppercase; text-underline-offset: 5px; }
.mobile-call { display: none; }

/* Turn 2: services index and long-form service pages */
.hero--inner { min-height: clamp(580px, calc(100svh - 300px), 680px); }
.hero--inner h1 { max-width: 11ch; font-size: clamp(62px, 7.4vw, 108px); }
.hero--inner .hero__standfirst { max-width: 60ch; }
.prose-band__index { grid-column: 1 / 3; color: var(--hazard); font: 400 14px/1 var(--mono); letter-spacing: .12em; }
.band--dust .prose-band__index, .band--concrete .prose-band__index { color: var(--black); }
.prose-band__heading { grid-column: 3 / 7; font-size: clamp(42px, 4.7vw, 68px); line-height: .94; letter-spacing: -.04em; }
.prose-band__copy { grid-column: 8 / 13; align-self: end; }
.prose-band__copy p { max-width: 58ch; margin: 0; font-size: clamp(19px, 1.55vw, 22px); line-height: 1.65; }
.prose-band--feature .prose-band__heading { grid-column: 2 / 7; }
.prose-band--feature .prose-band__copy { grid-column: 8 / 13; }
.limits-notice { padding-block: clamp(72px, 9vw, 124px); color: var(--white); background: var(--black); border-top: 10px solid var(--hazard); }
.limits-notice__label { grid-column: 1 / 3; color: var(--hazard); font: 400 14px/1.3 var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.limits-notice h2 { grid-column: 3 / 8; font-size: clamp(46px, 5.4vw, 78px); line-height: .92; letter-spacing: -.045em; }
.limits-notice p { grid-column: 9 / 13; align-self: end; max-width: 48ch; margin: 0; color: var(--concrete); font-size: clamp(18px, 1.5vw, 21px); line-height: 1.65; }
.process-heading { margin-bottom: clamp(48px, 6vw, 80px); }
.process-heading__label { grid-column: 1 / 3; color: var(--hazard); }
.process-heading h2 { grid-column: 3 / 10; font-size: clamp(48px, 5.8vw, 82px); line-height: .92; letter-spacing: -.045em; }
.process-tickets { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: clamp(20px, 2vw, 32px); }
.process-ticket { min-height: 320px; display: flex; flex-direction: column; padding: clamp(28px, 3vw, 44px); border: 2px solid var(--steel); border-top: 6px solid var(--hazard); }
.process-ticket:nth-child(1) { grid-column: 1 / 8; }
.process-ticket:nth-child(2) { grid-column: 8 / 13; }
.process-ticket:nth-child(3) { grid-column: 1 / 6; }
.process-ticket:nth-child(4) { grid-column: 6 / 13; }
.process-ticket__number { color: var(--hazard); font: 400 14px/1 var(--mono); letter-spacing: .12em; }
.process-ticket h3 { margin-top: auto; padding-top: 72px; font-size: clamp(34px, 3.4vw, 52px); line-height: .95; letter-spacing: -.035em; }
.process-ticket p { max-width: 44ch; margin: 18px 0 0; color: var(--concrete); }
.related { padding-block: clamp(60px, 7vw, 96px); background: var(--concrete); }
.related h2 { grid-column: 1 / 5; font-size: clamp(36px, 4vw, 56px); line-height: .95; }
.related__links { grid-column: 6 / 13; display: flex; flex-wrap: wrap; align-items: flex-end; gap: 20px 36px; }
.related__links a { font: 400 14px/1.4 var(--mono); letter-spacing: .08em; text-transform: uppercase; text-decoration-thickness: 2px; text-decoration-color: var(--hazard); text-underline-offset: 7px; }

/* Turn 3: candour, contact and legal pages */
.candour-notice { padding-block: clamp(82px, 10vw, 140px); color: var(--white); background: var(--black); border-top: 12px solid var(--hazard); }
.candour-notice__label { grid-column: 1 / 3; color: var(--hazard); font: 400 14px/1.3 var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.candour-notice h2 { grid-column: 3 / 8; font-size: clamp(48px, 5.7vw, 82px); line-height: .9; letter-spacing: -.05em; }
.candour-notice__copy { grid-column: 9 / 13; align-self: end; }
.candour-notice__copy p { max-width: 48ch; margin: 0; color: var(--concrete); font-size: clamp(18px, 1.45vw, 21px); line-height: 1.65; }
.location-statement { padding-block: clamp(76px, 9vw, 124px); color: var(--black); background: var(--concrete); }
.location-statement__label { grid-column: 1 / 3; font: 400 14px/1.3 var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.location-statement h2 { grid-column: 3 / 7; font-size: clamp(44px, 5vw, 72px); line-height: .94; }
.location-statement p { grid-column: 8 / 13; align-self: end; margin: 0; font: 850 clamp(40px, 5vw, 76px)/.94 var(--display); font-stretch: expanded; font-variation-settings: "wdth" 125, "wght" 850; letter-spacing: -.04em; text-transform: uppercase; }
.contact-grid { align-items: start; }
.contact-details { grid-column: 1 / 6; }
.contact-form-wrap { grid-column: 7 / 13; border-top: 6px solid var(--hazard); padding-top: 32px; }
.contact-block + .contact-block { margin-top: 56px; padding-top: 48px; border-top: 1px solid var(--steel); }
.contact-block h2, .contact-form-wrap h2 { margin-bottom: 20px; font-size: clamp(38px, 4vw, 58px); line-height: .95; }
.contact-block p, .contact-form-wrap > p { max-width: 48ch; margin: 0; }
.contact-phone { display: inline-block; font: 400 clamp(22px, 2.5vw, 34px)/1.2 var(--mono); letter-spacing: .06em; text-decoration-thickness: 3px; text-decoration-color: var(--hazard); text-underline-offset: 8px; }
.contact-address { font-style: normal; font-size: clamp(20px, 2vw, 28px); line-height: 1.45; }
.quote-form { margin-top: 42px; }
.field { margin-top: 28px; }
.field:first-child { margin-top: 0; }
.field label { display: block; margin-bottom: 10px; font: 400 13px/1.3 var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.field input, .field textarea { width: 100%; border: 2px solid var(--steel); border-radius: 0; padding: 15px 16px; color: var(--black); background: var(--white); font: 400 18px/1.5 var(--body); }
.field textarea { min-height: 180px; resize: vertical; }
.field input:focus, .field textarea:focus { outline: 3px solid var(--hazard); outline-offset: 3px; border-color: var(--black); }
.field [aria-invalid="true"] { border-color: #8d1a12; }
.field-error { min-height: 24px; margin: 6px 0 0; color: #76140d; font: 600 15px/1.4 var(--body); }
.form-status { margin-top: 26px; padding: 20px; border: 2px solid var(--black); border-left: 8px solid var(--hazard); font-weight: 600; }
.form-status[hidden] { display: none; }
.quote-form .cta { margin-top: 8px; }
.legal-hero { padding-block: clamp(90px, 12vw, 170px); color: var(--white); background: var(--black); }
.legal-hero h1 { grid-column: 1 / 11; font-size: clamp(70px, 9vw, 128px); }
.legal-copy { padding-block: var(--section-space); background: var(--dust); }
.legal-copy__rail { grid-column: 1 / 3; font: 400 13px/1.5 var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.legal-copy__body { grid-column: 4 / 10; }
.legal-copy section + section { margin-top: 64px; padding-top: 48px; border-top: 1px solid var(--steel); }
.legal-copy h2 { margin-bottom: 20px; font-size: clamp(32px, 3.5vw, 48px); line-height: 1; }
.legal-copy p { max-width: 64ch; margin: 0; }
.legal-copy p + p { margin-top: 20px; }

@media (max-width: 900px) {
  body { padding-bottom: 58px; font-size: 17px; }
  .masthead { height: 64px; }
  .wordmark { font-size: 18px; }
  .desktop-nav, .header-phone { display: none; }
  .menu-toggle { display: block; }
  .mobile-menu { position: fixed; z-index: 90; inset: 64px 0 58px; display: flex; flex-direction: column; padding: 32px 20px 24px; color: var(--white); background: var(--black); visibility: hidden; transform: translateX(100%); transition: transform 180ms linear, visibility 0s 180ms; }
  .mobile-menu.is-open { visibility: visible; transform: translateX(0); transition-delay: 0s; }
  .mobile-menu ul { margin: 0; padding: 0; list-style: none; }
  .mobile-menu li { border-bottom: 1px solid var(--steel); }
  .mobile-menu a { display: block; padding: 16px 0; font: 820 36px/.95 var(--display); font-stretch: expanded; font-variation-settings: "wdth" 125, "wght" 820; letter-spacing: -.035em; text-decoration: none; text-transform: uppercase; }
  .mobile-menu__phone { margin-top: auto; padding-top: 24px; font: 400 17px/1.3 var(--mono) !important; color: var(--hazard); }
  .mobile-call { position: fixed; z-index: 110; bottom: 0; left: 0; right: 0; height: 58px; display: flex; align-items: center; justify-content: center; color: var(--black); background: var(--hazard); font: 400 15px/1 var(--mono); letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
  .grid-12 { display: block; }
  .hero { min-height: calc(100svh - 64px - 58px); }
  .hero__inner { padding-block: 48px 52px; }
  h1 { max-width: 8.5ch; font-size: clamp(44px, 14.6vw, 58px); line-height: .87; letter-spacing: -.05em; }
  .hero__title-wrap::before { top: 52%; }
  .hero__lower { display: block; margin-top: 38px; }
  .hero__standfirst { max-width: 32ch; font-size: 18px; }
  .hero__actions { display: block; margin-top: 30px; }
  .hero__location { margin-bottom: 20px; white-space: normal; }
  .section-head > * { padding-block: 16px; }
  .section-intro { padding-left: 0; border-left: 0; border-top: 1px solid currentColor; }
  .address__body { margin-top: 42px; }
  .address__line { font-size: clamp(43px, 13vw, 58px); overflow-wrap: anywhere; }
  .address__why { font-size: 18px; }
  .tickets { display: block; }
  .ticket, .ticket:nth-child(3) { min-height: 0; margin-top: 20px; }
  .ticket:first-child { margin-top: 0; }
  .ticket__number { margin-bottom: 64px; }
  .split-copy__body { margin-top: 44px; }
  .cta-band__body { margin-top: 36px; }
  .footer__wordmark { margin-bottom: 42px; }
  .footer ul { grid-template-columns: 1fr; }
  .hero--inner { min-height: calc(100svh - 64px - 58px); }
  .hero--inner h1 { max-width: 100%; font-size: 44px; font-stretch: 108%; font-variation-settings: "wdth" 108, "wght" 860; letter-spacing: -.055em; }
  .prose-band__index { margin-bottom: 32px; }
  .prose-band__copy { margin-top: 38px; }
  .limits-notice__label { display: block; margin-bottom: 34px; }
  .limits-notice h2 { margin-bottom: 38px; }
  .limits-notice p { font-size: 18px; }
  .process-heading__label { display: block; margin-bottom: 28px; }
  .process-tickets { display: block; }
  .process-ticket { min-height: 0; margin-top: 20px; }
  .process-ticket:first-child { margin-top: 0; }
  .process-ticket h3 { padding-top: 64px; }
  .related__links { margin-top: 36px; display: grid; gap: 22px; }
  .candour-notice__label { display: block; margin-bottom: 34px; }
  .candour-notice h2 { margin-bottom: 38px; font-size: 46px; }
  .candour-notice__copy p { font-size: 18px; }
  .location-statement__label { display: block; margin-bottom: 28px; }
  .location-statement h2 { margin-bottom: 34px; }
  .location-statement p { font-size: 44px; }
  .contact-form-wrap { margin-top: 72px; }
  .contact-phone { font-size: 22px; }
  .legal-hero h1 { font-size: 64px; }
  .legal-copy__rail { margin-bottom: 42px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js .cut-rule, .js .hero__title-wrap::before { transform: scaleX(1); }
}
