:root {
    --ink: #171612;
    --paper: #f6f0e5;
    --paper-deep: #e9dfce;
    --coral: #c95643;
    --coral-deep: #a63c2c;
    --muted: #5d584f;
    --line: #cfc3b1;
    --dark: #27241f;
    --font: "Space Grotesk", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--font); line-height: 1.55; }
a { color: inherit; }
img { display: block; max-width: 100%; }
.skip-link { left: 1rem; position: fixed; top: -5rem; z-index: 20; background: var(--ink); color: #fff; padding: .7rem 1rem; }
.skip-link:focus { top: 1rem; }
.shell { width: min(1120px, calc(100% - 3rem)); margin: 0 auto; }
.site-header { border-bottom: 1px solid var(--line); background: rgba(246, 240, 229, .94); position: sticky; top: 0; z-index: 10; backdrop-filter: blur(12px); }
.site-nav { align-items: center; display: flex; justify-content: space-between; min-height: 4.8rem; gap: 1rem; }
.brand { font-size: 1.05rem; font-weight: 700; text-decoration: none; }
.nav-links { display: flex; align-items: center; gap: 1.2rem; }
.nav-links a { color: var(--muted); font-size: .9rem; text-decoration: none; }
.nav-links a:hover, .nav-links a:focus-visible { color: var(--coral-deep); }
.eyebrow { color: var(--coral-deep); font-size: .75rem; font-weight: 700; letter-spacing: .1em; margin: 0 0 1rem; text-transform: uppercase; }
.hero { padding: clamp(5rem, 12vw, 10rem) 0 clamp(4rem, 9vw, 7rem); }
.hero-grid { align-items: end; display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(15rem, .8fr); gap: clamp(2rem, 7vw, 8rem); }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(3.4rem, 8vw, 7.25rem); letter-spacing: -.075em; line-height: .89; max-width: 10ch; }
h2 { font-size: clamp(2rem, 4vw, 3.8rem); letter-spacing: -.055em; line-height: .96; }
h3 { font-size: 1.25rem; letter-spacing: -.03em; }
.lead { color: var(--muted); font-size: clamp(1.05rem, 1.8vw, 1.35rem); max-width: 39rem; }
.hero-note { border-left: 2px solid var(--coral); color: var(--muted); font-size: .98rem; padding: .35rem 0 .35rem 1.1rem; }
.button { align-items: center; background: var(--coral); border: 1px solid var(--coral); color: #fff; display: inline-flex; font-weight: 700; gap: .45rem; margin-top: 1.25rem; padding: .82rem 1.1rem; text-decoration: none; transition: background .18s ease, border-color .18s ease, transform .18s ease; }
.button:hover { background: var(--coral-deep); border-color: var(--coral-deep); transform: translateY(-2px); }
.button:active { transform: translateY(0); }
.section { border-top: 1px solid var(--line); padding: clamp(3.5rem, 8vw, 7rem) 0; }
.section-intro { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(2rem, 7vw, 7rem); margin-bottom: 2.5rem; }
.section-intro p { color: var(--muted); max-width: 40rem; }
.focus-list { border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(3, 1fr); list-style: none; margin: 0; padding: 0; }
.focus-list li { border-right: 1px solid var(--line); padding: 1.2rem 1.3rem 1.5rem 0; margin-right: 1.3rem; }
.focus-list li:last-child { border-right: 0; }
.focus-list strong { display: block; font-size: .82rem; letter-spacing: .07em; margin-bottom: .65rem; text-transform: uppercase; }
.process { background: var(--paper-deep); }
.process-grid { counter-reset: steps; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.process-grid article { border-top: 2px solid var(--ink); padding-top: 1rem; }
.process-grid article::before { content: "0" counter(steps); counter-increment: steps; display: block; color: var(--coral-deep); font-size: .8rem; font-weight: 700; margin-bottom: 2rem; }
.closing { background: var(--dark); color: #f7f0e4; }
.closing h2 { color: #fff; max-width: 14ch; }
.closing p { color: #dbd2c4; max-width: 37rem; }
.closing .button { background: #f7f0e4; border-color: #f7f0e4; color: var(--ink); }
.closing .button:hover { background: #fff; border-color: #fff; }
.site-footer { background: var(--dark); border-top: 1px solid #554e43; color: #e6ded1; padding: 1.3rem 0 2.2rem; }
.footer-row { align-items: center; display: flex; justify-content: space-between; gap: 1rem; }
.footer-row a { color: #e6ded1; font-size: .88rem; }
:focus-visible { outline: 3px solid var(--coral); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; } }
@media (max-width: 720px) {
    .shell { width: min(100% - 2rem, 1120px); }
    .nav-links { gap: .75rem; }
    .nav-links a:not(.button) { display: none; }
    .hero-grid, .section-intro { grid-template-columns: 1fr; }
    .focus-list, .process-grid { grid-template-columns: 1fr; }
    .focus-list li { border-bottom: 1px solid var(--line); border-right: 0; margin-right: 0; padding-right: 0; }
    .process-grid { gap: 2rem; }
    .footer-row { align-items: flex-start; flex-direction: column; }
}
