:root {
  color-scheme: light;
  --navy: #002B5B;
  --silver: #C0C0C0;
  --white: #FFFFFF;
  --ice: #E6F0FA;
  --graphite: #2B2B2B;
  --navy-a92: rgba(0, 43, 91, 0.92);
  --navy-a72: rgba(0, 43, 91, 0.72);
  --navy-a55: rgba(0, 43, 91, 0.55);
  --navy-a08: rgba(0, 43, 91, 0.08);
  --ice-a10: rgba(230, 240, 250, 0.10);
  --ice-a25: rgba(230, 240, 250, 0.25);
  --silver-a40: rgba(192, 192, 192, 0.4);
  --sans: "Montserrat", Arial, Helvetica, sans-serif;
  --serif: "Merriweather", Georgia, "Times New Roman", serif;
  --measure: 66ch;
  --wrap: 1120px;
  --gutter: 20px;
}
html { background: var(--white); scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { transition: none !important; } }
body {
  margin: 0; background: var(--white); color: var(--graphite);
  font-family: var(--serif); font-size: 17px; line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
*, *::before, *::after { box-sizing: border-box; }
img, svg { max-width: 100%; }
img { height: auto; }
a { color: var(--navy); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { text-decoration-thickness: 2px; }
:focus-visible { outline: 3px solid var(--navy); outline-offset: 3px; }
.on-navy :focus-visible, .site-header :focus-visible, .site-footer :focus-visible, .hero :focus-visible, .cta-band :focus-visible { outline-color: var(--ice); }
.skip { position: absolute; left: -9999px; top: 0; background: var(--white); color: var(--navy); padding: 10px 14px; font-family: var(--sans); z-index: 100; }
.skip:focus { left: 12px; top: 12px; }
h1, h2, h3, h4 { font-family: var(--sans); color: var(--navy); line-height: 1.15; margin: 0 0 0.5em; text-wrap: balance; }
h1 { font-weight: 800; font-size: clamp(30px, 4.2vw, 46px); letter-spacing: -0.01em; }
h1.stacked { font-size: clamp(27px, 3.7vw, 41px); line-height: 1.22; max-width: 22ch; }
h2 { font-weight: 700; font-size: clamp(24px, 3vw, 34px); }
h3 { font-weight: 700; font-size: 21px; }
h4 { font-weight: 600; font-size: 16px; }
p { margin: 0 0 1em; max-width: var(--measure); }
p:last-child { margin-bottom: 0; }
.lead { font-size: 20px; line-height: 1.55; }
.eyebrow { font-family: var(--sans); font-weight: 700; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--navy); margin: 0 0 14px; }
.hero .eyebrow, .navy .eyebrow, .cta-band .eyebrow, .footer .eyebrow { color: var(--silver); }
.caption { font-family: var(--serif); font-weight: 300; font-size: 14px; color: var(--graphite); }
.micro { font-family: var(--sans); font-size: 13px; color: var(--graphite); }
.on-navy h1, .on-navy h2, .on-navy h3, .on-navy h4 { color: var(--white); }
.on-navy p, .on-navy li, .on-navy .caption, .on-navy .micro { color: var(--ice); }
.on-navy a { color: var(--white); }
.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: 84px; }
.section.tight { padding-block: 56px; }
.section.ice { background: var(--ice); }
.section-head { max-width: 780px; margin-bottom: 44px; }

