:root {
  --red: #cf2027;
  --red-deep: #8f1218;
  --red-ink: #b81c22;
  --red-on-dark: #ff6b6f;
  --ink: #111411;
  --charcoal: #262b26;
  --stone: #e6e1d6;
  --paper: #f7f4ec;
  --white: #faf8f4;
  --muted: #565b4f;
  --state-ok: #1c4d2e;
  --err-ink: #ffe1e1;
  --err-line: #ffd0d0;
  --line: rgba(17, 20, 17, 0.16);
  --line-light: rgba(255, 255, 255, 0.18);
  --shadow: 0 24px 70px rgba(17, 20, 17, 0.24);
  --font-display: "Archivo", "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --field-h: 50px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: clip;
}

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

figure {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.site {
  overflow: clip;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: 76px;
  padding: 10px 34px;
  border-bottom: 3px solid var(--red);
  background: color-mix(in srgb, var(--ink) 94%, transparent);
  color: var(--white);
  backdrop-filter: blur(16px);
}

.topbar__inner {
  display: flex;
  align-items: center;
  gap: 34px;
  width: min(1180px, 100%);
  margin: 0 auto;
  min-height: 56px;
}

.brand {
  display: flex;
  align-items: center;
  width: 156px;
}

.brand img {
  width: 156px;
  height: 58px;
  object-fit: contain;
}

.nav {
  display: flex;
  gap: 26px;
  color: color-mix(in srgb, var(--white) 76%, transparent);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}

.nav a:hover {
  color: var(--white);
}

.phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 4px;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  line-height: 1;
}

.phone:hover {
  background: var(--red-deep);
}

.hero {
  position: relative;
  display: grid;
  min-height: 78vh;
  padding: 64px 34px 96px;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: url("../images/hero.webp") center / cover no-repeat;
  content: "";
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--ink) 90%, transparent) 0%, color-mix(in srgb, var(--ink) 70%, transparent) 43%, color-mix(in srgb, var(--ink) 16%, transparent) 100%),
    linear-gradient(0deg, color-mix(in srgb, var(--ink) 52%, transparent), color-mix(in srgb, var(--ink) 6%, transparent) 54%);
  content: "";
}

.hero-mark {
  position: absolute;
  right: -58px;
  bottom: -54px;
  z-index: -1;
  color: color-mix(in srgb, var(--white) 5.5%, transparent);
  font-family: var(--font-display);
  font-size: 186px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.wrap {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 780px) minmax(250px, 360px);
  gap: 54px;
  align-items: end;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: color-mix(in srgb, var(--white) 84%, transparent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 42px;
  height: 3px;
  background: var(--red);
  content: "";
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-size: 74px;
  line-height: 0.96;
  font-weight: 900;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 34px;
  color: color-mix(in srgb, var(--white) 82%, transparent);
  font-size: 20px;
}

.hero-tagline {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--red);
  color: var(--white);
}

.button.secondary {
  border-color: color-mix(in srgb, var(--white) 62%, transparent);
  background: color-mix(in srgb, var(--white) 8%, transparent);
  color: var(--white);
}

.hero-proof {
  position: relative;
  align-self: end;
  padding-top: 20px;
  color: color-mix(in srgb, var(--white) 80%, transparent);
}

.hero-proof::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 46px;
  height: 3px;
  background: var(--red);
}

.hero-proof div {
  padding: 18px 0;
  border-bottom: 1px solid var(--line-light);
}

.hero-proof div:last-child {
  border-bottom: 0;
}

.hero-proof strong {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
}

.hero-proof span {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  font-weight: 600;
}

.section {
  position: relative;
  padding: 96px 34px;
}

.section.stone {
  background: var(--stone);
}

.section.dark {
  background: var(--charcoal);
  color: var(--white);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  margin-bottom: 44px;
}

.section-head h2 {
  max-width: 24ch;
}

