:root {
  --ink: #183456;
  --ink-deep: #10243c;
  --blue: #29547d;
  --blue-soft: #dce9f2;
  --cream: #fff8eb;
  --paper: #fffdf7;
  --gold: #f2b45b;
  --gold-deep: #d98a2f;
  --olive: #59613c;
  --coral: #bd5b39;
  --text: #253548;
  --muted: #627083;
  --line: rgba(24, 52, 86, .14);
  --shadow: 0 24px 70px rgba(16, 36, 60, .14);
  --shadow-soft: 0 12px 34px rgba(16, 36, 60, .09);
  --radius: 28px;
  --sans: "Trebuchet MS", "Avenir Next", Avenir, system-ui, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: var(--blue); text-underline-offset: 3px; }
a:hover { color: var(--coral); }
button, input, textarea, select { font: inherit; }
:focus-visible { outline: 4px solid rgba(242, 180, 91, .7); outline-offset: 3px; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 200;
  padding: 12px 18px;
  border-radius: 0 0 12px 12px;
  color: white;
  background: var(--ink);
  transition: top .2s ease;
}
.skip-link:focus { top: 0; }
.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.narrow { width: min(780px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: clamp(68px, 8vw, 112px) 0; }
.section-sm { padding: 48px 0; }
.section-blue { color: white; background: var(--ink); }
.section-cream { background: var(--cream); }
.eyebrow {
  margin: 0 0 10px;
  color: var(--coral);
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.section-blue .eyebrow { color: #ffd394; }
h1, h2, h3 { color: var(--ink-deep); line-height: 1.08; text-wrap: balance; }
h1, h2 { font-family: var(--serif); }
h1 { margin: 0; font-size: clamp(2.8rem, 7vw, 5.8rem); letter-spacing: -.045em; }
h2 { margin: 0 0 20px; font-size: clamp(2.1rem, 4.4vw, 3.7rem); letter-spacing: -.035em; }
h3 { margin: 0 0 10px; font-size: 1.28rem; }
p { margin: 0 0 1.2em; }
.lead { max-width: 710px; color: #43546a; font-size: clamp(1.08rem, 2vw, 1.28rem); }
.section-blue h2, .section-blue h3 { color: white; }
.section-blue .lead { color: #dce7f2; }
.rule { width: 70px; height: 5px; margin: 22px 0; border: 0; border-radius: 3px; background: var(--gold); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,.15);
  color: white;
  background: rgba(16, 36, 60, .94);
  backdrop-filter: blur(14px);
}
.nav-wrap { position: relative; min-height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; color: white; text-decoration: none; }
.brand img { width: 48px; height: 48px; }
.brand-name { display: block; font-family: var(--serif); font-size: 1.12rem; font-weight: 700; line-height: 1.1; }
.brand-tag { display: block; margin-top: 3px; color: #c7d5e4; font-size: .68rem; letter-spacing: .045em; }
.site-nav { display: flex; align-items: center; gap: 6px; }
.site-nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: #eef5fb;
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: white; background: rgba(255,255,255,.11); }
.site-nav .nav-buy { margin-left: 5px; padding-inline: 17px; color: var(--ink-deep); background: var(--gold); }
.site-nav .nav-buy:hover { color: var(--ink-deep); background: #ffcb7b; }
.menu-button {
  display: none;
  width: 48px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 12px;
  color: white;
  background: transparent;
  cursor: pointer;
}
.menu-button span, .menu-button::before, .menu-button::after {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  content: "";
  background: currentColor;
}

.button-row { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 28px; }
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 21px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  color: white;
  background: var(--ink);
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); color: white; background: var(--blue); box-shadow: 0 8px 24px rgba(16,36,60,.17); }
.button-gold { border-color: var(--gold); color: var(--ink-deep); background: var(--gold); }
.button-gold:hover { color: var(--ink-deep); background: #ffc873; }
.button-outline { color: var(--ink); background: transparent; }
.button-outline:hover { color: white; }
.button-light { border-color: white; color: white; background: transparent; }
.button-light:hover { color: var(--ink); background: white; }
.arrow { font-size: 1.2em; line-height: 1; }

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  overflow: hidden;
  color: white;
  background: var(--ink-deep);
}
.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(9,24,42,.94) 0%, rgba(13,32,54,.84) 38%, rgba(13,32,54,.26) 70%, rgba(13,32,54,.12) 100%), url("assets/community-salute.webp") center 38% / cover;
}
.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 150px;
  content: "";
  background: linear-gradient(transparent, rgba(10,26,44,.5));
}
.hero .container { position: relative; z-index: 2; display: grid; align-items: center; padding-block: 90px 110px; }
.hero-content { max-width: 700px; }
.hero h1 { color: white; }
.hero-kicker { margin-bottom: 18px; color: #ffd394; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.hero-tagline { max-width: 620px; margin-top: 22px; color: #eef5fb; font-family: var(--serif); font-size: clamp(1.35rem, 2.3vw, 1.85rem); line-height: 1.4; }
.hero-note { margin-top: 28px; color: #cad9e8; font-size: .9rem; }

.feature-grid { display: grid; grid-template-columns: minmax(280px,.85fr) minmax(360px,1.15fr); align-items: center; gap: clamp(44px, 8vw, 100px); }
.book-cover-wrap { position: relative; width: min(100%, 420px); margin-inline: auto; }
.book-cover-wrap::before {
  position: absolute;
  inset: 7% -8% -5% 12%;
  z-index: 0;
  border-radius: var(--radius);
  content: "";
  background: var(--blue-soft);
  transform: rotate(4deg);
}
.book-cover { position: relative; z-index: 1; width: 100%; border-radius: 8px 18px 18px 8px; box-shadow: 0 30px 80px rgba(16,36,60,.27); }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0; }
.tag { padding: 7px 12px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink); background: white; font-size: .82rem; font-weight: 800; }

