/* ==========================================================================
   Sterkr — Hi-Vis
   Design tokens and component styles for the Sterkr theme.
   ========================================================================== */

:root {
  --st-bg:        #08090A;
  --st-surface:   #0D0E10;
  --st-surface-2: #101113;
  --st-panel:     rgba(19, 20, 23, 0.72);
  --st-hv:        #D4FF3D;
  --st-hv-soft:   #EAFF9B;
  --st-text:      #F5F5F0;
  --st-text-2:    #D6DAE0;
  --st-dim:       #A6ABB1;
  --st-dim-2:     #74787E;
  --st-dim-3:     #6B6F75;
  --st-dim-4:     #5C6065;
  --st-line:      rgba(255, 255, 255, 0.1);
  --st-line-soft: rgba(255, 255, 255, 0.055);
  --st-line-mid:  rgba(255, 255, 255, 0.08);
  --st-line-hard: rgba(255, 255, 255, 0.18);

  --st-sans: 'Archivo', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --st-mono: 'Martian Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  --st-gutter: 40px;
  --st-max: 1360px;
  --st-header-h: 76px;
}

/* --------------------------------------------------------------------------
   Reset / base
   -------------------------------------------------------------------------- */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--st-header-h) + 16px);
}

@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;
  }
}

body {
  margin: 0;
  background: var(--st-bg);
  color: var(--st-text);
  font-family: var(--st-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a { color: var(--st-hv); text-decoration: none; }
a:hover { color: var(--st-hv-soft); }

::selection { background: var(--st-hv); color: var(--st-bg); }

button,
input,
select,
textarea { font: inherit; color: inherit; }

input::placeholder,
textarea::placeholder { color: var(--st-dim-3); }

h1, h2, h3, h4, h5, h6, p, figure, ul, ol { margin: 0; }
ul, ol { padding: 0; list-style: none; }

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

.st-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--st-hv);
  color: var(--st-bg);
  padding: 12px 20px;
  font-weight: 700;
}
.st-skip:focus { left: 0; }

.st-sr {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* --------------------------------------------------------------------------
   Keyframes
   -------------------------------------------------------------------------- */

@keyframes stMarquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
@keyframes stSweep {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes stPing {
  0%   { transform: scale(1);   opacity: 0.7; }
  70%  { transform: scale(2.6); opacity: 0; }
  100% { transform: scale(2.6); opacity: 0; }
}
@keyframes stBlink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.25; }
}
@keyframes stRise {
  from { opacity: 0; transform: translate3d(0, 18px, 0); }
  to   { opacity: 1; transform: none; }
}

.st-reveal {
  opacity: 0;
}
.st-reveal.is-in {
  animation: stRise 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* --------------------------------------------------------------------------
   Layout primitives
   -------------------------------------------------------------------------- */

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

.st-section { position: relative; padding-block: 104px; }
.st-section--tight { padding-block: 72px; }

.st-eyebrow {
  font-family: var(--st-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--st-hv);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
}
.st-eyebrow::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--st-line);
}

.st-display {
  font-size: clamp(38px, 7.4vw, 92px);
  font-weight: 800;
  line-height: 0.86;
  letter-spacing: -0.05em;
  font-variation-settings: 'wdth' 105;
  text-wrap: balance;
  margin: 0;
}

.st-lede {
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.6;
  color: var(--st-dim);
  max-width: 62ch;
  text-wrap: pretty;
}

.st-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

/* Corner ticks used on panels */
.st-ticks { position: relative; }
.st-ticks::before,
.st-ticks::after {
  content: '';
  position: absolute;
  width: 14px; height: 14px;
  pointer-events: none;
}
.st-ticks::before {
  top: -1px; left: -1px;
  border-top: 2px solid var(--st-hv);
  border-left: 2px solid var(--st-hv);
}
.st-ticks::after {
  bottom: -1px; right: -1px;
  border-bottom: 2px solid var(--st-hv);
  border-right: 2px solid var(--st-hv);
}

/* Striped placeholder blocks — show what still needs photographing */
.st-photo {
  background-color: var(--st-surface);
  background-image: repeating-linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.045) 0 12px,
    transparent 12px 24px
  );
  border: 1px solid var(--st-line);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
  position: relative;
  overflow: hidden;
}
.st-photo__label {
  font-family: var(--st-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--st-dim-2);
  line-height: 1.6;
}
.st-photo > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Only drop the stripes once the image actually has a source — the panel
   templates ship an empty <img> that JS fills in, and a bare `:has(> img)`
   would blank the placeholder before any photo exists. */
