:root {
  /* Brand anchors. Fixed by the logo and DESIGN.md. */
  --color-navy: #0B1E3A;
  --color-ink: #101827;
  --color-red: #C91E2F;
  --color-signal-red: #E23A3A;
  --color-cream: #F7F1E7;
  --color-warm-white: #FFFDF9;
  --color-sky: #DDEEFF;
  --color-steel: #516176;

  /* Derived steps, mixed perceptually so every tint stays in the brand hue. */
  --line-hairline: color-mix(in oklab, var(--color-navy) 13%, transparent);
  --line-rule: color-mix(in oklab, var(--color-navy) 20%, transparent);
  --line-strong: color-mix(in oklab, var(--color-navy) 45%, transparent);
  --red-wash: color-mix(in oklab, var(--color-red) 7%, var(--color-warm-white));
  --red-deep: color-mix(in oklab, var(--color-red) 80%, var(--color-navy));
  --on-navy-accent: color-mix(in oklab, var(--color-warm-white) 74%, var(--color-red));
  --on-red-accent: rgba(255, 253, 249, 0.86);

  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Sora", Arial, sans-serif;

  --container: 1140px;
  --measure: 34rem;

  --radius-card: 16px;
  --radius-btn: 8px;

  /* Elevation is always tinted navy, never neutral grey. */
  --lift-1: 0 1px 2px rgba(11, 30, 58, 0.05), 0 6px 16px -10px rgba(11, 30, 58, 0.18);
  --lift-2: 0 2px 4px rgba(11, 30, 58, 0.06), 0 18px 34px -16px rgba(11, 30, 58, 0.3);
  --lift-3: 0 26px 60px -26px rgba(11, 30, 58, 0.35);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 220ms;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  min-width: 320px;
  margin: 0;
  background: var(--color-cream);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

button,
a { -webkit-tap-highlight-color: transparent; }

button { font: inherit; }

button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--color-signal-red);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: fixed;
  z-index: 50;
  top: 1rem;
  left: 1rem;
  transform: translateY(-200%);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-btn);
  background: var(--color-warm-white);
  color: var(--color-navy);
  font-weight: 700;
  text-decoration: none;
  box-shadow: var(--lift-2);
}

.skip-link:focus { transform: translateY(0); }

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

.site-header {
  border-bottom: 1px solid var(--line-hairline);
  background: color-mix(in oklab, var(--color-cream) 82%, var(--color-warm-white));
}

.site-header__inner,
.site-footer__inner {
  display: flex;
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-header__inner { min-height: 94px; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
  color: var(--color-navy);
  text-decoration: none;
}

.brand__mark {
  width: auto;
  height: 66px;
  border-radius: 0;
  object-fit: contain;
}

.brand__location {
  padding-left: 0.7rem;
  border-left: 1px solid var(--line-rule);
  color: var(--color-steel);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  font-size: 0.82rem;
  font-weight: 600;
}

.site-nav a {
  color: var(--color-steel);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--dur) var(--ease-out);
}

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

.site-nav__contact {
  min-height: 42px;
  padding: 0.6rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-btn);
  color: var(--color-navy);
  font-weight: 700;
  transition: background-color var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out), color var(--dur) var(--ease-out);
}

.site-nav__contact:hover {
  border-color: var(--color-navy);
  background: var(--color-navy);
  color: var(--color-warm-white);
}

/* ---------- Shared width ---------- */

