/* ==========================================================================
   Clearly Windows Murfreesboro — Components
   Single authoritative layer. No !important overrides.
   ========================================================================== */

/* ==========================================================================
   1. Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.875rem 1.5rem;
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.2;
  border-radius: var(--r-full);
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              color var(--dur) var(--ease),
              transform var(--dur-fast) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn svg { width: 1.05em; height: 1.05em; flex-shrink: 0; }

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover { background: var(--blue-600); box-shadow: 0 18px 38px rgba(0, 50, 165, 0.32); }

.btn-call {
  background: var(--success);
  color: #fff;
  box-shadow: 0 12px 28px rgba(20, 122, 75, 0.24);
}
.btn-call:hover { background: var(--success-600); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: rgba(10, 10, 10, 0.18);
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-050); }

.btn-white {
  background: #fff;
  color: var(--blue);
  box-shadow: var(--shadow-md);
}
.btn-white:hover { background: #fff; color: var(--blue-700); }

.btn-ghost-light {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(6px);
}
.btn-ghost-light:hover { background: rgba(255, 255, 255, 0.16); border-color: rgba(255, 255, 255, 0.6); }

.btn-lg { padding: 1.0625rem 2rem; font-size: var(--text-md); }
.btn-sm { padding: 0.625rem 1.125rem; font-size: var(--text-sm); }
.btn-block { width: 100%; }

.btn-arrow { transition: transform var(--dur) var(--ease); }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* Text link with arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--blue);
  letter-spacing: -0.005em;
}
.link-arrow:hover { text-decoration: none; color: var(--blue-700); }
.link-arrow span { transition: transform var(--dur) var(--ease); }
.link-arrow:hover span { transform: translateX(3px); }

/* ==========================================================================
   2. Section furniture
   ========================================================================== */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: var(--track-caps);
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: var(--space-4);
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}
.eyebrow-center { justify-content: center; }
.eyebrow-on-dark { color: var(--blue-200); }
.eyebrow-on-dark::before { background: var(--blue-200); }
.eyebrow-copper { color: var(--copper); }
.eyebrow-copper::before { background: var(--copper); }

.section-head { max-width: 660px; margin-bottom: var(--space-12); }
.section-head-center { margin-inline: auto; text-align: center; }
.section-head-center .eyebrow { justify-content: center; }

.section-title { margin-bottom: var(--space-4); }

.section-sub {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--ink-soft);
}
.on-dark .section-sub, .section-sub-light { color: var(--on-dark-soft); }

/* Backgrounds */
.bg-sand  { background: var(--sand); }
.bg-ice   { background: var(--blue-050); }
.bg-white { background: #fff; }
.bg-navy  { background: var(--navy); color: var(--on-dark); }
.bg-navy h1, .bg-navy h2, .bg-navy h3, .bg-navy h4 { color: #fff; }
.bg-blue  { background: var(--blue); color: #fff; }
.bg-blue h1, .bg-blue h2, .bg-blue h3 { color: #fff; }

/* Hairline divider between two same-coloured sections */
.edge-top { border-top: 1px solid var(--hairline-soft); }

/* ==========================================================================
   3. Header
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--hairline-soft);
}
.site-header > .container {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  text-decoration: none;
}
.site-logo:hover { text-decoration: none; }
.site-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}
.site-logo .wordmark {
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 0.95;
  letter-spacing: 0.005em;
  color: var(--black);
  text-transform: uppercase;
  max-width: 5.4em;
}
@media (max-width: 400px) {
  .site-logo .wordmark { font-size: 1.05rem; }
  .site-logo img { height: 34px; }
}

.nav-primary {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  margin-left: auto;
}
.nav-primary a {
  padding: 0.5rem 0.75rem;
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--ink);
  border-radius: var(--r-sm);
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.nav-primary a:hover { color: var(--blue); background: var(--blue-050); text-decoration: none; }
.nav-primary a[aria-current="page"] { color: var(--blue); font-weight: 600; }

/* Services dropdown */
.nav-dd { position: relative; }
.nav-dd-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  padding: 0.5rem 0.75rem;
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--ink);
  border-radius: var(--r-sm);
}
.nav-dd-toggle svg { width: 14px; height: 14px; transition: transform var(--dur) var(--ease); }
.nav-dd:hover .nav-dd-toggle,
.nav-dd:focus-within .nav-dd-toggle { color: var(--blue); background: var(--blue-050); }
.nav-dd:hover .nav-dd-toggle svg,
.nav-dd:focus-within .nav-dd-toggle svg { transform: rotate(180deg); }

.nav-dd-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 268px;
  padding: var(--space-2);
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility var(--dur);
}
.nav-dd:hover .nav-dd-menu,
.nav-dd:focus-within .nav-dd-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dd-menu li { padding: 0; }
.nav-dd-menu a {
  display: block;
  padding: 0.5625rem 0.75rem;
  font-size: var(--text-base);
  font-weight: 500;
  border-radius: var(--r-sm);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-shrink: 0;
}
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  font-weight: 650;
  font-size: var(--text-base);
  color: var(--ink);
  padding: 0.5rem 0.5rem;
}
.header-phone svg { width: 15px; height: 15px; color: var(--success); }
.header-phone:hover { color: var(--success); text-decoration: none; }

