/* ============================================================
   QFORCE — shared stylesheet
   Industrial / utilitarian. Concrete + charcoal + muted hi-vis.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Archivo:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;700&display=swap');

/* ---------- Tokens ---------- */
:root {
  /* concrete neutrals (cool, very low chroma) */
  --concrete:    oklch(0.955 0.004 240);
  --concrete-2:  oklch(0.925 0.005 240);
  --concrete-3:  oklch(0.892 0.006 240);
  --line:        oklch(0.855 0.006 240);
  --line-strong: oklch(0.78 0.008 240);

  /* charcoal / ink */
  --ink:         oklch(0.205 0.012 255);
  --charcoal:    oklch(0.235 0.012 255);
  --charcoal-2:  oklch(0.285 0.012 255);
  --muted:       oklch(0.45 0.012 255);
  --muted-2:     oklch(0.58 0.010 255);

  /* muted hi-vis (toned down from neon safety orange) */
  --orange:      oklch(0.685 0.155 47);
  --orange-deep: oklch(0.605 0.150 44);

  /* on-dark text */
  --on-dark:        oklch(0.94 0.004 240);
  --on-dark-muted:  oklch(0.72 0.008 240);
  --on-dark-line:   oklch(0.34 0.012 255);

  --container: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --section-y: clamp(72px, 11vw, 152px);

  --stripe-w: 13px;     /* hazard stripe band width */
  --radius: 3px;

  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-body: 'Archivo', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--concrete);
  color: var(--ink);
  font-size: 18px;
  line-height: 1.62;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }
::selection { background: var(--orange); color: var(--ink); }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.divider { border: 0; border-top: 1px solid var(--line); margin: 0; }

/* ---------- Hazard stripe motif ---------- */
.hazard {
  height: var(--stripe-w);
  width: 100%;
  background-image: repeating-linear-gradient(
    -45deg,
    var(--orange) 0,
    var(--orange) calc(var(--stripe-w) * 0.62),
    var(--charcoal) calc(var(--stripe-w) * 0.62),
    var(--charcoal) calc(var(--stripe-w) * 1.24)
  );
  background-size: calc(var(--stripe-w) * 1.76) 100%;
}
.hazard--tall { height: calc(var(--stripe-w) * 1.6); }
/* slim accent rule used as a section tick */
.tick { display: inline-block; width: 46px; height: 4px; background: var(--orange); }

/* ---------- Typography ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin: 0;
  color: var(--ink);
}
.display--hero { font-size: clamp(72px, 13.5vw, 184px); letter-spacing: -0.004em; }
.display--page { font-size: clamp(52px, 9vw, 116px); }
.display--xl   { font-size: clamp(40px, 6vw, 86px); }
.display--l    { font-size: clamp(32px, 4.4vw, 60px); }

h2, h3 { margin: 0; }
.h-sub {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
}

.eyebrow {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 24px; height: 2px;
  background: var(--orange);
  flex: none;
}
.eyebrow--plain::before { display: none; }
.eyebrow--num { color: var(--orange); }

.lead {
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.5;
  color: var(--charcoal-2);
  font-weight: 400;
  max-width: 34ch;
  letter-spacing: -0.01em;
}
.muted { color: var(--muted); }
.mono { font-family: var(--font-mono); }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--charcoal);
  --fg: var(--on-dark);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 16px 26px;
  background: var(--bg);
  color: var(--fg);
  border: 1.5px solid var(--bg);
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform .16s ease, background .2s ease, color .2s ease, border-color .2s ease;
  position: relative;
}
.btn .arrow { transition: transform .2s ease; }
.btn:hover { background: var(--ink); transform: translateY(-2px); }
.btn:hover .arrow { transform: translateX(4px); }
.btn:active { transform: translateY(0); }
.btn--lg { padding: 20px 34px; font-size: 16px; }
.btn--block { width: 100%; justify-content: center; }
.btn--ghost {
  --bg: transparent; --fg: var(--ink);
  border-color: var(--line-strong);
}
.btn--ghost:hover { background: transparent; color: var(--orange); border-color: var(--orange); }
.btn--on-dark { --bg: var(--orange); --fg: var(--ink); border-color: var(--orange); }
.btn--on-dark:hover { background: var(--orange-deep); border-color: var(--orange-deep); color: var(--ink); }

/* inline text link */
.tlink {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 13.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 3px;
  border-bottom: 2px solid var(--orange);
  transition: gap .18s ease, color .18s ease;
}
.tlink .arrow { transition: transform .18s ease; }
.tlink:hover { color: var(--orange); }
.tlink:hover .arrow { transform: translateX(4px); }

