/* ============================================================
   Autumn Air — Components
   ============================================================ */

/* ---------- Copper "speed stripe" motif (from vehicle wrap) ---------- */
.stripes {
  position: absolute; inset: 0; overflow: hidden;
  pointer-events: none; z-index: 0;
}
.stripes::before, .stripes::after {
  content: ""; position: absolute;
  width: 160%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--copper) 40%, var(--gold) 70%, transparent);
  opacity: 0.5;
  transform: rotate(-24deg);
}
.stripes::before { top: 26%; right: -30%; }
.stripes::after { top: 34%; right: -22%; width: 120%; opacity: 0.28; }
.stripes--corner::before { top: auto; bottom: 18%; left: -30%; right: auto; }
.stripes--corner::after { top: auto; bottom: 26%; left: -20%; right: auto; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: var(--z-sticky);
  background: color-mix(in srgb, var(--ink-900) 80%, transparent);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border-bottom: 1px solid transparent;
  transition: background var(--dur) ease, border-color var(--dur) ease, padding var(--dur) ease;
}
.site-header.is-scrolled {
  background: color-mix(in srgb, var(--ink-900) 94%, transparent);
  border-bottom-color: var(--border);
}
.header-inner {
  display: flex; align-items: center; gap: 1.5rem;
  padding-block: clamp(0.7rem, 0.5rem + 0.7vw, 1.1rem);
}
.site-header.is-scrolled .header-inner { padding-block: 0.65rem; }

/* brand lockup */
.brand { display: inline-flex; align-items: center; gap: 0.7rem; flex-shrink: 0; }
.brand__mark { width: 38px; height: auto; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.28rem; color: var(--paper); letter-spacing: 0.02em;
}
.brand__name .text-copper { color: var(--copper-bright); }
.brand__tag {
  font-family: var(--font-body); font-weight: 600;
  font-size: 0.5rem; letter-spacing: var(--tracking-wide);
  color: var(--copper-bright); text-transform: uppercase; margin-top: 0.32rem;
}

/* nav */
.primary-nav { margin-left: auto; }
.nav-list { display: flex; align-items: center; gap: 0.35rem; list-style: none; padding: 0; }
.nav-list a {
  display: inline-block; padding: 0.6rem 0.9rem; white-space: nowrap;
  font-weight: 500; font-size: 0.92rem; color: var(--paper-dim);
  border-radius: var(--r-sm); position: relative;
  transition: color var(--dur-fast) ease;
}
.nav-list a::after {
  content: ""; position: absolute; left: 0.9rem; right: 0.9rem; bottom: 0.42rem;
  height: 1.5px; background: var(--copper); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; opacity: 0;
  transition: transform var(--dur) var(--ease-out-expo), opacity var(--dur-fast);
}
.nav-list a:hover { color: var(--paper); }
.nav-list a:hover::after, .nav-list a[aria-current="page"]::after { transform: scaleX(1); opacity: 1; }
.nav-list a[aria-current="page"] { color: var(--paper); }

.header-actions { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }
.header-phone {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-weight: 600; font-size: 0.95rem; color: var(--paper);
  white-space: nowrap; transition: color var(--dur-fast);
}
.header-phone svg { width: 1rem; height: 1rem; color: var(--copper-bright); }
.header-phone:hover { color: var(--copper-bright); }
.header-phone small { display: block; font-size: 0.6rem; font-weight: 600; letter-spacing: 0.12em; color: var(--paper-mute); text-transform: uppercase; }

