/* =========================================================
   HE RESTORES â€” Denise C. Herndon Harvey
   Cinematic Author/Book Website â€” Light Editorial Theme
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400;1,9..144,500&family=Public+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* ---- Palette : warm cream editorial ---- */
  --cream: #F7F1E3;
  --cream-soft: #FBF8F0;
  --cream-deep: #EEE2C4;
  --paper: #FDFBF4;
  --sand-line: #DDCEA6;

  --ink: #221B12;
  --ink-soft: #4A4033;
  --ink-dim: #8A7E68;

  --gold: #A9762F;
  --gold-deep: #7C5620;
  --gold-pale: #D9B876;

  --burgundy: #7C2E3A;
  --burgundy-pale: #F3E3E1;
  --sage: #5C6B49;
  --sage-pale: #E9EDDC;
  --sand-pale: #EFE0C4;
  --clay-pale: #F1E1CC;
  --terracotta: #A85736;
  --terracotta-deep: #7A3D22;

  --dusk: #221A12;
  --dusk-2: #2C2116;
  --dusk-text: #F3EAD9;
  --dusk-line: rgba(243, 234, 217, 0.16);

  --line: rgba(34, 27, 18, 0.14);
  --line-soft: rgba(34, 27, 18, 0.08);

  /* ---- Type ---- */
  --f-display: 'Fraunces', 'Georgia', serif;
  --f-body: 'Public Sans', -apple-system, sans-serif;

  --container: 1280px;
  --gutter: clamp(24px, 5vw, 80px);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: var(--cream);
  overflow-x: hidden;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

button {
  font-family: inherit;
  cursor: pointer;
}

input,
textarea,
select {
  font-family: inherit;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--f-display);
  font-weight: 500;
  line-height: 1.08;
  margin: 0;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.eyebrow {
  font-family: var(--f-body);
  font-size: 12.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.eyebrow.on-dark {
  color: var(--gold-pale);
}

.eyebrow.on-dark::before {
  background: var(--gold-pale);
}

.split-word,
.split-line {
  overflow: hidden;
}

/* ---- Grain overlay (very subtle on light bg) ---- */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---- Custom Cursor ---- */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-deep);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity .3s;
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--gold-deep);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .35s var(--ease-out), height .35s var(--ease-out), opacity .3s, border-color .3s, background .3s;
  mix-blend-mode: normal;
}

.cursor-ring.hovered {
  width: 64px;
  height: 64px;
  border-color: var(--gold-deep);
  background: rgba(169, 118, 47, 0.08);
}

.cursor-ring.on-dark {
  border-color: var(--gold-pale);
}

@media (hover:none),
(pointer:coarse) {

  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}

/* ---- Preloader ---- */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--dusk);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

#preloader .pl-word {
  font-family: var(--f-display);
  font-size: clamp(32px, 7vw, 80px);
  color: var(--dusk-text);
  letter-spacing: 0.01em;
  display: flex;
  gap: 0.3em;
}

#preloader .pl-word span.char {
  display: inline-block;
  opacity: 0.08;
}

#preloader .pl-bar-wrap {
  margin-top: 34px;
  width: min(280px, 55vw);
  height: 1px;
  background: var(--dusk-line);
  position: relative;
  overflow: hidden;
}

#preloader .pl-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0%;
  background: var(--gold-pale);
}

#preloader .pl-pct {
  margin-top: 16px;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gold-pale);
  text-transform: uppercase;
  opacity: 0.7;
}

#pl-curtain-l,
#pl-curtain-r {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 50%;
  background: var(--dusk);
  z-index: 9999;
}

#pl-curtain-l {
  left: 0;
}

#pl-curtain-r {
  right: 0;
}

