:root {
  --paper: #f0ebdf;
  --paper-light: #faf7f0;
  --ink: #161616;
  --muted: #645d53;
  --line: #c8bfb1;
  --accent: #2452cc;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.6; }
a { color: inherit; text-underline-offset: .25em; }
a:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }
img { display: block; max-width: 100%; height: auto; }
.bar { min-height: 4.5rem; padding: 1rem clamp(1rem, 4vw, 4rem); display: flex; align-items: center; justify-content: space-between; gap: 1rem; background: var(--paper); border-bottom: 1px solid var(--line); }
.brand { font-family: Georgia, "Times New Roman", serif; font-weight: 700; font-size: 1.35rem; text-decoration: none; }
.hero { position: relative; min-height: calc(100svh - 4.5rem); display: grid; align-items: end; overflow: hidden; background: #222; color: #fff; }
.hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; animation: settle 1.2s ease-out both; }
.hero__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(14,13,12,.82), rgba(14,13,12,.22) 66%, rgba(14,13,12,.08)); }
.hero__copy { position: relative; z-index: 1; width: min(44rem, calc(100% - 2rem)); margin: clamp(1rem, 5vw, 5rem); animation: enter .75s .15s ease-out both; }
.eyebrow { margin: 0 0 .75rem; font-size: .78rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
h1, h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-weight: 500; letter-spacing: -.045em; line-height: .98; }
h1 { font-size: clamp(3.3rem, 9vw, 8.6rem); }
h2 { font-size: clamp(2.5rem, 6vw, 5.5rem); }
.hero__copy > p:not(.eyebrow) { max-width: 38rem; margin: 1.4rem 0 0; font-size: clamp(1.05rem, 2vw, 1.35rem); }
.button { display: inline-flex; min-height: 3.15rem; align-items: center; margin-top: 1.4rem; padding: .78rem 1rem; background: var(--accent); color: #fff; font-weight: 800; text-decoration: none; transition: transform .18s ease, background .18s ease; }
.button:hover { transform: translateY(-2px); background: #193da5; }
.statement, .preview, .verification, .download { padding: clamp(4rem, 9vw, 9rem) clamp(1rem, 6vw, 6rem); }
.statement { background: var(--paper-light); }
.statement > h2, .statement > p, .facts { max-width: 74rem; }
.statement__lead { max-width: 54rem !important; margin: 2rem 0; font-size: clamp(1.15rem, 2.1vw, 1.55rem); }
.facts { display: grid; grid-template-columns: repeat(4, 1fr); margin: 3rem 0 0; border-top: 1px solid var(--line); }
.facts div { padding: 1.25rem 1rem 1.25rem 0; border-bottom: 1px solid var(--line); }
.facts div + div { padding-left: 1rem; border-left: 1px solid var(--line); }
.facts dt { color: var(--muted); font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; }
.facts dd { margin: .45rem 0 0; font-weight: 750; }
.preview { display: grid; grid-template-columns: minmax(15rem, .75fr) minmax(0, 1.25fr); gap: clamp(2rem, 6vw, 7rem); align-items: start; }
.preview__copy { position: sticky; top: 2rem; }
.preview__copy p:last-child { max-width: 31rem; }
figure { margin: 0; }
figure img { width: 100%; border: 1px solid var(--line); box-shadow: 0 2rem 5rem rgba(34,28,19,.15); }
figcaption { margin-top: .7rem; color: var(--muted); font-size: .85rem; }
.verification { display: grid; grid-template-columns: minmax(0, 1fr) minmax(20rem, .9fr); gap: clamp(2rem, 8vw, 8rem); background: var(--ink); color: #fff; }
.verification ul { margin: 0; padding: 0; list-style: none; border-top: 1px solid #555; }
.verification li { padding: 1rem 0; border-bottom: 1px solid #555; }
.download { background: var(--paper-light); }
.download > p:not(.eyebrow) { max-width: 48rem; }
.download__actions { display: flex; align-items: baseline; gap: 1.5rem; flex-wrap: wrap; }
.text-link { font-weight: 750; }
footer { display: flex; justify-content: space-between; gap: 1rem; padding: 2rem clamp(1rem, 6vw, 6rem); border-top: 1px solid var(--line); }
@keyframes settle { from { opacity: .55; transform: scale(1.05); } }
@keyframes enter { from { opacity: 0; transform: translateY(1.25rem); } }
@media (max-width: 760px) {
  .hero { min-height: 43rem; }
  .hero__shade { background: linear-gradient(0deg, rgba(14,13,12,.88), rgba(14,13,12,.08) 82%); }
  .hero__copy { margin: 1rem 1rem 2rem; }
  .facts { grid-template-columns: 1fr 1fr; }
  .facts div:nth-child(3) { border-left: 0; padding-left: 0; }
  .preview, .verification { grid-template-columns: 1fr; }
  .preview__copy { position: static; }
  footer { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
