@charset "UTF-8";

:root {
  --sky: #d9f3ff;
  --sky-deep: #b9e8fb;
  --ink: #132445;
  --muted: #52627a;
  --blue: #1672d8;
  --blue-dark: #0e5eb8;
  --gold: #ffc83d;
  --gold-dark: #e8a90f;
  --rose: #ff8fa3;
  --leaf: #87bd55;
  --cream: #fffdf7;
  --card: rgba(255, 255, 255, 0.92);
  --shadow: 0 18px 45px rgba(30, 70, 110, 0.14);
  --soft-shadow: 0 10px 28px rgba(30, 70, 110, 0.12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--cream);
  cursor: url("../images/paulie-cursor.png") 10 10, auto;
}

a {
  color: inherit;
}

a:hover {
  text-decoration: none;
}

.sky-page-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 12% 16%, rgba(255,255,255,0.95) 0 8%, transparent 18%),
    radial-gradient(circle at 82% 18%, rgba(255,255,255,0.88) 0 8%, transparent 18%),
    radial-gradient(circle at 20% 88%, rgba(255,255,255,0.82) 0 10%, transparent 22%),
    linear-gradient(180deg, #d6f2ff 0%, #f8fcff 42%, #fffaf1 100%);
}

.sky-page-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background-image: url("../images/optimized/sky-background-tile-900.webp");
  background-size: 680px auto;
  background-repeat: repeat;
  filter: saturate(0.75) brightness(1.1);
}

.announcement-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 34px;
  padding: 0.35rem 1rem;
  color: #25405f;
  font-size: 0.95rem;
  font-weight: 700;
  background: rgba(192, 235, 247, 0.72);
  backdrop-filter: blur(8px);
}

.announcement-bar span:first-child {
  color: var(--rose);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(22, 114, 216, 0.08);
}

.site-header .navbar {
  padding: 0.55rem 0;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  order: 1;
}

.brand-logo {
  width: 108px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 5px 10px rgba(42, 87, 125, 0.12));
}

.site-nav .nav-link {
  color: var(--ink) !important;
  font-weight: 800;
  padding: 0.45rem 0.85rem !important;
  border-radius: 999px;
}

.site-nav .nav-link:hover {
  color: var(--blue) !important;
  background: rgba(255, 255, 255, 0.55);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.site-nav {
  gap: 0.75rem;
}

.site-header .navbar-collapse {
  order: 2;
}

.site-nav > .lang-bar {
  order: 3;
  flex: 0 0 auto;
}

.navbar-toggler {
  order: 4;
}

.lang-bar {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  padding: 0.22rem;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(19, 36, 69, 0.08);
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(30, 70, 110, 0.08);
}

.lang-btn {
  width: 34px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  background: transparent;
  cursor: pointer;
}

.lang-btn.active,
.lang-btn:hover {
  color: #fff;
  background: var(--blue);
}

.btn {
  font-weight: 900;
}

.btn-pill {
  border-radius: 999px;
  padding-left: 1.35rem;
  padding-right: 1.35rem;
}

.btn-primary {
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 10px 24px rgba(22, 114, 216, 0.24);
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}

.btn-outline-primary {
  color: var(--blue);
  border-color: var(--blue);
  background: rgba(255, 255, 255, 0.72);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

.btn-amazon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  color: #172033;
  background: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(232, 169, 15, 0.2);
}

.btn-amazon:hover,
.btn-amazon:focus {
  color: #172033;
  background: #ffd86b;
  border-color: #ffd86b;
}

.btn.disabled,
.btn:disabled {
  color: #667;
  background: #dce8f6;
  border-color: #dce8f6;
  box-shadow: none;
  cursor: not-allowed;
}

.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: 2.75rem 0 2.55rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(400px, 0.8fr) minmax(430px, 1.2fr);
  align-items: start;
  gap: 2rem;
}

.hero-copy {
  max-width: 520px;
}

