/* ==========================================================================
   Hitman Detailing : site.css

   Brand system taken from the HD logo: black, chrome, one saturated red.
   Sampled from the logo artwork, the brand red clusters at #E80010, so the
   accent below is that red, split into three roles so small text still clears
   WCAG AA contrast on the near-black base.

   The layout stays restrained and spacious. The logo supplies the aggression;
   the page supplies the premium. No frameworks, no external CSS. Fonts are the
   only third-party request.
   ========================================================================== */

/* ---------- 1. Tokens ---------------------------------------------------- */
:root {
  /* Surfaces */
  --ink:        #0A0B0D;   /* page base */
  --graphite:   #111317;   /* raised panel */
  --slate:      #171A1F;   /* card */
  --line:       #262A31;   /* hairline */
  --line-soft:  #1C1F25;

  /* Type. Cooler than cream, to sit with the chrome in the logo. */
  --bone:       #F4F5F7;   /* primary text */
  --bone-dim:   #C3C8CF;   /* secondary text */
  --muted:      #878E97;   /* tertiary / meta */

  /* Accent: the logo red, in three roles.
     --accent      brand red. Fills, dots, flags, active borders.
     --accent-lt   lighter red for SMALL TEXT and icons (5.9:1 on --ink).
     --accent-btn  button fill, paired with white text (5.5:1).
     --accent-dim  hairlines and quiet borders. Never used for text. */
  --accent:      #E30A15;
  --accent-lt:   #FF4A52;
  --accent-btn:  #D40A14;
  --accent-dim:  #7E1218;
  --accent-wash: rgba(227, 10, 21, 0.10);

  /* Chrome, echoing the logo's brushed metal. Hairlines and small details. */
  --chrome:      #C9D1DA;

  /* Type scale */
  --display: "Archivo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --step--1: clamp(0.80rem, 0.78rem + 0.10vw, 0.875rem);
  --step-0:  clamp(1.00rem, 0.97rem + 0.15vw, 1.0625rem);
  --step-1:  clamp(1.20rem, 1.12rem + 0.40vw, 1.4375rem);
  --step-2:  clamp(1.55rem, 1.35rem + 1.00vw, 2.25rem);
  --step-3:  clamp(2.10rem, 1.65rem + 2.20vw, 3.50rem);
  --step-4:  clamp(2.60rem, 1.80rem + 4.00vw, 5.25rem);

  /* Rhythm */
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --measure: 68ch;
  --shell: 1240px;
  --section-y: clamp(4.5rem, 9vw, 9rem);

  --radius: 3px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- 2. Reset ---------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--ink);
  color: var(--bone-dim);
  font-family: var(--sans);
  font-size: var(--step-0);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
h1, h2, h3, h4, p, ul, ol, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
button { font: inherit; color: inherit; }

a { color: var(--bone); text-decoration: none; }
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

::selection { background: var(--accent); color: #FFFFFF; }

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

/* ---------- 3. Typography ---------------------------------------------- */
h1, h2, h3, .display {
  font-family: var(--display);
  font-weight: 700;
  color: var(--bone);
  line-height: 1.02;
  letter-spacing: -0.032em;
  text-wrap: balance;
}

h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-1); font-family: var(--sans); font-weight: 600; letter-spacing: -0.01em; line-height: 1.3; }

.eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-lt);
  margin-bottom: 1.35rem;
}

.lede { font-size: var(--step-1); line-height: 1.5; color: var(--bone-dim); max-width: 46ch; }
.prose { max-width: var(--measure); }
.prose p + p { margin-top: 1.1em; }
.meta { font-size: var(--step--1); color: var(--muted); letter-spacing: 0.01em; }
.tnum { font-variant-numeric: tabular-nums; }

/* ---------- 4. Layout -------------------------------------------------- */
.shell { width: 100%; max-width: var(--shell); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: clamp(3rem, 6vw, 5.5rem); }
.section--panel { background: var(--graphite); border-block: 1px solid var(--line-soft); }

.rule { height: 1px; background: var(--line); border: 0; margin: 0; }

