/** Shopify CDN: Minification failed

Line 411:151 Expected identifier but found whitespace
Line 411:152 Unexpected "1"

**/
/* ============================================================
   Blueprints and Divine Steps Publishing, Shopify theme styles
   Source of truth: brand-voice-guide/homepage-warm.html and
   shop-contact-experience.html, both already visually approved.
   ============================================================ */

:root {
  --periwinkle: #142A43;
  --grid-blue: #C6E1FF;
  --gold: #F5C85D;
  --brown: #142A43;
  --charcoal: #142A43;
  --paper: #FDF9F3;
  --cream: #EAF3FF;
  --plum: #142A43;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); font-family: 'Nunito', sans-serif; color: var(--charcoal); line-height: 1.6; }
h1, h2, h3 { font-family: 'Fraunces', serif; }
a { color: inherit; }
img { max-width: 100%; }

.skip-to-content { position: absolute; left: -999px; top: 0; background: var(--gold); color: var(--charcoal); padding: 12px 20px; z-index: 999; font-weight: 800; text-decoration: none; }
.skip-to-content:focus { left: 12px; top: 12px; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ---------- NAV ---------- */
.site-nav { position: sticky; top: 0; z-index: 80; background: var(--paper); border-bottom: 1px solid rgba(74,47,69,0.1); display: flex; align-items: center; justify-content: space-between; padding: 16px 30px; }
.site-nav .nav-logo { font-family: 'Fraunces', serif; font-weight: 600; font-size: 15px; color: var(--plum); text-decoration: none; }
.site-nav .nav-links { display: flex; align-items: center; gap: 26px; }
.site-nav .nav-links a { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 12px; letter-spacing: 0.8px; text-transform: uppercase; color: rgba(20,42,67,0.6); text-decoration: none; padding-bottom: 3px; border-bottom: 2px solid transparent; }
.site-nav .nav-links a:hover, .site-nav .nav-links a.active { color: var(--periwinkle); border-bottom-color: var(--gold); }
.site-nav .nav-cart { color: var(--periwinkle) !important; }

/* ---------- SHARED PATTERNS ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.reveal.in { opacity: 1; transform: translateY(0); }
.eyebrow { font-weight: 800; letter-spacing: 1.8px; text-transform: uppercase; font-size: 11.5px; color: var(--gold); margin-bottom: 10px; }
.hero .eyebrow { color: var(--periwinkle); }
h2.headline { font-family: 'Fraunces', serif; font-weight: 600; font-size: clamp(24px, 3.4vw, 36px); margin: 0 0 14px 0; color: var(--plum); line-height: 1.2; }
h1.headline { font-family: 'Fraunces', serif; font-weight: 600; font-size: clamp(24px, 3.4vw, 36px); margin: 0 0 14px 0; color: var(--plum); line-height: 1.2; }
p.sub { font-size: 15.5px; color: rgba(20,42,67,0.65); max-width: 560px; margin: 0 0 20px 0; }
.section-inner { max-width: 1080px; margin: 0 auto; padding: 90px 30px; }
.btn-gold { display: inline-block; font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 14px; color: var(--charcoal); background: var(--gold); border: none; padding: 15px 30px; border-radius: 30px; cursor: pointer; text-decoration: none; }
.btn-gold[disabled] { opacity: 0.55; cursor: not-allowed; }
.btn-ghost { display: inline-block; font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 14px; color: var(--plum); background: none; border: none; text-decoration: underline; text-underline-offset: 4px; cursor: pointer; }

/* ---------- HERO ---------- */
.hero { position: relative; min-height: 100vh; overflow: hidden; background: linear-gradient(180deg, #8fb4dd 0%, #b8d6f2 20%, #d6e8fb 45%, #eaf3ff 70%, #FDF9F3 100%); }
.sunburst { position: absolute; left: 50%; top: 38%; width: 1000px; height: 1000px; transform: translate(-50%,-50%); background: repeating-conic-gradient(rgba(245,200,93,0.45) 0deg 4deg, transparent 4deg 12deg); opacity: 0.55; animation: spinSlow 100s linear infinite; -webkit-mask-image: radial-gradient(circle, black 0%, black 28%, transparent 58%); mask-image: radial-gradient(circle, black 0%, black 28%, transparent 58%); }
@keyframes spinSlow { to { transform: translate(-50%,-50%) rotate(360deg); } }
.cloud { position: absolute; border-radius: 50%; filter: blur(10px); opacity: 0.5; }
.cloud.c1 { width: 220px; height: 60px; left: 6%; top: 14%; background: #fff; animation: driftA 50s linear infinite; }
.cloud.c2 { width: 160px; height: 46px; right: 10%; top: 22%; background: #EAF3FF; animation: driftB 60s linear infinite; }
@keyframes driftA { from { transform: translateX(-40px); } to { transform: translateX(40px); } }
@keyframes driftB { from { transform: translateX(30px); } to { transform: translateX(-30px); } }
.stars { position: absolute; inset: 0; background-image: radial-gradient(1.5px 1.5px at 20% 15%, rgba(255,255,255,0.8), transparent), radial-gradient(1.5px 1.5px at 70% 10%, rgba(255,255,255,0.7), transparent), radial-gradient(1.5px 1.5px at 85% 25%, rgba(255,255,255,0.6), transparent), radial-gradient(1.5px 1.5px at 40% 8%, rgba(255,255,255,0.7), transparent), radial-gradient(1.5px 1.5px at 55% 20%, rgba(255,255,255,0.5), transparent); opacity: 0.8; }
.corner-bloom { position: absolute; bottom: 2%; width: 150px; height: 150px; opacity: 0.9; z-index: 2; }
.corner-bloom.left { left: -10px; }
.corner-bloom.right { right: -10px; transform: scaleX(-1); }
.hero-inner { position: relative; z-index: 3; min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 120px 24px 90px; }
.girls-wrap { position: relative; margin-bottom: 14px; }
.girls-glow { position: absolute; left: 50%; top: 50%; width: 460px; height: 460px; transform: translate(-50%,-50%); background: radial-gradient(circle, rgba(245,200,93,0.5) 0%, rgba(245,200,93,0.15) 45%, transparent 72%); }
.girls-img { position: relative; width: 240px; filter: drop-shadow(0 18px 30px rgba(74,47,69,0.28)); animation: floatY 5s ease-in-out infinite; }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.hero h1 { font-family: 'Fraunces', serif; font-weight: 600; color: var(--plum); font-size: clamp(30px, 5.2vw, 56px); line-height: 1.12; margin: 8px 0 16px 0; }
.hero p.sub-hero { max-width: 520px; color: rgba(20,42,67,0.75); font-size: 15.5px; margin: 0 0 26px 0; }
.cta-row { display: flex; align-items: center; gap: 20px; margin-bottom: 40px; flex-wrap: wrap; justify-content: center; }
.footprints { display: flex; align-items: flex-end; gap: 10px; margin-bottom: 10px; }
.footprint { width: 15px; height: 20px; display: block; }
.footprint--flip { transform: scaleX(-1); }
.footprint--sway { animation: stepSway 2.4s ease-in-out infinite; }
.scroll-hint { font-size: 10.5px; letter-spacing: 2px; text-transform: uppercase; color: rgba(20,42,67,0.55); font-weight: 700; }

/* ---------- PROBLEM AGITATION ---------- */
.problem { background: var(--paper); }
.problem .section-inner { padding: 56px 30px; }
.problem .layout { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center; }
.book-page-frame { position: relative; max-width: 380px; aspect-ratio: 1 / 1; margin: 0 auto; border-radius: 14px; overflow: hidden; box-shadow: 0 20px 50px rgba(51,28,20,0.18); transform: rotate(-2deg); }
.book-page-frame img { display: block; width: 100%; height: 100%; object-fit: cover; }
.book-page-frame .cap { position: absolute; left: 0; right: 0; bottom: 0; background: linear-gradient(0deg, rgba(35,31,32,0.75), transparent); color: #fff; font-size: 12px; font-weight: 700; padding: 22px 16px 12px; }
.problem ul { list-style: none; margin: 0 0 24px; padding: 0; }
.problem li { font-size: 15px; color: var(--brown); margin-bottom: 12px; padding-left: 24px; position: relative; }
.problem li::before { content: ""; position: absolute; left: 0; top: 7px; width: 9px; height: 9px; border-radius: 50%; background: var(--gold); }

/* ---------- SOLUTION REVEAL ---------- */
.solution { background: linear-gradient(160deg, #EAF3FF 0%, #dcebff 55%, #FDF9F3 100%); text-align: center; }
.solution .eyebrow, .solution h2, .solution p.sub { color: var(--plum); margin-left: auto; margin-right: auto; }
.solution p.sub { color: rgba(20,42,67,0.75); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 34px; }
.step-card { background: rgba(255,255,255,0.85); border-radius: 14px; padding: 24px 14px; }
.step-card .num { font-family: 'Fraunces', serif; font-weight: 700; font-size: 22px; color: var(--gold); margin-bottom: 6px; }
.step-card .word { font-family: 'Fraunces', serif; font-weight: 600; font-size: 16px; color: var(--plum); }
.step-card .question { font-family: 'Fraunces', serif; font-style: italic; font-weight: 500; font-size: 13px; color: var(--periwinkle); margin: 6px 0 8px; }
.step-card .step-desc { font-size: 12.5px; color: rgba(20,42,67,0.7); line-height: 1.5; }
.step-card .footprint { width: 15px; height: 20px; margin: 10px auto 0; }

/* ---------- TWO BOOKS ---------- */
.books { background: var(--paper); }
.books-head { text-align: center; margin-bottom: 40px; }
.books-head .eyebrow, .books-head h2, .books-head p.sub { margin-left: auto; margin-right: auto; }
.book-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.book-card { border-radius: 18px; overflow: hidden; box-shadow: 0 16px 36px rgba(51,28,20,0.14); display: flex; flex-direction: column; }
.book-card .art { position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; background: var(--cream); }
.book-card .art img { width: 100%; display: block; }
.book-card .info { background: #fff; padding: 26px 28px 30px; flex: 1; display: flex; flex-direction: column; }
.book-card .age { font-weight: 800; font-size: 11px; letter-spacing: 1.2px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.book-card h3 { font-family: 'Fraunces', serif; font-weight: 600; font-size: 21px; color: var(--plum); margin: 0 0 8px 0; }
.book-card p { font-size: 13.8px; color: #555; margin: 0 0 18px 0; flex: 1; }
.book-card .link { font-weight: 800; font-size: 13.5px; color: var(--periwinkle); text-decoration: none; }

/* ---------- PROOF ---------- */
.proof { background: #fff; }
.proof-tagline { font-family: 'Fraunces', serif; font-style: italic; font-weight: 500; font-size: 20px; color: var(--gold); text-align: center; margin-bottom: 40px; }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: start; }
.testimonial { background: var(--paper); border-radius: 14px; padding: 22px 20px; }
.testimonial .rating { color: var(--gold); font-size: 14px; margin-bottom: 8px; letter-spacing: 2px; }
.testimonial p { font-size: 13.5px; color: #444; margin: 0 0 10px 0; }
.testimonial .who { font-size: 12px; font-weight: 800; color: var(--plum); }

/* ---------- SHOP TEASER ---------- */
.offer { background: linear-gradient(160deg, #FDF9F3 0%, #FBEAC4 100%); }
.teaser-books { display: flex; justify-content: center; gap: 36px; margin: 40px 0 34px; flex-wrap: wrap; }
.teaser-book { display: flex; width: 200px; height: 260px; border-radius: 8px; text-decoration: none; align-items: center; justify-content: center; text-align: center; padding: 26px 18px; box-shadow: 0 22px 44px rgba(51,28,20,0.28); transition: transform 0.35s ease; }
.teaser-book:hover { transform: translateY(-8px); }
.teaser-book.wiaf { background: linear-gradient(160deg, #C6E1FF 0%, #9dc4ef 100%); }
.teaser-book.gathered { background: linear-gradient(160deg, #8a6a2e 0%, #5c4720 100%); }
.teaser-book .t-title { font-family: 'Fraunces', serif; color: var(--periwinkle); font-size: 19px; font-weight: 600; line-height: 1.25; }
.teaser-book.gathered .t-title { color: #FDF9F3; letter-spacing: 1px; text-transform: uppercase; font-size: 17px; }
.teaser-book .t-sub { font-family: 'Nunito', sans-serif; color: rgba(20,42,67,0.65); font-size: 10.5px; margin-top: 10px; letter-spacing: 1px; text-transform: uppercase; }
.teaser-book.gathered .t-sub { color: rgba(255,255,255,0.65); }
.offer-note { text-align: center; font-size: 13.5px; color: rgba(20,42,67,0.65); max-width: 480px; margin: 0 auto; }

/* ---------- CLOSING CTA ---------- */
.closing { position: relative; background: linear-gradient(180deg, #eaf3ff 0%, #C6E1FF 40%, #a8cdf2 70%, #8fb4dd 100%); overflow: hidden; text-align: center; color: var(--charcoal); }
.closing .stars { opacity: 0; }
.closing .girls-echo { width: 160px; opacity: 0.85; margin-bottom: 18px; filter: drop-shadow(0 14px 24px rgba(20,42,67,0.35)); }
.closing h2 { color: var(--plum); }
.closing p.sub { color: rgba(20,42,67,0.75); margin-left: auto; margin-right: auto; }
.closing .footprints { justify-content: center; margin: 30px 0 12px; }

/* ---------- INSTAGRAM FEED ---------- */
.instagram-feed { background: var(--paper); }
.instagram-head { text-align: center; max-width: 560px; margin: 0 auto 40px; }
.instagram-head .eyebrow, .instagram-head h2, .instagram-head p.sub { margin-left: auto; margin-right: auto; }
.instagram-handle { display: inline-block; margin-top: 4px; font-weight: 800; font-size: 13.5px; color: var(--periwinkle); text-decoration: none; }
.instagram-handle:hover { text-decoration: underline; }
.instagram-slot { max-width: 1080px; margin: 0 auto; }
.instagram-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.instagram-cell { aspect-ratio: 1 / 1; border-radius: 10px; background: var(--cream); display: flex; align-items: center; justify-content: center; }
.instagram-cell svg { width: 30px; height: 30px; }
.instagram-note { text-align: center; font-size: 12.5px; color: rgba(20,42,67,0.55); font-style: italic; margin: 18px 0 0; }

@media (max-width: 760px) {
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- FOOTER ---------- */
footer.site-footer { background: var(--grid-blue); color: rgba(20,42,67,0.75); text-align: center; padding: 46px 20px 38px; }
footer.site-footer .footer-links { display: flex; justify-content: center; gap: 24px; margin-bottom: 18px; flex-wrap: wrap; }
footer.site-footer .footer-links a { color: var(--periwinkle); font-weight: 800; font-size: 12px; letter-spacing: 0.8px; text-transform: uppercase; text-decoration: none; }
footer.site-footer .footer-links a:hover { color: #8a6a2e; }
footer.site-footer .footer-legal { display: flex; justify-content: center; gap: 18px; margin-bottom: 14px; flex-wrap: wrap; }
footer.site-footer .footer-legal a { color: rgba(20,42,67,0.55); font-weight: 700; font-size: 10.5px; letter-spacing: 0.6px; text-transform: uppercase; text-decoration: none; }
footer.site-footer .footer-legal a:hover { color: var(--periwinkle); }
footer.site-footer p { font-size: 12.5px; margin: 0 0 10px; }
footer.site-footer .footer-contact { display: inline-block; font-size: 12.5px; color: var(--periwinkle); text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 860px) {
  .problem .layout, .proof-grid, .steps, .book-grid, .offer-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SHOP (collection and product) and CONTACT experience
   ============================================================ */

.shop-experience { position: relative; overflow: hidden; padding: 120px 24px 100px; background: linear-gradient(180deg, #FBEFD6 0%, #F5DBA0 42%, #F5C85D 100%); }
.shop-experience .grain { position: absolute; inset: 0; background-image: radial-gradient(1px 1px at 10% 20%, rgba(20,42,67,0.08), transparent), radial-gradient(1px 1px at 80% 60%, rgba(20,42,67,0.06), transparent), radial-gradient(1px 1px at 40% 80%, rgba(20,42,67,0.06), transparent); opacity: 0.6; }
.shop-experience .lamp-glow { position: absolute; left: 14%; top: 4%; width: 520px; height: 520px; background: radial-gradient(circle, rgba(245,200,93,0.55) 0%, rgba(245,200,93,0.15) 45%, transparent 72%); pointer-events: none; }
.shop-head { position: relative; z-index: 2; text-align: center; max-width: 640px; margin: 0 auto 64px; }
.shop-head .eyebrow { font-weight: 800; letter-spacing: 1.8px; text-transform: uppercase; font-size: 11.5px; color: var(--gold); margin-bottom: 12px; }
.shop-head h2 { font-weight: 600; font-size: clamp(26px, 3.6vw, 40px); color: var(--plum); margin: 0 0 14px; line-height: 1.2; }
.shop-head p { font-size: 15.5px; color: rgba(20,42,67,0.75); margin: 0; }

.shelf { position: relative; z-index: 2; max-width: 1020px; margin: 0 auto; display: flex; align-items: flex-start; justify-content: center; gap: 50px; flex-wrap: wrap; }

.book-slot { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; width: 280px; }
.book { position: relative; perspective: 1600px; cursor: pointer; margin: 0 auto 10px; }
.book.wiaf { width: 260px; height: 260px; }
.book.gathered { width: 260px; height: 311px; }
.book.bundle { width: 260px; height: 311px; }
.book .flip-inner { position: relative; width: 100%; height: 100%; transition: transform 0.9s cubic-bezier(.7,0,.3,1); transform-style: preserve-3d; border-radius: 6px; box-shadow: 0 22px 46px rgba(51,28,20,0.4); }
.book.open .flip-inner { transform: rotateY(180deg); }
.book .face { position: absolute; inset: 0; backface-visibility: hidden; border-radius: 6px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.book .face.back { transform: rotateY(180deg); }
.book.wiaf .face { background: linear-gradient(160deg, #C6E1FF 0%, #9dc4ef 100%); }
.book.gathered .face { background: linear-gradient(160deg, #8a6a2e 0%, #5c4720 100%); }
.book.bundle .face { background: linear-gradient(160deg, #f0dca9 0%, #d9b25f 100%); }
.book .face img { width: 100%; height: 100%; object-fit: contain; display: block; }
.book .face .tag { position: absolute; bottom: 0; left: 0; right: 0; padding: 16px 8px 9px; background: linear-gradient(0deg, rgba(0,0,0,0.62), transparent); font-size: 9px; letter-spacing: 1.3px; text-transform: uppercase; color: rgba(255,255,255,0.92); text-align: center; }

.quick-add { position: absolute; inset: 0; z-index: 5; display: flex; align-items: flex-end; justify-content: center; padding: 0 10px 16px; background: linear-gradient(0deg, rgba(20,42,67,0.6) 0%, rgba(20,42,67,0) 55%); opacity: 0; pointer-events: none; transition: opacity 0.25s ease; border-radius: 6px; }
.book:hover .quick-add, .book:focus-within .quick-add { opacity: 1; }
.quick-add-form { margin: 0; pointer-events: none; }
.book:hover .quick-add-form, .book:focus-within .quick-add-form { pointer-events: auto; }
.quick-add-btn { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 12px; color: #FDF9F3; background: var(--periwinkle); border: 2px solid #FDF9F3; padding: 9px 20px; border-radius: 20px; cursor: pointer; }
.quick-add-btn[disabled] { opacity: 0.55; cursor: not-allowed; }
@media (hover: none) { .quick-add { display: none; } }

.book-details { width: 100%; text-align: center; }
.book-details .age { font-weight: 800; font-size: 11px; letter-spacing: 1.1px; text-transform: uppercase; color: var(--periwinkle); opacity: 0.7; margin-bottom: 6px; }
.book-details h3 { font-size: 20px; font-weight: 600; color: var(--plum); margin: 0 0 6px; line-height: 1.2; }
.book-details .tagline { font-family: 'Fraunces', serif; font-style: italic; font-weight: 500; font-size: 13.5px; color: var(--periwinkle); opacity: 0.8; margin: 0 0 10px; line-height: 1.3; }
.book-details p.desc { font-size: 13.5px; color: rgba(20,42,67,0.75); margin: 0 0 12px; line-height: 1.5; }
.book-details ul { list-style: none; margin: 0 0 14px; padding: 0; text-align: left; max-width: 230px; margin-left: auto; margin-right: auto; }
.book-details li { font-size: 12.5px; color: var(--brown); margin-bottom: 6px; padding-left: 15px; position: relative; line-height: 1.4; }
.book-details li::before { content: ""; position: absolute; left: 0; top: 6px; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
.book-details .price { font-family: 'Fraunces', serif; font-weight: 700; font-size: 23px; color: var(--periwinkle); margin: 2px 0 14px; }
.book-details .price .compare { font-family: 'Nunito', sans-serif; font-size: 15px; font-weight: 600; opacity: 0.55; margin-left: 8px; }
.book-details .take-btn { display: inline-block; text-align: center; font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 14.5px; color: #FDF9F3; background: var(--periwinkle); border: none; padding: 16px 30px; border-radius: 28px; cursor: pointer; text-decoration: none; width: 100%; max-width: 260px; box-shadow: 0 12px 26px rgba(20,42,67,0.35); transition: transform 0.2s ease; }
.book-details .take-btn:hover { transform: translateY(-2px); }
.book-details .take-btn.disabled { opacity: 0.5; cursor: not-allowed; box-shadow: none; }

@media (max-width: 760px) {
  .shelf { flex-direction: column; gap: 54px; align-items: center; }
}

/* ============ CONTACT EXPERIENCE ============ */
.contact-experience { position: relative; overflow: hidden; padding: 90px 24px 130px; background: linear-gradient(180deg, #eaf3ff 0%, #C6E1FF 40%, #a8cdf2 70%, #8fb4dd 100%); color: var(--charcoal); }
.contact-experience .stars { position: absolute; inset: 0; background-image: radial-gradient(1.5px 1.5px at 15% 12%, rgba(20,42,67,0.22), transparent), radial-gradient(1.5px 1.5px at 75% 8%, rgba(20,42,67,0.18), transparent), radial-gradient(1.5px 1.5px at 45% 22%, rgba(20,42,67,0.15), transparent), radial-gradient(1.5px 1.5px at 90% 30%, rgba(20,42,67,0.15), transparent); opacity: 0.7; }
.contact-head { position: relative; z-index: 2; text-align: center; max-width: 640px; margin: 0 auto 56px; }
.contact-head .eyebrow { font-weight: 800; letter-spacing: 1.8px; text-transform: uppercase; font-size: 11.5px; color: var(--periwinkle); margin-bottom: 12px; }
.contact-head h2 { font-weight: 600; font-size: clamp(26px, 3.6vw, 40px); color: var(--plum); margin: 0 0 14px; line-height: 1.2; }
.contact-head p { font-size: 15.5px; color: rgba(20,42,67,0.75); margin: 0; }

.journal-wrap { position: relative; z-index: 2; max-width: 880px; margin: 0 auto; perspective: 2200px; }
.journal { position: relative; min-height: 460px; background: #fbf3e2; border-radius: 10px; box-shadow: 0 40px 80px rgba(20,10,30,0.45); display: flex; transform-style: preserve-3d; transition: transform 1.1s cubic-bezier(.7,0,.3,1); }
.journal.flipped { transform: rotateY(-180deg); }
.journal-face { position: absolute; inset: 0; display: flex; backface-visibility: hidden; border-radius: 10px; overflow: hidden; }
.journal-face.back { transform: rotateY(180deg); background: #fbf3e2; }

.j-page { width: 50%; padding: 44px 40px; display: flex; flex-direction: column; }
.j-page.left { border-right: 1px dashed rgba(74,47,69,0.2); background: linear-gradient(90deg, rgba(0,0,0,0.02), transparent 30px); }
.j-page h3 { font-size: 22px; font-weight: 600; color: var(--plum); margin: 0 0 14px; }
.j-page .note { font-size: 13.5px; color: rgba(20,42,67,0.75); margin: 0 0 22px; }
.j-page .note p { margin: 0 0 12px; }
.j-page .note ul { margin: 0; padding-left: 18px; }
.j-page .note li { margin-bottom: 6px; line-height: 1.5; }
.j-page .note li:last-child { margin-bottom: 0; }
.j-links { margin-top: auto; }
.j-links a { display: block; font-weight: 800; font-size: 13px; color: var(--periwinkle); text-decoration: underline; text-underline-offset: 3px; margin-bottom: 8px; }
.j-stamp { width: 56px; height: 56px; margin-top: 18px; opacity: 0.8; }
.j-stamp .footprint { width: 100%; height: 100%; }

.j-field { margin-bottom: 16px; text-align: left; }
.j-field label { display: block; font-size: 10.5px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.j-field input, .j-field textarea, .j-field select { width: 100%; border: none; border-bottom: 1.5px solid rgba(74,47,69,0.3); background: transparent; font-family: 'Nunito', sans-serif; font-size: 14.5px; color: var(--charcoal); padding: 6px 2px; outline: none; resize: none; }
.j-field input:focus, .j-field textarea:focus, .j-field select:focus { border-bottom-color: var(--gold); }
.j-mirror { font-family: 'Caveat', cursive; font-size: 22px; color: var(--plum); min-height: 30px; border-top: 1px dashed rgba(74,47,69,0.2); padding-top: 8px; margin-top: 4px; line-height: 1.3; }
.j-mirror .hint { font-family: 'Nunito', sans-serif; font-size: 10px; letter-spacing: 1px; text-transform: uppercase; color: rgba(20,42,67,0.5); display: block; margin-bottom: 4px; }
.j-submit { margin-top: 14px; align-self: flex-start; font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 13.5px; color: var(--charcoal); background: var(--gold); border: none; padding: 13px 26px; border-radius: 26px; cursor: pointer; }

.journal-face.back .j-page { width: 100%; align-items: center; justify-content: center; text-align: center; }
.stamp-mark { width: 90px; height: 90px; margin-bottom: 18px; animation: stampPop 0.6s cubic-bezier(.3,1.6,.5,1) both; animation-delay: 0.5s; opacity: 0; }
.journal.flipped .stamp-mark { opacity: 1; }
@keyframes stampPop { 0% { transform: scale(2.4) rotate(-18deg); opacity: 0; } 60% { transform: scale(0.9) rotate(4deg); opacity: 1; } 100% { transform: scale(1) rotate(-6deg); opacity: 1; } }
.journal-face.back h3 { font-size: 24px; }
.journal-face.back p { font-size: 14px; color: rgba(20,42,67,0.75); max-width: 360px; }

@media (max-width: 760px) {
  .journal { flex-direction: column; }
  .j-page.left, .j-page { width: 100%; border-right: none; border-bottom: 1px dashed rgba(74,47,69,0.2); }
}

/* ============ INDIVIDUAL BOOK PAGE ============ */
.product-page { padding-top: 90px; padding-bottom: 110px; }
.product-hero { position: relative; z-index: 2; max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: minmax(300px, 440px) 1fr; gap: 66px; align-items: start; }
.product-media { display: flex; flex-direction: column; align-items: center; position: sticky; top: 110px; }
.product-book { width: 100%; max-width: 420px; margin: 0 auto; }
.product-book.wiaf { aspect-ratio: 1 / 1; }
.product-book.gathered { aspect-ratio: 260 / 311; }
.product-book.bundle { aspect-ratio: 260 / 311; }
.product-hint { margin-top: 16px; font-size: 11.5px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(20,42,67,0.6); text-align: center; }

.product-info { padding-top: 4px; }
.product-info .age { font-weight: 800; font-size: 13px; letter-spacing: 1.3px; text-transform: uppercase; color: var(--periwinkle); opacity: 0.75; margin-bottom: 12px; }
.product-info h1 { font-family: 'Fraunces', serif; font-weight: 600; font-size: clamp(30px, 4vw, 44px); color: var(--plum); margin: 0 0 16px; line-height: 1.15; }
.product-info .tagline { font-family: 'Fraunces', serif; font-style: italic; font-weight: 500; font-size: 17.5px; color: var(--periwinkle); opacity: 0.8; margin: 0 0 20px; line-height: 1.4; }
.product-info p.desc { font-size: 16.5px; color: rgba(20,42,67,0.78); line-height: 1.7; margin: 0 0 26px; max-width: 560px; }
.product-info ul { list-style: none; margin: 0 0 30px; padding: 0; }
.product-info li { font-size: 15.5px; color: var(--brown); margin-bottom: 12px; padding-left: 24px; position: relative; line-height: 1.5; }
.product-info li::before { content: ""; position: absolute; left: 0; top: 7px; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.product-info .price { font-family: 'Fraunces', serif; font-weight: 700; font-size: 34px; color: var(--periwinkle); margin: 6px 0 26px; }
.product-info .take-form { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.product-info .take-btn { display: inline-block; text-align: center; font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 15.5px; color: #FDF9F3; background: var(--periwinkle); border: none; padding: 17px 46px; border-radius: 30px; cursor: pointer; text-decoration: none; box-shadow: 0 14px 30px rgba(20,42,67,0.32); transition: transform 0.2s ease; }
.product-info .take-btn:hover { transform: translateY(-2px); }
.product-info .take-btn[disabled] { opacity: 0.5; cursor: not-allowed; box-shadow: none; }

.gallery-sub { font-size: 15px; color: rgba(20,42,67,0.75); line-height: 1.6; max-width: 620px; margin: -14px 0 26px; }

.product-rhythm .eyebrow { text-align: left; }
.rhythm-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 6px; }
.rhythm-card { background: rgba(255,255,255,0.65); border-radius: 16px; padding: 26px 22px; text-align: center; }
.rhythm-word { font-family: 'Fraunces', serif; font-weight: 700; font-size: 17px; color: var(--periwinkle); margin-bottom: 10px; line-height: 1.25; }
.rhythm-card p { font-size: 13.5px; color: rgba(20,42,67,0.72); line-height: 1.55; margin: 0; }
@media (max-width: 760px) {
  .rhythm-grid { grid-template-columns: 1fr 1fr; }
}

.bundle-promo-copy { font-size: 15px; color: rgba(20,42,67,0.78); line-height: 1.7; max-width: 640px; margin: 0 0 24px; }
.bundle-includes { font-size: 12.5px; color: rgba(20,42,67,0.6); margin: 0 0 10px; line-height: 1.4; }
.cross-sell-price .compare { font-family: 'Nunito', sans-serif; font-size: 13px; font-weight: 600; opacity: 0.55; margin-left: 6px; }
.bundle-promo .cross-sell-cta { display: inline-block; font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 13px; letter-spacing: 0; text-transform: none; color: #FDF9F3; background: var(--periwinkle); padding: 12px 26px; border-radius: 24px; box-shadow: 0 10px 22px rgba(20,42,67,0.3); }

@media (max-width: 860px) {
  .product-hero { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .product-media { position: static; }
  .product-info .desc { margin-left: auto; margin-right: auto; }
  .product-info ul { text-align: left; max-width: 360px; margin-left: auto; margin-right: auto; }
  .product-info .take-form { align-items: center; }
}

.star-rating-slot:empty { display: none; }

.product-extra { position: relative; z-index: 2; max-width: 1080px; margin: 0 auto; padding: 64px 30px 0; }
.product-extra .eyebrow { text-align: left; color: var(--periwinkle); }
.product-extra h2 { font-weight: 600; font-size: clamp(22px, 2.8vw, 30px); color: var(--plum); margin: 0 0 24px; }

/* photo gallery */
.gallery-strip { display: flex; gap: 14px; flex-wrap: wrap; }
.gallery-thumb { border: none; padding: 0; background: none; cursor: pointer; width: 130px; height: 130px; border-radius: 12px; overflow: hidden; box-shadow: 0 10px 24px rgba(51,28,20,0.16); transition: transform 0.25s ease; }
.gallery-thumb:hover, .gallery-thumb:focus-visible { transform: translateY(-4px); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-hint { margin-top: 16px; font-size: 13px; color: rgba(20,42,67,0.6); }
.gallery-lightbox { position: fixed; inset: 0; background: rgba(20,42,67,0.86); display: none; align-items: center; justify-content: center; z-index: 200; padding: 30px; }
.gallery-lightbox.open { display: flex; }
.gallery-lightbox img { max-width: min(760px, 90vw); max-height: 84vh; border-radius: 10px; box-shadow: 0 30px 70px rgba(0,0,0,0.5); }
.gallery-lightbox .lightbox-close { position: absolute; top: 24px; right: 30px; background: var(--gold); color: var(--charcoal); border: none; width: 40px; height: 40px; border-radius: 50%; font-size: 18px; font-weight: 800; cursor: pointer; }

/* tabs, details and faq */
.tabs-nav { display: flex; gap: 8px; border-bottom: 1px solid rgba(20,42,67,0.15); margin-bottom: 30px; }
.tab-btn { background: none; border: none; cursor: pointer; font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 12.5px; letter-spacing: 1px; text-transform: uppercase; color: rgba(20,42,67,0.5); padding: 14px 8px; border-bottom: 3px solid transparent; margin-bottom: -1px; }
.tab-btn.active { color: var(--periwinkle); border-bottom-color: var(--gold); }
.tab-panel[hidden] { display: none; }

/* specs and founder story */
.specs-story { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.spec-list { margin: 0; }
.spec-list .row { display: flex; justify-content: space-between; gap: 20px; padding: 13px 0; border-bottom: 1px solid rgba(20,42,67,0.1); font-size: 14.5px; }
.spec-list dt { font-weight: 800; color: var(--periwinkle); white-space: nowrap; flex-shrink: 0; }
.spec-list dd { margin: 0; color: rgba(20,42,67,0.75); text-align: right; }
.story-block h3 { font-family: 'Fraunces', serif; font-weight: 600; font-size: 19px; color: var(--plum); margin: 0 0 12px; line-height: 1.3; }
.story-block p { font-size: 15px; color: rgba(20,42,67,0.78); line-height: 1.7; margin: 0 0 16px; }

/* faq */
.faq-list { max-width: 760px; }
.faq-item { border-bottom: 1px solid rgba(20,42,67,0.12); padding: 6px 0; }
.faq-item summary { list-style: none; cursor: pointer; font-family: 'Fraunces', serif; font-weight: 600; font-size: 16.5px; color: var(--plum); padding: 14px 30px 14px 0; position: relative; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 0; top: 12px; font-size: 20px; color: var(--gold); font-weight: 800; }
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { font-size: 14.5px; color: rgba(20,42,67,0.75); line-height: 1.6; margin: 0 0 18px; max-width: 640px; }

/* complete the set cross sell */
.cross-sell-card { display: flex; align-items: center; gap: 24px; background: #fff; border-radius: 16px; padding: 20px; box-shadow: 0 10px 26px rgba(51,28,20,0.08); text-decoration: none; color: inherit; max-width: 640px; transition: transform 0.25s ease; }
.cross-sell-card:hover, .cross-sell-card:focus-visible { transform: translateY(-3px); }
.cross-sell-media { width: 100px; height: 100px; flex-shrink: 0; border-radius: 10px; overflow: hidden; background: var(--cream); display: flex; align-items: center; justify-content: center; }
.cross-sell-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cross-sell-info h3 { font-family: 'Fraunces', serif; font-weight: 600; font-size: 18px; color: var(--plum); margin: 0 0 6px; }
.cross-sell-info p { font-size: 13px; color: rgba(20,42,67,0.7); margin: 0 0 10px; line-height: 1.5; }
.cross-sell-price { font-family: 'Fraunces', serif; font-weight: 700; font-size: 16px; color: var(--periwinkle); margin-right: 16px; }
.cross-sell-cta { font-weight: 800; font-size: 12.5px; letter-spacing: 0.8px; text-transform: uppercase; color: var(--periwinkle); }

@media (max-width: 600px) {
  .cross-sell-card { flex-direction: column; text-align: center; }
  .cross-sell-price { margin-right: 0; display: block; margin-bottom: 6px; }
}

/* reviews mockup, used only in static previews until the Klaviyo app supplies the real section */
.reviews-summary { display: flex; align-items: center; gap: 18px; margin-bottom: 26px; flex-wrap: wrap; }
.reviews-summary .rating-stars { color: var(--periwinkle); font-size: 20px; letter-spacing: 3px; }
.reviews-summary .rs-text { font-size: 14px; color: rgba(20,42,67,0.7); font-weight: 700; }
.reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.review-card { background: #fff; border-radius: 14px; padding: 20px 22px; box-shadow: 0 10px 26px rgba(51,28,20,0.08); }
.review-card p { font-size: 13.5px; color: #444; margin: 0; }
.review-card .rating-stars { color: var(--gold); font-size: 13px; letter-spacing: 2px; margin-bottom: 8px; display: block; }
.reviews-note { margin-top: 18px; font-size: 12.5px; color: rgba(20,42,67,0.55); font-style: italic; }

@media (max-width: 860px) {
  .specs-story { grid-template-columns: 1fr; gap: 34px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-strip { justify-content: center; }
}

/* ============ ABOUT PAGE ============ */
.about-page { position: relative; overflow: hidden; padding: 110px 24px 100px; background: linear-gradient(180deg, #FDF9F3 0%, #EAF3FF 55%, #C6E1FF 100%); }
.about-intro { position: relative; z-index: 2; max-width: 720px; margin: 0 auto 70px; text-align: center; }
.about-intro .eyebrow { justify-content: center; }
.about-intro h1 { font-weight: 600; font-size: clamp(28px, 4vw, 46px); color: var(--plum); margin: 0 0 20px; line-height: 1.2; }
.about-intro p { font-size: 16px; color: rgba(20,42,67,0.78); line-height: 1.7; margin: 0 0 16px; }
.about-intro p:last-child { margin-bottom: 0; }

.founders { position: relative; z-index: 2; max-width: 1000px; margin: 0 auto 80px; display: grid; grid-template-columns: 340px 1fr; gap: 50px; align-items: center; }
.founders .photo-frame { border-radius: 18px; overflow: hidden; box-shadow: 0 22px 50px rgba(51,28,20,0.2); transform: rotate(-1.5deg); } aspect-ratio: 1 / 1;
.founders .photo-frame img { width: 100%; height: 100%; display: block; object-fit: cover; }
.founders h2 { font-weight: 600; font-size: clamp(22px, 2.8vw, 30px); color: var(--plum); margin: 0 0 16px; }
.founders p { font-size: 15.5px; color: rgba(20,42,67,0.78); line-height: 1.75; margin: 0 0 16px; }

.values-grid { position: relative; z-index: 2; max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value-card { background: rgba(255,255,255,0.85); border-radius: 16px; padding: 30px 26px; }
.value-card .num { font-family: 'Fraunces', serif; font-weight: 700; font-size: 22px; color: var(--gold); margin-bottom: 10px; }
.value-card h3 { font-weight: 600; font-size: 18px; color: var(--plum); margin: 0 0 10px; }
.value-card p { font-size: 13.8px; color: rgba(20,42,67,0.72); margin: 0; line-height: 1.6; }

.about-cta { position: relative; z-index: 2; text-align: center; margin-top: 70px; }

@media (max-width: 860px) {
  .founders { grid-template-columns: 1fr; text-align: center; }
  .founders .photo-frame { max-width: 320px; margin: 0 auto; }
  .values-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   BASIC / UTILITY PAGES (cart, search, 404, customer accounts,
   blog, article, generic page). Not part of the original approved
   home / shop / contact art direction, so kept simple and on
   brand rather than fully custom illustrated.
   ============================================================ */

.basic-shell { background: var(--paper); min-height: 50vh; }
.basic-search-form { display: flex; gap: 10px; max-width: 420px; margin: 24px auto 0; flex-wrap: wrap; justify-content: center; }
.basic-search-form input[type="search"] { flex: 1; min-width: 200px; border: 1.5px solid rgba(20,42,67,0.25); border-radius: 24px; padding: 10px 18px; font-family: 'Nunito', sans-serif; font-size: 14px; }
.basic-article-body { font-size: 15px; color: #333; }
.basic-article-body p { margin: 0 0 16px; }
.basic-article-body img { border-radius: 12px; }
.basic-cart-table { width: 100%; border-collapse: collapse; margin-top: 20px; }
.basic-cart-table th { text-align: left; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); padding: 10px 8px; border-bottom: 2px solid rgba(20,42,67,0.1); }
.basic-cart-table td { padding: 14px 8px; border-bottom: 1px solid rgba(20,42,67,0.08); font-size: 14px; }
.link { font-weight: 800; font-size: 13.5px; color: var(--periwinkle); text-decoration: none; }
.dim { margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid rgba(20,42,67,0.1); }

.policy-block { margin-top: 44px; padding-top: 34px; border-top: 1px solid rgba(20,42,67,0.1); }
.policy-block:first-of-type { margin-top: 40px; padding-top: 34px; }
.policy-block h2 { font-weight: 600; font-size: 21px; color: var(--plum); margin: 0 0 14px; }