.hero-copy h1,
.section-heading h2,
.story-copy h2,
.author-copy h2,
.final-copy h2 {
  font-family: "Coming Soon", cursive;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: 0;
}

.hero-copy h1 {
  position: relative;
  margin: 0;
  min-height: 3.32em;
  font-size: clamp(2.35rem, 3.15vw, 3.35rem);
  line-height: 0.96;
}

.hero-copy h1::after {
  content: "";
  display: block;
  width: 118px;
  height: 9px;
  margin-top: 0.4rem;
  background: linear-gradient(90deg, rgba(255, 200, 61, 0), rgba(255, 200, 61, 0.78), rgba(255, 143, 163, 0));
  border-radius: 999px;
}

.hero-subtitle {
  max-width: 430px;
  margin: 0.8rem 0 0;
  color: #263957;
  font-size: 1.04rem;
  line-height: 1.44;
  font-weight: 700;
}

.brand-tagline {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0.55rem 0 0;
  color: #7a5b24;
  font-family: "Coming Soon", cursive;
  font-size: 0.98rem;
  font-weight: 800;
}

.brand-tagline::before {
  content: "✦";
  color: var(--gold-dark);
  font-family: "Nunito", sans-serif;
  font-size: 0.95rem;
}

.value-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  max-width: 420px;
  margin: 1rem 0 1.1rem;
}

.value-badge {
  display: grid;
  place-items: center;
  gap: 0.45rem;
  text-align: center;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 900;
}

.badge-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  font-size: 1.25rem;
}

.badge-icon.heart {
  color: var(--rose);
}

.badge-icon.star {
  color: var(--gold-dark);
}

.badge-icon.leaf {
  color: var(--leaf);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.hero-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-art::before {
  content: "";
  position: absolute;
  inset: 9% 2% 4% 8%;
  z-index: -1;
  background:
    radial-gradient(circle at 28% 24%, rgba(255,255,255,0.95) 0 10%, transparent 24%),
    radial-gradient(circle at 82% 70%, rgba(255, 248, 231, 0.86) 0 12%, transparent 28%),
    rgba(255, 255, 255, 0.24);
  border-radius: 38px;
  filter: blur(2px);
}

.hero-art-accent {
  position: absolute;
  top: 8%;
  right: 7%;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--gold-dark);
  font-size: 1.35rem;
  transform: rotate(11deg);
  text-shadow: 0 5px 14px rgba(232, 169, 15, 0.22);
}

.hero-family-image {
  width: min(100%, 700px);
  max-height: 525px;
  object-fit: contain;
  border-radius: 30px;
  filter: drop-shadow(0 20px 32px rgba(30, 70, 110, 0.16));
}

.section-pad {
  padding: 4.35rem 0;
}

.section-heading {
  position: relative;
  max-width: 720px;
  margin: 0 auto 2rem;
  text-align: center;
}

.section-heading::before {
  content: none;
}

.section-heading h2 {
  position: relative;
  display: inline-grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  justify-content: center;
  column-gap: 0.55rem;
  max-width: 100%;
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
}

.section-heading h2::before {
  content: "";
  width: 28px;
  height: 28px;
  background: url("../images/PBS32x32.png") center / contain no-repeat;
  opacity: 0.92;
  filter: drop-shadow(0 5px 10px rgba(30, 70, 110, 0.14));
}

.story-copy h2,
.author-copy h2 {
  position: relative;
  display: inline-block;
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
}

.section-heading h2::after,
.story-copy h2::after,
.author-copy h2::after {
  content: "";
  display: block;
  width: 72%;
  max-width: 160px;
  height: 7px;
  margin: 0.2rem auto 0;
  background: linear-gradient(90deg, rgba(255, 143, 163, 0), rgba(255, 200, 61, 0.58), rgba(135, 189, 85, 0));
  border-radius: 999px;
}

.section-heading h2::after {
  grid-column: 1 / -1;
  justify-self: center;
}

