:root {
  --ink: #24151b;
  --muted: #6f6267;
  --paper: #fffaf4;
  --paper-2: #f7efe7;
  --wine: #5a1431;
  --wine-2: #83214b;
  --leaf: #2f6f55;
  --gold: #c49345;
  --line: rgba(90, 20, 49, .16);
  --shadow: 0 18px 45px rgba(36, 21, 27, .12);
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
a { color: inherit; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(255, 250, 244, .92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.brand, .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--wine);
  color: white;
  font-family: Georgia, serif;
}
.top-nav, .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.top-nav a, .footer-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.top-nav a:hover, .footer-links a:hover { color: var(--wine); }
.hero {
  min-height: 420px;
  display: grid;
  align-items: end;
  padding: 92px clamp(20px, 6vw, 76px);
  background:
    linear-gradient(90deg, rgba(36, 21, 27, .88), rgba(36, 21, 27, .42)),
    url("https://images.unsplash.com/photo-1510812431401-41d2bd2722f3?auto=format&fit=crop&w=1800&q=80") center/cover;
  color: white;
}
.hero:not(.hero-home) {
  min-height: 320px;
  background:
    linear-gradient(90deg, rgba(90, 20, 49, .9), rgba(47, 111, 85, .52)),
    url("https://images.unsplash.com/photo-1506377247377-2a5b3b417ebb?auto=format&fit=crop&w=1800&q=80") center/cover;
}
.hero-copy {
  max-width: 760px;
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: .98;
  letter-spacing: 0;
}
.hero p {
  max-width: 650px;
  font-size: clamp(18px, 2vw, 22px);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.button {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
}
.button.primary { background: white; color: var(--wine); }
.button.secondary { border: 1px solid rgba(255,255,255,.6); color: white; }
.band, .content-section, .split-section, .glossary-list {
  padding: 64px clamp(20px, 6vw, 76px);
}
.intro-band { background: var(--paper-2); }
.section-heading {
  max-width: 820px;
  margin-bottom: 28px;
}
h2 {
  margin: 0 0 16px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.06;
  letter-spacing: 0;
}
h3 { margin: 0 0 10px; line-height: 1.15; }
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}
.card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.72);
  box-shadow: var(--shadow);
}
.card p { color: var(--muted); }
.card a {
  margin-top: auto;
  color: var(--wine);
  font-weight: 900;
  text-decoration: none;
}
.split-section {
  display: grid;
  grid-template-columns: minmax(220px, 420px) minmax(0, 1fr);
  gap: clamp(24px, 6vw, 80px);
  align-items: start;
  background: white;
}
.split-section p { font-size: 18px; color: var(--muted); }
.content-section {
  max-width: 1160px;
  margin: 0 auto;
}
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}
th, td {
  padding: 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}
th {
  background: #f3e5ea;
  color: var(--wine);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0;
}
td { color: #46383d; }
.note-template {
  padding: 24px;
  border-left: 6px solid var(--leaf);
  background: white;
  box-shadow: var(--shadow);
}
.glossary-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.glossary-list article {
  padding: 22px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.glossary-list h2 { font-size: 24px; }
.legal-copy {
  max-width: 860px;
  font-size: 18px;
}
.responsibility-notice {
  padding: 26px clamp(20px, 6vw, 76px);
  background: #f3e5ea;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.responsibility-notice div {
  max-width: 1120px;
  margin: 0 auto;
}
.responsibility-notice p:last-child {
  max-width: 920px;
  margin: 0;
  color: #46383d;
  font-weight: 700;
}
.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 420px) 1fr;
  gap: 28px;
  padding: 42px clamp(20px, 6vw, 76px);
  background: var(--ink);
  color: white;
}
.site-footer p { color: rgba(255,255,255,.7); }
.site-footer .footer-links { justify-content: flex-end; align-content: start; }
.site-footer a { color: white; }
@media (max-width: 760px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  .hero { min-height: 520px; padding-top: 74px; }
  .split-section, .site-footer { grid-template-columns: 1fr; }
  .site-footer .footer-links { justify-content: flex-start; }
}