.btn { font-family: var(--sans); font-weight: 600; font-size: 15px; line-height: 1; display: inline-block; padding: 15px 22px; border-radius: 4px; text-decoration: none; border: 1px solid transparent; cursor: pointer; transition: background 0.15s ease, border-color 0.15s ease; }
.btn-primary { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-primary:hover { background: var(--navy-a92); }
.btn-secondary { background: var(--white); color: var(--navy); border-color: var(--silver); }
.btn-secondary:hover { border-color: var(--navy); }
.btn-light { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-light:hover { background: var(--ice); border-color: var(--ice); }
.btn-ghost { background: transparent; color: var(--white); border-color: var(--ice-a25); }
.btn-ghost:hover { border-color: var(--ice); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 28px; }
.text-link { font-family: var(--sans); font-weight: 600; font-size: 15px; color: var(--navy); text-decoration: none; border-bottom: 2px solid var(--silver); padding-bottom: 2px; }
.text-link:hover { border-bottom-color: var(--navy); }

.site-header { position: sticky; top: env(safe-area-inset-top, 0px); z-index: 50; background: var(--navy); border-bottom: 1px solid var(--ice-a10); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 68px; position: relative; }
.wordmark { font-family: var(--sans); font-weight: 700; font-size: 12px; letter-spacing: 0.15em; color: var(--white); text-decoration: none; white-space: nowrap; }
.site-nav { display: flex; align-items: center; gap: 20px; }
.site-nav a { font-family: var(--sans); font-weight: 600; font-size: 13.5px; color: var(--white); text-decoration: none; padding: 6px 0; border-bottom: 2px solid transparent; white-space: nowrap; }
.site-nav a:hover { border-bottom-color: var(--silver); }
.site-nav a[aria-current="page"] { border-bottom-color: var(--ice); }
.site-nav a.btn { padding: 11px 15px; font-size: 13.5px; border-bottom: 0; color: var(--navy); background: var(--white); border-color: var(--white); }
.site-nav a.btn:hover { background: var(--ice); border-color: var(--ice); }
.lang { font-family: var(--sans); font-weight: 600; font-size: 12px; letter-spacing: 0.08em; color: var(--silver); border: 1px solid var(--ice-a25); border-radius: 4px; padding: 6px 9px; text-decoration: none; }
.lang:hover { color: var(--white); border-color: var(--ice); }
.menu-btn { display: none; font-family: var(--sans); font-weight: 600; font-size: 14px; color: var(--white); background: transparent; border: 1px solid var(--ice-a25); border-radius: 4px; padding: 9px 14px; cursor: pointer; }
@media (max-width: 1220px) {
  .menu-btn { display: inline-block; }
  .site-nav { display: none; position: absolute; top: 100%; left: calc(-1 * var(--gutter)); right: calc(-1 * var(--gutter)); flex-direction: column; align-items: flex-start; gap: 4px; background: var(--navy); padding: 12px var(--gutter) 22px; border-bottom: 1px solid var(--ice-a25); }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 10px 0; font-size: 16px; }
  .site-nav .btn { margin-top: 10px; }
  .site-nav .lang { margin-top: 6px; }
}

.hero { background: var(--navy); position: relative; overflow: hidden; padding-block: 76px 64px; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, var(--navy-a92) 0%, var(--navy-a72) 58%, var(--navy-a55) 100%); }
.hero .eyebrow { color: var(--silver); }
.hero-inner { position: relative; display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr); gap: 48px; align-items: center; }
.hero-inner.single { grid-template-columns: minmax(0, 1fr); }
.hero h1 { color: var(--white); }
.hero h1:not(.stacked) { max-width: 20ch; }
.hero .lead, .hero p { color: var(--ice); }
.panel { background: var(--navy-a55); border: 1px solid var(--silver-a40); border-radius: 12px; padding: 30px 32px; backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.panel.tightpad { padding: 24px 26px; }
.sentence-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.sentence-list a { display: block; text-decoration: none; padding: 11px 0 11px 16px; border-left: 2px solid var(--silver-a40); transition: border-color 0.15s ease; }
.sentence-list a:hover { border-left-color: var(--ice); }
.sentence-list .verb { font-family: var(--sans); font-weight: 700; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--silver); display: block; margin-bottom: 4px; }
.sentence-list .sentence { font-family: var(--serif); font-size: 15.5px; line-height: 1.5; color: var(--white); }
@media (max-width: 880px) { .hero-inner { grid-template-columns: minmax(0, 1fr); gap: 30px; } .hero { padding-block: 54px 46px; } }
@media (max-width: 620px) {
  .hero { padding-block: 34px 34px; }
  .hero .lead { font-size: 17.5px; }
  .hero .btn-row { margin-top: 20px; }
  .hero h1.stacked { font-size: 25px; }
  .hero p { font-size: 15.5px; }
}
@media (max-width: 430px) {
  .home .hero-inner > div:first-child { display: flex; flex-direction: column; }
  .home .hero-inner > div:first-child > .eyebrow { order: 1; }
  .home .hero-inner > div:first-child > h1 { order: 2; }
  .home .hero-inner > div:first-child > .lead { order: 3; margin-bottom: 0; }
  .home .hero-inner > div:first-child > .btn-row { order: 4; margin-top: 22px; }
  .home .hero-inner > div:first-child > p:not(.lead):not(.eyebrow) { order: 5; margin: 24px 0 0; }
  .hero h1.stacked { font-size: 23.5px; line-height: 1.24; }
  .hero .lead { font-size: 16.5px; }
  .hero { padding-block: 28px 30px; }
}

