/*
Theme Name: Elevation Espresso Care
Theme URI: https://elevationespressocare.com
Author: Elevation Espresso Care
Description: Custom lightweight theme for Elevation Espresso Care — espresso machine repair, sales & remote diagnostics in the Denver metro. Racing green + brass, Cormorant Garamond + Outfit, GSAP-driven. Ported from the v3 design.
Version: 1.9.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: elevation-espresso-care
*/
/* ==========================================================
   Elevation Espresso Care — prototype v2
   Racing green + brass. Cormorant Garamond (display) + Outfit (body).
   First-person, residential-first.
   ========================================================== */

:root {
  --bg: #0d1310;
  --bg-2: #121a15;
  --bg-3: #1a241e;
  --ink: #efe9dc;
  --ink-dim: #b3ac9c;
  --ink-faint: #7c7669;
  --brass: #c9a45c;
  --brass-bright: #e0bd72;
  --brick: #b15c3f;
  --line: rgba(201, 164, 92, 0.2);
  --radius: 16px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--brass); color: var(--bg); }
img { max-width: 100%; display: block; }
a { color: inherit; }
b, strong { font-weight: 500; }

/* ---------- cursor ---------- */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999;
  border-radius: 50%; transform: translate(-50%, -50%);
}
.cursor-dot { width: 6px; height: 6px; background: var(--brass); }
.cursor-ring {
  width: 36px; height: 36px; border: 1px solid var(--line);
  transition: width .25s ease, height .25s ease, border-color .25s ease;
}
.cursor-ring.is-hover { width: 58px; height: 58px; border-color: var(--brass); }
@media (hover: none), (pointer: coarse) { .cursor-dot, .cursor-ring { display: none; } }

.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 100%;
  background: var(--brass); transform-origin: 0 50%; transform: scaleX(0); z-index: 1000;
}

/* ---------- header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px clamp(20px, 4vw, 56px);
  transition: background .4s ease, padding .4s ease;
}
.site-header.is-scrolled {
  background: rgba(13, 19, 16, .86);
  backdrop-filter: blur(14px);
  padding-top: 12px; padding-bottom: 12px;
  border-bottom: 1px solid rgba(201,164,92,.1);
}
.brand { display: flex; align-items: baseline; gap: 10px; text-decoration: none; }
.brand b { font-family: var(--font-display); font-weight: 600; font-size: 24px; letter-spacing: .04em; }
.brand span { font-size: 10px; letter-spacing: .38em; color: var(--brass); text-transform: uppercase; }

.main-nav { display: flex; gap: clamp(14px, 2.5vw, 36px); align-items: center; }
.main-nav a {
  text-decoration: none; font-size: 13px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink-dim); position: relative;
  padding: 6px 0; transition: color .25s ease; font-weight: 400;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: var(--brass); transform: scaleX(0); transform-origin: 100% 50%;
  transition: transform .35s cubic-bezier(.65,.05,0,1);
}
.main-nav a:hover { color: var(--ink); }
.main-nav a:hover::after { transform: scaleX(1); transform-origin: 0 50%; }
.main-nav a.is-active { color: var(--brass); }
.nav-phone {
  border: 1px solid var(--line); border-radius: 99px; padding: 10px 20px !important;
  color: var(--ink) !important; transition: background .3s, color .3s !important;
}
.nav-phone:hover { background: var(--brass); color: var(--bg) !important; }
.nav-phone::after { display: none; }
.nav-toggle { display: none; }
@media (max-width: 920px) {
  .main-nav {
    position: fixed; inset: 0; background: rgba(13,19,16,.97);
    flex-direction: column; justify-content: center; gap: 30px;
    transform: translateY(-100%); transition: transform .5s cubic-bezier(.65,.05,0,1);
  }
  .main-nav.is-open { transform: translateY(0); }
  .main-nav a { font-size: 19px; }
  .nav-toggle {
    display: block; z-index: 901; background: none; border: none; cursor: pointer;
    color: var(--ink); font-size: 13px; letter-spacing: .2em; text-transform: uppercase; padding: 8px;
  }
}

/* ---------- type ---------- */
.h-xl {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(46px, 9vw, 124px); line-height: 0.98; letter-spacing: -0.01em;
}
.h-lg {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(36px, 5.4vw, 72px); line-height: 1.04;
}
.h-md { font-family: var(--font-display); font-weight: 500; font-size: clamp(26px, 3.2vw, 40px); line-height: 1.15; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11.5px; letter-spacing: .4em; text-transform: uppercase; color: var(--brass);
  margin-bottom: 24px; font-weight: 400;
}
.eyebrow::before { content: "—"; color: var(--brass); }
.lede { font-size: clamp(17px, 1.5vw, 21px); color: var(--ink-dim); max-width: 58ch; font-weight: 300; }
.brass { color: var(--brass); }
em.it { font-family: var(--font-display); font-style: italic; font-size: 1.06em; color: var(--brass-bright); }
.sig { font-family: var(--font-display); font-style: italic; font-size: 26px; color: var(--brass); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-body); font-size: 13.5px; letter-spacing: .12em;
  text-transform: uppercase; text-decoration: none; cursor: pointer;
  padding: 17px 32px; border-radius: 99px; border: 1px solid var(--brass);
  background: var(--brass); color: var(--bg); font-weight: 500;
  transition: background .3s, color .3s; will-change: transform;
}
.btn:hover { background: transparent; color: var(--brass); }
.btn.ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn.ghost:hover { border-color: var(--brass); color: var(--brass); }
.btn .arr { transition: transform .3s ease; }
.btn:hover .arr { transform: translateX(5px); }