.split {
  display: grid;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
@media (min-width: 62rem) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--copy-first { grid-template-columns: 0.95fr 1.05fr; }
  .split--wide-copy { grid-template-columns: 1.15fr 0.85fr; }
}

.grid { display: grid; gap: clamp(1rem, 2vw, 1.5rem); }
@media (min-width: 40rem)  { .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 62rem)  { .grid--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 40rem)  { .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 72rem)  { .grid--4 { grid-template-columns: repeat(4, 1fr); } }

.section-head { max-width: 54ch; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head--center { margin-inline: auto; text-align: center; }

/* ---------- 5. Image frames -------------------------------------------
   Drop a real photo in and nothing else changes. The gradient below is a
   deliberate placeholder that still reads premium if the file is absent.
   ---------------------------------------------------------------------- */
.frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background-color: #0D0F13;
  background-image:
    var(--img, none),
    radial-gradient(120% 80% at 22% 8%, rgba(227,10,21,0.14), transparent 60%),
    radial-gradient(100% 90% at 88% 96%, rgba(201,209,218,0.09), transparent 55%),
    linear-gradient(168deg, #16191F 0%, #0B0D11 58%, #101318 100%);
  background-size: cover, auto, auto, auto;
  background-position: center, center, center, center;
  background-repeat: no-repeat;
  aspect-ratio: 4 / 3;
}
.frame--hero    { aspect-ratio: 16 / 9; }
.frame--tall    { aspect-ratio: 3 / 4; }
.frame--wide    { aspect-ratio: 21 / 9; }
.frame--square  { aspect-ratio: 1 / 1; }

/* Fine tooling texture so an empty frame does not look like a broken image. */
.frame::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 46px 46px, 46px 46px;
  pointer-events: none;
}
.frame--photo::before { display: none; }

/* Shot-brief badge. Visible only while <body class="placeholders">. */
.frame[data-shot]::after { content: none; }
.placeholders .frame[data-shot]::after {
  content: attr(data-shot);
  position: absolute;
  left: 0.85rem; right: 0.85rem; bottom: 0.85rem;
  padding: 0.5rem 0.7rem;
  font-family: var(--sans);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  line-height: 1.5;
  color: var(--accent-lt);
  background: rgba(10, 11, 13, 0.82);
  border: 1px solid var(--accent-dim);
  border-radius: 2px;
  backdrop-filter: blur(6px);
}

/* ---------- 6. Buttons ------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.7rem;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease),
              border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.btn:active { transform: translateY(1px); }

.btn--primary { background: var(--accent-btn); color: #FFFFFF; }
.btn--primary:hover { background: #F0121D; }

.btn--ghost { background: transparent; color: var(--bone); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--accent-lt); color: var(--accent-lt); }

.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 2.25rem; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent-lt);
  border-bottom: 1px solid var(--accent-dim);
  padding-bottom: 0.3rem;
  transition: gap 0.25s var(--ease), color 0.25s var(--ease);
}
.link-arrow:hover { gap: 0.85rem; color: #FF7078; }

/* ---------- 7. Header -------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(10, 11, 13, 0.72);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.site-header.is-stuck { background: rgba(10, 11, 13, 0.95); border-bottom-color: var(--line-soft); }

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 84px;
}
@media (max-width: 48rem) { .site-header__inner { min-height: 72px; } }

/* Brand: the full HD logo lockup, which already contains the wordmark, so no
   type-set name sits beside it. It needs real height to stay legible, which is
   why the header is taller than a typical wordmark-only header. */
.brand { display: inline-flex; align-items: center; }
.brand__logo { width: auto; height: 62px; flex: none; }

/* Bigger in the footer, where there is room for it to be the brand moment. */
.site-footer .brand__logo { height: 92px; }

@media (max-width: 48rem) {
  .brand__logo { height: 50px; }
  .site-footer .brand__logo { height: 72px; }
}
@media (max-width: 26rem) {
  .brand__logo { height: 42px; }
}

.nav { display: none; }
@media (min-width: 60rem) {
  .nav { display: flex; align-items: center; gap: 2rem; }
  .nav a {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--bone-dim);
    padding-block: 0.4rem;
    transition: color 0.2s var(--ease);
  }
  .nav a:hover { color: var(--bone); }
  .nav a[aria-current="page"] { color: var(--accent-lt); }
}

