/* /pricing/ SYSTEM v3 LIGHT LUXURY
   Page-specific styles only. Tokens from site.css, no new hex values.
   The page LEADS with price: index card in the hero, then big-numeral ledger rows. */

/* ---- hero price index ---- */
.priceindex {
  background: var(--panel-2);
  max-width: 30rem;
  margin-left: auto;
}
.priceindex__head {
  font-family: var(--font-d);
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: 0.005em;
  color: var(--ink);
  margin-bottom: 1rem;
}
.priceindex__list { display: grid; }
.priceindex__list a {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.25rem;
  padding: 0.7rem 0.15rem;
  min-height: 44px;
  border-top: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.25s ease, background-color 0.25s ease;
}
.priceindex__list li:first-child a { border-top: 0; }
.priceindex__list a:hover { color: var(--brass-deep); background: oklch(95.8% 0.018 87 / 0.6); }
.priceindex__list a .tabular {
  font-family: var(--font-d);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--brass-deep);
  white-space: nowrap;
}
.priceindex__list em {
  font-style: normal;
  font-family: var(--font-b);
  font-weight: 600;
  font-size: 0.75rem;
  color: var(--ink-soft);
}
@media (max-width: 860px) {
  .priceindex { margin-left: 0; max-width: 100%; }
}

/* ---- price ledger rows: big brass tabular numerals ---- */
.pricerow {
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  border-top: 1px solid var(--line);
  padding-block: clamp(2.25rem, 4vw, 3.5rem);
  scroll-margin-top: 6rem;
}
.pricerow:last-of-type { border-bottom: 1px solid var(--line); }
.pricerow h2 { font-size: var(--fs-d3); margin-bottom: 0.75rem; }
.pricerow__info > p { color: var(--ink-soft); max-width: 56ch; }
.pricerow__info .checks {
  margin-top: 1.4rem;
  grid-template-columns: 1fr 1fr;
  column-gap: 2rem;
  max-width: 44rem;
}
.pricerow__info .checks li { font-size: 0.95rem; color: var(--ink-soft); }
.pricerow__info .tlink { margin-top: 1.5rem; }

.pricerow__price { text-align: right; padding-left: 1rem; }
.pricerow__num {
  font-family: var(--font-d);
  font-weight: 300;
  font-size: clamp(2.9rem, 5.5vw, 4.6rem);
  line-height: 1;
  color: var(--brass-deep);
  white-space: nowrap;
}
.pricerow__num--word { font-size: clamp(2.6rem, 5vw, 4.2rem); text-transform: uppercase; }
.pricerow__unit {
  margin-top: 0.45rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
/* quieter than a repeated pill: a small brass label, no border */
.pricerow__fin {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--brass-deep);
  opacity: 0.85;
}

/* featured PERL row: warm brass tint panel + dark veneer banner, lifted off the page */
.pricerow--feature {
  background: oklch(95.8% 0.018 87);
  border-top: 0;
  border-radius: var(--r-md);
  padding: clamp(1.4rem, 2.6vw, 2.2rem) clamp(1.5rem, 3vw, 3rem) clamp(2rem, 4vw, 3rem);
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-lift);
  row-gap: clamp(1.5rem, 3vw, 2.2rem);
  overflow: hidden;
}
.pricerow--feature h2 { color: var(--brass-deep); }
.pricerow--feature + .pricerow { border-top: 0; }

/* the dark veneer-macro banner across the top of the flagship card */
.pricerow__banner {
  grid-column: 1 / -1;
  position: relative;
  border-radius: var(--r-sm);
  overflow: hidden;
  aspect-ratio: 16 / 7;
  background: var(--cinema);
  box-shadow: var(--shadow-soft);
}
.pricerow__banner img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 46%; display: block; }
.pricerow__flag {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  font-family: var(--font-d);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--milk);
  background: oklch(18.5% 0.005 85 / 0.55);
  border: 1px solid oklch(73% 0.077 83 / 0.5);
  padding: 0.35rem 0.7rem;
  border-radius: 2px;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
