:root {
  color-scheme: light;
  --background: #f6f1e8;
  --surface: #fffaf2;
  --surface-strong: #fff6e6;
  --ink: #2f261f;
  --muted: #75685f;
  --accent: #7a4f38;
  --accent-strong: #5e3827;
  --border: #e3d5c4;
  --shadow: rgba(71, 49, 32, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background:
    radial-gradient(circle at top left, rgba(255, 250, 242, 0.95), transparent 36rem),
    linear-gradient(135deg, #f6f1e8 0%, #efe2d0 100%);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  line-height: 1.65;
}

a {
  color: var(--accent-strong);
  text-decoration-color: rgba(122, 79, 56, 0.35);
  text-underline-offset: 0.18em;
}

a:hover {
  text-decoration-color: currentColor;
}

.site-shell {
  width: min(100% - 2rem, 66rem);
  margin: 0 auto;
  padding: 1.25rem 0 4rem;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0 2.5rem;
}

.brand-mark {
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 0.92rem;
}

.site-nav a {
  text-decoration: none;
}

.hero-card,
.content-card {
  border: 1px solid var(--border);
  border-radius: 2rem;
  background: rgba(255, 250, 242, 0.82);
  box-shadow: 0 1.5rem 4.5rem var(--shadow);
}

.hero-card {
  max-width: 52rem;
  padding: clamp(2rem, 5vw, 5rem);
}

.content-card {
  max-width: 54rem;
  padding: clamp(1.5rem, 4vw, 3.5rem);
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--accent);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2,
p,
ul {
  margin-top: 0;
}

h1 {
  max-width: 13ch;
  margin-bottom: 1rem;
  font-size: clamp(3rem, 11vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
}

.content-card h1 {
  max-width: 16ch;
  font-size: clamp(2.4rem, 7vw, 4.8rem);
}

h2 {
  margin-bottom: 0.45rem;
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
}

p,
li {
  color: var(--muted);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 1.03rem;
}

.lede {
  max-width: 38rem;
  color: var(--ink);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  line-height: 1.35;
}

section + section,
.notice,
.closing-note {
  margin-top: 2rem;
}

ul {
  padding-left: 1.2rem;
}

li + li {
  margin-top: 0.45rem;
}

.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.primary-link,
.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  border-radius: 999px;
  padding: 0.7rem 1.2rem;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-weight: 700;
  text-decoration: none;
}

.primary-link {
  background: var(--accent-strong);
  color: #fffaf2;
}

.secondary-link {
  border: 1px solid var(--border);
  background: var(--surface-strong);
  color: var(--accent-strong);
}

.notice {
  border-left: 0.25rem solid var(--accent);
  border-radius: 1rem;
  background: var(--surface-strong);
  padding: 1rem 1.1rem;
}

.notice p,
.closing-note {
  margin-bottom: 0;
}

@media (max-width: 42rem) {
  .site-shell {
    width: min(100% - 1rem, 66rem);
    padding-bottom: 2rem;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 1.5rem;
  }

  .hero-card,
  .content-card {
    border-radius: 1.35rem;
  }

  .link-row {
    flex-direction: column;
  }
}
