/* === TOKENS === */
:root {
  --bg:           #fbf7f2;
  --bg2:          #f4ece0;
  --paper:        #fff;
  --ink:          #4a3728;
  --dim:          rgba(42,31,26,0.68);
  --faint:        rgba(42,31,26,0.48);
  --rule:         rgba(42,31,26,0.1);
  --card-b:       rgba(42,31,26,0.08);
  --accent:       #ec8a52;
  --accent2:      #d85d5a;
  --accent3:      #e8a64c;
  --btn:          #b04a7a;
  --btn-hover:    #9a3e6a;
  --gradient:     linear-gradient(135deg, #f6b84a 0%, #ec8a52 30%, #d85d5a 60%, #b84a7a 85%, #7a3a6a 100%);
  --gradient-soft:linear-gradient(135deg, rgba(246,184,74,0.18) 0%, rgba(236,138,82,0.14) 40%, rgba(216,93,90,0.14) 70%, rgba(184,74,122,0.1) 100%);
  --shadow-plum:  rgba(122,58,106,0.28);
  --font:         'Nunito', 'Avenir Next', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--ink); font-family: var(--font); font-size: 15px; line-height: 1.55; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, blockquote { margin: 0; }
p { margin: 0; }
hr { border: none; }

/* === LAYOUT === */
.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.section { padding: 80px 40px; }
.page-body { position: relative; z-index: 1; padding-top: 76px; }

/* === AMBIENT GLOWS === */
.ambient { position: fixed; border-radius: 50%; pointer-events: none; z-index: 0; }
.ambient-1 { top: -300px; right: -200px; width: 800px; height: 800px; background: radial-gradient(circle, rgba(236,138,82,0.22), transparent 60%); filter: blur(70px); }
.ambient-2 { top: 600px; left: -300px; width: 700px; height: 700px; background: radial-gradient(circle, rgba(184,74,122,0.18), transparent 65%); filter: blur(80px); }

/* === JKZ SITE BANNER === */
.jkz-site-banner {
  background: var(--gradient);
  border-radius: 18px;
  padding: 22px 40px;
  box-shadow: 0 8px 32px var(--shadow-plum);
}
.jkz-site-banner-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.jkz-site-banner-text {
  color: #fff; font-size: 17px; font-weight: 600; opacity: 0.95;
}
.jkz-site-banner-btn {
  background: #fff;
  color: var(--accent2);
  text-decoration: none;
  padding: 10px 24px;
  border-radius: 24px;
  font-size: 14px; font-weight: 700;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}
.jkz-site-banner-btn:hover { background: #e8f4fb; }

@media (max-width: 600px) {
  .jkz-site-banner { padding: 20px 20px; }
  .jkz-site-banner-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .jkz-site-banner-text { font-size: 15px; }
  .jkz-site-banner-btn { width: 100%; text-align: center; }
}

/* === NAV === */
.jkz-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .25s ease, box-shadow .25s ease;
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
}
.jkz-nav.scrolled {
  background: rgba(251,247,242,0.88);
  box-shadow: 0 1px 0 var(--rule), 0 10px 30px rgba(122,58,106,0.06);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 40px !important;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 17px; font-weight: 800; text-decoration: none;
  color: var(--ink); letter-spacing: -0.01em;
}
.nav-logo-img { width: 34px; height: 34px; border-radius: 8px; box-shadow: 0 4px 14px rgba(236,138,82,0.3); }
.nav-links { display: flex; gap: 26px; }
.nav-link {
  color: var(--ink); text-decoration: none; opacity: 0.72;
  font-weight: 600; font-size: 14px;
  transition: opacity .2s, color .2s;
}
.nav-link:hover { opacity: 1; }
.nav-link.active { opacity: 1; color: var(--accent2); }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; background: var(--btn); color: #fff;
  font-size: 14px; font-weight: 700; letter-spacing: 0.01em;
  border: none; border-radius: 999px; text-decoration: none;
  transition: transform .15s, box-shadow .2s, background .2s;
  box-shadow: 0 10px 28px var(--shadow-plum);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 36px var(--shadow-plum); background: var(--btn-hover); }
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-ghost {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--card-b); box-shadow: none;
}
.btn-ghost:hover { background: rgba(42,31,26,0.04); transform: none; box-shadow: none; }
.btn-white {
  background: #fff; color: var(--btn);
  box-shadow: 0 10px 28px rgba(0,0,0,0.1);
}
.btn-white:hover { background: #fff; color: var(--btn-hover); }

/* === UTILITIES === */
.rule { height: 1px; background: var(--rule); }
.rule-indented { margin: 0 40px; }
.kicker { font-size: 12px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--faint); }
.grad-text { background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.body-text { font-size: 16px; line-height: 1.75; color: var(--dim); }
.section-heading { font-size: 50px; line-height: 1.05; letter-spacing: -0.025em; font-weight: 800; }
.section-heading-lg { font-size: 50px; line-height: 1; letter-spacing: -0.02em; font-weight: 800; }
.display-heading { font-size: 60px; line-height: 0.98; letter-spacing: -0.025em; font-weight: 800; max-width: 820px; }

/* === STORE BADGES === */
.store-badges { display: flex; gap: 8px; margin-top: 16px; flex-wrap: wrap; align-items: center; }
.store-badges-center { justify-content: center; margin-top: 40px; }
.store-badge-img { display: inline-flex; transition: transform .15s; }
.store-badge-img:hover { transform: translateY(-2px); }
.badge-official { width: 203px; height: 69px; display: block; }
.badge-official-gp { border-radius: 10px; box-shadow: 0 0 0 1.5px #b0b0b0, inset 0 0 0 1px rgba(255,255,255,0.15); }

/* === HERO === */
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-areas: "text portrait" "cta portrait";
  gap: 40px 60px;
  align-items: start;
  padding-top: 60px; padding-bottom: 100px;
}
.hero-text { grid-area: text; }
.hero-portrait { grid-area: portrait; }
.hero-cta { grid-area: cta; }
.hero-heading { font-size: clamp(48px, 6vw, 82px); line-height: 1.02; letter-spacing: -0.03em; font-weight: 800; }
.hero-italic { font-style: italic; font-weight: 400; opacity: 0.7; }
.hero-body { max-width: 480px; font-size: 20px; line-height: 1.65; margin-top: 32px; color: var(--dim); font-weight: 500; }
.hero-body-mobile { display: none; }
.hero-meta { display: flex; gap: 24px; margin-top: 28px; font-size: 13px; color: var(--faint); font-weight: 600; align-items: center; }
.hero-stars { color: var(--accent3); }
.hero-meta-sep { opacity: 0.4; }

.hero-portrait {
  position: relative; aspect-ratio: 4/5; border-radius: 28px; overflow: hidden;
  background: var(--gradient); box-shadow: 0 40px 80px var(--shadow-plum);
}
.hero-portrait-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-portrait-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(42,31,26,0.55)); }
.hero-portrait-footer {
  position: absolute; bottom: 20px; left: 24px; right: 24px;
  display: flex; justify-content: space-between; align-items: flex-end; color: #fff;
}
.hero-now-label { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.85; font-weight: 700; }
.hero-now-title { font-size: 17px; font-weight: 700; margin-top: 4px; }
.hero-play-btn {
  width: 46px; height: 46px; border-radius: 23px;
  background: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(10px);
}
.hero-dot { position: absolute; top: 20px; right: 20px; width: 12px; height: 12px; border-radius: 6px; background: #fff; box-shadow: 0 0 20px #fff; }

/* === STATS === */
.stats-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  padding-top: 20px; padding-bottom: 80px;
}
.stat-card { padding: 28px; background: var(--paper); border: 1px solid var(--card-b); border-radius: 24px; }
.stat-num { font-size: 64px; line-height: 1; letter-spacing: -0.02em; font-weight: 800; }
.stat-label { font-size: 14px; color: var(--dim); margin-top: 12px; font-weight: 500; }