.header-cta { display: none; }
@media (min-width: 60rem) { .header-cta { display: inline-flex; } }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: none;
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 0.6rem 0.85rem;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone-dim);
  cursor: pointer;
}
@media (min-width: 60rem) { .nav-toggle { display: none; } }

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line-soft);
  background: rgba(10, 11, 13, 0.98);
  padding-block: 1rem 1.75rem;
}
.mobile-nav.is-open { display: block; }
.mobile-nav a {
  display: block;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.mobile-nav .btn { margin-top: 1.5rem; }

/* ---------- 8. Hero ---------------------------------------------------- */
.hero { position: relative; isolation: isolate; overflow: hidden; }
.hero__media {
  position: absolute; inset: 0; z-index: -2;
  border: 0; border-radius: 0;
  aspect-ratio: auto;
}
.hero__media::after { display: none; }
.placeholders .hero__media[data-shot]::after {
  display: block;
  left: auto; right: 1.25rem; bottom: 1.25rem;
  max-width: 22rem;
}
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(105deg, rgba(10,11,13,0.94) 0%, rgba(10,11,13,0.80) 46%, rgba(10,11,13,0.42) 100%),
    linear-gradient(to top, rgba(10,11,13,0.98) 0%, transparent 42%);
}
.hero__inner {
  padding-block: clamp(5rem, 15vh, 10rem) clamp(4rem, 10vh, 7rem);
  max-width: 40rem;
}
.hero h1 { margin-bottom: 1.75rem; }
.hero .lede { max-width: 34rem; }

/* ---------- 9. Trust strip --------------------------------------------- */
.strip {
  border-block: 1px solid var(--line-soft);
  background: var(--graphite);
}
.strip__list {
  display: grid;
  gap: 1px;
  background: var(--line-soft);
}
@media (min-width: 48rem) { .strip__list { grid-template-columns: repeat(4, 1fr); } }
.strip__item {
  background: var(--graphite);
  padding: 1.5rem var(--gutter);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone-dim);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.strip__item svg { flex: none; color: var(--accent-lt); }

/* ---------- 10. Cards -------------------------------------------------- */
.card {
  background: var(--slate);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.card:hover { border-color: var(--accent-dim); transform: translateY(-3px); }
.card__index {
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--accent-lt);
  line-height: 1;
  margin-bottom: 1.25rem;
}
.card h3 { margin-bottom: 0.7rem; }
.card p { font-size: 0.9375rem; }
.card__foot { margin-top: auto; padding-top: 1.75rem; }

/* Service / package card */
.package { position: relative; }
.package--feature { background: #171B22; border-color: var(--accent-dim); }
.package__flag {
  position: absolute;
  top: -1px; right: -1px;
  padding: 0.4rem 0.75rem;
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #FFFFFF;
  background: var(--accent);
  border-bottom-left-radius: 2px;
}
.package__price {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin: 1.25rem 0 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}
.package__from { font-size: 0.625rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.package__amount { font-family: var(--display); font-size: 2.5rem; line-height: 1; color: var(--bone); }
.package__unit { font-size: 0.75rem; color: var(--muted); letter-spacing: 0.06em; }

.ticks { display: grid; gap: 0.8rem; }
.ticks li {
  display: grid;
  grid-template-columns: 1rem 1fr;
  gap: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.5;
}
.ticks li::before {
  content: "";
  width: 7px; height: 7px;
  margin-top: 0.6rem;
  border: 1px solid var(--accent-lt);
  transform: rotate(45deg);
}
.ticks--sm li { font-size: 0.875rem; }

/* ---------- 11. Numbered process -------------------------------------- */
.steps { counter-reset: step; display: grid; gap: 1px; background: var(--line-soft); border: 1px solid var(--line); border-radius: var(--radius); }
@media (min-width: 62rem) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step { counter-increment: step; background: var(--graphite); padding: clamp(1.5rem, 3vw, 2.25rem); }
.step::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--accent-lt);
  margin-bottom: 1.5rem;
}
.step h3 { font-size: 1.0625rem; margin-bottom: 0.6rem; }
.step p { font-size: 0.9375rem; }