.story-copy h2::before,
.author-copy h2::before {
  content: "❤";
  position: absolute;
  top: -0.6rem;
  right: -1.2rem;
  color: rgba(255, 143, 163, 0.72);
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
  transform: rotate(12deg);
}

.section-heading p {
  margin: 0.7rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 700;
}

.books-section {
  background: rgba(255, 252, 245, 0.88);
}

.books-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.35rem;
}

.book-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 620px;
  padding: 1rem;
  background: var(--card);
  border: 1px solid rgba(19, 36, 69, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  cursor: pointer;
}

.book-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.book-cover {
  width: 100%;
  aspect-ratio: 1 / 1.02;
  object-fit: contain;
  padding: 0.35rem;
  background: linear-gradient(180deg, #f7fbff, #fff9ec);
  border-radius: 16px;
}

.book-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1rem 0.3rem 0.2rem;
}

.book-card h3 {
  min-height: 3.2rem;
  margin: 0 0 0.65rem;
  color: var(--ink);
  font-family: "Coming Soon", cursive;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
}

.book-card p {
  display: -webkit-box;
  min-height: 8.55em;
  margin: 0 0 1.1rem;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}

.book-card .btn {
  width: 100%;
  margin-top: auto;
}

.cloud-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 20%, rgba(255,255,255,0.9) 0 8%, transparent 22%),
    radial-gradient(circle at 92% 82%, rgba(255,255,255,0.86) 0 8%, transparent 22%),
    rgba(205, 239, 250, 0.74);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: 3.1rem;
}

.story-image-wrap {
  position: relative;
  justify-self: center;
  width: min(100%, 455px);
  padding: 0.75rem;
  background: rgba(255, 250, 239, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 30px;
  box-shadow: 0 14px 32px rgba(30, 70, 110, 0.10);
}

.story-image {
  width: 100%;
  max-height: 410px;
  object-fit: cover;
  object-position: top center;
  border-radius: 22px;
  box-shadow: 0 12px 25px rgba(30, 70, 110, 0.10);
}

.story-copy,
.author-copy {
  color: var(--ink);
}

.story-copy h2,
.author-copy h2 {
  margin-top: 0.1rem;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 0.7rem;
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-text,
.author-text {
  max-height: 330px;
  margin: 1rem 0 1.45rem;
  overflow-y: auto;
  padding-right: 0.7rem;
  color: #2b3d58;
  font-size: 1.04rem;
  font-weight: 700;
  line-height: 1.68;
}

.author-text {
  margin-bottom: 0;
}

.story-text::-webkit-scrollbar,
.author-text::-webkit-scrollbar,
.testimonial-card p::-webkit-scrollbar {
  width: 6px;
}

.story-text::-webkit-scrollbar-thumb,
.author-text::-webkit-scrollbar-thumb,
.testimonial-card p::-webkit-scrollbar-thumb {
  background: rgba(19, 36, 69, 0.24);
  border-radius: 999px;
}

.author-section {
  background: rgba(255, 253, 247, 0.86);
}

.author-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: center;
  gap: 3rem;
}

.author-photo-wrap {
  display: flex;
  justify-content: center;
}

.author-photo {
  width: 260px;
  height: 260px;
  object-fit: cover;
  object-position: center 18%;
  border: 10px solid #f7dfaa;
  border-radius: 50%;
  box-shadow: 0 18px 38px rgba(111, 77, 38, 0.16);
}

.testimonials-section {
  padding-top: 4.3rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.testimonial-card {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  align-items: center;
  padding: 1.8rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(19, 36, 69, 0.08);
  border-radius: 18px;
  box-shadow: var(--soft-shadow);
}

.stars {
  color: var(--gold-dark);
  font-size: 1.35rem;
  letter-spacing: 0.08em;
}

.testimonial-card p {
  flex: 1;
  max-height: 148px;
  margin: 0.9rem 0 1rem;
  overflow-y: auto;
  color: #263957;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.55;
}

.testimonial-card strong {
  color: var(--ink);
  font-size: 1rem;
}

.testimonial-card span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.final-cta-section {
  position: relative;
  overflow: hidden;
  padding: 3.2rem 0 3rem;
  background:
    radial-gradient(circle at 12% 22%, rgba(255,255,255,0.82) 0 9%, transparent 24%),
    radial-gradient(circle at 88% 76%, rgba(255,255,255,0.74) 0 10%, transparent 25%),
    linear-gradient(135deg, rgba(190, 235, 250, 0.96) 0%, rgba(67, 163, 224, 0.92) 48%, rgba(17, 113, 205, 0.94) 100%);
}

.final-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: url("../images/optimized/sky-background-tile-900.webp");
  background-size: 560px auto;
  background-repeat: repeat;
  filter: saturate(0.82) brightness(1.12);
  pointer-events: none;
}

.final-cta-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 42px;
  background: linear-gradient(180deg, rgba(255,253,247,0), rgba(255,253,247,0.92));
  pointer-events: none;
}

