/* ============================================================
   AKS TOOLS — The Wedding Job Calculator
   Cool-grey editorial · Cormorant Garamond + DM Sans
   Self-contained: shared foundation + calculator components.
   ============================================================ */

:root {
  /* cool-grey palette (no warmth) */
  --paper:      #FFFFFF;
  --bg:         #F6F7F8;
  --bone:       #ECEEF0;
  --stone:      #E1E4E6;
  --stone-deep: #CFD4D7;
  --tint:       #F1EDE6;
  --rule:       #DCE0E2;
  --rule-deep:  #C5CACE;
  --ink:        #1D2022;
  --ink-2:      #2A2E30;
  --soft:       #51565A;
  --muted:      #888E92;

  /* margin zones */
  --zone-loss:   #B4523F;
  --zone-danger: #BE6A4A;
  --zone-thin:   #C49A5B;
  --zone-good:   #7CA982;
  --zone-great:  #5F9E6E;

  --font-serif: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --font-sans:  "DM Sans", "Helvetica Neue", Arial, sans-serif;

  --ls-eyebrow: .32em;
  --ls-btn:     .22em;

  --gutter:     clamp(20px, 4vw, 56px);
  --section-y:  clamp(80px, 11vw, 168px);
  --container:  1200px;
  --container-narrow: 960px;
  --container-text: 660px;

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

*,*::before,*::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 16px; line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; padding: 0; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
h1,h2,h3,h4,p { margin: 0; }
em, i { font-style: italic; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 var(--gutter); }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 500;
  letter-spacing: var(--ls-eyebrow); text-transform: uppercase;
  color: var(--soft);
  display: inline-block;
}
.eyebrow-rule {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 500;
  letter-spacing: var(--ls-eyebrow); text-transform: uppercase;
  color: var(--soft);
}
.eyebrow-rule::before, .eyebrow-rule::after {
  content: ''; width: 36px; height: 1px; background: var(--rule-deep);
}

.display {
  font-family: var(--font-serif);
  font-weight: 400; line-height: 1.05; letter-spacing: -.005em;
  color: var(--ink);
  font-size: clamp(40px, 4.6vw, 72px);
}
.display em { font-style: italic; }
.display.lg { font-size: clamp(48px, 6vw, 96px); }

.lead {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.5; color: var(--soft); font-weight: 400;
}
.body { font-size: 17px; line-height: 1.8; color: var(--soft); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 500;
  letter-spacing: var(--ls-btn); text-transform: uppercase;
  padding: 18px 34px;
  border: 1px solid var(--ink);
  background: var(--paper); color: var(--ink);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.btn:hover { background: var(--ink); color: var(--paper); }
.btn--solid { background: var(--ink); color: var(--paper); }
.btn--solid:hover { background: var(--soft); border-color: var(--soft); }

.section { padding: var(--section-y) 0; }
.section--paper { background: var(--paper); }
.section-head {
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 22px;
  margin-bottom: clamp(48px, 6vw, 86px);
}
.section-head .display { max-width: 20ch; }
.section-head .body { max-width: 52ch; }

/* ============================================================
   NAV  (matches preset page + Tools dropdown)
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 80;
  padding: 16px 0;
  background: rgba(255,255,255,0);
  border-bottom: 1px solid transparent;
  transition: background var(--dur) var(--ease), backdrop-filter var(--dur) var(--ease), padding var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.nav.scrolled {
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--rule);
  padding: 9px 0;
}
.nav-inner {
  max-width: 1440px; margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 32px;
}
.nav-brand {
  justify-self: center;
  display: inline-flex; align-items: center; justify-content: center;
  line-height: 1; position: relative;
}
.nav-brand-img {
  height: 54px; width: auto; display: block;
  transition: height var(--dur) var(--ease);
}
.nav.scrolled .nav-brand-img { height: 40px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links-left { justify-self: start; }
.nav-links-right { justify-self: end; gap: 24px; }
.nav-link {
  font-family: var(--font-sans);
  font-size: 10.5px; font-weight: 500;
  letter-spacing: var(--ls-eyebrow); text-transform: uppercase;
  color: var(--ink);
  position: relative; padding: 6px 0;
  transition: opacity var(--dur) var(--ease);
  opacity: .82;
}
.nav-link::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: currentColor;
  transition: width var(--dur) var(--ease);
}
.nav-link:hover { opacity: 1; }
.nav-link:hover::after { width: 100%; }
.nav-icon {
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink); opacity: .75;
  transition: opacity var(--dur) var(--ease);
}
.nav-icon:hover { opacity: 1; }
.nav-icon svg { width: 16px; height: 16px; }
@media (max-width: 980px) {
  .nav-links { display: none; }
}

/* ---------- Tools dropdown ---------- */
.nav-drop { position: relative; }
.nav-drop-menu {
  position: absolute; top: 100%; left: 50%;
  transform: translate(-50%, 10px);
  min-width: 224px;
  background: var(--paper);
  border: 1px solid var(--rule);
  box-shadow: 0 18px 44px -18px rgba(29,32,34,.22);
  padding: 10px 0;
  opacity: 0; visibility: hidden;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility 0s linear var(--dur);
  z-index: 90;
}
.nav-drop:hover .nav-drop-menu,
.nav-drop:focus-within .nav-drop-menu {
  opacity: 1; visibility: visible;
  transform: translate(-50%, 4px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility 0s;
}
.nav-drop-menu a, .nav-drop-menu .nav-drop-soon {
  display: flex; align-items: baseline; justify-content: space-between; gap: 14px;
  padding: 11px 22px;
  font-family: var(--font-sans);
  font-size: 10.5px; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--ink); white-space: nowrap;
  transition: background var(--dur) var(--ease);
}
.nav-drop-menu a:hover { background: var(--bg); }
.nav-drop-soon { color: var(--muted); cursor: default; }
.nav-drop-soon em {
  font-family: var(--font-serif); font-style: italic;
  font-size: 12px; letter-spacing: .02em; text-transform: none;
  color: var(--muted);
}

/* ============================================================
   HERO
   ============================================================ */
.hero { background: var(--paper); padding: clamp(48px, 6vw, 88px) 0 0; }
.hero-head {
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 22px;
}
.hero-head .display { max-width: 16ch; }
.hero-head .lead { max-width: 44ch; }

/* ============================================================
   CALCULATOR LAYOUT
   ============================================================ */
.calc { background: var(--paper); padding: clamp(56px, 7vw, 104px) 0 var(--section-y); }
.calc-grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, 440px);
  gap: clamp(40px, 5vw, 88px);
  align-items: start;
}
@media (max-width: 960px) {
  .calc-grid { grid-template-columns: 1fr; }
}

