/* Apple Valley Car Clinic — prototype styles */
:root {
  --color-accent: #ffe40f;
  --color-accent-dark: #e6cc00;
  --color-ink: #0d0d0d;
  --color-charcoal: #272b30;
  --color-text: #333333;
  --color-muted: #5c636a;
  --color-bg: #ffffff;
  --color-bg-soft: #f4f5f6;
  --font-display: "Barlow Condensed", system-ui, sans-serif;
  --font-body: "Barlow", system-ui, sans-serif;
  --shadow-soft: 0 12px 40px rgba(0, 0, 0, 0.12);
  --radius: 10px;
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}

#main-content:focus {
  outline: none;
}

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

a {
  color: var(--color-charcoal);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--color-ink);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 0.75rem 1.25rem;
  background: var(--color-ink);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius);
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  width: 1px;
  height: 1px;
}

.skip-link:focus {
  position: fixed;
  left: 1rem;
  top: 1rem;
  clip: auto;
  width: auto;
  height: auto;
  overflow: visible;
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
}

a:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.top-bar {
  background: var(--color-charcoal);
  color: #fff;
  font-size: 0.9rem;
  text-align: center;
  padding: 0.5rem 1rem;
}

.top-bar a {
  color: var(--color-accent);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

.top-bar a:hover {
  text-decoration: underline;
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--color-bg);
  border-bottom: 1px solid #e8e8e8;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.header-inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.logo-link img {
  height: 52px;
  width: auto;
  border-radius: 6px;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.logo-text small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: var(--color-muted);
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 0.5rem 1.25rem;
  row-gap: 0.35rem;
  flex-wrap: wrap;
}

.nav-main a {
  font-weight: 600;
  text-decoration: none;
}

.nav-main a:not(.btn) {
  font-size: 0.88rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.35rem 0.4rem;
  box-sizing: border-box;
}

.nav-main a[aria-current="page"] {
  color: var(--color-ink);
  text-decoration: underline;
  text-decoration-color: var(--color-accent);
  text-decoration-thickness: 3px;
}

.nav-toggle-input {
  /* Must never occupy header layout; still togglable via label[for]. */
  position: fixed;
  left: -100vw;
  top: -100vh;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
  opacity: 0;
  appearance: none;
  -webkit-appearance: none;
}

.nav-toggle-input:focus-visible + .nav-toggle-label {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.nav-toggle-label {
  display: none;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  cursor: pointer;
  border: 1px solid #ddd;
  background: var(--color-bg);
  transition: background 0.15s ease, border-color 0.15s ease;
}

.nav-toggle-label:hover {
  border-color: #ccc;
  background: var(--color-bg-soft);
}

.nav-toggle-bars {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 22px;
}

.nav-toggle-bar {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--color-ink);
  border-radius: 2px;
}

@media (min-width: 901px) {
  .nav-toggle-input,
  .nav-toggle-label {
    display: none !important;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.25rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary:active {
  box-shadow: 0 2px 0 var(--color-accent-dark);
}

.btn-dark:active {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-ink);
  border-color: var(--color-accent-dark);
  box-shadow: 0 4px 0 var(--color-accent-dark);
}

.btn-primary:hover {
  background: #fff176;
  color: var(--color-ink);
}

.btn-dark {
  background: var(--color-ink);
  color: #fff;
  border-color: var(--color-ink);
  box-shadow: var(--shadow-soft);
}

.btn-dark:hover {
  background: var(--color-charcoal);
  border-color: var(--color-charcoal);
  color: #fff;
}

.hero {
  position: relative;
  background: linear-gradient(135deg, var(--color-charcoal) 0%, #1a1d22 50%, #2d3339 100%);
  color: #fff;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 80%, rgba(255, 228, 15, 0.15), transparent 45%),
    radial-gradient(circle at 90% 20%, rgba(255, 255, 255, 0.06), transparent 40%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 4rem 1.25rem 4.5rem;
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: 1.1fr 0.9fr;
    padding: 5rem 1.25rem 5.5rem;
  }
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 0 0 0.75rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.05;
  margin: 0 0 1rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-lead {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 36ch;
  margin: 0 0 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-card {
  background: rgba(32, 36, 40, 0.94);
  border: 1px solid rgba(255, 228, 15, 0.4);
  border-radius: 18px 6px 18px 6px;
  padding: 1.5rem;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
}

.hero-card h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.75rem;
  color: var(--color-accent);
  text-transform: uppercase;
}

.hero-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-card li {
  margin-bottom: 0.35rem;
}

.section {
  padding: 3.5rem 1.25rem;
}

.section-alt {
  background: var(--color-bg-soft);
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-head {
  margin-bottom: 2rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 2.4rem);
  text-transform: uppercase;
  margin: 0 0 0.5rem;
  line-height: 1.15;
}

.section-head p {
  margin: 0;
  color: var(--color-muted);
  max-width: 60ch;
}

.card-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--color-bg);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid #e4e4e4;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

@media (hover: hover) {
  .card:hover {
    border-color: #d0d0d0;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  }
}

.card-grid .card:nth-child(1) {
  border-radius: 14px 14px 5px 14px;
}

.card-grid .card:nth-child(2) {
  border-radius: 5px 14px 14px 14px;
  border-left: 3px solid var(--color-accent);
}

.card-grid .card:nth-child(3) {
  border-radius: 14px 5px 14px 14px;
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
  text-transform: uppercase;
}

.card h3 a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.card h3 a:hover {
  color: var(--color-charcoal);
  text-decoration: underline;
  text-decoration-color: var(--color-accent);
}

.card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.98rem;
}

.icon-dot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-accent);
  border: 3px solid var(--color-ink);
  margin-bottom: 1rem;
  flex-shrink: 0;
  color: var(--color-ink);
}