/* ---------- layout ---------- */
.section { position: relative; padding: clamp(90px, 12vw, 180px) clamp(20px, 6vw, 96px); }
.section.tight { padding-top: clamp(60px, 8vw, 110px); padding-bottom: clamp(60px, 8vw, 110px); }
.wrap { max-width: 1280px; margin: 0 auto; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 110px); align-items: center; }
@media (max-width: 880px) { .grid-2 { grid-template-columns: 1fr; } }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  padding: 130px clamp(20px, 6vw, 96px) 70px; overflow: hidden;
}
#hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; z-index: 0; }
.hero-fallback {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(55% 75% at 72% 45%, rgba(201,164,92,.13), transparent 70%),
    radial-gradient(45% 55% at 25% 85%, rgba(177,92,63,.08), transparent 70%);
}
.hero-inner { position: relative; z-index: 3; max-width: 1280px; margin: 0 auto; width: 100%; }
.hero-hello {
  font-size: 13px; letter-spacing: .35em; text-transform: uppercase;
  color: var(--ink-dim); margin-bottom: 28px;
}
.hero-hello .dot { color: var(--brass); }
.hero h1 .line { display: block; overflow: hidden; }
.hero-sub { margin-top: 32px; max-width: 48ch; color: var(--ink-dim); font-size: clamp(16px, 1.4vw, 19px); }
.hero-ctas { display: flex; gap: 16px; margin-top: 44px; flex-wrap: wrap; }
.hero-meta {
  position: absolute; bottom: 34px; left: clamp(20px, 6vw, 96px); right: clamp(20px, 6vw, 96px);
  display: flex; justify-content: space-between; align-items: center; z-index: 3;
  font-size: 11.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-faint);
}
.scroll-cue { display: inline-flex; align-items: center; gap: 10px; }
.scroll-cue .bar { width: 1px; height: 38px; background: var(--ink-faint); position: relative; overflow: hidden; }
.scroll-cue .bar::after {
  content: ""; position: absolute; inset: 0; background: var(--brass);
  animation: cue 1.8s cubic-bezier(.65,.05,0,1) infinite;
}
@keyframes cue { 0% { transform: translateY(-100%);} 60% { transform: translateY(0);} 100% { transform: translateY(100%);} }

