:root {
  --brand: #E4572E;
  --brand-ink: #B83E1B;
  --bg: #FBF8F3;
  --surface: #FFFFFF;
  --text: #1F1B18;
  --muted: #6B625B;
  --line: #E8E1D7;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color-scheme: light dark;
}

@media (prefers-color-scheme: dark) {
  :root {
    --brand: #F0714B;
    --brand-ink: #F58B6A;
    --bg: #171412;
    --surface: #211D1A;
    --text: #F2ECE4;
    --muted: #A89E94;
    --line: #342E29;
  }
}

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

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--brand-ink); text-underline-offset: 2px; }
a:hover { color: var(--brand); }

.wrap {
  max-width: 44rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Header */
.site-header {
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.logo span { color: var(--brand); }
.lang {
  display: flex;
  gap: 0.25rem;
  font-size: 0.85rem;
  font-weight: 600;
}
.lang a, .lang strong {
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  text-decoration: none;
}
.lang a { color: var(--muted); }
.lang a:hover { color: var(--text); background: var(--line); }
.lang strong { background: var(--text); color: var(--bg); }

/* Main */
main { padding: 2.5rem 0 3rem; }

h1, h2, h3 {
  font-family: var(--serif);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
h1 { font-size: 2.1rem; margin: 0 0 0.5rem; }
h2 { font-size: 1.35rem; margin: 2.25rem 0 0.6rem; }
h3 { font-size: 1.1rem; margin: 1.5rem 0 0.4rem; font-family: var(--sans); font-weight: 650; }
p, ul, ol { margin: 0 0 1rem; }
ul, ol { padding-left: 1.25rem; }
li { margin-bottom: 0.4rem; }

.meta { color: var(--muted); font-size: 0.95rem; margin-bottom: 2rem; }

/* Landing */
.hero { padding: 1.5rem 0 1rem; }
.hero .eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-ink);
  margin-bottom: 0.75rem;
}
.hero h1 {
  font-size: clamp(2.4rem, 9vw, 3.6rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}
.hero h1 em { font-style: italic; color: var(--brand); }
.hero .lede { font-size: 1.15rem; color: var(--muted); max-width: 34rem; }

.btn {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  font-weight: 650;
  text-decoration: none;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  margin: 0.75rem 0 0.5rem;
}
.btn:hover { background: var(--brand-ink); color: #fff; }
@media (prefers-color-scheme: dark) {
  .btn { color: #1A0F0A; }
  .btn:hover { color: #1A0F0A; }
}

.features {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.75rem;
  margin: 2rem 0;
}
@media (min-width: 640px) {
  .features { grid-template-columns: repeat(3, 1fr); }
}
.features li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  margin: 0;
}
.features strong { display: block; margin-bottom: 0.25rem; }
.features span { color: var(--muted); font-size: 0.95rem; }

.note {
  border-left: 3px solid var(--brand);
  padding: 0.25rem 0 0.25rem 1rem;
  color: var(--muted);
}

/* FAQ */
details {
  border-bottom: 1px solid var(--line);
  padding: 0.9rem 0;
}
details summary {
  cursor: pointer;
  font-weight: 650;
  list-style: none;
}
details summary::-webkit-details-marker { display: none; }
details summary::before {
  content: "+";
  display: inline-block;
  width: 1.25rem;
  color: var(--brand);
  font-weight: 700;
}
details[open] summary::before { content: "\2212"; }
details > *:not(summary) { margin: 0.6rem 0 0 1.25rem; }

.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.1rem 1.25rem;
  margin: 1.5rem 0 2rem;
}
.contact-card p:last-child { margin-bottom: 0; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}
.site-footer .wrap { padding-top: 1.5rem; padding-bottom: 2rem; }
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
  margin-bottom: 0.75rem;
}
.site-footer nav a { color: var(--text); text-decoration: none; }
.site-footer nav a:hover { color: var(--brand); }
.site-footer p { margin: 0; }