.icon-dot svg {
  width: 22px;
  height: 22px;
  display: block;
}

.service-list {
  display: grid;
  gap: 2rem;
}

.service-list-heading {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin: 0 0 0.25rem;
  text-transform: uppercase;
  grid-column: 1 / -1;
}

@media (min-width: 800px) {
  .service-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-block {
  background: var(--color-bg);
  padding: 1.75rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--color-accent);
  box-shadow: var(--shadow-soft);
}

.service-block h3 {
  font-family: var(--font-display);
  margin: 0 0 0.75rem;
  font-size: 1.5rem;
  text-transform: uppercase;
}

.service-block h3 a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.service-block h3 a:hover {
  text-decoration: underline;
  text-decoration-color: var(--color-accent);
}

.service-block ul {
  margin: 0;
  padding-left: 1.2rem;
}

.cta-band {
  background: var(--color-accent);
  color: var(--color-ink);
  text-align: center;
  padding: 2.5rem 1.25rem;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.2rem);
  margin: 0 0 0.5rem;
  text-transform: uppercase;
}

.cta-band p {
  margin: 0 0 1.25rem;
  font-weight: 500;
}

.cta-band .btn-dark {
  background: var(--color-ink);
  color: #fff;
}

.site-footer {
  background: var(--color-charcoal);
  color: rgba(255, 255, 255, 0.85);
  padding: 2.5rem 1.25rem 2rem;
  font-size: 0.95rem;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .footer-inner {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .footer-inner.footer-wide {
    grid-template-columns: 1.1fr 1fr 1.1fr 1fr;
  }
}

.footer-service-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-service-list li {
  margin-bottom: 0.35rem;
}

.area-grid {
  display: grid;
  gap: 1.25rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem 3rem;
}

@media (min-width: 640px) {
  .area-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.area-card {
  background: var(--color-bg);
  border: 1px solid #e4e4e4;
  border-radius: 6px 14px 14px 6px;
  padding: 1.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.area-card h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
}

.area-card h2 a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.area-card h2 a:hover {
  text-decoration: underline;
  text-decoration-color: var(--color-accent);
}

.faq-list {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem 3rem;
}

.faq-list details {
  background: var(--color-bg-soft);
  border: 1px solid #e0e0e0;
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  padding: 0.75rem 1rem;
}

.faq-list summary {
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.1rem;
  text-transform: uppercase;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.faq-list summary:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
  border-radius: 4px;
}

.faq-list details[open] summary {
  margin-bottom: 0.5rem;
}

.faq-list + .cta-band {
  margin-top: 0;
}

.site-footer h3 {
  font-family: var(--font-display);
  color: var(--color-accent);
  font-size: 1.1rem;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

.site-footer a:hover {
  text-decoration: underline;
  color: var(--color-accent);
}

.footer-bottom {
  max-width: var(--max);
  margin: 2rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
}

.page-intro {
  background: var(--color-bg-soft);
  padding: 2.5rem 1.25rem;
  border-bottom: 1px solid #e4e4e4;
}

.page-intro-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.page-intro h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}

.page-intro p {
  margin: 0;
  color: var(--color-muted);
  max-width: 65ch;
}

.prose {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3.5rem;
}

.prose h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  margin-top: 2rem;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p,
.prose li {
  max-width: 65ch;
}

.prose a {
  cursor: pointer;
}

.contact-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-card {
  background: var(--color-bg-soft);
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid #e0e0e0;
}

.contact-card h2 {
  font-family: var(--font-display);
  margin-top: 0;
  text-transform: uppercase;
}

.contact-card-follow {
  margin-top: 1rem;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-top: 1.5rem;
}

.home-extra-links {
  max-width: 60ch;
  color: var(--color-muted);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn,
  .card {
    transition: none;
  }

  .btn:hover,
  .btn:active {
    transform: none;
  }
}

body.has-sticky-cta {
  padding-bottom: 0;
}

@media (max-width: 900px) {
  body.has-sticky-cta {
    padding-bottom: 4.25rem;
  }

  .header-inner {
    gap: 0.65rem 1rem;
  }

  .logo-link {
    flex: 1 1 auto;
    min-width: 0;
  }

  .logo-text {
    font-size: 1.1rem;
  }

  .logo-link img {
    height: 44px;
  }

  .nav-toggle-label {
    display: inline-flex;
    position: relative;
    z-index: 2;
  }

  .site-header .nav-main {
    display: none !important;
    flex-direction: column;
    align-items: stretch;
    flex-basis: 100%;
    width: 100%;
    gap: 0;
    padding: 0.35rem 0 0.5rem;
    margin-top: 0.35rem;
    border-top: 1px solid #e8e8e8;
    flex-wrap: nowrap;
    row-gap: 0;
  }

  .nav-main a:not(.btn) {
    width: 100%;
    justify-content: flex-start;
    padding: 0.85rem 0.25rem;
    border-bottom: 1px solid #f0f0f0;
    min-height: 48px;
    box-sizing: border-box;
  }

  .nav-main .btn {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
    box-sizing: border-box;
  }

  .nav-toggle-input:checked ~ .nav-main {
    display: flex !important;
  }

  .hero-inner {
    padding: 2.75rem 1rem 3rem;
  }

  .hero h1 {
    font-size: clamp(1.85rem, 9vw, 2.5rem);
  }

  .hero-lead {
    max-width: none;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-micro {
    max-width: none;
  }
}

.trust-strip {
  background: var(--color-ink);
  color: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(255, 228, 15, 0.25);
}

.trust-strip-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  justify-content: center;
  align-items: center;
  font-size: 0.88rem;
  font-weight: 600;
}

.trust-strip-inner span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.trust-strip-inner span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
}

/* ── Timeline connector ── */
.how-timeline {
  position: relative;
  max-width: 720px;
  margin: 0 auto 0.5rem;
  padding: 0 2rem;
}

.how-timeline-line {
  position: absolute;
  top: 50%;
  left: calc(16.667% + 1rem);
  right: calc(16.667% + 1rem);
  height: 3px;
  background: #e4e4e4;
  transform: translateY(-50%);
  border-radius: 2px;
}

.how-timeline-dots {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.how-timeline-dot {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-accent);
  border: 4px solid var(--color-bg);
  box-shadow: 0 0 0 3px var(--color-ink);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-ink);
  z-index: 1;
}