.st-photo:has(> img[src]) { background-image: none; }
.st-photo:has(> img[src]) .st-photo__label { display: none; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.st-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 100px;
  border: 0;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  text-decoration: none;
  /* A pill that wraps its label looks broken — let the header compress instead. */
  white-space: nowrap;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.st-btn--hv {
  background: var(--st-hv);
  color: var(--st-bg);
  padding: 15px 10px 15px 26px;
}
.st-btn--hv:hover { background: var(--st-hv-soft); color: var(--st-bg); }

.st-btn__chip {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--st-bg);
  color: var(--st-hv);
  display: grid;
  place-items: center;
  font-size: 14px;
  flex: none;
}

.st-btn--ghost {
  border: 1px solid var(--st-line-hard);
  color: var(--st-text);
  background: transparent;
  padding: 16px 26px;
  font-weight: 600;
}
.st-btn--ghost:hover { border-color: var(--st-hv); color: var(--st-hv); }

.st-btn--sm { font-size: 13px; padding: 12px 8px 12px 20px; }
.st-btn--sm .st-btn__chip { width: 26px; height: 26px; font-size: 13px; }

.st-btn[disabled],
.st-btn[aria-disabled='true'] { opacity: 0.4; cursor: not-allowed; }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.st-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(8, 9, 10, 0.82);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid var(--st-line-mid);
}

.st-header__inner {
  max-width: var(--st-max);
  margin-inline: auto;
  padding-inline: var(--st-gutter);
  height: var(--st-header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.st-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--st-text);
}
.st-brand:hover { color: var(--st-text); }
.st-brand__mark {
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -0.045em;
  font-variation-settings: 'wdth' 108;
  line-height: 1;
}
.st-brand__sub {
  font-family: var(--st-mono);
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--st-dim-3);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  padding-left: 12px;
  line-height: 1.5;
}

.st-nav { display: flex; align-items: center; gap: 4px; }
.st-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--st-dim);
  padding: 9px 15px;
  border-radius: 100px;
  transition: background-color 0.16s ease, color 0.16s ease;
}
.st-nav a:hover,
.st-nav .current-menu-item > a {
  background: rgba(255, 255, 255, 0.07);
  color: var(--st-text);
}

.st-header__end {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: flex-end;
}

.st-clock {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--st-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--st-dim);
  white-space: nowrap;
}
.st-clock__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--st-hv);
  animation: stBlink 2s ease-in-out infinite;
  flex: none;
}

/* Client/staff portal — understated on purpose. It is for existing customers,
   so it must not compete with the quote CTA. */
.st-portal-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--st-dim);
  padding: 9px 14px;
  border: 1px solid var(--st-line);
  border-radius: 100px;
  white-space: nowrap;
  transition: border-color 0.16s ease, color 0.16s ease;
}
.st-portal-link:hover { border-color: var(--st-hv); color: var(--st-hv); }
.st-portal-link__lock { width: 11px; height: 13px; flex: none; }

.st-mobile-nav__portal { display: flex; width: 100%; justify-content: center; margin-top: 10px; }

.st-progress { height: 3px; background: rgba(255, 255, 255, 0.06); }
.st-progress__bar { height: 3px; width: 0; background: var(--st-hv); }

.st-burger {
  display: none;
  background: none;
  border: 1px solid var(--st-line-hard);
  border-radius: 100px;
  width: 44px; height: 40px;
  cursor: pointer;
  position: relative;
}
.st-burger span,
.st-burger span::before,
.st-burger span::after {
  content: '';
  position: absolute;
  left: 50%;
  width: 17px; height: 1.5px;
  background: var(--st-text);
  transform: translateX(-50%);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.st-burger span { top: 50%; margin-top: -0.75px; }
.st-burger span::before { top: -6px; left: 0; transform: none; }
.st-burger span::after  { top: 6px;  left: 0; transform: none; }
.st-burger[aria-expanded='true'] span { background: transparent; }
.st-burger[aria-expanded='true'] span::before { transform: translateY(6px) rotate(45deg); }
.st-burger[aria-expanded='true'] span::after  { transform: translateY(-6px) rotate(-45deg); }

.st-mobile-nav {
  display: none;
  border-top: 1px solid var(--st-line-mid);
  padding: 8px var(--st-gutter) 24px;
  background: rgba(8, 9, 10, 0.96);
}
.st-mobile-nav.is-open { display: block; }

/* Scoped to the menu list only. A bare `.st-mobile-nav a` also hits the CTA
   button below and overrides its display/padding, which collapses the pill. */
.st-mobile-nav__list a {
  display: block;
  padding: 14px 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--st-text);
  border-bottom: 1px solid var(--st-line-soft);
}
.st-mobile-nav__list a:hover { color: var(--st-hv); }

