/* ==========================================================================
   Alabama Pet Transport Services — design system
   Brand: crimson / white / gray
   ========================================================================== */

:root {
  /* Brand */
  --crimson:        #9E1B32;
  --crimson-600:    #8A162B;
  --crimson-700:    #71101F;
  --crimson-900:    #3D0912;
  --crimson-tint:   #FCF2F4;
  --crimson-tint-2: #F6E4E8;

  /* Neutrals (warm gray) */
  --ink:      #17181C;
  --ink-soft: #33363E;
  --gray-700: #4E525C;
  --gray-600: #6B6F7A;
  --gray-500: #6E727C;
  --gray-300: #D6D8DD;
  --gray-200: #E6E7EB;
  --gray-100: #F1F1F3;
  --sand:     #FAF8F7;
  --white:    #FFFFFF;

  --gold: #B8811F;

  /* Type */
  --font-display: "Fraunces", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Space + shape */
  --shell: 1180px;
  --gut: 1.25rem;
  --r-sm: 10px;
  --r: 16px;
  --r-lg: 24px;
  --r-xl: 32px;

  /* Elevation */
  --sh-1: 0 1px 2px rgba(23, 24, 28, .06), 0 2px 8px rgba(23, 24, 28, .05);
  --sh-2: 0 2px 6px rgba(23, 24, 28, .06), 0 12px 28px -8px rgba(23, 24, 28, .12);
  --sh-3: 0 4px 12px rgba(23, 24, 28, .07), 0 28px 56px -20px rgba(23, 24, 28, .22);
  --ring: 0 0 0 3px rgba(158, 27, 50, .28);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

@media (min-width: 768px) { :root { --gut: 2rem; } }

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: var(--crimson); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--crimson-700); }

:focus-visible {
  outline: 3px solid var(--crimson);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--ink);
  text-wrap: balance;
}
h1 { font-size: clamp(2.15rem, 7.4vw, 3.75rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.7rem, 5.2vw, 2.6rem); letter-spacing: -0.022em; }
h3 { font-size: clamp(1.16rem, 2.6vw, 1.4rem); }
h4 { font-size: 1.05rem; }
p { text-wrap: pretty; }

.lede {
  font-size: clamp(1.06rem, 2.5vw, 1.25rem);
  line-height: 1.6;
  color: var(--gray-700);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: .9rem;
}
.eyebrow::before {
  content: "";
  width: 1.75rem;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  opacity: .55;
}
.eyebrow--center::before { display: none; }

/* ---------- Layout ---------- */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gut);
}
.shell--narrow { max-width: 760px; }
.section { padding-block: clamp(2.75rem, 6vw, 4.75rem); }
.section--tight { padding-block: clamp(2.75rem, 6vw, 4.5rem); }
.section--sand { background: var(--sand); }
.section--line { border-top: 1px solid var(--gray-200); }

.section-head { max-width: 46rem; margin-bottom: clamp(1.75rem, 4vw, 2.5rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: .9rem; }

.grid { display: grid; gap: 1.25rem; }
@media (min-width: 640px)  { .g-sm-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .g-md-2 { grid-template-columns: repeat(2, 1fr); }
                             .g-md-3 { grid-template-columns: repeat(3, 1fr); }
                             .g-md-4 { grid-template-columns: repeat(4, 1fr); } }

.skip-link {
  position: absolute;
  left: .75rem; top: -100%;
  z-index: 999;
  padding: .75rem 1.1rem;
  background: var(--crimson);
  color: #fff;
  font-weight: 600;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  text-decoration: none;
}
.skip-link:focus { top: 0; color: #fff; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .9rem 1.5rem;
  min-height: 48px;
  font-family: var(--font-sans);
  font-size: .975rem;
  font-weight: 650;
  letter-spacing: -.005em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease),
              background-color .18s var(--ease), color .18s var(--ease),
              border-color .18s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 1.05em; height: 1.05em; flex: none; }

.btn--primary {
  background: var(--crimson);
  color: #fff;
  box-shadow: 0 1px 2px rgba(61, 9, 18, .2), 0 8px 20px -6px rgba(158, 27, 50, .45);
}
.btn--primary:hover { background: var(--crimson-600); color: #fff;
  box-shadow: 0 2px 4px rgba(61, 9, 18, .22), 0 14px 28px -8px rgba(158, 27, 50, .5); }

.btn--ghost {
  background: var(--white);
  color: var(--ink);
  border-color: var(--gray-300);
  box-shadow: var(--sh-1);
}
.btn--ghost:hover { border-color: var(--gray-500); color: var(--ink); }