.hero-section,
.proof-section,
.packages-section,
.detail-section,
.giftcard-band,
.service-section,
.visit-section,
.faq-section,
.results-section,
.results-next-step {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

/* ---------- Typography ---------- */

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

h1,
h2,
h3 {
  color: var(--color-navy);
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.008em;
}

h1 {
  max-width: 20ch;
  margin: 0 0 1rem;
  font-size: clamp(2.2rem, 5.6vw, 3.85rem);
  line-height: 1.02;
}

/* On the lander the quiz leads, so the tagline runs a size below the question. */
.hero-section__copy h1 {
  max-width: 24ch;
  margin: 0 auto 0.75rem;
  font-size: clamp(1.85rem, 3.4vw, 2.5rem);
}

h2 {
  margin-bottom: 0.9rem;
  font-size: clamp(1.95rem, 3.8vw, 2.7rem);
  line-height: 1.06;
}

h3 {
  margin-bottom: 0.45rem;
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
}

.eyebrow,
.quiz-step__label {
  margin: 0 0 0.8rem;
  color: var(--color-red);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-section__lede,
.results-section__lede {
  max-width: var(--measure);
  color: var(--color-steel);
  font-size: 0.97rem;
  line-height: 1.6;
}

.sr-only,
.quiz-panel__status {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  border: 1px solid transparent;
  border-radius: var(--radius-btn);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out),
    color var(--dur) var(--ease-out), transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}

.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0) scale(0.988); }

.button--primary {
  background: var(--color-red);
  color: var(--color-warm-white);
  box-shadow: var(--lift-1);
}

.button--primary:hover {
  background: var(--red-deep);
  box-shadow: var(--lift-2);
}

.button--outline {
  border-color: var(--line-strong);
  background: transparent;
  color: var(--color-navy);
}

.button--outline:hover {
  border-color: var(--color-navy);
  background: var(--color-navy);
  color: var(--color-warm-white);
}

.button--plain {
  border-color: rgba(255, 253, 249, 0.6);
  color: var(--color-warm-white);
}

.button--plain:hover {
  background: var(--color-warm-white);
  color: var(--color-navy);
}

.text-link {
  color: var(--color-navy);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration-color: var(--color-red);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.28em;
}

.hero-section__actions,
.visit-section__actions,
.results-section__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin: 1.6rem 0 0;
}

/* ---------- Hero: the quiz owns the first screen ---------- */

.hero-section {
  display: block;
  padding: clamp(1.75rem, 3.6vw, 2.75rem) 0 clamp(3rem, 6vw, 4.5rem);
  text-align: center;
}

.hero-section__copy {
  max-width: 46rem;
  margin: 0 auto clamp(1.9rem, 3.6vw, 2.6rem);
}

.hero-section__copy .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--color-steel);
}

.hero-section__copy .eyebrow::before,
.hero-section__copy .eyebrow::after {
  width: clamp(1rem, 4vw, 1.75rem);
  height: 2px;
  flex: 0 0 auto;
  background: var(--color-red);
  content: "";
}

.hero-section__copy h1 { margin-inline: auto; }
.hero-section__copy .hero-section__lede { margin: 0 auto; }

.hero-section__quiz { scroll-margin-top: 1rem; }

/* ---------- Quiz ---------- */

.quiz-panel {
  overflow: visible;
  border-top: 0;
  background: transparent;
  box-shadow: none;
}

.quiz-panel__topline {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 0 0 clamp(0.55rem, 1.2vw, 0.85rem);
  border-bottom: 0;
}

.quiz-progress {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 0.75rem;
}

.quiz-progress__bar {
  display: block;
  width: clamp(130px, 28vw, 210px);
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--line-rule);
}

.quiz-progress__bar > span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: 999px;
  background: var(--color-red);
  transition: width var(--dur) var(--ease-out);
}

.quiz-progress__text {
  color: var(--color-steel);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.quiz-step { padding: 0; }
.quiz-step:not(.is-active) { display: none; }

.quiz-step__header {
  position: relative;
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.quiz-step__label { margin-bottom: 0; }

.back-button {
  position: absolute;
  top: 50%;
  left: 0;
  min-height: 40px;
  padding: 0.35rem 0.7rem 0.35rem 0;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: var(--color-steel);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color var(--dur) var(--ease-out);
}

.back-button::before { margin-right: 0.4rem; content: "\2190"; }
.back-button:hover { color: var(--color-navy); }

.quiz-step h2 {
  margin: 0.55rem auto 0.6rem;
  max-width: 22ch;
  font-size: clamp(2.1rem, 4.4vw, 3.15rem);
}

.quiz-step h2:focus { outline: none; }

.quiz-step__description {
  max-width: var(--measure);
  margin: 0 auto clamp(1.2rem, 2.6vw, 1.6rem);
  color: var(--color-steel);
  font-size: 0.95rem;
}

.quiz-choice-grid {
  display: grid;
  max-width: 70rem;
  margin: 0 auto;
  gap: clamp(0.7rem, 1.6vw, 1rem);
}

.quiz-choice {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 88px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border: 1px solid var(--line-rule);
  border-radius: var(--radius-card);
  background: var(--color-warm-white);
  box-shadow: var(--lift-1);
  color: var(--color-navy);
  cursor: pointer;
  text-align: left;
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out),
    border-color var(--dur) var(--ease-out), background-color var(--dur) var(--ease-out);
}

.quiz-choice:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: var(--lift-2);
}