/* ---------- form ---------- */
.calc-form { display: flex; flex-direction: column; gap: clamp(40px, 4.5vw, 64px); }
.fgroup { border-top: 1px solid var(--rule-deep); padding-top: 28px; }
.fgroup-head {
  display: flex; align-items: baseline; gap: 16px; margin-bottom: 8px;
}
.fgroup-no {
  font-family: var(--font-serif); font-style: italic;
  font-size: 22px; color: var(--muted); line-height: 1;
  min-width: 30px;
}
.fgroup-title {
  font-family: var(--font-serif); font-weight: 400;
  font-size: clamp(22px, 2vw, 28px); color: var(--ink); line-height: 1.2;
}
.fgroup-sub { font-size: 14px; color: var(--muted); margin: 2px 0 22px 46px; max-width: 52ch; }
.fgroup-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 28px; margin-left: 46px; }
.fgroup-fields.single { grid-template-columns: 1fr; }
@media (max-width: 640px) {
  .fgroup-fields { grid-template-columns: 1fr; margin-left: 0; }
  .fgroup-sub { margin-left: 0; }
}

.field { display: flex; flex-direction: column; gap: 8px; }
.field-label {
  font-family: var(--font-sans);
  font-size: 10px; font-weight: 500;
  letter-spacing: .24em; text-transform: uppercase;
  color: var(--soft);
  display: flex; justify-content: space-between; align-items: baseline; gap: 10px;
}
.field-hint { font-size: 12.5px; color: var(--muted); letter-spacing: .01em; line-height: 1.5; }
.money { position: relative; }
.money::before {
  content: '$';
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  font-family: var(--font-serif); font-size: 18px; color: var(--muted);
  pointer-events: none;
}
.money input {
  width: 100%;
  font-family: var(--font-serif); font-size: 22px; color: var(--ink);
  background: transparent;
  border: 0; border-bottom: 1px solid var(--rule-deep);
  padding: 8px 0 10px 20px;
  outline: none; border-radius: 0;
  transition: border-color var(--dur) var(--ease);
  -moz-appearance: textfield; appearance: textfield;
}
.money input::-webkit-outer-spin-button, .money input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.money input:focus { border-bottom-color: var(--ink); }
.money input::placeholder { color: var(--stone-deep); }

.price-field .money input { font-size: clamp(30px, 3vw, 40px); padding-left: 26px; }
.price-field .money::before { font-size: 26px; }