/* Mobile menu */
.nav-toggle {
  display: none;
  margin-left: auto;
  width: 42px; height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-sm);
  color: var(--ink);
}
.nav-toggle svg { width: 24px; height: 24px; }
.nav-toggle:hover { background: var(--blue-050); }

@media (max-width: 1040px) {
  .nav-primary, .header-phone { display: none; }
  .nav-toggle { display: flex; }
  .header-actions { order: 3; }
  .header-actions .btn { display: none; }
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0;
  z-index: 99;
  background: #fff;
  padding: var(--space-6) var(--gutter) var(--space-12);
  overflow-y: auto;
}
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; padding: 0; }
.mobile-nav > ul > li { border-bottom: 1px solid var(--hairline-soft); }
.mobile-nav a {
  display: block;
  padding: 1rem 0;
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--ink);
}
.mobile-nav .mnav-group-label {
  padding-top: var(--space-5);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: var(--track-caps);
  text-transform: uppercase;
  color: var(--ink-faint);
}
.mobile-nav .mnav-sub a {
  padding: 0.6rem 0;
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--ink-soft);
}
.mobile-nav-cta {
  display: grid;
  gap: var(--space-3);
  margin-top: var(--space-8);
}

/* ==========================================================================
   4. Hero (home)
   ========================================================================== */

.hero {
  position: relative;
  padding-block: clamp(2.5rem, 5vw, 4.5rem) clamp(3rem, 6vw, 5.5rem);
  background:
    radial-gradient(1100px 520px at 8% -10%, rgba(0, 50, 165, 0.07) 0%, transparent 62%),
    linear-gradient(176deg, #fff 0%, var(--blue-050) 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: var(--space-10); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  padding: 0.4375rem 0.875rem 0.4375rem 0.5rem;
  background: #fff;
  border: 1px solid var(--blue-100);
  border-radius: var(--r-full);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--blue);
  box-shadow: var(--shadow-xs);
  margin-bottom: var(--space-5);
}
.hero-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--copper);
  margin-left: 0.25rem;
}

.hero h1 {
  font-size: var(--text-hero);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-5);
}
.hero h1 em {
  font-style: normal;
  color: var(--blue);
}

.hero-sub {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--ink-soft);
  max-width: 34em;
  margin-bottom: var(--space-8);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

/* Inline Google rating — Shawn's strongest existing trust asset */
.rating-inline {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}
.rating-score {
  font-family: var(--font-display);
  font-size: 1.75rem;
  line-height: 1;
  color: var(--ink);
}
.rating-stars { display: flex; gap: 1px; }
.rating-stars svg { width: 14px; height: 14px; color: var(--copper); }
.rating-meta { font-size: var(--text-xs); line-height: 1.45; color: var(--ink-soft); }
.rating-meta strong { display: block; color: var(--ink); font-weight: 650; font-size: var(--text-sm); }

/* Hero media */
.hero-media { position: relative; }
.hero-media-frame {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4 / 3.35;
  background: var(--sand-200);
}
.hero-media-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* Slogan chip overlapping the photo */
.hero-slogan {
  position: absolute;
  left: clamp(-2.75rem, -4vw, -1.25rem);
  bottom: clamp(-1.75rem, -2.5vw, -1rem);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  max-width: 82%;
  padding: var(--space-3) var(--space-5) var(--space-3) var(--space-3);
  background: var(--sand);
  border: 1px solid var(--sand-300);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
}
.hero-slogan img { width: 46px; height: auto; flex-shrink: 0; }
.hero-slogan p {
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--ink);
}
@media (max-width: 480px) {
  .hero-slogan { position: static; margin-top: var(--space-5); max-width: 100%; }
}

/* ==========================================================================
   5. Trust strip
   ========================================================================== */

.trust-strip {
  background: var(--navy);
  color: var(--on-dark);
  padding-block: var(--space-6);
}