.stats { background: var(--navy); border-top: 1px solid var(--ice-a25); }
.stats-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; padding-block: 30px; }
.stat { border-left: 1px solid var(--silver-a40); padding-left: 18px; }
.stat .num { font-family: var(--sans); font-weight: 800; font-size: 34px; color: var(--ice); line-height: 1; font-variant-numeric: tabular-nums; }
.stat .cap { font-family: var(--serif); font-size: 14px; color: var(--white); margin-top: 8px; line-height: 1.45; }
@media (max-width: 700px) { .stats-grid { grid-template-columns: minmax(0, 1fr); gap: 16px; } }

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.card { background: var(--white); border: 1px solid var(--silver); border-radius: 12px; padding: 26px 26px 24px; display: flex; flex-direction: column; gap: 14px; }
.card .verb { font-family: var(--sans); font-weight: 700; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--navy); }
.card .sentence { font-family: var(--serif); font-size: 19px; line-height: 1.45; color: var(--navy); margin: 0; }
.card .step { font-family: var(--serif); font-size: 15px; color: var(--graphite); margin: 0; flex: 1; }
.card .step strong { font-family: var(--sans); font-weight: 600; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); display: block; margin-bottom: 4px; }
.card h3 { margin-bottom: 0; }
.card p.body { font-size: 15px; margin: 0; }
.two-col { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 44px; }
.two-col.lean { grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr); align-items: start; }
@media (max-width: 860px) { .two-col, .two-col.lean { grid-template-columns: minmax(0, 1fr); gap: 32px; } }
.def-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.def-list li { padding-left: 18px; border-left: 2px solid var(--silver); font-size: 16px; }
.def-list b { font-family: var(--sans); font-weight: 700; color: var(--navy); }

.proof-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 28px; }
.proof { border-top: 2px solid var(--navy); padding-top: 18px; }
.proof .num { font-family: var(--sans); font-weight: 800; font-size: 40px; color: var(--navy); line-height: 1; font-variant-numeric: tabular-nums; }
.proof .what { font-family: var(--serif); font-size: 15px; color: var(--graphite); margin-top: 10px; line-height: 1.5; }
.proof .who { font-family: var(--sans); font-weight: 600; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy); margin-top: 10px; }
.proof a { text-decoration: none; }
@media (max-width: 900px) { .proof-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px) { .proof-grid { grid-template-columns: minmax(0, 1fr); } }
.quotes { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 36px; margin-top: 52px; }
@media (max-width: 800px) { .quotes { grid-template-columns: minmax(0, 1fr); } }
blockquote { margin: 0; padding-left: 20px; border-left: 2px solid var(--navy); font-family: var(--serif); font-size: 17px; line-height: 1.6; color: var(--graphite); }
blockquote cite { display: block; margin-top: 12px; font-style: normal; font-family: var(--sans); font-weight: 600; font-size: 13px; color: var(--navy); }
.on-navy blockquote { border-left-color: var(--ice); color: var(--ice); }
.on-navy blockquote cite { color: var(--white); }