/* toggle pill */
.toggle {
  display: inline-flex; border: 1px solid var(--rule-deep);
}
.toggle button {
  font-family: var(--font-sans);
  font-size: 10px; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  padding: 12px 22px;
  color: var(--soft);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.toggle button.on { background: var(--ink); color: var(--paper); }

/* select */
.selectwrap { position: relative; }
.selectwrap select {
  width: 100%;
  font-family: var(--font-serif); font-size: 19px; color: var(--ink);
  background: transparent;
  border: 0; border-bottom: 1px solid var(--rule-deep);
  padding: 10px 26px 12px 0;
  outline: none; border-radius: 0;
  appearance: none; -webkit-appearance: none;
  cursor: pointer;
  transition: border-color var(--dur) var(--ease);
}
.selectwrap select:focus { border-bottom-color: var(--ink); }
.selectwrap::after {
  content: ''; position: absolute; right: 4px; top: 50%;
  width: 8px; height: 8px;
  border-right: 1px solid var(--soft); border-bottom: 1px solid var(--soft);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}

/* ============================================================
   RESULTS PANEL (dark, zone-aware)
   ============================================================ */
.verdict {
  position: sticky; top: 96px;
  background: var(--ink);
  color: var(--paper);
  padding: clamp(36px, 3.6vw, 52px) clamp(28px, 3vw, 44px);
  display: flex; flex-direction: column; gap: 26px;
  --zone: var(--zone-good);
  border-top: 3px solid var(--zone);
  transition: border-color 600ms var(--ease);
}
@media (max-width: 960px) { .verdict { position: static; } }
.verdict-eyebrow {
  font-family: var(--font-sans);
  font-size: 10.5px; font-weight: 500;
  letter-spacing: var(--ls-eyebrow); text-transform: uppercase;
  color: rgba(255,255,255,.55);
  text-align: center;
}

/* gauge */
.gauge { position: relative; width: min(260px, 78%); margin: 0 auto; }
.gauge svg { width: 100%; height: auto; display: block; overflow: visible; }
.gauge-track { stroke: rgba(255,255,255,.14); }
.gauge-fill {
  stroke: var(--zone);
  transition: stroke-dashoffset 700ms var(--ease), stroke 600ms var(--ease);
}
.gauge-center {
  position: absolute; left: 0; right: 0; bottom: 4px;
  text-align: center;
}
.gauge-num {
  font-family: var(--font-serif);
  font-size: clamp(52px, 5vw, 68px); line-height: 1;
  color: var(--paper);
  font-variant-numeric: tabular-nums;
}
.gauge-num small { font-size: .45em; color: rgba(255,255,255,.6); margin-left: 2px; }
.gauge-label {
  margin-top: 6px;
  font-family: var(--font-sans);
  font-size: 9.5px; font-weight: 500;
  letter-spacing: .28em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
}

/* zone status */
.zone-status { text-align: center; display: flex; flex-direction: column; gap: 8px; }
.zone-name {
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 700;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--zone);
  transition: color 600ms var(--ease);
}
.zone-copy {
  font-family: var(--font-serif); font-style: italic;
  font-size: 16.5px; line-height: 1.55;
  color: rgba(255,255,255,.78);
  min-height: 3.1em;
}

/* money rows */
.vrows { border-top: 1px solid rgba(255,255,255,.16); }
.vrow {
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.16);
}
.vrow-label {
  font-family: var(--font-sans);
  font-size: 10px; font-weight: 500;
  letter-spacing: .24em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.vrow-val {
  font-family: var(--font-serif); font-size: 21px; color: var(--paper);
  font-variant-numeric: tabular-nums;
}
.vrow--profit .vrow-val { color: var(--zone); font-size: 24px; transition: color 600ms var(--ease); }

/* what-if slider */
.whatif { display: flex; flex-direction: column; gap: 14px; }
.whatif-label {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  font-family: var(--font-sans);
  font-size: 10px; font-weight: 500;
  letter-spacing: .24em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.whatif-price { font-family: var(--font-serif); font-size: 22px; color: var(--paper); letter-spacing: 0; text-transform: none; }
.whatif input[type="range"] {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 2px;
  background: linear-gradient(to right, var(--zone) 0%, var(--zone) var(--slider-pct, 30%), rgba(255,255,255,.2) var(--slider-pct, 30%));
  outline: none; cursor: ew-resize;
  transition: none;
}
.whatif input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--paper); border: 1px solid var(--ink);
  box-shadow: 0 2px 12px rgba(0,0,0,.4);
  cursor: ew-resize;
}
.whatif input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--paper); border: 1px solid var(--ink);
  box-shadow: 0 2px 12px rgba(0,0,0,.4);
  cursor: ew-resize;
}
.whatif-hint { font-size: 12px; color: rgba(255,255,255,.45); text-align: center; letter-spacing: .04em; }

