/* The Chaotic Cook — site styles */

:root {
  --pink: #c41d87;
  --pink-dark: #8f1462;
  --pink-deep: #a8176f;
  --pink-card: #d92c99;
  --pink-pale: #fce3f2;
  --olive: #2f3a14;
  --olive-deep: #1d240c;
  --olive-body: #4a5530;
  --olive-muted: #6b7550;
  --olive-pale: #e8ecc9;
  --olive-soft: #a9b37e;
  --chartreuse: #d5db3d;
  --cream: #f9f6e8;
  --white: #ffffff;
}

* { box-sizing: border-box; }

/* A `display` rule beats the HTML `hidden` attribute, so enforce it globally.
   Without this, [hidden] elements that are also flex/grid still render. */
[hidden] { display: none !important; }

/* <picture> only exists to offer a WebP source. Take it out of the layout so the
   <img> stays the flex/grid item that the existing rules (width, order) target. */
.hero-cover picture,
.book-hero picture,
.meet-grid picture,
.about-side picture { display: contents; }

/* ...but display:contents also promotes <source> into the parent layout, where
   it silently claims a grid cell. Keep it out of the box tree. */
picture source { display: none; }

/* Author photos reuse the sizing of the placeholders they replaced
   (.meet-photo, .about-portrait); object-fit stops them distorting. */
.author-photo { object-fit: cover; display: block; }
.author-photo.circle { border-radius: 50%; }
.author-photo.r20 { border-radius: 20px; }

body {
  margin: 0;
  background: var(--white);
  font-family: 'Archivo', sans-serif;
  color: var(--olive);
}

body.bg-cream { background: var(--cream); }

a { color: var(--pink); }
a:hover { color: var(--pink-dark); }

/* height:auto is required because the <img> tags now carry width/height
   attributes (which reserve space and stop layout shift on load). Without it
   the attribute height wins and the image is stretched. */
img { max-width: 100%; height: auto; }

h1, h2, h3, .display {
  font-family: 'Archivo Black', 'Archivo', sans-serif;
  font-weight: 800;
}

.wrap { max-width: 1180px; margin: 0 auto; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 17px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: 'Archivo', sans-serif;
  text-align: center;
}
.btn-pink { background: var(--pink); color: var(--cream); }
.btn-pink:hover { background: var(--pink-dark); color: var(--cream); }
.btn-olive { background: var(--olive); color: var(--cream); }
.btn-olive:hover { background: var(--olive-deep); color: var(--cream); }
.btn-outline {
  background: transparent;
  color: var(--olive);
  padding: 13px 28px;
  border: 3px solid var(--olive);
}
.btn-outline:hover { background: var(--olive); color: var(--cream); }
.btn-cream { background: var(--cream); color: var(--pink); }
.btn-cream:hover { background: var(--pink-pale); color: var(--pink-dark); }

/* ---------- Nav ---------- */

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 48px;
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 3px solid var(--olive);
}

.brand {
  font-family: 'Archivo Black', 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--pink);
  text-decoration: none;
  letter-spacing: 0.5px;
}
.brand:hover { color: var(--pink-dark); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 600;
  font-size: 16px;
}
.nav-links > a {
  color: var(--olive);
  text-decoration: none;
}
.nav-links > a:hover { color: var(--pink); }
.nav-links > a.active {
  color: var(--pink);
  border-bottom: 3px solid var(--pink);
}
.nav-links .btn {
  padding: 12px 24px;
  font-size: 16px;
  color: var(--cream);
}

.nav-toggle {
  display: none;
  background: none;
  border: 3px solid var(--olive);
  border-radius: 10px;
  padding: 8px 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 3px;
  background: var(--olive);
  border-radius: 2px;
}
.nav-toggle span + span { margin-top: 4px; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--white);
  padding: 40px 48px;
  border-top: 3px solid var(--olive);
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-brand {
  font-family: 'Archivo Black', 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--pink);
}
.footer-links { display: flex; gap: 24px; font-weight: 600; font-size: 15px; flex-wrap: wrap; }
.footer-links a { color: var(--olive); text-decoration: none; }
.footer-links a:hover { color: var(--pink); }

/* ---------- Image placeholders ---------- */