.beat { display: grid; grid-template-columns: 220px minmax(0, 1fr); gap: 36px; padding-block: 40px; border-top: 1px solid var(--silver); }
.beat:first-of-type { border-top: 0; padding-top: 0; }
.beat .label { font-family: var(--sans); font-weight: 700; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--navy); padding-top: 6px; }
.beat .content { max-width: 780px; }
@media (max-width: 780px) { .beat { grid-template-columns: minmax(0, 1fr); gap: 12px; padding-block: 30px; } }
.voice { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.voice li { font-family: var(--serif); font-size: 19px; line-height: 1.5; color: var(--navy); padding-left: 18px; border-left: 2px solid var(--silver); }
.intro { max-width: 780px; padding-block: 44px 8px; }
.intro p { font-size: 19px; line-height: 1.6; }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; margin-top: 8px; }
.steps .card { padding: 22px; }
.after-steps { margin-top: 22px; }
.sequence { list-style: none; margin: 0; padding: 0; display: grid; gap: 22px; counter-reset: seq; }
.sequence li { display: grid; grid-template-columns: 44px minmax(0, 1fr); gap: 16px; align-items: start; counter-increment: seq; }
.sequence li::before { content: counter(seq); font-family: var(--sans); font-weight: 800; font-size: 22px; color: var(--navy); line-height: 1.1; font-variant-numeric: tabular-nums; }
.sequence h4 { margin-bottom: 4px; }
.sequence p { font-size: 16px; }
.marks { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.marks li { position: relative; padding-left: 22px; font-size: 16px; }
.marks li::before { content: ""; position: absolute; left: 0; top: 0.62em; width: 8px; height: 8px; background: var(--navy); }
.marks.quiet li::before { background: var(--silver); }
.fit { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 36px; }
.fit h4 { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; margin-bottom: 14px; }
@media (max-width: 760px) { .fit { grid-template-columns: minmax(0, 1fr); } }
.table-wrap { overflow-x: auto; border: 1px solid var(--silver); border-radius: 8px; }
table { width: 100%; border-collapse: collapse; min-width: 640px; }
th, td { text-align: left; vertical-align: top; padding: 14px 16px; border-bottom: 1px solid var(--silver); border-right: 1px solid var(--silver); font-size: 15px; }
th:last-child, td:last-child { border-right: 0; }
tr:last-child td { border-bottom: 0; }
th { background: var(--ice); font-family: var(--sans); font-weight: 600; font-size: 13px; color: var(--navy); }
td:first-child { font-family: var(--sans); font-weight: 700; color: var(--navy); background: var(--white); }
.default { font-family: var(--sans); font-weight: 600; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy); display: block; margin-bottom: 4px; }
.method { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px 36px; }
.method div { padding-top: 14px; border-top: 1px solid var(--silver); }
.method h4 { margin-bottom: 6px; }
.method p { font-size: 15px; }
.pay { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.pay > div { padding: 22px; border-radius: 8px; background: var(--ice); }
.pay h3 { font-size: 18px; }
.pay p { font-size: 15px; }
@media (max-width: 860px) { .pay { grid-template-columns: minmax(0, 1fr); } }
.cta-band { background: var(--navy); padding-block: 72px; }
.cta-band h2 { color: var(--white); max-width: 22ch; }
.cta-band p { color: var(--ice); }
.cta-band .micro { color: var(--silver); margin-top: 16px; }

.case-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 24px; }
.case-card { border: 1px solid var(--silver); border-radius: 12px; overflow: hidden; display: flex; flex-direction: column; background: var(--white); }
.case-card .head { background: var(--navy); padding: 22px 24px; }
.case-card .head .num { font-family: var(--sans); font-weight: 800; font-size: 38px; color: var(--ice); line-height: 1; font-variant-numeric: tabular-nums; }
.case-card .head { display: flex; flex-direction: column; }
.case-card .head .unit { font-family: var(--sans); font-weight: 600; font-size: 13px; line-height: 1.35; color: var(--ice); margin-top: 9px; min-height: 2.7em; }
.case-card .body { display: flex; flex-direction: column; flex: 1; }
.case-card .body .text-link { margin-top: auto; }
.case-card { display: flex; flex-direction: column; }
.case-card .head .tagline { font-family: var(--sans); font-weight: 600; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--silver); margin-top: 10px; }
.case-card .body { padding: 22px 24px 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.case-card h3 { font-size: 19px; margin: 0; }
.case-card p { font-size: 15px; margin: 0; flex: 1; }
details.deep { margin-top: 26px; border: 1px solid var(--silver); border-radius: 4px; background: var(--white); }
details.deep > summary { list-style: none; cursor: pointer; padding: 16px 20px; display: block; }
details.deep > summary::-webkit-details-marker { display: none; }
details.deep > summary:focus-visible { outline: 2px solid var(--navy); outline-offset: 2px; }
.deep-t { display: block; font-family: var(--sans); font-weight: 700; font-size: 14.5px; color: var(--navy); }
.deep-t::after { content: ' \2193' / ''; font-weight: 400; }
details.deep[open] > summary .deep-t::after { content: ' \2191' / ''; }
.deep-h { display: block; font-family: var(--sans); font-size: 13px; color: var(--graphite); margin-top: 4px; }
.deep-body { padding: 0 20px 22px; border-top: 1px solid var(--ice); }
.deep-body > *:first-child { margin-top: 18px; }
.sitTag { display: inline-block; align-self: flex-start; font-family: var(--sans); font-weight: 700; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy); background: var(--ice); border-radius: 4px; padding: 4px 9px; }
.case-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 22px; }
.case-strip > div { border-top: 2px solid var(--ice); padding-top: 14px; }
.case-strip .n { font-family: var(--sans); font-weight: 800; font-size: 32px; color: var(--ice); line-height: 1; }
.case-strip .l { font-family: var(--serif); font-size: 14px; color: var(--white); margin-top: 8px; }
.headline-num { font-family: var(--sans); font-weight: 800; font-size: clamp(30px, 4.6vw, 46px); line-height: 1.1; color: var(--navy); letter-spacing: -0.01em; }
.note-assume { margin-top: 26px; border-top: 1px solid var(--silver); padding-top: 16px; font-family: var(--sans); font-size: 12.5px; line-height: 1.6; color: var(--graphite); }
.related { border: 1px solid var(--silver); border-left: 4px solid var(--navy); border-radius: 8px; padding: 22px 24px; background: var(--white); }
.related h4 { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; margin-bottom: 10px; }