/* burger */
.nav-toggle {
  display: none; width: 46px; height: 46px; border-radius: var(--r-sm);
  border: 1px solid var(--border); position: relative; flex-shrink: 0;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 50%; width: 20px; height: 2px;
  background: var(--paper); border-radius: 2px; transform: translateX(-50%);
  transition: transform var(--dur) var(--ease-out-expo), opacity var(--dur-fast);
}
.nav-toggle span { top: 50%; margin-top: -1px; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

/* ---------- Mobile overlay menu ---------- */
.mobile-menu {
  position: fixed; inset: 0; z-index: var(--z-menu);
  background: color-mix(in srgb, var(--ink-900) 97%, transparent);
  backdrop-filter: blur(8px);
  display: flex; flex-direction: column;
  padding: clamp(1.5rem, 5vw, 3rem);
  opacity: 0; visibility: hidden;
  transform: translateY(-12px);
  transition: opacity var(--dur) var(--ease-out-expo),
              transform var(--dur) var(--ease-out-expo), visibility var(--dur);
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: none; }
.mobile-menu__top { display: flex; align-items: center; justify-content: space-between; }
.mobile-menu__close { width: 46px; height: 46px; border-radius: var(--r-sm); border: 1px solid var(--border); color: var(--paper); font-size: 1.6rem; line-height: 1; }
.mobile-menu__list { list-style: none; padding: 0; margin: auto 0; display: flex; flex-direction: column; gap: 0.4rem; }
.mobile-menu__list a {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.7rem, 8vw, 2.6rem); color: var(--paper);
  padding: 0.35rem 0; display: inline-flex; align-items: baseline; gap: 0.8rem;
}
.mobile-menu__list a span { font-family: var(--font-body); font-size: 0.85rem; color: var(--copper-bright); font-weight: 600; }
.mobile-menu__list a:hover { color: var(--copper-bright); }
.mobile-menu__foot { display: flex; flex-direction: column; gap: 1rem; }
.mobile-menu__phone { font-size: 1.4rem; font-weight: 700; color: var(--paper); display: inline-flex; gap: 0.5rem; align-items: center; }
.mobile-menu__phone svg { width: 1.1rem; color: var(--copper-bright); }

body.menu-open { overflow: hidden; }

/* ---------- Mobile sticky action bar ---------- */
.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: var(--z-sticky);
  display: none; gap: 0.6rem; padding: 0.7rem clamp(0.8rem, 4vw, 1.2rem);
  padding-bottom: max(0.7rem, env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--ink-900) 92%, transparent);
  backdrop-filter: blur(14px); border-top: 1px solid var(--border);
}
.mobile-cta a { flex: 1; }
.mobile-cta .btn { width: 100%; padding: 0.95em 1em; }
.mobile-cta .btn--ghost { color: var(--paper); border-color: var(--ink-500); }
body.menu-open .mobile-cta { display: none !important; }
@media (max-width: 720px) {
  .mobile-cta { display: flex; }
  body { padding-bottom: 4.6rem; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; isolation: isolate;
  min-height: clamp(560px, 86vh, 880px);
  display: flex; align-items: center;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(100deg, rgba(15,14,13,0.94) 0%, rgba(16,15,13,0.78) 38%, rgba(16,15,13,0.30) 70%, rgba(16,15,13,0.55) 100%),
    linear-gradient(0deg, rgba(15,14,13,0.92) 0%, transparent 42%);
}
.hero__inner { padding-block: clamp(5rem, 10vw, 8rem); max-width: 46rem; }
.hero h1 {
  font-size: var(--text-hero);
  margin-top: 1.4rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.4);
}
.hero h1 .brk { display: block; }
.hero h1 .accent { color: var(--copper-bright); }
.hero__sub {
  margin-top: 1.5rem; font-size: var(--text-lg);
  color: var(--paper-dim); max-width: 40ch;
}
.hero .btn-row { margin-top: 2.2rem; }

/* trust strip under hero CTA */
.hero__trust {
  margin-top: 2.6rem; display: flex; flex-wrap: wrap; gap: 1.4rem 2rem;
  align-items: center;
}
.hero__trust .stars { color: var(--gold); letter-spacing: 0.1em; font-size: 0.95rem; }
.hero__trust span { font-size: 0.86rem; color: var(--paper-mute); }
.hero__trust strong { color: var(--paper); }

/* system pills floating bottom of hero */
.hero-systems {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 1;
  border-top: 1px solid var(--ink-600);
  background: color-mix(in srgb, var(--ink-900) 72%, transparent);
  backdrop-filter: blur(8px);
}
.hero-systems__inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding-block: 1.1rem; }
.hero-system { display: inline-flex; align-items: center; gap: 0.7rem; color: var(--paper-dim); font-weight: 500; font-size: 0.95rem; }
.hero-system svg { width: 1.5rem; height: 1.5rem; color: var(--copper-bright); }
.hero-system b { color: var(--paper); font-weight: 600; }