/* ---------- symptom triage ---------- */
.triage { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-2); }
.triage-inner { max-width: 1280px; margin: 0 auto; padding: clamp(50px, 6vw, 80px) clamp(20px, 6vw, 96px); }
.triage h2 { font-family: var(--font-display); font-weight: 500; font-size: clamp(26px, 3.4vw, 44px); margin-bottom: 30px; }
.symptom-row { display: flex; flex-wrap: wrap; gap: 12px; }
.symptom {
  border: 1px solid var(--line); border-radius: 99px; padding: 13px 24px;
  background: transparent; color: var(--ink-dim); cursor: pointer; font: inherit;
  font-size: 15px; transition: border-color .25s, color .25s, background .25s, transform .15s;
}
.symptom:hover { border-color: var(--brass); color: var(--brass-bright); transform: translateY(-2px); }
.symptom.sel { background: var(--brass); color: var(--bg); border-color: var(--brass); }
.triage-note { margin-top: 22px; font-size: 14px; color: var(--ink-dim); } /* was --ink-faint: WCAG AA contrast */

/* ---------- horizontal bench story ---------- */
.bench { position: relative; overflow: hidden; }
.bench-pin { display: flex; align-items: center; height: 100svh; }
.bench-track { display: flex; gap: clamp(24px, 4vw, 60px); padding: 0 clamp(20px, 6vw, 96px); will-change: transform; }
.bench-card {
  flex: 0 0 auto; width: min(560px, 82vw);
  border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(165deg, var(--bg-2), var(--bg));
  padding: clamp(34px, 4vw, 56px);
  display: flex; flex-direction: column; gap: 18px; min-height: 380px;
}
.bench-card .step { font-size: 12px; letter-spacing: .35em; color: var(--brass); text-transform: uppercase; }
.bench-card h3 { font-family: var(--font-display); font-weight: 500; font-size: clamp(28px, 3vw, 42px); line-height: 1.1; }
.bench-card p { color: var(--ink-dim); font-size: 16px; max-width: 46ch; }
.bench-card .big-num {
  margin-top: auto; font-family: var(--font-display); font-size: clamp(56px, 6vw, 90px);
  color: transparent; -webkit-text-stroke: 1px var(--line); line-height: 1;
}
.bench-card.accent { border-color: rgba(201,164,92,.45); background: linear-gradient(165deg, rgba(201,164,92,.1), var(--bg-2) 60%); }
@media (max-width: 880px), (prefers-reduced-motion: reduce) {
  .bench-pin { height: auto; display: block; }
  .bench-track { flex-direction: column; padding: 0 clamp(20px, 6vw, 96px); }
  .bench-card { width: 100%; min-height: 0; }
}

/* ---------- split band (commercial / remote) ---------- */
.split-band { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 880px) { .split-band { grid-template-columns: 1fr; } }
.band-card {
  position: relative; border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(36px, 4.5vw, 60px); text-decoration: none; overflow: hidden;
  background: var(--bg-2); display: flex; flex-direction: column; gap: 16px; min-height: 360px;
  transition: border-color .35s, transform .35s;
}
.band-card::before {
  content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity .35s;
  background: radial-gradient(480px 260px at var(--mx, 50%) var(--my, 0%), rgba(201,164,92,.14), transparent 65%);
}
.band-card:hover { border-color: rgba(201,164,92,.5); transform: translateY(-5px); }
.band-card:hover::before { opacity: 1; }
.band-card .k { font-size: 11.5px; letter-spacing: .35em; text-transform: uppercase; color: var(--brass); }
.band-card h3 { font-family: var(--font-display); font-weight: 500; font-size: clamp(28px, 3vw, 44px); line-height: 1.08; }
.band-card p { color: var(--ink-dim); flex: 1; max-width: 48ch; }
.band-card .go { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--brass); }

