:root {
  --ink: #1f2933;
  --muted: #5f6f7d;
  --cream: #fffaf2;
  --rose: #cf7b79;
  --rose-dark: #a95250;
  --gold: #f2c56b;
  --sage: #83a987;
  --sky: #d8eef3;
  --white: #ffffff;
  --line: rgba(207, 123, 121, .22);
  --shadow: 0 18px 55px rgba(38, 45, 54, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, var(--cream) 0%, #fff 45%, #fff7ef 100%);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.65;
}
a { color: inherit; }
img { max-width: 100%; }
.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 100;
  padding: 10px 14px;
  background: #fff;
  color: var(--ink);
}
.skip-link:focus { left: 8px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 242, .94);
  backdrop-filter: blur(16px);
}
.nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 15px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
}
.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff 0 12%, var(--gold) 13% 27%, var(--rose) 28% 100%);
  box-shadow: 0 8px 22px rgba(207, 123, 121, .35);
  color: #fff;
  font: 800 14px Arial, sans-serif;
}
.brand-text small {
  display: block;
  margin-top: -4px;
  color: var(--muted);
  font: 700 11px Arial, sans-serif;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 17px;
  font: 700 13px Arial, sans-serif;
}
.nav-links a { text-decoration: none; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--rose-dark); }
.mobile-toggle {
  display: none;
  border: 0;
  border-radius: 14px;
  padding: 11px 13px;
  background: var(--rose);
  color: #fff;
  font-weight: 900;
}
.breadcrumb {
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px 22px 0;
  color: var(--muted);
  font: 700 13px Arial, sans-serif;
}
.breadcrumb a { color: var(--rose-dark); }
.hero-band {
  max-width: 1180px;
  margin: 0 auto;
  padding: 44px 22px 34px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 40px;
}
.kicker, .tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-family: Arial, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
}
.kicker {
  padding: 8px 13px;
  background: rgba(207, 123, 121, .13);
  color: var(--rose-dark);
  font-size: 12px;
  letter-spacing: .12em;
}
.tag {
  padding: 6px 10px;
  background: rgba(131, 169, 135, .16);
  color: #496f4d;
  font-size: 11px;
  letter-spacing: .08em;
}
h1, h2, h3 { margin: 0; line-height: 1.1; }
h1 {
  max-width: 820px;
  margin-top: 18px;
  font-size: clamp(42px, 6vw, 72px);
  letter-spacing: -.04em;
}
h2 { font-size: clamp(30px, 4vw, 48px); letter-spacing: -.03em; }
h3 { font-size: 26px; letter-spacing: -.02em; }
.lead {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 19px;
}
.hero-card {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 34px;
  background: radial-gradient(circle at 15% 12%, rgba(255, 255, 255, .95) 0 10%, transparent 11%), linear-gradient(145deg, #f9e3df, var(--sky));
  box-shadow: var(--shadow);
}
.hero-card h2 { font-size: 28px; }
.hero-card p { color: var(--muted); }
.hero-card ul { margin: 18px 0 0; padding-left: 22px; }
.hero-actions, .button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 17px;
  border: 2px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font: 800 14px Arial, sans-serif;
  transition: transform .16s ease, background .16s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--rose); color: #fff; }
.btn-primary:hover { background: var(--rose-dark); }
.btn-secondary { border-color: rgba(207, 123, 121, .35); background: #fff; color: var(--rose-dark); }
.content { max-width: 1180px; margin: 0 auto; padding: 20px 22px 74px; }
.section { padding: 38px 0; }
.section-heading { max-width: 780px; margin-bottom: 24px; }
.section-heading p { margin: 13px 0 0; color: var(--muted); font-size: 17px; }
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 12px 36px rgba(31, 41, 51, .07);
}
.card h3 { margin: 12px 0 10px; }
.card p { margin: 0 0 15px; color: var(--muted); }
.card ul { margin: 12px 0 0; padding-left: 21px; }
.book-row {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 18px;
  align-items: start;
}
.book-number {
  width: 82px;
  height: 110px;
  display: grid;
  place-items: center;
  border-radius: 18px 10px 10px 18px;
  background: linear-gradient(155deg, #ffd7eb, #fff4bd 55%, #bde9dc);
  box-shadow: inset -8px 0 rgba(0, 0, 0, .07), 0 12px 24px rgba(31, 41, 51, .12);
  color: #6b3c66;
  font: 900 24px Arial, sans-serif;
}
.book-number.memoir { background: linear-gradient(155deg, #303946, #727d89 65%, #f1e9df); color: #fff; }
.book-number.journal { background: linear-gradient(155deg, #fff, #f9e3df 55%, #cf7b79); color: #6b3c3a; }
.resource-list { display: grid; gap: 13px; padding: 0; list-style: none; }
.resource-list li {
  padding: 14px 16px;
  border-left: 4px solid var(--rose);
  border-radius: 0 14px 14px 0;
  background: #fff8f5;
}
.copy-box {
  margin-top: 16px;
  padding: 18px;
  border: 1px dashed rgba(169, 82, 80, .45);
  border-radius: 18px;
  background: #fffaf7;
}
.copy-text { white-space: pre-wrap; color: #38434d; font-family: Arial, sans-serif; font-size: 14px; }
.copy-button {
  margin-top: 12px;
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  font: 800 13px Arial, sans-serif;
}
.copy-status { margin-left: 8px; color: #496f4d; font: 700 12px Arial, sans-serif; }
.notice {
  padding: 22px 24px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(207, 123, 121, .14), rgba(242, 197, 107, .2));
}
.notice p { margin: 0; color: var(--muted); }
.footer { background: #1f2933; color: #fff; padding: 42px 22px; }
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 30px;
}
.footer p, .footer a { color: rgba(255, 255, 255, .78); }
.footer a { text-decoration: none; }
.footer-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px 20px; font: 700 13px Arial, sans-serif; }

@media (max-width: 900px) {
  .hero-band, .grid-2, .grid-3, .footer-inner { grid-template-columns: 1fr; }
  .nav { align-items: flex-start; }
  .mobile-toggle { display: inline-flex; }
  .nav-links {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 76px;
    padding: 18px;
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }
  .nav-links.open { display: flex; }
}

@media (max-width: 560px) {
  .hero-band { padding-top: 32px; }
  .book-row { grid-template-columns: 60px 1fr; }
  .book-number { width: 60px; height: 84px; font-size: 19px; }
  .button-row .btn, .hero-actions .btn { width: 100%; }
}
