:root {
  --ink: #1b1b1b;
  --paper: #f6f1e8;
  --accent: #b32424;
  --accent-dark: #7f1919;
  --gold: #c9a24a;
}

body {
  font-family: "Source Sans 3", "Helvetica Neue", Arial, sans-serif;
  background: radial-gradient(1200px 600px at 20% -10%, #fff6e5 0%, var(--paper) 45%, #efe7d8 100%);
  color: var(--ink);
}

.hero {
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 250, 241, 0.9), rgba(246, 236, 219, 0.95));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.badge-ribbon {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.4rem;
  letter-spacing: 0.01em;
}

.hero-sub {
  font-size: 1.1rem;
  color: #4b4b4b;
}

.cta-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 10px 20px rgba(179, 36, 36, 0.25);
}

.cta-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
}

.cta-secondary {
  border-color: var(--ink);
  color: var(--ink);
  background: #fff;
}

.price-card {
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.1);
  background: #fff;
}

.price-card .card-header {
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  font-weight: 700;
}

.price {
  font-size: 2rem;
  color: var(--accent);
  font-weight: 700;
}

.buy-note {
  font-size: 0.9rem;
  color: #5a5a5a;
}

.quote-block {
  border-left: 4px solid var(--gold);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

.cover {
  border-radius: 10px;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.2);
  transform: rotate(-1.5deg);
}

.retail-strip {
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.contact-card {
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

.contact-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.2rem;
}

.contact-sub {
  font-size: 1.1rem;
  color: #4b4b4b;
}

.section-hero {
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.1);
}

.section-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.1rem;
}

.prose {
  font-size: 1.05rem;
  line-height: 1.7;
}

.prose .dropcap:first-letter {
  float: left;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 3.2rem;
  line-height: 1;
  padding-right: 0.35rem;
  padding-top: 0.2rem;
  color: var(--accent);
}

.pull-quote {
  border-left: 4px solid var(--gold);
  background: #fff;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

.cta-strip {
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.1);
}

.quote-card {
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.1);
}

.quote-card h5 {
  font-family: "Playfair Display", Georgia, serif;
}

.navbar .nav-buy .nav-link {
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  margin-left: 0.4rem;
}

.navbar .nav-buy .nav-link:hover,
.navbar .nav-buy .nav-link:focus {
  background: var(--accent-dark);
  color: #fff;
}

.bio-photo {
  border-radius: 14px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.15);
}

.timeline {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.timeline li {
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
  margin-bottom: 1rem;
}

.timeline .year {
  font-weight: 700;
  color: var(--accent);
}

.page-image {
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.15);
}

.hero,
.price-card,
.retail-strip {
  animation: rise 0.7s ease both;
}

.price-card {
  animation-delay: 0.1s;
}

.retail-strip {
  animation-delay: 0.2s;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero,
  .price-card,
  .retail-strip {
    animation: none;
  }
}