.final-cta-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem;
  padding: 0;
  color: #fff;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.final-paulie img {
  width: 130px;
  height: 130px;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  filter: drop-shadow(0 14px 20px rgba(7, 55, 105, 0.16));
}

.final-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  line-height: 1.1;
  text-shadow: 0 2px 14px rgba(7, 55, 105, 0.22);
}

.final-copy p {
  margin: 0.85rem 0 0;
  font-size: 1.16rem;
  font-weight: 800;
  text-shadow: 0 1px 10px rgba(7, 55, 105, 0.2);
}

.final-actions {
  display: grid;
  gap: 0.95rem;
  justify-items: center;
}

.final-link {
  color: #fff;
  font-weight: 900;
  text-shadow: 0 1px 8px rgba(7, 55, 105, 0.16);
}

.final-link:hover {
  color: #fff6d5;
}

.site-footer {
  padding: 2rem 0 1.25rem;
  background:
    radial-gradient(circle at 9% 20%, rgba(255, 200, 61, 0.14) 0 8%, transparent 20%),
    rgba(255, 253, 247, 0.94);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.35rem 2rem;
}

.footer-brand {
  grid-column: 1;
  grid-row: 1;
}

.footer-tagline {
  grid-column: 1;
  grid-row: 2;
  max-width: 260px;
  margin: 0.35rem 0 0;
  color: #7a5b24;
  font-family: "Coming Soon", cursive;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.25;
}

.footer-nav {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.footer-nav a {
  color: var(--ink);
  font-weight: 900;
}

.footer-contact {
  grid-column: 3;
  grid-row: 1 / span 2;
  display: flex;
  justify-content: flex-end;
}

.footer-contact a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--ink);
  border: 1px solid rgba(19, 36, 69, 0.14);
  border-radius: 50%;
  font-size: 1.2rem;
  background: #fff;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem 1.25rem;
  margin-top: 1.7rem;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 800;
}

.footer-bottom p {
  margin: 0;
}

.music-toggle {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  min-width: 48px;
  min-height: 42px;
  padding: 0.65rem 0.9rem;
  color: var(--ink);
  font-weight: 900;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(19, 36, 69, 0.12);
  border-radius: 999px;
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(12px);
}

@media (max-width: 1199.98px) {
  .books-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-grid {
    grid-template-columns: minmax(360px, 0.9fr) minmax(360px, 1fr);
  }

  .hero-copy h1 {
    font-size: clamp(2.35rem, 3.5vw, 3.35rem);
  }
}

