:root {
  color-scheme: light;
  --ink: #171512;
  --paper: #f5f0e7;
  --white: #fffdf8;
  --wine: #7a1834;
  --wine-dark: #4e0f22;
  --gold: #d5a33a;
  --teal: #237f83;
  --muted: #655f56;
  --line: #ded4c4;
  --shadow: 0 22px 60px rgba(54, 35, 24, .14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 92% 4%, rgba(213, 163, 58, .20), transparent 25rem),
    var(--paper);
  font: 17px/1.62 -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a { color: var(--wine); }
a:hover { color: var(--wine-dark); }

img { display: block; max-width: 100%; }

.shell { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 1.28rem;
  font-weight: 900;
  letter-spacing: -.03em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: var(--wine);
  border-radius: 50% 50% 46% 54%;
  font: 900 1rem/1 Georgia, serif;
}

nav { display: flex; flex-wrap: wrap; gap: 20px; }
nav a { color: var(--ink); font-size: .92rem; font-weight: 750; text-decoration: none; }

main { padding: 54px 0 92px; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, .92fr);
  align-items: center;
  gap: clamp(34px, 7vw, 90px);
  min-height: 620px;
}

.eyebrow {
  color: var(--wine);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
}

h1, h2, h3 { text-wrap: balance; }

h1 {
  margin: 13px 0 24px;
  font: 800 clamp(3.5rem, 8vw, 7rem)/.91 Georgia, serif;
  letter-spacing: -.06em;
}

h2 { margin: 0 0 16px; font: 800 clamp(2rem, 5vw, 3.8rem)/1 Georgia, serif; letter-spacing: -.04em; }
h3 { margin: 0 0 8px; font-size: 1.18rem; letter-spacing: -.02em; }
p { max-width: 720px; }
.lede { color: var(--muted); font-size: clamp(1.12rem, 2.4vw, 1.42rem); }

.button {
  display: inline-block;
  margin-top: 16px;
  padding: 13px 19px;
  color: var(--white);
  background: var(--wine);
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}
.button:hover { color: var(--white); background: var(--wine-dark); }
.button.secondary { color: var(--ink); background: transparent; border: 1px solid var(--line); }
.button.secondary:hover { background: var(--white); }

.hero-image, .feature-image {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: var(--shadow);
}
.hero-image img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: 63% center; }

.section { padding: 86px 0; border-top: 1px solid var(--line); }
.section-intro { margin-bottom: 34px; color: var(--muted); }

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(30px, 7vw, 84px);
}
.feature-image img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.card {
  padding: 28px;
  background: rgba(255, 253, 248, .78);
  border: 1px solid var(--line);
  border-radius: 24px;
}
.card p { margin-bottom: 0; color: var(--muted); }
.card-icon { width: 72px; height: 72px; margin-bottom: 20px; object-fit: cover; border-radius: 18px; }

.prose { max-width: 800px; }
.prose h1 { font-size: clamp(2.8rem, 7vw, 5.4rem); }
.prose h2 { margin-top: 2.7rem; font-size: clamp(1.6rem, 4vw, 2.35rem); }
.prose h3 { margin-top: 2rem; }
.prose li { margin: .45rem 0; }
.prose .effective { color: var(--muted); }
.notice { margin: 28px 0; padding: 19px 22px; background: var(--white); border-left: 5px solid var(--gold); border-radius: 5px 18px 18px 5px; }
.warning { border-left-color: var(--wine); }

.actions { display: flex; flex-wrap: wrap; gap: 10px; }

footer { padding: 30px 0 44px; color: var(--muted); border-top: 1px solid var(--line); font-size: .86rem; }
footer .shell { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }

@media (max-width: 760px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  main { padding-top: 28px; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-image img { aspect-ratio: 16 / 10; object-position: 50% 31%; }
  .split, .cards { grid-template-columns: 1fr; }
  .section { padding: 62px 0; }
}

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