/* ---------- quote ---------- */
.bigquote blockquote {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(24px, 3.4vw, 44px); line-height: 1.35; max-width: 28ch;
}
.bigquote blockquote::before { content: "“"; color: var(--brass); }
.bigquote blockquote::after { content: "”"; color: var(--brass); }
.bigquote cite { display: block; margin-top: 28px; font-style: normal; color: var(--ink-dim); font-size: 13px; letter-spacing: .15em; text-transform: uppercase; }
.bigquote cite b { color: var(--brass); }

/* ---------- forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }
.field label { display: block; font-size: 11.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-dim); margin-bottom: 8px; } /* was --ink-faint: form labels must meet contrast */
.field input, .field select, .field textarea {
  width: 100%; background: var(--bg-3); border: 1px solid transparent; border-bottom: 1px solid var(--line);
  border-radius: 10px 10px 0 0; color: var(--ink); font: inherit; padding: 15px 17px;
  outline: none; transition: border-color .3s, background .3s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-bottom-color: var(--brass); background: #212d25; }
.field textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: 13px; color: var(--ink-dim); margin-top: 14px; } /* was --ink-faint: WCAG AA contrast */

.cta-band {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: radial-gradient(70% 120% at 50% 130%, rgba(201,164,92,.15), transparent 70%), var(--bg-2);
  text-align: center;
}

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding: 70px clamp(20px, 6vw, 96px) 40px; background: var(--bg-2); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; max-width: 1280px; margin: 0 auto; }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h5 { font-size: 11.5px; letter-spacing: .32em; text-transform: uppercase; color: var(--brass); margin-bottom: 18px; font-weight: 400; }
.site-footer a { color: var(--ink-dim); text-decoration: none; transition: color .25s; }
.site-footer a:hover { color: var(--brass); }
.site-footer li { list-style: none; margin-bottom: 10px; font-size: 15px; }
.site-footer p { color: var(--ink-dim); font-size: 15px; }
.footer-bottom {
  max-width: 1280px; margin: 56px auto 0; padding-top: 24px;
  border-top: 1px solid rgba(201,164,92,.08);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 13px; color: var(--ink-faint);
}

/* ---------- interior page hero ---------- */
.page-hero { padding: 200px clamp(20px, 6vw, 96px) 100px; position: relative; overflow: hidden; }
.page-hero .bg-word {
  position: absolute; right: -2%; bottom: -8%; z-index: 0;
  font-family: var(--font-display); font-weight: 600; font-style: italic;
  font-size: clamp(120px, 24vw, 360px); line-height: 1; color: transparent;
  -webkit-text-stroke: 1px rgba(201,164,92,.12); pointer-events: none; white-space: nowrap;
}
.page-hero .wrap { position: relative; z-index: 1; }

/* ---------- prose blocks (first-person letter style) ---------- */
.letter { max-width: 760px; }
.letter p { margin-bottom: 1.4em; color: var(--ink-dim); font-size: clamp(17px, 1.5vw, 20px); }
.letter p.lead-line { font-family: var(--font-display); font-size: clamp(24px, 2.6vw, 34px); line-height: 1.35; color: var(--ink); }
.letter .photo-slot {
  border: 1px dashed var(--line); border-radius: var(--radius); padding: 40px;
  text-align: center; color: var(--ink-faint); font-size: 13.5px; letter-spacing: .1em;
  text-transform: uppercase; margin: 2em 0;
}

/* ---------- included rows / pillars ---------- */
.inc-row {
  display: grid; grid-template-columns: 32px 1fr; gap: 18px; align-items: start;
  padding: 24px 6px; border-bottom: 1px solid rgba(201,164,92,.12);
}
.inc-row .tick { color: var(--brass); font-size: 20px; line-height: 1.5; }
.inc-row h5 { font-size: 17px; font-weight: 500; margin-bottom: 4px; }
.inc-row p { color: var(--ink-dim); font-size: 15px; }