.quiz-choice:active { transform: translateY(-1px) scale(0.988); }

.quiz-choice.is-selected {
  border-color: var(--color-red);
  background: var(--red-wash);
  box-shadow: inset 0 0 0 1px var(--color-red), var(--lift-2);
}

.quiz-choice__icon {
  display: grid;
  width: auto;
  height: auto;
  place-items: center;
  border: 0;
  border-radius: 0;
  color: var(--color-navy);
  transition: color var(--dur) var(--ease-out);
}

.quiz-choice__icon svg {
  display: block;
  width: auto;
  height: 28px;
}

.quiz-choice.is-selected .quiz-choice__icon { color: var(--color-red); }

.quiz-choice strong,
.quiz-choice small { display: block; }

.quiz-choice strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.15;
  text-transform: uppercase;
}

.quiz-choice small {
  margin-top: 0.25rem;
  color: var(--color-steel);
  font-size: 0.78rem;
  line-height: 1.4;
}

.quiz-choice__check {
  display: none;
  padding: 0.3rem 0.55rem 0.26rem;
  border-radius: 999px;
  background: var(--color-red);
  color: var(--color-warm-white);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.quiz-choice.is-selected .quiz-choice__check { display: inline-block; }

/* Staggered reveal on every step change. Transform and opacity only. */
.quiz-step.is-active .quiz-step__header,
.quiz-step.is-active h2,
.quiz-step.is-active .quiz-step__description {
  animation: quiz-rise 400ms var(--ease-out) backwards;
}

.quiz-step.is-active h2 { animation-delay: 45ms; }
.quiz-step.is-active .quiz-step__description { animation-delay: 80ms; }

.quiz-step.is-active .quiz-choice { animation: quiz-rise 440ms var(--ease-out) backwards; }
.quiz-step.is-active .quiz-choice:nth-child(1) { animation-delay: 120ms; }
.quiz-step.is-active .quiz-choice:nth-child(2) { animation-delay: 185ms; }
.quiz-step.is-active .quiz-choice:nth-child(3) { animation-delay: 250ms; }

@keyframes quiz-rise {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

/* ---------- Proof ---------- */

.proof-section {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  border-top: 1px solid var(--line-hairline);
}

.proof-section__heading { max-width: 40rem; }

.proof-list {
  display: grid;
  margin: 2.25rem 0 0;
  padding: 0;
  border-top: 1px solid var(--line-rule);
  gap: 0;
  list-style: none;
}

.proof-list li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 0.7rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line-rule);
}

.proof-list > li > span {
  color: var(--color-red);
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.proof-list p {
  margin-bottom: 0;
  color: var(--color-steel);
  font-size: 0.88rem;
}

/* ---------- Section scaffolding (packages, detailing, gift cards) ---------- */

.section-head { max-width: 46rem; margin-bottom: clamp(1.75rem, 3.5vw, 2.5rem); }
.section-head h2 { margin-bottom: 0.75rem; }

.section-head__lede {
  max-width: 44rem;
  margin-bottom: 0;
  color: var(--color-steel);
  font-size: 0.97rem;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem 1.5rem;
  margin-top: clamp(1.5rem, 3vw, 2.1rem);
}

/* ---------- Wash packages ---------- */

.packages-section { padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(1rem, 2vw, 1.5rem); }

/* A cumulative ladder, not four parallel options: rules, not cards. */
.package-ladder {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-rule);
  list-style: none;
}

.package {
  display: grid;
  gap: 0.4rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line-rule);
}

