:root {
  --ivory: #fbf7ef;
  --ivory-2: #f3ecdf;
  --paper: #fffdf8;
  --navy: #1f3348;
  --navy-2: #29465f;
  --sage: #758a79;
  --sage-light: #e3e9e1;
  --rose: #8b6a72;
  --rose-light: #efe4e6;
  --gold: #b69658;
  --gold-light: #eadfc8;
  --ink: #25313b;
  --muted: #65717a;
  --white: #ffffff;
  --border: rgba(31, 51, 72, 0.14);
  --shadow: 0 24px 60px rgba(31, 51, 72, 0.13);
  --shadow-soft: 0 12px 30px rgba(31, 51, 72, 0.09);
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 34px;
  --container: 1180px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }

.skip-link {
  position: fixed;
  top: -80px;
  left: 1rem;
  z-index: 9999;
  padding: .75rem 1rem;
  background: var(--navy);
  color: var(--white);
  border-radius: 8px;
}
.skip-link:focus { top: 1rem; }

.container { width: min(calc(100% - 2rem), var(--container)); margin-inline: auto; }
.narrow { width: min(calc(100% - 2rem), 820px); margin-inline: auto; }
.section { padding: 5.5rem 0; }
.section-sm { padding: 3rem 0; }
.section-alt { background: var(--paper); }
.section-tint { background: linear-gradient(135deg, var(--sage-light), var(--rose-light)); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin: 0 0 1rem;
  color: var(--rose);
  font-size: .79rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--gold); }
h1, h2, h3, h4 { margin: 0 0 1rem; color: var(--navy); font-family: var(--serif); line-height: 1.12; font-weight: 600; }
h1 { font-size: clamp(2.7rem, 6vw, 5.25rem); letter-spacing: -.045em; }
h2 { font-size: clamp(2.1rem, 4vw, 3.5rem); letter-spacing: -.035em; }
h3 { font-size: clamp(1.4rem, 2vw, 1.95rem); }
p { margin: 0 0 1.15rem; }
.lede { font-size: clamp(1.05rem, 2vw, 1.28rem); color: var(--muted); max-width: 680px; }
.center { text-align: center; }
.center .lede { margin-inline: auto; }
.kicker { font-family: var(--serif); color: var(--rose); font-size: 1.1rem; font-style: italic; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(251, 247, 239, .93);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(31,51,72,.08);
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 1.25rem; }
.brand { display: inline-flex; align-items: center; gap: .8rem; text-decoration: none; min-width: 0; }
.brand img { width: 46px; height: 46px; }
.brand-copy { display: grid; line-height: 1.05; }
.brand-name { font-family: var(--serif); color: var(--navy); font-size: 1.2rem; font-weight: 700; }
.brand-tag { color: var(--rose); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; margin-top: .25rem; }
.nav-links { display: flex; align-items: center; gap: 1.6rem; }
.nav-links a { text-decoration: none; color: var(--navy); font-weight: 700; font-size: .92rem; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--rose); }
.nav-toggle { display: none; border: 0; background: transparent; color: var(--navy); padding: .5rem; cursor: pointer; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: currentColor; margin: 5px 0; }

.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 1.8rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 50px;
  padding: .8rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn-primary { background: var(--navy); color: var(--white); }