/* Fleet variant — the real Clearly Windows vans, shaded down to a texture.
   The photo is ~45% empty sky, so the stats sit in the sky and the vans
   anchor the bottom edge. Overlay is heavy on purpose: we want the
   silhouette of two marked work vans, not a legible vehicle photo. */
.trust-strip-fleet {
  position: relative;
  padding-block: var(--space-12) var(--space-10);
  min-height: 580px;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  background-image:
    linear-gradient(
      to bottom,
      rgba(7, 22, 52, 0.96) 0%,
      rgba(7, 22, 52, 0.94) 30%,
      rgba(7, 22, 52, 0.78) 46%,
      rgba(7, 22, 52, 0.46) 66%,
      rgba(7, 22, 52, 0.4) 88%,
      rgba(7, 22, 52, 0.66) 100%
    ),
    url('../img/photos/fleet-band.webp');
  background-size: cover, 100% auto;
  background-position: center, center bottom;
  background-repeat: no-repeat, no-repeat;
}
.trust-strip-fleet > .container { width: 100%; }
@media (min-width: 1700px) {
  .trust-strip-fleet { min-height: 620px; }
}
.trust-strip-fleet .trust-strip-head {
  display: flex;
  align-items: baseline;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.trust-strip-head h2 {
  font-size: var(--text-2xl);
  color: #fff;
  margin: 0;
  letter-spacing: var(--track-tight);
  text-shadow: 0 1px 24px rgba(7, 22, 52, 0.65);
}
.trust-strip-head p {
  font-size: var(--text-sm);
  color: var(--on-dark-soft);
  margin: 0;
}
@media (max-width: 900px) {
  .trust-strip-fleet { min-height: 0; padding-block: var(--space-10) 0; }
  /* On narrow screens a cover-cropped van photo becomes an unreadable smear,
     so the vans get their own honest block below the stats instead. */
  .trust-strip-fleet { background-image: linear-gradient(to bottom, var(--navy), var(--navy)); }
  .trust-strip-fleet .fleet-inline {
    display: block;
    margin-top: var(--space-8);
    margin-inline: calc(var(--space-5) * -1);
  }
  .trust-strip-fleet .fleet-inline img { display: block; width: 100%; height: auto; }
}
.fleet-inline { display: none; }
.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-5);
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}
.trust-item svg {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--blue-200);
  margin-top: 1px;
}
.trust-item-label {
  font-size: var(--text-sm);
  font-weight: 650;
  line-height: 1.3;
  letter-spacing: -0.008em;
  color: #fff;
}
.trust-item-note {
  font-size: var(--text-xs);
  line-height: 1.35;
  color: var(--on-dark-faint);
  margin-top: 2px;
}
@media (max-width: 1000px) {
  .trust-strip-grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-5) var(--space-4); }
}
@media (max-width: 620px) {
  .trust-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item svg { width: 17px; height: 17px; }
}

/* ==========================================================================
   6. Story section — the Murfreesboro homecoming
   ========================================================================== */

.story { background: var(--sand); position: relative; overflow: hidden; }
.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
@media (max-width: 900px) {
  .story-grid { grid-template-columns: 1fr; gap: var(--space-10); }
}

.story-lead {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--ink);
  margin-bottom: var(--space-6);
}
.story-body {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--ink-soft);
  margin-bottom: var(--space-8);
}

/* Timeline */
.timeline { display: grid; gap: 0; }
.timeline-item {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: var(--space-5);
  padding-bottom: var(--space-6);
  position: relative;
}
.timeline-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 26px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--sand-300), rgba(226, 216, 195, 0.25));
}
.timeline-year {
  position: relative;
  padding-left: 22px;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  line-height: 1.4;
  color: var(--blue);
  letter-spacing: 0.01em;
}
.timeline-year::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--blue);
  border: 3px solid var(--sand);
  box-shadow: 0 0 0 1px var(--blue-200);
}
.timeline-text {
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--ink-soft);
  padding-top: 1px;
}
.timeline-text strong { color: var(--ink); font-weight: 650; }

.story-media { position: relative; }
.story-lockup {
  background: #fff;
  border: 1px solid var(--sand-300);
  border-radius: var(--r-xl);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-md);
}
.story-lockup img { width: 100%; height: auto; }
.story-lockup-caption {
  margin-top: var(--space-5);
  padding-top: var(--space-5);
  border-top: 1px solid var(--hairline-soft);
  font-size: var(--text-sm);
  line-height: var(--leading-normal);
  color: var(--ink-soft);
  text-align: center;
}
.story-lockup-caption strong { color: var(--ink); font-weight: 650; }