/* ============================================================
   SERVICE TILES
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); gap: 1.1rem; margin-top: 2.8rem; }
.service-tile {
  position: relative; overflow: hidden;
  border-radius: var(--r-lg); border: 1px solid var(--border);
  background: var(--ink-800); min-height: 340px;
  display: flex; flex-direction: column; justify-content: flex-end;
  isolation: isolate;
  transition: transform var(--dur) var(--ease-out-expo), border-color var(--dur);
}
.service-tile__img { position: absolute; inset: 0; z-index: -2; }
.service-tile__img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease-out-expo); filter: saturate(0.92); }
.service-tile::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(0deg, rgba(15,14,13,0.96) 8%, rgba(15,14,13,0.55) 48%, rgba(15,14,13,0.12) 100%);
}
.service-tile:hover { transform: translateY(-6px); border-color: var(--copper); }
.service-tile:hover .service-tile__img img { transform: scale(1.06); }
.service-tile__body { padding: 1.5rem; }
/* bare inline icon, no tinted-square chrome (that reads as template) */
.service-tile__icon { display: inline-flex; margin-bottom: 0.7rem; }
.service-tile__icon svg { width: 30px; height: 30px; color: var(--copper-bright); filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5)); }
.service-tile h3 { font-size: 1.4rem; display: flex; align-items: center; gap: 0.6rem; }
.service-tile p { margin-top: 0.5rem; color: var(--paper-dim); font-size: 0.95rem; }
.service-tile .tlink { margin-top: 1rem; }

/* ---- Asymmetric section lead (editorial, not centered eyebrow) ---- */
.lead-head { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(1.5rem, 3vw, 3.5rem); align-items: end; }
.lead-head h2 { font-size: var(--text-3xl); }
.lead-head__aside { color: var(--text-mute); font-size: var(--text-lg); padding-bottom: 0.4rem; }
.section--light .lead-head__aside { color: var(--mute-on-light); }
@media (max-width: 760px) { .lead-head { grid-template-columns: 1fr; gap: 1rem; } }

/* ============================================================
   BENTO SERVICES (varied sizes, breaks the uniform grid)
   ============================================================ */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 188px;
  gap: 1rem;
  margin-top: 2.6rem;
}
.bento .service-tile { min-height: 0; }
.bento__feature { grid-column: 1 / 3; grid-row: 1 / 3; }
.bento__a { grid-column: 3 / 4; grid-row: 1; }
.bento__b { grid-column: 4 / 5; grid-row: 1; }
.bento__wide { grid-column: 3 / 5; grid-row: 2; }

.service-tile--feature .service-tile__body { padding: 1.9rem; }
.service-tile--feature h3 { font-size: clamp(1.7rem, 1.2rem + 1.6vw, 2.4rem); }
.service-tile--feature .service-tile__lead { display: block; color: var(--paper-dim); margin-top: 0.6rem; max-width: 34ch; font-size: 1rem; }
.service-tile__lead { display: none; }