.btn--onwash {
  background: rgba(255, 255, 255, .1);
  color: #fff;
  border-color: rgba(255, 255, 255, .5);
  backdrop-filter: blur(4px);
}
.btn--onwash:hover { background: rgba(255, 255, 255, .18); color: #fff; border-color: #fff; }

.btn--light { background: #fff; color: var(--crimson-700); }
.btn--light:hover { background: var(--crimson-tint); color: var(--crimson-700); }

.btn--sm { padding: .6rem 1.1rem; min-height: 40px; font-size: .875rem; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; }
.btn-row--center { justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.site-header.is-stuck {
  border-bottom-color: var(--gray-200);
  box-shadow: 0 4px 20px -12px rgba(23, 24, 28, .3);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
  color: var(--ink);
  flex: none;
}
.brand img { width: 40px; height: 40px; border-radius: 11px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: -.02em;
  color: var(--ink);
}
.brand-sub {
  font-size: .625rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--crimson);
}
@media (max-width: 360px) { .brand-sub { display: none; } }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--gray-300);
  border-radius: 12px;
  cursor: pointer;
  color: var(--ink);
}
.nav-toggle:hover { border-color: var(--gray-500); }
.nav-toggle span {
  position: relative;
  display: block;
  width: 18px; height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: background-color .2s var(--ease);
}
.nav-toggle span::before, .nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px; height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .25s var(--ease), top .2s var(--ease);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

.site-nav {
  position: absolute;
  left: 0; right: 0;
  top: 100%;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--sh-2);
  padding: .5rem var(--gut) 1.4rem;
  display: none;
}
.site-nav.is-open { display: block; }
.site-nav ul { list-style: none; padding: 0; margin: 0; }
.site-nav li + li { border-top: 1px solid var(--gray-100); }
.site-nav ul a {
  display: block;
  padding: .9rem .25rem;
  font-weight: 550;
  color: var(--ink);
  text-decoration: none;
}
.site-nav ul a:hover,
.site-nav ul a[aria-current] { color: var(--crimson); }
.nav-cta { margin-top: 1.1rem; display: grid; gap: .6rem; }

@media (min-width: 980px) {
  .nav-toggle { display: none; }
  .site-nav {
    position: static;
    display: flex !important;
    align-items: center;
    gap: 1.4rem;
    background: none;
    border: 0;
    box-shadow: none;
    padding: 0;
  }
  .site-nav ul { display: flex; align-items: center; gap: .35rem; }
  .site-nav li + li { border: 0; }
  .site-nav ul a {
    padding: .5rem .7rem;
    font-size: .93rem;
    border-radius: 8px;
    position: relative;
  }
  .site-nav ul a[aria-current]::after {
    content: "";
    position: absolute;
    left: .7rem; right: .7rem; bottom: .18rem;
    height: 2px;
    background: var(--crimson);
    border-radius: 2px;
  }
  .nav-cta { margin: 0; display: flex; gap: .5rem; }
  .nav-cta .btn { white-space: nowrap; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(120% 85% at 88% 4%, var(--crimson-tint) 0%, rgba(252, 242, 244, 0) 58%),
    linear-gradient(180deg, var(--white) 0%, var(--sand) 100%);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: var(--gray-200);
}
.hero-inner {
  display: grid;
  gap: clamp(2.25rem, 6vw, 3.5rem);
  padding-block: clamp(2.5rem, 6vw, 4rem);
}
@media (min-width: 940px) {
  .hero-inner {
    grid-template-columns: 1.06fr .94fr;
    align-items: center;
    gap: 3.5rem;
  }
}
.hero h1 { margin-bottom: 1.05rem; }
.hero h1 em { font-style: normal; color: var(--crimson); }
.hero .lede { max-width: 34rem; }
.hero .btn-row { margin-top: 1.75rem; }

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.4rem;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .38rem .8rem .38rem .6rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--ink-soft);
  box-shadow: var(--sh-1);
  white-space: nowrap;
}
.pill svg { width: 15px; height: 15px; color: var(--crimson); flex: none; }
.pill--stars { color: var(--gold); }

.hero-note {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  margin-top: 1.5rem;
  font-size: .875rem;
  color: var(--gray-600);
}
.hero-note svg { width: 17px; height: 17px; color: var(--crimson); flex: none; margin-top: .18rem; }