.img-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  background: rgba(47, 58, 20, 0.06);
  border: 3px dashed var(--olive-soft);
  color: var(--olive-muted);
  font-weight: 600;
  font-size: 15px;
  border-radius: 16px;
}
.img-slot.circle { border-radius: 50%; }

/* Holding placeholder standing in for the cover until the approved
   holding cover is supplied. Keeps the cover's 1076:1399 proportions
   so the layout does not shift when the real image goes back in. */
.cover-pending {
  aspect-ratio: 1076 / 1399;
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border-radius: 8px;
}
.hero-cover .cover-pending { width: 100%; }
.book-hero .cover-pending { width: 300px; max-width: 100%; }
.img-slot.r20 { border-radius: 20px; }

/* ---------- Home ---------- */

.hero {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 36px 48px 96px;
}
.hero-copy { display: flex; flex-direction: column; gap: 24px; }

.badge {
  display: inline-flex;
  align-self: flex-start;
  background: var(--olive);
  color: var(--chartreuse);
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(44px, 7vw, 76px);
  line-height: 0.95;
  margin: 0;
  color: var(--pink);
  text-wrap: balance;
}
.hero-sub { font-size: 20px; line-height: 1.55; margin: 0; max-width: 52ch; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 8px; }

.countdown { margin: 4px 0 0; font-weight: 600; font-size: 16px; color: var(--olive); }

.hero-cover { position: relative; width: 400px; max-width: 100%; }
.hero-cover::before {
  content: '';
  position: absolute;
  top: -24px;
  right: -24px;
  width: 120px;
  height: 120px;
  background: var(--pink);
  border-radius: 50%;
  opacity: 0.9;
}
.hero-cover img {
  position: relative;
  width: 400px;
  max-width: 100%;
  border-radius: 6px;
  box-shadow: 12px 14px 0 var(--olive);
  animation: bob 7s ease-in-out infinite;
}

@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-10px) rotate(3deg); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-cover img { animation: none; }
}

.section-pink { background: var(--pink); color: var(--cream); padding: 80px 48px; }
.section-pink .wrap { display: flex; flex-direction: column; gap: 40px; }
.section-pink h2 { font-size: 44px; margin: 0; color: var(--cream); }

.card-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.pink-card {
  background: var(--pink-card);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pink-card .card-title { font-family: 'Archivo Black', 'Archivo', sans-serif; font-weight: 800; font-size: 26px; }
.pink-card p { margin: 0; font-size: 17px; line-height: 1.55; color: var(--pink-pale); }

.link-underline {
  align-self: flex-start;
  font-weight: 700;
  font-size: 18px;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.section-pink .link-underline { color: var(--cream); }
.section-pink .link-underline:hover { color: var(--pink-pale); }

.section-meet { background: var(--cream); padding: 80px 48px; }
.meet-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: center;
}
.meet-photo { width: 320px; height: 320px; }
.meet-copy { display: flex; flex-direction: column; gap: 18px; }
.meet-copy h2 { font-size: 44px; margin: 0; color: var(--pink); }
.meet-copy p { margin: 0; font-size: 19px; line-height: 1.6; max-width: 58ch; }

.section-olive { background: var(--olive); color: var(--cream); padding: 80px 48px; }
.newsletter {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
  align-items: center;
}
.newsletter h2 { font-size: 40px; margin: 0; color: var(--chartreuse); }
.newsletter .lede { margin: 0; font-size: 18px; line-height: 1.6; color: var(--olive-pale); }
.newsletter-form { display: flex; gap: 12px; width: 100%; max-width: 480px; }
.newsletter-form input {
  flex: 1;
  min-width: 0;
  padding: 16px 20px;
  border-radius: 999px;
  border: none;
  font-size: 16px;
  font-family: 'Archivo', sans-serif;
  background: var(--cream);
  color: var(--olive);
}
.newsletter-form .btn { font-size: 16px; }
.newsletter-success { margin: 0; font-weight: 700; font-size: 18px; color: var(--chartreuse); }
.newsletter-note { margin: 0; font-size: 13px; color: var(--olive-soft); }

/* ---------- Page headers ---------- */

.page-header {
  margin: 0 auto;
  padding: 72px 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.page-header h1 {
  font-size: clamp(40px, 6vw, 56px);
  line-height: 1;
  margin: 0;
  color: var(--pink);
}
.page-header p { margin: 0; font-size: 19px; line-height: 1.6; max-width: 60ch; }

/* ---------- The Book ---------- */

.book-hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 48px 56px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 64px;
  align-items: start;
}
.book-hero-copy { display: flex; flex-direction: column; gap: 20px; }

.battery-row { display: flex; align-items: center; gap: 24px; }
.battery-row p { flex: 1; }

.battery {
  position: relative;
  flex-shrink: 0;
  box-sizing: border-box;
  width: 96px;
  height: 46px;
  border: 3px solid var(--olive);
  border-radius: 12px;
  padding: 5px;
  display: flex;
  gap: 4px;
  box-shadow: 4px 4px 0 var(--olive);
  transform: rotate(-4deg);
}
.battery::before {
  content: '';
  position: absolute;
  right: -13px;
  top: 50%;
  transform: translateY(-50%);
  width: 9px;
  height: 20px;
  background: var(--olive);
  border-radius: 0 5px 5px 0;
}
.battery-seg {
  position: relative;
  flex: 1;
  border-radius: 5px;
  background: rgba(47, 58, 20, 0.12);
}
.battery-seg::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--pink);
  opacity: 0;
}
.battery-seg.on::after { opacity: 1; }

