/* ==========================================================================
   Gladys Ngetich — shared site styles
   Class-based system: no inline styles in the HTML. See skills.md for the
   conventions this file follows (naming, breakpoints, how to extend it).
   ========================================================================== */

:root {
  --cream: #F6F3EC;
  --cream-dark: #ECE5D6;
  --ink: #15171C;
  --navy: #11172A;
  --navy-light: #1B2640;
  --navy-border: #2A3350;
  --navy-line: #34406A;
  --navy-muted: #B7BFD1;
  --navy-body: #D5DAE6;
  --gold: #8A5E12;
  --gold-dark: #7A5210;
  --gold-light: #E7C27A;
  --tan-border: #E2DCCF;
  --tan-border-dark: #D6CFC0;
  --tan-card: #F3E6C8;
  --tan-card-border: #DCC89C;
  --body-text: #3D4149;
  --muted-text: #5A5E66;
  --faint-text: #8E8A7E;
  --red: #A53231;
  --red-bright: #B3232B;
  --rust: #B55C31;
  --footer-ink: #C9C5BB;

  --font-serif: "Fraunces", Georgia, serif;
  --font-sans: "Instrument Sans", "Helvetica Neue", sans-serif;

  --max-width: 1440px;
  --gutter: 80px;
  --section-y: 112px;
  --section-y-tight: 96px;
}

/* ==========================================================================
   Reset / base
   ========================================================================== */

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--cream);
  font-family: var(--font-sans);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--ink); text-decoration: none; transition: color 0.15s ease; }
a:hover { color: var(--gold); }

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

ul { margin: 0; padding: 0; }

img { max-width: 100%; display: block; }
.img-cover { width: 100%; height: 100%; object-fit: cover; display: block; }
.img-contain { width: 100%; height: 100%; object-fit: contain; display: block; }

h1, h2, h3, blockquote { margin: 0; font-family: var(--font-serif); font-weight: 500; }

.page {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  background: var(--cream);
  overflow: hidden;
}

/* ==========================================================================
   Typography scale — fluid via clamp() so headings resize themselves
   between mobile and desktop without separate breakpoint rules.
   ========================================================================== */

.eyebrow {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
}
.eyebrow-sm { font-size: 13px; letter-spacing: 1.2px; }
.eyebrow-light { color: var(--gold-light); }
.eyebrow-red { color: var(--red); }
.eyebrow-rust { color: var(--rust); }
.eyebrow-gold-dark { color: var(--gold-dark); }
.eyebrow-icon { display: flex; align-items: center; gap: 10px; }

