:root {
  color-scheme: light;
  --ink: #242629;
  --muted: #696c70;
  --paper: #f6f3ef;
  --surface: #fefcf9;
  --line: #e8e3dd;
  --red: #c93632;
  --red-dark: #a92c29;
  --shadow: 0 18px 50px rgb(36 38 41 / 10%);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-height: 100vh; font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif; line-height: 1.6; color: var(--ink); background: var(--paper); }
img { display: block; max-width: 100%; }
a { color: var(--red-dark); }
.wrap { width: min(1120px, calc(100% - 2rem)); margin-inline: auto; }
.site-header { position: sticky; top: 0; z-index: 10; border-bottom: 1px solid var(--line); background: rgb(246 243 239 / 92%); backdrop-filter: blur(14px); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: 76px; }
.brand img { width: 92px; height: 58px; object-fit: contain; }
.links { display: flex; flex-wrap: wrap; gap: 1.1rem; font-size: .92rem; }
.links a { color: var(--muted); text-decoration: none; font-weight: 650; }
.links a:hover, .links a:focus-visible { color: var(--red); }
.hero { display: grid; grid-template-columns: 1fr minmax(320px, .88fr); align-items: center; gap: clamp(2rem, 6vw, 5rem); min-height: calc(100vh - 76px); padding-block: clamp(3rem, 8vw, 7rem); }
.hero-copy { display: grid; gap: 1.35rem; align-content: center; }
.eyebrow { margin: 0; color: var(--red); text-transform: uppercase; letter-spacing: .15em; font-size: .76rem; font-weight: 850; }
h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: -.035em; }
h1 { max-width: 13ch; font-size: clamp(2.7rem, 6.6vw, 5.8rem); }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { font-size: 1.35rem; }
p, li { color: var(--muted); }
.lead { max-width: 59ch; margin: 0; font-size: clamp(1.08rem, 2vw, 1.25rem); }
.button { display: inline-flex; align-items: center; justify-content: center; width: fit-content; min-height: 48px; padding: .78rem 1.25rem; border-radius: 12px; background: var(--red); color: white; text-decoration: none; font-weight: 800; box-shadow: 0 10px 24px rgb(201 54 50 / 22%); }
.button:hover, .button:focus-visible { background: var(--red-dark); }
.hero-media { margin: 0; overflow: hidden; border-radius: 28px; background: var(--surface); box-shadow: var(--shadow); aspect-ratio: 4 / 5; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.section { padding-block: clamp(4rem, 8vw, 7rem); }
.section > h2 { max-width: 16ch; margin-top: .7rem; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.2rem; }
.card { min-height: 190px; padding: 1.5rem; border: 1px solid var(--line); border-radius: 18px; background: var(--surface); }
.card p { margin-bottom: 0; }
.callout { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 1.5rem; margin-bottom: clamp(4rem, 8vw, 7rem); padding: clamp(1.5rem, 4vw, 2.5rem); border-radius: 24px; background: #26282b; }
.callout img { width: 86px; height: 86px; object-fit: contain; }
.callout h2 { color: white; font-size: clamp(1.7rem, 3vw, 2.5rem); }
.callout p { max-width: 70ch; margin-bottom: 0; color: #d5d0ca; }
.document { max-width: 820px; padding-block: 4rem 6rem; }
.document h1 { max-width: none; margin-bottom: 1rem; font-size: clamp(2.5rem, 6vw, 4.4rem); }
.document h2 { margin-top: 2.6rem; font-size: 1.55rem; }
.notice { margin: 1.5rem 0 2.5rem; padding: 1rem 1.2rem; border-left: 4px solid var(--red); border-radius: 0 12px 12px 0; background: var(--surface); color: var(--ink); }
.faq { display: grid; gap: 1rem; margin-top: 2rem; }
.faq .card { min-height: 0; }
.status { display: inline-flex; padding: .35rem .65rem; border-radius: 999px; background: #f1e7e5; color: var(--red-dark); font-size: .78rem; font-weight: 800; }
.open-card { display: grid; place-items: center; min-height: calc(100vh - 174px); text-align: center; }
.open-card article { max-width: 620px; padding: 2.5rem; border: 1px solid var(--line); border-radius: 24px; background: var(--surface); box-shadow: var(--shadow); }
.open-card img { width: 112px; margin: 0 auto 1.5rem; }
footer { padding: 2rem 0; border-top: 1px solid var(--line); }
.footer { display: flex; justify-content: space-between; gap: 1rem; color: var(--muted); font-size: .9rem; }

@media (max-width: 800px) {
  .nav { align-items: flex-start; flex-direction: column; padding-block: .8rem; }
  .hero { grid-template-columns: 1fr; min-height: 0; }
  .hero-media { order: -1; max-height: 540px; }
  .grid { grid-template-columns: 1fr; }
  .callout { grid-template-columns: 1fr; }
  .footer { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