.story-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.story-card { overflow: hidden; border-radius: 24px; background: white; box-shadow: var(--shadow-soft); }
.story-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.story-card:nth-child(2) img { object-position: center 28%; }
.story-card:nth-child(3) img { object-position: center 32%; }
.story-card-copy { padding: 22px; }
.story-card p { margin: 0; color: var(--muted); font-size: .95rem; }

.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 42px; }
.value-card { min-height: 220px; padding: 28px; border: 1px solid rgba(255,255,255,.14); border-radius: 24px; background: rgba(255,255,255,.06); }
.value-icon { display: grid; width: 46px; height: 46px; margin-bottom: 20px; place-items: center; border-radius: 50%; color: var(--ink); background: var(--gold); font-family: var(--serif); font-size: 1.25rem; font-weight: 800; }
.value-card p { margin: 0; color: #cbd9e7; font-size: .93rem; }

.author-preview { display: grid; grid-template-columns: 320px 1fr; align-items: center; gap: clamp(40px, 7vw, 90px); }
.author-photo { aspect-ratio: 4 / 5; width: 100%; object-fit: cover; object-position: 50% 25%; border-radius: 34px; box-shadow: var(--shadow); }
.signature { color: var(--coral); font-family: var(--serif); font-size: 1.25rem; font-style: italic; }

.cta-band { padding: 68px 0; color: white; background: linear-gradient(115deg, var(--blue), var(--ink-deep)); }
.cta-grid { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 35px; }
.cta-band h2 { margin-bottom: 8px; color: white; font-size: clamp(2rem,4vw,3.2rem); }
.cta-band p { margin: 0; color: #dfeaf4; }

.page-hero { padding: clamp(76px, 9vw, 120px) 0; color: white; background: var(--ink-deep); }
.page-hero h1 { max-width: 900px; color: white; font-size: clamp(2.8rem, 6vw, 5rem); }
.page-hero .lead { margin-top: 24px; color: #dce8f3; }
.breadcrumb { margin-bottom: 24px; color: #b9cadb; font-size: .85rem; }
.breadcrumb a { color: white; }

.book-hero { position: relative; overflow: hidden; background: linear-gradient(120deg, #f8ead8, var(--paper) 60%); }
.book-hero::after {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  content: "";
  background: rgba(242,180,91,.19);
}
.book-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 390px 1fr; align-items: center; gap: clamp(45px, 8vw, 100px); }
.book-title { font-size: clamp(2.9rem, 6vw, 5.4rem); }
.book-subtitle { color: var(--coral); font-family: var(--serif); font-size: 1.45rem; font-style: italic; }
.book-meta { margin-top: 26px; color: var(--muted); font-size: .92rem; }

.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(42px, 7vw, 86px); }
.split-image { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); }
.quote-card { padding: clamp(30px,5vw,56px); border-left: 7px solid var(--gold); border-radius: 0 var(--radius) var(--radius) 0; background: white; box-shadow: var(--shadow-soft); }
.quote-card blockquote { margin: 0; color: var(--ink); font-family: var(--serif); font-size: clamp(1.45rem,3vw,2.2rem); line-height: 1.35; }
.quote-card cite { display: block; margin-top: 20px; color: var(--muted); font-size: .9rem; font-style: normal; }

.collection-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 28px; }
.collection-card { display: grid; grid-template-columns: 180px 1fr; gap: 28px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: var(--shadow-soft); }
.collection-card img { width: 100%; border-radius: 6px 12px 12px 6px; }
.coming-card { min-height: 360px; display: grid; align-content: center; padding: 48px; border: 2px dashed rgba(24,52,86,.2); border-radius: var(--radius); background: var(--cream); }
.house-dots { display: flex; gap: 9px; margin-bottom: 24px; }
.house-dots span { width: 13px; height: 13px; border-radius: 50%; background: var(--gold); }
.house-dots span:nth-child(2) { background: var(--coral); }
.house-dots span:nth-child(3) { background: var(--olive); }

.card-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 38px; }
.info-card { padding: 30px; border: 1px solid var(--line); border-radius: 24px; background: white; box-shadow: var(--shadow-soft); }
.info-card-number { margin-bottom: 16px; color: var(--gold-deep); font-family: var(--serif); font-size: 2rem; font-weight: 700; }
.info-card p:last-child { margin-bottom: 0; }

.question-list { display: grid; gap: 12px; margin: 32px 0 0; padding: 0; counter-reset: questions; list-style: none; }
.question-list li { position: relative; padding: 20px 22px 20px 66px; border: 1px solid var(--line); border-radius: 18px; background: white; }
.question-list li::before { position: absolute; left: 20px; top: 18px; display: grid; width: 32px; height: 32px; place-items: center; border-radius: 50%; counter-increment: questions; content: counter(questions); color: white; background: var(--blue); font-weight: 800; }
.activity { display: grid; grid-template-columns: 64px 1fr; gap: 18px; padding: 26px; border-radius: 22px; background: white; box-shadow: var(--shadow-soft); }
.activity-icon { display: grid; width: 56px; height: 56px; place-items: center; border-radius: 18px; color: var(--ink); background: var(--gold); font-family: var(--serif); font-size: 1.5rem; font-weight: 800; }

.about-grid { display: grid; grid-template-columns: minmax(300px,.78fr) minmax(400px,1.22fr); align-items: start; gap: clamp(45px,8vw,100px); }
.about-grid .author-photo { max-width: 420px; }
.credential-list { display: grid; gap: 12px; margin-top: 28px; }
.credential { padding: 16px 19px; border-left: 4px solid var(--gold); background: var(--cream); }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(46px,8vw,100px); }
.contact-card { padding: clamp(28px,5vw,48px); border-radius: var(--radius); background: white; box-shadow: var(--shadow); }
.form-field { margin-bottom: 20px; }
.form-field label { display: block; margin-bottom: 7px; color: var(--ink); font-weight: 800; }
.form-field input, .form-field select, .form-field textarea { width: 100%; padding: 13px 15px; border: 1.5px solid #b9c5d2; border-radius: 12px; color: var(--text); background: #fff; }
.form-field textarea { min-height: 160px; resize: vertical; }
.form-note, .status-message { color: var(--muted); font-size: .83rem; }
.status-message { min-height: 24px; margin: 14px 0 0; color: var(--olive); font-weight: 700; }

.site-footer { padding: 58px 0 25px; color: #cbd8e6; background: #0d2138; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .65fr .65fr; gap: 50px; }
.footer-brand { display: flex; align-items: center; gap: 12px; color: white; font-family: var(--serif); font-size: 1.3rem; font-weight: 700; }
.footer-brand img { width: 52px; }
.footer-tagline { max-width: 390px; margin-top: 18px; color: #afc1d3; }
.footer-heading { margin-bottom: 14px; color: white; font-size: .82rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.footer-links { display: grid; gap: 8px; }
.footer-links a { color: #dbe6f0; text-decoration: none; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 46px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); color: #8fa5ba; font-size: .8rem; }

[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .brand-tag { display: none; }
  .menu-button { display: block; }
  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    padding: 16px 20px 22px;
    border-bottom: 1px solid rgba(255,255,255,.14);
    background: var(--ink-deep);
    box-shadow: 0 20px 35px rgba(0,0,0,.18);
  }
  .site-nav.is-open { display: grid; }
  .site-nav a { padding: 12px 16px; }
  .site-nav .nav-buy { margin: 8px 0 0; }
  .hero { min-height: 680px; }
  .hero::before { background: linear-gradient(90deg, rgba(9,24,42,.94), rgba(9,24,42,.68)), url("assets/community-salute.webp") 57% 35% / cover; }
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .story-strip, .card-grid { grid-template-columns: 1fr 1fr; }
  .story-card:last-child, .card-grid .info-card:last-child { grid-column: 1 / -1; }
  .book-hero-grid { grid-template-columns: 310px 1fr; gap: 48px; }
  .collection-grid { grid-template-columns: 1fr; }
}

@media (max-width: 740px) {
  body { font-size: 16px; }
  .container, .narrow { width: min(100% - 28px, 1160px); }
  .brand-name { font-size: 1rem; }
  .hero { min-height: 650px; }
  .hero .container { align-items: end; padding-block: 80px; }
  .hero::before { background: linear-gradient(0deg, rgba(9,24,42,.96) 10%, rgba(9,24,42,.42) 74%), url("assets/community-salute.webp") 55% 24% / cover; }
  .hero-content { padding-top: 170px; }
  .feature-grid, .author-preview, .split, .book-hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .book-cover-wrap { width: min(76vw, 380px); }
  .book-hero-grid .book-cover-wrap { order: 2; }
  .story-strip, .card-grid, .values-grid { grid-template-columns: 1fr; }
  .story-card:last-child, .card-grid .info-card:last-child { grid-column: auto; }
  .collection-card { grid-template-columns: 125px 1fr; gap: 20px; padding: 20px; }
  .author-preview .author-photo, .about-grid .author-photo { width: min(82vw, 390px); margin-inline: auto; }
  .cta-grid, .footer-grid { grid-template-columns: 1fr; }
  .footer-grid { gap: 30px; }
  .footer-bottom { display: grid; }
  .button-row .button { width: 100%; }
}

@media (max-width: 440px) {
  .collection-card { grid-template-columns: 1fr; }
  .collection-card img { width: min(70%, 230px); }
  .activity { grid-template-columns: 1fr; }
  .book-cover-wrap { width: min(82vw, 340px); }
}

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

@media print {
  .site-header, .site-footer, .button-row, .cta-band { display: none; }
  body { color: #000; background: #fff; }
  .section, .page-hero { padding: 30px 0; }
  .page-hero { color: #000; background: #fff; }
  .page-hero h1, .page-hero .lead { color: #000; }
  .info-card, .activity, .question-list li { box-shadow: none; break-inside: avoid; }
}