.btn-secondary { background: var(--gold); color: #132536; }
.btn-outline { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-light { background: var(--white); color: var(--navy); }
.btn-small { min-height: 42px; padding: .6rem 1rem; font-size: .9rem; }

.hero { position: relative; overflow: hidden; padding: 5rem 0 4.5rem; }
.hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(182,150,88,.22), rgba(182,150,88,0) 70%);
  right: -110px;
  top: -150px;
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 4rem; }
.hero-copy { max-width: 650px; }
.hero-art { position: relative; min-height: 560px; }
.book-deck { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.book-deck::before {
  content: "";
  position: absolute;
  inset: 9% 2% 7%;
  border-radius: 48% 52% 55% 45%;
  background: linear-gradient(135deg, var(--sage-light), var(--rose-light));
  transform: rotate(-3deg);
}
.book-cover { position: absolute; object-fit: contain; filter: drop-shadow(0 24px 24px rgba(31,51,72,.20)); }
.book-cover.main { width: 48%; z-index: 3; transform: translateY(-12px); }
.book-cover.left { width: 39%; left: 2%; bottom: 7%; z-index: 2; transform: rotate(-8deg); }
.book-cover.right { width: 39%; right: 1%; bottom: 8%; z-index: 1; transform: rotate(8deg); }
.hero-badge {
  position: absolute;
  right: 3%;
  top: 9%;
  z-index: 5;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1rem;
  background: var(--navy);
  color: var(--white);
  border: 5px solid var(--ivory);
  box-shadow: var(--shadow-soft);
  font-family: var(--serif);
  transform: rotate(5deg);
}
.hero-badge strong { display: block; font-size: 1.35rem; }

.trust-bar { background: var(--navy); color: var(--white); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-item { padding: 1.15rem 1rem; text-align: center; font-weight: 750; border-right: 1px solid rgba(255,255,255,.16); }
.trust-item:last-child { border: 0; }
.trust-item span { color: var(--gold-light); }

.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 2.3rem; }
.section-heading > div { max-width: 720px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.7rem; }
.card { background: var(--paper); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-soft); overflow: hidden; }
.book-card { display: flex; flex-direction: column; height: 100%; }
.book-card-media { min-height: 410px; display: grid; place-items: center; padding: 2rem; background: linear-gradient(145deg, #f5eee2, #faf8f3); }
.book-card-media img { max-height: 355px; width: 100%; object-fit: contain; filter: drop-shadow(0 18px 18px rgba(31,51,72,.18)); }
.book-card-body { display: flex; flex-direction: column; flex: 1; padding: 1.55rem; }
.book-meta { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: .85rem; }
.pill { display: inline-flex; align-items: center; padding: .3rem .65rem; border-radius: 999px; background: var(--sage-light); color: var(--navy); font-size: .76rem; font-weight: 800; }
.pill.preorder { background: var(--rose-light); color: #6b4650; }
.price-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: auto; padding-top: 1rem; }
.price { color: var(--navy); font-family: var(--serif); font-size: 1.65rem; font-weight: 700; }
.small-note { color: var(--muted); font-size: .88rem; }

.feature { display: grid; grid-template-columns: .9fr 1.1fr; gap: 4rem; align-items: center; }
.feature-media { position: relative; }
.feature-media::before { content: ""; position: absolute; inset: 10% -8% -7% 10%; background: var(--rose-light); border-radius: var(--radius-lg); transform: rotate(3deg); }
.feature-media img { position: relative; border-radius: var(--radius); box-shadow: var(--shadow); }
.check-list { list-style: none; padding: 0; margin: 1.4rem 0 0; display: grid; gap: .75rem; }
.check-list li { position: relative; padding-left: 1.8rem; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--sage); font-weight: 900; }

.bundle-card { display: grid; grid-template-columns: .9fr 1.1fr; background: var(--navy); color: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.bundle-card + .bundle-card { margin-top: 2rem; }
.bundle-card.reverse { grid-template-columns: 1.1fr .9fr; }
.bundle-card.reverse .bundle-media { order: 2; }
.bundle-media { background: var(--paper); min-height: 420px; }
.bundle-media img { width: 100%; height: 100%; object-fit: cover; }
.bundle-copy { padding: clamp(2rem, 5vw, 4rem); align-self: center; }
.bundle-copy h2, .bundle-copy h3 { color: var(--white); }
.bundle-copy .price { color: var(--gold-light); font-size: 2.3rem; }
.bundle-copy .small-note { color: rgba(255,255,255,.75); }

.about-preview { display: grid; grid-template-columns: .8fr 1.2fr; gap: 4rem; align-items: center; }
.portrait-frame { position: relative; max-width: 480px; }
.portrait-frame::after { content: ""; position: absolute; inset: 8% -7% -7% 10%; border: 2px solid var(--gold); border-radius: var(--radius-lg); z-index: 0; }
.portrait-frame img { position: relative; z-index: 1; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.quote { margin: 1.5rem 0; padding: 1.3rem 1.5rem; border-left: 4px solid var(--gold); background: var(--paper); color: var(--navy); font-family: var(--serif); font-size: 1.25rem; font-style: italic; }

.cta-band { background: linear-gradient(135deg, var(--navy), #31546e); color: var(--white); border-radius: var(--radius-lg); padding: clamp(2rem, 5vw, 4rem); display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.cta-band h2 { color: var(--white); max-width: 740px; }
.cta-band p { color: rgba(255,255,255,.8); }

.page-hero { padding: 4.5rem 0 3.6rem; background: linear-gradient(140deg, var(--ivory), var(--rose-light)); border-bottom: 1px solid var(--border); }
.page-hero h1 { font-size: clamp(2.6rem, 5vw, 4.7rem); }
.breadcrumbs { color: var(--muted); font-size: .9rem; margin-bottom: 1rem; }
.breadcrumbs a { color: var(--rose); text-decoration: none; }

.product-row { display: grid; grid-template-columns: .72fr 1.28fr; gap: 4rem; align-items: start; padding: 4rem 0; border-bottom: 1px solid var(--border); }
.product-row:last-child { border-bottom: 0; }
.product-art { position: sticky; top: 110px; background: linear-gradient(145deg, #f5eee2, #faf8f3); border-radius: var(--radius); padding: 2rem; text-align: center; box-shadow: var(--shadow-soft); }
.product-art img { max-height: 520px; margin: auto; object-fit: contain; filter: drop-shadow(0 22px 20px rgba(31,51,72,.18)); }
.product-detail .price { font-size: 2.1rem; }
.notice { padding: 1rem 1.1rem; border-radius: var(--radius-sm); background: var(--rose-light); border-left: 4px solid var(--rose); margin: 1.2rem 0; }
.included { padding: 1.2rem; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--paper); }

.bio-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 4rem; align-items: center; }
.bio-photo img { border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.value-card { padding: 1.5rem; border-radius: var(--radius); border: 1px solid var(--border); background: var(--paper); }
.value-card .icon { font-size: 1.6rem; margin-bottom: .5rem; }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 3rem; align-items: start; }
.contact-card { padding: 1.75rem; background: var(--paper); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: grid; gap: .4rem; }
.form-field.full { grid-column: 1 / -1; }
label { color: var(--navy); font-weight: 800; font-size: .92rem; }
input, select, textarea { width: 100%; border: 1px solid rgba(31,51,72,.22); border-radius: 10px; padding: .8rem .9rem; background: var(--white); color: var(--ink); }
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(182,150,88,.25); border-color: var(--gold); }
textarea { min-height: 160px; resize: vertical; }

.policy-nav { display: flex; flex-wrap: wrap; gap: .55rem; margin: 1.5rem 0 2.5rem; }
.policy-nav a { text-decoration: none; padding: .45rem .75rem; background: var(--paper); border: 1px solid var(--border); border-radius: 999px; font-weight: 700; font-size: .86rem; }
.policy-section { padding: 2.2rem 0; border-bottom: 1px solid var(--border); scroll-margin-top: 100px; }
.policy-section:last-child { border-bottom: 0; }

.site-footer { background: #172a3d; color: rgba(255,255,255,.78); padding: 4rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .8fr; gap: 3rem; }
.site-footer h3, .site-footer h4 { color: var(--white); }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.footer-links a { color: rgba(255,255,255,.78); text-decoration: none; }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; padding-top: 2rem; margin-top: 2.5rem; border-top: 1px solid rgba(255,255,255,.14); font-size: .86rem; }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 960px) {
  .nav-toggle { display: block; }
  .nav-links { display: none; position: absolute; top: 78px; left: 0; right: 0; padding: 1rem; background: var(--ivory); border-bottom: 1px solid var(--border); box-shadow: var(--shadow-soft); flex-direction: column; align-items: stretch; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: .65rem; }
  .hero-grid, .feature, .about-preview, .bio-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-art { min-height: 530px; order: -1; }
  .hero-copy { text-align: center; margin: auto; }
  .hero-copy .lede { margin-inline: auto; }
  .hero-copy .btn-row { justify-content: center; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .bundle-card, .bundle-card.reverse { grid-template-columns: 1fr; }
  .bundle-card.reverse .bundle-media { order: 0; }
  .product-row { grid-template-columns: 1fr; gap: 2rem; }
  .product-art { position: relative; top: auto; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .section { padding: 4rem 0; }
  .brand-tag { display: none; }
  .hero { padding-top: 2.5rem; }
  .hero-art { min-height: 420px; }
  .hero-badge { width: 105px; height: 105px; right: 0; font-size: .8rem; }
  .hero-badge strong { font-size: 1rem; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .trust-item:last-child { border-bottom: 0; }
  .grid-3, .grid-2, .form-grid, .values-grid { grid-template-columns: 1fr; }
  .section-heading, .cta-band, .footer-bottom { align-items: flex-start; flex-direction: column; }
  .book-card-media { min-height: 330px; }
  .book-card-media img { max-height: 285px; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .bundle-media { min-height: 0; }
  .bundle-media img { height: auto; }
  .product-row { padding: 3rem 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Anti-spam honeypot: visually hidden but available to automated bots. */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
