/* ==========================================================================
   Unsworth Commercial Tyres & Repairs Ltd
   Palette and typographic voice are taken from the company's own vehicle
   livery: deep navy bodywork, an electric blue stripe, retroreflective
   white extended-bold signwriting, and red/yellow rear-door chevrons.
   ========================================================================== */

:root {
  /* Colour, sampled from the livery photography */
  --void:    #05070e;   /* night ground */
  --void-2:  #03040a;   /* footer, deepest */
  --navy:    #0b1330;   /* bodywork panel */
  --navy-2:  #0e1839;   /* raised panel */
  --blue:    #0b62c4;   /* the stripe */
  --beam:    #4d9bff;   /* worklamp, signal states */
  --white:   #edf1f7;   /* reflective vinyl */
  --grey:    #8f98a8;   /* secondary text */
  --grey-2:  #6a7385;   /* tertiary text */
  --rule:    rgba(141, 158, 190, 0.22);
  --rule-2:  rgba(141, 158, 190, 0.12);

  /* Rear-door chevrons. Used once, on the hero edge. */
  --haz-red: #c8102e;
  --haz-yel: #d7e600;

  /* Type */
  --face: "Archivo", "Helvetica Neue", Arial, system-ui, sans-serif;
  --t-dial:   clamp(1.8rem, 6.4vw, 5.5rem);
  --t-h1:     clamp(1.875rem, 4vw, 3.25rem);
  /* Kept below the h1 so the hero still outranks every section heading, and
     small enough that a two-word line fits a half-width pillar column */
  --t-h2:     clamp(1.75rem, 3.6vw, 2.875rem);
  --t-h2-sm:  clamp(1.625rem, 3vw, 2.25rem);
  --t-h3:     1.3125rem;
  --t-lede:   clamp(1.0625rem, 1.45vw, 1.3125rem);
  --t-body:   1.0625rem;
  --t-sm:     0.875rem;
  --t-xs:     0.78125rem;

  /* Space */
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --band-y: clamp(4.5rem, 9vw, 8.5rem);
  --shell:  75rem;
}

*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--void);
  color: var(--white);
  font-family: var(--face);
  font-size: var(--t-body);
  font-weight: 400;
  line-height: 1.62;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--beam); text-decoration-thickness: 1px; text-underline-offset: 0.2em; }
a:hover { color: var(--white); }

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

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--blue);
  color: #fff;
  padding: 0.75rem 1.25rem;
  font-weight: 700;
}
.skip:focus { left: 0; }

/* Visually hidden but read aloud */
.vh {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* --- Display voice: extended heavy caps, as signwritten on the vans ------ */
.hero__head,
.head,
.dial__num {
  font-weight: 800;
  font-stretch: 125%;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  line-height: 0.9;
  margin: 0;
  text-wrap: balance;
}

.hero__head { font-size: var(--t-h1); }
.head { font-size: var(--t-h2); }
.head--sm { font-size: var(--t-h2-sm); }

.lede {
  font-size: var(--t-lede);
  line-height: 1.5;
  color: var(--white);
  max-width: 34ch;
  margin: 1.75rem 0 1.25rem;
}
.lede--wide { max-width: 58ch; }

p { max-width: 62ch; }

/* ==========================================================================
   Masthead
   ========================================================================== */

.masthead {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(5, 7, 14, 0.86);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--rule-2);
}

.masthead__bar {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  min-height: 4.5rem;
  padding-block: 0.625rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--white);
  flex: 0 0 auto;
}
.brand img { width: 3.25rem; height: auto; }

.brand__name { display: grid; line-height: 1.1; }
.brand__name b {
  font-weight: 800;
  font-stretch: 125%;
  text-transform: uppercase;
  font-size: 1.0625rem;
  letter-spacing: 0.01em;
}
.brand__name i {
  font-style: normal;
  font-size: var(--t-xs);
  color: var(--grey);
  letter-spacing: 0.01em;
}