/* ==========================================================================
   7. Path chooser
   ========================================================================== */

.path-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
@media (max-width: 900px) { .path-grid { grid-template-columns: 1fr; } }

.path-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.path-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-200);
}
.path-card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--sand-200);
}
.path-card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}
.path-card:hover .path-card-media img { transform: scale(1.045); }
.path-card-body {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.path-card h3 { margin-bottom: var(--space-3); }
.path-card p {
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--ink-soft);
  margin-bottom: var(--space-5);
}
.path-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-6);
  display: grid;
  gap: var(--space-2);
}
.path-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.55em;
  font-size: var(--text-sm);
  line-height: 1.45;
  color: var(--ink-soft);
}
.path-card li svg {
  width: 15px; height: 15px;
  flex-shrink: 0;
  color: var(--blue);
  margin-top: 2px;
}
.path-card .btn { margin-top: auto; }

/* ==========================================================================
   8. Before / after
   ========================================================================== */

.ba-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
@media (max-width: 860px) { .ba-grid { grid-template-columns: 1fr; } }

.ba-card {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.ba-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--hairline);
}
.ba-half { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--sand-200); }
.ba-half img { width: 100%; height: 100%; object-fit: cover; }
.ba-tag {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  padding: 0.25rem 0.625rem;
  border-radius: var(--r-full);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.ba-tag-before { background: rgba(10, 10, 10, 0.68); color: #fff; }
.ba-tag-after  { background: rgba(0, 50, 165, 0.9); color: #fff; }
.ba-caption {
  padding: var(--space-5) var(--space-6);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--ink-soft);
}
.ba-caption strong {
  display: block;
  color: var(--ink);
  font-weight: 650;
  font-size: var(--text-md);
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}

/* ==========================================================================
   9. Services grid
   ========================================================================== */

.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(272px, 1fr));
  gap: var(--space-5);
}
.svc-grid-3 { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }
@media (min-width: 1080px) {
  .svc-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.svc-card {
  display: flex;
  flex-direction: column;
  padding: var(--space-6);
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xs);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.svc-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-200);
  text-decoration: none;
}
.svc-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: var(--r-md);
  background: var(--blue-050);
  color: var(--blue);
  margin-bottom: var(--space-4);
}
.svc-icon svg { width: 21px; height: 21px; }
.svc-card h3 {
  font-size: var(--text-md);
  font-weight: 700;
  letter-spacing: var(--track-snug);
  margin-bottom: var(--space-2);
}
.svc-card p {
  font-size: var(--text-sm);
  line-height: var(--leading-normal);
  color: var(--ink-soft);
  margin-bottom: var(--space-5);
  flex: 1;
}

/* Highlighted "not sure" card */
.svc-card-feature {
  background: linear-gradient(150deg, var(--blue) 0%, var(--blue-700) 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: var(--shadow-blue);
}
.svc-card-feature h3 { color: #fff; }
.svc-card-feature p { color: rgba(255, 255, 255, 0.82); }
.svc-card-feature .svc-icon { background: rgba(255, 255, 255, 0.16); color: #fff; }
.svc-card-feature:hover { border-color: transparent; }

/* ==========================================================================
   10. Standard / method — dark section + mascot on warm panel
   ========================================================================== */

.method { background: var(--navy); color: var(--on-dark); }
.method h2, .method h3 { color: #fff; }
.method-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}
@media (max-width: 940px) {
  .method-grid { grid-template-columns: 1fr; gap: var(--space-10); }
}

.method-lead {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--on-dark-soft);
  margin-bottom: var(--space-8);
}

.check-list { list-style: none; padding: 0; display: grid; gap: var(--space-4); }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
}
.check-list svg {
  width: 19px; height: 19px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--blue-200);
}
.check-list-2col { grid-template-columns: 1fr 1fr; gap: var(--space-4) var(--space-6); }
@media (max-width: 700px) { .check-list-2col { grid-template-columns: 1fr; } }

/* The one place the mascot gets to be big. Warm sand panel so the cobalt
   polo, cap and squeegee all read cleanly — never blue-on-blue. */