.pillar-feature {
  border: 1px solid rgba(201,164,92,.4); border-radius: var(--radius);
  padding: clamp(34px, 5vw, 56px);
  background: linear-gradient(150deg, rgba(201,164,92,.1), var(--bg-2) 55%);
}
.pillar-feature h4 { font-family: var(--font-display); font-size: clamp(24px, 2.8vw, 34px); font-weight: 500; margin-bottom: 16px; }
.pillar-feature p { color: var(--ink-dim); max-width: 75ch; }

.brand-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 50px; }
@media (max-width: 760px) { .brand-row { grid-template-columns: 1fr; } }
.brand-tile { border: 1px solid var(--line); border-radius: var(--radius); padding: 42px 26px; text-align: center; background: var(--bg-2); }
.brand-tile .nm { font-family: var(--font-display); font-size: 26px; font-weight: 500; }
.brand-tile .why { margin-top: 10px; color: var(--ink-dim); font-size: 14.5px; }

.who-list { margin-top: 40px; }
.who-list li {
  list-style: none; padding: 18px 0 18px 38px; position: relative;
  border-bottom: 1px solid rgba(201,164,92,.1); color: var(--ink-dim); font-size: 17px;
}
.who-list li::before { content: "→"; position: absolute; left: 0; color: var(--brass); }

.consult-box {
  margin-top: 70px; border: 1px solid rgba(201,164,92,.4); border-radius: var(--radius);
  padding: clamp(36px, 5vw, 64px);
  background: radial-gradient(80% 140% at 50% 120%, rgba(201,164,92,.14), var(--bg-2) 70%);
}
.consult-box .price { font-family: var(--font-display); font-size: clamp(60px, 9vw, 110px); color: var(--brass); line-height: 1; }
.consult-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 70px); align-items: start; }
@media (max-width: 880px) { .consult-grid { grid-template-columns: 1fr; } }

/* ---------- wizard (remote diagnostics) ---------- */
.wizard {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(170deg, var(--bg-2), var(--bg)); overflow: hidden;
}
.wizard-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 28px; border-bottom: 1px solid var(--line);
  font-size: 11.5px; letter-spacing: .26em; text-transform: uppercase; color: var(--ink-faint);
}
.wizard-progress { display: flex; gap: 6px; }
.wizard-progress i { width: 26px; height: 3px; background: var(--bg-3); border-radius: 2px; transition: background .3s; }
.wizard-progress i.on { background: var(--brass); }
.wizard-body { padding: clamp(26px, 4vw, 48px); min-height: 380px; }
.wstep h3 { font-family: var(--font-display); font-size: clamp(24px, 2.6vw, 34px); font-weight: 500; margin-bottom: 28px; }
.chip-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 12px; }
.chip {
  border: 1px solid var(--line); border-radius: 12px; padding: 18px 16px;
  background: var(--bg-3); color: var(--ink); cursor: pointer; font: inherit; font-size: 15px;
  text-align: left; transition: border-color .25s, background .25s, transform .15s;
}
.chip:hover { border-color: var(--brass); transform: translateY(-2px); }
.chip.sel { border-color: var(--brass); background: rgba(201,164,92,.13); color: var(--brass-bright); }
.wizard-foot { display: flex; justify-content: space-between; padding: 0 clamp(26px,4vw,48px) clamp(26px,4vw,48px); gap: 12px; }
.wizard-foot .btn[disabled] { opacity: .35; pointer-events: none; }
.wizard-summary {
  border: 1px dashed var(--line); border-radius: 12px; padding: 16px 20px; margin-bottom: 24px;
  color: var(--ink-dim); font-size: 14.5px;
}
.wizard-summary b { color: var(--brass); }
.wizard-done { text-align: center; padding: 40px 0; }
.wizard-done .mark { font-size: 54px; color: var(--brass); }

[data-reveal] { opacity: 1; }

