:root {
  color-scheme: light;
  --cream: #fff4d8;
  --paper: #fff9ea;
  --ink: #123f46;
  --teal: #087878;
  --orange: #d44324;
  --gold: #d9b959;
  --line: #d8c99e;
  --muted: #536d6f;
}
* { box-sizing: border-box; }
html { background: var(--cream); color: var(--ink); font-family: Avenir Next, Avenir, Helvetica Neue, Arial, sans-serif; line-height: 1.55; }
body { margin: 0; min-width: 280px; }
a { color: var(--teal); text-underline-offset: .18em; }
a:hover { color: var(--orange); }
a:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; border-radius: 3px; }
.site-header, main, footer { width: min(1100px, calc(100% - 40px)); margin-inline: auto; }
.site-header { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); font-size: 1.35rem; font-weight: 900; text-decoration: none; letter-spacing: -.02em; }
.brand img { border-radius: 12px; box-shadow: 0 4px 12px #7b6a3c33; }
nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 18px; font-weight: 800; }
nav a { color: var(--ink); text-decoration-thickness: 2px; }
nav a[aria-current="page"] { color: var(--orange); }
.hero { min-height: 610px; display: grid; grid-template-columns: .9fr 1.1fr; align-items: stretch; overflow: hidden; border: 2px solid var(--teal); border-radius: 34px; background: var(--paper); box-shadow: 0 18px 48px #4a3d1f22; }
.hero-copy { align-self: center; padding: clamp(34px, 7vw, 76px); }
.hero-art { width: 100%; height: 100%; min-height: 420px; object-fit: cover; }
.eyebrow { margin: 0 0 8px; color: var(--orange); font-size: .82rem; font-weight: 900; letter-spacing: .17em; }
h1, h2, h3 { margin: 0; font-family: Avenir Next Condensed, Avenir Next, Helvetica Neue, Arial, sans-serif; font-weight: 900; line-height: 1.05; letter-spacing: -.025em; }
h1 { max-width: 12ch; font-size: clamp(3.4rem, 8vw, 6.8rem); }
h2 { margin-top: 2.2rem; font-size: clamp(2rem, 5vw, 3.25rem); }
h3 { margin-top: 1.8rem; font-size: 1.45rem; }
.lede { max-width: 62ch; margin: 24px 0 0; font-size: clamp(1.12rem, 2.1vw, 1.4rem); }
.availability { display: inline-block; margin: 28px 0 0; padding: 11px 17px; border-radius: 999px; background: var(--orange); color: white; font-weight: 900; letter-spacing: .04em; }
.details { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; padding: 80px 30px; }
.details h2 { margin-top: 0; }
.details > p { font-size: 1.16rem; }
.document { max-width: 820px; padding: 76px 0 92px; }
.document h1 { max-width: none; font-size: clamp(3rem, 8vw, 5.6rem); }
.document h2 { padding-top: 1rem; border-top: 1px solid var(--line); }
.document p, .document li { font-size: 1.04rem; }
.notice { margin: 36px 0; padding: 20px 22px; border: 2px solid var(--gold); border-radius: 18px; background: var(--paper); }
footer { display: flex; justify-content: space-between; gap: 25px; padding: 32px 0 50px; border-top: 1px solid var(--line); color: var(--muted); font-size: .92rem; }
@media (max-width: 740px) {
  .site-header, main, footer { width: min(100% - 28px, 1100px); }
  .site-header { align-items: flex-start; padding: 16px 0; }
  .brand span { font-size: 1.1rem; }
  nav { gap: 12px; padding-top: 12px; }
  .hero { min-height: 0; grid-template-columns: 1fr; }
  .hero-copy { padding: 42px 28px; }
  .hero-art { min-height: 310px; max-height: 460px; }
  .details { grid-template-columns: 1fr; gap: 14px; padding: 56px 8px; }
  .document { padding: 52px 4px 72px; }
  footer { display: block; }
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; } }