/* ---- Header / Nav ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 30px 0;
  transition: padding .4s var(--ease-out), background .4s var(--ease-out), border-color .4s;
  mix-blend-mode: normal;
}

.site-header.scrolled {
  padding: 16px 0;
  background: rgba(247, 241, 227, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.site-header.nav-open {
  background: transparent;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-family: var(--f-display);
  font-size: 21px;
  letter-spacing: 0.01em;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  position: relative;
  z-index: 620;
  transition: color .4s;
}

.brand small {
  font-family: var(--f-body);
  font-size: 9.5px;
  letter-spacing: 0.3em;
  color: var(--gold-deep);
  text-transform: uppercase;
  margin-top: 4px;
  font-weight: 700;
}

.site-header.nav-open .brand {
  color: var(--dusk-text);
}

.site-header.nav-open .brand small {
  color: var(--gold-pale);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid var(--ink);
  color: var(--cream);
  background: var(--ink);
  position: relative;
  overflow: hidden;
  transition: color .4s var(--ease-out);
}

.btn span {
  position: relative;
  z-index: 2;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease-out);
  z-index: 1;
}

.btn:hover::before {
  transform: scaleX(1);
}

.btn:hover {
  color: var(--ink);
  border-color: var(--gold);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

.btn-ghost::before {
  background: var(--ink);
}

.btn-ghost:hover {
  color: var(--cream);
}

.btn-lg {
  padding: 20px 42px;
  font-size: 13px;
}

.btn-on-dark {
  border-color: var(--gold-pale);
  color: var(--dusk);
  background: var(--gold-pale);
}

.btn-on-dark::before {
  background: var(--dusk-text);
}

.btn-on-dark:hover {
  color: var(--dusk);
}

.btn-ghost-on-dark {
  background: transparent;
  color: var(--dusk-text);
  border-color: var(--dusk-line);
}

.btn-ghost-on-dark::before {
  background: var(--gold-pale);
}

.btn-ghost-on-dark:hover {
  color: var(--dusk);
  border-color: var(--gold-pale);
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
  padding-bottom: 6px;
  font-weight: 600;
}

.btn-text i {
  color: var(--gold-deep);
  transition: transform .3s var(--ease-out);
}

.btn-text:hover i {
  transform: translateX(5px);
}

.nav-toggle-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  background: none;
  border: none;
  color: var(--ink);
  position: relative;
  z-index: 620;
}

.site-header.nav-open .nav-toggle-btn {
  color: var(--dusk-text);
}

.nav-toggle-btn .ntxt {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}

.hamburger {
  display: block;
  width: 26px;
  height: 18px;
  position: relative;
}

.hamburger span {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: currentColor;
  transition: transform .35s var(--ease-out), opacity .3s;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 8px;
}

.hamburger span:nth-child(3) {
  top: 16px;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ---- Mega Nav Overlay (Awwwards style) ---- */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--dusk);
  z-index: 480;
  clip-path: circle(2% at calc(100% - 46px) 46px);
  transition: clip-path .85s var(--ease-in-out);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  visibility: hidden;
}

.mobile-nav.open {
  clip-path: circle(150% at calc(100% - 46px) 46px);
  visibility: visible;
}

.mega-nav-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 130px var(--gutter) 40px;
  flex: 1;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 40px;
  align-items: center;
}

.mega-nav-links ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 44px;
}

.mega-nav-links ul li {
  overflow: hidden;
}

.mega-nav-links a {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-family: var(--f-display);
  font-size: clamp(16px, 1.7vw, 23px);
  color: var(--dusk-text);
  padding: 11px 0;
  border-bottom: 1px solid var(--dusk-line);
  font-weight: 400;
  transform: translateY(110%);
}

.mega-nav-links .nidx {
  font-family: var(--f-body);
  font-size: 11px;
  color: var(--gold-pale);
  letter-spacing: 0.08em;
  flex-shrink: 0;
}

.mega-nav-links a:hover {
  color: var(--gold-pale);
  font-style: italic;
  padding-left: 8px;
}

.mega-nav-links a:hover .nidx {
  color: var(--dusk-text);
}

.mega-nav-visual {
  position: relative;
  opacity: 0;
  display: flex;
  justify-content: center;
}

.mega-nav-visual img {
  width: min(200px, 90%);
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.45));
}

.mega-nav-footer {
  flex-shrink: 0;
  padding: 22px var(--gutter) 30px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  border-top: 1px solid var(--dusk-line);
  color: var(--dusk-text);
  opacity: 0.7;
  font-size: 13px;
}

.mega-nav-social {
  display: flex;
  gap: 16px;
}

.mega-nav-social a {
  color: var(--dusk-text);
}

@media(max-width: 900px) {
  .mega-nav-inner {
    grid-template-columns: 1fr;
    padding-top: 110px;
  }

  .mega-nav-visual {
    display: none;
  }
}