.tool { border: 1px solid var(--silver); border-radius: 12px; background: var(--white); padding: 28px; }
.tool .q { padding-block: 18px; border-top: 1px solid var(--ice); }
.tool .q:first-of-type { border-top: 0; padding-top: 0; }
.tool .q p.ask { font-family: var(--sans); font-weight: 600; font-size: 15px; color: var(--navy); margin: 0 0 12px; max-width: none; }
.opts { display: flex; flex-wrap: wrap; gap: 10px; }
.opt { font-family: var(--sans); font-weight: 600; font-size: 13.5px; color: var(--navy); background: var(--white); border: 1px solid var(--silver); border-radius: 4px; padding: 10px 14px; cursor: pointer; }
.opt:hover { border-color: var(--navy); }
.opt[aria-pressed="true"] { background: var(--navy); color: var(--white); border-color: var(--navy); }
.verdict { margin-top: 24px; padding: 22px 24px; border-radius: 8px; background: var(--ice); }
.verdict h4 { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 8px; }
.verdict .lane { font-family: var(--sans); font-weight: 800; font-size: 24px; color: var(--navy); margin-bottom: 8px; }

.creds { list-style: none; margin: 22px 0 0; padding: 0; border-top: 1px solid var(--silver); }
.creds li { display: grid; grid-template-columns: 86px minmax(0, 1fr); gap: 22px; align-items: baseline; padding-block: 15px; border-bottom: 1px solid var(--silver); }
.creds .yr { font-family: var(--sans); font-weight: 800; font-size: 17px; color: var(--navy); font-variant-numeric: tabular-nums; }
.creds .what { font-family: var(--serif); font-size: 15.5px; line-height: 1.5; color: var(--graphite); }
.creds .who { display: block; font-family: var(--sans); font-weight: 600; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); margin-top: 4px; }
@media (max-width: 520px) { .creds li { grid-template-columns: 62px minmax(0, 1fr); gap: 14px; } }