/* Hero media */
.hero-media { position: relative; }
.hero-media figure {
  position: relative;
  margin: 0;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-3);
  background: var(--gray-100);
}
.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 45%;
}
@media (min-width: 940px) { .hero-media img { aspect-ratio: 1 / 1; } }
.hero-media figcaption {
  position: absolute;
  left: 1rem; right: 1rem; bottom: 1rem;
  padding: .8rem 1rem;
  background: rgba(23, 24, 28, .62);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  border-radius: var(--r);
  font-size: .82rem;
  line-height: 1.45;
}
.hero-media figcaption strong { display: block; font-size: .9rem; }

.float-card {
  /* Hangs into the column gap at the top-left so it never covers the
     figcaption and never widens the page. */
  position: absolute;
  left: -1.35rem;
  top: 1.5rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .8rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r);
  box-shadow: var(--sh-3);
}
.float-card .num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--crimson);
  line-height: 1;
}
.float-card .lbl { font-size: .74rem; line-height: 1.35; color: var(--gray-600); }
@media (max-width: 939px) { .float-card { display: none; } }

/* ---------- Trust bar ---------- */
.trustbar { background: var(--ink); color: rgba(255, 255, 255, .82); }
.trustbar ul {
  list-style: none;
  margin: 0; padding: 1.1rem 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .85rem 1rem;
}
@media (min-width: 860px) { .trustbar ul { grid-template-columns: repeat(4, 1fr); } }
.trustbar li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .84rem;
  font-weight: 500;
}
.trustbar svg { width: 19px; height: 19px; color: #fff; opacity: .85; flex: none; }
.trustbar strong { color: #fff; font-weight: 650; }

/* ---------- Cards ---------- */
.card {
  position: relative;
  padding: 1.6rem 1.4rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-1);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.card h3 { margin-bottom: .55rem; }
.card p { font-size: .94rem; color: var(--gray-700); }
.card--lift:hover { transform: translateY(-3px); box-shadow: var(--sh-2); border-color: var(--gray-300); }

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  margin-bottom: 1.1rem;
  background: var(--crimson-tint);
  color: var(--crimson);
  border-radius: 14px;
}
.card-icon svg { width: 23px; height: 23px; }

.card-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: .5rem;
  font-size: .9rem;
  color: var(--gray-700);
}
.card-list li { display: flex; gap: .55rem; align-items: flex-start; }
.card-list li::before {
  content: "";
  flex: none;
  width: 16px; height: 16px;
  margin-top: .3rem;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239E1B32' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 11px no-repeat,
    var(--crimson-tint);
}

/* ---------- Steps ---------- */
.steps { counter-reset: step; display: grid; gap: 1.25rem; }
@media (min-width: 900px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step {
  position: relative;
  counter-increment: step;
  padding: 1.5rem 1.35rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-1);
}
.step::before {
  content: "0" counter(step);
  display: block;
  margin-bottom: .85rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--crimson);
  opacity: .9;
}
.step h3 { font-size: 1.08rem; margin-bottom: .4rem; }
.step p { font-size: .91rem; color: var(--gray-700); }

/* ---------- Split feature ---------- */
.split { display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
/* When a column carries a stacked photo + facts, top-align instead. */
.split--top { align-items: start; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } }
.split--flip .split-media { order: -1; }
@media (max-width: 899px) { .split--flip .split-media { order: 0; } }
.split-media img {
  width: 100%;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-2);
  object-fit: cover;
}

/* ---------- Reviews ---------- */
.review {
  display: flex;
  flex-direction: column;
  padding: 1.6rem 1.45rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-1);
}
.review blockquote {
  margin: 0 0 1.15rem;
  font-size: .965rem;
  line-height: 1.62;
  color: var(--ink-soft);
  flex: 1;
}
.review blockquote p + p { margin-top: .8rem; }
.stars { display: flex; gap: .1rem; color: var(--gold); margin-bottom: .85rem; }
.stars svg { width: 16px; height: 16px; }
.review-by {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-100);
}
.avatar {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  flex: none;
  border-radius: 50%;
  background: var(--crimson-tint-2);
  color: var(--crimson-700);
  font-weight: 700;
  font-size: .88rem;
}
.review-by cite { font-style: normal; font-weight: 650; font-size: .92rem; color: var(--ink); display: block; }
.review-by cite + span { font-size: .78rem; color: var(--gray-600); }

.rating-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .6rem 1rem;
  padding: 1rem 1.35rem;
  margin: 0 auto clamp(2rem, 5vw, 3rem);
  width: fit-content;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  box-shadow: var(--sh-1);
  font-size: .9rem;
}
.rating-summary .score {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
}