/* === QUOTE === */
.quote-section { padding-top: 60px; padding-bottom: 100px; text-align: center; }
.quote-mark { font-size: 72px; line-height: 0.4; font-weight: 800; }
.quote-text { font-size: clamp(28px, 4vw, 44px); line-height: 1.25; letter-spacing: -0.015em; margin-top: 16px; max-width: 980px; margin-inline: auto; font-weight: 500; color: var(--ink); }
.quote-section .kicker { margin-top: 32px; }

/* === ABOUT === */
.about-grid {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px;
  align-items: center; padding-top: 100px; padding-bottom: 100px;
}
.about-portrait {
  aspect-ratio: 3/4; border-radius: 28px; background: var(--gradient);
  position: relative; overflow: hidden; box-shadow: 0 30px 60px rgba(122,58,106,0.28);
}
.about-portrait-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.about-portrait-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(42,31,26,0.5)); }
.about-portrait-label { position: absolute; bottom: 20px; left: 24px; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700; color: #fff; }
.about-text .section-heading { margin-bottom: 28px; }
.about-text .body-text + .body-text { margin-top: 16px; }
.about-text .btn-ghost { margin-top: 20px; }

/* === BOOKS === */
.books-section { border-top: 1px solid var(--rule); padding-top: 80px; padding-bottom: 100px; }
.books-header { margin-bottom: 48px; margin-top: 20px; }
.books-header .section-body { font-size: 17px; color: var(--dim); margin-top: 20px; max-width: 620px; line-height: 1.6; }
.books-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.book-card { border-radius: 24px; background: var(--paper); border: 1px solid var(--card-b); padding: 28px; display: flex; flex-direction: column; }
.book-cover {
  aspect-ratio: 2/3; border-radius: 14px; position: relative; overflow: hidden; background: #eee;
}
.book-cover-img { width: 100%; height: 100%; object-fit: cover; display: block; box-shadow: inset 0 0 0 1px rgba(42,31,26,0.12); border-radius: 14px; }
.book-cover-shine { position: absolute; inset: 0; background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.25), transparent 55%); }
.book-spine { position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: rgba(0,0,0,0.2); }
.book-cover-inner { position: absolute; inset: 0; padding: 22px; display: flex; flex-direction: column; justify-content: space-between; color: #fff; }
.book-author { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; opacity: 0.88; font-weight: 800; }
.book-title-cover { font-size: 22px; line-height: 1.1; font-weight: 800; letter-spacing: -0.01em; }
.book-rule { width: 32px; height: 2px; background: rgba(255,255,255,0.6); margin: 14px 0; }
.book-placeholder { font-size: 10px; letter-spacing: 0.1em; opacity: 0.85; font-weight: 600; }
.book-info { margin-top: 20px; display: flex; flex-direction: column; flex: 1; }
.book-title { font-size: 20px; font-weight: 700; letter-spacing: -0.01em; }
.book-sub { font-size: 13px; color: var(--dim); margin-top: 6px; line-height: 1.5; }
.book-actions { display: flex; gap: 10px; margin-top: auto; padding-top: 18px; }

/* === LIVE === */
.live-section { border-top: 1px solid var(--rule); padding-top: 80px; padding-bottom: 100px; }
.live-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.live-left { display: flex; flex-direction: column; gap: 20px; }
.live-left .display-heading { margin-top: 0; }
.live-left .section-body { font-size: 17px; color: var(--dim); margin-top: 0; max-width: 520px; line-height: 1.6; }
.live-right { display: flex; flex-direction: column; gap: 20px; }

.live-next-card {
  padding: 32px; border-radius: 24px; background: var(--gradient); color: #fff;
  position: relative; overflow: hidden; box-shadow: 0 20px 50px rgba(216,93,90,0.25);
}
.live-card-glow {
  position: absolute; top: -100px; right: -100px;
  width: 320px; height: 320px; border-radius: 160px;
  background: radial-gradient(circle, rgba(246,184,74,0.4), transparent 65%);
  pointer-events: none;
}
.live-card-content { position: relative; }
.live-label { font-size: 12px; opacity: 0.9; margin-bottom: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.live-date { font-size: 32px; font-weight: 800; letter-spacing: -0.015em; line-height: 1.1; }
.live-timezones { font-size: 14px; font-weight: 700; opacity: 0.75; margin-top: 8px; line-height: 1.5; letter-spacing: 0.01em; }
.live-note { font-size: 17px; opacity: 0.9; margin-top: 10px; line-height: 1.5; }
.live-next-card .btn-white { margin-top: 24px; }

.live-calendar-card { padding: 32px; border-radius: 24px; background: var(--paper); border: 1px solid var(--card-b); }
.calendar-label { font-size: 12px; color: var(--faint); margin-bottom: 16px; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; }
.calendar-dates { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.calendar-date { padding: 16px 8px; border-radius: 14px; background: var(--bg2); text-align: center; font-size: 15px; font-weight: 700; color: var(--ink); display: flex; flex-direction: column; gap: 4px; }
.calendar-date-time { font-size: 11px; font-weight: 500; color: var(--faint); }

/* === TEAM === */
.team-section { padding-top: 80px; padding-bottom: 100px; }
.team-header {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px;
  align-items: end; margin-bottom: 48px;
}
.team-body { font-size: 16px; color: var(--dim); line-height: 1.7; }
.team-bullets { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 40px; max-width: 820px; }
.bullet-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 18px 22px; background: var(--paper); border: 1px solid var(--card-b); border-radius: 16px;
}
.bullet-check {
  width: 24px; height: 24px; border-radius: 12px; background: var(--gradient);
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 12px; font-weight: 800;
}
.bullet-text { font-size: 15px; font-weight: 600; line-height: 1.45; }

/* === GIFT === */
.gift-section { padding-top: 40px; padding-bottom: 100px; }
.gift-box { padding: 60px; border-radius: 32px; background: var(--gradient-soft); border: 1px solid var(--card-b); }
.gift-header { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-bottom: 40px; }
.gift-heading { font-size: 56px; }
.gift-body { font-size: 16px; color: var(--dim); line-height: 1.75; padding-top: 10px; }
.gift-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.gift-card { padding: 28px; border-radius: 24px; background: var(--paper); border: 1px solid var(--card-b); position: relative; overflow: hidden; }
.gift-card-featured { border-color: transparent; box-shadow: 0 20px 50px rgba(216,93,90,0.18); }
.gift-card-border {
  position: absolute; inset: 0; border-radius: 24px; padding: 2px;
  background: var(--gradient);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}

.gift-card-visual { aspect-ratio: 1.6/1; border-radius: 16px; position: relative; overflow: hidden; margin-bottom: 20px; }
.gift-visual-shine { position: absolute; inset: 0; background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.3), transparent 55%); }
.gift-visual-top {
  position: absolute; top: 16px; left: 18px; right: 18px;
  display: flex; justify-content: space-between; color: #fff;
  font-size: 10px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.95;
}
.gift-visual-bottom { position: absolute; bottom: 16px; left: 18px; color: #fff; }
.gift-valid-label { font-size: 11px; opacity: 0.85; letter-spacing: 0.1em; }
.gift-duration { font-size: 22px; font-weight: 800; }
.gift-heart {
  position: absolute; bottom: 16px; right: 18px;
  width: 34px; height: 34px; border-radius: 17px;
  background: rgba(255,255,255,0.25); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: 16px;
}
.gift-card-footer { display: flex; justify-content: space-between; align-items: baseline; }
.gift-duration-label { font-size: 22px; font-weight: 800; }
.gift-price { font-size: 28px; font-weight: 800; letter-spacing: -0.02em; }
.gift-email-note { font-size: 13px; color: var(--dim); margin-top: 4px; }
.gift-btn { margin-top: 20px; width: 100%; justify-content: center; }

/* === TESTIMONIALS === */
.testimonials-section { padding-top: 40px; padding-bottom: 100px; }
.testimonials-header { text-align: center; margin-bottom: 48px; }
.testimonials-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 20px; }
.testimonial-card { padding: 28px; border-radius: 24px; background: var(--paper); border: 1px solid var(--card-b); }
.stars { color: var(--accent3); font-size: 16px; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-text { font-size: 16px; line-height: 1.55; font-weight: 500; }
.testimonial-card-large .testimonial-text { font-size: 17px; }
.testimonial-by { font-size: 12px; color: var(--dim); margin-top: 22px; font-weight: 700; letter-spacing: 0.05em; }

/* === FINAL CTA === */
.cta-section { padding-top: 40px; padding-bottom: 120px; text-align: center; }
.cta-heading { font-size: clamp(56px, 7vw, 82px); line-height: 0.95; letter-spacing: -0.035em; font-weight: 800; }
.cta-body { font-size: 17px; color: var(--dim); max-width: 480px; margin-inline: auto; margin-top: 20px; }

/* Phones showcase */
.phones-showcase {
  position: relative; margin: 64px auto 0; max-width: 1100px; height: 700px;
}
.phones-glow {
  position: absolute; inset: 20% 5% -5% 5%; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(236,138,82,0.22), transparent 65%);
  filter: blur(40px);
}
.phone {
  position: absolute;
  border-radius: 48px; background: #1a1a1a; padding: 10px;
  box-shadow: 0 24px 56px rgba(0,0,0,0.22), 0 0 0 2px #2a2a2a inset;
}
.phone-inner { width: 100%; height: 100%; border-radius: 38px; overflow: hidden; background: #fff; position: relative; }
.phone-screen { position: absolute; top: 0; left: 50%; transform: translateX(-50%); height: 100%; width: auto; max-width: none; }
.phone-notch { position: absolute; top: 18px; left: 50%; transform: translateX(-50%); width: 90px; height: 22px; border-radius: 14px; background: #000; z-index: 2; }

.phone-left  { width: 260px; height: 540px; left: 4%; top: 40px; z-index: 1; }
.phone-right { width: 260px; height: 540px; right: 4%; top: 40px; z-index: 1; }
.phone-center {
  width: 280px; height: 580px;
  left: 50%; top: 0; transform: translateX(-50%); z-index: 2;
  box-shadow: 0 40px 80px rgba(0,0,0,0.28), 0 0 0 2px #2a2a2a inset;
}

/* === FOOTER === */
.footer { padding-top: 56px; padding-bottom: 40px; border-top: 1px solid var(--rule); }
.footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 40px; margin-bottom: 48px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; font-size: 15px; font-weight: 800; }
.footer-logo-dot { width: 24px; height: 24px; border-radius: 12px; background: var(--gradient); flex-shrink: 0; }
.footer-tag { font-size: 18px; line-height: 1.4; max-width: 360px; color: var(--dim); font-weight: 500; }
.footer-col-head { font-size: 12px; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; color: var(--faint); margin-bottom: 16px; }
.footer-link { font-size: 14px; padding: 6px 0; color: var(--dim); font-weight: 500; }
.footer-bottom {
  display: flex; justify-content: space-between;
  padding-top: 24px; border-top: 1px solid var(--rule);
  font-size: 12px; color: var(--faint);
}

/* === OUR STORY === */
.our-story-section { padding-top: 80px; padding-bottom: 80px; border-top: 1px solid var(--rule); }
.our-story-header { margin-bottom: 48px; }
.our-story-header .section-body { margin-top: 16px; max-width: 600px; font-size: 17px; color: var(--dim); line-height: 1.6; }
.our-story-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.story-card { display: flex; flex-direction: column; }
.story-photo-wrap { width: 100%; aspect-ratio: 1/1; border-radius: 20px; overflow: hidden; margin-bottom: 20px; background: var(--bg2); }
.story-photo { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.story-name { font-size: 20px; font-weight: 800; letter-spacing: -0.01em; }
.story-role { font-size: 13px; color: var(--accent); font-weight: 700; margin-top: 4px; margin-bottom: 12px; }
.story-bio { font-size: 14px; color: var(--dim); line-height: 1.65; }

/* === QUOTE SLIDER === */
.quote-slider { position: relative; min-height: 100px; }
.quote-slide { display: none; }
.quote-slide.active { display: block; animation: quoteFade 0.7s ease; }
@keyframes quoteFade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.quote-dots { display: flex; gap: 8px; justify-content: center; margin-top: 28px; }
.quote-dot {
  width: 8px; height: 8px; border-radius: 4px; background: var(--rule);
  cursor: pointer; transition: background 0.3s, width 0.3s;
}
.quote-dot.active { background: var(--accent2); width: 24px; }

/* === GRADIENT TEXT ANIMATION === */
.grad-text-animate {
  background: linear-gradient(135deg, #f6b84a, #ec8a52, #d85d5a, #b84a7a, #7a3a6a, #d85d5a, #ec8a52, #f6b84a);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: sunset-flow 4s ease infinite;
}
@keyframes sunset-flow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* === ANIMATIONS === */
@keyframes breathe {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50%       { transform: scale(1.1); opacity: 1; }
}
.breathe { animation: breathe 7s ease-in-out infinite; }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid .testimonial-card-large { grid-column: 1 / -1; }
  .books-grid { grid-template-columns: 1fr 1fr; }
  .our-story-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  /* Layout */
  .container { padding: 0 20px; }
  .section { padding: 60px 20px; }

  /* Nav */
  .nav-inner { padding: 16px 20px !important; }
  .nav-links { display: none; }

  /* Typography */
  .section-heading { font-size: 34px; }
  .section-heading-lg { font-size: 34px; }
  .display-heading { font-size: 40px; }
  .cta-heading { font-size: clamp(38px, 10vw, 56px); }
  .quote-text { font-size: clamp(22px, 6vw, 34px); }
  .stat-num { font-size: 48px; }

  /* Hero */
  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "text" "portrait" "cta";
    gap: 32px;
    padding-top: 32px; padding-bottom: 60px;
  }
  .hero-heading { font-size: clamp(40px, 10vw, 60px); }
  .hero-portrait { width: 100%; height: 420px; max-width: none; margin: 0; }
  .hero-body { font-size: 16px; }
  .hero-body-desktop { display: none; }
  .hero-body-mobile { display: block; margin-top: 0; }
  .hero-cta .store-badges { flex-direction: row; flex-wrap: wrap; gap: 8px; }

  /* Stats */
  .stats-grid { grid-template-columns: 1fr; gap: 12px; padding-bottom: 60px; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 40px; padding-top: 60px; padding-bottom: 60px; }
  .about-portrait { width: 100%; height: 420px; max-width: none; margin: 0; }

  /* Hero portrait mobile fix */
  .hero-portrait { width: 100%; height: 420px; max-width: none; margin: 0; }

  /* Books */
  .books-grid { grid-template-columns: 1fr; }

  /* Live */
  .live-grid { grid-template-columns: 1fr; }
  .live-left .section-body { max-width: 100%; }

  /* Team */
  .team-header { grid-template-columns: 1fr; gap: 24px; }
  .team-bullets { grid-template-columns: 1fr; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-grid .testimonial-card-large { grid-column: auto; }

  /* Our Story */
  .our-story-grid { grid-template-columns: 1fr; }

  /* Phones showcase */
  .phones-showcase { height: 520px; }
  .phone-left, .phone-right { display: none; }
  .phone-center { width: 240px; height: 500px; top: 10px; }

  /* Store badges */
  .store-badges { flex-direction: column; align-items: flex-start; }
  .store-badges.store-badges-center { align-items: center; }
  .badge-official { width: 163px; height: 57px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* Sections spacing */
  .books-section, .live-section { padding-top: 60px; padding-bottom: 60px; }
  .our-story-section { padding-top: 60px; padding-bottom: 60px; }
  .testimonials-section { padding-bottom: 60px; }
  .cta-section { padding-bottom: 80px; }
}

.site-footer { text-align: center; padding: 24px 16px; font-size: 13px; color: #999; }