.st-mobile-nav .st-btn {
  display: flex;
  width: 100%;
  justify-content: center;
  margin-top: 22px;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.st-hero {
  position: relative;
  overflow: hidden;
  background: var(--st-bg);
  padding-block: 78px 0;
}

.st-hero__spot {
  position: absolute;
  inset: 0;
  background: radial-gradient(560px circle at 70% 30%, rgba(212, 255, 61, 0.1), transparent 70%);
  pointer-events: none;
  transition: background 0.15s linear;
}

.st-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 372px;
  gap: 56px;
  align-items: start;
}

.st-tags { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-bottom: 34px; }
.st-tag {
  font-family: var(--st-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--st-dim);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 6px 11px;
}
.st-tag--hv { color: var(--st-bg); background: var(--st-hv); border-color: var(--st-hv); }

.st-hero h1 {
  font-size: clamp(56px, 8.6vw, 118px);
  line-height: 0.84;
  font-weight: 800;
  letter-spacing: -0.055em;
  font-variation-settings: 'wdth' 105;
  margin: 0 0 8px;
}

.st-hero__intro {
  display: flex;
  align-items: flex-end;
  gap: 36px;
  margin: 30px 0 40px;
}
.st-hero__rule {
  width: 96px; height: 4px;
  background: var(--st-hv);
  margin-bottom: 9px;
  flex: none;
}
.st-hero__intro p {
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.5;
  color: var(--st-dim);
  max-width: 470px;
  text-wrap: pretty;
}
.st-hero__intro strong { color: var(--st-text); font-weight: 600; }

.st-hero__cta { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* Ops desk panel */
.st-ops {
  position: relative;
  border: 1px solid var(--st-line);
  background: var(--st-panel);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.st-ops__corner {
  position: absolute;
  width: 14px; height: 14px;
}
.st-ops__corner--tl { top: -1px; left: -1px;  border-top: 2px solid var(--st-hv); border-left: 2px solid var(--st-hv); }
.st-ops__corner--tr { top: -1px; right: -1px; border-top: 2px solid var(--st-hv); border-right: 2px solid var(--st-hv); }
.st-ops__corner--bl { bottom: -1px; left: -1px;  border-bottom: 2px solid var(--st-hv); border-left: 2px solid var(--st-hv); }
.st-ops__corner--br { bottom: -1px; right: -1px; border-bottom: 2px solid var(--st-hv); border-right: 2px solid var(--st-hv); }

.st-ops__head {
  padding: 16px 18px;
  border-bottom: 1px solid var(--st-line-mid);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.st-ops__label {
  font-family: var(--st-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--st-dim-2);
}
.st-ops__status {
  font-family: var(--st-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--st-hv);
}
.st-ops__body { padding: 22px 18px 18px; }
.st-ops__rings {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 22px;
}
.st-ops__rings b {
  font-size: 60px;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.9;
  color: var(--st-hv);
}
.st-ops__rings span { font-size: 18px; font-weight: 600; color: var(--st-dim); }

.st-log { border-top: 1px solid var(--st-line-mid); }
.st-log li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px 0;
  border-bottom: 1px solid var(--st-line-soft);
}
.st-log__t {
  font-family: var(--st-mono);
  font-size: 9px;
  color: var(--st-hv);
  padding-top: 2px;
}
.st-log__text { font-size: 12px; color: var(--st-text-2); line-height: 1.4; }
.st-log__tag {
  font-family: var(--st-mono);
  font-size: 8px;
  letter-spacing: 0.1em;
  color: var(--st-dim-3);
  margin-top: 4px;
}
.st-ops__note {
  font-family: var(--st-mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  color: var(--st-dim-4);
  margin-top: 14px;
  line-height: 1.6;
}

.st-hero__photo { margin-top: 66px; height: 300px; }

/* --------------------------------------------------------------------------
   Marquee
   -------------------------------------------------------------------------- */

.st-marquee {
  background: var(--st-hv);
  color: var(--st-bg);
  overflow: hidden;
  padding-block: 14px;
  margin-top: 66px;
}
.st-marquee__track {
  display: flex;
  width: max-content;
  animation: stMarquee 34s linear infinite;
}
.st-marquee:hover .st-marquee__track { animation-play-state: paused; }
.st-marquee__item {
  font-family: var(--st-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-inline: 22px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 22px;
}
.st-marquee__item::after { content: '◆'; font-size: 8px; opacity: 0.55; }

/* --------------------------------------------------------------------------
   Stats
   -------------------------------------------------------------------------- */

.st-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--st-line);
}
.st-stat {
  padding: 34px 26px 38px;
  border-right: 1px solid var(--st-line);
}
.st-stat:last-child { border-right: 0; }
.st-stat__n {
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-size: clamp(44px, 4.6vw, 62px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--st-text);
}
.st-stat__suffix { font-size: 0.44em; color: var(--st-hv); font-weight: 700; }
.st-stat__label {
  font-family: var(--st-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--st-hv);
  margin: 14px 0 10px;
}
.st-stat__text { font-size: 14px; line-height: 1.55; color: var(--st-dim); }

/* --------------------------------------------------------------------------
   Services — horizontal scroller
   -------------------------------------------------------------------------- */

.st-services { background: var(--st-bg); }

.st-services__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 54px;
}
.st-services__hint {
  font-family: var(--st-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--st-dim-2);
  white-space: nowrap;
}

.st-scroller {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 22px;
  scrollbar-width: thin;
  scrollbar-color: var(--st-hv) rgba(255, 255, 255, 0.06);
  -webkit-overflow-scrolling: touch;
}
.st-scroller::-webkit-scrollbar { height: 3px; }
.st-scroller::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.06); }
.st-scroller::-webkit-scrollbar-thumb { background: var(--st-hv); }

