:root {
  color-scheme: light;
  --bg: #ffffff;
  --surface: #f4f5f2;
  --surface-strong: #e8e5db;
  --text: #171918;
  --muted: #5d635f;
  --line: #d9d9d2;
  --accent: #876824;
  --accent-strong: #0f665d;
  --focus: #004f9e;
  --shadow: 0 22px 60px rgba(23, 25, 24, .12);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.62;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-underline-offset: .22em; }
a:hover { color: var(--accent-strong); }
a:focus-visible, button:focus-visible, main:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}
img { display: block; max-width: 100%; }
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 40;
  padding: 10px 14px;
  background: var(--text);
  color: #fff;
  transform: translateY(-160%);
  transition: transform .18s ease;
}
.skip-link:focus { transform: translateY(0); }
.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(16px);
}
.nav-shell {
  width: min(1180px, calc(100% - 32px));
  min-height: 74px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  min-width: 150px;
  text-decoration: none;
}
.brand-logo { width: 150px; height: auto; }
.menu-button {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  cursor: pointer;
}
.menu-button span,
.menu-button::before,
.menu-button::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform .18s ease, opacity .18s ease;
}
.menu-button { flex-direction: column; gap: 5px; }
.menu-button[aria-expanded="true"]::before { transform: translateY(7px) rotate(45deg); }
.menu-button[aria-expanded="true"] span { opacity: 0; }
.menu-button[aria-expanded="true"]::after { transform: translateY(-7px) rotate(-45deg); }
.nav-list, .footer-links {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.nav-list { justify-content: flex-end; flex-wrap: wrap; }
.nav-list a, .footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--muted);
  font-size: .95rem;
  font-weight: 650;
  text-decoration: none;
}
.nav-list a:hover, .nav-list a[aria-current="page"], .footer-links a:hover {
  background: var(--surface);
  color: var(--text);
}
.section-band {
  background: linear-gradient(180deg, #fff 0%, #fff 57%, var(--surface) 57%, var(--surface) 100%);
}
.hero {
  min-height: calc(100vh - 74px);
  padding: 74px 0 44px;
  display: grid;
  align-items: center;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, 1.08fr);
  gap: 56px;
  align-items: center;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 24px;
  font-size: clamp(2.65rem, 5vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: 0;
}
h1 span { display: block; }
h1 span + span { font-size: .62em; max-width: 720px; }
h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.06;
  letter-spacing: 0;
}
h3 { margin-bottom: 12px; font-size: 1.22rem; line-height: 1.25; }
.section-label {
  margin-bottom: 14px;
  color: var(--accent);
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
}
.hero-copy p, .copy-stack p, .section-heading p, .legal-intro p, .legal-section p, .legal-section li, .legal-list dd {
  color: var(--muted);
}
.hero-copy > p:not(.section-label) {
  max-width: 590px;
  font-size: clamp(1.12rem, 2vw, 1.32rem);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid var(--text);
  border-radius: var(--radius);
  font-weight: 760;
  text-decoration: none;
}
.button.primary { background: var(--text); color: #fff; }
.button.secondary { background: #fff; color: var(--text); }
.button:hover { border-color: var(--accent-strong); background: var(--accent-strong); color: #fff; }
.hero-media {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.content-section { padding: 96px 0; }
.soft-band { background: var(--surface); }
.split {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr);
  gap: 64px;
  align-items: start;
}
.copy-stack p { font-size: 1.08rem; }
.section-heading { max-width: 790px; margin-bottom: 44px; }
.activity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.activity-grid article {
  min-height: 210px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.legal-hero {
  padding: 72px 0 96px;
  background: linear-gradient(180deg, #fff 0%, var(--surface) 100%);
}
.legal-layout {
  display: grid;
  grid-template-columns: minmax(260px, .68fr) minmax(0, 1.32fr);
  gap: 56px;
  align-items: start;
}
.legal-intro { position: sticky; top: 112px; }
.legal-intro h1 { font-size: clamp(2.45rem, 5vw, 4.6rem); }
.back-link {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--accent-strong);
  font-weight: 720;
}
.legal-content { display: grid; gap: 18px; }
.legal-note, .legal-section {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.legal-note {
  color: var(--text);
  border-color: #c8a95a;
  background: #fffaf0;
}
.legal-section h2 { font-size: 1.45rem; }
.legal-section p:last-child, .legal-section ul:last-child, .legal-section dl:last-child { margin-bottom: 0; }
.legal-bullet-list { margin: 0; padding-left: 1.25rem; }
.legal-bullet-list li + li { margin-top: 8px; }
.legal-list {
  display: grid;
  gap: 0;
  margin: 0;
}
.legal-list div {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}
.legal-list div:first-child { border-top: 0; padding-top: 0; }
.legal-list dt { font-weight: 760; }
.legal-list dd { margin: 0; }
.legal-line { display: block; }
.site-footer {
  padding: 44px 0;
  border-top: 1px solid var(--line);
  background: var(--text);
  color: #fff;
}
.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}
.footer-brand { margin-bottom: 6px; font-weight: 800; }
.site-footer p { max-width: 430px; color: rgba(255,255,255,.76); }
.footer-links { flex-wrap: wrap; justify-content: flex-end; }
.footer-links a { color: rgba(255,255,255,.82); }
.footer-links a:hover { background: rgba(255,255,255,.12); color: #fff; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
@media (max-width: 900px) {
  .menu-button { display: inline-flex; }
  .nav-list {
    position: fixed;
    inset: 75px 0 auto 0;
    display: none;
    padding: 18px calc((100vw - min(100vw - 32px, 1180px)) / 2);
    border-bottom: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 18px 42px rgba(23,25,24,.12);
  }
  .nav-list.is-open { display: grid; grid-template-columns: 1fr; gap: 4px; }
  .nav-list a { min-height: 46px; }
  .hero { min-height: auto; padding-top: 54px; }
  .hero-grid, .split, .legal-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .hero-grid { display: flex; flex-direction: column; }
  .hero-media { order: -1; }
  .activity-grid { grid-template-columns: 1fr; }
  .legal-intro { position: static; }
  .footer-grid { flex-direction: column; }
  .footer-links { justify-content: flex-start; }
}
@media (max-width: 560px) {
  .container, .nav-shell { width: min(100% - 24px, 1120px); }
  .brand-logo { width: 128px; }
  h1 { font-size: clamp(2.2rem, 10vw, 2.85rem); overflow-wrap: anywhere; }
  h1 span + span { font-size: .68em; }
  .content-section { padding: 68px 0; }
  .legal-note, .legal-section, .activity-grid article { padding: 22px; }
  .legal-list div { grid-template-columns: 1fr; gap: 4px; }
  .hero-actions .button { width: 100%; }
}