.kicker {
  margin-bottom: 12px;
  color: var(--red-ink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section.dark .kicker,
.cta .kicker {
  color: var(--red-on-dark);
}

h2 {
  margin-bottom: 0;
  font-family: var(--font-display);
  font-size: 46px;
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

h3 {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.16;
  font-weight: 800;
}

.lede {
  margin-bottom: 0;
  max-width: 62ch;
  color: var(--muted);
  font-size: 18px;
}

.dark .lede {
  color: color-mix(in srgb, var(--white) 72%, transparent);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 250px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: color-mix(in srgb, var(--white) 55%, transparent);
  overflow: hidden;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.service-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--red);
  content: "";
}

.service-card::after {
  position: absolute;
  left: 32px;
  bottom: -14px;
  max-width: calc(100% - 64px);
  color: color-mix(in srgb, var(--ink) 5%, transparent);
  font-size: clamp(2.5rem, 6.5vw, 4.25rem);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  content: attr(data-label);
}

.service-card:hover {
  border-color: color-mix(in srgb, var(--red) 34%, transparent);
}

.service-card h3 {
  position: relative;
  z-index: 1;
  max-width: 440px;
  margin-bottom: 18px;
  font-size: 30px;
}

.service-card p {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.work-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  aspect-ratio: 1 / 0.92;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
}

/* Category tiles awaiting photography: deliberate surface, not a failed image. */
.work-card--awaiting {
  background:
    repeating-linear-gradient(
      135deg,
      color-mix(in srgb, var(--white) 2.2%, transparent) 0 2px,
      transparent 2px 12px
    ),
    linear-gradient(155deg, transparent 0%, color-mix(in srgb, var(--red) 16%, transparent) 100%),
    linear-gradient(160deg, var(--charcoal) 0%, var(--ink) 100%);
  border: 1px solid color-mix(in srgb, var(--white) 10%, transparent);
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: transform 220ms ease, opacity 220ms ease;
}

.work-card:hover img {
  transform: scale(1.035);
  opacity: 0.78;
}

.work-card figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 5px;
  padding: 18px 20px 20px;
  background: color-mix(in srgb, var(--ink) 88%, transparent);
  text-shadow: none;
}

.work-card figcaption::before {
  position: absolute;
  top: 0;
  right: 20px;
  left: 20px;
  height: 2px;
  background: var(--red);
  content: "";
}

.work-card figcaption > * {
  position: relative;
  z-index: 1;
}

.work-card strong {
  font-size: 18px;
  line-height: 1.12;
}

.work-card span {
  color: color-mix(in srgb, var(--white) 76%, transparent);
  font-size: 13px;
  font-weight: 600;
}

.working-head {
  max-width: 980px;
  margin-bottom: 44px;
}

.working-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  align-items: start;
}

.working-column {
  border: 1px solid color-mix(in srgb, var(--white) 16%, transparent);
  border-radius: 8px;
  background: color-mix(in srgb, var(--white) 5.5%, transparent);
  overflow: hidden;
}

.working-column img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.working-content {
  padding: 30px;
}

.working-content h3 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 30px;
}

.working-steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: work-step;
}

.working-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  padding: 24px 0;
  border-top: 1px solid color-mix(in srgb, var(--white) 15%, transparent);
  counter-increment: work-step;
}

.working-steps li::before {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 2px solid var(--red);
  border-radius: 50%;
  color: var(--white);
  font-weight: 900;
  content: counter(work-step);
}

.working-steps strong {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
  font-size: 18px;
}

.working-steps p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--white) 68%, transparent);
}

/* Desktop: both columns share row tracks so image, heading, and each
   numbered step sit at the same height across Commercial and Residential. */
@media (min-width: 981px) {
  @supports (grid-template-rows: subgrid) {
    .working-grid {
      grid-template-rows: repeat(6, auto);
      row-gap: 0;
      align-items: stretch;
    }
    .working-column {
      display: grid;
      grid-template-rows: subgrid;
      grid-row: span 6;
    }
    .working-content {
      display: grid;
      grid-template-rows: subgrid;
      grid-row: span 5;
      align-content: start;
    }
    .working-steps {
      display: grid;
      grid-template-rows: subgrid;
      grid-row: span 4;
    }
  }
}

.cta {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(290px, 0.62fr);
  gap: 44px;
  align-items: center;
  padding: 56px 50px;
  border-radius: 8px;
  border-top: 4px solid var(--red);
  background: linear-gradient(160deg, var(--charcoal), var(--ink));
  color: var(--white);
}

.cta h2 {
  margin-bottom: 18px;
}

.cta p {
  max-width: 58ch;
  margin-bottom: 0;
  color: var(--white);
  font-size: 18px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-list a,
.contact-list span {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--white) 28%, transparent);
  color: var(--white);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.contact-list a:hover {
  color: var(--red-on-dark);
}

