:root {
  --bg: #f7f2f4;
  --bg-elevated: #fffdfd;
  --ink: #2a1520;
  --muted: #5c3a48;
  --line: #e8d4dc;
  --accent: #a13b51;
  --accent-soft: #f3e4e9;
  --max: 72rem;
  --serif: Georgia, "Iowan Old Style", "Times New Roman", serif;
  --sans: "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.55;
}

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

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

.wrap {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: color-mix(in srgb, var(--bg) 88%, white);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.25rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ink);
}

.logo img {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.65rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-text strong {
  font-size: 0.98rem;
}

.logo-text span {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem 1.2rem;
  font-size: 0.9rem;
}

nav a {
  text-decoration: none;
  color: var(--muted);
}

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

.hero {
  padding: 4.5rem 0 3.5rem;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.kicker {
  margin: 0 0 0.85rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--accent);
}

h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  color: var(--ink);
}

.wordmark {
  width: min(100%, 22rem);
  height: auto;
  margin-bottom: 1rem;
}

.lede {
  margin: 0 0 1.75rem;
  max-width: 36rem;
  color: var(--muted);
  font-size: 1.12rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-ghost {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
}

.promo-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.promo-row img {
  width: 100%;
  border-radius: 1.15rem;
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(42, 21, 32, 0.12);
}

section {
  padding: 4rem 0;
}

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

.grid-3,
.grid-2 {
  display: grid;
  gap: 1.25rem;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
  grid-template-columns: 1fr 1fr;
}

.card,
.panel {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  padding: 1.5rem;
  box-shadow: 0 8px 24px rgba(80, 30, 50, 0.05);
}

h2 {
  margin: 0 0 1.4rem;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}

.muted {
  color: var(--muted);
}

.quote {
  font-family: var(--serif);
  font-size: 1.15rem;
  margin: 0;
}

.cite {
  display: block;
  margin-top: 0.85rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.faq dt {
  font-weight: 650;
  margin-top: 1.1rem;
}

.faq dd {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.original {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.legal {
  padding: 4.5rem 0 6rem;
}

.legal h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--accent);
}

.legal article,
.legal .card {
  max-width: 44rem;
}

.legal h2 {
  margin-top: 1.8rem;
  font-size: 1.25rem;
}

.legal h3 {
  font-size: 1.02rem;
  color: var(--muted);
  margin: 1.1rem 0 0.4rem;
}

.legal ul {
  padding-left: 1.2rem;
}

.legal li {
  margin: 0.35rem 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.6rem 0 2.4rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer .wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer a {
  color: var(--muted);
  margin-left: 0.85rem;
}

@media (max-width: 820px) {
  .hero,
  .grid-3,
  .grid-2,
  .promo-row {
    grid-template-columns: 1fr;
  }

  .promo-row {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    padding-top: 2.8rem;
  }
}

@media (max-width: 520px) {
  .promo-row {
    grid-template-columns: 1fr;
  }
}