/* ---------- Pricing ---------- */
.price-card {
  padding: clamp(1.75rem, 4vw, 2.5rem);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-2);
}
.price-card--accent {
  border-color: var(--crimson-tint-2);
  background: linear-gradient(180deg, var(--crimson-tint) 0%, var(--white) 42%);
}
.price-figure {
  display: flex;
  align-items: baseline;
  gap: .4rem;
  margin: .35rem 0 .6rem;
}
.price-figure .amount {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 9vw, 3.6rem);
  font-weight: 600;
  color: var(--crimson);
  line-height: 1;
  letter-spacing: -.03em;
}
.price-figure .unit { font-size: 1rem; font-weight: 600; color: var(--gray-600); }

.fact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0; }
.fact-list li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .35rem 1rem;
  padding: .9rem 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: .93rem;
}
.fact-list li:last-child { border-bottom: 0; }
.fact-list dt, .fact-list .k { color: var(--gray-600); }
.fact-list dd, .fact-list .v { margin: 0; font-weight: 600; color: var(--ink); text-align: right; }

.note {
  display: flex;
  gap: .7rem;
  padding: 1rem 1.15rem;
  background: var(--crimson-tint);
  border: 1px solid var(--crimson-tint-2);
  border-radius: var(--r);
  font-size: .88rem;
  color: var(--gray-700);
}
.note svg { width: 18px; height: 18px; color: var(--crimson); flex: none; margin-top: .18rem; }
.note strong { color: var(--ink); }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--gray-200); }
.faq details {
  border-bottom: 1px solid var(--gray-200);
}
.faq summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.25rem .25rem;
  font-family: var(--font-display);
  font-size: 1.06rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  transition: color .2s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--crimson); }
.faq summary::after {
  content: "";
  flex: none;
  width: 20px; height: 20px;
  margin-top: .18rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239E1B32' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform .28s var(--ease);
}
.faq details[open] summary::after { transform: rotate(135deg); }
.faq .faq-body { padding: 0 .25rem 1.4rem; }
.faq .faq-body p { font-size: .95rem; color: var(--gray-700); }
.faq .faq-body p + p { margin-top: .75rem; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  background: linear-gradient(135deg, var(--crimson-700) 0%, var(--crimson) 55%, var(--crimson-600) 100%);
  color: #fff;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 90% at 12% 0%, rgba(255,255,255,.16) 0%, transparent 60%),
    radial-gradient(50% 80% at 92% 100%, rgba(0,0,0,.22) 0%, transparent 60%);
  pointer-events: none;
}
.cta-band .shell { position: relative; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, .88); }
.cta-band .btn-row { margin-top: 1.75rem; }

/* ---------- Forms ---------- */
.form-card {
  padding: clamp(1.5rem, 4vw, 2.25rem);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-2);
}
.field { margin-bottom: 1.15rem; }
.field label {
  display: block;
  margin-bottom: .4rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--ink);
}
.field .hint { display: block; font-weight: 400; font-size: .8rem; color: var(--gray-500); margin-top: .15rem; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: .8rem .95rem;
  min-height: 48px;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--r-sm);
  font-size: 1rem;
  color: var(--ink);
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.field textarea { min-height: 120px; resize: vertical; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B6F7A' stroke-width='2.2' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .85rem center;
  background-size: 18px;
  padding-right: 2.5rem;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--crimson);
  box-shadow: var(--ring);
}
.field input:user-invalid, .field textarea:user-invalid { border-color: #B3162F; }
.field-row { display: grid; gap: 0; }
@media (min-width: 620px) { .field-row { grid-template-columns: 1fr 1fr; gap: 0 1rem; } }
.req { color: var(--crimson); }

.form-foot { margin-top: 1.5rem; }
.form-foot .fineprint { margin-top: .9rem; font-size: .8rem; color: var(--gray-500); }

/* ---------- Contact methods ---------- */
.contact-methods { display: grid; gap: 1rem; }
.method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-1);
  text-decoration: none;
  color: inherit;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
a.method:hover { transform: translateY(-2px); box-shadow: var(--sh-2); border-color: var(--crimson-tint-2); color: inherit; }
.method .card-icon { margin: 0; flex: none; }
.method > span:last-child { display: block; min-width: 0; }
.method .m-label,
.method .m-value,
.method .m-sub { display: block; }
.method .m-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: .1rem;
}
.method .m-value {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
}
.method .m-sub { font-size: .85rem; color: var(--gray-600); margin-top: .1rem; }

