:root {
  --bg: #faf7f2;
  --paper: #fffaf3;
  --ink: #1a1410;
  --muted: #5c5147;
  --line: #e5dfd5;
  --accent: #b6502d;
  --accent-dark: #7e351d;
  --soft: #f0e9dd;
  --shadow: 0 24px 70px rgba(47, 31, 22, 0.13);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}
a { color: inherit; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(820px, calc(100% - 40px)); margin: 0 auto; }
.skip-link { position: absolute; left: -999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.skip-link:focus { left: 20px; top: 20px; width: auto; height: auto; background: var(--ink); color: var(--paper); padding: 10px 14px; z-index: 10; }
.hp { display: none !important; }

.hero {
  padding: 110px 0 80px;
  text-align: center;
}
.hero h1 {
  font-family: Newsreader, Georgia, serif;
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
  margin: 0 0 28px;
}
.hero-tagline {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  color: var(--muted);
  margin: 0 0 28px;
}
.hero-promise {
  font-family: Newsreader, Georgia, serif;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  font-style: italic;
  color: var(--accent);
  margin: 0;
}

.catalog {
  padding: 60px 0 80px;
  border-top: 1px solid var(--line);
}
.zone {
  margin: 0 0 56px;
}
.zone-name {
  font-family: Newsreader, Georgia, serif;
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0 0 22px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.zone-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}
.zone-list li {
  font-size: 1.02rem;
  line-height: 1.5;
}
.zone-list a {
  display: inline-block;
  padding: 6px 0;
  text-decoration: none;
  color: var(--ink);
  border-bottom: 1px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.zone-list a:hover,
.zone-list a:focus-visible {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.book-subtitle {
  color: var(--muted);
  font-style: italic;
}

.capture {
  padding: 80px 0 90px;
  background: var(--soft);
  border-top: 1px solid var(--line);
}
.capture h2 {
  font-family: Newsreader, Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.04em;
  margin: 0 0 14px;
  text-align: center;
}
.capture-tagline {
  text-align: center;
  color: var(--muted);
  margin: 0 0 36px;
}
.lead-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  display: grid;
  gap: 16px;
  max-width: 520px;
  margin: 0 auto;
}
.lead-form label {
  display: grid;
  gap: 7px;
  font-weight: 700;
  font-size: 0.92rem;
}
input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
}
input:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  background: var(--ink);
  color: var(--paper);
  font: inherit;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(47, 31, 22, 0.16);
}
.button.full {
  width: 100%;
}
.form-status {
  min-height: 1.2em;
  margin: 0;
  color: var(--accent-dark);
  font-weight: 700;
  text-align: center;
}

.site-footer {
  padding: 36px 0 44px;
  background: var(--ink);
  color: rgba(255, 250, 243, 0.78);
  font-size: 0.95rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.site-footer a {
  color: var(--paper);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 640px) {
  .hero { padding: 70px 0 50px; }
  .catalog { padding: 50px 0 60px; }
  .capture { padding: 60px 0 70px; }
  .footer-inner { flex-direction: column; gap: 8px; }
}