.mascot-panel {
  position: relative;
  background: linear-gradient(165deg, var(--sand) 0%, var(--sand-200) 100%);
  border-radius: var(--r-2xl);
  padding: var(--space-8) var(--space-6) 0;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  text-align: center;
}
.mascot-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(520px 320px at 50% 8%, rgba(0, 50, 165, 0.09) 0%, transparent 66%);
  pointer-events: none;
}
.mascot-panel-kicker {
  position: relative;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: var(--track-caps);
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: var(--space-2);
}
.mascot-panel-stat {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5vw, 4rem);
  line-height: 0.95;
  color: var(--ink);
  margin-bottom: var(--space-1);
}
.mascot-panel-stat span { color: var(--blue); }
.mascot-panel-note {
  position: relative;
  font-size: var(--text-sm);
  color: var(--ink-soft);
  max-width: 22em;
  margin: 0 auto var(--space-4);
}
.mascot-panel img {
  position: relative;
  display: block;
  margin-bottom: -2px;
  width: min(76%, 292px);
  height: auto;
  margin: 0 auto;
  display: block;
}

/* ==========================================================================
   11. Process
   ========================================================================== */

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  counter-reset: step;
}
@media (max-width: 860px) { .process-grid { grid-template-columns: 1fr; } }

.process-step {
  position: relative;
  padding: var(--space-6);
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xs);
}
.process-num {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  color: var(--blue-200);
  margin-bottom: var(--space-4);
}
.process-step h3 {
  font-size: var(--text-md);
  font-weight: 700;
  margin-bottom: var(--space-2);
}
.process-step p {
  font-size: var(--text-sm);
  line-height: var(--leading-normal);
  color: var(--ink-soft);
}

/* ==========================================================================
   12. Reviews
   ========================================================================== */

.reviews-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}
.reviews-head .section-head { margin-bottom: 0; }

.rating-block {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  padding: var(--space-5) var(--space-6);
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
  max-width: 100%;
}
@media (max-width: 520px) {
  .rating-block { padding: var(--space-4) var(--space-5); gap: var(--space-4); }
}
.rating-block-score {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 0.9;
  color: var(--ink);
}
.rating-block-stars { display: flex; gap: 2px; margin-bottom: var(--space-1); }
.rating-block-stars svg { width: 17px; height: 17px; color: var(--copper); }
.rating-block-meta { font-size: var(--text-sm); color: var(--ink-soft); line-height: 1.4; }
.rating-block-meta strong { color: var(--ink); font-weight: 650; }

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
@media (max-width: 940px) { .review-grid { grid-template-columns: 1fr; } }

.review-card {
  display: flex;
  flex-direction: column;
  padding: var(--space-6);
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xs);
}
.review-stars { display: flex; gap: 2px; margin-bottom: var(--space-4); }
.review-stars svg { width: 15px; height: 15px; color: var(--copper); }
.review-card blockquote {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--ink);
  margin: 0 0 var(--space-5);
  flex: 1;
}
.review-author { display: flex; align-items: center; gap: var(--space-3); }
.review-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--blue-050);
  color: var(--blue);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: var(--text-sm);
  flex-shrink: 0;
}
.review-name { font-size: var(--text-sm); font-weight: 650; color: var(--ink); line-height: 1.3; }
.review-src { font-size: var(--text-xs); color: var(--ink-faint); }

.reviews-note {
  margin-top: var(--space-8);
  font-size: var(--text-xs);
  color: var(--ink-faint);
  text-align: center;
}

/* ==========================================================================
   13. Service area
   ========================================================================== */

.area-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 860px) { .area-grid { grid-template-columns: 1fr; gap: var(--space-8); } }

.area-chips { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.area-chip {
  padding: 0.4375rem 0.875rem;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--r-full);
  font-size: var(--text-sm);
  font-weight: 550;
  color: var(--ink-soft);
}
.area-chip-primary {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  font-weight: 650;
}

/* ==========================================================================
   14. FAQ
   ========================================================================== */

.faq-list {
  max-width: 820px;
  margin-inline: auto;
  border-top: 1px solid var(--hairline);
}
.faq-item { border-bottom: 1px solid var(--hairline); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  width: 100%;
  padding: var(--space-5) 0;
  text-align: left;
  font-family: var(--font-sans);
  font-size: var(--text-md);
  font-weight: 650;
  letter-spacing: var(--track-snug);
  color: var(--ink);
  transition: color var(--dur) var(--ease);
}
.faq-q:hover { color: var(--blue); }
.faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 20px; height: 20px;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--blue);
  border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.faq-icon::before { top: 9px; left: 2px; width: 16px; height: 2px; }