.battery-bolt {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 24px;
  height: 24px;
  background: var(--chartreuse);
  border: 3px solid var(--olive);
  border-radius: 50%;
}
.battery-bolt::after {
  content: '';
  position: absolute;
  inset: 4px;
  background: var(--olive);
  clip-path: polygon(60% 0, 15% 58%, 45% 58%, 40% 100%, 85% 40%, 55% 40%);
}

/* Charging animation — The Book page only */
.battery--charging .battery-seg::after { animation: segpop 3.6s infinite; }
.battery--charging .battery-seg:nth-child(2)::after { animation-delay: 0.45s; }
.battery--charging .battery-seg:nth-child(3)::after { animation-delay: 0.9s; }
.battery--charging .battery-seg:nth-child(4)::after { animation-delay: 1.35s; }
@keyframes segpop {
  0% { opacity: 0; transform: scale(0.4); }
  10% { opacity: 1; transform: scale(1); }
  75% { opacity: 1; transform: scale(1); }
  85%, 100% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .battery--charging .battery-seg::after { animation: none; opacity: 1; }
}

/* Variant for the pink home card */
.battery--onpink { border-color: var(--cream); box-shadow: 4px 4px 0 var(--pink-dark); }
.battery--onpink::before { background: var(--cream); }
.battery--onpink .battery-seg { background: rgba(249, 246, 232, 0.25); }
.battery--onpink .battery-seg::after { background: var(--cream); }

/* Smaller battery for cards and FAQ */
.battery--sm { width: 78px; height: 38px; padding: 4px; gap: 3px; border-radius: 10px; }
.battery--sm::before { width: 8px; height: 16px; right: -12px; }
.battery--sm .battery-bolt { width: 20px; height: 20px; top: -12px; right: -12px; }

/* Large battery for the home-page feature */
.battery--lg { width: 170px; height: 78px; padding: 8px; gap: 6px; border-radius: 16px; box-shadow: 6px 6px 0 var(--olive); }
.battery--lg::before { width: 12px; height: 30px; right: -16px; border-radius: 0 6px 6px 0; }
.battery--lg .battery-seg { border-radius: 7px; }
.battery--lg .battery-bolt { width: 34px; height: 34px; top: -16px; right: -16px; }
.battery--lg .battery-bolt::after { inset: 6px; }

.battery-feature {
  max-width: 1000px;
  margin: 0 auto;
  padding: 76px 48px;
  display: flex;
  align-items: center;
  gap: 60px;
}
.battery-feature-copy { flex: 1; }
.battery-feature h2 { font-size: 38px; margin: 0; color: var(--pink); }
.battery-feature p { margin: 14px 0 0; font-size: 18px; line-height: 1.6; max-width: 56ch; }

