:root {
  --ink: #17201d;
  --ink-soft: #4b5752;
  --paper: #f5f2eb;
  --paper-deep: #ece6da;
  --white: #fffefa;
  --forest: #173f32;
  --forest-deep: #0f2d24;
  --gold: #c99a3d;
  --gold-soft: #ead9b4;
  --line: #d8d2c7;
  --shadow: 0 24px 80px rgba(23, 32, 29, 0.1);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  background: var(--ink);
  color: white;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(23, 32, 29, 0.1);
  background: rgba(245, 242, 235, 0.94);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.wordmark {
  flex: 0 0 auto;
  color: var(--ink);
  font-size: 1.14rem;
  font-weight: 790;
  letter-spacing: -0.045em;
  text-decoration: none;
}

.wordmark span {
  color: var(--gold);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.main-nav a {
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 650;
  text-decoration: none;
}

.main-nav a:hover {
  color: var(--ink);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid var(--forest);
  border-radius: 999px;
  background: var(--forest);
  color: white;
  cursor: pointer;
  font-weight: 760;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition:
    transform 160ms ease,
    background 160ms ease;
}

.button:hover {
  background: var(--forest-deep);
  transform: translateY(-2px);
}

.button-small {
  min-height: 42px;
  padding: 10px 17px;
  font-size: 0.86rem;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 94px 0 0;
  background:
    radial-gradient(circle at 76% 25%, rgba(201, 154, 61, 0.16), transparent 28%),
    linear-gradient(180deg, #f8f6f0 0%, var(--paper) 100%);
}

.hero::before {
  position: absolute;
  top: 88px;
  right: -110px;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(23, 63, 50, 0.12);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.75fr);
  gap: 80px;
}

.hero-copy {
  padding-bottom: 80px;
}

.eyebrow,
.card-label,
.shop-type {
  margin: 0 0 14px;
  color: var(--forest);
  font-size: 0.75rem;
  font-weight: 820;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.08;
}

h1 {
  max-width: 850px;
  margin-bottom: 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 7.2vw, 6.8rem);
  font-weight: 500;
  letter-spacing: -0.058em;
}

h2 {
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4.4vw, 4.35rem);
  font-weight: 500;
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
  letter-spacing: -0.025em;
}

.hero-intro {
  max-width: 690px;
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.text-link {
  color: var(--forest);
  font-weight: 760;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin: 32px 0 0;
  padding: 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
  list-style: none;
}

.trust-list li::before {
  margin-right: 8px;
  color: var(--gold);
  content: "●";
  font-size: 0.62rem;
  vertical-align: 0.12em;
}

.operator-card {
  position: relative;
  padding: 38px;
  border-radius: var(--radius) var(--radius) 0 0;
  background: var(--forest);
  box-shadow: var(--shadow);
  color: #f7f5ef;
}

.operator-card .card-label {
  color: var(--gold-soft);
}

.operator-card h2 {
  max-width: 340px;
  margin-bottom: 18px;
  font-family: inherit;
  font-size: 1.85rem;
  font-weight: 750;
  letter-spacing: -0.045em;
}

.operator-card > p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.95rem;
}

.operator-card dl {
  margin: 30px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.operator-card dl div {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.operator-card dt {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.operator-card dd {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 670;
}

.hero-rule {
  height: 8px;
  background: linear-gradient(90deg, var(--gold) 0 18%, var(--forest) 18% 100%);
}

.section {
  padding: 110px 0;
}

.section-calculator {
  background: var(--white);
}

.section-heading {
  margin-bottom: 54px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(290px, 0.75fr);
  gap: 80px;
}

.split-heading > p,
.editorial-note p {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--ink-soft);
}

.calculator {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
  grid-template-columns: 1.12fr 0.88fr;
}

.print-header {
  display: none;
}

.calculator-fields {
  display: grid;
  align-content: start;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  padding: 42px;
}

.field-group {
  min-width: 0;
}

.field-wide {
  grid-column: 1 / -1;
}

.field-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 720;
}

.input-with-unit {
  display: flex;
  overflow: hidden;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
}

.input-with-unit:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 154, 61, 0.15);
}

.input-with-unit input {
  width: 100%;
  min-width: 0;
  padding: 13px 14px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 720;
}

.input-with-unit span {
  display: flex;
  min-width: 49px;
  align-items: center;
  justify-content: center;
  border-left: 1px solid var(--line);
  background: #f7f4ee;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 700;
}

.calculator-result {
  display: flex;
  flex-direction: column;
  padding: 42px;
  background: var(--forest);
  color: white;
}

.result-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 24px;
}

.calculator-result .card-label {
  color: var(--gold-soft);
}

.calculator-result h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.7rem;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.result-date {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.73rem;
}

.result-list {
  margin: 0;
}

.result-list > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.result-list dt {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.82rem;
}

.result-list dd {
  margin: 0;
  font-weight: 750;
  text-align: right;
}

.result-list .result-cost {
  margin-top: 10px;
  color: var(--gold-soft);
}

.result-list .result-cost dt {
  color: var(--gold-soft);
}

