:root {
  --bg: #f5f2ee;
  --paper: #fcfaf7;
  --text: #2f2a2a;
  --muted: #5d5555;
  --accent: #8b161b;
  --accent-dark: #661015;
  --line: #d8cbb6;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Georgia", "Times New Roman", serif;
  color: var(--text);
  background: radial-gradient(circle at top, #ffffff, var(--bg));
}
.container { width: min(1120px, 92%); margin: 0 auto; }
.site-header { background: rgba(252, 250, 247, 0.95); border-bottom: 1px solid #e4ddd2; position: sticky; top: 0; z-index: 1000; backdrop-filter: blur(3px); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 0; }
.brand { font-size: 2rem; text-decoration: none; color: var(--text); }
.nav-links { display: flex; gap: 1.5rem; }
.nav-links a { text-decoration: none; color: var(--muted); font-size: 1.15rem; }
.nav-links a.active { color: var(--text); font-weight: 700; }
.btn { display: inline-block; text-decoration: none; padding: .8rem 1.2rem; border-radius: .5rem; font-weight: 700; }
.btn-primary { color: #fff; background: linear-gradient(180deg, #a51d24, var(--accent)); box-shadow: 0 8px 16px rgba(127,22,28,.2); }
.btn-primary:hover { background: var(--accent-dark); }
.btn-outline { border: 2px solid #a25656; color: #803838; }
.btn-disabled, .btn-disabled:hover {
  background: #b8b0b0;
  box-shadow: none;
  color: #f4eeee;
  cursor: not-allowed;
  pointer-events: none;
}
.hero { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; align-items: center; padding: 4rem 0 2rem; }
.hero-cover img { width: 100%; max-width: 440px; border-radius: 10px; filter: drop-shadow(0 24px 30px rgba(0,0,0,.28)); }
.hero-cover img:hover { transform: translateY(-2px); transition: transform .25s ease; }
.hero h1 { font-size: clamp(2rem, 5vw, 4rem); line-height: 1.12; margin: 0; }
.hero p { font-size: 1.35rem; color: var(--muted); line-height: 1.6; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.story { text-align: center; padding: 2rem 0; }
.story h2 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: .8rem; }
.story p { max-width: 820px; margin: 0 auto; font-size: 1.4rem; line-height: 1.6; color: var(--muted); }
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; padding: 1.6rem 0 3rem; }
.features article { background: var(--paper); border: 1px solid var(--line); padding: 1.4rem; border-radius: .8rem; text-align: center; }
.features h3 { font-size: 1.9rem; margin: .2rem 0 .5rem; }
.features p { margin: 0; color: var(--muted); font-size: 1.2rem; }
.cta-banner { background: linear-gradient(180deg, #ede3d7, #e6d8ca); padding: 3rem 0; }
.cta-banner-inner { text-align: center; }
.cta-banner h2 { font-size: clamp(2rem, 4vw, 3.2rem); margin-top: 0; }
.page { padding: 3rem 0; }
.lead { color: var(--muted); font-size: 1.2rem; }
.book-layout { display: grid; grid-template-columns: minmax(220px, 360px) 1fr; gap: 2rem; align-items: start; }
.book-layout img { width: 100%; border-radius: 8px; filter: drop-shadow(0 18px 26px rgba(0,0,0,.22)); }
.contact-list { font-size: 1.2rem; line-height: 1.8; }
.site-footer { border-top: 1px solid #e1d5c8; text-align: center; padding: 1.2rem 0; color: #6e6565; }
@media (max-width: 900px) {
  .nav-wrap { flex-wrap: wrap; }
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero-cover img { max-width: 360px; }
  .hero-cta { justify-content: center; }
  .features { grid-template-columns: 1fr; }
  .book-layout { grid-template-columns: 1fr; }
}

.site-footer a { color: inherit; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }

.newsletter-teaser {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: .8rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

.newsletter-box {
  margin-top: 2rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: .8rem;
  background: var(--paper);
}

.newsletter-form { display: grid; gap: .8rem; margin-bottom: 1.5rem; }
.newsletter-form label { display: grid; gap: .35rem; font-weight: 700; }
.newsletter-form input[type="text"],
.newsletter-form input[type="email"] {
  padding: .7rem;
  border: 1px solid #ccbda8;
  border-radius: .45rem;
  font: inherit;
}
.newsletter-form .consent {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: .55rem;
  align-items: start;
  font-weight: 400;
  line-height: 1.5;
  margin: .8rem 0 1rem;
}

.newsletter-form .consent input {
  margin-top: .35em;
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.newsletter-form .consent-text {
  display: block;
  min-width: 0;
}

.newsletter-form .consent-text a {
  white-space: nowrap;
  text-decoration: underline;
}


.form-feedback {
  background: #efe6d8;
  border: 1px solid #ccbda8;
  padding: .8rem 1rem;
  border-radius: .5rem;
  font-weight: 700;
}