/* ---------- Page hero (interior) ---------- */
.page-hero {
  padding-block: clamp(2.5rem, 7vw, 4.25rem);
  background:
    radial-gradient(100% 100% at 85% 0%, var(--crimson-tint) 0%, rgba(252,242,244,0) 62%),
    var(--sand);
  border-bottom: 1px solid var(--gray-200);
}
.page-hero .lede { max-width: 46rem; margin-top: 1rem; }

.crumbs { font-size: .8rem; color: var(--gray-500); margin-bottom: 1rem; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; padding: 0; margin: 0; }
.crumbs li + li::before { content: "/"; margin-right: .4rem; color: var(--gray-300); }
.crumbs a { display: inline-block; padding-block: .25rem; color: var(--gray-700); text-decoration: none; }
.crumbs a:hover { color: var(--crimson); text-decoration: underline; }
.crumbs [aria-current="page"] { color: var(--ink-soft); }

/* ---------- Legal / prose ---------- */
.prose { max-width: 44rem; }
.prose h2 { font-size: clamp(1.35rem, 3.6vw, 1.7rem); margin-top: 2.75rem; margin-bottom: .85rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.1rem; margin-top: 1.75rem; margin-bottom: .5rem; }
.prose p, .prose ul, .prose ol { margin-bottom: 1rem; color: var(--gray-700); }
.prose ul, .prose ol { padding-left: 1.25rem; }
.prose li { margin-bottom: .45rem; }
.prose li::marker { color: var(--crimson); }
.prose strong { color: var(--ink); }
.updated {
  display: inline-block;
  padding: .35rem .8rem;
  margin-bottom: 2rem;
  background: var(--gray-100);
  border-radius: 999px;
  font-size: .8rem;
  color: var(--gray-600);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, .68);
  padding-block: clamp(2.75rem, 6vw, 4rem) 0;
  font-size: .9rem;
}
.footer-grid { display: grid; gap: 2.25rem; }
@media (min-width: 760px)  { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
@media (min-width: 1020px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.1fr; } }

.site-footer .brand-name { color: #fff; }
.site-footer .brand-sub { color: rgba(255, 255, 255, .55); }
.footer-about p { margin-top: 1rem; max-width: 30rem; line-height: 1.6; }
.footer-col h2 {
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .4rem; }
.footer-col a {
  display: inline-block;
  padding-block: .25rem;
  color: rgba(255, 255, 255, .72);
  text-decoration: none;
}
.footer-col a:hover { color: #fff; text-decoration: underline; }
.footer-contact .big {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  margin-bottom: .3rem;
}
.footer-contact .big:hover { color: #fff; text-decoration: underline; }

.footer-bottom {
  margin-top: clamp(2.25rem, 5vw, 3rem);
  padding-block: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  flex-direction: column;
  gap: .85rem;
  font-size: .82rem;
  color: rgba(255, 255, 255, .55);
}
.footer-bottom nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.25rem;
  padding: 0; margin: 0;
}
.footer-bottom a {
  display: inline-block;
  padding-block: .3rem;
  color: rgba(255, 255, 255, .68);
  text-decoration: none;
}
.footer-bottom a:hover { color: #fff; text-decoration: underline; }
@media (min-width: 760px) {
  .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* ---------- Mobile sticky action bar ---------- */
.action-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
  padding: .6rem var(--gut) calc(.6rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--gray-200);
  box-shadow: 0 -6px 24px -14px rgba(23, 24, 28, .5);
}
.action-bar .btn { min-height: 46px; font-size: .9rem; }
@media (min-width: 980px) { .action-bar { display: none; } }
@media (max-width: 979px) { body { padding-bottom: 4.75rem; } }

/* ---------- Reveal animation ----------
   Transform-only by design: content is never faded out, so it stays readable
   even if the observer never fires (print, background render, no JS).
   Also scoped to .js so nothing moves without scripting. */
.js .reveal { transform: translateY(16px); }
.js .reveal.is-in {
  transform: none;
  transition: transform .55s var(--ease);
}
@media (prefers-reduced-motion: reduce) {
  .js .reveal, .js .reveal.is-in { transform: none; transition: none; }
}
@media print { .js .reveal { transform: none; } }

/* ---------- Utilities ---------- */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: .75rem; }
.mt-2 { margin-top: 1.5rem; }
.mt-3 { margin-top: 2.25rem; }
.text-center { text-align: center; }
.muted { color: var(--gray-600); }
.small { font-size: .875rem; }

@media print {
  .site-header, .action-bar, .cta-band, .site-footer { display: none !important; }
  body { padding: 0; }
}

/* Three-up step list (used on the contact page) */
@media (min-width: 900px) { .steps--3 { grid-template-columns: repeat(3, 1fr); } }