/* target solver */
.solver {
  border: 1px solid rgba(255,255,255,.18);
  padding: 20px 22px;
  display: flex; flex-direction: column; gap: 6px;
  text-align: center;
}
.solver-line {
  font-family: var(--font-serif); font-style: italic;
  font-size: 16px; color: rgba(255,255,255,.75);
}
.solver-line .selectwrap { display: inline-block; width: auto; margin: 0 2px; }
.solver-line select {
  font-family: var(--font-serif); font-style: italic; font-size: 16px;
  color: var(--paper); background: transparent;
  border: 0; border-bottom: 1px solid rgba(255,255,255,.4);
  padding: 0 18px 2px 2px;
  appearance: none; -webkit-appearance: none; outline: none; cursor: pointer;
}
.solver-line .selectwrap::after { border-color: rgba(255,255,255,.6); right: 2px; }
.solver-line select option { color: var(--ink); font-style: normal; }
.solver-answer {
  font-family: var(--font-serif); font-size: clamp(26px, 2.4vw, 32px); color: var(--paper);
  font-variant-numeric: tabular-nums;
}
.verdict-fine {
  text-align: center;
  font-size: 11px; letter-spacing: .06em;
  color: rgba(255,255,255,.38);
}

/* ============================================================
   ZONE EXPLAINER STRIP
   ============================================================ */
