:root {
  color-scheme: light;
  --ink: #18201f;
  --muted: #5d6865;
  --paper: #f6f3ed;
  --surface: #fffdf8;
  --line: #d9d5cc;
  --accent: #bd4f32;
  --accent-dark: #8d351f;
  --green: #315c50;
  --shadow: 0 18px 50px rgba(28, 35, 33, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 0%, rgba(189, 79, 50, 0.10), transparent 32rem),
    var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
}

a {
  color: var(--accent-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--accent);
}

a:focus-visible {
  border-radius: 3px;
  outline: 3px solid rgba(189, 79, 50, 0.35);
  outline-offset: 4px;
}

.site-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1180px;
  padding: 1.35rem 1.5rem;
}

.brand {
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-mark {
  color: var(--accent);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
}

.site-nav a[aria-current="page"],
.site-nav a:hover {
  color: var(--ink);
}

main {
  margin: 0 auto;
  max-width: 1180px;
  padding: 4.8rem 1.5rem 6rem;
}

.hero {
  display: grid;
  gap: 3.5rem;
  grid-template-columns: minmax(0, 1.25fr) minmax(17rem, 0.75fr);
  min-height: 32rem;
  place-items: center start;
}

.eyebrow {
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin: 0 0 1rem;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
}

h1 {
  font-size: clamp(3.1rem, 8vw, 6.8rem);
  letter-spacing: -0.055em;
  margin: 0;
  max-width: 11ch;
}

.legal h1 {
  font-size: clamp(2.8rem, 7vw, 5rem);
  max-width: 14ch;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  letter-spacing: -0.035em;
  margin: 0 0 1.25rem;
}

h3 {
  font-size: 1.5rem;
  margin: 0 0 0.55rem;
}

.lede {
  color: var(--muted);
  font-size: clamp(1.12rem, 2.2vw, 1.35rem);
  margin: 1.75rem 0 0;
  max-width: 42rem;
}

.status-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  box-shadow: var(--shadow);
  padding: 2rem;
  width: 100%;
}

.status-label {
  align-items: center;
  color: var(--green);
  display: flex;
  font-size: 0.8rem;
  font-weight: 800;
  gap: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.status-dot {
  background: var(--green);
  border-radius: 999px;
  height: 0.65rem;
  width: 0.65rem;
}

.status-card p {
  color: var(--muted);
  margin: 1.15rem 0 0;
}

.privacy-note {
  border-left: 3px solid var(--accent);
  color: var(--ink) !important;
  padding-left: 1rem;
}

.section {
  border-top: 1px solid var(--line);
  padding: 5rem 0;
}

.section-intro {
  color: var(--muted);
  max-width: 44rem;
}

.steps {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2.5rem;
}

.step {
  background: rgba(255, 253, 248, 0.7);
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  padding: 1.6rem;
}

.step-number {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.step p,
.principle p {
  color: var(--muted);
  margin-bottom: 0;
}

.principles {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 2.5rem;
}

.principle {
  border-top: 2px solid var(--ink);
  padding-top: 1.25rem;
}

.legal {
  max-width: 820px;
}

.updated {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 1.25rem 0 3.5rem;
}

.legal-section {
  border-top: 1px solid var(--line);
  padding: 2.25rem 0;
}

.legal-section h2 {
  font-size: 2rem;
}

.legal-section p:last-child,
.legal-section ul:last-child {
  margin-bottom: 0;
}

.legal-section li + li {
  margin-top: 0.65rem;
}

.site-footer {
  border-top: 1px solid var(--line);
}

.footer-inner {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-size: 0.88rem;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1180px;
  padding: 1.8rem 1.5rem 2.2rem;
}

.footer-links {
  display: flex;
  gap: 1.2rem;
}

@media (max-width: 760px) {
  .site-header,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }

  .site-nav {
    gap: 0.9rem;
  }

  main {
    padding-top: 3rem;
  }

  .hero {
    gap: 2.5rem;
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 3rem;
  }

  .steps,
  .principles {
    grid-template-columns: 1fr;
  }
}

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