@media(max-width: 620px) {
  .mega-nav-links ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 4px 18px;
  }

  .mega-nav-links a {
    display: block;
    font-size: clamp(13px, 4.2vw, 17px);
    padding: 9px 0;
    line-height: 1.25;
  }

  .mega-nav-links .nidx {
    display: block;
    font-size: 9px;
    margin-bottom: 2px;
  }

  .mega-nav-inner {
    padding-top: 100px;
    padding-bottom: 20px;
  }

  .mega-nav-footer {
    padding: 16px var(--gutter) 22px;
    font-size: 11.5px;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media(max-width: 380px) {
  .mega-nav-links a {
    font-size: clamp(11.5px, 4vw, 14px);
    padding: 7px 0;
  }
}


/* ---- Sections / Generic ---- */
section {
  position: relative;
}

.section-pad {
  padding: 130px 0;
}

.section-pad-sm {
  padding: 80px 0;
}

@media(max-width: 780px) {
  .section-pad {
    padding: 90px 0;
  }

  .section-pad-sm {
    padding: 56px 0;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(46px);
}

.reveal-fade {
  opacity: 0;
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
}

.divider {
  width: 100%;
  height: 1px;
  background: var(--line);
}

.label-num {
  font-family: var(--f-display);
  font-style: italic;
  color: var(--gold-deep);
  font-size: 15px;
}

.btn-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

/* ---- Footer ---- */
.site-footer {
  background: var(--dusk);
  color: var(--dusk-text);
  padding: 90px 0 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 70px;
}

.footer-brand .brand {
  margin-bottom: 18px;
  color: var(--dusk-text);
  z-index: 1;
}

.footer-brand .brand small {
  color: var(--gold-pale);
}

.footer-brand p {
  color: var(--dusk-text);
  opacity: 0.65;
  font-size: 14.5px;
  max-width: 320px;
}

.footer-col h5 {
  font-family: var(--f-body);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-pale);
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col a {
  color: var(--dusk-text);
  opacity: 0.7;
  font-size: 14.5px;
  transition: opacity .3s, color .3s;
}

.footer-col a:hover {
  opacity: 1;
  color: var(--gold-pale);
}

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid var(--dusk-line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  opacity: 0.8;
  transition: border-color .3s, color .3s;
}

.footer-social a:hover {
  border-color: var(--gold-pale);
  color: var(--gold-pale);
  opacity: 1;
}

.footer-bottom {
  padding-top: 26px;
  border-top: 1px solid var(--dusk-line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  opacity: 0.55;
  letter-spacing: 0.03em;
}

@media(max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    row-gap: 40px;
  }
}

@media(max-width: 560px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
}

/* ---- Utility ---- */
.text-gold {
  color: var(--gold-deep);
}

.text-dim {
  color: var(--ink-dim);
}

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

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.max-w-sm {
  max-width: 560px;
}

.max-w-md {
  max-width: 760px;
}

.mt-8 {
  margin-top: 8px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-32 {
  margin-top: 32px;
}

.mt-48 {
  margin-top: 48px;
}

.mt-64 {
  margin-top: 64px;
}

/* ---- Page Header (inner pages) â€” bordered framed panel, not full-bleed crop ---- */
.page-hero {
  padding-top: 170px;
  padding-bottom: 70px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: -4%;
  width: 52%;
  height: 100%;
  background: var(--cream-deep);
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
}

.page-hero::after {
  content: '';
  position: absolute;
  top: 10%;
  right: 8%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(169, 118, 47, 0.16), rgba(169, 118, 47, 0) 70%);
  border-radius: 50%;
  filter: blur(10px);
  z-index: 0;
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.page-hero .ph-copy {
  order: 1;
}

.page-hero .ph-media {
  order: 2;
  position: relative;
}

.page-hero .ph-media .frame {
  position: relative;
  border: 1px solid var(--sand-line);
  background: var(--paper);
  aspect-ratio: 4/5;
  overflow: hidden;
  padding: 14px;
  box-shadow: 0 40px 70px -30px rgba(34, 27, 18, 0.22);
}

.page-hero .ph-media .frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero h1 {
  font-size: clamp(38px, 5.2vw, 70px);
  margin-top: 16px;
}

.page-hero .sub {
  color: var(--ink-dim);
  font-size: 16.5px;
  max-width: 480px;
  margin-top: 20px;
  line-height: 1.7;
}

.crumb {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.crumb a {
  color: var(--gold-deep);
}

@media(max-width: 900px) {
  .page-hero .container {
    grid-template-columns: 1fr;
  }

  .page-hero .ph-media {
    order: -1;
    max-width: 340px;
    margin: 0 auto 20px;
  }

  .page-hero::before {
    width: 100%;
    height: 56%;
    top: auto;
    bottom: 0;
    right: 0;
    clip-path: polygon(0 18%, 100% 0, 100% 100%, 0 100%);
  }

  .page-hero::after {
    display: none;
  }
}

/* =========================================================
   COMPONENT & SECTION STYLES
   ========================================================= */

/* ================= HERO (Home) â€” framed image, cream bg ================= */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background: var(--cream);
  padding-top: 130px;
  padding-bottom: 60px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: -4%;
  width: 52%;
  height: 100%;
  background: var(--cream-deep);
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
}

.hero-blob {
  position: absolute;
  top: 14%;
  right: 6%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(169, 118, 47, 0.20), rgba(169, 118, 47, 0) 70%);
  border-radius: 50%;
  filter: blur(10px);
  z-index: 0;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 60px;
  width: 100%;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-dim);
  font-weight: 700;
  margin-bottom: 22px;
}

.hero-kicker::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.hero-copy .eyebrow {
  margin-bottom: 26px;
}

.hero-copy h1 {
  font-size: clamp(42px, 6vw, 88px);
  color: var(--ink);
}

.hero-copy h1 em {
  font-style: italic;
  color: var(--gold-deep);
}

.hero-copy .sub {
  margin-top: 28px;
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--ink-soft);
  max-width: 460px;
  line-height: 1.7;
}