/* ---------- 12. Stat / claim row -------------------------------------- */
.claims { display: grid; gap: clamp(1.75rem, 4vw, 3rem); }
@media (min-width: 48rem) { .claims { grid-template-columns: repeat(3, 1fr); } }
.claim { border-top: 1px solid var(--accent-dim); padding-top: 1.35rem; }
.claim h3 { font-family: var(--display); font-size: var(--step-2); font-weight: 400; letter-spacing: -0.015em; margin-bottom: 0.5rem; }
.claim p { font-size: 0.9375rem; }

/* ---------- 13. Service area ------------------------------------------ */
.areas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}
.areas li {
  padding: 0.55rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 2px;
  font-size: 0.8125rem;
  color: var(--bone-dim);
  background: var(--graphite);
}

/* ---------- 14. FAQ ---------------------------------------------------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--sans);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--bone);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--sans);
  font-size: 1.25rem;
  color: var(--accent-lt);
  flex: none;
  transition: transform 0.25s var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq__body { padding-bottom: 1.75rem; max-width: var(--measure); font-size: 0.9375rem; }
.faq__body p + p { margin-top: 0.9em; }

/* ---------- 15. Forms ------------------------------------------------- */
.form { display: grid; gap: 1.25rem; }
.form__row { display: grid; gap: 1.25rem; }
@media (min-width: 40rem) { .form__row--2 { grid-template-columns: 1fr 1fr; } }

.field { display: grid; gap: 0.5rem; }
.field > label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.field .req { color: var(--accent-lt); }

.field input, .field select, .field textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--bone);
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: 2px;
  transition: border-color 0.2s var(--ease);
}
.field input:hover, .field select:hover, .field textarea:hover { border-color: #333944; }
.field textarea { min-height: 8rem; resize: vertical; }
.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--accent-lt) 50%), linear-gradient(135deg, var(--accent-lt) 50%, transparent 50%);
  background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.75rem;
}
.field input::placeholder, .field textarea::placeholder { color: #5C636E; }

.form__note { font-size: 0.75rem; color: var(--muted); }
.form__status { display: none; padding: 1rem 1.15rem; border-radius: 2px; font-size: 0.9375rem; }
.form__status.is-visible { display: block; }
.form__status--ok   { background: var(--accent-wash); border: 1px solid var(--accent-dim); color: var(--bone); }
.form__status--err  { background: rgba(190, 80, 70, 0.10); border: 1px solid #7A3A34; color: #E8C9C5; }

.form-panel {
  background: var(--slate);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.75rem);
}

/* ---------- 16. Callout / CTA band ----------------------------------- */
.cta-band {
  background: var(--graphite);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(2rem, 5vw, 4rem);
  text-align: center;
}
.cta-band h2 { margin-bottom: 1.25rem; }
.cta-band .lede { margin-inline: auto; }
.cta-band .btn-row { justify-content: center; }

.pull {
  font-family: var(--display);
  font-size: var(--step-2);
  line-height: 1.25;
  color: var(--bone);
  border-left: 1px solid var(--accent-dim);
  padding-left: clamp(1.25rem, 3vw, 2rem);
  max-width: 34ch;
}

/* ---------- 17. Footer ----------------------------------------------- */
.site-footer {
  background: var(--graphite);
  border-top: 1px solid var(--line-soft);
  padding-block: clamp(3rem, 6vw, 5rem) 2rem;
  font-size: 0.875rem;
}
.footer-grid { display: grid; gap: clamp(2rem, 5vw, 3.5rem); }
@media (min-width: 56rem) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }
.footer-col h4 {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-lt);
  margin-bottom: 1.25rem;
}
.footer-col li + li { margin-top: 0.7rem; }
.footer-col a { color: var(--bone-dim); transition: color 0.2s var(--ease); }
.footer-col a:hover { color: var(--bone); }
.footer-bottom {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: 1.75rem;
  border-top: 1px solid var(--line-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--muted);
}