.nav {
  display: flex;
  gap: clamp(0.875rem, 2vw, 1.75rem);
  margin-left: auto;
}
.nav a {
  color: var(--grey);
  text-decoration: none;
  font-size: var(--t-sm);
  font-weight: 600;
  padding-block: 0.5rem;
  border-bottom: 2px solid transparent;
  transition: color 0.18s, border-color 0.18s;
}
.nav a:hover { color: var(--white); border-bottom-color: var(--blue); }

.calltab {
  flex: 0 0 auto;
  display: grid;
  gap: 0.0625rem;
  padding: 0.5rem 1.125rem;
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  border: 2px solid var(--blue);
  transition: background 0.18s, border-color 0.18s;
}
.calltab:hover { background: var(--void); border-color: var(--beam); color: var(--white); }
.calltab__label { font-size: 0.6875rem; opacity: 0.85; line-height: 1.2; }
.calltab__num { font-weight: 800; font-size: 1rem; letter-spacing: 0.01em; line-height: 1.2; }

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(46rem, calc(100svh - 4.5rem));
  padding-block: clamp(3rem, 7vw, 5.5rem) clamp(4rem, 8vw, 6rem);
  overflow: hidden;
  isolation: isolate;
}

.hero__media { position: absolute; inset: 0; z-index: -1; }
.hero__media picture, .hero__media img { width: 100%; height: 100%; }
.hero__media img {
  object-fit: cover;
  object-position: 58% 38%;
  filter: contrast(1.08) brightness(0.74) saturate(1.05);
}
/* Night-blue cast, so daylight photography reads as roadside-at-dark */
.hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--blue);
  mix-blend-mode: color;
  opacity: 0.3;
}
.hero__media::after { content: ""; position: absolute; inset: 0; }

/* A container so the phone number can be sized against the column it sits
   in rather than the viewport, which overflowed the plate on narrow screens */
.hero__body { position: relative; container-type: inline-size; }