footer.sitefoot {
  padding: 28px 34px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

/* WordPress admin bar offset for the sticky topbar */
body.admin-bar .topbar {
  top: 32px;
}
@media (max-width: 782px) {
  body.admin-bar .topbar {
    top: 46px;
  }
}

/* Generic content pages (blog index, single, page) */
.wp-content {
  padding: 120px 34px 96px;
  min-height: 60vh;
}
.wp-content .wrap {
  width: min(760px, 100%);
}
.wp-entry + .wp-entry {
  margin-top: 4rem;
}
.wp-entry__title {
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 1.05;
  font-weight: 900;
  margin-bottom: 1rem;
}
.wp-entry__meta {
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.wp-entry__body p {
  margin-bottom: 1.2rem;
}
.wp-entry__body img {
  height: auto;
  border-radius: 8px;
}
.wp-pagination {
  margin-top: 3rem;
}

@media (max-width: 980px) {
  .topbar {
    padding: 10px 22px;
  }

  .topbar__actions {
    margin-left: auto;
  }

  .hero {
    min-height: 74vh;
    padding: 56px 22px 80px;
  }

  .hero-inner,
  .section-head,
  .working-grid,
  .cta {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 36px;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-left: 0;
    border-top: 3px solid var(--red);
  }

  .hero-proof div {
    padding: 16px;
    border-right: 1px solid var(--line-light);
    border-bottom: 0;
  }

  .hero-proof div:last-child {
    border-right: 0;
  }

  .section {
    padding: 74px 22px;
  }

  .service-card {
    min-height: 230px;
  }

  .work-grid {
    grid-template-columns: 1fr 1fr;
  }

  .working-column img {
    height: 220px;
  }
}

@media (max-width: 640px) {
  .topbar {
    min-height: 66px;
    padding: 8px 14px;
  }

  .topbar__inner {
    gap: 12px;
    min-height: 46px;
  }

  .brand {
    width: 110px;
  }

  .brand img {
    width: 110px;
    height: 42px;
  }

  .phone {
    min-height: 36px;
    padding: 0 10px;
    font-size: 0;
    white-space: nowrap;
  }

  .phone::after {
    content: "Call Sasso";
    font-size: 12px;
  }

  .hero {
    padding: 48px 18px 64px;
  }

  .hero::before {
    background-position: 57% center;
  }

  .hero-mark {
    display: none;
  }

  h1 {
    font-size: 36px;
    line-height: 0.98;
  }

  h2 {
    font-size: 31px;
    line-height: 1.08;
  }

  h3 {
    font-size: 22px;
  }

  .eyebrow {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    font-size: 12px;
    line-height: 1.35;
  }

  .hero-copy,
  .lede,
  .cta p {
    font-size: 16px;
  }

  .hero-inner > div,
  .hero-proof {
    max-width: 354px;
  }

  .wrap {
    width: min(354px, 100%);
    margin-left: 0;
  }

  .section .wrap {
    margin-left: auto;
    margin-right: auto;
  }

  .actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-proof,
  .service-grid,
  .work-grid,
  .working-grid {
    grid-template-columns: 1fr;
  }

  .hero-proof div {
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .hero-proof div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 58px 18px;
  }

  .section-head {
    gap: 20px;
    margin-bottom: 30px;
  }

  .service-card {
    min-height: auto;
    padding: 26px 22px;
  }

  .service-card h3 {
    font-size: 25px;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .work-card {
    min-height: 285px;
  }

  .working-head {
    margin-bottom: 28px;
  }

  .working-content {
    padding: 24px 22px;
  }

  .working-content h3 {
    font-size: 24px;
  }

  .working-steps li {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 14px;
    padding: 20px 0;
  }

  .working-steps li::before {
    width: 36px;
    height: 36px;
  }

  .cta {
    padding: 30px 22px;
  }

  footer.sitefoot {
    padding: 24px 18px;
  }
}

/* =====================================================================
   Impeccable critique fixes — focus, motion, mobile nav, quote form
   ===================================================================== */

/* Keyboard focus visibility */
a:focus-visible,
button:focus-visible,
.button:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 2px;
  border-radius: 3px;
}
/* Light ring on dark or red surfaces where red would disappear */
.topbar a:focus-visible,
.nav a:focus-visible,
.phone:focus-visible,
.brand:focus-visible,
.section.dark a:focus-visible,
.cta a:focus-visible,
.button.primary:focus-visible,
.button.secondary:focus-visible {
  outline-color: var(--white);
}

/* Pressed + disabled states */
.button:active,
.phone:active {
  transform: translateY(1px);
}

.nav a:active,
.contact-list a:active,
.sitefoot__col a:active {
  opacity: 0.7;
}

/* Respect reduced-motion preferences */
@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;
  }
  .button:hover,
  .button:active,
  .phone:active,
  .work-card:hover img,
  .cta__form .ff-btn-submit:hover,
  .cta__form .ff-btn-submit:active { transform: none !important; }
}