@media (max-width: 880px) {
  .bento { grid-template-columns: 1fr 1fr; grid-auto-rows: 172px; }
  .bento__feature { grid-column: 1 / 3; grid-row: 1 / 3; }
  .bento__a { grid-column: 1; grid-row: 3; }
  .bento__b { grid-column: 2; grid-row: 3; }
  .bento__wide { grid-column: 1 / 3; grid-row: 4; }
}
@media (max-width: 560px) {
  .bento { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .bento__feature, .bento__a, .bento__b, .bento__wide { grid-column: 1; grid-row: auto; }
  .bento__feature { min-height: 300px; }
}

/* ============================================================
   FEATURE SPLIT (Difference / about)
   ============================================================ */
.split {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 4vw, 4.5rem); align-items: center;
}
.split--reverse .split__media { order: 2; }
.split__media { position: relative; border-radius: var(--r-lg); overflow: hidden; }
.split__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3.4; }
.split__media .badge-float {
  position: absolute; left: 1.1rem; bottom: 1.1rem;
  background: color-mix(in srgb, var(--ink-900) 88%, transparent);
  backdrop-filter: blur(8px); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 0.9rem 1.1rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.badge-float svg { width: 28px; color: var(--copper-bright); }
.badge-float b { display: block; color: var(--paper); font-size: 1.05rem; }
.badge-float span { font-size: 0.78rem; color: var(--paper-mute); }

.split h2 { font-size: var(--text-3xl); }
.split .lead { margin-top: 1.2rem; }

/* checklist */
.check-list { list-style: none; padding: 0; margin-top: 1.8rem; display: grid; gap: 1rem; }
.check-list li { display: grid; grid-template-columns: auto 1fr; gap: 0.9rem; align-items: start; }
.check-list .ck {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0; margin-top: 2px;
  display: grid; place-items: center;
  background: var(--copper-18); border: 1px solid var(--copper-28);
}
.check-list .ck svg { width: 14px; height: 14px; color: var(--copper-bright); }
.check-list b { color: var(--text); display: block; font-weight: 600; }
.check-list span { color: var(--text-mute); font-size: 0.95rem; }
.section--light .check-list b { color: var(--ink-on-light); }
.section--light .check-list span { color: var(--mute-on-light); }
.section--light .check-list .ck { background: var(--copper-12); }

/* ============================================================
   PROTECTION PLAN CARD
   ============================================================ */
.plan {
  position: relative; overflow: hidden;
  border-radius: var(--r-xl);
  background:
    radial-gradient(120% 100% at 100% 0%, rgba(184,115,51,0.16), transparent 55%),
    linear-gradient(160deg, var(--ink-750), var(--ink-850));
  border: 1px solid var(--ink-600);
  display: grid; grid-template-columns: 1.2fr 1fr;
}
.plan__body { padding: clamp(2rem, 4vw, 3.4rem); }
.plan__body h2 { font-size: var(--text-2xl); }
.plan__price { display: flex; align-items: baseline; gap: 0.5rem; margin: 1.6rem 0 0.4rem; }
.plan__price .amt { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.8rem, 2rem + 4vw, 4.2rem); color: var(--gold); line-height: 1; }
.plan__price .amt sup { font-size: 0.42em; top: -0.95em; position: relative; font-weight: 700; }
.plan__price .per { color: var(--paper-mute); font-weight: 500; }
.plan__price .from { font-size: 0.78rem; letter-spacing: var(--tracking-label); text-transform: uppercase; color: var(--paper-mute); align-self: flex-start; margin-top: 0.4rem; }
.plan__side {
  background: color-mix(in srgb, var(--ink-900) 55%, transparent);
  border-left: 1px solid var(--ink-600);
  padding: clamp(2rem, 4vw, 3rem);
}
.plan__side h3 { font-family: var(--font-body); font-weight: 700; font-size: 0.8rem; letter-spacing: var(--tracking-label); text-transform: uppercase; color: var(--copper-bright); margin-bottom: 1.3rem; }
.benefit-list { list-style: none; padding: 0; display: grid; gap: 0.95rem; }
.benefit-list li { display: flex; gap: 0.7rem; align-items: center; color: var(--paper-dim); font-size: 0.96rem; }
.benefit-list svg { width: 18px; flex-shrink: 0; color: var(--gold); }
.plan__clarify {
  display: flex; gap: 0.7rem; align-items: start;
  margin-top: 1.4rem; padding: 1rem 1.1rem; max-width: 48ch;
  background: color-mix(in srgb, var(--ink-900) 45%, transparent);
  border: 1px solid var(--ink-600); border-radius: var(--r-md);
  font-size: 0.9rem; color: var(--paper-dim); line-height: 1.55;
}
.plan__clarify .ico { color: var(--copper-bright); margin-top: 2px; }
.plan__clarify svg { width: 20px; }
.plan__clarify strong { color: var(--paper); }
.plan .btn-row { margin-top: 1.8rem; }

/* ============================================================
   STATS — asymmetric lead: one dominant number + supporting
   ============================================================ */