.st-svc {
  scroll-snap-align: start;
  flex: 0 0 356px;
  border: 1px solid var(--st-line);
  background: var(--st-surface);
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.st-svc:hover { border-color: var(--st-hv); transform: translateY(-4px); }

.st-svc__photo { height: 168px; }
.st-svc__body { padding: 24px 22px 26px; display: flex; flex-direction: column; flex: 1; }
.st-svc__num {
  font-family: var(--st-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--st-hv);
  margin-bottom: 12px;
}
.st-svc__name {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 12px;
}
.st-svc__blurb { font-size: 14px; line-height: 1.6; color: var(--st-dim); margin-bottom: 20px; }
.st-svc__points { display: flex; flex-direction: column; gap: 9px; margin-bottom: 22px; }
.st-svc__points li {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 10px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--st-text-2);
}
.st-svc__points li::before { content: '→'; color: var(--st-hv); }
.st-svc__suits {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--st-line-mid);
  font-family: var(--st-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--st-dim-2);
}

.st-services__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid var(--st-line);
}
.st-services__foot h3 { font-size: 24px; font-weight: 700; letter-spacing: -0.02em; }
.st-services__foot p { font-size: 15px; color: var(--st-dim); margin-top: 6px; }

/* --------------------------------------------------------------------------
   Sectors
   -------------------------------------------------------------------------- */

.st-sectors { background: var(--st-surface); }
.st-sectors__grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 56px;
  align-items: start;
  margin-top: 48px;
}

.st-sector-list { border-top: 1px solid var(--st-line); }
.st-sector {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  border-bottom: 1px solid var(--st-line);
  padding: 26px 4px;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  cursor: pointer;
  transition: padding-left 0.22s ease, background-color 0.22s ease;
}
.st-sector:hover,
.st-sector.is-active { padding-left: 18px; background: rgba(212, 255, 61, 0.035); }
.st-sector__num {
  font-family: var(--st-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--st-dim-2);
  padding-top: 4px;
}
.st-sector.is-active .st-sector__num { color: var(--st-hv); }
.st-sector__name {
  display: block;
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--st-dim);
  transition: color 0.2s ease;
}
.st-sector:hover .st-sector__name,
.st-sector.is-active .st-sector__name { color: var(--st-text); }
.st-sector__text {
  display: block;
  font-size: 14px;
  line-height: 1.6;
  color: var(--st-dim-2);
  margin-top: 9px;
  max-width: 52ch;
}

.st-sector-panel { position: sticky; top: calc(var(--st-header-h) + 32px); }
.st-sector-panel__photo { height: 320px; }
.st-sector-panel__meta {
  border: 1px solid var(--st-line);
  border-top: 0;
  padding: 20px 22px;
  background: var(--st-bg);
}
.st-sector-panel__label {
  font-family: var(--st-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--st-dim-2);
  margin-bottom: 8px;
}
.st-sector-panel__svc { font-size: 16px; font-weight: 600; color: var(--st-hv); }

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

.st-coverage { background: var(--st-bg); }
.st-coverage__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 48px;
}

