:root {
  --bg: #f5f0e6;
  --paper: #fffdf8;
  --ink: #1f1a17;
  --muted: #6d645d;
  --line: #ded5ca;
  --accent: #8e1f1f;
  --accent-dark: #681515;
  --shadow: 0 14px 40px rgba(24, 18, 13, 0.08);
  --radius: 18px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f4efe6 0%, #faf7f2 28%, #f8f4ee 100%);
  line-height: 1.65;
}

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

.site-header {
  border-bottom: 1px solid rgba(31,26,23,.08);
  background: rgba(250,247,242,.85);
  backdrop-filter: blur(8px);
}
.navbar-brand {
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
  font-size: .92rem;
}
.site-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.1;
}
.hero-kicker, .eyebrow {
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  color: var(--muted);
}
.hero {
  padding: 5rem 0 3rem;
}
.hero-card, .paper-card {
  background: rgba(255,253,248,.92);
  border: 1px solid rgba(31,26,23,.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-card { padding: 2rem; }
.section { padding: 4rem 0; }
.section-sm { padding: 3rem 0; }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  margin-bottom: 1rem;
}
.lead-custom {
  font-size: 1.08rem;
  color: #3c342e;
}
.text-muted-custom { color: var(--muted); }

.book-card {
  background: var(--paper);
  border: 1px solid rgba(31,26,23,.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
}
.book-card img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
}
.book-card .card-body { padding: 1.35rem; }
.book-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
}

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 2rem;
}
.logo-chip {
  background: #fff;
  border: 1px solid rgba(31,26,23,.08);
  border-radius: 14px;
  padding: .9rem 1.2rem;
  min-height: 84px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(24,18,13,.05);
}
.logo-chip img {
  max-height: 42px;
  max-width: 170px;
  width: auto;
  height: auto;
}

.feature-link {
  display: block;
  padding: 1.2rem 1.4rem;
  border: 1px solid rgba(31,26,23,.08);
  border-radius: 14px;
  text-decoration: none;
  background: #fff;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.feature-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: rgba(142,31,31,.25);
}
.feature-link strong {
  display: block;
  color: var(--ink);
  margin-bottom: .15rem;
}

.btn-accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
}
.btn-outline-accent {
  color: var(--accent);
  border-color: rgba(142,31,31,.35);
}
.btn-outline-accent:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.quote-box {
  padding: 1.35rem 1.4rem;
  border-left: 4px solid var(--accent);
  background: rgba(255,255,255,.74);
  border-radius: 0 14px 14px 0;
}

.media-object img {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.list-clean {
  list-style: none;
  padding-left: 0;
}
.list-clean li + li { margin-top: .8rem; }

.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.download-card {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  padding: 1.2rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(31,26,23,.08);
  box-shadow: 0 8px 24px rgba(24,18,13,.05);
}
.download-card .small { color: var(--muted); }

.footer {
  border-top: 1px solid rgba(31,26,23,.08);
  padding: 2rem 0 3rem;
  color: var(--muted);
}
.footer a { text-decoration: none; }

.page-intro {
  padding: 4rem 0 2rem;
}
.page-intro .section-title { margin-bottom: .75rem; }

.interview h2,
.interview h3 {
  font-family: 'Playfair Display', serif;
}
.interview h2 { font-size: 2rem; margin-top: 2.8rem; }
.interview h3 { font-size: 1.1rem; margin-top: 1.8rem; color: var(--accent-dark); }
.interview .question {
  font-weight: 700;
  color: #2f2721;
}
.interview .answer { margin-bottom: 1.2rem; }

.meta-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid rgba(31,26,23,.08);
  border-radius: 14px;
}
.meta-table th,
.meta-table td {
  padding: .95rem 1rem;
  border-bottom: 1px solid rgba(31,26,23,.08);
  text-align: left;
}
.meta-table tr:last-child th,
.meta-table tr:last-child td { border-bottom: 0; }
.meta-table th {
  width: 34%;
  background: rgba(255,255,255,.6);
  font-weight: 700;
}

.notice {
  font-size: .95rem;
  color: var(--muted);
}

.sib-form .sib-form-block__button { width: 100%; }

@media (max-width: 767px) {
  .hero { padding-top: 3.5rem; }
  .hero-card { padding: 1.4rem; }
  .section { padding: 3rem 0; }
  .page-intro { padding-top: 3rem; }
}