/* ---------- Header (brand bar) ---------- */
.brandbar {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklab, var(--concrete) 86%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.brandbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 78px;
  padding-block: 14px;
}
.wordmark {
  font-family: var(--font-display);
  font-size: 30px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1;
  display: inline-flex; align-items: center; gap: 2px;
}
.wordmark .q { color: var(--orange); }
.wordmark--lg { font-size: clamp(34px, 4vw, 48px); }

/* ---------- Photo placeholder (treated stock-style) ---------- */
.photo {
  position: relative;
  overflow: hidden;
  background-color: var(--charcoal);
  background-image:
    radial-gradient(120% 90% at 78% 8%, oklch(0.42 0.02 250) 0%, transparent 55%),
    radial-gradient(90% 80% at 10% 100%, oklch(0.16 0.012 255) 0%, transparent 60%),
    linear-gradient(160deg, oklch(0.30 0.014 255) 0%, oklch(0.185 0.012 255) 100%);
  border-radius: var(--radius);
  isolation: isolate;
}
.photo::after { /* fine grain */
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  opacity: 0.5;
  z-index: 1;
  pointer-events: none;
}
.photo__tag {
  position: absolute;
  left: 16px; bottom: 14px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
  display: inline-flex; align-items: center; gap: 9px;
}
.photo__tag::before {
  content: "";
  width: 9px; height: 9px;
  border: 1.5px solid var(--orange);
  flex: none;
}
.photo__corner {
  position: absolute; top: 0; right: 0; z-index: 2;
  width: 64px; height: 64px;
  background-image: repeating-linear-gradient(
    -45deg, var(--orange) 0, var(--orange) 5px,
    transparent 5px, transparent 11px);
  -webkit-mask-image: linear-gradient(225deg, #000 0, #000 50%, transparent 50%);
          mask-image: linear-gradient(225deg, #000 0, #000 50%, transparent 50%);
  opacity: 0.9;
}
/* real photograph fill */
.photo--img { background-size: cover; background-position: center; background-repeat: no-repeat; }
.photo--img::after { opacity: 0.1; }

/* ---------- Footer ---------- */
.footer { background: var(--charcoal); color: var(--on-dark); }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: clamp(32px, 5vw, 72px);
  padding-block: clamp(56px, 7vw, 88px);
}
.footer__brand .wordmark { color: var(--on-dark); }
.footer__tagline { color: var(--on-dark-muted); margin-top: 18px; max-width: 30ch; font-size: 16px; line-height: 1.5; }
.footer__col h4 {
  font-family: var(--font-mono);
  font-size: 11.5px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 18px;
}
.footer__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.footer__list a, .footer__list span { color: var(--on-dark); font-size: 16px; transition: color .18s ease; }
.footer__list a:hover { color: var(--orange); }
.footer__list .sub { color: var(--on-dark-muted); font-size: 13px; letter-spacing: 0.04em; }
.footer__bar {
  border-top: 1px solid var(--on-dark-line);
  padding-block: 22px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.footer__trust {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--on-dark); display: inline-flex; align-items: center; gap: 10px;
}
.footer__trust::before { content: ""; width: 8px; height: 8px; background: var(--orange); border-radius: 50%; flex: none; }
.footer__copy { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; color: var(--on-dark-muted); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .07s; }
.reveal[data-d="2"] { transition-delay: .14s; }
.reveal[data-d="3"] { transition-delay: .21s; }
.reveal[data-d="4"] { transition-delay: .28s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   HOME
   ============================================================ */
.hero { position: relative; padding-top: clamp(36px, 5vw, 64px); }
.hero__grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(28px, 4vw, 60px);
  align-items: stretch;
}
.hero__head { display: flex; flex-direction: column; gap: 30px; justify-content: flex-start; }
.hero__title { position: relative; }
.hero__title .display--hero { display: block; line-height: 1.08; }
.hero__sub { display: flex; flex-direction: column; gap: 26px; max-width: 42ch; }
.hero__cta { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.hero__photo { position: relative; min-height: 420px; height: 100%; }

/* value band (compact) */
.valueband { background: var(--concrete-2); border-block: 1px solid var(--line); }
.valueband__inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px,5vw,72px); align-items: center; padding-block: clamp(46px, 6vw, 78px); }
.valueband__statement { font-family: var(--font-body); font-weight: 700; font-size: clamp(27px, 3.4vw, 44px); line-height: 1.16; letter-spacing: -0.024em; color: var(--ink); margin: 0; max-width: 15ch; text-wrap: balance; }
.valueband__statement em { font-style: normal; color: var(--orange); }
.valueband__points { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.valueband__points li { display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: baseline; padding: 15px 0; border-top: 1px solid var(--line); }
.valueband__points li:last-child { border-bottom: 1px solid var(--line); }
.valueband__points .n { font-family: var(--font-mono); font-size: 12px; color: var(--orange); letter-spacing: 0.1em; }
.valueband__points .t { font-weight: 600; font-size: clamp(16px,1.5vw,19px); letter-spacing: -0.01em; color: var(--ink); }

/* services overview tiles */
.svc-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 28px 48px; flex-wrap: wrap; margin-bottom: clamp(36px, 4vw, 56px); }
.svc-head__title { flex: 1 1 auto; }
.svc-head__title .l { display: block; }
.tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.tile {
  background: var(--concrete);
  padding: clamp(26px, 2.6vw, 38px);
  display: flex; flex-direction: column; gap: 14px;
  min-height: 244px;
  position: relative;
  transition: background .22s ease, transform .22s ease;
}
.tile:hover { background: var(--concrete-2); }
.tile__n { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.16em; color: var(--muted); }
.tile h3 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: clamp(26px, 2.4vw, 34px); line-height: 1.02; letter-spacing: 0.005em; }
.tile p { margin: 0; color: var(--muted); font-size: 15.5px; line-height: 1.5; }
.tile .tlink { margin-top: auto; border-bottom-color: var(--line-strong); color: var(--muted); }
.tile:hover .tlink { color: var(--orange); border-bottom-color: var(--orange); }
.tile__rule { position: absolute; left: 0; top: 0; height: 3px; width: 0; background: var(--orange); transition: width .3s ease; }
.tile:hover .tile__rule { width: 100%; }