.st-radar {
  position: relative;
  aspect-ratio: 1;
  border: 1px solid var(--st-line);
  background: var(--st-surface);
  overflow: hidden;
}
.st-radar__rings { position: absolute; inset: 0; }
.st-radar__ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
}
.st-radar__sweep {
  position: absolute;
  top: 50%; left: 50%;
  width: 100%; height: 100%;
  transform-origin: 0 0;
  background: conic-gradient(from 0deg, rgba(212, 255, 61, 0.16), transparent 28%);
  animation: stSweep 7s linear infinite;
  pointer-events: none;
}
.st-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.st-pin__dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--st-hv);
  position: relative;
  display: block;
}
.st-pin__dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--st-hv);
  animation: stPing 2.6s ease-out infinite;
}
.st-pin.is-active .st-pin__dot { box-shadow: 0 0 0 4px rgba(212, 255, 61, 0.25); }
.st-pin__name {
  position: absolute;
  left: 50%;
  top: 22px;
  transform: translateX(-50%);
  font-family: var(--st-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--st-dim);
  white-space: nowrap;
}
.st-pin.is-active .st-pin__name { color: var(--st-hv); }
.st-radar__note {
  position: absolute;
  bottom: 14px; right: 16px;
  font-family: var(--st-mono);
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--st-dim-4);
}

.st-region-list { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }
.st-region-btn {
  background: none;
  border: 1px solid var(--st-line);
  color: var(--st-dim);
  font-family: var(--st-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 9px 13px;
  cursor: pointer;
  transition: border-color 0.18s ease, color 0.18s ease, background-color 0.18s ease;
}
.st-region-btn:hover { border-color: var(--st-hv); color: var(--st-hv); }
.st-region-btn.is-active { background: var(--st-hv); border-color: var(--st-hv); color: var(--st-bg); }
.st-region-btn span { opacity: 0.6; margin-left: 6px; }

.st-region-detail { border-left: 2px solid var(--st-hv); padding-left: 24px; }
.st-region-detail h3 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 14px;
}
.st-region-detail p { font-size: 16px; line-height: 1.6; color: var(--st-dim); margin-bottom: 18px; }
.st-region-detail__towns {
  font-family: var(--st-mono);
  font-size: 11px;
  line-height: 1.9;
  letter-spacing: 0.04em;
  color: var(--st-dim-2);
}

/* --------------------------------------------------------------------------
   Manchester streets
   -------------------------------------------------------------------------- */

.st-streets { background: var(--st-surface); }
.st-streets__grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 56px;
  align-items: start;
  margin-top: 48px;
}
.st-street-list { border-top: 1px solid var(--st-line); }
.st-street {
  width: 100%;
  background: none;
  border: 0;
  border-bottom: 1px solid var(--st-line);
  text-align: left;
  padding: 20px 4px;
  cursor: pointer;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  transition: padding-left 0.22s ease, background-color 0.22s ease;
}
.st-street:hover,
.st-street.is-active { padding-left: 16px; background: rgba(212, 255, 61, 0.035); }
.st-street__name {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--st-dim);
  transition: color 0.2s ease;
}
.st-street:hover .st-street__name,
.st-street.is-active .st-street__name { color: var(--st-text); }
.st-street__tag {
  font-family: var(--st-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--st-dim-3);
  white-space: nowrap;
}
.st-street.is-active .st-street__tag { color: var(--st-hv); }
.st-streets__more {
  font-size: 13px;
  color: var(--st-dim-2);
  margin-top: 20px;
  line-height: 1.6;
}

.st-street-panel__photo { height: 340px; }
.st-street-panel__body {
  border: 1px solid var(--st-line);
  border-top: 0;
  padding: 24px 26px 28px;
  background: var(--st-bg);
}
.st-street-panel__body h3 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 6px;
}
.st-street-panel__tag {
  font-family: var(--st-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--st-hv);
  margin-bottom: 14px;
}
.st-street-panel__body p { font-size: 15px; line-height: 1.65; color: var(--st-dim); }

/* --------------------------------------------------------------------------
   Team
   -------------------------------------------------------------------------- */

.st-team { background: var(--st-bg); }
.st-team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.st-team__card {
  border: 1px solid var(--st-line);
  padding: 28px 26px 32px;
  background: var(--st-surface);
  transition: border-color 0.2s ease;
}
.st-team__card:hover { border-color: var(--st-hv); }
.st-team__n {
  font-family: var(--st-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--st-hv);
  margin-bottom: 20px;
}
.st-team__card h3 {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 12px;
}
.st-team__card p { font-size: 14px; line-height: 1.6; color: var(--st-dim); }

/* --------------------------------------------------------------------------
   Onboarding
   -------------------------------------------------------------------------- */

.st-how { background: var(--st-surface); }
.st-how__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.st-how__step { border-top: 2px solid var(--st-hv); padding-top: 22px; }
.st-how__step:nth-child(even) { margin-top: 36px; }
.st-how__when {
  font-family: var(--st-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--st-hv);
  margin-bottom: 16px;
}
.st-how__num {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.12);
  margin-bottom: 14px;
}
.st-how__step h3 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 10px;
}
.st-how__step p { font-size: 14px; line-height: 1.6; color: var(--st-dim); }