/* Hero headline (h1) */
.text-display-1 {
  font-size: clamp(2.5rem, 1.4rem + 4.6vw, 5.25rem);
  line-height: 1.03;
  letter-spacing: -1.5px;
}
/* Section headline (h2) */
.text-display-2 {
  font-size: clamp(2rem, 1.35rem + 2.7vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -1px;
}
/* Sub-section headline */
.text-display-3 {
  font-size: clamp(1.7rem, 1.3rem + 1.7vw, 2.75rem);
  line-height: 1.12;
}
/* Card / tile headline */
.text-display-4 {
  font-size: clamp(1.35rem, 1.1rem + 1.1vw, 1.9rem);
  line-height: 1.2;
}
/* Small serif label, e.g. book titles */
.text-display-5 {
  font-size: clamp(1.15rem, 1rem + 0.6vw, 1.375rem);
  line-height: 1.2;
}

.text-lede {
  font-size: clamp(1.05rem, 0.95rem + 0.4vw, 1.25rem);
  line-height: 1.6;
  color: var(--body-text);
}
.text-body {
  font-size: clamp(1rem, 0.93rem + 0.3vw, 1.125rem);
  line-height: 1.6;
  color: var(--body-text);
}
.text-sm { font-size: 15px; }
.text-title-sm { font-size: 18px; line-height: 1.35; }
.quote-spaced { padding-top: 24px; }
.text-xs { font-size: 13px; }

.text-quote {
  font-style: italic;
  font-size: clamp(1.2rem, 1rem + 0.8vw, 1.625rem);
  line-height: 1.35;
}

.text-serif { font-family: var(--font-serif); }
.text-not-italic { font-style: normal; }
.font-arial { font-family: Arial, Helvetica, sans-serif; }
.logo-wordmark-nature { font-style: italic; font-size: 24px; font-weight: 700; color: var(--ink); letter-spacing: -0.5px; }
.text-white { color: #FFFFFF; }
.text-ink { color: var(--ink); }
.text-muted { color: var(--muted-text); }
.text-faint { color: var(--faint-text); }
.text-navy-muted { color: var(--navy-muted); }
.text-navy-body { color: var(--navy-body); }
.text-gold { color: var(--gold); }
.text-medium { font-weight: 500; }
.text-semibold { font-weight: 600; }
.text-center { text-align: center; }

/* ==========================================================================
   Layout primitives
   ========================================================================== */

.flex { display: flex; }
.flex-col { display: flex; flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-baseline { align-items: baseline; }
.items-end { align-items: flex-end; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.flex-1 { flex-grow: 1; }
.flex-shrink-0 { flex-shrink: 0; }
.self-start { align-self: flex-start; }

.gap-xs { gap: 8px; }
.gap-sm { gap: 14px; }
.gap-tight { gap: 6px; }
.gap-md { gap: 20px; }
.gap-lg { gap: 28px; }
.gap-xl { gap: 40px; }
.gap-2xl { gap: 56px; }

.max-w-sm { max-width: 400px; }
.max-w-md { max-width: 600px; }
.max-w-lg { max-width: 760px; }

/* 12-column responsive grid */
.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: 32px;
  row-gap: 32px;
}
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.grid-3-tight { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }

.col-3 { grid-column: span 3; }
.col-4 { grid-column: span 4; }
.col-5 { grid-column: span 5; }
.col-6 { grid-column: span 6; }
.col-7 { grid-column: span 7; }
.col-8 { grid-column: span 8; }
.col-9 { grid-column: span 9; }
.col-12 { grid-column: span 12; }
/* explicit start/span combos used where a deliberate gap column is needed */
.col-off-6-7 { grid-column: 6 / span 7; }
.col-off-7-6 { grid-column: 7 / span 6; }
.col-off-8-5 { grid-column: 8 / span 5; }
.col-off-9-4 { grid-column: 9 / span 4; }

/* ==========================================================================
   Sections
   ========================================================================== */

.section { padding: var(--section-y) var(--gutter); }
.section-tight { padding: var(--section-y-tight) var(--gutter); }
.section-hero { padding: var(--section-y-tight) var(--gutter) var(--section-y); }
.section-top-gap { margin-top: var(--section-y); }

.bg-white { background: #FFFFFF; }
.bg-tan { background: var(--cream-dark); }
.bg-cream { background: var(--cream); }
.bg-ink { background: var(--ink); }
.bg-navy { background: var(--navy); }
.bg-navy-light { background: var(--navy-light); }
.bg-tan-card { background: var(--tan-card); }

.divider-top { border-top: 1px solid var(--tan-border); }
.divider-bottom { border-bottom: 1px solid var(--tan-border); }

/* ==========================================================================
   Family bar (cross-site nav strip)
   ========================================================================== */

.family-bar {
  height: 44px;
  padding: 0 var(--gutter);
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}
.family-bar .tagline { color: #B9B4A8; }
.family-bar-links { display: flex; gap: 28px; }
.family-bar-links a { height: 44px; color: #B9B4A8; display: flex; align-items: center; }
.family-bar-links a.active, .family-bar .back-home { color: var(--gold-light); }
.family-bar .back-home { display: flex; align-items: center; gap: 8px; color: #fff; height: 44px; }

/* ==========================================================================
   Site header / nav (with CSS-only mobile menu)
   ========================================================================== */

.site-header {
  position: relative;
  height: 92px;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--tan-border);
}
.site-header.on-dark { border-bottom-color: var(--navy-border); }

.brand-name { font-family: var(--font-serif); font-size: 26px; font-weight: 600; letter-spacing: -0.3px; }
.brand-tagline { font-size: 13px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.brand-link { display: flex; flex-direction: column; gap: 2px; }

.brand-mark { display: flex; align-items: center; gap: 14px; }
.brand-mark .mark {
  width: 44px; height: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 16px; font-weight: 600;
}
.mark-gold { background: var(--gold-light); color: var(--navy); }
.media-card-frame-navy { background: var(--navy-border); }
.brand-mark .brand-title { font-family: var(--font-serif); font-size: 19px; font-weight: 600; }
.brand-mark .brand-sub { font-size: 13px; color: var(--muted-text); }
.on-dark .brand-mark .brand-sub { color: var(--navy-muted); }

.site-nav { display: flex; align-items: center; gap: 40px; font-size: 15px; font-weight: 500; }

.nav-toggle-input { display: none; }
.nav-toggle-label {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.nav-toggle-label span { display: block; height: 2px; width: 100%; background: currentColor; border-radius: 2px; }

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  height: 56px;
  padding: 0 30px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.15s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(21, 23, 28, 0.14); }
.btn:active { transform: translateY(0); box-shadow: none; }
.btn-sm { height: 44px; padding: 0 22px; font-size: 15px; }
.btn-block { width: 100%; }
.btn-outline { background: transparent; border: 1.5px solid var(--ink); }
.btn-outline-light { background: transparent; border: 1.5px solid #fff; color: #fff; }
.btn-outline-light:hover { color: var(--gold-light); }
.btn-outline-red { background: transparent; border: 1.5px solid var(--red); color: var(--red); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { color: var(--gold-light); }
.btn-light { background: #fff; color: var(--ink); }
.btn-gold { background: var(--gold-light); color: var(--ink); }
.btn-red { background: var(--red-bright); color: #fff; }
.btn-rust { background: var(--rust); color: #fff; }

/* ==========================================================================
   Cards / components
   ========================================================================== */

.card {
  border-radius: 22px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 560px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(21, 23, 28, 0.16); }
.card-list { display: flex; flex-direction: column; gap: 14px; font-size: 17px; line-height: 1.5; font-weight: 500; flex-grow: 1; }
.card-list span { padding-bottom: 14px; border-bottom: 1px solid; }
.card-list span:last-child { border-bottom: none; padding-bottom: 0; }
.card-list-navy span { border-color: var(--navy-line); }
.card-list-tan span { border-color: var(--tan-card-border); }

.book-card { display: flex; flex-direction: column; gap: 18px; }
.book-cover {
  width: 100%;
  aspect-ratio: 2 / 3;
  border-radius: 4px 12px 12px 4px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(21, 23, 28, 0.18);
}
.book-cover img, .book-row-cover img, .cover-frame img, .media-card-frame img {
  transition: transform 0.4s ease;
}
.book-cover:hover img, .book-row-cover:hover img, .cover-frame:hover img, .media-card:hover .media-card-frame img {
  transform: scale(1.05);
}
.book-desc { font-size: 15px; line-height: 1.55; color: var(--muted-text); }
.book-link { font-size: 15px; font-weight: 600; }

.book-row {
  padding: 44px;
  border-radius: 22px;
  background: var(--cream-dark);
  display: flex;
  gap: 36px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.book-row:hover { transform: translateY(-3px); box-shadow: 0 18px 36px rgba(21, 23, 28, 0.1); }
.book-row-cover {
  width: 220px;
  flex-shrink: 0;
  aspect-ratio: 2 / 3;
  border-radius: 4px 12px 12px 4px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(21, 23, 28, 0.2);
}
.book-row-body { display: flex; flex-direction: column; gap: 16px; }

.cover-frame {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 2 / 3;
  border-radius: 4px 14px 14px 4px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(21, 23, 28, 0.25);
  margin: 0 auto;
}

.press-card {
  border-radius: 18px;
  background: #fff;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.press-card:hover { transform: translateY(-4px); box-shadow: 0 18px 36px rgba(21, 23, 28, 0.14); }
.press-card .thumb { aspect-ratio: 16 / 9; overflow: hidden; }
.press-card .thumb img { transition: transform 0.4s ease; }
.press-card:hover .thumb img { transform: scale(1.05); }
.press-card .body { padding: 24px; display: flex; flex-direction: column; gap: 14px; flex-grow: 1; }
.press-card .kicker { font-size: 13px; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase; color: var(--gold); }
.press-card .headline { font-family: var(--font-serif); font-size: 24px; font-weight: 500; line-height: 1.25; flex-grow: 1; }
.press-card .cta { font-size: 15px; font-weight: 600; }

.logo-badge {
  padding: 14px 22px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--tan-border-dark);
  display: flex;
  align-items: center;
  gap: 12px;
}
.badge-letters { display: flex; gap: 4px; }
.badge-letter {
  width: 22px; height: 22px;
  background: var(--ink); color: #fff;
  font-family: Arial, Helvetica, sans-serif; font-weight: 700; font-size: 13px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 2px;
}

.media-card { display: flex; flex-direction: column; gap: 16px; }
.media-card-frame { position: relative; aspect-ratio: 16 / 9; border-radius: 14px; overflow: hidden; }
.media-card-frame-lg { border-radius: 18px; }
.media-card-body { display: flex; flex-direction: column; gap: 6px; }

.play-btn {
  --play-size: 64px;
  position: absolute;
  width: var(--play-size);
  height: var(--play-size);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-btn-corner { left: 24px; bottom: 24px; }
.play-btn-sm { --play-size: 56px; left: 18px; bottom: 18px; background: var(--gold-light); color: var(--navy); }

.side-list { display: flex; flex-direction: column; }
.side-list-item {
  display: flex; gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--tan-border);
}
.side-list-item:first-child { padding-top: 0; }
.side-list-item:last-child { padding-bottom: 0; border-bottom: none; }
.side-list-thumb { width: 200px; flex-shrink: 0; aspect-ratio: 16 / 9; border-radius: 12px; overflow: hidden; }
.side-list-body { display: flex; flex-direction: column; gap: 8px; justify-content: center; }

.check-item { display: flex; gap: 14px; align-items: flex-start; font-size: 17px; line-height: 1.5; }
.icon-check { flex-shrink: 0; margin-top: 2px; }

.dot-list { list-style: none; display: flex; flex-direction: column; gap: 14px; font-size: 16px; line-height: 1.4; color: var(--body-text); }
.dot-list li { display: flex; align-items: flex-start; gap: 12px; }
.dot-list li::before { content: ""; flex-shrink: 0; width: 7px; height: 7px; margin-top: 7px; border-radius: 999px; background: currentColor; }

.numbered-row { display: flex; gap: 16px; padding: 14px 0; border-top: 1px solid var(--tan-border-dark); font-size: 16px; line-height: 1.4; }
.numbered-row:last-child { border-bottom: 1px solid var(--tan-border-dark); }
.numbered-row .num { font-family: var(--font-serif); color: var(--gold); font-weight: 600; width: 20px; flex-shrink: 0; }

.kv-row { display: flex; justify-content: space-between; padding: 12px 0; font-size: 15px; }
.kv-block { display: flex; flex-direction: column; border-top: 1px solid var(--tan-border); border-bottom: 1px solid var(--tan-border); }

.credential-strip {
  margin: 0 var(--gutter);
  padding: 30px 0;
  border-top: 1px solid var(--tan-border);
  border-bottom: 1px solid var(--tan-border);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
}
.credential-strip .stat-name { font-family: var(--font-serif); font-size: 24px; font-weight: 500; }
.credential-strip .stat-desc { font-size: 14px; color: var(--muted-text); }
.as-featured { padding: 18px var(--gutter); text-align: center; font-size: 14px; color: var(--faint-text); }

.offer-tile {
  padding: 28px;
  border-radius: 16px;
  background: var(--cream);
  border: 1px solid var(--tan-border);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.offer-tile:hover { transform: translateY(-3px); box-shadow: 0 14px 28px rgba(21, 23, 28, 0.08); border-color: transparent; }
.offer-tile-gold { color: var(--gold); }
.offer-tile-rust { color: var(--rust); }
.offer-tile .tile-title { font-family: var(--font-serif); font-size: 22px; font-weight: 500; color: var(--ink); }
.offer-tile .tile-rule { display: block; width: 32px; height: 3px; border-radius: 2px; background: currentColor; }

.pricing-bar {
  padding: 32px 36px;
  border-radius: 18px;
  border: 1px solid var(--tan-border);
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.pricing-bar .price { font-family: var(--font-serif); font-size: 40px; font-weight: 500; }

.panel {
  padding: 40px;
  border-radius: 22px;
  border: 1px solid var(--tan-border);
  background: var(--cream);
}
.panel-flush { padding: 56px 64px; border-radius: 22px; }
.panel-badge { align-self: flex-start; padding: 6px 12px; border-radius: 999px; background: #fff; font-size: 13px; font-weight: 600; color: var(--body-text); }

.media-frame { border-radius: 16px; overflow: hidden; background: #fff; box-shadow: 0 12px 32px rgba(21, 23, 28, 0.08); }
.media-frame-square { aspect-ratio: 1 / 1; }

/* Plain image crop — no card background/shadow, just clips to a ratio */
.story-image-frame { overflow: hidden; aspect-ratio: 8 / 5; }

.hero-photo { aspect-ratio: 1 / 1; }
.hero-photo-frame { position: relative; }

.book-hero-frame { position: relative; }
.book-hero-frame .btn { position: absolute; left: -20px; bottom: 40px; box-shadow: 0 12px 32px rgba(21, 23, 28, 0.18); }

.podcast-feature-card {
  padding: 18px;
  border-radius: 22px;
  background: #1A2238;
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: #fff;
}
.podcast-feature-body { padding: 0 8px 8px; display: flex; flex-direction: column; gap: 8px; }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer { padding: 40px var(--gutter); display: flex; align-items: center; font-size: 15px; }
.footer-row { width: 100%; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-links { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.footer-dark { background: var(--ink); color: #fff; }
.footer-navy { background: #11172A; color: #fff; }
.footer-line { border-top: 1px solid var(--tan-border); }
.footer-muted { color: var(--footer-ink); }
.footer-navy-muted { color: #B7BFD1; }
.footer-plain-muted { color: var(--muted-text); }

/* ==========================================================================
   Scroll reveal — minimal fade-up as sections enter view.
   Content stays fully visible with no JS or with reduced motion;
   the hidden/animated state only applies once js/reveal.js has run.
   ========================================================================== */

.reveal { opacity: 1; }
html.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
html.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .card:hover, .press-card:hover, .book-row:hover, .offer-tile:hover { transform: none; }
  .book-cover:hover img, .book-row-cover:hover img, .cover-frame:hover img,
  .media-card:hover .media-card-frame img, .press-card:hover .thumb img { transform: none; }
}

/* ==========================================================================
   Responsive breakpoints
   ========================================================================== */

@media (max-width: 1100px) {
  :root { --gutter: 48px; --section-y: 88px; --section-y-tight: 72px; }
  .credential-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 20px; }
}

@media (max-width: 900px) {
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 16px var(--gutter) 24px;
    background: var(--cream);
    border-bottom: 1px solid var(--tan-border);
    z-index: 20;
  }
  .on-dark .site-nav { background: var(--navy); border-bottom-color: var(--navy-border); }
  .site-nav a { width: 100%; padding: 10px 0; }
  .nav-toggle-label { display: flex; }
  .nav-toggle-input:checked ~ .site-nav { display: flex; }

  .book-row { flex-direction: column; }
  .book-row-cover { width: 100%; max-width: 240px; }
}

@media (max-width: 860px) {
  .grid-12, .grid-2, .grid-3, .grid-3-tight, .credential-strip {
    grid-template-columns: 1fr;
  }
  .grid-12 > * { grid-column: auto; }
  .credential-strip { text-align: left; }

  .panel-flush { padding: 40px; }
  .side-list-item { flex-direction: column; gap: 16px; }
  .side-list-thumb { width: 100%; }

  .footer-row { flex-direction: column; align-items: flex-start; }
  .as-featured { padding: 18px var(--gutter); }
}

@media (max-width: 600px) {
  :root { --gutter: 20px; --section-y: 64px; --section-y-tight: 56px; }
  .family-bar { flex-direction: column; height: auto; padding: 10px var(--gutter); gap: 6px; align-items: flex-start; }
  .family-bar-links { gap: 18px; flex-wrap: wrap; }
  .site-header { height: auto; padding: 16px var(--gutter); flex-wrap: wrap; }
  .book-hero-frame .btn { position: static; margin-top: 16px; }
  .pricing-bar { flex-direction: column; align-items: flex-start; }
}
