:root {
  --ink: #281d2c;
  --muted: #665a67;
  --paper: #fffaf0;
  --cream: #f6e8bd;
  --gold: #f4c95d;
  --orange: #ee7444;
  --purple: #632c68;
  --purple-dark: #3b1b42;
  --green: #2d7a62;
  --green-dark: #174c40;
  --blue: #317e96;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(49, 31, 52, 0.17);
  --soft-shadow: 0 14px 40px rgba(50, 35, 53, 0.12);
  --radius-lg: 34px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --shell: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  z-index: 999;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  text-decoration: none;
}
.skip-link:focus { transform: translateY(0); }
.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;
}
.shell { width: var(--shell); margin-inline: auto; }
.section-pad { padding: 110px 0; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 14px 0;
  pointer-events: none;
}
.nav-shell {
  width: min(1240px, calc(100% - 28px));
  margin: auto;
  padding: 10px 14px 10px 12px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 22px;
  background: rgba(255, 250, 240, 0.86);
  box-shadow: 0 12px 38px rgba(37, 27, 40, .12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: auto;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  min-width: max-content;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  aspect-ratio: 1;
  border-radius: 15px 15px 15px 5px;
  background: linear-gradient(145deg, var(--gold), var(--orange));
  color: var(--purple-dark);
  font-weight: 1000;
  letter-spacing: -2px;
  box-shadow: inset 0 -5px 0 rgba(99,44,104,.16), 0 7px 16px rgba(99,44,104,.16);
}
.brand-copy { display: grid; line-height: 1.02; }
.brand-copy strong { font-size: 1.02rem; letter-spacing: -.02em; }
.brand-copy small { color: var(--purple); font-weight: 800; letter-spacing: .08em; text-transform: uppercase; font-size: .68rem; margin-top: 5px; }
.site-nav { display: flex; align-items: center; gap: 5px; }
.site-nav a {
  text-decoration: none;
  color: #4a3f4b;
  font-size: .92rem;
  font-weight: 750;
  padding: 10px 15px;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.site-nav a:hover, .site-nav a:focus-visible { background: #fff; color: var(--purple); transform: translateY(-1px); }
.menu-button { display: none; border: 0; background: none; padding: 10px; }
.menu-button span:not(.sr-only) { display: block; width: 24px; height: 2px; border-radius: 2px; background: var(--ink); margin: 5px 0; }

.hero {
  position: relative;
  min-height: 850px;
  padding-top: 165px;
  background:
    radial-gradient(circle at 88% 14%, rgba(244, 201, 93, .4), transparent 25%),
    radial-gradient(circle at 4% 42%, rgba(45, 122, 98, .18), transparent 26%),
    linear-gradient(180deg, #fff9e9 0%, #f7edcc 73%, #f5e3aa 100%);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -4% -130px;
  height: 240px;
  border-radius: 50% 50% 0 0;
  background: var(--paper);
  z-index: 2;
}
.hero-grid { position: relative; z-index: 3; display: grid; grid-template-columns: .91fr 1.09fr; align-items: center; gap: 62px; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero h1, .section-heading h2, .watch h2, .about h2, .support h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -.055em;
  line-height: .98;
}
.hero h1 { font-size: clamp(3.25rem, 6.5vw, 6.35rem); max-width: 780px; }
.hero h1 span { color: var(--purple); position: relative; }
.hero h1 span::after {
  content: "";
  position: absolute;
  left: 2%; right: -1%; bottom: -.04em;
  height: .13em;
  border-radius: 50%;
  background: var(--gold);
  z-index: -1;
  transform: rotate(-1deg);
}
.hero-lede { max-width: 650px; margin: 28px 0 0; color: var(--muted); font-size: clamp(1.02rem, 1.5vw, 1.18rem); }
.hero-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 13px 20px;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 850;
  font-size: .95rem;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-3px); filter: saturate(1.06); }
.button-primary { color: white; background: linear-gradient(135deg, var(--purple), #88458e); box-shadow: 0 14px 27px rgba(99, 44, 104, .27); }
.button-secondary { background: rgba(255,255,255,.72); color: var(--ink); border: 1px solid rgba(40,29,44,.13); }
.button-dark { background: var(--ink); color: white; box-shadow: 0 12px 22px rgba(40,29,44,.2); }
.button-youtube { background: #e33434; color: white; box-shadow: 0 14px 28px rgba(227, 52, 52, .23); }
.button-coffee { background: var(--gold); color: var(--purple-dark); box-shadow: 0 16px 30px rgba(244, 201, 93, .25); }
.link-placeholder { position: relative; }
.link-placeholder::after { content: "Link coming soon"; position: absolute; top: calc(100% + 7px); left: 50%; transform: translateX(-50%); width: max-content; max-width: 220px; padding: 5px 9px; border-radius: 8px; background: var(--ink); color: white; opacity: 0; pointer-events: none; font-size: .7rem; font-weight: 700; transition: opacity .2s; }
.link-placeholder:hover::after, .link-placeholder:focus-visible::after { opacity: 1; }
.hero-note { display: flex; align-items: flex-start; gap: 10px; max-width: 590px; margin-top: 24px; color: #6c5968; font-size: .88rem; }
.hero-note p { margin: 0; }
.hero-note span { color: var(--orange); font-size: 1.1rem; }

.hero-art { min-height: 610px; position: relative; display: grid; place-items: center; }
.cover-stack { position: relative; width: min(525px, 83vw); aspect-ratio: 1 / 1; perspective: 1200px; }
.cover { position: absolute; width: 70%; aspect-ratio: 1; margin: 0; overflow: hidden; border-radius: 26px; background: white; box-shadow: var(--shadow); border: 7px solid rgba(255,255,255,.8); }
.cover img { width: 100%; height: 100%; object-fit: cover; }
.cover-front { left: 15%; top: 3%; z-index: 3; transform: rotate(1.5deg); animation: float-cover 6s ease-in-out infinite; }
.cover-back { width: 50%; top: 38%; z-index: 1; }
.cover-left { left: -1%; transform: rotate(-9deg); }
.cover-right { right: -1%; transform: rotate(10deg); }
@keyframes float-cover { 0%,100% { transform: rotate(1.5deg) translateY(0); } 50% { transform: rotate(.4deg) translateY(-10px); } }
.floating-badge { position: absolute; z-index: 5; width: 58px; aspect-ratio: 1; border-radius: 20px; display: grid; place-items: center; font-size: 1.55rem; background: rgba(255,255,255,.92); box-shadow: var(--soft-shadow); animation: drift 5s ease-in-out infinite; }
.badge-one { left: 2%; top: 13%; transform: rotate(-8deg); }
.badge-two { right: 2%; top: 23%; animation-delay: -2s; }
.badge-three { right: 13%; bottom: 7%; animation-delay: -3.3s; }
@keyframes drift { 0%,100% { margin-top: 0; } 50% { margin-top: -12px; } }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(6px); opacity: .5; }
.hero-glow-one { width: 170px; height: 170px; right: -40px; bottom: 120px; background: var(--orange); }
.hero-glow-two { width: 125px; height: 125px; left: 7%; top: 145px; background: #9ed5bd; }

.promise-strip { position: relative; z-index: 4; margin-top: -40px; }
.promise-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid rgba(40,29,44,.1); background: white; border-radius: 23px; box-shadow: var(--soft-shadow); overflow: hidden; }
.promise-grid div { display: flex; align-items: center; gap: 12px; padding: 23px 24px; border-right: 1px solid rgba(40,29,44,.09); }
.promise-grid div:last-child { border-right: 0; }
.promise-grid span { color: var(--orange); font-family: Georgia, serif; font-weight: 900; }
.promise-grid strong { font-size: .91rem; }

.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 42px; }
.section-heading h2, .watch h2, .about h2, .support h2 { font-size: clamp(2.55rem, 5vw, 4.7rem); }
.section-heading > p { max-width: 470px; margin: 0; color: var(--muted); }
.book-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.book-card { overflow: hidden; border-radius: var(--radius-lg); background: white; border: 1px solid rgba(40,29,44,.09); box-shadow: 0 14px 45px rgba(40,29,44,.08); transition: transform .25s ease, box-shadow .25s ease; }
.book-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.book-image-wrap { position: relative; margin: 12px 12px 0; border-radius: 25px; overflow: hidden; aspect-ratio: 1; background: var(--cream); }
.book-image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.book-card:hover .book-image-wrap img { transform: scale(1.025); }
.book-label { position: absolute; left: 13px; bottom: 13px; padding: 7px 11px; border-radius: 999px; background: rgba(255,255,255,.9); color: var(--purple-dark); font-size: .69rem; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; backdrop-filter: blur(8px); }
.book-copy { padding: 24px 24px 26px; }
.book-kicker { margin: 0 0 7px; color: var(--green); font-size: .72rem; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.book-copy h3 { margin: 0; font: 800 1.65rem/1.12 Georgia, serif; letter-spacing: -.035em; }
.book-copy > p:not(.book-kicker) { min-height: 103px; margin: 15px 0 18px; color: var(--muted); font-size: .94rem; }
.text-link { display: inline-flex; gap: 9px; align-items: center; color: var(--purple); font-weight: 850; text-decoration: none; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.books-cta { margin-top: 34px; padding: 22px 24px; border-radius: 24px; background: #efe7f1; display: flex; align-items: center; justify-content: space-between; gap: 25px; }
.books-cta > div { display: flex; align-items: center; gap: 14px; }
.books-cta p { margin: 0; color: var(--muted); }
.books-cta strong { color: var(--ink); }
.mini-icon { width: 52px; aspect-ratio: 1; display: grid; place-items: center; border-radius: 17px; background: white; font-size: 1.5rem; box-shadow: 0 7px 18px rgba(40,29,44,.08); }

.story-window { background: var(--green-dark); color: white; position: relative; overflow: hidden; }
.story-window::before { content: ""; position: absolute; width: 360px; height: 360px; border: 70px solid rgba(244,201,93,.08); border-radius: 50%; right: -100px; top: -130px; }
.section-heading.light .eyebrow { color: #f4d875; }
.section-heading.light > p { color: rgba(255,255,255,.72); }
.gallery-grid { display: grid; grid-template-columns: 1.32fr .68fr; grid-template-rows: 1fr 1fr; gap: 20px; }
.gallery-grid figure { margin: 0; position: relative; overflow: hidden; min-height: 0; border-radius: 28px; background: #0c352d; }
.gallery-main { grid-row: 1 / 3; min-height: 650px; }
.gallery-small { min-height: 315px; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery-grid figure:hover img { transform: scale(1.035); }
.gallery-grid figcaption { position: absolute; inset: auto 16px 16px; padding: 15px 17px; border-radius: 18px; background: rgba(24, 18, 25, .72); backdrop-filter: blur(10px); color: rgba(255,255,255,.82); font-size: .84rem; }
.gallery-grid figcaption span { display: block; color: white; font-weight: 900; font-size: 1rem; }

.watch { background: #fffdf6; }
.watch-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 75px; }
.video-card { padding: 20px; border-radius: 36px; background: linear-gradient(145deg, #f8d867, #ee8847); box-shadow: var(--shadow); transform: rotate(-1.5deg); }
.video-art { position: relative; aspect-ratio: 16 / 11; overflow: hidden; border-radius: 24px; background: #44254a; }
.video-art img { width: 100%; height: 100%; object-fit: cover; }
.video-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 20%, rgba(35,22,37,.36)); }
.play-button { position: absolute; inset: 50% auto auto 50%; transform: translate(-50%,-50%); width: 86px; aspect-ratio: 1; display: grid; place-items: center; padding-left: 6px; border-radius: 50%; background: rgba(255,255,255,.92); color: #e33434; box-shadow: 0 16px 35px rgba(35,22,37,.22); font-size: 1.7rem; }
.video-sticker { position: absolute; left: 18px; bottom: 18px; padding: 9px 14px; border-radius: 999px; background: var(--gold); color: var(--purple-dark); font-size: .76rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.watch-copy > p:not(.eyebrow) { color: var(--muted); font-size: 1.04rem; max-width: 560px; }
.channel-tags { margin: 23px 0 28px; display: flex; flex-wrap: wrap; gap: 8px; }
.channel-tags span { padding: 7px 11px; border: 1px solid rgba(40,29,44,.12); border-radius: 999px; background: white; color: #5d4e5e; font-size: .79rem; font-weight: 750; }
.youtube-icon { width: 27px; height: 20px; display: grid; place-items: center; border-radius: 6px; background: white; color: #e33434; font-size: .68rem; }

.about { background: #f1e9f3; }
.about-grid { display: grid; grid-template-columns: 1fr .88fr; gap: 90px; align-items: center; }
.about-lede { font-size: 1.18rem; color: #453847; }
.about-copy > p:not(.eyebrow):not(.about-lede) { color: var(--muted); }
.about-copy blockquote { margin: 30px 0 0; padding: 22px 23px; border-left: 5px solid var(--gold); border-radius: 0 18px 18px 0; background: rgba(255,255,255,.64); color: var(--purple-dark); font: 700 1.2rem/1.45 Georgia, serif; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.about-values article { min-height: 205px; padding: 23px; border-radius: 27px; background: white; box-shadow: 0 10px 34px rgba(58,35,62,.07); }
.about-values article > span { display: grid; place-items: center; width: 52px; aspect-ratio: 1; border-radius: 17px; background: #fff6d8; font-size: 1.45rem; }
.about-values h3 { margin: 18px 0 5px; font: 800 1.22rem Georgia, serif; }
.about-values p { margin: 0; color: var(--muted); font-size: .89rem; }

.support { background: var(--purple-dark); position: relative; overflow: hidden; }
.support::before, .support::after { content: ""; position: absolute; border-radius: 50%; }
.support::before { width: 380px; height: 380px; top: -180px; left: -130px; background: rgba(244,201,93,.12); }
.support::after { width: 330px; height: 330px; right: -130px; bottom: -150px; border: 75px solid rgba(45,122,98,.18); }
.support-card { position: relative; z-index: 2; max-width: 930px; text-align: center; color: white; }
.support-card .eyebrow { color: #f2d471; }
.support-card h2 { max-width: 830px; margin-inline: auto; }
.support-card > p:not(.eyebrow) { max-width: 680px; margin: 25px auto 30px; color: rgba(255,255,255,.75); }
.support-icons { display: flex; justify-content: center; gap: 7px; margin-bottom: 21px; }
.support-icons span { width: 64px; aspect-ratio: 1; display: grid; place-items: center; border-radius: 21px; background: white; font-size: 1.8rem; box-shadow: 0 13px 29px rgba(0,0,0,.18); }
.support-icons span:nth-child(1) { transform: rotate(-8deg) translateY(5px); }
.support-icons span:nth-child(3) { transform: rotate(8deg) translateY(4px); }
.support-card small { display: block; margin-top: 17px; color: rgba(255,255,255,.58); }

.site-footer { padding: 58px 0; background: #211724; color: white; }
.footer-grid { display: grid; grid-template-columns: 1.25fr .55fr 1fr; gap: 55px; align-items: start; }
.brand-footer .brand-copy small { color: #efc963; }
.footer-brand > p { max-width: 420px; margin: 18px 0 0; color: rgba(255,255,255,.6); font-size: .9rem; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: rgba(255,255,255,.74); text-decoration: none; font-weight: 700; }
.footer-links a:hover { color: white; }
.footer-legal { color: rgba(255,255,255,.5); font-size: .82rem; }
.footer-legal p { margin: 0 0 9px; }

.link-toast { position: fixed; z-index: 200; left: 50%; bottom: 22px; transform: translate(-50%, 140%); width: min(470px, calc(100% - 28px)); padding: 15px 18px; border-radius: 16px; background: #211724; color: white; box-shadow: 0 20px 50px rgba(0,0,0,.28); display: grid; transition: transform .3s ease; }
.link-toast.is-visible { transform: translate(-50%, 0); }
.link-toast span { color: rgba(255,255,255,.7); font-size: .82rem; }
.link-toast code { color: #f5d36e; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.book-card:nth-child(2).reveal { transition-delay: .08s; }
.book-card:nth-child(3).reveal { transition-delay: .16s; }

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

@media (max-width: 980px) {
  .section-pad { padding: 86px 0; }
  .hero { min-height: 0; padding-top: 145px; padding-bottom: 155px; }
  .hero-grid { grid-template-columns: 1fr; gap: 42px; }
  .hero-copy { text-align: center; }
  .hero-lede, .hero-note { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-art { padding:2rem; }
  .promise-grid { grid-template-columns: 1fr 1fr; }
  .promise-grid div:nth-child(2) { border-right: 0; }
  .promise-grid div:nth-child(-n+2) { border-bottom: 1px solid rgba(40,29,44,.09); }
  .book-grid { grid-template-columns: 1fr 1fr; }
  .book-card:last-child { grid-column: 1 / 3; display: grid; grid-template-columns: .8fr 1.2fr; }
  .book-card:last-child .book-copy { align-self: center; }
  .book-card:last-child .book-copy > p:not(.book-kicker) { min-height: 0; }
  .story-window .section-heading { align-items: start; }
  .watch-grid, .about-grid { grid-template-columns: 1fr; gap: 52px; }
  .watch-copy { text-align: center; }
  .watch-copy > p:not(.eyebrow) { margin-left: auto; margin-right: auto; }
  .channel-tags { justify-content: center; }
  .about-copy { max-width: 760px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-legal { grid-column: 1 / 3; }
}

@media (max-width: 720px) {
  :root { --shell: min(100% - 28px, 1180px); }
  .section-pad { padding: 70px 0; }
  .site-header { padding-top: 8px; }
  .nav-shell { border-radius: 18px; }
  .menu-button { display: block; }
  .site-nav { position: absolute; top: calc(100% + 8px); right: 14px; width: min(270px, calc(100vw - 28px)); padding: 10px; border: 1px solid rgba(40,29,44,.1); border-radius: 18px; background: rgba(255,250,240,.98); box-shadow: var(--shadow); display: grid; opacity: 0; transform: translateY(-8px) scale(.98); pointer-events: none; transition: opacity .2s ease, transform .2s ease; }
  .site-nav.is-open { opacity: 1; transform: none; pointer-events: auto; }
  .site-nav a { padding: 12px 14px; }
  .hero { padding-top: 128px; padding-bottom: 130px; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.85rem); }
  .hero-art { min-height: 450px; }
  .cover-stack { width: min(430px, 90vw); }
  .floating-badge { width: 49px; border-radius: 16px; font-size: 1.3rem; }
  .promise-grid { grid-template-columns: 1fr; }
  .promise-grid div { border-right: 0; border-bottom: 1px solid rgba(40,29,44,.09); }
  .promise-grid div:last-child { border-bottom: 0; }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 18px; }
  .book-grid { grid-template-columns: 1fr; }
  .book-card:last-child { grid-column: auto; display: block; }
  .book-copy > p:not(.book-kicker) { min-height: 0; }
  .books-cta { align-items: stretch; flex-direction: column; }
  .books-cta .button { width: 100%; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-main { grid-row: auto; min-height: 460px; }
  .gallery-small { min-height: 350px; }
  .video-card { padding: 13px; border-radius: 26px; }
  .play-button { width: 70px; }
  .about-values { grid-template-columns: 1fr; }
  .about-values article { min-height: 0; display: flex; align-items: center; gap: 17px; }
  .about-values h3 { margin-top: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 35px; }
  .footer-legal { grid-column: auto; }
}

@media (max-width: 440px) {
  .brand-copy strong { font-size: .92rem; }
  .brand-mark { width: 42px; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-art { min-height: 390px; }
  .cover { border-width: 4px; border-radius: 19px; }
  .book-copy { padding: 22px 20px 24px; }
  .support-icons span { width: 54px; border-radius: 17px; font-size: 1.5rem; }
}

/* 2026 content refresh: newest book spotlight and updated YouTube artwork */
.cover-latest { overflow: visible; }
.cover-latest img { border-radius: 19px; }
.cover-latest figcaption {
  position: absolute;
  top: -17px;
  right: -17px;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--orange);
  color: white;
  box-shadow: 0 10px 22px rgba(101, 45, 47, .25);
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
  transform: rotate(5deg);
}

.featured-book-card {
  display: grid;
  grid-template-columns: minmax(310px, .78fr) minmax(0, 1.22fr);
  gap: 0;
  margin-bottom: 28px;
  overflow: hidden;
  border: 1px solid rgba(40,29,44,.09);
  border-radius: 38px;
  background: linear-gradient(135deg, #fff 0%, #fffaf0 64%, #f3e8f4 100%);
  box-shadow: var(--shadow);
}
.featured-book-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  overflow: visible;
  background: var(--cream);
}
.featured-book-image img { display: block; width: 100%; max-width: 420px; height: auto; object-fit: contain; object-position: center; }
.latest-ribbon {
  position: absolute;
  top: 22px;
  left: 22px;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--orange);
  color: white;
  box-shadow: 0 10px 22px rgba(101,45,47,.24);
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.featured-book-copy {
  align-self: center;
  padding: clamp(34px, 6vw, 78px);
}
.featured-book-copy h3 {
  margin: 0;
  color: var(--purple-dark);
  font: 850 clamp(3rem, 6vw, 5.8rem)/.92 Georgia, serif;
  letter-spacing: -.06em;
}
.featured-book-copy > p:not(.book-kicker) { max-width: 680px; color: var(--muted); }
.featured-lede { margin: 25px 0 12px; font-size: 1.12rem; color: #443545 !important; }
.featured-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 17px; margin-top: 30px; }
.feature-note { color: var(--green-dark); font-size: .83rem; font-weight: 850; }
.book-grid-secondary { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.book-grid-secondary .book-copy > p:not(.book-kicker) { min-height: 78px; }
.video-card { display: block; text-decoration: none; }
.video-card:hover, .video-card:focus-visible { transform: rotate(-.4deg) translateY(-5px); }
.video-art { aspect-ratio: 16 / 9; }
.video-art img { object-position: center; }

@media (max-width: 980px) {
  .featured-book-card { grid-template-columns: .9fr 1.1fr; }
  .featured-book-image { padding:2rem; }
  .featured-book-copy { padding: 45px; }
  .book-grid-secondary { grid-template-columns: 1fr 1fr; }
  .book-grid-secondary .book-card:last-child { grid-column: auto; display: block; }
}

@media (max-width: 720px) {
  .featured-book-card { grid-template-columns: 1fr; border-radius: 28px; }
  .featured-book-image { padding: 1.25rem; }
  .featured-book-image img { max-width: 300px; }
  .featured-book-copy { padding: 30px 23px 34px; }
  .featured-book-copy h3 { font-size: clamp(2.7rem, 14vw, 4.4rem); }
  .featured-actions { align-items: stretch; }
  .featured-actions .button { width: 100%; }
  .book-grid-secondary { grid-template-columns: 1fr; }
  .book-grid-secondary .book-copy > p:not(.book-kicker) { min-height: 0; }
}