/* --------------------------------------------------------------------------
   Quote builder
   -------------------------------------------------------------------------- */

.st-quote { background: var(--st-bg); }
.st-quote__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: start;
  margin-top: 24px;
}
.st-quote__aside p { margin-top: 20px; }
.st-quote__direct {
  margin-top: 36px;
  border-top: 1px solid var(--st-line);
  padding-top: 26px;
}
.st-quote__direct .st-ops__label { margin-bottom: 12px; }
.st-quote__tel {
  font-size: clamp(26px, 2.8vw, 34px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--st-text);
  display: block;
}
.st-quote__tel:hover { color: var(--st-hv); }
.st-quote__mail { font-size: 15px; color: var(--st-dim); display: block; margin-top: 8px; }
.st-quote__mail:hover { color: var(--st-hv); }

.st-form {
  border: 1px solid var(--st-line);
  background: var(--st-surface);
  padding: 32px 34px 36px;
  position: relative;
}

.st-steps { display: flex; gap: 6px; margin-bottom: 30px; }
.st-steps__item {
  flex: 1;
  border-top: 2px solid rgba(255, 255, 255, 0.12);
  padding-top: 10px;
  font-family: var(--st-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--st-dim-3);
  transition: border-color 0.25s ease, color 0.25s ease;
}
.st-steps__item.is-done,
.st-steps__item.is-active { border-top-color: var(--st-hv); color: var(--st-hv); }

.st-step {
  display: none;
  /* Steps are fieldsets — strip the UA border and padding. */
  border: 0;
  padding: 0;
  margin: 0;
  min-inline-size: 0;
}
.st-step.is-active { display: block; animation: stRise 0.4s cubic-bezier(0.22, 1, 0.36, 1); }

/* Without JavaScript the stepper cannot advance, so show the whole form at once
   and hide the step markers and Back control. */
.no-js .st-step { display: block; animation: none; }
.no-js .st-step + .st-step { margin-top: 34px; padding-top: 30px; border-top: 1px solid var(--st-line-mid); }
.no-js .st-steps,
.no-js .st-back { display: none; }
.st-step h3 {
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 8px;
}
.st-step > p { font-size: 14px; color: var(--st-dim); margin-bottom: 24px; }

.st-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }

/* Radio inputs styled as buttons — keyboard-navigable as a group, and they
   submit a value with JavaScript disabled. */
.st-option {
  position: relative;
  display: block;
  border: 1px solid var(--st-line);
  background: transparent;
  color: var(--st-text-2);
  text-align: left;
  padding: 15px 16px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.16s ease, background-color 0.16s ease, color 0.16s ease;
}
.st-option input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: 0;
}
.st-option:hover { border-color: var(--st-hv); color: var(--st-text); }
.st-option:focus-within { outline: 2px solid var(--st-hv); outline-offset: 2px; }
.st-option:has(input:checked),
.st-option.is-selected {
  background: var(--st-hv);
  border-color: var(--st-hv);
  color: var(--st-bg);
  font-weight: 700;
}

.st-field { margin-bottom: 16px; }
.st-field label {
  display: block;
  font-family: var(--st-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--st-dim-2);
  margin-bottom: 8px;
}
.st-field input,
.st-field textarea {
  width: 100%;
  background: var(--st-bg);
  border: 1px solid var(--st-line);
  color: var(--st-text);
  padding: 14px 15px;
  font-size: 15px;
  transition: border-color 0.16s ease;
}
.st-field input:focus,
.st-field textarea:focus { outline: none; border-color: var(--st-hv); }
.st-field textarea { min-height: 92px; resize: vertical; }
.st-field--half { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.st-field--half > div { display: contents; }

.st-hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

.st-form__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--st-line-mid);
}
.st-form__summary {
  font-family: var(--st-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--st-dim-2);
  line-height: 1.6;
}
.st-form__nav { display: flex; gap: 10px; align-items: center; }
.st-back {
  background: none;
  border: 0;
  color: var(--st-dim-2);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  padding: 10px 4px;
}
.st-back:hover { color: var(--st-text); }

.st-done { text-align: left; padding: 12px 0; }
.st-done__mark {
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--st-hv);
  line-height: 1;
  margin-bottom: 16px;
}
.st-done p { font-size: 16px; line-height: 1.6; color: var(--st-dim); margin-bottom: 24px; }