.stat-lead { display: grid; grid-template-columns: auto 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.stat-lead__hero .n {
  font-family: var(--font-display); font-weight: 800; line-height: 0.9;
  font-size: clamp(3.4rem, 2rem + 6vw, 5.6rem); color: var(--text);
}
.stat-lead__hero .n em { font-style: normal; color: var(--copper-bright); }
.stat-lead__hero .l { margin-top: 0.7rem; color: var(--text-mute); font-size: 1.05rem; max-width: 18ch; }
.stat-lead__rest { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 2rem); border-left: 1px solid var(--border); padding-left: clamp(1.5rem, 4vw, 3.5rem); }
.stat-lead__rest .n { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.8rem, 1.3rem + 1.6vw, 2.6rem); color: var(--text); line-height: 1; }
.stat-lead__rest .n em { font-style: normal; color: var(--gold); }
.stat-lead__rest .l { margin-top: 0.5rem; color: var(--text-mute); font-size: 0.86rem; }
@media (max-width: 820px) {
  .stat-lead { grid-template-columns: 1fr; gap: 2rem; }
  .stat-lead__rest { border-left: 0; padding-left: 0; border-top: 1px solid var(--border); padding-top: 1.8rem; }
}
@media (max-width: 560px) { .stat-lead__rest { grid-template-columns: 1fr; gap: 1.2rem; } }

/* ============================================================
   HOW IT WORKS (real 3-step sequence)
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3vw, 3rem); margin-top: 2.8rem; counter-reset: step; }
.step { position: relative; padding-top: 2.2rem; }
.step::before {
  counter-increment: step; content: "0" counter(step);
  position: absolute; top: -1.4rem; left: -0.2rem;
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(3rem, 2rem + 3vw, 4.6rem); line-height: 1;
  color: transparent; -webkit-text-stroke: 1.5px rgba(184, 115, 51, 0.55);
  text-stroke: 1.5px rgba(184, 115, 51, 0.55);
}
.step h3 { font-family: var(--font-body); font-weight: 700; font-size: 1.2rem; }
.step p { margin-top: 0.6rem; color: var(--text-body); font-size: 0.96rem; }
.step__line { display: none; }
@media (min-width: 761px) {
  .step:not(:last-child) .step__line { display: block; position: absolute; top: 0.7rem; right: calc(-1 * clamp(1.5rem,3vw,3rem) / 2 - 0.5px); width: clamp(1.5rem,3vw,3rem); height: 1px; background: var(--border); }
}
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; gap: 2.4rem; } }

/* credentials strip */
.creds { display: flex; flex-wrap: wrap; gap: 0.8rem 1.6rem; margin-top: 2.6rem; padding-top: 1.8rem; border-top: 1px solid var(--border); }
.cred { display: inline-flex; align-items: center; gap: 0.55rem; color: var(--paper-dim); font-weight: 500; font-size: 0.92rem; }
.cred svg { width: 18px; color: var(--copper-bright); }

/* ============================================================
   VALUES
   ============================================================ */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1rem; margin-top: 2.6rem; }
.value-card {
  padding: 1.6rem 1.2rem 1.6rem 0;
  border-top: 2px solid var(--copper-28);
}
.value-card__ico { display: inline-flex; margin-bottom: 0.9rem; }
.value-card__ico svg { width: 26px; color: var(--copper-bright); }
.value-card h3 { font-family: var(--font-body); font-weight: 700; font-size: 0.82rem; letter-spacing: var(--tracking-label); text-transform: uppercase; color: var(--text); }
.value-card p { margin-top: 0.5rem; font-size: 0.88rem; color: var(--text-mute); }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-head { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 1.5rem; }
.rating-badge { display: inline-flex; align-items: center; gap: 0.8rem; transition: transform var(--dur) var(--ease-out-expo); }
a.rating-badge:hover { transform: translateY(-2px); }
a.rating-badge:hover .big { color: var(--copper-deep); }
.rating-badge .big { transition: color var(--dur-fast); }
.rating-badge .big { font-family: var(--font-display); font-weight: 700; font-size: 2.6rem; color: var(--ink-on-light); line-height: 1; }
.rating-badge .stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 0.08em; }
.rating-badge small { color: var(--mute-on-light); font-size: 0.82rem; }