.hero-copy .btn-row {
  margin-top: 44px;
}

.hero-book {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1400px;
}

.hero-book .frame {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--sand-line);
  padding: 1rem;
  box-shadow: 0 40px 70px -30px rgba(34, 27, 18, 0.25);
}

.hero-book img {
  width: min(380px, 62vw);
  transform-style: preserve-3d;
  will-change: transform;
  display: block;
}

.hero-badge {
  position: absolute;
  top: -50px;
  right: 0;
  z-index: 4;
  width: 140px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--f-body);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1.25;
  transform: rotate(10deg);
  box-shadow: 0 14px 28px -8px rgba(124, 86, 32, 0.45);
}

.hero-badge img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
}

.scroll-cue {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.scroll-cue span {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.scroll-cue .line {
  width: 1px;
  height: 46px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}

.scroll-cue .line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  right: 0;
  height: 100%;
  background: var(--gold-deep);
  animation: scrollcue 2.1s ease-in-out infinite;
}

@keyframes scrollcue {
  0% {
    top: -100%;
  }

  60% {
    top: 100%;
  }

  100% {
    top: 100%;
  }
}

@media(max-width: 980px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .hero-book {
    order: -1;
    margin-bottom: 10px;
  }

  .hero-book img {
    width: 200px;
  }

  .hero::before {
    width: 100%;
    height: 56%;
    top: auto;
    bottom: 0;
    right: 0;
    clip-path: polygon(0 18%, 100% 0, 100% 100%, 0 100%);
  }

  .hero-blob {
    display: none;
  }

  .hero-badge {
    width: 74px;
    height: 74px;
    font-size: 9px;
    top: -14px;
    right: -14px;
  }
}

/* ================= "Is This Book For You" â€” sand tint ================= */
.for-you {
  background: var(--sand-pale);
}

.for-you .head {
  max-width: 640px;
}

.for-you h2 {
  font-size: clamp(34px, 4.6vw, 58px);
  margin-top: 20px;
}

.qgrid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgb(0 0 0 / 5%);
  /* border: 1px solid var(--line); */
}

.qgrid .qitem {
  background: var(--sand-pale);
  padding: 44px clamp(20px, 3vw, 48px);
  display: flex;
  gap: 24px;
  align-items: center;
  transition: background .3s;
}

.qgrid .qitem:hover {
  /* background: var(--cream-soft); */
}

.qitem .qn {
  font-family: var(--f-display);
  font-style: italic;
  color: var(--terracotta);
  font-size: 26px;
  flex-shrink: 0;
}

.qitem p {
  font-size: 19px;
  color: var(--ink);
  font-family: var(--f-display);
  font-weight: 400;
  line-height: 1.4;
  margin: 0;
}

.for-you-cta {
  margin-top: 60px;
  text-align: center;
}

.for-you-cta p {
  font-family: var(--f-display);
  font-style: italic;
  color: var(--gold-deep);
  font-size: clamp(22px, 3vw, 32px);
}

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

/* ================= JOURNEY TIMELINE â€” paper bg ================= */
.journey {
  background: var(--paper);
  overflow: hidden;
}

.journey .head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 90px;
}

.journey h2 {
  font-size: clamp(34px, 4.6vw, 58px);
  margin-top: 20px;
}

.journey-track {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  padding-left: 46px;
}