/* skip-to-content link (accessibility) — visible only on keyboard focus */
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 1000; background: var(--brass, #c9a45c); color: #0d1310; padding: 10px 16px; border-radius: 0 0 6px 0; font: 500 14px/1 system-ui, sans-serif; text-decoration: none; }
.skip-link:focus { left: 0; }

/* keyboard focus visibility */
a:focus-visible, button:focus-visible, .btn:focus-visible, .band-card:focus-visible, .symptom:focus-visible, [tabindex]:focus-visible { outline: 2px solid var(--brass-bright); outline-offset: 3px; border-radius: 2px; }

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

/* ==========================================================
   v3 additions — machine spec cards + comparison table
   ========================================================== */

/* intro line under page hero */
.lineup-intro { max-width: 70ch; margin-top: 26px; }

/* tier grouping label */
.tier-head {
  display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap;
  margin: clamp(44px, 6vw, 72px) 0 26px;
  padding-bottom: 14px; border-bottom: 1px solid var(--line);
}
.tier-head h3 { font-family: var(--font-display); font-weight: 500; font-size: clamp(24px, 3vw, 36px); }
.tier-head .tier-note { color: var(--ink-faint); font-size: 14px; }

/* spec card grid */
.spec-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 20px; }
.spec-card {
  position: relative; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--bg-2); padding: clamp(26px, 3vw, 34px);
  display: flex; flex-direction: column; gap: 16px;
  transition: border-color .35s, transform .35s;
}
.spec-card:hover { border-color: rgba(201,164,92,.5); transform: translateY(-4px); }
.spec-card .badge {
  align-self: flex-start; font-size: 10.5px; letter-spacing: .26em; text-transform: uppercase;
  color: var(--brass); border: 1px solid var(--line); border-radius: 99px; padding: 5px 13px;
}
.spec-card .nm { font-family: var(--font-display); font-weight: 500; font-size: 27px; line-height: 1.1; }
.spec-card .brand-line { font-size: 11.5px; letter-spacing: .26em; text-transform: uppercase; color: var(--ink-faint); margin-top: -8px; }
.spec-card .specs { list-style: none; display: flex; flex-direction: column; gap: 9px; margin: 4px 0; }
.spec-card .specs li {
  display: grid; grid-template-columns: 88px 1fr; gap: 12px;
  font-size: 14px; color: var(--ink-dim); align-items: baseline;
}
.spec-card .specs .lbl { color: var(--ink-faint); font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; }
.spec-card .best { font-size: 14px; color: var(--ink); border-top: 1px solid rgba(201,164,92,.12); padding-top: 14px; }
.spec-card .best b { color: var(--brass); font-weight: 500; }
.spec-card .price-row { margin-top: auto; display: flex; align-items: baseline; gap: 8px; }
.spec-card .price-row .from { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-faint); }
.spec-card .price-row .amt { font-family: var(--font-display); font-size: 30px; color: var(--brass); }

/* draft price disclaimer */
.price-note {
  margin-top: 28px; font-size: 13px; color: var(--ink-faint);
  border-left: 2px solid var(--line); padding-left: 16px; max-width: 64ch;
}

/* comparison table */
.compare-wrap { margin-top: 30px; overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid var(--line); border-radius: var(--radius); }
table.compare { width: 100%; border-collapse: collapse; min-width: 720px; font-size: 14px; }
table.compare th, table.compare td { text-align: left; padding: 15px 18px; border-bottom: 1px solid rgba(201,164,92,.12); }
table.compare thead th {
  font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--brass);
  font-weight: 400; background: var(--bg-2); position: sticky; top: 0;
}
table.compare tbody tr:hover { background: rgba(201,164,92,.05); }
table.compare td:first-child { color: var(--ink); font-weight: 500; }
table.compare .amt { color: var(--brass); white-space: nowrap; }
table.compare caption { caption-side: bottom; text-align: left; padding: 12px 4px; color: var(--ink-faint); font-size: 12.5px; }
