:root {
  --navy: #0f2a44;
  --navy-dark: #081829;
  --sunset: #e37a2c;
  --sunset-dark: #b85d14;
  --ice: #eaf1f8;
  --ink: #141a22;
  --muted: #56616e;
  --border: #d8dee6;
  --bg: #fbfaf7;
  --max: 72ch;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Charter, "Iowan Old Style", "Source Serif Pro", "Georgia", ui-serif, serif;
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .sans {
  font-family: Inter, "Segoe UI", system-ui, ui-sans-serif, -apple-system, sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--navy-dark);
}

h1 { font-size: 2.1rem; line-height: 1.15; margin: 0 0 0.75rem; }
h2 { font-size: 1.5rem; line-height: 1.2; margin: 2.5rem 0 1rem; }
h3 { font-size: 1.15rem; margin: 1.25rem 0 0.5rem; }

p { margin: 0 0 1rem; }

a { color: var(--sunset-dark); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--sunset); }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.wide {
  max-width: 960px;
}

/* Hero */
.hero {
  background: linear-gradient(180deg, var(--ice) 0%, var(--bg) 100%);
  padding: 3rem 1.25rem 2.5rem;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}
.hero-copy h1 { font-size: 2.4rem; line-height: 1.1; }
.hero-copy .subhead {
  font-size: 1.15rem;
  color: var(--muted);
  margin: 0 0 1.5rem;
}
.cover-wrap {
  text-align: center;
}
.cover-wrap img {
  max-width: 100%;
  width: 340px;
  height: auto;
  box-shadow: 0 18px 40px -12px rgba(15, 42, 68, 0.35);
  border-radius: 4px;
  background: #fff;
}
.cover-placeholder {
  display: inline-block;
  width: 320px;
  aspect-ratio: 2/3;
  border: 2px dashed var(--border);
  border-radius: 4px;
  color: var(--muted);
  font-family: Inter, system-ui, ui-sans-serif, sans-serif;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  text-align: center;
  background: #fff;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.65rem 1.25rem;
  font-family: Inter, system-ui, ui-sans-serif, sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  border-radius: 4px;
  border: 2px solid transparent;
  margin: 0.25rem 0.25rem 0.25rem 0;
  cursor: pointer;
  transition: transform 0.05s ease, background 0.15s ease;
}
.btn-primary {
  background: var(--sunset);
  color: #fff;
}
.btn-primary:hover { background: var(--sunset-dark); color: #fff; }
.btn-secondary {
  background: transparent;
  color: var(--navy-dark);
  border-color: var(--navy-dark);
}
.btn-secondary:hover { background: var(--navy-dark); color: #fff; }
.btn:active { transform: translateY(1px); }

/* Sections */
section {
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--border);
}
section:last-of-type { border-bottom: none; }

/* Three-card who's-it-for */
.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 1.25rem;
}
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.25rem;
}
.card h3 {
  margin-top: 0;
  color: var(--sunset-dark);
  font-size: 1rem;
}
.card p:last-child { margin-bottom: 0; }

/* Buy list */
.buy-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}
.buy-list li {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.buy-list li:last-child { border-bottom: none; }
.buy-list .edition { font-weight: 600; font-family: Inter, system-ui, ui-sans-serif, sans-serif; }
.buy-list .coming-soon { color: var(--muted); font-style: italic; }

/* Pull quote */
.pullquote {
  border-left: 4px solid var(--sunset);
  padding: 0.5rem 0 0.5rem 1.25rem;
  margin: 1.5rem 0;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--navy-dark);
}

/* Signup */
.signup {
  background: var(--ice);
  padding: 2.5rem 1.25rem;
  margin-top: 1rem;
}
.signup .container h2 { margin-top: 0; }
.age-gate {
  display: block;
  margin: 1rem 0;
  font-family: Inter, system-ui, ui-sans-serif, sans-serif;
  font-size: 0.98rem;
  user-select: none;
}
.age-gate input { margin-right: 0.5rem; transform: translateY(1px); }
#signup-form {
  margin-top: 1rem;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
}
#signup-form iframe {
  border: none;
  width: 100%;
  min-height: 320px;
  display: block;
}
.microcopy {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 1rem;
}

/* Footer */
footer {
  background: var(--navy-dark);
  color: #cdd6e1;
  padding: 2rem 1.25rem;
  font-family: Inter, system-ui, ui-sans-serif, sans-serif;
  font-size: 0.92rem;
}
footer .container { text-align: center; }
footer a { color: #ffd7b0; }
footer a:hover { color: #fff; }
footer p { margin: 0.4rem 0; }

/* Privacy page layout */
.page {
  padding: 2.5rem 0 3rem;
}
.page h1 { font-size: 2rem; }
.page .meta { color: var(--muted); font-size: 0.95rem; margin-bottom: 1.5rem; }
.page ul { padding-left: 1.25rem; }
.page li { margin-bottom: 0.4rem; }

/* Responsive */
@media (max-width: 760px) {
  .hero-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .hero-copy h1 { font-size: 1.8rem; }
  .cards { grid-template-columns: 1fr; }
  .cover-wrap img, .cover-placeholder { width: 260px; }
}