/* ── Step cards ── */
.how-it-works {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .how-it-works {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }
}

.how-step {
  background: var(--color-bg);
  border: 1px solid #e4e4e4;
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  text-align: center;
}

@media (hover: hover) {
  .how-step:hover {
    border-color: var(--color-accent);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
  }

  .how-step:hover .how-step-icon {
    background: var(--color-accent);
    color: var(--color-ink);
    border-color: var(--color-accent-dark);
  }
}

.how-step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--color-bg-soft);
  border: 1px solid #e4e4e4;
  color: var(--color-charcoal);
  margin: 0 auto 1rem;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.how-step-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.how-step h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}

.how-step p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.95rem;
  text-align: left;
}

/* ── Mobile: hide timeline, stack vertically ── */
@media (max-width: 767px) {
  .how-timeline {
    display: none;
  }

  .how-step {
    text-align: left;
    display: grid;
    grid-template-columns: 52px 1fr;
    grid-template-rows: auto auto;
    gap: 0 1rem;
    padding: 1.25rem;
  }

  .how-step-icon {
    grid-row: 1 / 3;
    margin: 0;
    align-self: start;
  }

  .how-step h3 {
    align-self: end;
    margin-bottom: 0.25rem;
  }

  .how-step p {
    grid-column: 2;
  }
}

.at-a-glance {
  background: var(--color-bg);
  border: 1px solid #e0e0e0;
  border-radius: calc(var(--radius) + 2px);
  padding: 1.5rem 1.35rem;
  box-shadow: var(--shadow-soft);
}

.at-a-glance h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.35rem;
  margin: 0 0 1rem;
}

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