.ladder { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 0; }
.ladder li { display: grid; grid-template-columns: 62px minmax(0, 1fr); gap: 20px; align-items: start; padding-block: 20px; border-top: 1px solid var(--silver); }
.ladder li:last-child { border-bottom: 1px solid var(--silver); }
.ladder .lvl { font-family: var(--sans); font-weight: 800; font-size: 20px; color: var(--navy); background: var(--ice); border-radius: 4px; text-align: center; padding: 8px 0; }
.ladder li.peak .lvl { background: var(--navy); color: var(--white); }
.ladder h4 { margin-bottom: 4px; }
.ladder p { font-size: 15px; margin: 0; }
@media (max-width: 560px) { .ladder li { grid-template-columns: 52px minmax(0, 1fr); gap: 14px; } }

.scoper-band { background: var(--ice); border-top: 1px solid var(--silver); border-bottom: 1px solid var(--silver); padding-block: 58px; }
.scoper-band h2 { max-width: 22ch; }
.part-head { font-family: var(--sans); font-weight: 700; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--navy); background: var(--ice); border-radius: 4px; padding: 8px 12px; display: inline-block; margin: 0 0 6px; }
.part-head + .lede { font-family: var(--serif); font-size: 16px; color: var(--graphite); margin: 0 0 6px; max-width: 60ch; }
.tool .part { padding-top: 26px; }
.tool .part:first-child { padding-top: 0; }
.wall { margin-top: 26px; padding: 26px; border-radius: 8px; background: var(--navy); }
.wall h4, .wall h3 { color: var(--white); }
.wall p { color: var(--ice); font-family: var(--serif); font-size: 15px; }
.wall label { color: var(--ice); }
.wall .form { max-width: none; gap: 14px; }
.result-grid { display: grid; gap: 18px; margin-top: 18px; }
.result-grid > div { background: var(--white); border: 1px solid var(--silver); border-left: 4px solid var(--navy); border-radius: 8px; padding: 18px 20px; }
.result-grid h4 { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--navy); margin-bottom: 6px; }
.result-grid .big { font-family: var(--sans); font-weight: 800; font-size: 20px; color: var(--navy); margin-bottom: 8px; }
.result-grid p { font-size: 15px; margin: 0; }