/* Top-bar actions cluster (phone + burger); burger hidden on desktop */
.topbar__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}
.nav-toggle { display: none; }
.nav-burger { display: none; }

/* Contact section: reassurance + quote form */
.cta__intro { min-width: 0; }
.cta p.cta__reassure {
  margin-top: 16px;
  margin-bottom: 22px;
  color: color-mix(in srgb, var(--white) 85%, transparent);
  font-size: 16px;
}
/* Form sits directly on the dark panel — no inner card */
.cta .cta__form {
  min-width: 0;
}
.cta .cta__form .fluentform,
.cta .cta__form .frm-fluent-form { max-width: 100%; }
.cta .cta__form .ff-el-group {
  position: relative;
  margin: 0;
  padding-bottom: 24px;
}
.cta .cta__form .ff-el-input--label label,
.cta .cta__form .ff-el-input--label {
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
}
.cta .cta__form .ff-el-form-control {
  width: 100%;
  min-height: var(--field-h);
  padding: 11px 12px;
  border: 1px solid color-mix(in srgb, var(--white) 40%, transparent);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  outline: 2px solid transparent;
  outline-offset: 1px;
}
.cta .cta__form textarea.ff-el-form-control { resize: vertical; min-height: 110px; }
.cta .cta__form .ff-el-form-control:focus {
  outline: 2px solid var(--white);
}
.cta .cta__form .ff-btn-submit {
  width: 100%;
  margin-top: 4px;
  min-height: var(--field-h);
  padding: 0 22px;
  border: 0;
  border-radius: 4px;
  /* !important: Fluent Forms injects per-form button colors that outrank theme selectors */
  background: var(--red) !important;
  color: var(--white) !important;
  font-weight: 900;
  font-family: inherit;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}
.cta .cta__form .ff-btn-submit:hover {
  transform: translateY(-2px);
  background: var(--red-deep) !important;
}
.cta .cta__form .ff-btn-submit:active { transform: translateY(0); }
.cta .cta__form .ff-btn-submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}
.cta .cta__form .ff-btn-submit:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 2px;
}
.cta .cta__form .ff-message-success {
  margin: 0;
  padding: 16px;
  border-radius: 6px;
  background: color-mix(in srgb, var(--white) 95%, transparent);
  color: var(--state-ok);
  font-weight: 600;
}
/* Field errors render inside the reserved 24px slot below each field */
.cta .cta__form .ff-el-group .error,
.cta .cta__form .ff-el-group .text-danger {
  position: absolute;
  left: 0;
  top: calc(100% - 22px);
  min-height: 1lh;
  color: var(--err-ink);
  font-size: 13px;
  line-height: 1.3;
  overflow-wrap: anywhere;
}
/* Form-level errors (server/spam failures) flow statically below the form */
.cta .cta__form .ff-errors-in-stack .error,
.cta .cta__form .ff-errors-in-stack .text-danger {
  position: static;
  margin-top: 12px;
  color: var(--err-ink);
  font-size: 14px;
  font-weight: 600;
}
.cta .cta__form .ff-el-is-error .ff-el-form-control { border-color: var(--err-line); }

/* Footer: real NAP + meta columns */
footer.sitefoot {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.sitefoot__col { display: grid; gap: 6px; }
.sitefoot__col strong { color: var(--ink); font-size: 15px; }
.sitefoot__col a:hover { color: var(--red); }

/* Mobile: disclosure nav + footer stack */
@media (max-width: 980px) {
  .hero-proof::before { display: none; }

  .nav-burger {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 40px;
    padding: 0 9px;
    border: 1px solid color-mix(in srgb, var(--white) 30%, transparent);
    border-radius: 6px;
    cursor: pointer;
  }
  .nav-burger span {
    display: block;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
  }
  .nav-toggle {
    display: block;
    position: absolute;
    width: 1px;
    height: 1px;
    margin: 0;
    padding: 0;
    opacity: 0;
    overflow: hidden;
  }
  .nav {
    display: none;
    position: absolute;
    top: calc(100% + 3px);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 6px 0;
    background: color-mix(in srgb, var(--ink) 98%, transparent);
    border-bottom: 1px solid color-mix(in srgb, var(--white) 14%, transparent);
    box-shadow: var(--shadow);
  }
  .nav-toggle:checked ~ .nav { display: flex; }
  .nav a { padding: 13px 22px; font-size: 15px; }
  .nav-toggle:focus-visible ~ .topbar__actions .nav-burger {
    outline: 3px solid var(--white);
    outline-offset: 2px;
    border-radius: 8px;
  }

  footer.sitefoot { grid-template-columns: 1fr; gap: 22px; }
}