.at-a-glance dl {
  margin: 0;
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 640px) {
  .at-a-glance dl {
    grid-template-columns: 1fr 1fr;
  }
}

.at-a-glance dt {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin: 0;
}

.at-a-glance dd {
  margin: 0.2rem 0 0;
  font-weight: 600;
  color: var(--color-text);
}

.at-a-glance dd a {
  font-weight: 700;
}

/* ── Hero badges ── */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.9);
}

.hero-badge--accent {
  background: var(--color-accent);
  border-color: var(--color-accent-dark);
  color: var(--color-ink);
}

.hero-badge svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

/* ── Hero social proof ── */
.hero-social-proof {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
}

.hero-social-proof a {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 600;
}

.hero-social-proof a:hover {
  text-decoration: underline;
}

.hero-stars {
  color: var(--color-accent);
  letter-spacing: 0.05em;
  margin-right: 0.25rem;
}

/* ── Hero stats (inside aside card) ── */
.hero-stats {
  display: flex;
  gap: 1rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 228, 15, 0.25);
}

.hero-stat {
  flex: 1;
}

.hero-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1.1;
}

.hero-stat-label {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.2rem;
}

/* ── Reviews page summary ── */
.reviews-summary {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 700px) {
  .reviews-summary {
    grid-template-columns: auto 1fr;
  }
}

.reviews-summary-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--color-ink);
  color: #fff;
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  text-align: center;
  flex-shrink: 0;
}

.reviews-big-stars {
  color: var(--color-accent);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
}

.reviews-big-score {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  margin: 0.25rem 0;
}

.reviews-big-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.reviews-summary-text p {
  margin: 0 0 1rem;
  color: var(--color-muted);
}

.reviews-summary-text p:last-child {
  margin-bottom: 0;
}

/* ── Review / testimonial cards ── */
.review-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .review-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  background: var(--color-bg);
  border: 1px solid #e4e4e4;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

@media (hover: hover) {
  .review-card:hover {
    border-color: #d0d0d0;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
  }
}

.review-stars {
  color: #f5a623;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

.review-quote {
  margin: 0;
  font-size: 0.97rem;
  color: var(--color-text);
  line-height: 1.6;
  font-style: italic;
  flex: 1;
}

.review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid #f0f0f0;
}

.review-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-ink);
}

.review-source {
  font-size: 0.8rem;
  color: var(--color-muted);
}

.review-cta-line {
  margin-top: 2rem;
  text-align: center;
}

.faq-teaser {
  max-width: 65ch;
}

.hero-micro {
  margin: 1rem 0 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 42ch;
}

.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}

.cta-band .btn-outline-light {
  background: transparent;
  color: var(--color-ink);
  border: 2px solid var(--color-ink);
  box-shadow: none;
}

.cta-band .btn-outline-light:hover {
  background: rgba(0, 0, 0, 0.06);
  transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce) {
  .cta-band .btn-outline-light:hover {
    transform: none;
  }
}

.service-bottom-cta {
  background: linear-gradient(180deg, var(--color-bg-soft) 0%, #e8eaed 100%);
  border-top: 1px solid #dcdcdc;
  padding: 2rem 1.25rem;
}

.service-bottom-cta__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .service-bottom-cta__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.service-bottom-cta h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  margin: 0 0 0.35rem;
}

.service-bottom-cta__meta {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.service-bottom-cta__meta a {
  font-weight: 600;
}

.service-bottom-cta__actions {
  margin: 0;
  flex-shrink: 0;
}

.sticky-mobile-cta {
  display: none;
  pointer-events: none;
}

@media (min-width: 901px) {
  .sticky-mobile-cta {
    display: none !important;
    pointer-events: none;
  }
}

@media (max-width: 900px) {
  .sticky-mobile-cta {
    display: flex;
    pointer-events: auto;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    background: var(--color-ink);
    border-top: 3px solid var(--color-accent);
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.2);
  }

  .sticky-mobile-cta__link {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 1rem 0.75rem;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    cursor: pointer;
    transition: background 0.15s ease;
  }

  .sticky-mobile-cta__link:focus-visible {
    outline: 3px solid var(--color-accent);
    outline-offset: -3px;
  }

  .sticky-mobile-cta__link--call {
    background: var(--color-charcoal);
  }

  .sticky-mobile-cta__link--call:hover {
    background: #323940;
  }

  .sticky-mobile-cta__link--book {
    background: var(--color-accent);
    color: var(--color-ink);
  }

  .sticky-mobile-cta__link--book:hover {
    background: #fff176;
  }
}