.journey-line {
  position: absolute;
  left: 10px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: var(--line);
}

.journey-line-fill {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, var(--gold), var(--gold-deep));
  transform-origin: top;
}

.journey-step {
  position: relative;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
}

.journey-step:last-child {
  border-bottom: none;
}

.journey-dot {
  position: absolute;
  left: -46px;
  top: 46px;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
}

.journey-dot::after {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--line);
  transition: background .4s;
}

.journey-step.is-active .journey-dot {
  border-color: var(--gold-deep);
}

.journey-step.is-active .journey-dot::after {
  background: var(--gold-deep);
}

.journey-step .jnum {
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--gold-deep);
  text-transform: uppercase;
  font-weight: 700;
}

.journey-step h3 {
  font-size: clamp(28px, 4vw, 44px);
  margin-top: 10px;
  color: var(--ink-dim);
  transition: color .4s;
}

.journey-step.is-active h3 {
  color: var(--ink);
  font-style: italic;
}

.journey-step p {
  margin-top: 12px;
  color: var(--ink-dim);
  max-width: 480px;
  font-size: 15.5px;
}

/* ================= Inside the Story â€” deep cream, framed cards ================= */
.inside {
  background: var(--cream-deep);
}

.inside .head {
  max-width: 640px;
}

.inside h2 {
  font-size: clamp(34px, 4.6vw, 58px);
  margin-top: 20px;
}

.theme-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.theme-card {
  background: var(--paper);
  border: 1px solid var(--sand-line);
  padding: 26px 22px 30px;
  display: flex;
  flex-direction: column;
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
}

.theme-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 40px -20px rgba(34, 27, 18, 0.25);
}

.theme-card .timg {
  aspect-ratio: 3/4;
  overflow: hidden;
  margin-bottom: 20px;
  background: var(--cream-deep);
}

.theme-card .timg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.theme-card .tnum {
  font-family: var(--f-display);
  font-style: italic;
  color: var(--gold-deep);
  font-size: 14px;
}

.theme-card h4 {
  font-size: 24px;
  margin-top: 10px;
}

.theme-card p {
  font-size: 13.5px;
  color: var(--ink-dim);
  margin-top: 8px;
}

@media(max-width: 1000px) {
  .theme-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ================= Characters â€” Swiper (Awwwards drag slider) ================= */
.characters-strip {
  background: var(--cream);
}

.char-swiper {
  margin-top: 60px;
  padding-bottom: 10px !important;
  overflow: visible !important;
}

.char-swiper .swiper-slide {
  width: clamp(240px, 27vw, 300px);
  height: auto;
}

.char-card {
  border: 1px solid var(--sand-line);
  background: var(--paper);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.char-card .cimg {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--cream-deep);
}

.char-card .cimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-out);
}

.char-card:hover .cimg img {
  transform: scale(1.04);
}

.char-card .cbody {
  padding: 24px;
  flex: 1;
}

.char-card h4 {
  font-size: 20px;
}

.char-card .role {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 6px;
  font-weight: 700;
}

.char-card blockquote {
  font-family: var(--f-display);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 14.5px;
  margin-top: 14px;
  line-height: 1.5;
}

.swiper-nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 34px;
}

.swiper-arrows {
  display: flex;
  gap: 12px;
}

.sw-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: background .3s, color .3s;
}

.sw-btn:hover {
  background: var(--ink);
  color: var(--cream);
}

.sw-btn.swiper-button-disabled {
  opacity: 0.3;
  pointer-events: none;
}

.swiper-progress {
  flex: 1;
  max-width: 220px;
  height: 1px;
  background: var(--line);
  margin: 0 30px;
  position: relative;
  overflow: hidden;
}

.swiper-progress .bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0%;
  background: var(--gold-deep);
}

/* ================= Reviews â€” Swiper, burgundy tint ================= */
.reviews {
  background: var(--clay-pale);
}

.review-swiper {
  margin-top: 60px;
  padding-bottom: 10px !important;
  overflow: visible !important;
}

.review-swiper .swiper-slide {
  width: 380px;
  height: auto;
}

.review-card {
  border: 1px solid rgba(122, 61, 34, 0.22);
  padding: 38px;
  background: var(--paper);
  height: 100%;
}

.review-card .stars {
  color: var(--terracotta-deep);
  letter-spacing: 3px;
  font-size: 14px;
}

.review-card p {
  font-family: var(--f-display);
  font-size: 18px;
  color: var(--ink);
  margin-top: 18px;
  line-height: 1.5;
}

