:root {
  --green-900: #16451f;
  --green-800: #235f2a;
  --green-700: #2e7d32;
  --green-600: #388e3c;
  --green-300: #81c784;
  --green-100: #e8f5e9;
  --green-050: #f5faf5;
  --gold: #c9a451;
  --gold-soft: #f3ead3;
  --ink: #212121;
  --muted: #555555;
  --line: #dfe8df;
  --white: #ffffff;
  --page: #fbfcfa;
  --shadow: 0 18px 60px rgba(28, 71, 34, 0.1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid rgba(46, 125, 50, 0.14);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}
.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--green-800); }
.brand img { width: 50px; height: 50px; object-fit: contain; }
.brand span { display: grid; }
.brand strong { font-size: 1.08rem; letter-spacing: -0.01em; line-height: 1.2; }
.brand small { margin-top: 2px; color: var(--muted); font-size: 0.76rem; line-height: 1.25; }
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 999px;
  padding: 0 22px;
  font-size: 0.94rem;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--green-700); color: var(--white); box-shadow: 0 8px 26px rgba(46, 125, 50, 0.2); }
.button-primary:hover { background: var(--green-800); box-shadow: 0 12px 32px rgba(46, 125, 50, 0.26); }
.button span { font-size: 1.15rem; font-weight: 400; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 158px 0 42px;
  background:
    radial-gradient(circle at 92% 16%, rgba(201, 164, 81, 0.16), transparent 25%),
    radial-gradient(circle at 5% 75%, rgba(129, 199, 132, 0.2), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f8fbf7 100%);
}
.hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -210px;
  bottom: -230px;
  border: 1px solid rgba(46, 125, 50, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 68px rgba(46, 125, 50, 0.035), 0 0 0 136px rgba(46, 125, 50, 0.024);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(330px, 0.78fr);
  align-items: center;
  gap: clamp(44px, 7vw, 90px);
  min-height: 520px;
}
.eyebrow { margin: 0 0 14px; color: var(--green-700); font-size: 0.76rem; font-weight: 800; letter-spacing: 0.16em; line-height: 1.4; text-transform: uppercase; }
.hero h1 { max-width: 780px; margin: 0; color: var(--green-900); font-size: clamp(2.85rem, 5.5vw, 5.5rem); font-weight: 700; letter-spacing: -0.055em; line-height: 0.98; }
.hero-lead { max-width: 760px; margin: 30px 0 0; color: var(--muted); font-size: clamp(1.06rem, 1.4vw, 1.24rem); line-height: 1.75; }
.hero-points { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.hero-points span { border: 1px solid rgba(46, 125, 50, 0.18); border-radius: 999px; background: rgba(255, 255, 255, 0.78); color: var(--green-800); padding: 8px 14px; font-size: 0.84rem; font-weight: 700; }
.hero-mark { position: relative; min-height: 430px; display: grid; place-items: center; }
.hero-mark-ring { width: min(390px, 100%); aspect-ratio: 1; display: grid; place-items: center; border: 1px solid rgba(46, 125, 50, 0.18); border-radius: 50%; background: rgba(255, 255, 255, 0.72); box-shadow: var(--shadow), inset 0 0 0 26px rgba(232, 245, 233, 0.58); }
.hero-mark-ring img { width: 70%; height: 70%; object-fit: contain; filter: drop-shadow(0 20px 30px rgba(109, 80, 24, 0.17)); }

.section { padding: 110px 0; }
.section-tint { background: var(--green-050); }
.section-heading { max-width: 720px; margin-bottom: 52px; }
.section-heading h2, .results-section h2, .location-copy h2, .insurance-grid h2, .faq-intro h2, .closing-card h2, .privacy-hero h1 { margin: 0; color: var(--green-900); font-size: clamp(2.15rem, 4vw, 3.75rem); letter-spacing: -0.045em; line-height: 1.06; }
.section-heading > p:last-child { margin: 20px 0 0; color: var(--muted); font-size: 1.08rem; }

.exam-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.exam-card { position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: var(--white); padding: clamp(28px, 4vw, 48px); box-shadow: 0 15px 40px rgba(28, 71, 34, 0.05); }
.exam-card-accent { background: linear-gradient(155deg, #fff 0%, #f2f8f2 100%); }
.card-number { margin-bottom: 34px; color: var(--gold); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.12em; }
.exam-card h3 { max-width: 430px; margin: 0; color: var(--green-900); font-size: clamp(1.55rem, 2.5vw, 2.15rem); letter-spacing: -0.025em; line-height: 1.2; }
.exam-card > p { min-height: 110px; margin: 20px 0 0; color: var(--muted); }
.procedure-group { margin-top: 30px; border-top: 1px solid var(--line); padding-top: 24px; }
.procedure-group h4 { margin: 0 0 14px; color: var(--green-800); font-size: 0.84rem; letter-spacing: 0.04em; text-transform: uppercase; }
.procedure-group ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px 18px; margin: 0; padding: 0; list-style: none; }
.procedure-group li { position: relative; padding-left: 16px; color: var(--muted); font-size: 0.93rem; }
.procedure-group li::before { content: ""; position: absolute; left: 0; top: 0.7em; width: 5px; height: 5px; border-radius: 50%; background: var(--green-300); }

.journey-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.journey-grid article { border-top: 3px solid var(--green-700); border-radius: 0 0 22px 22px; background: var(--white); padding: 32px; box-shadow: 0 12px 35px rgba(28, 71, 34, 0.06); }
.journey-grid article > span { color: var(--green-600); font-size: 0.76rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.journey-grid h3 { margin: 12px 0 0; color: var(--green-900); font-size: 1.24rem; line-height: 1.3; }
.journey-grid p { margin: 16px 0 0; color: var(--muted); font-size: 0.93rem; }
.companion-note { margin: 26px 0 0; border-left: 3px solid var(--gold); color: var(--green-900); padding: 7px 0 7px 20px; font-weight: 700; }
.structure-grid { display: grid; grid-template-columns: minmax(0, 1.75fr) minmax(260px, 0.7fr); gap: 18px; margin-top: 58px; }
.structure-grid figure { position: relative; overflow: hidden; margin: 0; border-radius: 24px; background: #dfe6df; }
.structure-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.structure-grid figure:hover img { transform: scale(1.025); }
.structure-main { min-height: 540px; }
.structure-stack { display: grid; grid-template-rows: repeat(2, minmax(0, 1fr)); gap: 18px; }
.structure-grid figcaption { position: absolute; left: 18px; bottom: 18px; border-radius: 999px; background: rgba(22, 69, 31, 0.9); color: var(--white); padding: 8px 14px; font-size: 0.82rem; font-weight: 700; }

.split-layout { display: grid; grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr); align-items: start; gap: clamp(50px, 8vw, 110px); }
.split-layout .section-heading { position: sticky; top: 120px; margin-bottom: 0; }
.steps-list { margin: 0; padding: 0; list-style: none; }
.steps-list li { display: grid; grid-template-columns: 54px 1fr; gap: 16px; border-bottom: 1px solid var(--line); padding: 22px 0; }
.steps-list li:first-child { border-top: 1px solid var(--line); }
.steps-list span { color: var(--gold); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.1em; }
.steps-list p { margin: 0; color: var(--muted); }
.steps-list strong { color: var(--green-900); }
.guidance-note { margin: 46px 0 0 auto; max-width: 690px; border-radius: 18px; background: var(--green-100); color: var(--green-900); padding: 20px 24px; font-size: 0.93rem; }

.results-section { background: var(--green-900); color: #fff; }
.results-grid { display: grid; grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr); gap: clamp(50px, 8vw, 110px); align-items: center; }
.results-section h2 { color: #fff; }
.results-subtitle { margin: 18px 0 0; color: rgba(255,255,255,.68); }
.results-grid > p { margin: 0; border-left: 1px solid rgba(255,255,255,.28); padding-left: clamp(30px, 5vw, 70px); color: rgba(255,255,255,.83); font-size: 1.07rem; line-height: 1.85; }

.differentials-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.differentials-grid article { border: 1px solid var(--line); border-radius: 22px; background: #fff; padding: 28px; }
.differentials-grid article > span { color: var(--gold); font-size: .76rem; font-weight: 800; letter-spacing: .1em; }
.differentials-grid h3 { margin: 28px 0 0; color: var(--green-900); font-size: 1.1rem; line-height: 1.35; }
.differentials-grid p { margin: 13px 0 0; color: var(--muted); font-size: .91rem; }

.team-section { background: linear-gradient(180deg, #f6faf6 0%, #fff 100%); }
.doctors-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.doctors-grid article { display: grid; grid-template-columns: 76px 1fr; align-items: center; gap: 4px 20px; border: 1px solid var(--line); border-radius: 22px; background: #fff; padding: 26px; }
.doctor-initials { grid-row: 1 / span 4; width: 66px; height: 66px; display: grid; place-items: center; border-radius: 50%; background: var(--green-100); color: var(--green-800); font-size: .9rem; font-weight: 800; letter-spacing: .08em; }
.doctors-grid h3 { margin: 0; color: var(--green-900); font-size: 1.1rem; }
.doctors-grid p { margin: 0; color: var(--muted); font-size: .88rem; }
.doctors-grid article > span { color: var(--green-700); font-size: .82rem; font-weight: 700; }
.doctor-links { display: flex; flex-wrap: wrap; gap: 8px 16px; margin-top: 8px; }
.doctor-links a { color: var(--green-700); font-size: .78rem; font-weight: 800; text-decoration: underline; text-decoration-color: var(--green-300); text-underline-offset: 4px; }
.doctor-links a:hover { color: var(--green-900); }

.location-grid { display: grid; grid-template-columns: minmax(290px, .75fr) minmax(0, 1.25fr); gap: clamp(40px, 7vw, 90px); align-items: stretch; }
.location-copy address { margin: 28px 0 0; color: var(--muted); font-style: normal; font-size: 1.05rem; }
.location-detail { margin-top: 28px; border-top: 1px solid var(--line); padding-top: 20px; }
.location-detail strong { color: var(--green-900); }
.location-detail p { margin: 5px 0 0; color: var(--muted); }
.map-frame { overflow: hidden; border: 1px solid var(--line); border-radius: 26px; background: #fff; min-height: 520px; }
.map-frame iframe { width: 100%; height: 465px; border: 0; filter: saturate(.72) contrast(.95); }
.map-frame p { margin: 0; padding: 12px 18px; color: var(--muted); font-size: .8rem; }

.insurance-grid { display: grid; grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr); gap: clamp(50px, 8vw, 110px); }
.insurance-grid > div:first-child > p:last-child { color: var(--muted); font-size: 1.05rem; }
.insurance-list article { display: grid; grid-template-columns: minmax(180px, .7fr) 1fr; gap: 24px; border-top: 1px solid var(--line); padding: 23px 0; }
.insurance-list article > span { color: var(--green-900); font-weight: 700; }
.insurance-list article p { margin: 0; color: var(--muted); }
.insurance-note { border-radius: 15px; background: #fff; color: var(--green-900); padding: 16px 18px; font-size: .9rem; }

.faq-grid { display: grid; grid-template-columns: minmax(260px, .65fr) minmax(0, 1.35fr); gap: clamp(50px, 8vw, 110px); align-items: start; }
.faq-intro { position: sticky; top: 120px; }
.faq-intro > p:last-child { color: var(--muted); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); padding: 0; }
.faq-list summary { position: relative; cursor: pointer; list-style: none; color: var(--green-900); padding: 24px 54px 24px 0; font-weight: 700; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 4px; top: 19px; width: 32px; height: 32px; display: grid; place-items: center; border: 1px solid var(--green-300); border-radius: 50%; color: var(--green-700); font-size: 1.3rem; font-weight: 400; transition: transform 160ms ease; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { margin: -4px 54px 24px 0; color: var(--muted); }

.closing-section { padding: 0 0 110px; }
.closing-card { position: relative; overflow: hidden; border-radius: 34px; background: linear-gradient(135deg, var(--green-900), var(--green-700)); color: #fff; padding: clamp(38px, 7vw, 82px); text-align: center; }
.closing-card::before { content: ""; position: absolute; width: 360px; height: 360px; left: -170px; top: -180px; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; box-shadow: 0 0 0 56px rgba(255,255,255,.035), 0 0 0 112px rgba(255,255,255,.025); }
.closing-card .eyebrow { color: #d9c07f; }
.closing-card h2 { position: relative; color: #fff; }
.closing-card > p:not(.eyebrow) { max-width: 640px; margin: 22px auto 30px; color: rgba(255,255,255,.78); }
.closing-card .button-primary { position: relative; background: #fff; color: var(--green-800); box-shadow: none; }
.closing-card .button-primary:hover { background: var(--green-100); }
.closing-card small { display: block; margin-top: 16px; color: rgba(255,255,255,.62); }

.site-footer { background: #0f3717; color: rgba(255,255,255,.75); padding: 68px 0 24px; }
.footer-grid { display: grid; grid-template-columns: .9fr 1fr 1.1fr; gap: 56px; }
.site-footer .brand { color: #fff; }
.site-footer .brand small { color: rgba(255,255,255,.6); }
.footer-brand > p { margin: 22px 0 0; max-width: 290px; }
.footer-grid h2 { margin: 0 0 16px; color: #fff; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-grid p { margin: 6px 0; font-size: .84rem; }
.footer-legal { display: flex; justify-content: space-between; gap: 40px; border-top: 1px solid rgba(255,255,255,.12); margin-top: 48px; padding-top: 24px; font-size: .78rem; }
.footer-legal p { max-width: 720px; margin: 0; }
.footer-legal a { color: #e8d39a; text-decoration: underline; text-underline-offset: 4px; }
.footer-legal-links { display: flex; flex: 0 0 auto; flex-direction: column; align-items: flex-end; gap: 6px; }

.cookie-banner { position: fixed; right: 14px; bottom: 14px; z-index: 100; width: min(390px, calc(100% - 28px)); border: 1px solid rgba(46, 125, 50, .2); border-radius: 14px; background: rgba(255, 255, 255, .97); padding: 12px 13px; box-shadow: 0 12px 38px rgba(22, 69, 31, .18); backdrop-filter: blur(14px); }
.cookie-banner strong { display: block; color: var(--green-900); font-size: .8rem; line-height: 1.25; }
.cookie-banner p { margin: 4px 0 0; color: var(--muted); font-size: .71rem; line-height: 1.45; }
.cookie-banner p a { color: var(--green-700); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 9px; }
.cookie-button { min-height: 30px; border: 1px solid var(--line); border-radius: 999px; background: #fff; color: var(--green-800); padding: 5px 10px; font: inherit; font-size: .68rem; font-weight: 800; line-height: 1; cursor: pointer; }
.cookie-button:hover { border-color: var(--green-300); background: var(--green-050); }
.cookie-button-primary { border-color: var(--green-700); background: var(--green-700); color: #fff; }
.cookie-button-primary:hover { border-color: var(--green-800); background: var(--green-800); }
.cookie-button-quiet { border-color: transparent; background: transparent; }
.cookie-overlay { position: fixed; inset: 0; z-index: 110; display: grid; place-items: center; background: rgba(12, 35, 17, .34); padding: 18px; }
.cookie-dialog { width: min(460px, 100%); max-height: min(640px, calc(100vh - 36px)); overflow: auto; border: 1px solid var(--line); border-radius: 20px; background: #fff; padding: 22px; box-shadow: 0 24px 80px rgba(15, 55, 23, .28); }
.cookie-dialog-header { display: flex; align-items: start; justify-content: space-between; gap: 20px; }
.cookie-dialog-header p { margin: 0 0 4px; color: var(--green-700); font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.cookie-dialog h2 { margin: 0; color: var(--green-900); font-size: 1.35rem; line-height: 1.15; }
.cookie-dialog-close { width: 30px; height: 30px; flex: 0 0 auto; border: 1px solid var(--line); border-radius: 50%; background: #fff; color: var(--green-800); font-size: 1rem; cursor: pointer; }
.cookie-dialog-intro { margin: 12px 0 0; color: var(--muted); font-size: .78rem; line-height: 1.55; }
.cookie-categories { display: grid; gap: 8px; margin-top: 16px; }
.cookie-category { display: grid; grid-template-columns: 1fr auto; gap: 8px 18px; align-items: center; border: 1px solid var(--line); border-radius: 14px; padding: 12px 13px; }
.cookie-category strong { color: var(--green-900); font-size: .8rem; }
.cookie-category p { grid-column: 1 / -1; margin: 0; color: var(--muted); font-size: .7rem; line-height: 1.45; }
.cookie-category-status { color: var(--green-700); font-size: .67rem; font-weight: 800; }
.cookie-switch { display: inline-flex; align-items: center; gap: 7px; color: var(--green-800); font-size: .7rem; font-weight: 700; cursor: pointer; }
.cookie-switch input { width: 16px; height: 16px; accent-color: var(--green-700); }
.cookie-dialog .cookie-actions { justify-content: flex-end; margin-top: 16px; }

@media (max-width: 980px) {
  .hero-grid, .split-layout, .results-grid, .location-grid, .insurance-grid, .faq-grid { grid-template-columns: 1fr; }
  .hero-mark { min-height: 360px; }
  .hero-mark-ring { width: 340px; }
  .journey-grid { grid-template-columns: 1fr; }
  .structure-grid { grid-template-columns: 1fr; }
  .structure-main { min-height: 440px; }
  .structure-stack { grid-template-columns: repeat(2, 1fr); grid-template-rows: none; min-height: 300px; }
  .split-layout .section-heading, .faq-intro { position: static; }
  .results-grid > p { border-left: 0; border-top: 1px solid rgba(255,255,255,.28); padding: 34px 0 0; }
  .differentials-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, 1180px); }
  .header-inner { min-height: 70px; gap: 10px; }
  .brand { gap: 8px; }
  .brand img { width: 42px; height: 42px; }
  .brand small { display: none; }
  .brand strong { font-size: .93rem; }
  .header-inner .button { min-height: 42px; padding: 0 14px; font-size: .76rem; }
  .header-inner .button span { display: none; }
  .hero { padding-top: 125px; }
  .hero h1 { font-size: clamp(2.55rem, 13vw, 4rem); }
  .hero-mark { min-height: 320px; }
  .hero-mark-ring { width: min(290px, 88vw); }
  .section { padding: 80px 0; }
  .exam-grid, .differentials-grid, .doctors-grid { grid-template-columns: 1fr; }
  .exam-card > p { min-height: auto; }
  .procedure-group ul { grid-template-columns: 1fr; }
  .structure-main { min-height: 340px; }
  .structure-stack { grid-template-columns: 1fr; min-height: auto; }
  .structure-stack figure { min-height: 310px; }
  .map-frame { min-height: 430px; }
  .map-frame iframe { height: 380px; }
  .insurance-list article { grid-template-columns: 1fr; gap: 4px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-brand { grid-column: auto; }
  .footer-legal { flex-direction: column; }
  .footer-legal-links { align-items: flex-start; }
  .cookie-banner { right: 10px; bottom: 10px; width: calc(100% - 20px); }
  .cookie-actions .cookie-button { flex: 1 1 auto; }
  .cookie-dialog { padding: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .001ms !important; }
}

.privacy-main { padding-top: 78px; background: #fff; }
.privacy-hero { background: linear-gradient(160deg, #f4faf4 0%, #fff 72%); padding: 86px 0 70px; border-bottom: 1px solid var(--line); }
.privacy-hero-inner { max-width: 900px; }
.back-link { display: inline-block; margin-bottom: 44px; color: var(--green-700); font-size: .88rem; font-weight: 700; }
.privacy-hero h1 { max-width: 820px; font-size: clamp(2.45rem, 5vw, 4.5rem); }
.privacy-hero h1 + p { max-width: 720px; margin: 24px 0 0; color: var(--muted); font-size: 1.03rem; }
.privacy-hero-inner > span { display: inline-block; margin-top: 20px; color: var(--green-700); font-size: .82rem; font-weight: 700; }
.privacy-layout { display: grid; grid-template-columns: 96px minmax(0, 820px); justify-content: center; gap: clamp(40px, 7vw, 90px); padding-top: 90px; padding-bottom: 110px; }
.privacy-nav { position: sticky; top: 116px; align-self: start; display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.privacy-nav strong { grid-column: 1 / -1; margin-bottom: 8px; color: var(--muted); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; }
.privacy-nav a { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--green-700); font-size: .72rem; font-weight: 800; }
.privacy-nav a:hover { border-color: var(--green-300); background: var(--green-100); }
.privacy-content section { scroll-margin-top: 110px; border-bottom: 1px solid var(--line); padding: 0 0 58px; margin-bottom: 58px; }
.privacy-content h2 { display: grid; grid-template-columns: 50px 1fr; align-items: baseline; gap: 12px; margin: 0 0 28px; color: var(--green-900); font-size: clamp(1.45rem, 2.6vw, 2rem); line-height: 1.25; }
.privacy-content h2 span { color: var(--gold); font-size: .75rem; letter-spacing: .1em; }
.privacy-content h3 { margin: 30px 0 10px; color: var(--green-800); font-size: 1.02rem; }
.privacy-content p { color: var(--muted); }
.privacy-content strong { color: var(--ink); }
.privacy-content ol, .privacy-content ul { color: var(--muted); padding-left: 24px; }
.privacy-content li { margin: 10px 0; padding-left: 6px; }
.definition-list { display: grid; gap: 12px; margin-top: 28px; }
.definition-list > div { border: 1px solid var(--line); border-radius: 16px; background: var(--green-050); padding: 18px 20px; }
.definition-list dt { color: var(--green-900); font-weight: 700; }
.definition-list dd { margin: 6px 0 0; color: var(--muted); font-size: .93rem; }
.privacy-content aside { margin-top: 26px; border-left: 3px solid var(--gold); background: #fcf8ef; color: #614d28; padding: 18px 22px; font-size: .93rem; }
.privacy-emphasis { border-radius: 14px; background: var(--green-100); color: var(--green-900) !important; padding: 16px 18px; font-weight: 700; }
.privacy-signoff { margin-top: 42px; color: var(--green-800) !important; font-size: .86rem; text-align: right; }
.normative-links { display: grid; gap: 9px; border-radius: 18px; background: var(--green-050); padding: 24px; }
.normative-links strong { color: var(--green-900); font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; }
.normative-links a { color: var(--green-700); font-size: .88rem; text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 720px) {
  .privacy-main { padding-top: 70px; }
  .privacy-hero { padding: 58px 0 48px; }
  .back-link { margin-bottom: 32px; }
  .privacy-layout { grid-template-columns: 1fr; padding-top: 62px; padding-bottom: 80px; }
  .privacy-nav { position: static; grid-template-columns: repeat(6, 40px); overflow-x: auto; padding-bottom: 8px; }
  .privacy-nav strong { grid-column: 1 / -1; }
  .privacy-content h2 { grid-template-columns: 38px 1fr; }
}