.faq-icon::after  { top: 2px; left: 9px; width: 2px; height: 16px; }
.faq-q[aria-expanded="true"] .faq-icon::after { transform: rotate(90deg); opacity: 0; }

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--dur-slow) var(--ease-out);
}
.faq-q[aria-expanded="true"] + .faq-a { grid-template-rows: 1fr; }
.faq-a > div { overflow: hidden; }
.faq-a p {
  padding-bottom: var(--space-5);
  padding-right: var(--space-10);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--ink-soft);
}

/* ==========================================================================
   15. Final CTA
   ========================================================================== */

.final-cta {
  position: relative;
  background: linear-gradient(155deg, var(--blue) 0%, var(--blue-700) 100%);
  color: #fff;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(760px 380px at 88% 12%, rgba(255, 255, 255, 0.13) 0%, transparent 60%),
    radial-gradient(520px 300px at 6% 96%, rgba(255, 255, 255, 0.08) 0%, transparent 62%);
  pointer-events: none;
}
.final-cta > .container { position: relative; }
.final-cta h2 {
  font-size: var(--text-3xl);
  color: #fff;
  margin-bottom: var(--space-4);
}
.final-cta p {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: rgba(255, 255, 255, 0.86);
  max-width: 46em;
  margin: 0 auto var(--space-8);
}
.final-cta .hero-actions { justify-content: center; margin-bottom: 0; }
.final-cta-note {
  margin-top: var(--space-6);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.66);
}

/* ==========================================================================
   16. Footer
   ========================================================================== */

.site-footer {
  background: var(--navy);
  color: var(--on-dark-soft);
  padding-block: var(--space-16) var(--space-8);
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid var(--hairline-dark);
}
@media (max-width: 940px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-10) var(--space-8); }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-lockup {
  display: inline-block;
  background: #fff;
  border-radius: var(--r-lg);
  padding: var(--space-4) var(--space-5);
  margin-bottom: var(--space-5);
  max-width: 260px;
}
.footer-lockup img { width: 100%; height: auto; }

.footer-blurb {
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  color: var(--on-dark-faint);
  max-width: 30em;
  margin-bottom: var(--space-5);
}

.footer-rating {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: #fff;
  font-weight: 600;
}
.footer-rating svg { width: 14px; height: 14px; color: var(--copper-soft); }

.footer-col h3 {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: var(--track-caps);
  text-transform: uppercase;
  color: #fff;
  margin-bottom: var(--space-5);
}
.footer-col ul { list-style: none; padding: 0; display: grid; gap: var(--space-3); }
.footer-col a:not(.btn) {
  font-size: var(--text-sm);
  color: var(--on-dark-soft);
  transition: color var(--dur) var(--ease);
}
.footer-col a:not(.btn):hover { color: #fff; text-decoration: none; }

.footer-loc { margin-bottom: var(--space-5); font-size: var(--text-sm); line-height: 1.6; }
.footer-loc strong { display: block; color: #fff; font-weight: 650; margin-bottom: 2px; }
.footer-loc a { color: var(--on-dark-soft); }
.footer-loc-note { color: var(--on-dark-faint); font-size: var(--text-xs); }

.footer-locations {
  padding-top: var(--space-10);
  padding-bottom: var(--space-10);
  border-bottom: 1px solid var(--hairline-dark);
}
.footer-locations-label {
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--on-dark-faint);
  font-weight: 650;
  margin: 0 0 var(--space-5);
}
.footer-locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
}
@media (max-width: 640px) {
  .footer-locations-grid { grid-template-columns: 1fr; gap: var(--space-6); }
}
.footer-location {
  display: grid;
  gap: 2px;
  font-size: var(--text-sm);
  line-height: 1.6;
}
.footer-location-city {
  color: #fff;
  font-weight: 650;
  font-size: var(--text-base);
}
.footer-location-area {
  color: var(--on-dark-faint);
  font-size: var(--text-xs);
  margin-bottom: var(--space-2);
}
.footer-location-link { color: var(--on-dark-soft); }
.footer-location-link:hover { color: #fff; text-decoration: none; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding-top: var(--space-6);
  font-size: var(--text-xs);
  color: var(--on-dark-faint);
}
.footer-bottom-links { display: flex; gap: var(--space-5); }
.footer-bottom a { color: var(--on-dark-faint); }
.footer-bottom a:hover { color: #fff; text-decoration: none; }

/* ==========================================================================
   17. Landing page hero (service pages)
   ========================================================================== */

.hero-landing {
  padding-block: clamp(2rem, 4vw, 3.5rem) clamp(2.5rem, 5vw, 4.5rem);
  background:
    radial-gradient(900px 460px at 4% -18%, rgba(0, 50, 165, 0.07) 0%, transparent 60%),
    linear-gradient(176deg, #fff 0%, var(--blue-050) 100%);
}
.hero-landing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 380px);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 940px) {
  .hero-landing-grid { grid-template-columns: 1fr; }
}
.hero-landing h1 {
  font-size: var(--text-4xl);
  line-height: 1.06;
  letter-spacing: -0.028em;
  margin-bottom: var(--space-5);
}
.hero-landing h1 em { font-style: normal; color: var(--blue); }

