:root {
  --color-primary: #14645f;
  --color-primary-dark: #0b403d;
  --color-accent: #d96c2c;
  --color-background: #fffaf1;
  --color-surface: #ffffff;
  --color-surface-warm: #f4ead8;
  --color-text: #27302f;
  --color-text-muted: #66716f;
  --color-border: #dfd8ca;
  --color-success: #20784f;
  --shadow-soft: 0 18px 45px rgba(20, 100, 95, 0.12);
  --radius: 14px;
  --max-width: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--color-text);
  background: var(--color-background);
  line-height: 1.6;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; height: auto; }
a { color: var(--color-primary); }
a:hover { color: var(--color-primary-dark); }
:focus-visible { outline: 3px solid rgba(217, 108, 44, 0.55); outline-offset: 3px; }
.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 1000;
  background: var(--color-primary-dark);
  color: #fff;
  padding: .7rem 1rem;
  border-radius: 999px;
}
.skip-link:focus { top: 1rem; }
.container { width: min(100% - 2rem, var(--max-width)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 241, 0.86);
  border-bottom: 1px solid rgba(20, 100, 95, 0.1);
  box-shadow: 0 10px 30px rgba(20, 64, 61, 0.06);
  backdrop-filter: blur(18px) saturate(140%);
}
.nav-shell {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  transition: min-height .2s ease, padding .2s ease;
}
.site-header.is-compact .nav-shell { min-height: 62px; }
.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: .5rem;
  text-decoration: none;
  color: var(--color-primary-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1;
}
.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--color-primary), #2b8274);
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: .88rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: .3rem;
  padding: .32rem;
  border: 1px solid rgba(20, 100, 95, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
}
.nav-links a {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 700;
  font-size: .91rem;
  line-height: 1;
  padding: .72rem .82rem;
  border-radius: 999px;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.nav-links a:hover {
  color: var(--color-primary-dark);
  background: rgba(20, 100, 95, 0.08);
}
.nav-links a.btn {
  min-height: 38px;
  padding: .68rem .95rem;
  margin-left: .15rem;
  box-shadow: 0 8px 18px rgba(217, 108, 44, 0.2);
}
.nav-toggle {
  display: none;
  border: 1px solid rgba(20, 100, 95, 0.14);
  background: rgba(255, 255, 255, 0.76);
  border-radius: 999px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-dark);
  box-shadow: 0 8px 20px rgba(20, 64, 61, 0.08);
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  content: "";
  position: relative;
}
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after { position: absolute; top: 7px; }
.btn,
button.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  min-height: 44px;
  padding: .78rem 1rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
  font: inherit;
  line-height: 1.1;
}
.btn-primary { background: var(--color-accent); color: #fff; }
.btn-primary:hover { color: #fff; background: #bf591f; }
.btn-secondary { background: var(--color-primary); color: #fff; }
.btn-secondary:hover { color: #fff; background: var(--color-primary-dark); }
.btn-ghost { background: transparent; border-color: var(--color-border); color: var(--color-primary-dark); }
.btn-ghost:hover { background: var(--color-surface-warm); }
.hero {
  padding: clamp(3rem, 7vw, 6.5rem) 0 3rem;
  background:
    radial-gradient(circle at 20% 10%, rgba(217, 108, 44, 0.12), transparent 30%),
    linear-gradient(180deg, #fffaf1 0%, #f7eddc 100%);
}
.hero-book-carousel {
  padding: clamp(1.5rem, 4vw, 2.6rem) 0 clamp(2rem, 5vw, 3.6rem);
  min-height: clamp(620px, calc(100vh - 72px), 760px);
  display: grid;
  align-items: center;
  overflow: hidden;
}
.hero-book-carousel .container {
  width: min(100% - 1rem, var(--max-width));
  max-width: 100%;
  overflow: hidden;
}
.hero-carousel {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
}
.hero-carousel-frame {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  border-radius: 22px;
  background:
    radial-gradient(circle at 76% 24%, rgba(217, 108, 44, .16), transparent 24%),
    linear-gradient(135deg, rgba(255,255,255,.82), rgba(244,234,216,.88));
  border: 1px solid rgba(20, 100, 95, .12);
  box-shadow: 0 28px 80px rgba(20, 64, 61, .14);
}
.hero-slide {
  --hero-accent-a: rgba(20, 100, 95, .14);
  --hero-accent-b: rgba(217, 108, 44, .16);
  display: grid;
  align-items: center;
  flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: clamp(560px, 68vh, 700px);
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, .82fr);
  gap: clamp(1.2rem, 3vw, 2.6rem);
  padding: clamp(1rem, 3vw, 2.2rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 26%, var(--hero-accent-b), transparent 28%),
    radial-gradient(circle at 10% 82%, var(--hero-accent-a), transparent 24%),
    linear-gradient(135deg, rgba(255,255,255,.91), rgba(255,250,241,.78)),
    var(--color-surface);
  border: 0;
  border-radius: 22px;
  box-shadow: none;
}
.hero-tone-travel {
  --hero-accent-a: rgba(37, 104, 123, .16);
  --hero-accent-b: rgba(217, 108, 44, .18);
}
.hero-tone-children {
  --hero-accent-a: rgba(64, 133, 104, .16);
  --hero-accent-b: rgba(239, 172, 76, .18);
}
.hero-tone-leadership {
  --hero-accent-a: rgba(20, 64, 61, .18);
  --hero-accent-b: rgba(217, 108, 44, .18);
}
.hero-tone-wellness {
  --hero-accent-a: rgba(52, 135, 119, .16);
  --hero-accent-b: rgba(221, 126, 76, .18);
}
.hero-slide-copy {
  max-width: 660px;
  min-width: 0;
}
.hero-slide h1 {
  font-size: clamp(2.05rem, 4.4vw, 3.8rem);
  margin-bottom: .8rem;
}
.hero-subtitle {
  color: var(--color-primary-dark);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  font-weight: 800;
  line-height: 1.35;
}
.hero-benefits {
  display: grid;
  gap: .55rem;
  margin: 1.25rem 0;
  padding: 0;
  list-style: none;
}
.hero-benefits li {
  position: relative;
  padding-left: 1.55rem;
  color: var(--color-text);
  font-weight: 750;
}
.hero-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .58rem;
  width: .65rem;
  height: .65rem;
  border-radius: 999px;
  background: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(217, 108, 44, .12);
}
.hero-purchase-note {
  max-width: 560px;
  color: var(--color-text-muted);
  font-size: .96rem;
}
.hero-cover-wrap {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 460px;
  align-self: stretch;
  overflow: hidden;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.2), rgba(20,64,61,.05)),
    var(--hero-scene, linear-gradient(135deg, #d8e7e0, #f1d2a5));
  box-shadow: 0 26px 60px rgba(20, 64, 61, .16);
}
.hero-scene,
.hero-scene span {
  position: absolute;
}
.hero-scene {
  inset: 0;
  overflow: hidden;
}
.scene-sky {
  inset: 0;
  background:
    radial-gradient(circle at 28% 24%, rgba(255,255,255,.62), transparent 18%),
    linear-gradient(180deg, rgba(255,255,255,.72), rgba(222,235,230,.32) 42%, rgba(20,64,61,.22));
}
.scene-sun {
  width: 72px;
  height: 72px;
  right: 16%;
  top: 16%;
  border-radius: 999px;
  background: rgba(255, 229, 167, .58);
  filter: blur(.2px);
}
.scene-mountain {
  width: 92%;
  height: 52%;
  left: 10%;
  bottom: 23%;
  clip-path: polygon(0 100%, 22% 36%, 33% 58%, 47% 18%, 58% 56%, 72% 30%, 100% 100%);
  background: linear-gradient(135deg, rgba(18,68,72,.5), rgba(255,255,255,.2));
}
.scene-mountain-back {
  left: -6%;
  bottom: 31%;
  opacity: .45;
  transform: scale(1.08);
}
.scene-mountain-front {
  opacity: .72;
}
.scene-ground {
  left: -6%;
  right: -6%;
  bottom: 0;
  height: 38%;
  background:
    radial-gradient(ellipse at 42% 5%, rgba(255,255,255,.35), transparent 34%),
    linear-gradient(180deg, rgba(30,94,84,.5), rgba(10,55,57,.95));
}
.hero-book-mockup {
  position: relative;
  z-index: 2;
  justify-self: end;
  align-self: center;
  width: min(54%, 270px);
  margin-right: clamp(.6rem, 2.4vw, 1.6rem);
  transform: perspective(1000px) rotateY(-7deg) translateY(2px);
  transform-origin: center right;
  filter: drop-shadow(0 30px 34px rgba(7, 35, 36, .34));
}
.hero-book-mockup::before {
  content: "";
  position: absolute;
  inset: 1.5% -7% 1.5% auto;
  width: 12%;
  border-radius: 0 12px 12px 0;
  background: linear-gradient(90deg, rgba(255,255,255,.86), rgba(191,184,167,.58));
  transform: skewY(-2deg);
}
.hero-cover-wrap .cover {
  aspect-ratio: 3 / 4.35;
  padding: .35rem;
  border-radius: 13px;
  background: rgba(255,255,255,.92);
  box-shadow: none;
  overflow: hidden;
}
.hero-cover-wrap .cover img {
  object-fit: contain;
  border-radius: 8px;
  filter: saturate(1.02);
}
.hero-media-strip {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  background: rgba(8, 60, 63, .94);
  color: #f7eddc;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-media-strip span {
  min-height: 76px;
  display: grid;
  place-items: center;
  padding: .8rem .75rem;
  text-align: center;
  font-size: .82rem;
  font-weight: 800;
  line-height: 1.25;
  border-left: 1px solid rgba(255,255,255,.1);
}
.hero-media-strip span:first-child {
  border-left: 0;
}
.hero-tone-travel {
  --hero-scene: linear-gradient(135deg, #dce8e4, #c7d4cc 46%, #f0c584);
}
.hero-tone-children {
  --hero-scene: linear-gradient(135deg, #f3e8c9, #d9e6c5 46%, #f0c584);
}
.hero-tone-leadership {
  --hero-scene: linear-gradient(135deg, #d3dde0, #8facad 48%, #edba72);
}
.hero-tone-wellness {
  --hero-scene: linear-gradient(135deg, #e6ead7, #bcd9ca 48%, #eeb078);
}
.hero-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  margin-top: 1.1rem;
  max-width: 100%;
  min-width: 0;
}
.hero-carousel-controls .dots {
  min-width: 0;
  flex-wrap: wrap;
}
.carousel-counter {
  min-width: 3.6rem;
  text-align: center;
  color: var(--color-text-muted);
  font-size: .92rem;
  font-weight: 800;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .85fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
h1, h2, h3, .eyebrow {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
  color: var(--color-primary-dark);
}
h1 { font-size: clamp(2.45rem, 7vw, 5rem); margin: 0 0 1.2rem; max-width: 780px; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); margin: 0 0 1rem; }
h3 { font-size: 1.3rem; margin: 0 0 .5rem; }
p { margin: 0 0 1rem; }
.lead { font-size: clamp(1.08rem, 2vw, 1.28rem); color: var(--color-text-muted); max-width: 680px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.5rem; }
.section { padding: clamp(3rem, 6vw, 5.5rem) 0; }
.section-warm { background: var(--color-surface-warm); }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.4rem;
}
.section-head p { max-width: 620px; color: var(--color-text-muted); }
.grid { display: grid; gap: 1.1rem; }
.book-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(39, 48, 47, 0.06);
}
.book-card { overflow: hidden; display: flex; flex-direction: column; }
.cover {
  aspect-ratio: 3 / 4;
  width: 100%;
  background: linear-gradient(145deg, #14645f, #d96c2c);
  display: grid;
  place-items: center;
  color: #fff;
  padding: 1rem;
  text-align: center;
  position: relative;
}
.cover img { width: 100%; height: 100%; object-fit: contain; border-radius: 0; }
.cover img + .cover-fallback { display: none; }
.cover-fallback {
  width: 82%;
  height: 82%;
  border: 1px solid rgba(255,255,255,.55);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
  border-radius: 10px;
}
.cover-fallback strong { font-family: Georgia, "Times New Roman", serif; font-size: clamp(1rem, 2vw, 1.35rem); line-height: 1.1; }
.cover-fallback small { text-transform: uppercase; letter-spacing: .08em; font-weight: 800; }
.card-body { padding: 1.15rem; display: flex; flex-direction: column; gap: .65rem; flex: 1; }
.meta { color: var(--color-text-muted); font-size: .9rem; font-weight: 700; }
.price-line { color: var(--color-primary-dark); margin-bottom: .3rem; }
.badge-row { display: flex; flex-wrap: wrap; gap: .4rem; }
.badge {
  display: inline-flex;
  align-items: center;
  width: max-content;
  border-radius: 999px;
  padding: .28rem .62rem;
  font-size: .78rem;
  font-weight: 800;
  background: #e6f2ef;
  color: var(--color-primary-dark);
}
.badge.accent { background: #fff0e3; color: #8f3f16; }
.badge.success { background: #e5f4ed; color: var(--color-success); }
.card-actions { margin-top: auto; display: flex; flex-wrap: wrap; gap: .55rem; }
.purchase-stack { display: grid; gap: .65rem; }
.carousel { position: relative; overflow: hidden; }
.carousel-frame { overflow: hidden; border-radius: 18px; }
.carousel-track {
  display: flex;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  transition: transform .45s ease;
}
.featured-panel {
  min-width: 100%;
  display: grid;
  grid-template-columns: minmax(240px, .48fr) 1fr;
  gap: clamp(1.3rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(1rem, 3vw, 2rem);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}
.featured-panel .cover { border-radius: 14px; overflow: hidden; }
.carousel-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .7rem;
  margin-top: 1rem;
}
.icon-btn {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-primary-dark);
  font-size: 1.25rem;
  cursor: pointer;
}
.dots { display: flex; gap: .45rem; justify-content: center; align-items: center; }
.dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 0;
  background: #c4beb0;
  cursor: pointer;
}
.dot[aria-current="true"] { width: 28px; background: var(--color-accent); }
.category-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.category-card { padding: 1.2rem; min-height: 130px; }
.benefit-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.topic-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.focus-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.about-books-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.purchase-options { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.website-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: stretch; }
.website-card {
  padding: 1.2rem;
  display: grid;
  gap: .85rem;
}
.website-card header {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: .8rem;
  align-items: center;
}
.website-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #e6f2ef;
  color: var(--color-primary-dark);
}
.website-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}
.website-card .disclosure {
  margin-top: .25rem;
  padding: .8rem;
  border-radius: 12px;
  background: var(--color-surface-warm);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-size: .92rem;
}
.website-preview-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.website-preview-card {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.benefit-card { padding: 1.2rem; }
.author-band {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.6rem;
  align-items: center;
}
.author-band-wide { grid-template-columns: minmax(220px, 320px) 1fr; }
.author-placeholder {
  aspect-ratio: 1;
  border-radius: 18px;
  background: linear-gradient(145deg, #f8f1e5, #d6e5e0);
  border: 1px solid var(--color-border);
  display: grid;
  place-items: center;
  color: var(--color-text-muted);
  text-align: center;
  padding: 1.15rem;
  box-shadow: 0 14px 34px rgba(20, 64, 61, 0.08);
  overflow: hidden;
}
.author-photo-placeholder span {
  max-width: 9rem;
  font-weight: 800;
  color: var(--color-primary-dark);
}
.author-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
}
.page-hero { padding: 3.5rem 0 2.2rem; background: linear-gradient(180deg, #fffaf1, #f5ecdc); }
.breadcrumbs { font-size: .92rem; color: var(--color-text-muted); margin-bottom: 1rem; }
.breadcrumbs a { text-decoration: none; font-weight: 700; }
.toolbar {
  display: grid;
  grid-template-columns: 1fr repeat(2, minmax(170px, 230px)) auto;
  gap: .8rem;
  align-items: end;
  margin-bottom: 1.3rem;
}
label { font-weight: 750; color: var(--color-primary-dark); display: block; margin-bottom: .35rem; }
input, select, textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: .7rem .8rem;
  background: var(--color-surface);
  color: var(--color-text);
  font: inherit;
}
textarea { min-height: 140px; resize: vertical; }
.book-detail {
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr;
  gap: clamp(1.5rem, 5vw, 3rem);
}
.detail-sidebar { position: sticky; top: 92px; align-self: start; }
.detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.info-block { padding: 1rem; }
.check-list { padding-left: 1.2rem; }
.check-list li { margin: .4rem 0; }
.book-copy {
  display: grid;
  gap: .2rem;
  max-width: 760px;
}
.book-copy h2 { margin-top: 1.2rem; }
.about-book-card {
  padding: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.reader-note {
  max-width: 860px;
}
.reader-note blockquote {
  margin: 0;
  padding: 1.4rem;
  background: var(--color-surface);
  border-left: 5px solid var(--color-accent);
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(39, 48, 47, 0.06);
}
.reader-note blockquote p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  line-height: 1.3;
  color: var(--color-primary-dark);
}
.reader-note cite {
  display: block;
  color: var(--color-text-muted);
  font-style: normal;
  font-weight: 800;
}
.sample-lesson {
  padding: clamp(1.2rem, 3vw, 2rem);
  background: var(--color-surface-warm);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}
.sample-lesson blockquote {
  margin: 0 0 1rem;
  padding-left: 1rem;
  border-left: 5px solid var(--color-accent);
}
.sample-lesson blockquote p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.18rem, 2vw, 1.5rem);
  line-height: 1.35;
  color: var(--color-primary-dark);
}
.share-row { display: flex; flex-wrap: wrap; gap: .55rem; }
.share-btn {
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  border-radius: 999px;
  padding: .62rem .82rem;
  color: var(--color-primary-dark);
  text-decoration: none;
  font-weight: 750;
  cursor: pointer;
}
.cookie-consent {
  position: fixed;
  inset: auto 1rem 1.1rem 1rem;
  z-index: 100;
  pointer-events: none;
}
.cookie-consent[hidden],
.cookie-preferences[hidden] {
  display: none;
}
.cookie-consent-panel {
  max-width: 860px;
  margin: 0 auto;
  padding: 1.05rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.1rem;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,250,241,.96)),
    var(--color-surface);
  border: 1px solid rgba(20, 100, 95, .14);
  border-radius: 18px;
  box-shadow: 0 26px 70px rgba(20, 64, 61, .22), 0 1px 0 rgba(255,255,255,.75) inset;
  backdrop-filter: blur(18px) saturate(145%);
  pointer-events: auto;
}
.cookie-copy {
  padding: .15rem .1rem;
}
.cookie-eyebrow {
  width: max-content;
  margin: 0 0 .32rem;
  padding: .24rem .55rem;
  border-radius: 999px;
  background: rgba(20, 100, 95, .08);
  color: var(--color-primary-dark);
  font-size: .76rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
}
.cookie-consent-panel h2 {
  margin: 0 0 .28rem;
  color: var(--color-primary-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
  line-height: 1.18;
}
.cookie-consent-panel p {
  margin: .34rem 0;
  color: var(--color-text-muted);
  font-size: .95rem;
  line-height: 1.5;
}
.cookie-consent-panel a {
  color: var(--color-primary-dark);
  font-weight: 800;
}
.cookie-policy-link {
  text-decoration-thickness: 1px;
  text-underline-offset: .2em;
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  align-items: center;
  justify-content: flex-end;
  min-width: 220px;
}
.cookie-actions .btn {
  min-height: 42px;
  white-space: nowrap;
  box-shadow: none;
}
.cookie-actions .btn-primary {
  box-shadow: 0 12px 24px rgba(217, 108, 44, .22);
}
.cookie-preferences {
  grid-column: 1 / -1;
  padding: .9rem 1rem 1rem;
  border: 1px solid rgba(20, 100, 95, .1);
  border-radius: 14px;
  background: rgba(244, 234, 216, .45);
}
.cookie-preferences p:first-child {
  margin-top: 0;
  color: var(--color-primary-dark);
}
.notice { background: #fff8e7; border: 1px solid #ead69f; border-radius: var(--radius); padding: 1rem; }
.legal-content {
  max-width: 840px;
  margin-inline: auto;
}
.legal-content .toc {
  margin: 1.1rem 0 1.4rem;
  padding: 1rem 1.2rem;
}
.legal-content section {
  scroll-margin-top: 110px;
}
.legal-content h2 {
  margin-top: 1.7rem;
}
.legal-content h3 {
  margin-top: 1rem;
}
.policy-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .55rem .9rem;
  padding-left: 1.2rem;
}
.refund-disclosure {
  padding: .85rem;
  border: 1px solid #ead69f;
  border-radius: 12px;
  background: #fff8e7;
  color: var(--color-text-muted);
  font-size: .92rem;
}
.accordion { display: grid; gap: .7rem; }
.accordion-item { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: 12px; overflow: hidden; }
.accordion button {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  font: inherit;
  font-weight: 800;
  color: var(--color-primary-dark);
  cursor: pointer;
}
.accordion-panel { display: none; padding: 0 1rem 1rem; color: var(--color-text-muted); }
.accordion button[aria-expanded="true"] + .accordion-panel { display: block; }
.contact-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 1.5rem; }
.form-note { color: var(--color-text-muted); font-size: .95rem; }
.site-footer { background: var(--color-primary-dark); color: #eaf5f2; padding: 3rem 0 1.4rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 1.5rem; }
.site-footer a { color: #eaf5f2; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.footer-links { display: grid; gap: .5rem; }
.footer-link-button {
  width: max-content;
  padding: 0;
  border: 0;
  background: transparent;
  color: #eaf5f2;
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.footer-link-button:hover { text-decoration: underline; }
.copyright { border-top: 1px solid rgba(255,255,255,.16); margin-top: 2rem; padding-top: 1rem; color: #c8dcda; font-size: .9rem; }
.empty-state { padding: 1.5rem; background: var(--color-surface); border: 1px dashed var(--color-border); border-radius: var(--radius); color: var(--color-text-muted); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; scroll-behavior: auto !important; transition-duration: .001ms !important; }
}
@media (max-width: 1180px) {
  .hero-book-carousel {
    min-height: 0;
    padding-top: 1.3rem;
  }
  .hero-slide {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
    gap: 1.25rem;
  }
  .hero-cover-wrap {
    order: -1;
    min-height: 380px;
  }
  .hero-book-mockup {
    width: min(42vw, 230px);
    margin-right: .75rem;
  }
}
@media (max-width: 900px) {
  .hero-grid, .author-band, .book-detail, .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-book-carousel {
    min-height: 0;
    padding-top: 1.4rem;
  }
  .hero-slide {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.25rem;
  }
  .hero-slide-copy { max-width: none; }
  .hero-cover-wrap {
    order: -1;
    min-height: 370px;
  }
  .hero-book-mockup {
    width: min(48vw, 220px);
    margin-right: .8rem;
  }
  .hero-carousel-controls {
    flex-wrap: wrap;
  }
  .book-grid, .benefit-grid, .topic-grid, .focus-grid, .about-books-grid, .website-grid, .website-preview-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .toolbar { grid-template-columns: 1fr 1fr; }
  .detail-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: fixed;
    inset: 72px 1rem auto 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: .25rem;
    padding: .75rem;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(20, 100, 95, 0.12);
    border-radius: 18px;
    box-shadow: 0 22px 50px rgba(20, 64, 61, 0.16);
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: .86rem .95rem; }
  .nav-links a.btn { margin-left: 0; box-shadow: none; }
  .hero { padding-top: 2.6rem; }
  .hero-book-carousel { padding-top: 1rem; }
  .hero-slide {
    padding: 1rem;
    border-radius: 18px;
  }
  .hero-carousel-frame { border-radius: 18px; }
  .hero-slide h1 { font-size: clamp(2rem, 11vw, 3rem); }
  .hero-subtitle { font-size: 1.02rem; }
  .hero-cover-wrap { min-height: 330px; }
  .hero-book-mockup {
    width: min(46vw, 190px);
    margin-right: .45rem;
  }
  .hero-media-strip span {
    min-height: 62px;
    padding: .55rem .35rem;
    font-size: .68rem;
  }
  .hero-media-strip {
    grid-template-columns: 1fr;
  }
  .hero-media-strip span {
    min-height: auto;
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.1);
  }
  .hero-media-strip span:first-child {
    border-top: 0;
  }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-carousel-controls {
    gap: .45rem;
    overflow: hidden;
  }
  .hero-carousel-controls .icon-btn {
    width: 42px;
    height: 42px;
  }
  .hero-carousel-controls .dots {
    order: 5;
    width: 100%;
  }
  .carousel-counter { order: 4; }
  .book-grid, .category-grid, .benefit-grid, .topic-grid, .focus-grid, .about-books-grid, .website-grid, .website-preview-grid, .purchase-options, .toolbar, .detail-list, .footer-grid, .policy-links { grid-template-columns: 1fr; }
  .about-book-card { align-items: stretch; flex-direction: column; }
  .section-head { display: block; }
  .carousel-controls { justify-content: center; flex-wrap: wrap; }
  .cookie-consent { inset: auto .75rem .75rem .75rem; }
  .cookie-consent-panel {
    grid-template-columns: 1fr;
    gap: .85rem;
    padding: .9rem;
    border-radius: 16px;
  }
  .cookie-consent-panel p { font-size: .9rem; }
  .cookie-actions { min-width: 0; }
  .cookie-actions { justify-content: stretch; }
  .cookie-actions .btn { width: 100%; justify-content: center; }
}