.st-notice {
  border: 1px solid var(--st-line);
  border-left: 2px solid var(--st-hv);
  padding: 14px 16px;
  font-size: 14px;
  color: var(--st-text-2);
  margin-bottom: 20px;
}
.st-notice--error { border-left-color: #FF6B4A; color: #FFC3B4; }

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

.st-creds { background: var(--st-surface); }
.st-creds__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--st-line);
  border: 1px solid var(--st-line);
  margin-top: 40px;
}
.st-cred { background: var(--st-surface); padding: 26px 24px 30px; }
.st-cred h3 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}
.st-cred p { font-size: 13px; line-height: 1.55; color: var(--st-dim-2); }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.st-footer { background: var(--st-bg); border-top: 1px solid var(--st-line); padding-top: 72px; }
.st-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
}
.st-footer__mark {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.05em;
  font-variation-settings: 'wdth' 108;
  margin-bottom: 18px;
  display: inline-block;
  color: var(--st-text);
}
.st-footer__about { font-size: 14px; line-height: 1.65; color: var(--st-dim); max-width: 44ch; margin-bottom: 24px; }
.st-footer__contact { display: flex; flex-direction: column; gap: 6px; }
.st-footer__contact a { font-size: 16px; font-weight: 600; color: var(--st-text); }
.st-footer__contact a:hover { color: var(--st-hv); }
.st-footer__contact span { font-size: 13px; color: var(--st-dim-2); margin-top: 6px; }

.st-footer__col h4 {
  font-family: var(--st-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--st-dim-2);
  margin-bottom: 18px;
}
.st-footer__col li { margin-bottom: 10px; }
.st-footer__col a { font-size: 14px; color: var(--st-dim); }
.st-footer__col a:hover { color: var(--st-hv); }