/* CTA strip */
.ctastrip { background: var(--charcoal); color: var(--on-dark); position: relative; overflow: hidden; }
.ctastrip__inner { display: flex; align-items: center; justify-content: space-between; gap: clamp(28px,4vw,56px); flex-wrap: wrap; padding-block: clamp(48px,6vw,76px); }
.ctastrip__copy { flex: 1 1 520px; max-width: 760px; }
.ctastrip h2 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: clamp(32px, 4.4vw, 60px); line-height: 1.06; color: var(--on-dark); letter-spacing: 0.004em; }
.ctastrip h2 .l { display: block; }
.ctastrip h2 em { font-style: normal; color: var(--orange); }
.ctastrip p { color: var(--on-dark-muted); margin: 14px 0 0; max-width: 40ch; }

/* ============================================================
   SERVICES
   ============================================================ */
.page-head { padding-top: clamp(40px, 6vw, 80px); }
.page-head__grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(28px,4vw,56px); align-items: end; }
.page-head .lead { max-width: 38ch; }

.cat { padding-block: clamp(48px, 6vw, 88px); border-top: 1px solid var(--line); scroll-margin-top: 96px; }
.cat__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.cat__head { position: sticky; top: 104px; display: flex; flex-direction: column; gap: 20px; }
.cat__index { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.16em; color: var(--orange); }
.cat__title { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: clamp(34px, 4vw, 58px); line-height: 1.0; letter-spacing: 0.005em; color: var(--ink); }
.cat__desc { color: var(--muted); font-size: 16.5px; line-height: 1.55; max-width: 32ch; }
.cat__services { list-style: none; margin: 0 0 30px; padding: 0; }
.cat__services li {
  display: grid; grid-template-columns: auto 1fr auto; align-items: baseline; gap: 18px;
  padding: 20px 0; border-top: 1px solid var(--line);
}
.cat__services li:last-child { border-bottom: 1px solid var(--line); }
.cat__services .s-n { font-family: var(--font-mono); font-size: 12px; color: var(--muted-2); letter-spacing: 0.08em; }
.cat__services .s-name { font-weight: 600; font-size: clamp(18px, 1.8vw, 22px); letter-spacing: -0.01em; color: var(--ink); }
.cat__services .s-note { font-size: 14.5px; color: var(--muted); }
.cat__services .s-tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-2); justify-self: end; white-space: nowrap; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact__grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(40px, 6vw, 96px); align-items: start; }
.contact__intro { display: flex; flex-direction: column; gap: 26px; position: sticky; top: 104px; }
.phone-line { display: flex; flex-direction: column; gap: 8px; padding: 24px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.phone-line .lbl { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.phone-line a { font-family: var(--font-display); font-size: clamp(30px, 3.6vw, 46px); letter-spacing: 0.01em; color: var(--ink); transition: color .18s ease; }
.phone-line a:hover { color: var(--orange); }

.contact-detail { display: flex; flex-direction: column; gap: 12px; }
.contact-detail .row { display: flex; gap: 12px; align-items: baseline; font-size: 15.5px; color: var(--charcoal-2); }
.contact-detail .row .k { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); min-width: 64px; }

/* form */
.form { display: flex; flex-direction: column; gap: 34px; }
.field-group__label { display: flex; align-items: baseline; flex-wrap: wrap; gap: 6px 12px; margin-bottom: 18px; }
.field-group__label .num { font-family: var(--font-mono); font-size: 12px; color: var(--orange); letter-spacing: 0.1em; }
.field-group__label .txt { font-weight: 700; font-size: 17px; letter-spacing: -0.005em; }
.field-group__label .opt { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-2); margin-left: auto; }