/* Quote card */
.quote-card {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--r-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: calc(var(--header-h) + var(--space-5));
}
@media (max-width: 940px) { .quote-card { position: static; } }
.quote-card h2 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-2);
}
.quote-card > p {
  font-size: var(--text-sm);
  line-height: var(--leading-normal);
  color: var(--ink-soft);
  margin-bottom: var(--space-5);
}
.quote-card .check-list {
  gap: var(--space-3);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid var(--hairline-soft);
}
.quote-card .check-list li { font-size: var(--text-sm); }
.quote-card .check-list svg { width: 16px; height: 16px; color: var(--success); }
.quote-card-actions { display: grid; gap: var(--space-3); }
.quote-card-or {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  color: var(--ink-faint);
}
.quote-card-or::before, .quote-card-or::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--hairline);
}

/* Two-column included / why block */
.split-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
@media (max-width: 820px) { .split-2 { grid-template-columns: 1fr; } }

.panel {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xs);
}
.panel h3 { margin-bottom: var(--space-5); }
.panel .check-list li { font-size: var(--text-base); }
.panel .check-list svg { color: var(--blue); }

/* Photo strip */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}
@media (max-width: 760px) {
  .photo-strip { grid-template-columns: 1fr 1fr; }
  .photo-strip > :last-child { grid-column: span 2; }
}
.photo-strip figure {
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4 / 3;
  background: var(--sand-200);
}
.photo-strip img { width: 100%; height: 100%; object-fit: cover; }

/* Fleet photo, shown honestly at full size (About page) */
.fleet-figure { margin: 0; }
.fleet-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
}
.fleet-figure figcaption {
  margin-top: var(--space-4);
  font-size: var(--text-sm);
  color: var(--ink-soft);
  line-height: var(--leading-relaxed);
  max-width: 62ch;
}
@media (min-width: 900px) {
  .fleet-figure figcaption { margin-left: auto; margin-right: auto; text-align: center; }
}

/* ==========================================================================
   18. Forms
   ========================================================================== */

.form-grid { display: grid; gap: var(--space-4); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

.field label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: var(--space-2);
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 0.75rem 0.875rem;
  font-size: var(--text-base);
  background: #fff;
  border: 1.5px solid var(--hairline);
  border-radius: var(--r-md);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 50, 165, 0.13);
}
.field textarea { resize: vertical; min-height: 104px; }
.field-note { font-size: var(--text-xs); color: var(--ink-faint); margin-top: var(--space-2); }

.form-card {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
}

/* Contact detail list */
.contact-details { display: grid; gap: var(--space-6); }
.contact-detail { display: flex; gap: var(--space-4); }
.contact-detail-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  border-radius: var(--r-md);
  background: var(--blue-050);
  color: var(--blue);
}
.contact-detail-icon svg { width: 19px; height: 19px; }
.contact-detail-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 3px;
}
.contact-detail-value {
  font-size: var(--text-md);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.45;
}
.contact-detail-value a { color: var(--ink); }
.contact-detail-value a:hover { color: var(--blue); }

/* ==========================================================================
   19. Breadcrumb
   ========================================================================== */

.breadcrumb {
  padding-block: var(--space-4);
  font-size: var(--text-xs);
  color: var(--ink-faint);
}
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5em; padding: 0; }
.breadcrumb li { display: flex; align-items: center; gap: 0.5em; }
.breadcrumb li:not(:last-child)::after { content: '/'; color: var(--ink-faint); }
.breadcrumb a { color: var(--ink-soft); }

/* ==========================================================================
   20. Mobile sticky call bar
   ========================================================================== */

.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  padding: var(--space-3) var(--space-4);
  padding-bottom: max(var(--space-3), env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--hairline);
  gap: var(--space-3);
  box-shadow: 0 -6px 22px rgba(7, 22, 52, 0.09);
}
.mobile-cta-bar .btn { flex: 1; padding-inline: 0.75rem; }
@media (max-width: 760px) {
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 78px; }
}

/* ==========================================================================
   21. Utilities
   ========================================================================== */

