:root {
  --cream: #FAF5EC;
  --surface: #FDFAF4;
  --ink: #1E1913;
  --ink-muted: #6B6259;
  --honey: #C8792B;
  --honey-soft: rgba(200, 121, 43, 0.10);
  --sage: #6E7B4F;
  --clay: #B4552E;
  --hairline: #E8DFD0;

  --display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --measure: 34rem;
  --wide: 60rem;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

a { color: var(--honey); text-decoration: none; }
a:hover { text-decoration: underline; }

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--honey);
  outline-offset: 3px;
  border-radius: 2px;
}

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

.shell {
  width: 100%;
  max-width: var(--wide);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* header */

.site-header {
  border-bottom: 1px solid var(--hairline);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.375rem;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.brand:hover { text-decoration: none; }

.brand img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--hairline);
}

.site-nav {
  display: flex;
  gap: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.site-nav a { color: var(--ink-muted); }
.site-nav a:hover { color: var(--honey); }
.site-nav a[aria-current="page"] {
  color: var(--ink);
  box-shadow: inset 0 -2px 0 var(--honey);
}

/* hero */

.hero {
  text-align: center;
  padding-block: 4.5rem 3rem;
}

.hero-mark {
  width: 112px;
  height: 112px;
  margin: 0 auto 2rem;
  border-radius: 50%;
  border: 1px solid var(--hairline);
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(30, 25, 19, 0.07);
  overflow: hidden;
}

.hero-mark img { width: 100%; height: 100%; border-radius: 50%; }

.hero h1 {
  font-family: var(--display);
  font-size: clamp(2.25rem, 6vw, 3.25rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 auto 1rem;
  max-width: 18ch;
}

.hero p {
  font-size: 1.125rem;
  color: var(--ink-muted);
  margin: 0 auto 2rem;
  max-width: 34ch;
}

.tag {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  border-radius: 999px;
  background: var(--honey-soft);
  border: 1px solid rgba(200, 121, 43, 0.25);
  color: var(--honey);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.curve {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 3.5rem;
}

/* features */

.features {
  display: grid;
  gap: 1rem;
  padding-bottom: 3.5rem;
}

@media (min-width: 40rem) {
  .features { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
}

.card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 1.75rem;
}

.card-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--honey-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.125rem;
}

.card-mark svg { display: block; }

.card h3 {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 0.375rem;
}

.card p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.9375rem;
}

/* privacy panel */

.panel {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 2.25rem 1.75rem;
  text-align: center;
  margin-bottom: 3.5rem;
}

.panel h2 {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
}

.panel p {
  margin: 0 auto;
  max-width: 46ch;
  color: var(--ink-muted);
}

.panel ul {
  list-style: none;
  margin: 1.5rem auto 0;
  padding: 0;
  max-width: 30ch;
  text-align: left;
  font-size: 0.9375rem;
  color: var(--ink-muted);
}

.panel li {
  position: relative;
  padding-left: 1.375rem;
  margin-bottom: 0.5rem;
}

.panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sage);
}

.disclaimer {
  text-align: center;
  color: var(--ink-muted);
  font-size: 0.875rem;
  max-width: 44ch;
  margin: 0 auto 4rem;
}

/* legal pages */

.legal { padding-block: 3.5rem 4rem; }

.legal .shell { max-width: calc(var(--measure) + 3rem); }

.legal h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 0.5rem;
}

.updated {
  color: var(--ink-muted);
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  margin: 0 0 2.5rem;
}

.summary {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-left: 3px solid var(--honey);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 3rem;
}

.summary h2 {
  font-family: var(--display);
  font-size: 1.0625rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
}

.summary ul { margin: 0; padding-left: 1.125rem; font-size: 0.9375rem; color: var(--ink-muted); }
.summary li { margin-bottom: 0.375rem; }

.legal section { margin-bottom: 2.75rem; }

.legal h2 {
  font-family: var(--display);
  font-size: 1.375rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin: 0 0 0.875rem;
  display: flex;
  gap: 0.75rem;
  align-items: baseline;
}

.num {
  font-family: var(--body);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--honey);
  letter-spacing: 0.06em;
  flex: none;
  padding-top: 0.15em;
}

.legal p, .legal li { color: var(--ink); }
.legal p { margin: 0 0 1rem; }
.legal ul { margin: 0 0 1rem; padding-left: 1.25rem; }
.legal li { margin-bottom: 0.5rem; }

.legal strong { font-weight: 600; }

.contact-card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  padding: 1.5rem;
}

.contact-card p:last-child { margin-bottom: 0; }

/* footer */

.site-footer {
  margin-top: auto;
  border-top: 1px solid var(--hairline);
  background: var(--surface);
  padding-block: 2.5rem;
}

.site-footer .shell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  font-size: 0.875rem;
}

.footer-links a { color: var(--ink-muted); }
.footer-links a:hover { color: var(--honey); }

.footer-note {
  color: var(--ink-muted);
  font-size: 0.8125rem;
  max-width: 46ch;
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