.review-card .who {
  margin-top: 24px;
  font-size: 13px;
  color: var(--ink-dim);
  letter-spacing: 0.04em;
}

.review-card .who b {
  color: var(--terracotta-deep);
  font-weight: 700;
}

/* ================= Podcast / Behind the Story â€” gold tint ================= */
.podcast {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-soft) 100%);
}

.podcast-feature {
  position: relative;
  border: 1px solid var(--sand-line);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  overflow: hidden;
  background: var(--paper);
}

.podcast-feature .pmedia {
  position: relative;
  aspect-ratio: 16/11;
  overflow: hidden;
  background: var(--cream-deep);
}

.podcast-feature .pmedia img,
.podcast-feature .pmedia video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.podcast-feature .pmedia::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(34, 27, 18, .45), transparent 45%);
  pointer-events: none;
}

.play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 78px;
  height: 78px;
  border-radius: 50%;
  border: 1px solid var(--gold-pale);
  background: rgba(34, 27, 18, 0.35);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-pale);
  font-size: 20px;
  transition: transform .35s var(--ease-out), background .3s;
}

.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.12);
  background: var(--gold-deep);
  color: var(--cream);
}

.podcast-feature .pcopy {
  padding: clamp(28px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.podcast-feature .ptag {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 700;
}

.podcast-feature h3 {
  font-size: clamp(24px, 3vw, 34px);
  margin-top: 14px;
}

.podcast-feature p {
  color: var(--ink-dim);
  margin-top: 14px;
  font-size: 14.5px;
}

@media(max-width:820px) {
  .podcast-feature {
    grid-template-columns: 1fr;
  }
}

/* ================= Gallery â€” Awwwards masonry, uncropped & robust ================= */
.gallery-section {
  background: var(--cream-deep);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-flow: dense;
  gap: 18px;
  margin-top: 60px;
}

.gallery-grid .gitem {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--paper);
  border: 1px solid var(--sand-line);
  aspect-ratio: 3/4;
}

.gallery-grid .gitem.wide {
  grid-column: span 2;
  aspect-ratio: 8/5;
}

.gallery-grid .gitem img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  display: block;
  will-change: transform;
}

.gallery-grid .gitem .gcap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 20px;
  background: linear-gradient(0deg, rgba(34, 27, 18, 0.82), transparent 90%);
  color: var(--dusk-text);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateY(100%);
  transition: transform .45s var(--ease-out);
  display: flex;
  align-items: center;
  gap: 10px;
}

.gallery-grid .gitem .gcap i {
  color: var(--gold-pale);
  font-size: 11px;
}

.gallery-grid .gitem:hover .gcap {
  transform: translateY(0);
}

@media(max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .gallery-grid .gitem.wide {
    grid-column: span 1;
    aspect-ratio: 4/5;
  }
}

/* ---- Gallery Lightbox ---- */
.img-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(20, 15, 10, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s var(--ease-out), visibility 0s linear .4s;
  padding: 40px;
}

.img-lightbox.open {
  opacity: 1;
  visibility: visible;
  transition: opacity .4s var(--ease-out), visibility 0s;
}

.img-lightbox .lb-inner {
  max-width: 880px;
  max-height: 84vh;
  position: relative;
  transform: scale(0.94);
  transition: transform .45s var(--ease-out);
}

.img-lightbox.open .lb-inner {
  transform: scale(1);
}

.img-lightbox img {
  max-width: 100%;
  max-height: 84vh;
  display: block;
  border: 1px solid var(--dusk-line);
}

.img-lightbox .lb-close {
  position: absolute;
  top: -46px;
  right: 0;
  color: var(--dusk-text);
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  cursor: pointer;
}

.img-lightbox .lb-close i {
  color: var(--gold-pale);
}

/* ================= Reflection / CTA band â€” dark contrast ================= */
.reflect {
  position: relative;
  overflow: hidden;
  padding: 160px 0;
  text-align: center;
  background: var(--dusk);
}

.reflect .bg-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.28;
}

.reflect .bg-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reflect .bg-layer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--dusk), rgba(34, 26, 18, 0.55) 40%, var(--dusk));
}

.reflect .container {
  position: relative;
  z-index: 2;
}

.reflect .eyebrow {
  justify-content: center;
}

.reflect h2 {
  font-size: clamp(32px, 5.4vw, 64px);
  max-width: 780px;
  margin: 26px auto 0;
  font-style: italic;
  color: var(--dusk-text);
}

.reflect .btn-row {
  justify-content: center;
  margin-top: 44px;
}