.stack-sm > * + * { margin-top: var(--space-3); }
.stack   > * + * { margin-top: var(--space-5); }
.stack-lg > * + * { margin-top: var(--space-8); }

.measure { max-width: 62ch; }
.mb-0 { margin-bottom: 0; }

/* ============================================================ THANK-YOU PAGE
   Post-submit confirmation. Narrow, centred, no competing CTAs above the
   "what happens next" reassurance. Conversion fires on load (see track.js). */
.ty-panel {
  max-width: 44rem;
  margin: 0 auto;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--r-2xl);
  box-shadow: var(--shadow-md);
  padding: var(--space-12) var(--space-6);
}

@media (min-width: 48rem) {
  .ty-panel { padding: var(--space-16) var(--space-12); }
}

.ty-check {
  display: flex;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  margin-bottom: var(--space-5);
  border-radius: var(--r-full);
  background: var(--success);
  color: #fff;
}
.ty-check svg { width: 2rem; height: 2rem; }

/* The eyebrow sits on its own line under the badge, not beside it. */
.ty-panel .eyebrow { display: block; margin-bottom: var(--space-3); }

.ty-panel h1 {
  font-size: var(--text-3xl);
  line-height: var(--leading-tight);
  letter-spacing: var(--track-tight);
  margin: 0 0 var(--space-4);
}

.ty-lede {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--ink-soft);
  max-width: 34rem;
  margin: 0 auto var(--space-10);
}

.ty-next {
  text-align: left;
  background: var(--sand);
  border: 1px solid var(--sand-300);
  border-radius: var(--r-xl);
  padding: var(--space-8) var(--space-6);
  margin-bottom: var(--space-8);
}

.ty-next h2 {
  font-size: var(--text-md);
  letter-spacing: var(--track-caps);
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 var(--space-5);
}

.ty-steps {
  list-style: none;
  counter-reset: ty;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-5);
}

.ty-steps li {
  counter-increment: ty;
  position: relative;
  padding-left: var(--space-10);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--ink-soft);
}

.ty-steps li::before {
  content: counter(ty);
  position: absolute;
  left: 0;
  top: 0;
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-full);
  background: var(--blue);
  color: #fff;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  line-height: 1;
}

.ty-steps li strong {
  display: block;
  color: var(--ink);
  font-weight: 700;
}

.ty-urgent {
  font-size: var(--text-base);
  color: var(--ink-soft);
  margin: 0 0 var(--space-8);
}
.ty-urgent a {
  font-weight: 700;
  color: var(--blue);
  white-space: nowrap;
}

.ty-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
}

/* ============================================================ SMS CONSENT
   Carrier (A2P 10DLC) registration requires the consent language and the
   opt-in choices to be visible on the form itself, not behind a link. */
.consent-block {
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  background: var(--surface-alt);
  padding: var(--space-4);
  margin: 0;
}

.consent-legend {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: var(--track-caps);
  text-transform: uppercase;
  color: var(--ink-soft);
  padding-inline: var(--space-2);
}

.consent-intro {
  font-size: var(--text-xs);
  line-height: var(--leading-normal);
  color: var(--ink-soft);
  margin-bottom: var(--space-3);
}

.consent-intro:last-of-type { margin-bottom: var(--space-4); }
.consent-intro a { color: var(--blue); text-decoration: underline; }

.consent-option {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  line-height: var(--leading-normal);
  color: var(--ink);
  cursor: pointer;
  padding-block: var(--space-2);
}

.consent-option + .consent-option { border-top: 1px solid var(--hairline-soft); }

.consent-option input[type='checkbox'] {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--blue);
  cursor: pointer;
}

/* ============================================================ LEGAL PAGES */
.legal-page { padding-block: var(--space-12) var(--space-20); }

.legal-body {
  max-width: 760px;
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--ink-soft);
}

.legal-body h2 {
  font-size: var(--text-xl);
  color: var(--ink);
  margin-top: var(--space-10);
  margin-bottom: var(--space-3);
}

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

.legal-body h3 {
  font-size: var(--text-md);
  color: var(--ink);
  margin-top: var(--space-6);
  margin-bottom: var(--space-2);
}

.legal-body p { margin-bottom: var(--space-4); }
.legal-body ul, .legal-body ol { margin: 0 0 var(--space-4) var(--space-5); }
.legal-body li { margin-bottom: var(--space-2); }
.legal-body a { color: var(--blue); text-decoration: underline; }
.legal-body strong { color: var(--ink); }

.legal-updated {
  font-size: var(--text-xs);
  color: var(--ink-faint);
  margin-bottom: var(--space-8);
}
