:root {
    --ink: #25211d;
    --muted: #6b6259;
    --paper: #fff9e9;
    --paper-deep: #f3e7c5;
    --yellow: #f2d94e;
    --orange: #c75227;
    --red: #a91f35;
    --olive: #7d8519;
    --black: #282525;
    --line: rgba(37, 33, 29, .2);
    --shadow: 0 18px 60px rgba(40, 37, 37, .12);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--paper);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-height: 100vh; background: var(--paper); }
a { color: inherit; }
.site-shell { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.site-header { position: sticky; top: 0; z-index: 10; border-bottom: 1px solid var(--line); background: rgba(255, 249, 233, .94); backdrop-filter: blur(14px); }
.nav { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { text-decoration: none; font-family: Georgia, serif; font-weight: 700; font-size: 1.18rem; }
.brand span { color: var(--red); }
.nav-links { display: flex; align-items: center; gap: 20px; color: var(--muted); font-size: .92rem; }
.nav-links a { text-decoration: none; }
.nav-links a:hover { color: var(--red); }
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: 0 22px; border-radius: 999px; background: var(--red); color: white; font-weight: 700; text-decoration: none; border: 0; }
.button:hover { background: #8c172b; }
.button.secondary { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.hero { position: relative; overflow: hidden; padding: 92px 0 76px; border-bottom: 1px solid var(--line); }
.hero::after { content: ""; position: absolute; width: 460px; height: 460px; right: -120px; top: -130px; border-radius: 50%; border: 1px solid rgba(169,31,53,.25); box-shadow: 0 0 0 56px rgba(242,217,78,.14), 0 0 0 112px rgba(125,133,25,.09); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.35fr .65fr; gap: 72px; align-items: center; }
.eyebrow { color: var(--red); text-transform: uppercase; letter-spacing: .16em; font-weight: 800; font-size: .76rem; }
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; line-height: 1.08; }
h1 { max-width: 760px; margin: 20px 0 24px; font-size: clamp(3rem, 7vw, 6.2rem); font-weight: 500; }
h2 { margin: 0 0 20px; font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 500; }
h3 { margin: 30px 0 10px; font-size: 1.35rem; }
.lead { max-width: 680px; font-size: clamp(1.08rem, 2vw, 1.3rem); line-height: 1.65; color: var(--muted); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.seal { width: 260px; aspect-ratio: 1; display: grid; place-items: center; border-radius: 50%; border: 2px solid var(--red); background: var(--yellow); box-shadow: var(--shadow); font-family: Georgia, serif; font-size: 6rem; color: var(--red); transform: rotate(5deg); }
.section { padding: 76px 0; }
.section.alt { background: var(--paper-deep); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { padding: 28px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.42); }
.card strong { display: block; margin-bottom: 10px; font-family: Georgia, serif; font-size: 1.35rem; }
.card p { margin: 0; color: var(--muted); line-height: 1.6; }
.price-card { display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; padding: 36px; border-radius: 22px; background: var(--black); color: white; box-shadow: var(--shadow); }
.price { font: 500 clamp(2.4rem, 6vw, 4.5rem)/1 Georgia, serif; color: var(--yellow); white-space: nowrap; }
.fine { color: var(--muted); font-size: .92rem; line-height: 1.6; }
.price-card .fine { color: #d8d0c1; }
.document { width: min(820px, calc(100% - 32px)); margin: 0 auto; padding: 64px 0 84px; }
.document h1 { font-size: clamp(2.5rem, 7vw, 4.6rem); }
.document .meta { color: var(--muted); margin-bottom: 44px; }
.document p, .document li { line-height: 1.7; }
.document li + li { margin-top: 7px; }
.notice { margin: 28px 0; padding: 20px 22px; border-left: 4px solid var(--red); background: var(--paper-deep); }
.facts { margin: 28px 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.facts li { display: grid; grid-template-columns: 180px 1fr; gap: 20px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.site-footer { padding: 44px 0; background: var(--black); color: #eee5d6; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 28px; }
.footer-links { display: grid; gap: 8px; font-size: .9rem; }
.footer-links a { color: #d8d0c1; }

@media (max-width: 760px) {
    .nav-links a:not(.button) { display: none; }
    .hero { padding-top: 64px; }
    .hero-grid, .grid-3, .price-card, .footer-grid { grid-template-columns: 1fr; }
    .seal { width: 180px; font-size: 4rem; }
    .facts li { grid-template-columns: 1fr; gap: 4px; }
}