.live {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  margin: 0 0 clamp(1.25rem, 3vw, 2rem);
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--white);
  padding: 0.4375rem 0.9375rem 0.4375rem 0.75rem;
  border: 1px solid var(--rule);
  background: rgba(5, 7, 14, 0.55);
}
.live__dot {
  width: 0.5rem; height: 0.5rem;
  border-radius: 50%;
  background: var(--beam);
  box-shadow: 0 0 0 0 rgba(77, 155, 255, 0.6);
  animation: ping 2.4s ease-out infinite;
}
@keyframes ping {
  0%   { box-shadow: 0 0 0 0 rgba(77, 155, 255, 0.55); }
  70%  { box-shadow: 0 0 0 0.6rem rgba(77, 155, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(77, 155, 255, 0); }
}

/* The dial panel: the largest thing on the page, because at 3am it is the
   only thing that matters. A stencilled plate that fills solid on press. */
.dial {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin: clamp(1.5rem, 3.5vw, 2.5rem) 0 clamp(1.75rem, 4vw, 2.75rem);
  padding: clamp(1rem, 2.4vw, 1.625rem) clamp(1.25rem, 3vw, 2.25rem);
  text-decoration: none;
  color: var(--white);
  background: rgba(11, 19, 48, 0.78);
  border: 2px solid var(--blue);
  border-left-width: 0.5rem;
  backdrop-filter: blur(4px);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.dial:hover, .dial:focus-visible {
  background: var(--blue);
  border-color: var(--beam);
  color: #fff;
}
.dial:active { transform: translateY(1px); }

.dial__kicker {
  display: block;
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--beam);
  margin-bottom: 0.375rem;
}
.dial:hover .dial__kicker, .dial:focus-visible .dial__kicker { color: rgba(255, 255, 255, 0.9); }

/* Slightly narrower than the headline caps so the number can run bigger
   without breaking out of its plate */
.dial__num {
  display: block;
  font-size: var(--t-dial);            /* viewport-based fallback */
  font-size: clamp(1.8rem, 11cqi, 5.5rem);
  font-stretch: 108%;
  line-height: 0.86;
  letter-spacing: -0.025em;
}

.dial__note {
  display: block;
  margin-top: 0.625rem;
  font-size: var(--t-sm);
  color: var(--grey);
}
.dial:hover .dial__note, .dial:focus-visible .dial__note { color: rgba(255, 255, 255, 0.82); }

.hero__sub { max-width: 44ch; color: var(--white); margin: 0 0 1rem; }
.hero__alt { font-size: var(--t-sm); color: var(--grey); margin: 0; max-width: 44ch; }

/* Rear-door hazard chevrons, lifted straight off their van */
.chevron {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 0.875rem;
  background: repeating-linear-gradient(
    115deg,
    var(--haz-red) 0 1.5rem,
    var(--haz-yel) 1.5rem 3rem
  );
  opacity: 0.92;
}

/* ==========================================================================
   Bands
   ========================================================================== */

.band { padding-block: var(--band-y); position: relative; }

/* Bands alternate ground so no two neighbours share a background. Contact
   stays on navy so the form fields read against it. */
.band--tyres    { background: var(--navy); }
.band--inspect  { background: var(--void); }
.band--creds    { background: var(--navy); }
.band--also     { background: var(--void); }
/* Holds little content, so it does not need the full band rhythm */
.band--coverage { background: var(--blue); color: #fff; padding-block: clamp(3rem, 6vw, 5rem); }
.band--about    { background: var(--void); }
.band--contact  { background: var(--navy); }

/* ==========================================================================
   Shared list of specifics. One rule for the pillars, the qualifications
   and the what-to-have-ready prompt, which were three copies of the same
   marker before.
   ========================================================================== */

.ticks { margin: 0; padding: 0; list-style: none; }
.ticks li {
  position: relative;
  padding: 0.4375rem 0 0.4375rem 1.375rem;
  font-size: var(--t-sm);
  color: var(--white);
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 0; top: 1.0625rem;
  width: 0.625rem; height: 2px;
  background: var(--blue);
}
.ticks--muted li { color: var(--grey); }

/* ==========================================================================
   The two revenue lines: tyres and inspections
   ========================================================================== */

.pillar {
  display: grid;
  gap: clamp(1.75rem, 4vw, 4rem);
  align-items: start;
}

.pillar__note {
  margin: 1.25rem 0 0;
  font-size: var(--t-sm);
  color: var(--grey);
  max-width: 40ch;
}

/* Same blue rule that introduces the qualifications, so a list of
   specifics always announces itself the same way */
.pillar__detail {
  border-top: 3px solid var(--blue);
  padding-top: clamp(1.25rem, 2.5vw, 1.75rem);
}

.tagrow {
  margin: 1.5rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--rule-2);
  max-width: none;
}

/* Repairs and the rest: present, deliberately not the headline */
.also {
  display: grid;
  gap: clamp(1.5rem, 3vw, 3rem);
  margin-top: clamp(2rem, 4vw, 3rem);
  border-top: 3px solid var(--blue);
}
.also__item { padding-top: clamp(1.25rem, 2.5vw, 1.75rem); }
.also__name {
  margin: 0 0 0.625rem;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--white);
}
.also__item p { margin: 0; font-size: var(--t-sm); color: var(--grey); max-width: 36ch; }

/* About ------------------------------------------------------------------- */