.result-disclaimer {
  margin: 22px 0 26px;
  color: rgba(255, 255, 255, 0.57);
  font-size: 0.76rem;
  line-height: 1.55;
}

.calculator-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: auto;
}

.button-light {
  border-color: var(--white);
  background: var(--white);
  color: var(--forest);
}

.button-light:hover {
  background: var(--gold-soft);
}

.reset-button {
  padding: 8px 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

.editorial-note {
  padding-left: 22px;
  border-left: 3px solid var(--gold);
}

.editorial-note strong {
  display: block;
  margin-bottom: 5px;
  font-size: 0.82rem;
}

.editorial-note p {
  font-size: 0.85rem;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.shop-card {
  display: flex;
  flex-direction: column;
  grid-column: span 2;
  min-height: 340px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 254, 250, 0.68);
}

.shop-card:nth-child(4),
.shop-card:nth-child(5) {
  grid-column: span 3;
}

.shop-card-featured {
  border-color: rgba(201, 154, 61, 0.58);
  background: var(--white);
  box-shadow: 0 18px 55px rgba(23, 32, 29, 0.08);
}

.shop-card-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.shop-card h3 {
  font-size: 1.36rem;
}

.shop-card p {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.shop-card .shop-address {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 740;
}

.shop-type {
  margin-bottom: 8px;
  font-size: 0.67rem;
}

.fit-badge {
  flex: 0 0 auto;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--gold-soft);
  color: #6e511a;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: auto 0 22px;
  padding: 20px 0 0;
  list-style: none;
}

.tag-list li {
  padding: 4px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.67rem;
  font-weight: 700;
}

.shop-card > a {
  color: var(--forest);
  font-size: 0.84rem;
  font-weight: 780;
  text-decoration: none;
}

.shop-card > a:hover {
  text-decoration: underline;
}

.source-note {
  display: grid;
  max-width: 860px;
  margin: 52px auto 0;
  align-items: start;
  grid-template-columns: auto 1fr;
  gap: 18px;
}

.source-mark {
  display: flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--forest);
  font-family: Georgia, serif;
  font-weight: 700;
}

.source-note h3 {
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.source-note p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.section-dark {
  background: var(--forest-deep);
  color: white;
}

.light-heading .eyebrow {
  color: var(--gold-soft);
}

.light-heading > p {
  color: rgba(255, 255, 255, 0.63);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.service-card {
  min-height: 285px;
  padding: 30px;
  background: var(--forest-deep);
}

.service-card > span {
  display: block;
  margin-bottom: 68px;
  color: var(--gold-soft);
  font-family: Georgia, serif;
  font-size: 0.85rem;
}

.service-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.85rem;
}

.dark-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  margin-top: 70px;
  padding-top: 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.dark-cta .eyebrow {
  color: var(--gold-soft);
}

.dark-cta h3 {
  margin-bottom: 10px;
  font-family: Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 500;
}

.dark-cta p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
}

.section-guide {
  background: var(--paper-deep);
}

.guide-grid {
  display: grid;
  grid-template-columns: minmax(270px, 0.7fr) minmax(400px, 1.3fr);
  gap: 90px;
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 18px;
  padding: 0 0 28px;
  border-bottom: 1px solid rgba(23, 32, 29, 0.14);
  margin-bottom: 28px;
}

.check-list li > span {
  display: flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--forest);
  color: white;
  font-size: 0.72rem;
  font-weight: 800;
}

.check-list h3 {
  margin-bottom: 6px;
}

.check-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.utility-link {
  grid-column: 2;
  color: var(--forest);
  font-weight: 780;
  text-decoration: none;
}

.utility-link:hover {
  text-decoration: underline;
}

.faq-section {
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(250px, 0.65fr) minmax(450px, 1.35fr);
  gap: 100px;
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  padding: 22px 40px 22px 0;
  cursor: pointer;
  font-weight: 760;
  list-style-position: outside;
}

.faq-list details p {
  max-width: 700px;
  padding: 0 0 24px;
  color: var(--ink-soft);
}

.contact-section {
  padding: 80px 0;
  background: var(--gold-soft);
}

.contact-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.contact-grid h2 {
  max-width: 720px;
  margin-bottom: 14px;
}

.contact-grid p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--ink-soft);
}

.contact-actions {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 12px;
}

.contact-handoff {
  max-width: 330px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.75rem;
  line-height: 1.5;
}

.button-outline {
  background: transparent;
  color: var(--forest);
}

.button-outline:hover {
  background: rgba(255, 255, 255, 0.45);
}

.site-footer {
  padding: 70px 0 24px;
  background: var(--ink);
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 70px;
}

.footer-wordmark {
  color: white;
  font-size: 1.35rem;
}

.footer-grid h2 {
  margin-bottom: 14px;
  font-family: inherit;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-grid p,
.footer-grid a {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.59);
  font-size: 0.78rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.7rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}

.legal-page {
  background: var(--white);
}

.legal-hero {
  padding: 92px 0 76px;
  background:
    radial-gradient(circle at 82% 18%, rgba(201, 154, 61, 0.18), transparent 28%),
    var(--paper);
}