/* ================= About teaser (home) â€” cream-soft ================= */
.about-teaser {
  background: var(--cream-soft);
}

.about-teaser .grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.about-teaser .aimg {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--sand-line);
  padding: 16px;
}

.about-teaser .aimg img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top center;
}

.about-teaser h2 {
  font-size: clamp(28px, 3.6vw, 42px);
  margin-top: 18px;
}

.about-teaser p {
  color: var(--ink-dim);
  margin-top: 18px;
  max-width: 540px;
  font-size: 15.5px;
}

.about-teaser .tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.about-teaser .tags span {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  padding: 8px 14px;
  color: var(--ink-dim);
}

@media(max-width: 820px) {
  .about-teaser .grid {
    grid-template-columns: 1fr;
  }
}

/* ================= Generic Inner Page Sections ================= */
.pg-section {
  padding: 110px 0;
  background: var(--cream);
}

.pg-section.alt {
  background: var(--cream-soft);
}

.pg-section.deep {
  background: var(--cream-deep);
}

.pg-section.paper {
  background: var(--paper);
}

.pg-section.sage {
  background: var(--sand-pale);
}

.pg-section.burgundy {
  background: var(--clay-pale);
}

.pg-section+.pg-section {
  border-top: 1px solid var(--line);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

@media(max-width:900px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.editorial-img {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--sand-line);
  padding: 16px;
}

.editorial-img img {
  width: 100%;
  object-fit: cover;
}

.editorial-img.tall img {
  /* aspect-ratio: 4/5; */
}

.editorial-img.wide img {
  aspect-ratio: 16/10;
  object-fit: cover;
}

.prose p {
  color: var(--ink-dim);
  font-size: 16.5px;
  margin-top: 18px;
  line-height: 1.8;
}

.prose p:first-child {
  margin-top: 0;
}

.prose .lede {
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--ink);
  font-style: italic;
}

/* Character full profile card */
.char-full {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 50px;
  padding: 60px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.char-full:last-child {
  border-bottom: none;
}

.char-full .cf-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--cream-deep);
  border: 1px solid var(--sand-line);
  padding: 10px;
}

.char-full .cf-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.char-full h3 {
  font-size: clamp(28px, 3.4vw, 40px);
}

.char-full .role {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 8px;
  font-weight: 700;
}

.char-full blockquote {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 21px;
  color: var(--gold-deep);
  margin: 20px 0;
  line-height: 1.5;
}

.char-full .meta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-top: 22px;
}

.char-full .meta-row h5 {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 8px;
  font-weight: 700;
}

.char-full .meta-row p {
  font-size: 14.5px;
  color: var(--ink-dim);
  line-height: 1.6;
}

@media(max-width:780px) {
  .char-full {
    grid-template-columns: 1fr;
  }

  .char-full .meta-row {
    grid-template-columns: 1fr;
  }
}

/* Review page â€” masonry wall */
.review-wall {
  columns: 3 280px;
  column-gap: 24px;
  margin-top: 20px;
}

.review-wall .review-card {
  break-inside: avoid;
  margin-bottom: 24px;
  width: 100%;
}

@media(max-width:780px) {
  .review-wall {
    columns: 1;
  }
}

/* FAQ accordion */
.faq-list {
  border-top: 1px solid var(--line);
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 4px;
  cursor: pointer;
  gap: 20px;
}

.faq-q h4 {
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 400;
  color: var(--ink);
}

.faq-q .icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  position: relative;
}

.faq-q .icon::before,
.faq-q .icon::after {
  content: '';
  position: absolute;
  background: var(--gold-deep);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-q .icon::before {
  width: 14px;
  height: 1px;
}

.faq-q .icon::after {
  width: 1px;
  height: 14px;
  transition: transform .35s var(--ease-out);
}

.faq-item.open .faq-q .icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-a {
  height: 0;
  overflow: hidden;
}

.faq-a-inner {
  padding: 0 4px 30px;
  color: var(--ink-dim);
  font-size: 15px;
  max-width: 720px;
  line-height: 1.75;
}

/* Buy page */
.buy-hero {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
}

@media(max-width:900px) {
  .buy-hero {
    grid-template-columns: 1fr;
  }
}

.format-list {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
}

.format-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.format-row .fname {
  font-family: var(--f-display);
  font-size: 21px;
}

.format-row .fdesc {
  font-size: 13px;
  color: var(--ink-dim);
  margin-top: 4px;
}

.format-row .fprice {
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--gold-deep);
}