.zones { background: var(--tint); }
.zones-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--rule-deep); border: 1px solid var(--rule-deep);
}
.zone-cell { background: var(--paper); padding: clamp(28px, 3vw, 44px) clamp(24px, 2.4vw, 36px); }
.zone-cell-range {
  font-family: var(--font-serif); font-size: clamp(24px, 2.2vw, 30px); color: var(--ink);
  display: flex; align-items: center; gap: 12px;
}
.zone-dot { width: 10px; height: 10px; border-radius: 50%; flex: 0 0 10px; }
.zone-cell-name {
  margin-top: 6px;
  font-family: var(--font-sans); font-size: 10px; font-weight: 700;
  letter-spacing: .26em; text-transform: uppercase; color: var(--soft);
}
.zone-cell p { margin-top: 14px; font-size: 14px; line-height: 1.7; color: var(--soft); }
@media (max-width: 920px) { .zones-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .zones-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FOOTER  (matches site)
   ============================================================ */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(72px, 8vw, 120px) 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(4, 1fr);
  gap: clamp(28px, 4vw, 64px);
  padding-bottom: clamp(48px, 6vw, 80px);
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.footer-brand-img { width: 240px; max-width: 100%; height: auto; display: block; }
.footer-tag {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255,255,255,.7);
  margin-top: 24px;
  max-width: 28ch;
}
.footer-col-title {
  font-family: var(--font-sans);
  font-size: 10.5px; font-weight: 500;
  letter-spacing: var(--ls-eyebrow); text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 22px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col li a {
  font-family: var(--font-sans);
  font-size: 14px;
  color: rgba(255,255,255,.72);
  transition: color var(--dur) var(--ease);
}
.footer-col li a:hover { color: var(--paper); }
.footer-bottom {
  margin-top: 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  font-family: var(--font-sans);
  font-size: 10.5px; font-weight: 500;
  letter-spacing: var(--ls-eyebrow); text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.footer-studio-link {
  color: rgba(255,255,255,.55);
  border-bottom: 1px solid rgba(255,255,255,.25);
  padding-bottom: 3px;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.footer-studio-link:hover { color: var(--paper); border-color: var(--paper); }
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; margin-bottom: 16px; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

/* ---------- fade-in (fail-visible) ---------- */
.fade { opacity: 1; transform: none; }
html.js .fade { opacity: 0; transform: translateY(14px); }
html.js .fade.anim { transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
html.js .fade.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.js .fade { opacity: 1; transform: none; transition: none; }
  .gauge-fill { transition: stroke 600ms var(--ease); }
}

.nav-drop > .nav-link { display: inline-block; }

/* ============================================================
   ALBUM ROWS
   ============================================================ */
.album-rows { display: flex; flex-direction: column; gap: 16px; margin-left: 46px; }
.album-row {
  display: grid; grid-template-columns: minmax(0, 1fr) 150px 30px;
  gap: 20px; align-items: end;
}
.album-remove {
  font-family: var(--font-serif); font-size: 22px; line-height: 1;
  color: var(--muted); padding: 6px 4px;
  transition: color var(--dur) var(--ease);
}
.album-remove:hover { color: var(--ink); }
.album-add {
  margin: 22px 0 0 46px;
  font-family: var(--font-sans);
  font-size: 10.5px; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--soft);
  border-bottom: 1px solid var(--rule-deep);
  padding-bottom: 5px;
  align-self: flex-start;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.album-add:hover { color: var(--ink); border-color: var(--ink); }
@media (max-width: 640px) {
  .album-rows { margin-left: 0; }
  .album-add { margin-left: 0; }
  .album-row { grid-template-columns: minmax(0, 1fr) 110px 26px; gap: 14px; }
}

/* ============================================================
   ANNUAL PROJECTION
   ============================================================ */
.annual {
  text-align: center;
  font-family: var(--font-serif); font-style: italic;
  font-size: 17.5px; line-height: 1.6;
  color: rgba(255,255,255,.85);
}
.annual em { color: rgba(255,255,255,.62); }
.annual-count input {
  width: 2.4em;
  font-family: var(--font-serif); font-style: italic; font-size: 17.5px;
  text-align: center;
  color: #FFFFFF; background: transparent;
  border: 0; border-bottom: 1px solid rgba(255,255,255,.4);
  outline: none; border-radius: 0; padding: 0 2px 1px;
  -moz-appearance: textfield; appearance: textfield;
}
.annual-count input::-webkit-outer-spin-button, .annual-count input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.annual-total { font-style: normal; font-size: 19px; color: var(--zone); transition: color 600ms var(--ease); }

/* ============================================================
   VERDICT VISIBILITY BOOST
   ============================================================ */
.verdict { border-top-width: 4px; }
.verdict-eyebrow { color: rgba(255,255,255,.72); }
.gauge-num { font-size: clamp(56px, 5.6vw, 78px); }
.gauge-num small { color: rgba(255,255,255,.7); }
.gauge-label { color: rgba(255,255,255,.7); }
.zone-name { font-size: 13px; }
.zone-copy { color: rgba(255,255,255,.92); font-size: 17.5px; }
.vrow-label { color: rgba(255,255,255,.7); font-size: 10.5px; }
.vrow-val { font-size: 23px; }
.vrow--profit .vrow-val { font-size: 26px; }
.whatif-label { color: rgba(255,255,255,.7); }
.whatif-hint { color: rgba(255,255,255,.58); }
.solver { border-color: rgba(255,255,255,.28); }
.solver-line { color: rgba(255,255,255,.88); }
.verdict-fine { color: rgba(255,255,255,.48); }

/* ---------- honest-math additions ---------- */
.money.no-sign::before { content: ''; }
.money.no-sign input { padding-left: 0; }
.vrow[hidden], .annual span[hidden] { display: none; }
.vrow--dim .vrow-val { color: rgba(255,255,255,.75); font-size: 19px; }

/* dropdown item tags (free / private) */
.nav-drop-menu a em {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 12px; letter-spacing: .02em; text-transform: none;
  color: var(--muted, #8A8A85);
}

/* ============================================================
   MOBILE MENU (hamburger + overlay)
   ============================================================ */
.nav-burger { display: none; }
@media (max-width: 980px) {
  .nav-burger {
    display: flex; flex-direction: column; gap: 6px;
    position: absolute; right: var(--gutter); top: 50%; transform: translateY(-50%);
    width: 26px; padding: 6px 0; cursor: pointer; z-index: 95;
  }
  .nav-burger span { display: block; height: 1.5px; width: 100%; background: currentColor; }
}
.mobile-menu {
  position: fixed; inset: 0; z-index: 300;
  background: var(--ink);
  display: none;
  align-items: center; justify-content: center;
  text-align: center;
}
html.menu-open .mobile-menu { display: flex; }
html.menu-open { overflow: hidden; }
.mobile-menu-close {
  position: absolute; top: 14px; right: 22px;
  font-family: var(--font-serif); font-size: 44px; line-height: 1;
  color: rgba(255,255,255,.7);
  background: none; border: 0; cursor: pointer; padding: 8px;
}
.mobile-menu-close:hover { color: #fff; }
.mobile-menu-links { display: flex; flex-direction: column; gap: clamp(14px, 3.2vh, 26px); }
.mobile-menu-links a {
  font-family: var(--font-serif);
  font-size: clamp(28px, 6.5vw, 40px); line-height: 1.2;
  color: #fff; text-decoration: none;
}
.mobile-menu-links a:hover { color: rgba(255,255,255,.75); }
.mobile-menu-links a em {
  font-style: italic; font-size: .45em; color: rgba(255,255,255,.5); margin-left: 10px;
}