.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  font-family: var(--font-body);
  font-weight: 600; font-size: 14.5px;
  letter-spacing: 0.005em;
  padding: 11px 18px;
  background: var(--concrete);
  color: var(--charcoal-2);
  border: 1.5px solid var(--line-strong);
  border-radius: 100px;
  cursor: pointer;
  transition: all .16s ease;
  display: inline-flex; align-items: center; gap: 9px;
}
.chip:hover { border-color: var(--ink); transform: translateY(-1px); }
.chip .dot { width: 8px; height: 8px; border-radius: 50%; background: transparent; border: 1.5px solid var(--line-strong); transition: all .16s ease; }
.chip[aria-pressed="true"] { background: var(--ink); color: var(--on-dark); border-color: var(--ink); }
.chip[aria-pressed="true"] .dot { background: var(--orange); border-color: var(--orange); }
.chip--soon[aria-pressed="true"] { background: var(--orange); color: var(--ink); border-color: var(--orange); }
.chip--soon[aria-pressed="true"] .dot { background: var(--ink); border-color: var(--ink); }

.fields { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 9px; }
.field--full { grid-column: 1 / -1; }
.field label { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.field label .req { color: var(--orange); }
.field input, .field textarea {
  font-family: var(--font-body);
  font-size: 16.5px;
  color: var(--ink);
  background: var(--concrete);
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 14px 16px;
  width: 100%;
  transition: border-color .16s ease, background .16s ease;
}
.field textarea { resize: vertical; min-height: 120px; line-height: 1.5; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--ink); background: #fff; }
.field.invalid input, .field.invalid textarea { border-color: var(--orange-deep); background: oklch(0.97 0.03 47); }
.field__err { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.04em; color: var(--orange-deep); height: 0; overflow: hidden; opacity: 0; transition: all .18s ease; }
.field.invalid .field__err { height: auto; opacity: 1; margin-top: 1px; }

.form__submit { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.form__note { font-family: var(--font-mono); font-size: 12px; color: var(--muted); letter-spacing: 0.03em; max-width: 30ch; line-height: 1.5; }

.form-success {
  display: none;
  flex-direction: column; gap: 18px;
  padding: clamp(32px, 4vw, 52px);
  background: var(--charcoal); color: var(--on-dark);
  border-radius: var(--radius);
}
.form-success.show { display: flex; opacity: 1; animation: pop .4s cubic-bezier(.2,.7,.2,1); }
@keyframes pop { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.form-success .badge { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--orange); display: inline-flex; align-items: center; gap: 10px; }
.form-success .badge::before { content: ""; width: 9px; height: 9px; background: var(--orange); border-radius: 50%; }
.form-success h3 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: clamp(30px,4vw,48px); line-height: 0.96; color: var(--on-dark); }
.form-success p { margin: 0; color: var(--on-dark-muted); max-width: 42ch; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .tiles { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  body { font-size: 17px; }
  .hero__grid { grid-template-columns: 1fr; gap: 36px; }
  .hero__photo { aspect-ratio: 16/10; min-height: 0; order: -1; }
  .valueband__inner, .cat__grid, .page-head__grid, .contact__grid { grid-template-columns: 1fr; }
  .cat__head, .contact__intro { position: static; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .tiles { grid-template-columns: 1fr; }
  .fields { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .brandbar__inner { min-height: 64px; }
  .wordmark { font-size: 26px; }
  .cat__services li { grid-template-columns: auto 1fr; }
  .cat__services .s-tag { display: none; }
}