.package__name {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0;
  font-size: 1.3rem;
  letter-spacing: 0.01em;
}

.package__swatch {
  width: 1.15rem;
  height: 1.15rem;
  flex: 0 0 auto;
  border: 1px solid var(--line-strong);
  border-radius: 3px;
}

.package__swatch--red { border-color: var(--color-red); background: var(--color-red); }
.package__swatch--white { background: var(--color-warm-white); }
.package__swatch--blue { border-color: var(--color-navy); background: var(--color-navy); }

/* The tier names are the brand's own flag colours, so the fourth carries all three. */
.package__swatch--full {
  border-color: var(--color-navy);
  background: linear-gradient(
    180deg,
    var(--color-red) 0 33.33%,
    var(--color-warm-white) 33.33% 66.66%,
    var(--color-navy) 66.66% 100%
  );
}

.package__detail {
  margin-bottom: 0;
  color: var(--color-steel);
  font-size: 0.94rem;
}

/* ---------- Detailing price list ---------- */

.detail-section { padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(1rem, 2vw, 1.5rem); }

.price-list {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-rule);
  list-style: none;
}

.price-row {
  display: grid;
  gap: 1.1rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line-rule);
}

.price-row__copy h3 { margin-bottom: 0.4rem; }

.price-row__copy p {
  max-width: 46rem;
  margin-bottom: 0;
  color: var(--color-steel);
  font-size: 0.9rem;
}

.price-tiers { display: grid; margin: 0; align-content: start; }

.price-tiers > div {
  display: flex;
  /* Sora label and Barlow Condensed price have different metrics: align the baselines. */
  align-items: baseline;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--line-hairline);
}

.price-tiers > div:last-child { border-bottom: 0; }

.price-tiers dt {
  color: var(--color-steel);
  font-size: 0.84rem;
  line-height: 1.4;
}

.price-tiers dd {
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: right;
}

.price-tiers dd span { color: var(--line-strong); }

.price-note {
  max-width: 46rem;
  margin: 1.25rem 0 0;
  color: var(--color-steel);
  font-size: 0.82rem;
}

/* ---------- Gift cards ---------- */

.giftcard-band {
  display: grid;
  gap: 1rem;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
  padding: clamp(1.9rem, 4vw, 2.6rem);
  border-radius: var(--radius-card);
  background: var(--color-sky);
}

.giftcard-band__copy { max-width: 40rem; }
.giftcard-band h2 { margin-bottom: 0.6rem; font-size: clamp(1.7rem, 3vw, 2.15rem); }
.giftcard-band p:not(.eyebrow) { margin-bottom: 0; color: var(--color-steel); font-size: 0.94rem; }
.giftcard-band .section-actions { margin-top: 0.35rem; }

/* ---------- Service ---------- */

.service-section {
  display: grid;
  overflow: hidden;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
  border-radius: var(--radius-card);
  background: var(--color-navy);
  box-shadow: var(--lift-3);
  color: var(--color-warm-white);
}

.service-section__image { min-height: 260px; }
.service-section__image img { width: 100%; height: 100%; object-fit: cover; }
.service-section__copy { padding: 2.25rem 1.4rem; }
.service-section h2 { color: var(--color-warm-white); }
.service-section .eyebrow { color: var(--on-navy-accent); }

.service-section p:not(.eyebrow) {
  max-width: 32rem;
  margin-bottom: 0;
  color: rgba(255, 253, 249, 0.76);
  font-size: 0.95rem;
}

.service-section .button--outline {
  border-color: rgba(255, 253, 249, 0.55);
  color: var(--color-warm-white);
}

.service-section .button--outline:hover {
  border-color: var(--color-warm-white);
  background: var(--color-warm-white);
  color: var(--color-navy);
}

/* ---------- Visit ---------- */

.visit-section {
  display: grid;
  overflow: hidden;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
  border-radius: var(--radius-card);
  background: var(--color-red);
  box-shadow: var(--lift-3);
  color: var(--color-warm-white);
}

.visit-section__content { padding: 2.25rem 1.4rem; }
.visit-section h2 { color: var(--color-warm-white); }
.visit-section .eyebrow { color: var(--on-red-accent); }