/* ---------- 18. Reveal on scroll ------------------------------------- */
.reveal { opacity: 0; transform: translateY(18px); }
.reveal.is-in { opacity: 1; transform: none; transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .reveal.is-in { transition: none; }
}

/* ---------- 19. Trust badges ------------------------------------------
   Used for the insurance / documented / self-contained assurances. Every
   claim rendered here must be true at publish time. See PRE-LAUNCH-CHECKLIST.
   ---------------------------------------------------------------------- */
.trustbar {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
@media (min-width: 40rem) { .trustbar { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 62rem) { .trustbar--3 { grid-template-columns: repeat(3, 1fr); }
                            .trustbar--4 { grid-template-columns: repeat(4, 1fr); } }

.badge {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 1.4rem 1.5rem;
  background: var(--graphite);
}
.badge__icon {
  width: 2rem; height: 2rem;
  display: grid; place-items: center;
  border: 1px solid var(--accent-dim);
  border-radius: 50%;
  color: var(--accent-lt);
}
.badge__title {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone);
  margin-bottom: 0.35rem;
}
.badge__note { display: block; font-size: 0.8125rem; line-height: 1.5; color: var(--muted); }

/* ---------- 20. Slot picker ------------------------------------------ */
.slots { display: grid; gap: 0.75rem; }
@media (min-width: 46rem) { .slots { grid-template-columns: repeat(2, 1fr); } }

.slot { position: relative; display: block; cursor: pointer; }
.slot input {
  position: absolute;
  width: 1px; height: 1px;
  opacity: 0;
}
.slot__body {
  display: block;
  padding: 1.15rem 1.35rem;
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: 2px;
  transition: border-color 0.2s var(--ease), background-color 0.2s var(--ease);
}
.slot:hover .slot__body { border-color: #3A414D; }
.slot input:checked + .slot__body { border-color: var(--accent-lt); background: var(--accent-wash); }
.slot input:focus-visible + .slot__body { outline: 2px solid var(--accent); outline-offset: 3px; }

.slot__day {
  display: block;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--bone);
  margin-bottom: 0.3rem;
}
.slot__window { display: block; font-size: 0.8125rem; color: var(--muted); letter-spacing: 0.02em; }
.slot input:checked + .slot__body .slot__window { color: var(--bone-dim); }
.slot__full { color: var(--accent-lt); }
.slot input:disabled + .slot__body { opacity: 0.4; cursor: not-allowed; }

/* ---------- 21. Consent checkbox ------------------------------------- */
.check {
  display: grid;
  grid-template-columns: 1.15rem 1fr;
  gap: 0.85rem;
  align-items: start;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--bone-dim);
  cursor: pointer;
}
.check input {
  width: 1.15rem; height: 1.15rem;
  margin-top: 0.18rem;
  accent-color: var(--accent-lt);
  cursor: pointer;
}
.check a { color: var(--accent-lt); border-bottom: 1px solid var(--accent-dim); }

/* ---------- 22. Offer ribbon ----------------------------------------- */
.ribbon {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.95rem;
  border: 1px solid var(--accent-dim);
  border-radius: 100px;
  background: var(--accent-wash);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-lt);
  margin-bottom: 1.75rem;
}
.ribbon__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex: none; }

/* ---------- 23. Key handoff options --------------------------------- */
.options { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); }
@media (min-width: 56rem) { .options { grid-template-columns: repeat(3, 1fr); } }
.option { background: var(--slate); padding: clamp(1.5rem, 3vw, 2rem); }
.option__tag {
  display: inline-block;
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-lt);
  border: 1px solid var(--accent-dim);
  border-radius: 100px;
  padding: 0.3rem 0.7rem;
  margin-bottom: 1.1rem;
}
.option h3 { font-size: 1.0625rem; margin-bottom: 0.6rem; }
.option p { font-size: 0.9375rem; }

/* ---------- 24. Print ------------------------------------------------ */
@media print {
  .site-header, .mobile-nav, .btn-row, .frame { display: none !important; }
  body { background: #fff; color: #000; }
  h1, h2, h3 { color: #000; }
}