.legal-hero-inner {
  max-width: 900px;
}

.legal-hero h1 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 6.4vw, 6rem);
}

.legal-hero p:not(.eyebrow) {
  max-width: 740px;
  margin-bottom: 24px;
  color: var(--ink-soft);
  font-size: 1.15rem;
}

.legal-hero span {
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 700;
}

.legal-section {
  padding: 96px 0 120px;
}

.legal-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(250px, 0.62fr) minmax(0, 1.38fr);
  gap: 90px;
}

.legal-summary {
  position: sticky;
  top: 108px;
  padding: 30px;
  border-left: 4px solid var(--gold);
  background: var(--paper);
}

.legal-summary p:not(.card-label) {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.legal-summary a,
.legal-content a {
  color: var(--forest);
  font-weight: 760;
}

.legal-content article {
  padding: 0 0 42px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 42px;
}

.legal-content article:last-child {
  margin-bottom: 0;
}

.legal-content h2 {
  margin-bottom: 18px;
  font-family: inherit;
  font-size: clamp(1.55rem, 2.7vw, 2.2rem);
  font-weight: 760;
  letter-spacing: -0.035em;
}

.legal-content p {
  max-width: 780px;
  color: var(--ink-soft);
}

.legal-sources ul {
  padding-left: 1.2em;
}

.legal-footer {
  padding-top: 10px;
}

.mobile-action-bar {
  display: none;
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  .hero {
    padding-top: 72px;
  }

  .hero-grid,
  .split-heading,
  .calculator,
  .guide-grid,
  .faq-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 38px;
  }

  .hero-copy {
    padding-bottom: 12px;
  }

  .operator-card {
    max-width: 640px;
  }

  .split-heading,
  .guide-grid,
  .faq-grid,
  .legal-grid {
    gap: 30px;
  }

  .legal-summary {
    position: static;
  }

  .shop-card,
  .shop-card:nth-child(4),
  .shop-card:nth-child(5) {
    grid-column: span 3;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .utility-link {
    grid-column: 1;
  }

  .contact-grid {
    align-items: start;
    flex-direction: column;
  }

  .contact-actions {
    flex-direction: row;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 58px;
    font-size: 16px;
  }

  .shell {
    width: min(100% - 28px, 1180px);
  }

  .header-inner {
    min-height: 64px;
  }

  .header-inner > .button {
    display: none;
  }

  .hero {
    padding-top: 54px;
  }

  .hero::before {
    width: 260px;
    height: 260px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .trust-list {
    display: grid;
    gap: 8px;
  }

  .operator-card {
    padding: 27px 23px;
  }

  .operator-card dl div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .calculator-fields {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .field-wide {
    grid-column: auto;
  }

  .calculator-result {
    padding: 28px 24px;
  }

  .calculator-result h3 {
    font-size: 2.2rem;
  }

  .result-heading,
  .result-list > div {
    align-items: start;
    flex-direction: column;
    gap: 2px;
  }

  .result-list dd {
    text-align: left;
  }

  .shop-grid {
    grid-template-columns: 1fr;
  }

  .shop-card,
  .shop-card:nth-child(4),
  .shop-card:nth-child(5) {
    grid-column: 1;
    min-height: 0;
  }

  .tag-list {
    margin-top: 6px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .service-card > span {
    margin-bottom: 36px;
  }

  .dark-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-actions {
    width: 100%;
    flex-direction: column;
  }

  .contact-handoff {
    max-width: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-links {
    flex-direction: column;
  }

  .mobile-action-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 90;
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    background: var(--forest-deep);
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.18);
  }

  .mobile-action-bar a {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.86rem;
    font-weight: 780;
    text-decoration: none;
  }

  .mobile-action-bar a + a {
    background: var(--gold);
    color: var(--ink);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

@media print {
  @page {
    margin: 15mm;
    size: A4 portrait;
  }

  body {
    padding: 0;
    background: white;
  }

  body > * {
    visibility: hidden;
  }

  [data-print-area],
  [data-print-area] * {
    visibility: visible;
  }

  [data-print-area] {
    position: absolute;
    inset: 0;
    display: block;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .print-header {
    display: block;
    padding: 0 0 20px;
    border-bottom: 2px solid var(--forest);
    margin-bottom: 24px;
  }

  .print-header p:first-child {
    margin-bottom: 6px;
    color: var(--forest);
    font-size: 10pt;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .print-header h2 {
    margin-bottom: 8px;
    font-size: 25pt;
  }

  .print-header p:last-child {
    max-width: 155mm;
    margin: 0;
    color: var(--ink-soft);
    font-size: 9pt;
  }

  .calculator-fields {
    display: grid;
    padding: 0 0 24px;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .field-wide {
    grid-column: auto;
  }

  .field-group label {
    font-size: 8pt;
  }

  .input-with-unit input,
  .input-with-unit span {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .calculator-actions {
    display: none;
  }

  .calculator-result {
    padding: 24px;
    border-radius: 12px;
  }

  .calculator-result {
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }
}