.visit-section address {
  margin-bottom: 0.9rem;
  font-size: 1.02rem;
  font-style: normal;
  font-weight: 600;
}

.visit-section__hours {
  margin-bottom: 0;
  color: rgba(255, 253, 249, 0.82);
  font-size: 0.88rem;
}

/* Red on red is invisible: the primary action goes light on this surface. */
.visit-section .button--primary {
  background: var(--color-warm-white);
  color: var(--color-navy);
  box-shadow: var(--lift-1);
}

.visit-section .button--primary:hover {
  background: var(--color-warm-white);
  color: var(--red-deep);
  box-shadow: var(--lift-2);
}

.visit-section__photo { min-height: 245px; }
.visit-section__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

/* ---------- FAQ ---------- */

.faq-section { padding-bottom: clamp(3rem, 6vw, 4.5rem); }
.faq-section__heading { max-width: 34rem; }
.faq-list { border-top: 1px solid var(--line-rule); }
.faq-list details { border-bottom: 1px solid var(--line-rule); }

.faq-list summary {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  color: var(--color-navy);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  list-style: none;
  transition: color var(--dur) var(--ease-out);
}

.faq-list summary:hover { color: var(--color-red); }
.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
  flex: 0 0 auto;
  color: var(--color-red);
  content: "+";
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1;
}

.faq-list details[open] summary::after { content: "\2013"; }

.faq-list details p {
  max-width: 44rem;
  padding: 0 1.5rem 1.25rem 0;
  margin-bottom: 0;
  color: var(--color-steel);
  font-size: 0.9rem;
}

/* ---------- Quiz result page ---------- */

.results-section {
  display: grid;
  gap: 2rem;
  padding: clamp(2.5rem, 5vw, 3.5rem) 0 clamp(3rem, 5vw, 3.75rem);
}

.results-section__content { max-width: 38rem; }
.results-section__note { color: var(--color-steel); font-size: 0.82rem; }

.results-section__photo {
  position: relative;
  min-height: 340px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: var(--color-navy);
}

.results-section__photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 60%, rgba(11, 30, 58, 0.76));
}

.results-section__photo img { width: 100%; height: 100%; min-height: 340px; object-fit: cover; }

.results-section__photo figcaption {
  position: absolute;
  z-index: 2;
  right: 1.1rem;
  bottom: 0.9rem;
  left: 1.1rem;
  color: var(--color-warm-white);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.selection-summary {
  margin-top: 1.75rem;
  overflow: hidden;
  border: 1px solid var(--line-rule);
  border-top: 3px solid var(--color-red);
  border-radius: var(--radius-card);
  background: var(--color-warm-white);
  box-shadow: var(--lift-1);
}

.selection-summary h2 { margin: 0; padding: 1.15rem 1.25rem 0; font-size: 1.55rem; }
.selection-summary dl { display: grid; margin: 0; padding: 0.5rem 1.25rem 1.15rem; }

.selection-summary dl > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line-hairline);
}

.selection-summary dl > div:last-child { border-bottom: 0; }

.selection-summary dt {
  color: var(--color-steel);
  font-size: 0.8rem;
  font-weight: 600;
}

.selection-summary dd {
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-align: right;
  text-transform: uppercase;
}

.results-next-step {
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
  padding: 2.25rem 1.4rem;
  border-radius: var(--radius-card);
  background: var(--color-sky);
  box-shadow: var(--lift-1);
}

.results-next-step h2 { max-width: 34rem; }
.results-next-step__grid { display: grid; gap: 1rem; }
.results-next-step__grid p { margin-bottom: 0; color: var(--color-steel); font-size: 0.9rem; }
.results-next-step__grid .text-link { align-self: end; }

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

.site-footer { background: var(--color-navy); color: var(--color-warm-white); }
.site-footer__inner { display: grid; justify-content: stretch; gap: 1.4rem; padding: 2.5rem 0; }

.site-footer__mark {
  width: auto;
  height: 92px;
  border-radius: 0;
  object-fit: contain;
}

