:root {
  --paper: #f5f0e6;
  --paper-deep: #ebe1cf;
  --white: #fffdf8;
  --ink: #17303d;
  --ink-soft: #5b696d;
  --brick: #c85d43;
  --brick-dark: #9f3e2c;
  --mustard: #e0aa3e;
  --sage: #90a68f;
  --line: #d9cfbf;
  --green: #2e8c62;
  --shadow: 0 18px 44px rgba(23, 48, 61, .12);
  --radius: 18px;
}
* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.55; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
img { display: block; width: 100%; object-fit: cover; }
.wrap { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.top-note { padding: 8px 20px; color: var(--white); background: var(--ink); font-size: .8rem; text-align: center; }
.site-header { position: sticky; top: 0; z-index: 30; background: rgba(255,253,248,.96); border-bottom: 1px solid var(--line); backdrop-filter: blur(10px); }
.nav { min-height: 74px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 40px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 900; letter-spacing: .08em; }
.brand-mark { width: 34px; aspect-ratio: 1; display: grid; place-items: center; color: var(--white); background: var(--brick); border-radius: 50% 50% 50% 8px; transform: rotate(-8deg); font-family: Georgia, serif; }
.nav nav { display: flex; justify-content: center; gap: 28px; }
.nav nav a { font-size: .88rem; font-weight: 750; }
.nav nav a.active, .nav nav a:hover { color: var(--brick-dark); }
.button { display: inline-flex; min-height: 46px; align-items: center; justify-content: center; gap: 8px; padding: 0 20px; color: var(--white); background: var(--brick); border: 1px solid var(--brick); border-radius: 999px; font-weight: 850; cursor: pointer; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); background: var(--brick-dark); }
.button:active { transform: translateY(0) scale(.98); }
.button.secondary { color: var(--ink); background: transparent; border-color: var(--ink); }
.button.secondary:hover { color: var(--white); background: var(--ink); }
.button.dark { background: var(--ink); border-color: var(--ink); }
.eyebrow { margin: 0 0 10px; color: var(--brick-dark); font-size: .74rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, .serif { font-family: Georgia, "Times New Roman", serif; }
h1 { max-width: 860px; margin-bottom: 20px; font-size: clamp(2.8rem, 6vw, 5.2rem); line-height: .98; letter-spacing: -.045em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.05; letter-spacing: -.03em; }
.page-hero { padding: 68px 0 54px; }
.page-hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: center; }
.page-hero p:not(.eyebrow) { max-width: 650px; color: var(--ink-soft); font-size: 1.07rem; }
.hero-card { padding: 28px; color: var(--white); background: var(--ink); border-radius: var(--radius); box-shadow: 10px 10px 0 var(--mustard); }
.hero-card strong { display: block; margin-bottom: 8px; font-family: Georgia, serif; font-size: 1.7rem; }
.hero-card p { color: #d6dfe1 !important; font-size: .9rem !important; }
.proof { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 28px; color: var(--ink-soft); font-size: .84rem; font-weight: 800; }
.proof span::before { content: "✓"; margin-right: 6px; color: var(--brick); }
.section { padding: 72px 0; }
.section.alt { background: var(--paper-deep); }
.section.white { background: var(--white); }
.section-head { display: flex; justify-content: space-between; gap: 34px; align-items: end; margin-bottom: 32px; }
.section-head p { max-width: 560px; margin-bottom: 4px; color: var(--ink-soft); }
.tool-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.core-tool-grid { max-width: 790px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.tool-card { display: flex; min-height: 310px; flex-direction: column; padding: 26px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); transition: transform .2s ease, box-shadow .2s ease; }
.tool-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.tool-card.featured { color: var(--white); background: var(--ink); border-color: var(--ink); }
.tool-icon { display: grid; width: 52px; height: 52px; place-items: center; margin-bottom: 30px; background: var(--mustard); border-radius: 14px; font-size: 1.35rem; }
.tool-card-heading { display: flex; gap: 14px; align-items: center; margin-bottom: 18px; }
.tool-card-heading .tool-icon { flex: 0 0 52px; margin-bottom: 0; }
.tool-card-heading h3 { margin: 2px 0 0; }
.tool-card-kicker { display: block; color: var(--brick-dark); font-size: .63rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.tool-card.featured .tool-card-kicker { color: #f3c96e; }
.tool-card h3 { margin-bottom: 10px; font-family: Georgia, serif; font-size: 1.65rem; }
.tool-card p { color: var(--ink-soft); font-size: .9rem; }
.tool-card.featured p { color: #d0dadd; }
.tool-meta { display: flex; flex-wrap: wrap; gap: 7px; margin: 8px 0 22px; }
.tool-meta span { padding: 5px 8px; color: var(--ink-soft); background: var(--paper); border-radius: 6px; font-size: .7rem; font-weight: 750; }
.tool-card.featured .tool-meta span { color: var(--white); background: #294651; }
.tool-card .button { width: 100%; margin-top: auto; }
.task-link-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.task-link { min-height: 156px; display: flex; flex-direction: column; padding: 19px; background: var(--paper); border: 1px solid var(--line); border-radius: 13px; transition: transform .18s ease, border-color .18s ease, background .18s ease; }
.task-link:hover { transform: translateY(-3px); background: #fff8e9; border-color: #baa989; }
.task-link small { color: var(--brick-dark); font-size: .62rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.task-link strong { display: flex; justify-content: space-between; gap: 12px; margin: 12px 0 7px; font-family: Georgia, serif; font-size: 1.18rem; line-height: 1.22; }
.task-link strong span { color: var(--brick-dark); font-family: Inter, ui-sans-serif, system-ui, sans-serif; transition: transform .18s ease; }
.task-link:hover strong span { transform: translateX(3px); }
.task-link p { margin: 0; color: var(--ink-soft); font-size: .76rem; }
.catalog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.catalog-card { display: flex; min-height: 330px; flex-direction: column; padding: 23px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.catalog-card.featured { color: var(--white); background: var(--ink); border-color: var(--ink); }
.catalog-label { width: fit-content; padding: 5px 8px; color: var(--brick-dark); background: #f8e4dd; border-radius: 999px; font-size: .65rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.catalog-card.featured .catalog-label { color: var(--ink); background: var(--mustard); }
.catalog-card h3 { margin: 24px 0 9px; font-family: Georgia, serif; font-size: 1.55rem; }
.catalog-card p { color: var(--ink-soft); font-size: .84rem; }
.catalog-card.featured p { color: #d5dfe1; }
.tag-row { display: flex; flex-wrap: wrap; gap: 6px; margin: 5px 0 18px; }
.tag-row span { padding: 5px 7px; color: var(--ink-soft); background: var(--paper); border-radius: 6px; font-size: .67rem; font-weight: 750; }
.catalog-card.featured .tag-row span { color: var(--white); background: #294651; }
.catalog-stats { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px; margin-top: auto; padding: 13px 0; border-top: 1px solid var(--line); color: var(--ink-soft); font-size: .7rem; font-weight: 800; }
.catalog-card.featured .catalog-stats { color: #d7dfe1; border-color: #45606c; }
.catalog-card .button { width: 100%; margin-top: 14px; }
.content-index { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.content-index a { padding: 8px 11px; background: var(--white); border: 1px solid var(--line); border-radius: 999px; font-size: .73rem; font-weight: 800; }
.content-index a:hover { color: var(--white); background: var(--ink); }
.content-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 18px; }
.article-card { overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: 14px; }
.article-card img { height: 190px; }
.article-card.large img { height: 290px; }
.article-body { padding: 20px; }
.article-body small { color: var(--brick-dark); font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.article-body h3 { margin: 9px 0 7px; font-family: Georgia, serif; font-size: 1.35rem; }
.article-card.large h3 { font-size: 1.75rem; }
.article-body p { color: var(--ink-soft); font-size: .8rem; }
.article-meta { display: flex; justify-content: space-between; gap: 10px; color: var(--ink-soft); font-size: .68rem; }
.offer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.offer-card { display: flex; min-height: 300px; flex-direction: column; padding: 22px; background: var(--white); border: 1px solid var(--line); border-radius: 14px; }
.offer-card.sponsored { background: #fff8e9; border-color: var(--mustard); }
.offer-card small { color: var(--brick-dark); font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.offer-card h3 { margin: 20px 0 8px; font-family: Georgia, serif; font-size: 1.35rem; }
.offer-card p { color: var(--ink-soft); font-size: .8rem; }
.offer-price { margin-top: auto; font-family: Georgia, serif; font-size: 1.5rem; font-weight: 700; }
.offer-card .button { width: 100%; margin-top: 14px; }
.builder-layout { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr); gap: 34px; align-items: start; }
.panel { padding: 30px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 8px 24px rgba(23,48,61,.06); }
.panel h2 { font-size: 2rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label, .field legend { font-size: .8rem; font-weight: 850; }
.field input, .field select, .field textarea { width: 100%; min-height: 48px; padding: 11px 13px; color: var(--ink); background: #fff; border: 1px solid #aeb6b7; border-radius: 8px; }
.field textarea { min-height: 90px; resize: vertical; }
.choice-row { display: flex; flex-wrap: wrap; gap: 8px; }
.choice { position: relative; }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice span { display: block; padding: 9px 12px; background: var(--paper); border: 1px solid var(--line); border-radius: 999px; font-size: .77rem; font-weight: 800; cursor: pointer; }
.choice input:checked + span { color: var(--white); background: var(--ink); border-color: var(--ink); }
.choice input:focus-visible + span { outline: 3px solid var(--ink); outline-offset: 3px; }
.builder-submit { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); }
.builder-submit-copy { display: grid; min-width: 0; gap: 8px; }
.builder-submit p { margin: 0; color: var(--ink-soft); font-size: .77rem; }
.builder-submit .estimate-submit { flex: 0 0 auto; min-width: 176px; white-space: nowrap; }
.estimate-update-status { display: inline-flex; align-items: center; gap: 6px; color: #2d6248; font-size: .7rem; font-weight: 850; }
.estimate-update-status::before { content: "✓"; }
.estimate-update-status[data-state="pending"] { color: #885018; }
.estimate-update-status[data-state="pending"]::before { content: "•"; }
.estimate-update-status[data-state="error"] { color: #a12820; }
.estimate-update-status[data-state="error"]::before { content: "!"; }
.sticky-card { position: sticky; top: 100px; }
.summary-list { display: grid; gap: 16px; margin: 24px 0; }
.summary-item { display: grid; grid-template-columns: 36px 1fr; gap: 12px; }
.summary-item b { display: grid; width: 34px; height: 34px; place-items: center; background: var(--mustard); border-radius: 50%; font-family: Georgia, serif; }
.summary-item strong { display: block; margin-bottom: 2px; }
.summary-item span { color: var(--ink-soft); font-size: .78rem; }
.trust-card { padding: 20px; color: var(--white); background: var(--ink); border-radius: 14px; }
.trust-card p { margin: 0; color: #d7dfe2; font-size: .8rem; }
.calc-layout { display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(390px, .96fr); gap: 32px; align-items: start; }
.route-estimator { padding: 34px; }
.route-estimator h2 { margin-bottom: 10px; }
.form-intro { margin-bottom: 26px; color: var(--ink-soft); font-size: .82rem; }
.estimator-form { display: grid; }
.estimator-group { min-width: 0; margin: 0; padding: 20px 0; border: 0; border-top: 1px solid var(--line); }
.estimator-group:first-child { padding-top: 0; border-top: 0; }
.estimator-group > legend { margin-bottom: 13px; padding: 0; color: var(--brick-dark); font-family: Georgia, serif; font-size: 1.05rem; font-weight: 700; }
.estimator-field-pair { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; align-items: start; }
.estimator-group .field-help { min-height: 2.8em; line-height: 1.4; }
.estimator-group.option-field { padding-bottom: 0; }
.route-selectors { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.route-place { padding: 16px; background: var(--paper); border: 1px solid var(--line); border-radius: 12px; }
.route-place-title { margin: 0 0 12px; color: var(--ink); font-family: Georgia, serif; font-size: 1.1rem; font-weight: 700; }
.route-place .field + .field { margin-top: 12px; }
.option-field { min-width: 0; margin: 0; border: 0; }
.field-help { color: var(--ink-soft); font-size: .7rem; }
.field-error { color: #a12820; font-size: .72rem; font-weight: 800; }
.field input[aria-invalid="true"] { border-color: #b43b2d; box-shadow: 0 0 0 2px rgba(180,59,45,.12); }
.route-confirmation { display: grid; gap: 2px; margin-top: 22px; padding: 14px 16px; color: var(--ink); background: #fff8e9; border-left: 4px solid var(--mustard); font-size: .75rem; }
.route-confirmation span { color: var(--ink-soft); }
.estimator-footnote { display: grid; gap: 8px; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--line); }
.estimator-footnote p { margin: 0; color: var(--ink-soft); font-size: .74rem; }
.estimate-card { position: sticky; top: 98px; display: grid; min-height: 690px; place-items: center; padding: 40px; overflow: hidden; color: var(--white); background: linear-gradient(150deg, var(--brick-dark), #702a22); border-radius: var(--radius); box-shadow: var(--shadow); text-align: center; }
.estimate-card.is-stale { box-shadow: 0 0 0 3px rgba(244,201,105,.8), var(--shadow); }
.estimate-content { width: 100%; }
.estimate-kicker { margin: 0 0 8px; color: #f4c969; font-size: .65rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.estimate-heading { margin: 0; color: inherit; font-family: inherit; font-size: .72rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.estimate-total { margin: 18px 0 12px; font-family: Georgia, serif; font-size: clamp(3rem, 5vw, 4.8rem); line-height: .95; letter-spacing: -.04em; }
.estimate-card .estimate-route { max-width: 520px; margin: 0 auto 14px; color: #ffe9e1; font-size: 1.05rem; font-weight: 800; }
.estimate-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 7px; }
.estimate-tags span { padding: 6px 9px; color: #fff7ec; background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.18); border-radius: 999px; font-size: .67rem; font-weight: 800; }
.breakdown { display: grid; gap: 4px; margin-top: 24px; text-align: left; }
.breakdown div { display: flex; justify-content: space-between; gap: 20px; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.25); font-size: .8rem; }
.breakdown strong { white-space: nowrap; }
.estimate-save { width: 100%; margin-top: 18px; }
.save-status { display: block; min-height: 1.1em; margin-top: 8px; color: #fff7ec; font-size: .68rem; font-weight: 800; }
.result-action-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-top: 22px; }
.estimate-card .button { min-height: 48px; padding: 0 14px; font-size: .73rem; }
.estimate-card .button.light { color: var(--ink); background: var(--white); border-color: var(--white); }
.estimate-card .button.light:hover { color: var(--ink); background: #f4ead8; }
.estimate-card .button.mustard { color: var(--ink); background: var(--mustard); border-color: var(--mustard); }
.estimate-card .button.mustard:hover { color: var(--white); background: var(--ink); border-color: var(--ink); }
.text-action { margin-top: 18px; padding: 6px; color: #fff7ec; background: transparent; border: 0; border-bottom: 1px solid rgba(255,255,255,.55); font-size: .7rem; font-weight: 850; cursor: pointer; }
.text-action:hover { border-bottom-color: var(--white); }
.estimate-empty { max-width: 340px; }
.estimate-empty strong { display: block; margin-bottom: 8px; font-family: Georgia, serif; font-size: 2rem; }
.estimate-empty p { margin: 0; color: #ffe9e1; }
.conversion-layout { display: grid; grid-template-columns: minmax(0, .82fr) minmax(480px, 1.18fr); gap: 52px; align-items: start; }
.conversion-copy > p:not(.eyebrow) { max-width: 560px; color: var(--ink-soft); }
.plain-checks { display: grid; gap: 12px; margin: 28px 0 0; padding: 0; list-style: none; }
.plain-checks li { position: relative; padding-left: 28px; color: var(--ink-soft); font-size: .82rem; }
.planning-ledger { display: grid; gap: 0; padding: 30px; }
.planning-ledger > .eyebrow { margin-bottom: 8px; }
.ledger-row { display: grid; grid-template-columns: 46px 1fr; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.ledger-row:last-child { border-bottom: 0; }
.ledger-row > span { display: grid; width: 42px; height: 42px; place-items: center; color: var(--ink); background: var(--mustard); border-radius: 12px; font-family: Georgia, serif; font-weight: 900; }
.ledger-row strong { display: block; margin-bottom: 4px; font-family: Georgia, serif; font-size: 1.1rem; }
.ledger-row p { margin: 0; color: var(--ink-soft); font-size: .76rem; }
.plain-checks li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--brick-dark); font-weight: 900; }
.intent-panel { min-height: 410px; }
.intent-empty { min-height: 340px; display: grid; place-items: center; align-content: center; text-align: center; }
.intent-empty span { display: grid; width: 54px; height: 54px; place-items: center; margin-bottom: 18px; color: var(--ink); background: var(--mustard); border-radius: 15px; font-family: Georgia, serif; font-size: 1.1rem; font-weight: 900; }
.intent-empty h3 { margin-bottom: 8px; font-family: Georgia, serif; font-size: 1.65rem; }
.intent-empty p { max-width: 440px; margin: 0; color: var(--ink-soft); font-size: .8rem; }
.follow-up-form h3 { margin-bottom: 8px; font-family: Georgia, serif; font-size: 1.8rem; line-height: 1.15; }
.follow-up-form .button { margin-top: 20px; }
.match-route { margin: 18px 0; padding: 11px 13px; color: var(--ink); background: var(--paper); border-radius: 9px; font-size: .76rem; font-weight: 850; }
.consent-row { display: grid; grid-template-columns: auto 1fr; gap: 11px; align-items: start; margin-top: 18px; padding: 14px; background: #fff8e9; border: 1px solid var(--line); border-radius: 10px; cursor: pointer; }
.consent-row input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--brick); }
.consent-row span { color: var(--ink); font-size: .76rem; font-weight: 750; }
.match-disclosure { margin: 12px 0 0; color: var(--ink-soft); font-size: .75rem; }
.form-level-error { margin: 12px 0 0; }
.submission-status { display: grid; gap: 3px; margin-top: 18px; padding: 14px 16px; color: #174b34; background: #e4f4ea; border-left: 4px solid var(--green); font-size: .74rem; }
.submission-status span { color: #37634d; }
.setup-budget-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(380px, .8fr); gap: 56px; align-items: center; }
.setup-budget-copy { max-width: 650px; margin-bottom: 26px; color: var(--ink-soft); }
.setup-budget-card { padding: 30px; color: var(--white); background: var(--ink); border-radius: var(--radius); box-shadow: 10px 10px 0 var(--mustard); }
.setup-budget-card > small { color: #f0c56b; font-size: .68rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.setup-budget-card > strong { display: block; margin: 8px 0 24px; font-family: Georgia, serif; font-size: 2.6rem; }
.setup-budget-card > div { display: flex; justify-content: space-between; gap: 18px; padding: 10px 0; border-bottom: 1px solid #45606c; font-size: .76rem; }
.setup-budget-card > div b { white-space: nowrap; }
.setup-budget-card p { margin: 18px 0 0; color: #d0dadd; font-size: .75rem; }
.trust-check-grid .tool-card { min-height: 280px; }
.official-check { display: flex; justify-content: space-between; gap: 28px; align-items: center; margin-top: 24px; padding: 24px 26px; color: var(--white); background: var(--brick); border-radius: 14px; }
.official-check strong, .official-check span { display: block; }
.official-check strong { margin-bottom: 3px; font-family: Georgia, serif; font-size: 1.25rem; }
.official-check span { color: #ffe9e1; font-size: .75rem; }
.official-check .button { flex: 0 0 auto; }
.official-check[hidden] { display: none; }
.official-check.local-check { color: var(--ink); background: var(--paper-deep); border: 1px solid var(--line); }
.official-check.local-check span { color: var(--ink-soft); }
.source-note { margin: 18px 0 0; color: var(--ink-soft); font-size: .7rem; }
.source-note a { color: var(--brick-dark); font-weight: 850; }
.service-list { display: grid; gap: 14px; }
.service-row { display: grid; grid-template-columns: 54px 1fr auto; gap: 18px; align-items: center; padding: 20px; background: var(--white); border: 1px solid var(--line); border-radius: 14px; }
.service-row .icon { display: grid; width: 48px; height: 48px; place-items: center; background: var(--paper-deep); border-radius: 12px; font-size: 1.25rem; }
.service-row h3 { margin-bottom: 3px; }
.service-row p { margin: 0; color: var(--ink-soft); font-size: .82rem; }
.service-row .rating { color: var(--brick-dark); font-size: .76rem; font-weight: 850; }
.service-tool-layout { display: grid; grid-template-columns: 390px minmax(0, 1fr); gap: 24px; align-items: start; }
.service-tool-layout .panel { position: sticky; top: 98px; }
.service-choice-list { display: grid; gap: 8px; margin-top: 8px; }
.service-choice { display: grid; grid-template-columns: auto 1fr auto; gap: 10px; align-items: center; padding: 11px 12px; background: var(--paper); border: 1px solid var(--line); border-radius: 9px; cursor: pointer; }
.service-choice input { width: 18px; height: 18px; accent-color: var(--brick); }
.service-choice span { font-size: .82rem; font-weight: 800; }
.service-choice small { color: var(--ink-soft); font-size: .67rem; }
.service-result-shell { min-height: 580px; padding: 26px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.service-empty { min-height: 520px; display: grid; place-items: center; color: var(--ink-soft); text-align: center; }
.service-empty b { display: grid; width: 64px; height: 64px; place-items: center; margin: 0 auto 14px; color: var(--ink); background: var(--mustard); border-radius: 18px; font-size: 1.5rem; }
.service-results[hidden], .service-empty[hidden] { display: none; }
.result-head { display: flex; justify-content: space-between; gap: 24px; align-items: start; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.result-head h2 { margin-bottom: 6px; font-size: 2rem; }
.result-summary { display: flex; flex-wrap: wrap; gap: 7px; }
.result-summary span { padding: 6px 9px; color: var(--ink); background: var(--paper); border-radius: 999px; font-size: .7rem; font-weight: 800; }
.result-disclaimer { max-width: 260px; color: var(--ink-soft); font-size: .68rem; }
.setup-timeline { display: grid; gap: 13px; }
.setup-card { display: grid; grid-template-columns: 92px minmax(0, 1fr) auto; gap: 16px; align-items: start; padding: 18px; background: #fffdf8; border: 1px solid var(--line); border-radius: 12px; }
.setup-when { padding: 8px; color: var(--brick-dark); background: #f8e4dd; border-radius: 8px; font-size: .68rem; font-weight: 900; text-align: center; }
.setup-card h3 { margin-bottom: 5px; }
.setup-card p { margin-bottom: 10px; color: var(--ink-soft); font-size: .78rem; }
.setup-details { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.setup-details div { padding: 10px; background: var(--paper); border-radius: 8px; }
.setup-details strong { display: block; margin-bottom: 4px; color: var(--brick-dark); font-size: .65rem; letter-spacing: .08em; text-transform: uppercase; }
.setup-details ul { margin: 0; padding-left: 16px; color: var(--ink-soft); font-size: .7rem; }
.setup-cost { min-width: 110px; text-align: right; }
.setup-cost strong { display: block; font-family: Georgia, serif; font-size: 1.1rem; }
.setup-cost a { color: var(--brick-dark); font-size: .69rem; font-weight: 850; }
.result-actions { display: flex; justify-content: space-between; gap: 14px; align-items: center; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); }
.plan-hero { color: var(--white); background: var(--ink); }
.plan-hero .page-hero { padding-bottom: 62px; }
.plan-hero .eyebrow { color: #f0c56b; }
.plan-hero p:not(.eyebrow) { color: #d1dbde; }
.plan-hero-meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0; }
.plan-hero-meta span { padding: 7px 10px; background: #294651; border-radius: 999px; font-size: .75rem; font-weight: 800; }
.plan-stats { display: flex; flex-wrap: wrap; gap: 24px; font-size: .82rem; font-weight: 850; }
.plan-avatar { display: grid; min-height: 270px; place-items: center; background: var(--mustard); border-radius: var(--radius); box-shadow: 10px 10px 0 var(--brick); }
.plan-avatar div { text-align: center; }
.plan-avatar b { display: grid; width: 86px; height: 86px; place-items: center; margin: 0 auto 12px; color: var(--white); background: var(--brick); border: 5px solid var(--white); border-radius: 50%; font-family: Georgia, serif; font-size: 2rem; }
.plan-shell { display: grid; grid-template-columns: 240px minmax(0, 1fr); gap: 34px; align-items: start; }
.phase-nav { position: sticky; top: 100px; display: grid; gap: 8px; }
.phase-nav a { padding: 11px 13px; background: var(--white); border: 1px solid var(--line); border-radius: 8px; font-size: .8rem; font-weight: 800; }
.phase-nav a:hover { border-color: var(--brick); }
.phase { margin-bottom: 28px; padding: 30px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.phase-head { display: flex; justify-content: space-between; gap: 20px; align-items: start; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.phase-head h2 { margin-bottom: 8px; font-size: 2rem; }
.phase-goal { max-width: 560px; margin: 0; color: var(--ink-soft); }
.budget-pill { flex: 0 0 auto; padding: 8px 11px; color: var(--brick-dark); background: #f8e4dd; border-radius: 999px; font-size: .76rem; font-weight: 900; }
.step { padding: 22px 0; border-bottom: 1px solid var(--line); }
.step:last-child { border-bottom: 0; }
.step-title { display: grid; grid-template-columns: auto 1fr auto; gap: 12px; align-items: center; }
.step-title input { width: 19px; height: 19px; accent-color: var(--brick); }
.step-title h3 { margin: 0; font-size: 1rem; }
.step-title time { color: var(--ink-soft); font-size: .74rem; }
.step-details { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 16px 0 0 31px; }
.detail-box { padding: 14px; background: var(--paper); border-radius: 10px; }
.detail-box strong { display: block; margin-bottom: 6px; color: var(--brick-dark); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; }
.detail-box ul { margin: 0; padding-left: 18px; color: var(--ink-soft); font-size: .8rem; }
.budget-summary { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 30px; }
.budget-summary div { padding: 18px; background: var(--white); border: 1px solid var(--line); border-radius: 12px; }
.budget-summary span { display: block; color: var(--ink-soft); font-size: .72rem; }
.budget-summary strong { font-family: Georgia, serif; font-size: 1.45rem; }
.notice { padding: 16px 18px; color: var(--ink-soft); background: #fff8e9; border-left: 4px solid var(--mustard); font-size: .8rem; }
.disclosure { color: var(--ink-soft); font-size: .7rem; }
.community-strip { padding: 24px 0; color: var(--white); background: var(--brick); }
.community-strip .wrap { display: flex; justify-content: space-between; gap: 24px; align-items: center; }
.community-strip strong { font-family: Georgia, serif; font-size: 1.35rem; }
.site-footer { padding: 38px 0; background: var(--white); border-top: 1px solid var(--line); color: var(--ink-soft); font-size: .76rem; }
.footer-row { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
:focus-visible { outline: 3px solid var(--mustard); outline-offset: 3px; }
@media (max-width: 900px) {
  .page-hero-grid, .builder-layout, .calc-layout, .conversion-layout, .setup-budget-layout, .plan-shell, .service-tool-layout { grid-template-columns: 1fr; }
  .nav { grid-template-columns: 1fr auto; }
  .nav nav { grid-column: 1 / -1; justify-content: flex-start; overflow-x: auto; padding: 0 0 13px; white-space: nowrap; }
  .tool-grid, .catalog-grid, .core-tool-grid { grid-template-columns: 1fr 1fr; }
  .task-link-grid { grid-template-columns: 1fr 1fr; }
  .content-grid { grid-template-columns: 1fr 1fr; }
  .article-card.large { grid-column: 1 / -1; }
  .offer-grid { grid-template-columns: 1fr 1fr; }
  .sticky-card, .estimate-card, .phase-nav, .service-tool-layout .panel { position: static; }
  .phase-nav { grid-template-columns: repeat(4, 1fr); }
  .budget-summary { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .wrap { width: min(100% - 28px, 1180px); }
  .section { padding: 54px 0; }
  .page-hero { padding-top: 44px; }
  .tool-grid, .catalog-grid, .content-grid, .offer-grid, .form-grid, .estimator-field-pair, .route-selectors, .step-details, .task-link-grid, .core-tool-grid { grid-template-columns: 1fr; }
  .article-card.large { grid-column: auto; }
  .field.full { grid-column: auto; }
  .builder-submit, .section-head, .official-check, .community-strip .wrap { align-items: flex-start; flex-direction: column; }
  .builder-submit .estimate-submit { width: 100%; min-width: 0; }
  .route-estimator, .estimate-card, .intent-panel, .planning-ledger, .setup-budget-card { padding: 22px; }
  .estimator-field-pair { gap: 14px; }
  .estimator-group .field-help { min-height: 0; }
  .estimate-card { min-height: auto; }
  .estimate-total { font-size: clamp(2.15rem, 10.5vw, 3.1rem); white-space: nowrap; }
  .estimate-range-breakdown div { align-items: flex-start; flex-direction: column; gap: 5px; }
  .result-action-grid { grid-template-columns: 1fr; }
  .estimate-card .button, .follow-up-form .button, .official-check .button { width: 100%; }
  .setup-budget-card > div { align-items: flex-start; flex-direction: column; gap: 2px; }
  .service-row { grid-template-columns: 44px 1fr; }
  .service-row .button { grid-column: 1 / -1; }
  .phase-nav { grid-template-columns: 1fr 1fr; }
  .phase { padding: 22px; }
  .phase-head { flex-direction: column; }
  .budget-summary { grid-template-columns: 1fr 1fr; }
  .step-title { grid-template-columns: auto 1fr; }
  .step-title time { grid-column: 2; }
  .setup-card { grid-template-columns: 1fr; }
  .setup-when, .setup-cost { width: fit-content; text-align: left; }
  .setup-details { grid-template-columns: 1fr; }
  .result-head, .result-actions { align-items: flex-start; flex-direction: column; }
}

/* Personalized checklist builder */
.checklist-builder { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 28px; align-items: start; }
.wizard { min-height: 610px; }
.wizard-progress { display: grid; grid-template-columns: auto 1fr auto 1fr auto; align-items: center; margin-bottom: 34px; }
.wizard-progress > i { height: 2px; background: var(--line); }
.wizard-dot { display: grid; grid-template-columns: 34px auto; align-items: center; gap: 8px; padding: 0; color: var(--ink-soft); background: transparent; border: 0; cursor: pointer; }
.wizard-dot b { display: grid; width: 34px; height: 34px; place-items: center; background: var(--paper); border: 1px solid var(--line); border-radius: 50%; }
.wizard-dot span { font-size: .72rem; font-weight: 850; }
.wizard-dot.active, .wizard-dot.done { color: var(--ink); }
.wizard-dot.active b, .wizard-dot.done b { color: var(--white); background: var(--brick); border-color: var(--brick); }
.wizard-step h2 { margin-bottom: 8px; font-size: clamp(1.8rem, 4vw, 2.6rem); }
.wizard-intro { margin-bottom: 28px; color: var(--ink-soft); }
.move-plan-page {
  --route-green: #37786c;
  --route-brick: #b95139;
}
.move-plan-page .checklist-route { gap: 9px; }
.move-plan-page .checklist-route-label { font-size: .8rem; font-weight: 850; }
.move-plan-page .route-selectors { gap: 16px; }
.move-plan-page .route-place {
  position: relative;
  padding: 16px;
  background: #f5efe4;
  border-color: #ded2c1;
  border-radius: 15px;
}
.move-plan-page .route-place-title {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 13px;
  font-family: inherit;
  font-size: .73rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.move-plan-page .route-place-title span {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  color: var(--white);
  background: var(--route-green);
  border-radius: 50%;
  font-family: Georgia, serif;
  letter-spacing: 0;
}
.move-plan-page .route-place-to .route-place-title span { background: var(--route-brick); }
.move-plan-page .checklist-route .field label { font-size: .7rem; }
.move-plan-page .checklist-route .field select {
  min-height: 50px;
  padding: 10px 38px 10px 13px;
  border-color: #9dabad;
  border-radius: 10px;
  font-size: .85rem;
}
.move-plan-page .checklist-route .field select:focus {
  border-color: var(--route-green);
  outline: 3px solid rgba(243, 200, 95, .72);
  outline-offset: 2px;
}
.move-plan-page .checklist-route .field select:disabled {
  color: #6f7b7d;
  background-color: #f2f0eb;
  cursor: not-allowed;
}
.optional { color: var(--ink-soft); font-size: .68rem; font-weight: 600; }
.wizard-actions { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 16px; margin-top: 32px; padding-top: 22px; border-top: 1px solid var(--line); }
.wizard-actions > span { color: var(--ink-soft); font-size: .72rem; text-align: center; }
.checklist-preview { position: sticky; top: 98px; display: grid; gap: 14px; }
.preview-list { display: grid; gap: 16px; margin: 26px 0; }
.preview-list > div { display: grid; grid-template-columns: 34px 1fr; gap: 12px; align-items: start; }
.preview-list b { color: var(--brick-dark); font-family: Georgia, serif; }
.preview-list strong { display: block; font-size: .86rem; }
.preview-list span { color: var(--ink-soft); font-size: .76rem; }
.prototype-note { margin: 0; padding-top: 18px; color: var(--ink-soft); border-top: 1px solid var(--line); font-size: .7rem; }
.template-link { display: grid; padding: 18px 20px; color: var(--white); background: var(--ink); border-radius: 14px; }
.template-link strong { font-family: Georgia, serif; font-size: 1.05rem; }
.template-link span { color: #d6dfe1; font-size: .74rem; }

/* Personalized checklist workspace */
.plan-empty-state {
  display: grid;
  min-height: calc(100vh - 74px);
  place-items: center;
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(23, 49, 60, .035) 50%, transparent 50.2%) 0 0 / 72px 72px,
    linear-gradient(rgba(23, 49, 60, .035) 49.8%, transparent 50.2%) 0 0 / 72px 72px,
    var(--paper-deep);
}
.empty-checklist-card {
  width: min(100%, 700px);
  margin: 0 auto;
  padding: 52px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.empty-route-mark {
  display: grid;
  grid-template-columns: 38px minmax(90px, 170px) 38px;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
}
.empty-route-mark span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--white);
  background: #37786c;
  border-radius: 50%;
  font-family: Georgia, serif;
  font-weight: 900;
}
.empty-route-mark span:last-child { background: #b95139; }
.empty-route-mark i {
  position: relative;
  height: 1px;
  background: #b8a78d;
}
.empty-route-mark i::after {
  position: absolute;
  top: -4px;
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 1px solid #b8a78d;
  border-right: 1px solid #b8a78d;
  content: "";
  transform: rotate(45deg);
}
.empty-checklist-card .eyebrow { color: var(--brick-dark); }
.empty-checklist-card h1 {
  margin: 0 0 14px;
  font-size: clamp(2.35rem, 5vw, 4.2rem);
  line-height: .98;
}
.empty-checklist-card > p:not(.eyebrow) {
  max-width: 520px;
  margin: 0 auto 25px;
  color: var(--ink-soft);
}
.empty-checklist-card .button { margin-bottom: 18px; }
.empty-checklist-card small {
  display: block;
  color: var(--ink-soft);
  font-size: .68rem;
}
@media (max-width: 620px) {
  .plan-empty-state {
    min-height: calc(100vh - 64px);
    padding: 28px 0;
  }
  .empty-checklist-card {
    padding: 36px 24px;
    border-radius: 18px;
  }
  .empty-route-mark {
    grid-template-columns: 34px minmax(72px, 120px) 34px;
    margin-bottom: 22px;
  }
  .empty-route-mark span {
    width: 34px;
    height: 34px;
  }
  .empty-checklist-card h1 { font-size: clamp(2.25rem, 12vw, 3.2rem); }
}
.checklist-head .head-status small { color: var(--ink-soft); font-weight: 650; }
.checklist-dashboard { display: grid; grid-template-columns: 270px minmax(0, 1fr); gap: 34px; align-items: start; }
.checklist-sidebar { position: sticky; top: 98px; display: grid; gap: 14px; }
.checklist-sidebar .panel { padding: 20px; }
.progress-copy { display: flex; justify-content: space-between; gap: 12px; font-size: .75rem; font-weight: 800; }
.progress-copy strong { color: var(--brick-dark); }
.progress-panel progress { width: 100%; height: 9px; margin: 13px 0 18px; overflow: hidden; appearance: none; border: 0; border-radius: 999px; }
.progress-panel progress::-webkit-progress-bar { background: var(--paper-deep); }
.progress-panel progress::-webkit-progress-value { background: var(--brick); border-radius: 999px; }
.progress-panel progress::-moz-progress-bar { background: var(--brick); border-radius: 999px; }
.next-task { display: grid; gap: 3px; padding: 14px; color: var(--white); background: var(--ink); border-radius: 10px; }
.next-task small { color: #f0c56b; font-size: .62rem; font-weight: 900; letter-spacing: .1em; }
.next-task strong { font-size: .8rem; line-height: 1.35; }
.plan-profile dl, .spec-list { margin: 0 0 16px; }
.plan-profile dl > div, .spec-list > div { display: grid; grid-template-columns: 76px 1fr; gap: 12px; padding: 8px 0; border-bottom: 1px solid var(--line); }
.plan-profile dt, .spec-list dt { color: var(--ink-soft); font-size: .67rem; }
.plan-profile dd, .spec-list dd { margin: 0; font-size: .72rem; font-weight: 800; text-align: right; overflow-wrap: anywhere; }
.text-action { color: var(--brick-dark); font-size: .78rem; font-weight: 900; text-decoration: none; }
.plan-links { display: grid; gap: 9px; }
.plan-links > strong { margin-bottom: 4px; font-family: Georgia, serif; }
.plan-links a { display: grid; grid-template-columns: 32px 1fr; gap: 10px; align-items: center; padding: 9px; background: var(--paper); border-radius: 9px; }
.plan-links a > span { display: grid; width: 30px; height: 30px; place-items: center; background: var(--mustard); border-radius: 8px; font-weight: 900; }
.plan-links a div { font-size: .72rem; font-weight: 850; }
.plan-links a small { display: block; color: var(--ink-soft); font-size: .62rem; font-weight: 600; }
.checklist-toolbar { display: flex; justify-content: space-between; gap: 20px; align-items: end; }
.checklist-toolbar h2 { margin: 0; font-size: 2.35rem; }
.timeline-filters { display: flex; flex-wrap: wrap; gap: 7px; margin: 20px 0; }
.timeline-filters button { padding: 8px 11px; color: var(--ink-soft); background: var(--white); border: 1px solid var(--line); border-radius: 999px; font-size: .7rem; font-weight: 850; cursor: pointer; }
.timeline-filters button.active { color: var(--white); background: var(--ink); border-color: var(--ink); }
.personal-note { display: grid; grid-template-columns: auto 1fr; gap: 12px; margin-bottom: 16px; padding: 14px 16px; background: #fff8e9; border-left: 4px solid var(--mustard); font-size: .78rem; }
.personal-note span { color: var(--ink-soft); }
.add-task-card { margin-bottom: 18px; padding: 22px; background: var(--white); border: 2px solid var(--mustard); border-radius: 14px; }
.add-task-card h3 { margin: 0 0 16px; font-family: Georgia, serif; font-size: 1.4rem; }
.add-task-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 12px; }
.add-task-actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 16px; }
.task-list { display: grid; gap: 12px; }
.check-task { overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: 14px; transition: opacity .2s ease, border-color .2s ease; }
.check-task:hover { border-color: #b8a78d; }
.check-task.complete { opacity: .63; }
.check-task.complete h3 { text-decoration: line-through; }
.check-task-main { display: grid; grid-template-columns: auto 1fr auto; gap: 14px; align-items: start; padding: 20px; }
.task-check { position: relative; margin-top: 3px; }
.task-check input { position: absolute; opacity: 0; }
.task-check span { display: grid; width: 23px; height: 23px; place-items: center; border: 2px solid #8d9a9d; border-radius: 7px; cursor: pointer; }
.task-check input:checked + span { color: var(--white); background: var(--green); border-color: var(--green); }
.task-check input:checked + span::after { content: "✓"; font-size: .78rem; font-weight: 900; }
.task-copy h3 { margin: 4px 0 4px; font-size: 1rem; }
.task-copy > p { margin: 0; color: var(--ink-soft); font-size: .76rem; }
.task-kickers { display: flex; gap: 6px; }
.task-kickers span { color: var(--brick-dark); font-size: .6rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.task-kickers .custom-label { color: var(--ink); }
.task-date { min-width: 96px; text-align: right; }
.task-date strong { display: block; font-family: Georgia, serif; font-size: 1rem; }
.task-date span { color: var(--ink-soft); font-size: .62rem; }
.check-task details { border-top: 1px solid var(--line); }
.check-task summary { display: flex; justify-content: space-between; padding: 11px 20px; color: var(--ink-soft); background: #fbf8f2; font-size: .68rem; font-weight: 850; cursor: pointer; list-style: none; }
.check-task summary::-webkit-details-marker { display: none; }
.check-task details[open] summary span { transform: rotate(45deg); }
.task-detail-grid { display: grid; grid-template-columns: 1.4fr 1.6fr; gap: 12px; padding: 18px 20px 10px; }
.task-detail-grid > div { padding: 13px; background: var(--paper); border-radius: 9px; }
.task-detail-grid small { display: block; margin-bottom: 6px; color: var(--brick-dark); font-size: .58rem; font-weight: 900; letter-spacing: .1em; }
.task-detail-grid p, .task-detail-grid li { color: var(--ink-soft); font-size: .72rem; }
.task-detail-grid p, .task-detail-grid ul, .task-detail-grid ol { margin: 0; }
.task-detail-grid ul, .task-detail-grid ol { padding-left: 17px; }
.task-detail-grid a { color: var(--brick-dark); font-weight: 800; text-decoration: underline; }
.task-note-field { display: grid; gap: 5px; padding: 4px 20px 18px; }
.task-note-field span { font-size: .68rem; font-weight: 850; }
.task-note-field textarea { min-height: 64px; padding: 10px 12px; background: #fff; border: 1px solid #aeb6b7; border-radius: 8px; resize: vertical; }
.delete-task { margin: 0 20px 18px; padding: 0; color: var(--brick-dark); background: transparent; border: 0; font-size: .68rem; font-weight: 850; cursor: pointer; }
.empty-filter { display: grid; gap: 4px; padding: 40px; color: var(--ink-soft); background: var(--white); border: 1px dashed #aeb6b7; border-radius: 14px; text-align: center; }
.empty-filter strong { color: var(--ink); font-family: Georgia, serif; font-size: 1.25rem; }

/* Real products and buying guides */
.section-head-actions { max-width: 390px; text-align: right; }
.section-head-actions p { margin: 5px 0 0; color: var(--ink-soft); font-size: .7rem; }
.product-categories { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.product-categories a { padding: 7px 10px; color: var(--ink-soft); background: var(--paper); border: 1px solid var(--line); border-radius: 999px; font-size: .68rem; font-weight: 800; }
.real-product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.real-product { display: flex; min-width: 0; flex-direction: column; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: 16px; }
.real-product-image { display: grid; height: 260px; place-items: center; overflow: hidden; background: #fff; border-bottom: 1px solid var(--line); }
.real-product-image img { height: 100%; padding: 18px; object-fit: contain; transition: transform .25s ease; }
.real-product:hover .real-product-image img { transform: scale(1.04); }
.real-product-body { display: flex; flex: 1; flex-direction: column; padding: 20px; }
.source-row { display: flex; justify-content: space-between; gap: 12px; color: var(--brick-dark); font-size: .59rem; font-weight: 900; letter-spacing: .08em; }
.source-row span:last-child { color: var(--ink-soft); }
.real-product h3 { margin: 13px 0 6px; font-family: Georgia, serif; font-size: 1.28rem; line-height: 1.15; }
.product-rating { color: #8c640e; font-size: .7rem; }
.real-product-body > p { margin: 15px 0; color: var(--ink-soft); font-size: .76rem; }
.product-tradeoff { display: grid; grid-template-columns: 52px 1fr; gap: 6px 10px; padding: 12px; background: var(--paper); border-radius: 9px; font-size: .68rem; }
.product-tradeoff b { color: var(--brick-dark); }
.product-tradeoff span { color: var(--ink-soft); }
.real-product-bottom { display: flex; justify-content: space-between; gap: 12px; align-items: end; margin-top: auto; padding-top: 18px; }
.real-product-bottom > div { display: grid; }
.real-product-bottom strong { font-family: Georgia, serif; font-size: 1.35rem; }
.real-product-bottom span { color: var(--ink-soft); font-size: .59rem; }
.real-product-bottom .button { min-height: 38px; padding: 0 12px; font-size: .66rem; }
.real-product-actions { display: flex !important; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.real-product-actions .button { white-space: nowrap; }

/* Internal category hub: editorial context before retailer comparison */
.category-hub { padding-top: 34px; }
.category-jump { position: sticky; top: 88px; z-index: 10; display: flex; gap: 8px; margin-bottom: 26px; padding: 10px; overflow-x: auto; background: rgba(255,253,248,.95); border: 1px solid var(--line); border-radius: 13px; box-shadow: 0 8px 24px rgba(23,48,61,.07); backdrop-filter: blur(10px); scrollbar-width: thin; }
.category-jump a { flex: 0 0 auto; padding: 8px 11px; color: var(--ink-soft); background: var(--paper); border-radius: 999px; font-size: .7rem; font-weight: 850; }
.category-jump a:hover, .category-jump a:focus-visible { color: var(--white); background: var(--ink); }
.category-detail-list { display: grid; gap: 22px; }
.category-detail { scroll-margin-top: 150px; display: grid; grid-template-columns: minmax(250px, .72fr) minmax(0, 1.28fr); overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 10px 28px rgba(23,48,61,.06); }
.category-detail-intro { display: flex; min-height: 310px; flex-direction: column; padding: 30px; color: var(--white); background: var(--ink); }
.category-detail:nth-child(2n) .category-detail-intro { background: #234653; }
.category-detail:nth-child(3n) .category-detail-intro { color: var(--ink); background: var(--mustard); }
.category-detail-timing { margin-bottom: 26px; color: #f4cc7b; font-size: .68rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.category-detail:nth-child(3n) .category-detail-timing { color: var(--brick-dark); }
.category-detail-intro h2 { margin-bottom: 12px; font-size: clamp(1.8rem, 3vw, 2.55rem); }
.category-detail-intro p { margin-bottom: 22px; color: #dce3e5; font-size: .86rem; }
.category-detail:nth-child(3n) .category-detail-intro p { color: #344d58; }
.category-product-strip { display: grid; grid-template-columns: 1fr; gap: 8px; margin: 2px 0 16px; }
.category-product-strip.two-up { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.category-product { position: relative; min-width: 0; margin: 0; overflow: hidden; color: var(--ink); background: #fff; border: 1px solid rgba(23,48,61,.14); border-radius: 12px; }
.category-product img { width: 100%; height: 164px; padding: 14px; object-fit: contain; background: #fff; }
.category-product-strip.two-up img { height: 150px; padding: 10px; }
.category-product figcaption { min-height: 39px; display: flex; align-items: center; padding: 8px 11px; background: #f3eee5; font-size: .62rem; font-weight: 850; line-height: 1.25; }
.category-product-badge { position: absolute; top: 8px; left: 8px; z-index: 1; padding: 5px 7px; color: var(--white); background: var(--green); border-radius: 999px; font-size: .55rem; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; box-shadow: 0 3px 10px rgba(23,48,61,.16); }
.category-product.example .category-product-badge { color: var(--ink); background: var(--mustard); }
.category-item-list { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; }
.category-item-list span { padding: 5px 8px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22); border-radius: 999px; font-size: .65rem; font-weight: 800; }
.category-detail:nth-child(3n) .category-item-list span { background: rgba(255,255,255,.28); border-color: rgba(23,48,61,.18); }
.category-detail-body { display: flex; flex-direction: column; padding: 30px; }
.category-detail-kicker { margin: 0 0 13px; color: var(--brick-dark); font-size: .68rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.category-criteria { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin: 0; padding: 0; list-style: none; }
.category-criteria li { min-height: 128px; padding: 15px; background: var(--paper); border-radius: 11px; }
.category-criteria strong { display: block; margin-bottom: 7px; font-family: Georgia, serif; font-size: 1rem; line-height: 1.2; }
.category-criteria span { display: block; color: var(--ink-soft); font-size: .72rem; line-height: 1.45; }
.category-route { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 20px; align-items: end; margin-top: auto; padding-top: 24px; }
.category-route strong { display: block; margin-bottom: 7px; font-size: .78rem; }
.category-internal-links { display: flex; flex-wrap: wrap; gap: 8px 16px; }
.category-internal-links a { color: var(--brick-dark); font-size: .73rem; font-weight: 850; border-bottom: 1px solid currentColor; }
.category-route .button { white-space: nowrap; }
.category-review-note { margin: 13px 0 0; color: var(--ink-soft); font-size: .67rem; }
.category-disclosure { max-width: 820px; margin: 24px auto 0; color: var(--ink-soft); font-size: .7rem; text-align: center; }
.selection-method { display: grid; grid-template-columns: .9fr 1.1fr; gap: 46px; margin-top: 34px; padding: 32px; color: var(--white); background: var(--ink); border-radius: var(--radius); }
.selection-method .eyebrow { color: #f0c56b; }
.selection-method h2 { margin-bottom: 0; font-size: 2rem; }
.selection-method ol { margin: 0 0 22px; padding-left: 20px; color: #d6dfe1; font-size: .78rem; }
.selection-method li { margin-bottom: 8px; }
.selection-method li strong { color: var(--white); }

.product-detail-section { padding-top: 34px; }
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 58px; align-items: center; }
.product-gallery { display: grid; place-items: center; min-height: 520px; padding: 26px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.product-gallery img { max-height: 450px; object-fit: contain; }
.product-gallery span { color: var(--ink-soft); font-size: .63rem; }
.product-purchase h2 { margin: 18px 0 10px; font-size: clamp(2.2rem, 4.6vw, 3.4rem); }
.detail-rating { color: #8c640e; font-size: .82rem; font-weight: 800; }
.detail-price { display: grid; margin: 18px 0; }
.detail-price strong { font-family: Georgia, serif; font-size: 2rem; }
.detail-price span { color: var(--ink-soft); font-size: .68rem; }
.pick-summary { color: var(--ink-soft); font-size: .92rem; }
.fit-split { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 22px 0; }
.fit-split > div { padding: 14px; background: var(--paper); border-radius: 10px; }
.fit-split small { color: var(--brick-dark); font-size: .59rem; font-weight: 900; letter-spacing: .1em; }
.fit-split p { margin: 6px 0 0; color: var(--ink-soft); font-size: .73rem; }
.review-layout { display: grid; grid-template-columns: minmax(0, 1.35fr) 320px; gap: 50px; align-items: start; }
.review-main > h2 { margin-bottom: 18px; }
.prose-block { color: var(--ink-soft); font-size: .92rem; }
.verdict-box { margin: 28px 0 48px; padding: 22px; color: var(--white); background: var(--brick); border-radius: 12px; }
.verdict-box strong { display: block; font-family: Georgia, serif; font-size: 1.25rem; }
.verdict-box p { margin: 6px 0 0; color: #ffe9e1; }
.criteria-list { display: grid; gap: 12px; }
.criteria-list > div { display: grid; grid-template-columns: 44px 1fr; gap: 14px; padding: 18px; background: var(--white); border: 1px solid var(--line); border-radius: 12px; }
.criteria-list > div > b { color: var(--brick); font-family: Georgia, serif; font-size: 1.3rem; }
.criteria-list strong { display: block; }
.criteria-list p { margin: 3px 0 0; color: var(--ink-soft); font-size: .78rem; }
.review-aside { position: sticky; top: 98px; display: grid; gap: 14px; }
.checkout-list { margin: 0; padding-left: 18px; color: var(--ink-soft); font-size: .75rem; }
.checkout-list li { margin-bottom: 8px; }
.related-products { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.related-products a { display: grid; grid-template-columns: 150px 1fr; gap: 18px; align-items: center; padding: 16px; background: var(--white); border: 1px solid var(--line); border-radius: 14px; }
.related-products img { height: 130px; object-fit: contain; }
.related-products span { display: grid; gap: 6px; }
.related-products small { color: var(--brick-dark); font-size: .6rem; font-weight: 900; letter-spacing: .08em; }
.related-products strong { font-family: Georgia, serif; font-size: 1.05rem; }
.related-products b { color: var(--ink-soft); }

.buying-guide-layout { display: grid; grid-template-columns: 230px minmax(0, 760px); justify-content: center; gap: 58px; align-items: start; }
.buying-guide-nav { position: sticky; top: 98px; display: grid; gap: 7px; padding: 18px; background: var(--paper); border: 1px solid var(--line); border-radius: 12px; }
.buying-guide-nav strong { margin-bottom: 4px; font-family: Georgia, serif; }
.buying-guide-nav a { padding: 7px 8px; color: var(--ink-soft); border-radius: 7px; font-size: .72rem; font-weight: 800; }
.buying-guide-nav a:hover { color: var(--white); background: var(--ink); }
.buying-guide-content > section { scroll-margin-top: 100px; }
.buying-guide-content > section > p:not(.eyebrow) { color: var(--ink-soft); font-size: .92rem; }
.method-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
.method-grid > div { padding: 18px; background: var(--paper); border-radius: 10px; }
.method-grid b { display: grid; width: 28px; height: 28px; place-items: center; margin-bottom: 12px; background: var(--mustard); border-radius: 8px; }
.method-grid strong { display: block; }
.method-grid p { margin: 4px 0 0; color: var(--ink-soft); font-size: .72rem; }
.guide-section { position: relative; margin-top: 64px; padding-top: 52px; border-top: 1px solid var(--line); }
.guide-number { position: absolute; top: 42px; right: 0; color: var(--paper-deep); font-family: Georgia, serif; font-size: 5rem; font-weight: 900; line-height: 1; }
.guide-section h2 { position: relative; max-width: 620px; }
.comparison-table { margin: 24px 0; overflow: hidden; border: 1px solid var(--line); border-radius: 10px; }
.comparison-table > div { display: grid; grid-template-columns: 1fr 1.4fr 1fr; gap: 14px; padding: 12px; border-bottom: 1px solid var(--line); font-size: .72rem; }
.comparison-table > div:last-child { border-bottom: 0; }
.comparison-table .table-head { color: var(--white); background: var(--ink); font-weight: 850; }
.comparison-table span { color: var(--ink-soft); }
.comparison-table .table-head span { color: var(--white); }
.guide-callout { margin: 24px 0; padding: 18px; background: #fff8e9; border-left: 4px solid var(--mustard); }
.guide-callout p { margin: 4px 0 0; color: var(--ink-soft); font-size: .78rem; }
.decision-list { padding-left: 20px; color: var(--ink-soft); font-size: .86rem; }
.decision-list li { margin-bottom: 10px; }
.decision-list strong { color: var(--ink); }
.final-check { padding: 34px !important; color: var(--white); background: var(--ink); border: 0 !important; border-radius: var(--radius); }
.final-check .eyebrow { color: #f0c56b; }
.final-check ol { padding-left: 22px; }
.final-check li { margin-bottom: 8px; }
.final-check > p:not(.eyebrow) { color: #d6dfe1 !important; }

/* Full moving guides */
.article-compact-head h1 { max-width: 920px; font-size: clamp(2.25rem, 4.5vw, 3.75rem); }
.article-compact-head .head-status small { color: var(--ink-soft); font-weight: 600; }
.guide-article-layout { display: grid; grid-template-columns: 230px minmax(0, 760px); justify-content: center; gap: 58px; align-items: start; }
.article-toc { position: sticky; top: 98px; display: grid; gap: 8px; padding: 20px; background: var(--paper); border: 1px solid var(--line); border-radius: 12px; }
.article-toc > strong { font-family: Georgia, serif; }
.article-toc nav { display: grid; gap: 3px; margin-bottom: 10px; }
.article-toc nav a { padding: 7px 8px; color: var(--ink-soft); border-radius: 7px; font-size: .7rem; font-weight: 800; }
.article-toc nav a:hover { color: var(--white); background: var(--ink); }
.article-toc .button { min-height: 40px; padding: 0 12px; font-size: .68rem; text-align: center; }
.article-answer { margin-bottom: 38px; padding: 24px; color: var(--white); background: var(--ink); border-radius: 14px; }
.article-answer span { color: #f0c56b; font-size: .62rem; font-weight: 900; letter-spacing: .12em; }
.article-answer p { margin: 8px 0 0; font-family: Georgia, serif; font-size: 1.35rem; line-height: 1.35; }
.article-section { position: relative; scroll-margin-top: 105px; padding: 40px 0; border-top: 1px solid var(--line); }
.article-section-number { position: absolute; top: 34px; right: 0; color: var(--paper-deep); font-family: Georgia, serif; font-size: 4.5rem; font-weight: 900; line-height: 1; }
.article-section h2 { position: relative; max-width: 620px; margin-bottom: 10px; font-size: 2.1rem; }
.article-section > p { max-width: 650px; color: var(--ink-soft); }
.article-section ul { display: grid; gap: 8px; margin: 22px 0 0; padding: 0; list-style: none; }
.article-section li { position: relative; padding: 11px 14px 11px 38px; background: var(--paper); border-radius: 9px; font-size: .82rem; }
.article-section li::before { content: "✓"; position: absolute; left: 14px; color: var(--brick); font-weight: 900; }
.article-faq { margin-top: 18px; padding-top: 40px; border-top: 1px solid var(--line); }
.article-faq > h2 { font-size: 2.1rem; }
.article-faq details { background: var(--white); border-top: 1px solid var(--line); }
.article-faq summary { display: flex; justify-content: space-between; gap: 18px; padding: 17px 0; font-weight: 850; cursor: pointer; list-style: none; }
.article-faq summary::-webkit-details-marker { display: none; }
.article-faq details[open] summary span { transform: rotate(45deg); }
.article-faq details p { margin: -4px 0 18px; color: var(--ink-soft); font-size: .82rem; }
.article-related { display: flex; justify-content: space-between; gap: 28px; align-items: center; margin-top: 48px; padding: 28px; color: var(--white); background: var(--brick); border-radius: 14px; }
.article-related .eyebrow { color: #ffe4d9; }
.article-related h2 { margin-bottom: 6px; font-size: 1.8rem; }
.article-related p:not(.eyebrow) { max-width: 470px; margin: 0; color: #ffe9e1; font-size: .78rem; }
.article-related .button { flex: 0 0 auto; }
.article-disclaimer { margin-top: 22px; color: var(--ink-soft); font-size: .67rem; }

@media (max-width: 980px) {
  .checklist-builder, .checklist-dashboard, .product-detail-grid, .review-layout, .buying-guide-layout, .guide-article-layout { grid-template-columns: 1fr; }
  .checklist-preview, .checklist-sidebar, .review-aside, .buying-guide-nav, .article-toc { position: static; }
  .checklist-sidebar { grid-template-columns: 1fr 1fr; }
  .checklist-sidebar .plan-links { grid-column: 1 / -1; }
  .real-product-grid { grid-template-columns: 1fr 1fr; }
  .category-detail { grid-template-columns: 1fr; }
  .category-detail-intro { min-height: 0; }
  .selection-method { grid-template-columns: 1fr; gap: 20px; }
  .buying-guide-nav { grid-template-columns: repeat(5, auto); overflow-x: auto; }
  .buying-guide-nav strong { grid-column: 1 / -1; }
  .article-toc nav { grid-template-columns: repeat(4, minmax(170px, 1fr)); overflow-x: auto; }
}

@media (max-width: 660px) {
  .wizard { min-height: auto; padding: 22px; }
  .wizard-dot { grid-template-columns: 30px; }
  .wizard-dot b { width: 30px; height: 30px; }
  .wizard-dot span { display: none; }
  .wizard-actions { grid-template-columns: 1fr 1fr; }
  .wizard-actions > span { grid-column: 1 / -1; grid-row: 1; }
  .wizard-actions .button { width: 100%; }
  .checklist-sidebar, .real-product-grid, .related-products, .method-grid { grid-template-columns: 1fr; }
  .category-hub { padding-top: 20px; }
  .category-jump { top: 78px; margin-right: -14px; margin-left: -14px; border-right: 0; border-left: 0; border-radius: 0; }
  .category-detail { scroll-margin-top: 132px; }
  .category-detail-intro, .category-detail-body { padding: 23px; }
  .category-product img { height: 180px; }
  .category-product-strip.two-up img { height: 135px; }
  .category-criteria { grid-template-columns: 1fr; }
  .category-criteria li { min-height: 0; }
  .category-route { grid-template-columns: 1fr; align-items: start; }
  .category-route .button { width: 100%; }
  .real-product-bottom { align-items: flex-start; flex-direction: column; }
  .real-product-actions { justify-content: flex-start; }
  .checklist-toolbar { align-items: flex-start; flex-direction: column; }
  .check-task-main { grid-template-columns: auto 1fr; }
  .task-date { grid-column: 2; text-align: left; }
  .task-detail-grid, .add-task-grid, .fit-split { grid-template-columns: 1fr; }
  .section-head-actions { text-align: left; }
  .real-product-image { height: 230px; }
  .product-gallery { min-height: 360px; }
  .product-gallery img { max-height: 300px; }
  .related-products a { grid-template-columns: 110px 1fr; }
  .comparison-table > div { grid-template-columns: 1fr; gap: 3px; }
  .comparison-table .table-head { display: none; }
  .guide-number { font-size: 4rem; }
  .article-related { align-items: flex-start; flex-direction: column; }
  .article-section-number { font-size: 3.6rem; }
}

/* Cost estimator: moving manifest */
.cost-estimator-page {
  --estimate-ink: #17313c;
  --estimate-ink-soft: #49616a;
  --estimate-paper: #fffdf8;
  --estimate-canvas: #ede6d9;
  --estimate-line: #d5c8b6;
  --estimate-signal: #f3c85f;
  --estimate-green: #37786c;
  --estimate-brick: #b95139;
  background: var(--estimate-canvas);
}

.cost-estimator-page .estimator-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 25%, rgba(243, 200, 95, .13) 0 2px, transparent 3px) 0 0 / 28px 28px,
    var(--estimate-ink);
}

.cost-estimator-page .estimator-hero::after {
  position: absolute;
  right: -8%;
  bottom: -150px;
  width: 530px;
  height: 300px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 50%;
  content: "";
  transform: rotate(-13deg);
}

.cost-estimator-page .estimator-hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(390px, .85fr);
  gap: 70px;
  align-items: end;
  padding-top: 58px;
  padding-bottom: 58px;
}

.cost-estimator-page .estimator-breadcrumb,
.cost-estimator-page .manifest-label {
  margin: 0 0 12px;
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.cost-estimator-page .estimator-breadcrumb { color: #bfd0d3; }

.cost-estimator-page .estimator-hero h1 {
  max-width: 720px;
  margin: 0;
  color: var(--white);
  font-size: clamp(3rem, 5.2vw, 5.3rem);
  line-height: .9;
  letter-spacing: -.055em;
}

.cost-estimator-page .estimator-hero h1 span { color: var(--estimate-signal); }

.cost-estimator-page .estimator-hero-copy > p:last-child {
  max-width: 610px;
  margin: 24px 0 0;
  color: #d4dfe1;
  font-size: .98rem;
}

.cost-estimator-page .estimate-steps {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, .19);
}

.cost-estimator-page .estimate-steps li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 2px 13px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .19);
}

.cost-estimator-page .estimate-steps span {
  grid-row: 1 / 3;
  color: var(--estimate-signal);
  font-family: Georgia, serif;
  font-size: .85rem;
  font-weight: 900;
}

.cost-estimator-page .estimate-steps strong { font-size: .78rem; }
.cost-estimator-page .estimate-steps small { color: #a9bdc1; font-size: .66rem; }

.cost-estimator-page .estimator-workspace {
  position: relative;
  overflow-x: hidden;
  padding: 38px 0 70px;
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(23, 49, 60, .035) 50%, transparent 50.2%) 0 0 / 72px 72px,
    linear-gradient(rgba(23, 49, 60, .035) 49.8%, transparent 50.2%) 0 0 / 72px 72px,
    var(--estimate-canvas);
}

.cost-estimator-page .estimate-studio {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(390px, .82fr);
  gap: 24px;
  align-items: start;
}

.cost-estimator-page .route-estimator {
  padding: 0;
  overflow: hidden;
  background: var(--estimate-paper);
  border: 1px solid rgba(23, 49, 60, .13);
  border-radius: 24px;
  box-shadow: 0 18px 46px rgba(23, 49, 60, .09);
}

.cost-estimator-page .estimator-form-head {
  padding: 29px 34px 25px;
  border-bottom: 1px solid var(--estimate-line);
}

.cost-estimator-page .manifest-label { color: var(--estimate-brick); }

.cost-estimator-page .estimator-form-head h2 {
  margin: 0 0 7px;
  font-size: clamp(2rem, 3vw, 2.7rem);
  letter-spacing: -.035em;
}

.cost-estimator-page .estimator-form-head > p:last-child {
  max-width: 610px;
  margin: 0;
  color: var(--estimate-ink-soft);
  font-size: .78rem;
}

.cost-estimator-page .estimator-form { padding: 0 34px; }

.cost-estimator-page .estimator-group {
  padding: 23px 0 25px;
  border-color: var(--estimate-line);
}

.cost-estimator-page .estimator-group:first-child { padding-top: 23px; }

.cost-estimator-page .estimator-group > legend {
  margin-bottom: 15px;
  color: var(--estimate-ink);
  font-family: inherit;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.cost-estimator-page .route-selectors {
  position: relative;
  gap: 16px;
}

.cost-estimator-page .route-place {
  position: relative;
  padding: 17px;
  background: #f5efe4;
  border-color: #ded2c1;
  border-radius: 15px;
}

.cost-estimator-page .route-place-title {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 13px;
  font-family: inherit;
  font-size: .73rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cost-estimator-page .route-place-title span {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  color: var(--white);
  background: var(--estimate-green);
  border-radius: 50%;
  font-family: Georgia, serif;
  letter-spacing: 0;
}

.cost-estimator-page .route-place-to .route-place-title span { background: var(--estimate-brick); }

.cost-estimator-page .field { gap: 6px; }

.cost-estimator-page .field label {
  color: var(--estimate-ink);
  font-size: .7rem;
}

.cost-estimator-page .field input,
.cost-estimator-page .field select {
  min-height: 50px;
  padding: 10px 38px 10px 13px;
  color: var(--estimate-ink);
  background-color: var(--white);
  border-color: #9dabad;
  border-radius: 10px;
  font-size: .85rem;
  box-shadow: 0 1px 0 rgba(23, 49, 60, .03);
}

.cost-estimator-page .field input:focus,
.cost-estimator-page .field select:focus {
  border-color: var(--estimate-green);
  outline: 3px solid rgba(243, 200, 95, .72);
  outline-offset: 2px;
}

.cost-estimator-page .estimator-field-grid,
.cost-estimator-page .estimator-field-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.cost-estimator-page .field-help {
  min-height: 0;
  color: var(--estimate-ink-soft);
  font-size: .64rem;
}

.cost-estimator-page .extras-block {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px dashed var(--estimate-line);
}

.cost-estimator-page .extras-block > p {
  margin: 0 0 10px;
  color: var(--estimate-ink);
  font-size: .7rem;
  font-weight: 850;
}

.cost-estimator-page .choice span {
  padding: 9px 13px;
  background: #f5efe4;
  border-color: #d8cbb9;
  border-radius: 9px;
  font-size: .7rem;
}

.cost-estimator-page .choice input:checked + span {
  color: var(--white);
  background: var(--estimate-green);
  border-color: var(--estimate-green);
}

.cost-estimator-page .calculation-bar {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px 34px;
  background: #f3ead9;
  border-top: 1px solid var(--estimate-line);
}

.cost-estimator-page .route-confirmation {
  margin: 0;
  padding: 0 0 0 13px;
  background: transparent;
  border-left-color: var(--estimate-signal);
}

.cost-estimator-page .route-confirmation strong { font-size: .75rem; }
.cost-estimator-page .route-confirmation span { font-size: .65rem; }
.cost-estimator-page .estimate-update-status { white-space: nowrap; }

.cost-estimator-page .estimate-ticket {
  position: sticky;
  top: 96px;
  display: block;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  color: var(--white);
  background: var(--estimate-ink);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 24px;
  box-shadow: 0 18px 46px rgba(23, 49, 60, .17);
  text-align: left;
}

.cost-estimator-page .estimate-ticket::before,
.cost-estimator-page .estimate-ticket::after {
  position: absolute;
  top: 139px;
  z-index: 2;
  width: 22px;
  height: 22px;
  background: var(--estimate-canvas);
  border-radius: 50%;
  content: "";
}

.cost-estimator-page .estimate-ticket::before { left: -11px; }
.cost-estimator-page .estimate-ticket::after { right: -11px; }

.cost-estimator-page .ticket-masthead {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 18px 23px;
  color: var(--estimate-ink);
  background: var(--estimate-signal);
}

.cost-estimator-page .ticket-masthead p {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 1.05rem;
  font-weight: 900;
}

.cost-estimator-page .ticket-masthead span {
  font-size: .6rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.cost-estimator-page .ticket-route {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 74px minmax(0, 1fr);
  gap: 11px;
  align-items: center;
  padding: 22px 23px;
  border-bottom: 1px dashed rgba(255, 255, 255, .27);
}

.cost-estimator-page .ticket-route > div:last-child { text-align: right; }

.cost-estimator-page .ticket-route small {
  display: block;
  margin-bottom: 3px;
  color: #a9bdc1;
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.cost-estimator-page .ticket-route strong {
  display: block;
  overflow: hidden;
  color: var(--white);
  font-family: Georgia, serif;
  font-size: .95rem;
  line-height: 1.2;
  text-overflow: ellipsis;
}

.cost-estimator-page .ticket-route-track {
  position: relative;
  display: block;
  height: 1px;
  background: rgba(255, 255, 255, .5);
}

.cost-estimator-page .ticket-route-track::before,
.cost-estimator-page .ticket-route-track::after {
  position: absolute;
  top: 50%;
  width: 7px;
  height: 7px;
  background: var(--estimate-signal);
  border: 2px solid var(--estimate-ink);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.cost-estimator-page .ticket-route-track::before { left: 0; }
.cost-estimator-page .ticket-route-track::after { right: 0; }

.cost-estimator-page .ticket-route-track i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  border-top: 1px solid rgba(255, 255, 255, .8);
  border-right: 1px solid rgba(255, 255, 255, .8);
  transform: translate(-50%, -50%) rotate(45deg);
}

.cost-estimator-page .ticket-budget { padding: 27px 23px 18px; }

.cost-estimator-page .estimate-kicker {
  margin-bottom: 7px;
  color: #a9bdc1;
}

.cost-estimator-page .estimate-total {
  margin: 0;
  color: var(--white);
  font-size: clamp(2.8rem, 4.3vw, 4rem);
}

.cost-estimator-page .estimate-tags {
  justify-content: flex-start;
  padding: 0 23px;
}

.cost-estimator-page .estimate-tags span {
  color: #dce6e7;
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .14);
}

.cost-estimator-page .estimate-range-breakdown {
  margin: 23px 23px 0;
  border-top: 1px solid rgba(255, 255, 255, .21);
}

.cost-estimator-page .breakdown div { font-size: .73rem; }

.cost-estimator-page .estimate-save {
  width: calc(100% - 46px);
  margin: 20px 23px 0;
  color: var(--estimate-ink);
  background: var(--estimate-signal);
  border-color: var(--estimate-signal);
}

.cost-estimator-page .estimate-save:hover {
  color: var(--white);
  background: var(--estimate-green);
  border-color: var(--estimate-green);
}

.cost-estimator-page .save-status {
  min-height: 32px;
  margin: 8px 23px 0;
  color: #dce6e7;
}

.cost-estimator-page .estimate-actions {
  padding: 76px 0 52px;
  background: #f9f5ed;
  border-top: 1px solid rgba(23, 49, 60, .1);
}

.cost-estimator-page .action-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(350px, .7fr);
  gap: 12px 70px;
  align-items: end;
  margin-bottom: 32px;
}

.cost-estimator-page .action-section-head .manifest-label { grid-column: 1 / -1; }

.cost-estimator-page .action-section-head h2 {
  margin: 0;
  font-size: clamp(2.3rem, 4vw, 3.7rem);
  line-height: 1;
  letter-spacing: -.045em;
}

.cost-estimator-page .action-section-head > p:last-child {
  margin: 0;
  color: var(--estimate-ink-soft);
  font-size: .82rem;
}

.cost-estimator-page .estimate-action-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.cost-estimator-page .estimate-action-card {
  position: relative;
  min-height: 390px;
  padding: 25px;
  background: var(--white);
  border: 1px solid var(--estimate-line);
  border-radius: 18px;
}

.cost-estimator-page .estimate-action-card::before {
  position: absolute;
  top: 0;
  right: 25px;
  left: 25px;
  height: 4px;
  background: var(--estimate-green);
  border-radius: 0 0 4px 4px;
  content: "";
}

.cost-estimator-page .estimate-action-card:nth-child(2)::before { background: var(--estimate-brick); }
.cost-estimator-page .estimate-action-card:nth-child(3)::before { background: var(--estimate-signal); }

.cost-estimator-page .action-number {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  margin-bottom: 28px;
  color: var(--white);
  background: var(--estimate-ink);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: .72rem;
  font-weight: 900;
}

.cost-estimator-page .estimate-action-card h3 {
  margin-bottom: 8px;
  font-size: 1.35rem;
}

.cost-estimator-page .estimate-action-card > p {
  color: var(--estimate-ink-soft);
  font-size: .75rem;
}

.cost-estimator-page .action-checks {
  display: grid;
  gap: 9px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.cost-estimator-page .action-checks li {
  position: relative;
  padding: 11px 10px 11px 34px;
  background: #f5efe4;
  border-radius: 8px;
  font-size: .7rem;
  font-weight: 800;
}

.cost-estimator-page .action-checks li::before {
  position: absolute;
  left: 12px;
  color: var(--estimate-green);
  content: "✓";
}

.cost-estimator-page .supply-total {
  display: block;
  margin: 18px 0 13px;
  color: var(--estimate-ink);
  font-family: Georgia, serif;
  font-size: 2.15rem;
}

.cost-estimator-page .supply-lines { border-top: 1px solid var(--estimate-line); }

.cost-estimator-page .supply-lines > div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 9px 0;
  border-bottom: 1px solid var(--estimate-line);
  font-size: .67rem;
}

.cost-estimator-page .supply-lines b { white-space: nowrap; }

.cost-estimator-page .supply-rule { font-size: .65rem !important; }

.cost-estimator-page .supply-card > a,
.cost-estimator-page .verification-panel a {
  color: var(--estimate-brick);
  font-size: .68rem;
  font-weight: 900;
}

.cost-estimator-page .verification-panel {
  display: grid;
  gap: 6px;
  margin-top: 22px;
  padding: 18px;
  color: var(--white);
  background: var(--estimate-ink);
  border-radius: 12px;
}

.cost-estimator-page .verification-panel span {
  color: #c9d7d9;
  font-size: .69rem;
}

.cost-estimator-page .verification-panel a { color: var(--estimate-signal); }
.cost-estimator-page .verification-panel[hidden] { display: none; }

.cost-estimator-page .source-note {
  margin-top: 20px;
  text-align: right;
}

@media (max-width: 1000px) {
  .cost-estimator-page .estimator-hero-layout,
  .cost-estimator-page .estimate-studio {
    grid-template-columns: 1fr;
  }

  .cost-estimator-page .estimator-hero-layout { gap: 38px; }
  .cost-estimator-page .estimate-steps { grid-template-columns: repeat(3, 1fr); }
  .cost-estimator-page .estimate-steps li { padding-right: 16px; }
  .cost-estimator-page .estimate-ticket { position: static; }
  .cost-estimator-page .action-section-head { grid-template-columns: 1fr; }
  .cost-estimator-page .action-section-head .manifest-label { grid-column: auto; }
  .cost-estimator-page .estimate-action-grid { grid-template-columns: 1fr 1fr; }
  .cost-estimator-page .verify-card { grid-column: 1 / -1; min-height: 0; }
}

@media (max-width: 700px) {
  .cost-estimator-page .estimator-hero-layout {
    gap: 28px;
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .cost-estimator-page .estimator-hero h1 { font-size: clamp(2.8rem, 14vw, 4rem); }
  .cost-estimator-page .estimate-steps { grid-template-columns: 1fr; }
  .cost-estimator-page .estimate-steps li { padding-right: 0; }
  .cost-estimator-page .estimator-workspace { padding: 22px 0 48px; }
  .cost-estimator-page .estimator-form-head { padding: 25px 22px 21px; }
  .cost-estimator-page .estimator-form { padding: 0 22px; }
  .cost-estimator-page .route-selectors,
  .cost-estimator-page .estimator-field-grid,
  .cost-estimator-page .estimator-field-pair {
    grid-template-columns: 1fr;
  }

  .cost-estimator-page .calculation-bar {
    grid-template-columns: 1fr;
    padding: 17px 22px;
  }

  .cost-estimator-page .estimate-update-status { white-space: normal; }
  .cost-estimator-page .ticket-route { grid-template-columns: minmax(0, 1fr) 44px minmax(0, 1fr); }
  .cost-estimator-page .ticket-route strong { font-size: .84rem; }
  .cost-estimator-page .estimate-total { font-size: clamp(2.25rem, 12vw, 3.1rem); }
  .cost-estimator-page .estimate-action-grid { grid-template-columns: 1fr; }
  .cost-estimator-page .verify-card { grid-column: auto; }
  .cost-estimator-page .estimate-action-card { min-height: 0; }
  .cost-estimator-page .estimate-actions { padding: 55px 0 42px; }
  .cost-estimator-page .source-note { text-align: left; }
}

/* Moving Essentials stage manifests */
.shop-stage-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.shop-stage-hero--carry { background: #234653; }
.shop-stage-hero--settle { color: var(--ink); background: var(--mustard); }

.shop-stage-hero .wrap {
  min-height: 390px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  gap: 60px;
  align-items: center;
  padding-top: 54px;
  padding-bottom: 54px;
}

.shop-stage-hero .breadcrumbs { color: #f4cc7b; }
.shop-stage-hero .breadcrumbs a { color: inherit; }
.shop-stage-hero--settle .breadcrumbs { color: var(--brick-dark); }

.stage-manifest-code {
  margin: 0 0 18px;
  color: #f4cc7b;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: .69rem;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.shop-stage-hero--settle .stage-manifest-code { color: var(--brick-dark); }

.shop-stage-hero h1 {
  max-width: 820px;
  margin: 0 0 18px;
  font-size: clamp(3.1rem, 7vw, 6.25rem);
  line-height: .92;
  letter-spacing: -.055em;
}

.stage-hero-copy > p:last-child {
  max-width: 720px;
  margin: 0;
  color: #dce3e5;
  font-size: .96rem;
}

.shop-stage-hero--settle .stage-hero-copy > p:last-child { color: #344d58; }

.stage-hero-mark {
  position: relative;
  min-height: 260px;
  display: grid;
  align-content: center;
  justify-items: center;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 3px;
  background:
    repeating-linear-gradient(-45deg, rgba(255,255,255,.06) 0 8px, transparent 8px 16px);
}

.shop-stage-hero--settle .stage-hero-mark {
  border-color: rgba(23,48,61,.28);
  background:
    repeating-linear-gradient(-45deg, rgba(23,48,61,.06) 0 8px, transparent 8px 16px);
}

.stage-hero-mark::before,
.stage-hero-mark::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  height: 1px;
  background: currentColor;
  opacity: .35;
}

.stage-hero-mark::before { top: 30px; }
.stage-hero-mark::after { bottom: 30px; }

.stage-hero-mark span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 7.5rem;
  font-weight: 900;
  line-height: .8;
}

.stage-hero-mark strong {
  margin-top: 22px;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: .76rem;
  letter-spacing: .24em;
}

.stage-rail-wrap {
  position: sticky;
  top: 74px;
  z-index: 55;
  background: rgba(255,253,248,.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.stage-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.stage-rail a {
  position: relative;
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 13px;
  align-content: center;
  padding: 14px 24px;
  color: var(--ink);
  border-right: 1px solid var(--line);
  text-decoration: none;
}

.stage-rail a:first-child { border-left: 1px solid var(--line); }

.stage-rail a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 4px;
  background: transparent;
}

.stage-rail a:hover,
.stage-rail a:focus-visible { background: var(--paper); }
.stage-rail a.active::after { background: var(--brick); }

.stage-rail span {
  grid-row: 1 / 3;
  align-self: center;
  color: var(--brick-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  font-weight: 900;
}

.stage-rail strong {
  align-self: end;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.stage-rail small {
  color: var(--ink-soft);
  font-size: .65rem;
}

.stage-shopping { padding-top: 72px; }

.stage-shopping-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 480px);
  gap: 50px;
  align-items: end;
  margin-bottom: 68px;
}

.stage-shopping-head h2 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 4.7rem);
  line-height: .95;
  letter-spacing: -.04em;
}

.stage-shopping-head > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: .8rem;
}

.stage-product-group { margin-top: 62px; }

.stage-product-group-head {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}

.stage-product-group-head > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: var(--brick);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  font-weight: 900;
}

.stage-product-group-head h2 {
  margin: 0 0 2px;
  font-size: 1.65rem;
}

.stage-product-group-head p {
  margin: 0;
  color: var(--ink-soft);
  font-size: .75rem;
}

.manifest-product-list {
  border-top: 1px solid var(--ink);
}

.manifest-product {
  display: grid;
  grid-template-columns: 56px 164px minmax(0, 1fr) 214px;
  gap: 24px;
  align-items: stretch;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.manifest-product-index {
  padding-top: 8px;
  color: var(--brick-dark);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: .63rem;
  font-weight: 900;
  letter-spacing: .06em;
}

.manifest-product-image {
  min-height: 164px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
}

.manifest-product-image img {
  width: 100%;
  height: 164px;
  padding: 13px;
  object-fit: contain;
}

.manifest-product-copy {
  min-width: 0;
  padding: 4px 0;
}

.manifest-product-copy .source-row {
  margin-bottom: 10px;
  font-size: .6rem;
}

.manifest-product-copy h3 {
  max-width: 680px;
  margin: 0 0 9px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.48rem;
  line-height: 1.1;
}

.manifest-product-copy > p {
  max-width: 720px;
  margin: 0;
  color: var(--ink-soft);
  font-size: .78rem;
}

.manifest-fit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}

.manifest-fit p {
  margin: 0;
  padding-left: 11px;
  color: var(--ink-soft);
  border-left: 2px solid var(--line);
  font-size: .66rem;
}

.manifest-fit strong {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
  text-transform: uppercase;
}

.manifest-product-buy {
  display: grid;
  align-content: center;
  gap: 8px;
}

.manifest-price {
  display: grid;
  justify-items: end;
  margin-bottom: 7px;
}

.manifest-price strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  line-height: 1;
}

.manifest-price span {
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: .61rem;
}

.manifest-product-buy .button {
  min-height: 40px;
  padding: 0 12px;
  font-size: .66rem;
  white-space: nowrap;
}

.stage-disclosure {
  margin: 58px 0 0;
  padding: 22px 0;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: .7rem;
}

.stage-next {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 28px;
  align-items: center;
  margin-top: 44px;
  padding: 28px 32px;
  color: var(--white);
  background: var(--ink);
}

.stage-next > span {
  color: #f4cc7b;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.stage-next a {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  text-decoration: none;
}

.stage-next a strong { color: #f4cc7b; }
.stage-next--complete { background: #234653; }
.product-detail-actions { display: flex; flex-wrap: wrap; gap: 10px; }

@media (max-width: 1000px) {
  .shop-stage-hero .wrap { grid-template-columns: minmax(0, 1fr) 180px; gap: 34px; }
  .stage-hero-mark { min-height: 220px; }
  .stage-hero-mark span { font-size: 6rem; }
  .manifest-product { grid-template-columns: 44px 140px minmax(0, 1fr); }
  .manifest-product-image,
  .manifest-product-image img { height: 140px; min-height: 140px; }
  .manifest-product-buy {
    grid-column: 3;
    grid-template-columns: auto auto auto;
    align-items: center;
    justify-content: start;
  }
  .manifest-price { justify-items: start; margin: 0 6px 0 0; }
}

@media (max-width: 700px) {
  .shop-stage-hero .wrap {
    min-height: 0;
    grid-template-columns: 1fr;
    padding-top: 44px;
    padding-bottom: 44px;
  }
  .shop-stage-hero h1 { font-size: clamp(2.8rem, 15vw, 4.6rem); }
  .stage-hero-mark { display: none; }
  .stage-rail-wrap { position: static; }
  .stage-rail a {
    min-height: 70px;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 0;
    padding: 10px 8px;
    text-align: center;
  }
  .stage-rail span { grid-row: auto; font-size: 1rem; }
  .stage-rail strong { font-size: .66rem; }
  .stage-rail small { display: none; }
  .stage-shopping { padding-top: 48px; }
  .stage-shopping-head { grid-template-columns: 1fr; gap: 22px; margin-bottom: 48px; }
  .stage-shopping-head h2 { font-size: clamp(2.45rem, 12vw, 3.5rem); }
  .stage-product-group { margin-top: 48px; }
  .manifest-product {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 14px;
    padding: 22px 0 26px;
  }
  .manifest-product-index { grid-column: 1; grid-row: 1 / 4; }
  .manifest-product-image {
    grid-column: 2;
    height: 220px;
  }
  .manifest-product-image img { height: 220px; }
  .manifest-product-copy,
  .manifest-product-buy { grid-column: 2; }
  .manifest-product-copy h3 { font-size: 1.35rem; }
  .manifest-fit { grid-template-columns: 1fr; }
  .manifest-product-buy {
    grid-template-columns: 1fr;
    align-items: stretch;
    margin-top: 4px;
  }
  .manifest-price { margin: 0 0 9px; }
  .manifest-product-buy .button { white-space: normal; }
  .stage-next { grid-template-columns: 1fr; gap: 8px; padding: 24px; }
  .stage-next a { font-size: 1.18rem; }
  .product-detail-actions { display: grid; }
}