.form { display: grid; gap: 16px; max-width: 640px; }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
@media (max-width: 560px) { .form-row { grid-template-columns: minmax(0, 1fr); } }
label { font-family: var(--sans); font-weight: 600; font-size: 13px; color: var(--navy); display: block; margin-bottom: 6px; }
input[type="text"], input[type="email"], textarea { width: 100%; font-family: var(--serif); font-size: 15px; color: var(--graphite); padding: 12px 14px; border: 1px solid var(--silver); border-radius: 4px; background: var(--white); }
input:focus, textarea:focus { outline: 2px solid var(--navy); outline-offset: 1px; border-color: var(--navy); }
textarea { min-height: 120px; resize: vertical; }
.radios { display: grid; gap: 10px; }
.radios label { font-family: var(--serif); font-weight: 400; font-size: 15px; color: var(--graphite); display: grid; grid-template-columns: 20px minmax(0, 1fr); gap: 10px; align-items: start; cursor: pointer; }
.radios input { margin: 4px 0 0; accent-color: var(--navy); }
.form-note { background: var(--ice); border-radius: 8px; padding: 16px 18px; font-family: var(--sans); font-size: 14px; color: var(--navy); display: none; }
.form-note.show { display: block; }
.form-note b { display: block; margin-bottom: 6px; }
.newsletter-form { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter-form input { flex: 1 1 220px; }

.booking { border: 1px solid var(--silver); border-radius: 12px; background: var(--white); overflow: hidden; }
.booking .bar { background: var(--navy); padding: 16px 22px; font-family: var(--sans); font-weight: 600; font-size: 14px; color: var(--white); }
.booking .body { padding: 24px 22px; }
.slots { display: grid; grid-template-columns: repeat(auto-fit, minmax(92px, 1fr)); gap: 10px; margin-top: 16px; }
.slots span { font-family: var(--sans); font-weight: 600; font-size: 13px; color: var(--navy); border: 1px solid var(--silver); border-radius: 4px; padding: 10px 6px; text-align: center; }

.coords { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 26px; }
.coords div { border-top: 2px solid var(--navy); padding-top: 14px; }
.coords h4 { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.coords p { font-size: 16px; }

.legal { max-width: 780px; }
.legal ol { padding-left: 20px; display: grid; gap: 9px; }
.legal li { font-size: 16px; }
.legal h3 { margin-top: 36px; }
.meta-box { border: 1px solid var(--silver); border-radius: 8px; padding: 18px 20px; background: var(--ice); font-family: var(--sans); font-size: 14px; color: var(--navy); margin-bottom: 32px; max-width: 780px; }

.portrait { border-radius: 12px; border: 1px solid var(--silver); display: block; width: 100%; height: auto; }
.portrait-wrap { max-width: 330px; }

.newsletter { background: var(--ice); padding-block: 60px; border-top: 1px solid var(--silver); }
.newsletter-inner { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: 40px; align-items: center; }
@media (max-width: 800px) { .newsletter-inner { grid-template-columns: minmax(0, 1fr); } }

.site-footer { background: var(--navy); color: var(--ice); padding-block: 52px 26px; }
.footer-tag { font-family: var(--serif); font-size: 21px; line-height: 1.5; color: var(--white); max-width: 46ch; margin: 0 0 40px; }
.footer-top { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 30px; padding-bottom: 30px; border-bottom: 1px solid var(--ice-a25); }
.site-footer h4 { color: var(--silver); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700; margin-bottom: 14px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.site-footer a { color: var(--ice); text-decoration: none; font-family: var(--sans); font-size: 13.5px; }
.site-footer a:hover { color: var(--white); text-decoration: underline; }
.footer-mid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px 28px; padding-block: 22px; }
.fm-links { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.footer-bottom { padding-top: 18px; border-top: 1px solid var(--ice-a25); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-family: var(--sans); font-size: 12px; color: var(--silver); }
@media (max-width: 760px) { .footer-top { grid-template-columns: repeat(2, minmax(0, 1fr)); } .footer-tag { font-size: 19px; } }

.video-cta { aspect-ratio: 16 / 9; width: 100%; border-radius: 12px; background: var(--navy); border: 1px solid var(--silver); display: grid; place-content: center; justify-items: center; gap: 12px; text-align: center; padding: 24px; text-decoration: none; transition: background 0.18s ease; }
.video-cta:hover { background: var(--graphite); }
.video-cta .play { width: 62px; height: 62px; border-radius: 50%; border: 2px solid var(--ice); color: var(--ice); display: grid; place-items: center; }
.video-cta .vt { font-family: var(--sans); font-weight: 800; font-size: 20px; color: var(--white); }
.video-cta .vs { font-family: var(--serif); font-size: 14px; line-height: 1.5; color: var(--ice); max-width: 46ch; }
.video-embed { aspect-ratio: 16 / 9; width: 100%; border-radius: 12px; overflow: hidden; background: var(--navy); border: 1px solid var(--silver); }
.video-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

.cookiebar { position: fixed; left: 12px; right: 12px; bottom: calc(12px + env(safe-area-inset-bottom, 0px)); z-index: 55; background: var(--navy); border: 1px solid var(--ice-a25); border-radius: 8px; padding: 14px 18px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between; max-width: 760px; margin-inline: auto; }
.cookiebar p { font-family: var(--sans); font-size: 13px; color: var(--ice); margin: 0; max-width: 52ch; }
.cookiebar .btn { padding: 10px 16px; font-size: 13px; }
.cookiebar[hidden] { display: none; }
