:root {
  --ink: #101d31;
  --green: #079563;
  --gold: #dfa93d;
  --paper: #f7f8fa;
  --muted: #647083;
  --line: #dfe4ea;
}
* { box-sizing: border-box; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.6; }
.page { width: min(1120px, calc(100% - 40px)); margin: auto; }
.nav, footer { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 20px 0; }
.nav { border-bottom: 1px solid var(--line); }
.brand { display: flex; align-items: center; gap: 10px; color: var(--ink); font-weight: 800; text-decoration: none; }
.brand img { border-radius: 11px; }
.brand span { color: var(--muted); font-size: .8rem; font-weight: 600; }
.nav nav { display: flex; gap: 18px; }
.nav a, footer a, .text-link { color: var(--ink); text-underline-offset: 4px; }
.hero { display: grid; grid-template-columns: 1.2fr .62fr; gap: 80px; align-items: center; padding: 76px 5vw; }
.eyebrow { color: #987019; font-weight: 800; font-size: .75rem; letter-spacing: .12em; }
.hero h1, .article h1 { font-family: Georgia, serif; font-size: clamp(2.8rem, 6vw, 5.4rem); line-height: 1.02; letter-spacing: -.055em; margin: .2em 0; }
.lead { font-size: 1.2rem; color: var(--muted); max-width: 700px; }
.hero-phone { width: 100%; height: auto; border-radius: 34px; box-shadow: 0 28px 70px #16223c26; }
.button { display: inline-block; background: var(--ink); color: white; text-decoration: none; border-radius: 999px; padding: 13px 20px; font-weight: 750; margin-top: 16px; }
.button[aria-disabled="true"] { background: #7d8794; cursor: not-allowed; }
.availability, .meta { font-size: .86rem; color: var(--muted); }
section { padding: 64px 5vw; border-top: 1px solid var(--line); }
h2 { font-family: Georgia, serif; line-height: 1.15; font-size: clamp(1.8rem, 3vw, 2.6rem); letter-spacing: -.03em; }
.facts, .cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.facts article, .cards > a, aside { border: 1px solid var(--line); background: white; border-radius: 18px; padding: 22px; }
.facts strong { font-size: 2rem; color: var(--green); }
.facts p, .cards p { color: var(--muted); margin-bottom: 0; }
.cards > a { color: var(--ink); text-decoration: none; }
.cards > a img { display: block; width: 100%; height: auto; aspect-ratio: auto; object-fit: contain; border-radius: 12px; margin: -2px 0 18px; }
.cards h3 { margin-top: 0; }
.cards span { display: block; color: var(--green); font-weight: 700; margin-top: 18px; }
.split { display: grid; grid-template-columns: .55fr 1fr; align-items: center; gap: 70px; }
.split img { width: 100%; max-height: 620px; object-fit: cover; object-position: top; border-radius: 28px; }
.faq details { padding: 16px 20px; background: #fff; border: 1px solid var(--line); border-radius: 12px; margin: 10px 0; }
.faq summary { cursor: pointer; font-weight: 750; }
.faq p { color: var(--muted); }
.final { text-align: center; background: var(--ink); color: white; margin: 64px 0; border-radius: 28px; border: 0; }
.final h2 { margin-top: 0; }
.final p { color: #d6dce5; }
.final .button { background: var(--gold); color: #2a210b; }
footer { color: var(--muted); font-size: .85rem; border-top: 1px solid var(--line); }
.article { max-width: 790px; margin: 0 auto; padding: 72px 0; }
.article figure { margin: 42px 0; }
.article figure img { display: block; width: auto; max-width: min(330px, 100%); height: auto; border-radius: 28px; box-shadow: 0 20px 60px #16223c22; }
.article figure.feature { margin-top: 0; }
.article figure.feature img { display: block; width: 100%; max-width: none; height: auto; aspect-ratio: auto; object-fit: contain; border-radius: 20px; box-shadow: none; }
.article figcaption { font-size: .82rem; color: var(--muted); margin-top: 9px; }
.article section { padding: 30px 0; border: 0; }
.article section h2 { font-size: 2rem; }
.article aside { margin: 28px 0; background: #edf7f2; border-color: #cfe6dc; }
.guides { grid-template-columns: repeat(2, 1fr); margin-top: 32px; }
.related { display: grid; gap: 9px; }
.related a { color: var(--green); font-weight: 700; }
@media (max-width: 720px) {
  .page { width: min(100% - 30px, 1120px); }
  .nav nav { gap: 12px; font-size: .88rem; }
  .brand span { display: none; }
  .hero, .split { grid-template-columns: 1fr; padding: 48px 0; gap: 28px; }
  .hero-phone { max-width: 280px; justify-self: center; }
  .facts, .cards, .guides { grid-template-columns: 1fr; }
  .split img { max-width: 280px; }
  .article { padding: 46px 0; }
  .article figure img { width: auto; max-width: min(280px, 100%); height: auto; }
  .article figure.feature img { width: 100%; max-width: none; height: auto; }
  section { padding: 46px 0; }
  footer { display: block; }
}