.about {
  display: grid;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.about__text p { color: var(--grey); }
.about__text .lede { color: var(--white); }

.facts {
  margin: clamp(2rem, 4vw, 3rem) 0 0;
  border-top: 1px solid var(--rule);
}
.facts__row {
  display: grid;
  gap: 0.125rem 1.5rem;
  padding: 0.9375rem 0;
  border-bottom: 1px solid var(--rule-2);
}
.facts dt {
  font-size: var(--t-sm);
  font-weight: 700;
  color: var(--beam);
}
.facts dd { margin: 0; color: var(--grey); font-size: var(--t-sm); }

.about__shot {
  margin: 0;
  border: 1px solid var(--rule);
  overflow: hidden;
  align-self: stretch;
}
.about__shot img {
  width: 100%;
  height: 100%;
  min-height: 22rem;
  object-fit: cover;
  object-position: 50% 45%;
  filter: saturate(1.05) contrast(1.03);
}

/* Vehicle-class tags, used under each pillar ---------------------------- */

.tag {
  display: inline-block;
  margin: 0 0.3125rem 0.3125rem 0;
  padding: 0.1875rem 0.5rem;
  font-size: var(--t-xs);
  font-weight: 600;
  color: var(--white);
  background: rgba(77, 155, 255, 0.12);
  border: 1px solid rgba(77, 155, 255, 0.4);
  white-space: nowrap;
}

/* Coverage ---------------------------------------------------------------- */

.band--coverage .head { color: #fff; }

/* Grid, not flex-wrap: five counties laid out predictably, place names
   sitting on one baseline whether or not the cell carries a tick */
.patch {
  list-style: none;
  margin: clamp(1.75rem, 3.5vw, 2.5rem) 0 1.5rem;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
}
/* Cells stretch to the full row height so the divider rules meet the rules
   above and below, and the place names are pushed to a common baseline
   whether or not the cell also carries a tick */
.patch li {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0.9375rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}
.patch li:last-child { border-bottom: 0; }

.patch__tick {
  display: block;
  font-size: var(--t-xs);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 0.125rem;
}
.patch__place {
  display: block;
  font-weight: 700;
  font-size: clamp(1.0625rem, 1.6vw, 1.375rem);
  color: #fff;
  line-height: 1.2;
}
.patch__base .patch__place { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 0.22em; }

.patch__note { color: rgba(255, 255, 255, 0.88); max-width: 52ch; margin: 0; }

/* Credentials ------------------------------------------------------------- */

/* Two parallel qualifications, set as columns of one table rather than as
   cards: a shared rule above, a divider between, no panel and no shadow */
.creds {
  display: grid;
  gap: clamp(1.5rem, 3vw, 3.5rem);
  margin-top: clamp(2.25rem, 4.5vw, 3.25rem);
  border-top: 3px solid var(--blue);
}

.cred { padding-top: clamp(1.5rem, 3vw, 2.25rem); }
.cred__name {
  margin: 0 0 0.75rem;
  font-size: var(--t-h3);
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
}
.cred__what { color: var(--grey); font-size: var(--t-sm); margin: 0 0 1.5rem; max-width: none; }
.cred__lead {
  margin: 0 0 0.75rem;
  padding-top: 1.125rem;
  border-top: 1px solid var(--rule-2);
  font-size: var(--t-sm);
  font-weight: 700;
  color: var(--beam);
}
/* Contact ----------------------------------------------------------------- */

.contact { display: grid; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: start; }

.line {
  display: grid;
  gap: 0.125rem;
  padding: 1.125rem 0;
  border-bottom: 1px solid var(--rule-2);
  text-decoration: none;
  color: var(--white);
}
/* Keyed to the phone line rather than :first-of-type, which matches once per
   element type and left a phantom empty row above the first <div> */
.line--phone { border-top: 1px solid var(--rule); margin-top: clamp(1.75rem, 3.5vw, 2.5rem); }
.line__label { font-size: var(--t-xs); font-weight: 600; color: var(--grey); }
.line__value { font-weight: 700; font-size: 1.1875rem; overflow-wrap: anywhere; }
a.line:hover .line__value { color: var(--beam); }
.line--phone .line__value {
  font-size: clamp(1.75rem, 3.6vw, 2.5rem);
  font-weight: 800;
  font-stretch: 112%;
  letter-spacing: -0.02em;
}
.line--static { color: var(--grey); }
.line--static .line__value { color: var(--white); font-weight: 600; }

/* Practical prompt for the driver stood at the roadside */
.ready { margin-top: clamp(2rem, 4vw, 2.75rem); }
.ready__h {
  margin: 0 0 0.75rem;
  font-size: var(--t-sm);
  font-weight: 700;
  color: var(--beam);
}
.urgent {
  margin: 0 0 clamp(1.75rem, 3.5vw, 2.5rem);
  padding: 1rem 1.25rem;
  background: rgba(200, 16, 46, 0.14);
  border-left: 0.375rem solid var(--haz-red);
  font-size: var(--t-sm);
  color: var(--white);
  max-width: none;
}
.urgent a { color: #fff; font-weight: 800; }

.formhead { margin: 0 0 1.5rem; font-size: var(--t-h3); font-weight: 700; }

#enquiry {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.125rem 1.25rem;
}
.field { display: grid; gap: 0.4375rem; }
.field--full { grid-column: 1 / -1; }

/* Honeypot. Kept out of the layout and out of the tab order without
   display:none, which some bots detect and skip. */
.botcheck {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.field label { font-size: var(--t-sm); font-weight: 600; color: var(--white); }
.opt { font-weight: 400; color: var(--grey-2); }

.field input, .field textarea {
  font: inherit;
  font-size: var(--t-sm);
  color: var(--white);
  background: rgba(5, 7, 14, 0.6);
  border: 1px solid rgba(141, 158, 190, 0.38);
  padding: 0.6875rem 0.8125rem;
  width: 100%;
  transition: border-color 0.18s, background 0.18s;
}
.field textarea { resize: vertical; min-height: 7rem; }
.field input::placeholder { color: var(--grey-2); }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--beam);
  background: rgba(5, 7, 14, 0.9);
}
.field input:focus-visible, .field textarea:focus-visible { outline: 2px solid var(--beam); outline-offset: 1px; }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: var(--haz-red); }