@media (max-width: 760px) { .pricerow__banner { aspect-ratio: 16 / 9; } }

/* non-feature rows: gentle hover lift for life on the ledger */
.pricerow:not(.pricerow--feature) { transition: background-color 0.3s var(--ease); border-radius: var(--r-sm); }
.pricerow:not(.pricerow--feature):hover { background: oklch(96.4% 0.007 92 / 0.7); }

@media (max-width: 760px) {
  .pricerow { grid-template-columns: 1fr; gap: 1.5rem; }
  .pricerow__price {
    text-align: left;
    padding-left: 0;
    order: -1;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  .pricerow__fin { margin-top: 0; }
  .pricerow__info .checks { grid-template-columns: 1fr; }
}

/* ---- insurance stance side image keeps modest width ---- */
.stance-side { max-width: 30rem; justify-self: end; width: 100%; }
@media (max-width: 860px) { .stance-side { justify-self: start; } }

/* ---- cinema consultation figure ---- */
.consult-cta { margin-top: 2rem; }
.consult-figure { text-align: right; }
.consult-figure__num {
  font-family: var(--font-d);
  font-weight: 300;
  font-size: clamp(5rem, 11vw, 9.5rem);
  line-height: 0.95;
  color: var(--brass-light);
}
.consult-figure__note {
  margin-top: 0.75rem;
  margin-left: auto;
  font-weight: 600;
  color: var(--milk-soft);
  max-width: 18ch;
}
@media (max-width: 860px) {
  .consult-figure { text-align: left; order: -1; }
  .consult-figure__note { margin-left: 0; }
}

/* ---- stance (dark beat): portrait floats on charcoal ---- */
.stance-portrait { border: 1px solid oklch(73% 0.077 83 / 0.28); }

/* ---- consult: headline breathing room + a glow centered on the $100 numeral ---- */
#consultation h2 { margin-bottom: 1.85rem; }
.consult-figure__glow { position: relative; display: inline-block; isolation: isolate; }
.consult-figure__glow::before {
  content: "";
  position: absolute;
  inset: -38% -24%;
  z-index: -1;
  pointer-events: none;
  background: var(--glow-brass);
}

/* ---- quote: a contained, lifted testimonial card ---- */
.quote-strip { padding-block: var(--sect-sm); }
.quote--card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: clamp(1.8rem, 4vw, 3rem);
}
.quote--card .quote__stars { color: var(--brass); font-size: 1.05rem; letter-spacing: 0.15em; margin-bottom: 1rem; }
.quote--card .quote__text { font-size: clamp(1.15rem, 1rem + 0.7vw, 1.6rem); }
.quote--card .quote__attr { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 0.1rem; }
.quote--card .quote__name { font-family: var(--font-d); font-weight: 500; font-size: 1rem; color: var(--ink); letter-spacing: 0.005em; }
.quote--card .quote__src { font-size: 0.85rem; color: var(--ink-soft); }

/* ==========================================================
   THEME-DARK OVERRIDES (dark rollout 2026-07-10)
   ========================================================== */
/* light hover washes read as glare on dark */
body.theme-dark .priceindex__list a:hover { background: oklch(30% 0.002 85 / 0.5); }
body.theme-dark .pricerow:not(.pricerow--feature):hover { background: oklch(28% 0.002 85 / 0.5); }
/* flagship card carries .light-break (token re-scope); keep its lift and radius */
body.theme-dark .pricerow--feature.light-break { border-radius: var(--r-md); }
/* profile portrait: bias the cover crop toward the top so the forehead stays in frame */
.stance-portrait img { object-position: 50% 18%; }
/* row CTAs are real buttons now; keep the ledger breathing room */
.pricerow__info .btn { margin-top: 1.5rem; }