.site-footer p { margin: 0.65rem 0 0; color: rgba(255, 253, 249, 0.66); font-size: 0.76rem; line-height: 1.7; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 0.9rem 1.4rem; }

.site-footer nav a {
  color: var(--color-warm-white);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration-color: var(--color-signal-red);
  text-transform: uppercase;
  text-underline-offset: 0.28em;
}

.site-footer__copyright { align-self: end; }

/* ---------- Breakpoints ---------- */

@media (min-width: 680px) {
  .site-header__inner,
  .site-footer__inner,
  .hero-section,
  .proof-section,
  .service-section,
  .visit-section,
  .faq-section,
  .results-section,
  .results-next-step { width: min(calc(100% - 4rem), var(--container)); }

  .site-nav { gap: 1.6rem; font-size: 0.86rem; }

  .quiz-choice-grid { grid-template-columns: repeat(3, 1fr); }
  .quiz-choice strong { font-size: 1.3rem; }
  .quiz-choice small { font-size: 0.82rem; }

  .quiz-choice {
    min-height: 208px;
    grid-template-columns: 1fr;
    align-content: start;
    justify-items: center;
    gap: 1.1rem;
    padding: 2.35rem 1.25rem 1.9rem;
    text-align: center;
  }

  .quiz-choice__icon { height: 56px; align-content: center; }

  .quiz-choice__icon svg { height: 50px; }
  .quiz-choice small { max-width: 22ch; }

  .quiz-choice__check {
    position: absolute;
    top: 0.9rem;
    right: 0.9rem;
  }

  .proof-list { grid-template-columns: repeat(3, 1fr); }

  .proof-list li {
    grid-template-columns: 1fr;
    padding: 1.4rem 1.4rem 1.4rem 0;
    border-bottom: 0;
  }

  .proof-list li:not(:last-child) { padding-right: 1.4rem; border-right: 1px solid var(--line-rule); }
  .proof-list li + li { padding-left: 1.4rem; }

  .package {
    grid-template-columns: minmax(0, 15rem) minmax(0, 1fr);
    align-items: baseline;
    gap: 2rem;
    padding: 1.6rem 0;
  }

  .price-row { grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); gap: 3rem; }

  .giftcard-band {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 2.5rem;
  }

  .giftcard-band .section-actions { margin-top: 0; }

  .service-section { grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr); }
  .service-section__image { min-height: 400px; }

  .service-section__copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: clamp(2.25rem, 4vw, 3.25rem);
  }

  .visit-section { grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr); }

  .visit-section__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: clamp(2.25rem, 4vw, 3.25rem);
  }

  .visit-section__photo { min-height: 420px; }
  .site-footer__inner { grid-template-columns: 1fr auto auto; align-items: center; }

  .results-section { grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); align-items: stretch; padding: 4rem 0; }
  .results-section__photo { min-height: 580px; }
  .results-section__photo img { min-height: 580px; }
  .results-next-step { padding: 2.75rem 3rem; }
  .results-next-step__grid { grid-template-columns: 1fr 1fr auto; align-items: end; }
}

@media (min-width: 980px) {
  .quiz-choice { min-height: 224px; }
  .quiz-choice__icon svg { height: 56px; }
}

@media (max-width: 410px) {
  .site-header__inner { min-height: 76px; }
  .brand__mark { height: 52px; }
  .brand__location { display: none; }
  .site-nav { gap: 0.55rem; font-size: 0.7rem; }
  .site-nav__contact { padding: 0.45rem 0.62rem; }

  /* Keep the flanking rules on the same line as the eyebrow. */
  .hero-section__copy .eyebrow { gap: 0.5rem; font-size: 0.74rem; letter-spacing: 0.11em; }
  .hero-section__copy .eyebrow::before,
  .hero-section__copy .eyebrow::after { width: 0.8rem; }
  .quiz-choice { gap: 0.8rem; padding: 0.9rem 1rem; }
  .quiz-choice strong { font-size: 1.05rem; }
  .button { width: 100%; }
  .hero-section__actions .text-link { width: 100%; text-align: center; }
  .visit-section__actions .button { width: 100%; }
  .results-section__actions .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