.st-footer__bar {
  border-top: 1px solid var(--st-line);
  padding-block: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.st-footer__legal,
.st-footer__accred {
  font-family: var(--st-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--st-dim-3);
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   Interior pages / editor content
   -------------------------------------------------------------------------- */

.st-page { padding-block: 76px 96px; }
.st-page__head { margin-bottom: 44px; }
.st-page__head h1 {
  font-size: clamp(38px, 5.4vw, 68px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.96;
  font-variation-settings: 'wdth' 105;
}

.st-prose { max-width: 72ch; font-size: 16px; line-height: 1.7; color: var(--st-dim); }
.st-prose > * + * { margin-top: 1.15em; }
.st-prose h2 {
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--st-text);
  margin-top: 2em;
  line-height: 1.15;
}
.st-prose h3 {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--st-text);
  margin-top: 1.8em;
}
.st-prose strong { color: var(--st-text); }
.st-prose ul,
.st-prose ol { padding-left: 1.2em; }
.st-prose ul { list-style: none; padding-left: 0; }
.st-prose ul li { display: grid; grid-template-columns: 16px 1fr; gap: 10px; }
.st-prose ul li::before { content: '→'; color: var(--st-hv); }
.st-prose ol { list-style: decimal; }
.st-prose li + li { margin-top: 0.55em; }
.st-prose blockquote {
  border-left: 2px solid var(--st-hv);
  padding-left: 22px;
  color: var(--st-text-2);
  font-size: 18px;
}
.st-prose img { border: 1px solid var(--st-line); }
.st-prose code {
  font-family: var(--st-mono);
  font-size: 0.88em;
  background: var(--st-surface);
  padding: 2px 6px;
}
.st-prose a { border-bottom: 1px solid rgba(212, 255, 61, 0.4); }

.st-postlist { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.st-postcard {
  border: 1px solid var(--st-line);
  background: var(--st-surface);
  padding: 26px 24px 30px;
  transition: border-color 0.2s ease;
}
.st-postcard:hover { border-color: var(--st-hv); }
.st-postcard__date {
  font-family: var(--st-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--st-hv);
  margin-bottom: 14px;
}
.st-postcard h2 { font-size: 20px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.25; }
.st-postcard h2 a { color: var(--st-text); }
.st-postcard h2 a:hover { color: var(--st-hv); }
.st-postcard p { font-size: 14px; line-height: 1.6; color: var(--st-dim); margin-top: 12px; }

.st-pagination {
  display: flex;
  gap: 8px;
  margin-top: 48px;
  font-family: var(--st-mono);
  font-size: 12px;
}
.st-pagination .page-numbers {
  border: 1px solid var(--st-line);
  padding: 10px 15px;
  color: var(--st-dim);
}
.st-pagination .page-numbers.current,
.st-pagination .page-numbers:hover { border-color: var(--st-hv); color: var(--st-hv); }

.st-search { display: flex; gap: 8px; max-width: 420px; }
.st-search input {
  flex: 1;
  background: var(--st-bg);
  border: 1px solid var(--st-line);
  color: var(--st-text);
  padding: 13px 15px;
  font-size: 15px;
}
.st-search input:focus { outline: none; border-color: var(--st-hv); }

/* WordPress core alignment + caption classes */
.alignleft  { float: left;  margin: 0 1.5em 1em 0; }
.alignright { float: right; margin: 0 0 1em 1.5em; }
.aligncenter { margin-inline: auto; }
.alignwide, .alignfull { max-width: none; }
.wp-caption-text,
.st-prose figcaption {
  font-family: var(--st-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--st-dim-2);
  margin-top: 10px;
}
.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1300px) {
  /* Nav, portal link and the quote CTA all need room here; the clock is the
     decorative one, so it gives way first. */
  .st-clock { display: none; }
  .st-nav a { padding: 9px 11px; }
  .st-header__end { gap: 10px; }
}

@media (max-width: 1180px) {
  .st-hero__inner { grid-template-columns: 1fr 330px; gap: 40px; }
  .st-sectors__grid { grid-template-columns: 1fr 400px; gap: 40px; }
  .st-streets__grid { grid-template-columns: 350px 1fr; gap: 40px; }
  .st-coverage__grid,
  .st-quote__grid { gap: 44px; }
  .st-creds__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  :root { --st-gutter: 28px; }

  /* Hide the whole nav wrapper, not just the list — it is a grid item, and
     leaving it in place gives three children to two columns, which wraps the
     clock and burger onto a second row. */
  .st-nav-wrap { display: none; }
  .st-burger { display: block; }
  .st-header__inner { grid-template-columns: 1fr auto; }
  .st-header__end .st-btn { display: none; }
  /* Both CTAs move into the burger menu at this width. */
  .st-portal-link { display: none; }

  .st-hero__inner { grid-template-columns: 1fr; gap: 44px; }
  .st-ops { max-width: 480px; }

  .st-stats { grid-template-columns: repeat(2, 1fr); }
  .st-stat { border-bottom: 1px solid var(--st-line); }
  .st-stat:nth-child(2n) { border-right: 0; }

  .st-sectors__grid,
  .st-streets__grid,
  .st-coverage__grid,
  .st-quote__grid { grid-template-columns: 1fr; }
  .st-sector-panel { position: static; }
  .st-radar { max-width: 520px; }

  .st-team__grid { grid-template-columns: 1fr; }
  .st-how__grid { grid-template-columns: repeat(2, 1fr); }
  .st-how__step:nth-child(even) { margin-top: 0; }

  .st-postlist { grid-template-columns: repeat(2, 1fr); }
  .st-footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 720px) {
  :root { --st-gutter: 20px; }

  /* Keep the brand, clock and burger comfortably on one row. */
  .st-brand__mark { font-size: 22px; }
  .st-brand__sub { font-size: 7px; padding-left: 10px; }
  .st-header__end { gap: 12px; }

  .st-section { padding-block: 72px; }
  .st-hero { padding-top: 52px; }
  .st-hero__intro { flex-direction: column; align-items: flex-start; gap: 20px; }
  .st-hero__rule { margin-bottom: 0; }
  /* Full width, but centred — space-between strands the ghost button's label
     on the left and throws the filled button's arrow to the far edge. */
  .st-hero__cta { flex-direction: column; align-items: stretch; }
  .st-hero__cta .st-btn { width: 100%; justify-content: center; }
  .st-hero__photo { height: 220px; margin-top: 44px; }

  .st-stats { grid-template-columns: 1fr; }
  .st-stat { border-right: 0; }

  .st-svc { flex: 0 0 84vw; }
  .st-services__head { margin-bottom: 36px; }
  .st-services__hint { display: none; }

  .st-sector { grid-template-columns: 40px 1fr; gap: 12px; padding-block: 20px; }
  .st-sector-panel__photo { height: 220px; }
  .st-street-panel__photo { height: 240px; }

  .st-how__grid { grid-template-columns: 1fr; gap: 28px; }
  .st-creds__grid { grid-template-columns: 1fr; }

  .st-form { padding: 24px 20px 28px; }
  .st-options { grid-template-columns: 1fr; }
  .st-field--half { grid-template-columns: 1fr; }
  .st-form__foot { flex-direction: column; align-items: stretch; }
  .st-form__nav { justify-content: space-between; }

  .st-postlist { grid-template-columns: 1fr; }
  .st-footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .st-footer__bar { flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (max-width: 560px) {
  /* The sub-label duplicates the tagline, so it goes first. The live clock
     earns its place — it is what makes the 24/7 desk claim feel true. */
  .st-brand__sub { display: none; }
}

@media (max-width: 340px) {
  .st-clock { display: none; }
}