.submit {
  grid-column: 1 / -1;
  justify-self: start;
  font: inherit;
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  background: var(--blue);
  border: 2px solid var(--blue);
  padding: 0.8125rem 1.75rem;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s;
}
.submit:hover { background: transparent; border-color: var(--beam); color: var(--white); }
.submit[disabled] { opacity: 0.55; cursor: progress; }

.formstatus {
  grid-column: 1 / -1;
  margin: 0;
  font-size: var(--t-sm);
  color: var(--beam);
  min-height: 1.5rem;
  max-width: 56ch;
}
.formstatus[data-state="error"] { color: #ff8a9c; }

/* ==========================================================================
   Footer
   ========================================================================== */

.foot { background: var(--void-2); border-top: 1px solid var(--rule-2); padding-top: clamp(3rem, 6vw, 4.5rem); }

.foot__grid { display: grid; gap: clamp(2rem, 4vw, 3.5rem); }
.foot__brand img { width: 8.5rem; }

.foot__cols { display: grid; gap: clamp(1.75rem, 3.5vw, 3rem); }
.foot__h { margin: 0 0 0.625rem; font-size: var(--t-sm); font-weight: 700; color: var(--white); }
.foot__p { margin: 0; font-size: var(--t-sm); color: var(--grey); line-height: 1.7; }
.foot__p a { color: var(--grey); text-decoration: none; }
.foot__p a:hover { color: var(--beam); text-decoration: underline; }

.foot__legal {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-block: 1.5rem;
  border-top: 1px solid var(--rule-2);
}
.foot__legal p { margin: 0; font-size: var(--t-xs); color: var(--grey-2); max-width: none; }

/* ==========================================================================
   Thumb-reach call bar, small screens only
   ========================================================================== */

.thumbcall {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.25rem calc(1rem + env(safe-area-inset-bottom));
  background: var(--blue);
  color: #fff;
  font-weight: 800;
  font-size: 1.0625rem;
  text-decoration: none;
  border-top: 2px solid var(--beam);
  transform: translateY(110%);
  transition: transform 0.28s ease;
}
.thumbcall__dot {
  width: 0.5rem; height: 0.5rem;
  border-radius: 50%;
  background: #fff;
  animation: ping 2.4s ease-out infinite;
}
.thumbcall__sub { font-size: var(--t-xs); font-weight: 600; opacity: 0.8; }

@media (max-width: 900px) {
  .thumbcall { display: flex; }
  body.is-scrolled .thumbcall { transform: translateY(0); }
  body { padding-bottom: 0; }
}

/* ==========================================================================
   Load sequence: one orchestrated moment, then the page sits still
   ========================================================================== */

/* Scoped to .has-js so the hero is never left hidden without JavaScript */
.has-js [data-anim] { opacity: 0; transform: translateY(0.75rem); }
.has-js body.is-ready [data-anim],
body.is-ready [data-anim] {
  animation: rise 0.62s cubic-bezier(0.2, 0.7, 0.25, 1) forwards;
}
body.is-ready [data-anim="1"] { animation-delay: 0.05s; }
body.is-ready [data-anim="2"] { animation-delay: 0.14s; }
body.is-ready [data-anim="3"] { animation-delay: 0.26s; }
body.is-ready [data-anim="4"] { animation-delay: 0.4s; }
body.is-ready [data-anim="5"] { animation-delay: 0.48s; }

@keyframes rise {
  to { opacity: 1; transform: none; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (min-width: 36rem) {
  .patch { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 48rem) {
  .facts__row { grid-template-columns: 11rem 1fr; align-items: baseline; }
  .foot__cols { grid-template-columns: 2fr 1fr 1fr; }
  .patch { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 56rem) {
  .creds { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cred + .cred { border-left: 1px solid var(--rule-2); padding-left: clamp(1.5rem, 3vw, 3.5rem); }

  .also { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .also__item + .also__item { border-left: 1px solid var(--rule-2); padding-left: clamp(1.5rem, 3vw, 3rem); }
  .foot__grid { grid-template-columns: auto 1fr; align-items: start; }
}

@media (max-width: 55.9375rem) {
  .cred + .cred { border-top: 1px solid var(--rule-2); }
  .also__item + .also__item { border-top: 1px solid var(--rule-2); }
}

@media (min-width: 62rem) {
  .patch { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .patch li {
    border-bottom: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.28);
    /* Even breathing room either side of each divider; the outer edges stay
       flush with the shell so the block lines up with the copy above */
    padding: 1.125rem clamp(0.875rem, 1.6vw, 1.375rem);
  }
  .patch li:first-child { padding-left: 0; }
  .patch li:last-child { border-right: 0; padding-right: 0; }

  .about { grid-template-columns: 1.15fr 0.85fr; }
  .contact { grid-template-columns: 0.85fr 1.15fr; }
  .pillar { grid-template-columns: 1fr 1fr; }
  .hero__body { max-width: 60%; }
  .hero__media { left: 34%; }
  .hero__media::after {
    background: linear-gradient(
      90deg,
      var(--void) 0%,
      rgba(5, 7, 14, 0.96) 20%,
      rgba(5, 7, 14, 0.24) 66%,
      rgba(5, 7, 14, 0.62) 100%
    );
  }
}

@media (max-width: 61.9375rem) {
  .hero { min-height: auto; }
  .hero__media img { object-position: 48% 34%; }
  .hero__media::after {
    background: linear-gradient(
      180deg,
      rgba(5, 7, 14, 0.86) 0%,
      rgba(5, 7, 14, 0.9) 45%,
      rgba(5, 7, 14, 0.97) 100%
    );
  }
  .about__shot { grid-row: 1; max-width: 30rem; }
}

@media (max-width: 44rem) {
  .masthead__bar { flex-wrap: wrap; gap: 0.5rem 1rem; }
  .nav { order: 3; width: 100%; margin-left: 0; border-top: 1px solid var(--rule-2); padding-top: 0.25rem; justify-content: space-between; }
  /* The hero plate and the docked call bar both cover this, so it only
     costs header height here */
  .calltab { display: none; }
  .brand__name i { display: none; }
  /* Text before the photograph: the hero already opened with one */
  .about__shot { grid-row: auto; }
  /* Footer section links act as navigation, so give them a real tap target */
  .foot__cols > div:last-child .foot__p { display: grid; }
  .foot__cols > div:last-child .foot__p a { padding-block: 0.5rem; }
  .foot__cols > div:last-child .foot__p br { display: none; }
  #enquiry { grid-template-columns: 1fr; }
  .foot__legal { padding-bottom: 6rem; }
}

@media (max-width: 26rem) {
  .calltab__num { font-size: 0.9375rem; }
}

/* ==========================================================================
   Reduced motion and print
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .has-js [data-anim] { opacity: 1; transform: none; }
}

@media print {
  .masthead, .thumbcall, .hero__media, .chevron, .contact__form { display: none !important; }
  body { background: #fff; color: #000; }
  .band, .hero { background: #fff !important; color: #000 !important; padding-block: 1rem; }
  .head, .hero__head, .dial__num, .line__value { color: #000 !important; }
  a { color: #000; }
}