.retailer-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.retailer-row a {
  border: 1px solid var(--ink);
  padding: 13px 24px;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: border-color .3s, color .3s, background .3s;
}

.retailer-row a:hover {
  border-color: var(--gold-deep);
  background: var(--ink);
  color: var(--cream);
}

/* Journal / blog cards */
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

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

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

.journal-card {
  background: var(--paper);
  border: 1px solid var(--sand-line);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

.journal-card .jimg {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--cream-deep);
  margin-bottom: 1rem;
}

.journal-card .jimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-out);
}

.journal-card:hover .jimg img {
  transform: scale(1.06);
}

.journal-card .jbody {
  padding: 26px;
}

.journal-card .jmeta {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 700;
}

.journal-card h3 {
  font-size: 23px;
  margin-top: 12px;
}

.journal-card p {
  color: var(--ink-dim);
  font-size: 14.5px;
  margin-top: 10px;
}

.journal-card .readmore {
  margin-top: 16px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-deep);
  border-bottom: 1px solid var(--gold-pale);
  display: inline-block;
  padding-bottom: 3px;
  font-weight: 700;
}

/* Community */
.community-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}

@media(max-width:900px) {
  .community-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.community-grid .cimg {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--sand-line);
}

.community-grid .cimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testi-card {
  border: 1px solid var(--sand-line);
  padding: 32px;
  background: var(--paper);
}

.testi-card p {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
}

.testi-card .who {
  margin-top: 18px;
  font-size: 13px;
  color: var(--gold-deep);
  font-weight: 600;
}

/* Share your story â€” form */
.story-form {
  max-width: 720px;
  margin: 0 auto;
}

.form-row {
  margin-bottom: 26px;
}

.form-row label {
  display: block;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 10px;
  font-weight: 700;
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  background: var(--paper);
  border: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 16px;
  padding: 14px;
  transition: border-color .3s;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--gold-deep);
}

.form-row textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row.checks {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.check-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--ink-dim);
}

.check-pill input {
  width: auto;
  accent-color: var(--gold-deep);
}

.form-note {
  font-size: 12.5px;
  color: var(--ink-dim);
  margin-top: 20px;
  line-height: 1.6;
}

/* Small about page hero */
.about-page .stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 40px 0;
}

.about-page .stat-row .stat b {
  font-family: var(--f-display);
  font-size: 38px;
  color: var(--gold-deep);
  display: block;
}

.about-page .stat-row .stat span {
  font-size: 12px;
  color: var(--ink-dim);
  letter-spacing: 0.06em;
}

@media(max-width:700px) {
  .about-page .stat-row {
    grid-template-columns: 1fr 1fr;
    row-gap: 30px;
  }
}

/* Magnetic wrapper */
.magnetic {
  display: inline-block;
  will-change: transform;
}

/* ---- Video Lightbox ---- */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(20, 15, 10, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s var(--ease-out), visibility 0s linear .4s;
  padding: 30px;
}

.video-modal.open {
  opacity: 1;
  visibility: visible;
  transition: opacity .4s var(--ease-out), visibility 0s;
}

.video-modal .vm-inner {
  width: min(920px, 100%);
  aspect-ratio: 16/9;
  position: relative;
  transform: scale(0.94);
  transition: transform .45s var(--ease-out);
}

.video-modal.open .vm-inner {
  transform: scale(1);
}

.video-modal video {
  width: 100%;
  height: 100%;
  background: #000;
}

.video-modal .vm-close {
  position: absolute;
  top: -46px;
  right: 0;
  color: var(--dusk-text);
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  cursor: pointer;
}

.video-modal .vm-close i {
  color: var(--gold-pale);
}

/* ---- Swiper overrides ---- */
.swiper {
  padding-bottom: 6px;
}

.swiper-pagination {
  display: none;
}

.page-hero .eyebrow {
  display: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.main-nav {
  margin: 0 auto;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  position: relative;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: .35s;
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease-out);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--gold-deep);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

/* Buy button spacing */
.site-header .btn {}

/* Hide hamburger on desktop */
.nav-toggle-btn.magnetic {
  display: none;
}

/* Tablet & Mobile */
@media (max-width:1100px) {

  .main-nav,
  .site-header .btn {
    display: none;
  }

  .nav-toggle-btn.magnetic {
    display: flex;
  }

}

.video-trailer .podcast-feature {
  grid-template-columns: 1fr;
}

.video-trailer .podcast-feature .pmedia {
  aspect-ratio: unset;
}