/* FAQ answer with battery */
.faq-a--battery { display: flex; align-items: center; gap: 22px; }
.faq-a--battery p { margin: 0; padding: 0; }
.book-hero h1 {
  font-size: clamp(40px, 6vw, 60px);
  line-height: 1;
  margin: 0;
  color: var(--pink);
}
.book-hero p { margin: 0; font-size: 19px; line-height: 1.6; max-width: 60ch; }
.book-hero img {
  width: 300px;
  max-width: 100%;
  border-radius: 6px;
  box-shadow: 10px 12px 0 var(--olive);
}

.features {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 48px 72px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.features h2 { font-size: 38px; margin: 0; color: var(--olive); }

.card-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.outline-card {
  background: var(--white);
  border: 3px solid var(--olive);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.outline-card .card-title {
  font-family: 'Archivo Black', 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--pink);
}
.outline-card p { margin: 0; font-size: 16px; line-height: 1.55; }

.section-peek { background: var(--cream); padding: 72px 48px; }
.section-peek .wrap { display: flex; flex-direction: column; gap: 28px; }
.section-peek h2 { font-size: 38px; margin: 0; }
.section-peek .lede { margin: 0; font-size: 17px; max-width: 60ch; }
.peek-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.peek-grid .img-slot { width: 100%; height: 260px; }

.section-buy { background: var(--pink); color: var(--cream); padding: 80px 48px; text-align: center; }
.buy-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.buy-inner h2 { font-size: 42px; margin: 0; color: var(--cream); }
.buy-inner p { margin: 0; font-size: 18px; color: var(--pink-pale); }
.buy-ctas { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------- About ---------- */

.about-hero {
  max-width: 1080px;
  margin: 0 auto;
  padding: 72px 48px;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 64px;
  align-items: start;
}
.about-side { display: flex; flex-direction: column; gap: 20px; }
.about-portrait { width: 360px; max-width: 100%; height: 440px; }
.fact-chip {
  background: var(--chartreuse);
  border-radius: 16px;
  padding: 20px 24px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.5;
}
.about-copy { display: flex; flex-direction: column; gap: 22px; }
.about-copy h1 {
  font-size: clamp(40px, 6vw, 56px);
  line-height: 1;
  margin: 0;
  color: var(--pink);
}
.about-copy p { margin: 0; font-size: 19px; line-height: 1.65; }
.about-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 8px; }
.about-ctas .btn { padding: 14px 26px; font-size: 16px; }
.about-ctas .btn-outline { padding: 12px 26px; }

/* ---------- Press ---------- */

.press-section {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 48px 56px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.press-section h2 { font-size: 34px; margin: 0; }

.quote-card {
  background: var(--white);
  border: 3px solid var(--olive);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.quote-card p { margin: 0; font-size: 18px; line-height: 1.55; font-style: italic; color: var(--olive-muted); }
.quote-card cite {
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--pink);
}

.section-events { background: var(--cream); padding: 64px 48px; }
.section-events .inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section-events h2 { font-size: 34px; margin: 0; }
.event-row {
  background: var(--white);
  border: 3px solid var(--olive);
  border-radius: 16px;
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 24px;
  align-items: center;
}
.event-date {
  font-family: 'Archivo Black', 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--pink);
}
.event-info { display: flex; flex-direction: column; gap: 4px; }
.event-title { font-weight: 700; font-size: 18px; }
.event-detail { font-size: 15px; color: var(--olive-muted); }
.event-row a { font-weight: 700; font-size: 15px; }

.press-contact {
  max-width: 1080px;
  margin: 0 auto;
  padding: 64px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.contact-card { border-radius: 20px; padding: 32px; display: flex; flex-direction: column; gap: 12px; }
.contact-card h2 { font-size: 26px; margin: 0; }
.contact-card p { margin: 0; font-size: 16px; line-height: 1.55; }
.contact-card.pink { background: var(--pink); color: var(--cream); }
.contact-card.pink h2 { color: var(--cream); }
.contact-card.pink p { color: var(--pink-pale); }
.contact-card.pink a { color: var(--cream); font-weight: 700; }
.contact-card.olive { background: var(--olive); color: var(--cream); }
.contact-card.olive h2 { color: var(--chartreuse); }
.contact-card.olive p { color: var(--olive-pale); line-height: 1.7; }
.contact-card.olive a { color: var(--chartreuse); }

/* ---------- FAQ ---------- */

.faq-list {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 48px 56px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--white);
  border: 3px solid var(--olive);
  border-radius: 18px;
  overflow: hidden;
}
.faq-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: none;
  border: none;
  padding: 22px 26px;
  cursor: pointer;
  text-align: left;
  font-family: 'Archivo', sans-serif;
}
.faq-q { font-weight: 700; font-size: 18px; color: var(--olive); }
.faq-mark {
  font-family: 'Archivo Black', 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: var(--pink);
  flex-shrink: 0;
}
.faq-a { margin: 0; padding: 0 26px 24px; font-size: 17px; line-height: 1.6; color: var(--olive-body); }
.faq-a[hidden] { display: none; }