.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.2rem; margin-top: 2.6rem; }
.review {
  background: var(--paper); border: 1px solid var(--line-on-light);
  border-radius: var(--r-lg); padding: 1.8rem;
  display: flex; flex-direction: column; gap: 1rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.review .stars { color: var(--gold); letter-spacing: 0.06em; }
.review blockquote { font-size: 1.02rem; color: var(--ink-on-light); line-height: 1.6; }
.review__who { display: flex; align-items: center; gap: 0.8rem; margin-top: auto; }
.review__avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(150deg, var(--copper-bright), var(--copper-deep)); color: #fff; display: grid; place-items: center; font-weight: 700; font-family: var(--font-display); }
.review__who b { color: var(--ink-on-light); font-size: 0.95rem; }
.review__who span { color: var(--mute-on-light); font-size: 0.82rem; }

/* gold stars wash out on warm-white: deepen them in light sections */
.section--light .review .stars,
.section--light .rating-badge .stars { color: #9A6A12; }

/* dark variant review (for home) */
.section:not(.section--light) .review { background: var(--ink-800); border-color: var(--border); }
.section:not(.section--light) .review blockquote { color: var(--paper); }
.section:not(.section--light) .review__who b { color: var(--paper); }
.section:not(.section--light) .review__who span { color: var(--paper-mute); }

/* ============================================================
   PROMISE / CTA BAND
   ============================================================ */
.cta-band {
  position: relative; overflow: hidden; isolation: isolate;
  background: linear-gradient(120deg, #6f4118, var(--copper-btn) 58%, #AC662B);
  color: #fff; border-radius: var(--r-xl);
  padding: clamp(2.4rem, 4vw, 4rem);
  display: grid; grid-template-columns: 1.4fr auto; gap: 2rem; align-items: center;
}
.cta-band h2 { color: #fff; font-size: var(--text-2xl); }
.cta-band p { color: rgba(255,255,255,0.93); margin-top: 0.8rem; max-width: 48ch; }
.cta-band .btn--gold { box-shadow: var(--shadow-md); }
.cta-band .btn--ghost { color: #fff; border-color: rgba(255,255,255,0.5); }
.cta-band .btn--ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.cta-band__deco { position: absolute; inset: 0; z-index: -1; opacity: 0.5; }
.cta-band__deco::before, .cta-band__deco::after {
  content: ""; position: absolute; width: 140%; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
  transform: rotate(-22deg);
}
.cta-band__deco::before { top: 22%; right: -20%; }
.cta-band__deco::after { bottom: 24%; left: -20%; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink-850); border-top: 1px solid var(--border); padding-block: clamp(3rem, 5vw, 4.5rem) 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 2.5rem; }
.footer-brand .brand { margin-bottom: 1.2rem; }
.footer-brand p { color: var(--paper-mute); font-size: 0.92rem; max-width: 32ch; }
.footer-promise { margin-top: 1.4rem; display: flex; gap: 0.8rem; align-items: start; }
.footer-promise svg { width: 26px; flex-shrink: 0; color: var(--copper-bright); margin-top: 2px; }
.footer-promise p { font-size: 0.88rem; color: var(--paper-dim); }
.footer-col h4 { font-family: var(--font-body); font-size: 0.74rem; letter-spacing: var(--tracking-label); text-transform: uppercase; color: var(--copper-bright); margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; padding: 0; display: grid; gap: 0.7rem; }
.footer-col a, .footer-col li { color: var(--paper-dim); font-size: 0.92rem; transition: color var(--dur-fast); }
.footer-col a:hover { color: var(--copper-bright); }
.footer-contact-item { display: flex; gap: 0.6rem; align-items: start; }
.footer-contact-item svg { width: 16px; flex-shrink: 0; color: var(--copper-bright); margin-top: 3px; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid var(--border); }
.footer-bottom p { color: var(--paper-mute); font-size: 0.82rem; }
.footer-social { display: flex; gap: 0.6rem; }
.footer-social a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--border); display: grid; place-items: center; color: var(--paper-dim); transition: border-color var(--dur-fast), color var(--dur-fast), transform var(--dur-fast); }
.footer-social a:hover { border-color: var(--copper); color: var(--copper-bright); transform: translateY(-2px); }
.footer-social svg { width: 17px; }