@media (max-width: 991.98px) {
  .brand-lockup {
    margin-right: auto;
  }

  .site-nav {
    gap: 0.5rem;
  }

  .site-header .navbar-collapse {
    order: 4;
    flex-basis: 100%;
  }

  .site-nav > .lang-bar {
    order: 2;
  }

  .navbar-toggler {
    order: 3;
  }

  .site-header .navbar-collapse {
    padding-top: 0.75rem;
  }

  .nav-actions {
    align-items: flex-start;
    flex-direction: column;
    padding: 0.5rem 0 0.25rem;
  }

  .hero-section {
    min-height: auto;
    padding: 2.6rem 0 2.4rem;
  }

  .hero-grid,
  .story-grid,
  .author-panel {
    grid-template-columns: 1fr;
    align-items: center;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-copy h1 {
    min-height: 0;
  }

  .hero-art {
    min-height: auto;
  }

  .books-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .book-card {
    min-height: 660px;
  }

  .book-card p {
    min-height: 10.15em;
    -webkit-line-clamp: 7;
  }

  .author-panel {
    text-align: center;
  }

  .author-text {
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .final-cta-card {
    grid-template-columns: 120px minmax(0, 1fr);
  }

  .final-actions {
    grid-column: 1 / -1;
    justify-items: start;
  }
}

@media (max-width: 767.98px) {
  .announcement-bar {
    min-height: 28px;
    padding: 0.25rem 0.8rem;
    font-size: 0.78rem;
    text-align: center;
  }

  .site-header .navbar {
    padding: 0.42rem 0;
  }

  .brand-logo {
    width: 92px;
  }

  .navbar-toggler {
    padding: 0.32rem 0.5rem;
    min-width: 44px;
    min-height: 44px;
  }

  .lang-bar {
    gap: 0.1rem;
    padding: 0.16rem;
  }

  .lang-btn {
    width: 34px;
    height: 34px;
    font-size: 0.72rem;
  }

  .hero-section {
    padding: 1.85rem 0 1.9rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.05rem, 10.5vw, 3rem);
    line-height: 0.98;
  }

  .hero-copy h1::after {
    width: 92px;
    height: 7px;
    margin-top: 0.35rem;
  }

  .hero-subtitle {
    margin-top: 0.75rem;
    font-size: 0.98rem;
    line-height: 1.42;
  }

  .brand-tagline {
    margin-top: 0.45rem;
    font-size: 0.92rem;
    line-height: 1.25;
  }

  .value-badges {
    grid-template-columns: 1fr;
    gap: 0.38rem;
    max-width: 260px;
    margin: 0.85rem 0 1rem;
  }

  .value-badge {
    grid-template-columns: 34px 1fr;
    justify-items: start;
    text-align: left;
    font-size: 0.82rem;
  }

  .badge-icon {
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 0.55rem;
  }

  .hero-actions .btn {
    width: 100%;
    padding-top: 0.65rem;
    padding-bottom: 0.65rem;
    font-size: 1rem;
  }

  .hero-family-image {
    width: min(100%, 360px);
    max-height: 260px;
    border-radius: 20px;
  }

  .hero-art {
    margin-top: 1.25rem;
  }

  .hero-art-accent {
    width: 26px;
    height: 26px;
    font-size: 1rem;
  }

  .section-pad {
    padding: 2.35rem 0;
  }

  .section-heading {
    margin-bottom: 1.25rem;
  }

  .section-heading h2,
  .story-copy h2,
  .author-copy h2 {
    font-size: clamp(1.65rem, 8vw, 2.2rem);
  }

  .section-heading h2 {
    column-gap: 0.45rem;
  }

  .section-heading h2::before {
    width: 22px;
    height: 22px;
  }

  .section-heading p {
    margin-top: 0.4rem;
    font-size: 0.96rem;
  }

  .books-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .book-card {
    min-height: 0;
    padding: 0.9rem;
    border-radius: 18px;
  }

  .book-cover {
    padding: 0.2rem;
    border-radius: 12px;
  }

  .book-card h3 {
    min-height: auto;
    margin-bottom: 0.55rem;
    font-size: 1.08rem;
    line-height: 1.2;
  }

  .book-card-body {
    padding: 0.8rem 0.25rem 0.1rem;
  }

  .book-card p {
    min-height: 0;
    margin-bottom: 0.9rem;
    font-size: 0.92rem;
    line-height: 1.45;
    -webkit-line-clamp: 7;
  }

  .book-card .btn {
    min-height: 44px;
    padding: 0.55rem 0.7rem;
    font-size: 0.92rem;
    line-height: 1.2;
    border-radius: 12px;
  }

  .story-grid,
  .author-panel {
    gap: 1.3rem;
  }

  .story-image-wrap {
    width: min(100%, 300px);
    padding: 0.5rem;
    border-radius: 22px;
  }

  .story-image {
    max-height: 260px;
    border-radius: 16px;
  }

  .story-text,
  .author-text {
    max-height: 300px;
    margin: 0.65rem 0 1rem;
    padding-right: 0.45rem;
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .author-text {
    margin-bottom: 0;
  }

  .author-photo {
    width: 190px;
    height: 190px;
    border-width: 8px;
  }

  .testimonials-section {
    padding-top: 2.3rem;
  }

  .testimonial-grid {
    display: flex;
    grid-template-columns: none;
    gap: 0.85rem;
    margin-right: calc(var(--bs-gutter-x, 15px) * -1);
    margin-left: calc(var(--bs-gutter-x, 15px) * -1);
    padding: 0 15px 0.35rem;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .testimonial-card {
    flex: 0 0 min(82%, 310px);
    min-height: 255px;
    padding: 1.15rem;
    scroll-snap-align: start;
  }

  .stars {
    font-size: 1.05rem;
  }

  .testimonial-card p {
    max-height: 118px;
    margin: 0.55rem 0 0.7rem;
    font-size: 0.88rem;
    line-height: 1.45;
  }

  .testimonial-card strong {
    font-size: 0.9rem;
  }

  .testimonial-card span {
    font-size: 0.78rem;
  }

  .final-cta-card {
    grid-template-columns: 1fr;
    gap: 0.65rem;
    padding: 0;
    text-align: center;
  }

  .final-paulie img {
    width: 86px;
    height: 86px;
  }

  .final-copy h2 {
    font-size: clamp(1.45rem, 7vw, 1.95rem);
    line-height: 1.1;
  }

  .final-copy p {
    margin-top: 0.45rem;
    font-size: 0.98rem;
  }

  .final-actions {
    gap: 0.5rem;
    justify-items: center;
  }

  .final-actions .btn {
    min-height: 46px;
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
    font-size: 0.95rem;
  }

  .site-footer {
    padding: 1.5rem 0 4rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 0.7rem;
    justify-items: center;
    text-align: center;
  }

  .footer-brand,
  .footer-tagline,
  .footer-nav,
  .footer-contact {
    grid-column: 1;
    grid-row: auto;
  }

  .footer-tagline {
    max-width: 300px;
    margin-top: 0;
    font-size: 0.9rem;
  }

  .footer-nav {
    gap: 0.7rem 1rem;
    font-size: 0.9rem;
  }

  .footer-contact {
    justify-content: center;
  }

  .footer-bottom {
    gap: 0.25rem 0.8rem;
    margin-top: 1rem;
    font-size: 0.82rem;
  }

  .music-toggle {
    right: 12px;
    bottom: 12px;
    min-width: 44px;
    min-height: 44px;
    padding: 0.5rem 0.72rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 420px) {
  .site-header .navbar {
    padding: 0.38rem 0;
  }

  .brand-logo {
    width: 80px;
  }

  .site-nav {
    gap: 0.38rem;
  }

  .lang-btn {
    width: 31px;
    height: 32px;
    font-size: 0.68rem;
  }

  .navbar-toggler {
    min-width: 40px;
    min-height: 40px;
    padding: 0.26rem 0.42rem;
  }
}

@media (max-width: 340px) {
  .books-grid {
    grid-template-columns: 1fr;
  }

  .book-card {
    min-height: 0;
    padding: 0.75rem;
  }

  .book-card p {
    font-size: 0.9rem;
    -webkit-line-clamp: 8;
  }
}