.section-contact { background: var(--olive); color: var(--cream); padding: 72px 48px; }
.contact-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: center;
  align-items: center;
}
.contact-inner h2 { font-size: 38px; margin: 0; color: var(--chartreuse); }
.contact-inner p { margin: 0; font-size: 18px; line-height: 1.6; color: var(--olive-pale); }
.contact-inner .btn-pink:hover { background: var(--pink-deep); }
.contact-socials { display: flex; gap: 24px; font-weight: 600; font-size: 16px; margin-top: 6px; }
.contact-socials a { color: var(--chartreuse); }

/* ---------- Responsive ---------- */


/* ---------- Pending contact details (placeholder until real ones land) ---------- */

.contact-pending {
  font-size: 16px;
  line-height: 1.6;
  max-width: 52ch;
}
.contact-inner .contact-pending { color: var(--olive-pale); }
.contact-inner .contact-pending a { color: var(--chartreuse); font-weight: 700; }
.contact-card.pink .contact-pending { color: var(--pink-pale); }
.contact-card.pink .contact-pending a { color: var(--cream); font-weight: 700; }

/* ---------- 404 ---------- */

.error-page {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  min-height: 46vh;
  justify-content: center;
}
/* Sticky footer, so a short page still fills the viewport. */
body.page-error { min-height: 100vh; display: flex; flex-direction: column; }
body.page-error .error-page { flex: 1 0 auto; }
body.page-error .site-footer { margin-top: auto; }

.error-page .battery { margin-bottom: 4px; }
.error-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 4px; }

@media (max-width: 880px) {
  .error-page { align-items: flex-start; min-height: 0; }
  .error-ctas .btn { width: 100%; }
}

@media (max-width: 1020px) {
  .hero { grid-template-columns: minmax(0, 1fr); padding-bottom: 72px; }
  .hero-cover { margin: 0 auto; width: min(400px, 100%); }
  .hero-cover img { width: 100%; }
  .meet-photo { width: min(320px, 100%); height: auto; aspect-ratio: 1; }
  .book-hero { grid-template-columns: minmax(0, 1fr); }
  .book-hero img { order: -1; }
  .about-hero { grid-template-columns: minmax(0, 1fr); }
  .about-portrait { width: 100%; max-width: 360px; }
  .meet-grid { grid-template-columns: minmax(0, 1fr); justify-items: center; text-align: center; }
  .meet-copy { align-items: center; }
  .card-grid-3, .peek-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 880px) {
  .site-nav { padding: 16px 24px; flex-wrap: wrap; }
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding-top: 18px;
  }
  .nav-links.open { display: flex; }
  .nav-links > a.active { border-bottom-width: 2px; }

  .hero, .page-header, .book-hero, .about-hero { padding-left: 24px; padding-right: 24px; }
  .features, .faq-list, .press-section, .press-contact { padding-left: 24px; padding-right: 24px; }
  .section-pink, .section-meet, .section-olive, .section-peek,
  .section-buy, .section-events, .section-contact, .site-footer { padding-left: 24px; padding-right: 24px; }

  .card-grid-3, .card-grid-2, .peek-grid, .press-contact { grid-template-columns: 1fr; }
  .battery-feature { flex-direction: column; gap: 44px; text-align: center; padding: 64px 24px; }
  .battery-feature p { margin-left: auto; margin-right: auto; }
  .section-pink h2, .meet-copy h2 { font-size: 34px; }
  .event-row { grid-template-columns: 1fr; gap: 12px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form .btn { width: 100%; }
}
