/* ───────────────────────────────────────────────────────────────
   The Prayer — Rise with Jesus
   Warm sacred palette · cream + antique gold + deep ink
   Cormorant Garamond display · Lora body · Great Vibes script
   ─────────────────────────────────────────────────────────────── */

:root {
  /* Palette — warm, sacred, light-mode-first */
  --cream: #f7f0e3;
  --cream-2: #efe6d2;
  --cream-3: #e7dcc2;
  --ivory: #fbf6ec;
  --ink: #1c1a17;
  --ink-soft: #3a352e;
  --ink-muted: #6b6457;
  --gold: #b8893a;
  --gold-deep: #8f6a25;
  --gold-light: #d4ad6a;
  --rose: #c08768;
  --olive: #6e7048;

  /* Tokens */
  --color-bg: var(--cream);
  --color-surface: var(--ivory);
  --color-surface-2: var(--cream-2);
  --color-text: var(--ink);
  --color-text-soft: var(--ink-soft);
  --color-text-muted: var(--ink-muted);
  --color-accent: var(--gold);
  --color-accent-deep: var(--gold-deep);
  --color-border: oklch(from var(--ink) l c h / 0.12);
  --color-border-soft: oklch(from var(--ink) l c h / 0.06);

  /* Typography */
  --font-display: 'Cormorant Garamond', 'Cormorant', Georgia, 'Times New Roman', serif;
  --font-body: 'Lora', Georgia, 'Times New Roman', serif;
  --font-script: 'Great Vibes', 'Apple Chancery', cursive;

  --text-xs: clamp(0.75rem, 0.7rem + 0.2vw, 0.8125rem);
  --text-sm: clamp(0.85rem, 0.8rem + 0.25vw, 0.95rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.5vw, 1.35rem);
  --text-xl: clamp(1.5rem, 1.25rem + 1vw, 2rem);
  --text-2xl: clamp(2rem, 1.4rem + 2vw, 3.25rem);
  --text-3xl: clamp(2.5rem, 1.5rem + 3.5vw, 4.75rem);
  --text-hero: clamp(3.5rem, 2rem + 7vw, 8.5rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Radius / shadow */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-xl: 22px;
  --radius-full: 999px;

  --shadow-sm: 0 1px 2px oklch(0.25 0.03 75 / 0.08),
               0 2px 8px oklch(0.25 0.03 75 / 0.04);
  --shadow-md: 0 2px 6px oklch(0.25 0.03 75 / 0.1),
               0 12px 28px oklch(0.25 0.03 75 / 0.08);
  --shadow-lg: 0 4px 10px oklch(0.25 0.03 75 / 0.12),
               0 24px 60px oklch(0.25 0.03 75 / 0.12);

  /* Layout */
  --content-narrow: 640px;
  --content-default: 1100px;
  --content-wide: 1280px;
}

/* ───────── Base ───────── */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  background-image:
    radial-gradient(1200px 600px at 90% -10%, oklch(0.92 0.04 75 / 0.7), transparent 60%),
    radial-gradient(900px 500px at -10% 30%, oklch(0.93 0.05 60 / 0.55), transparent 60%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--color-accent-deep);
  text-decoration: none;
  text-decoration-color: oklch(from var(--gold) l c h / 0.35);
  text-underline-offset: 3px;
  transition: color 200ms ease, text-decoration-color 200ms ease;
}
a:hover {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: var(--gold);
}
a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}
em { font-style: italic; }

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

.section-eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--color-accent-deep);
  margin: 0 0 var(--space-4);
}

.section-title {
  font-size: var(--text-3xl);
  font-weight: 400;
  font-family: var(--font-display);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: var(--space-8);
}
.section-title em {
  font-style: italic;
  color: var(--color-accent-deep);
  font-family: var(--font-display);
  font-weight: 500;
}

/* ───────── Buttons ───────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--text-sm);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.95rem 1.6rem;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 200ms ease, box-shadow 200ms ease,
              background 200ms ease, color 200ms ease;
  text-decoration: none;
  min-height: 44px;
}
.btn--gold {
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 60%, var(--gold-deep) 100%);
  color: #fff;
  box-shadow: var(--shadow-sm), inset 0 1px 0 oklch(1 0 0 / 0.3);
}
.btn--gold:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md), inset 0 1px 0 oklch(1 0 0 / 0.35);
  color: #fff;
  text-decoration: none;
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: oklch(from var(--ink) l c h / 0.25);
}
.btn--ghost:hover {
  background: oklch(from var(--ink) l c h / 0.04);
  color: var(--ink);
  text-decoration: none;
  border-color: oklch(from var(--ink) l c h / 0.4);
}
.btn--solid {
  background: var(--ink);
  color: var(--ivory);
}
.btn--solid:hover {
  background: var(--gold-deep);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}
.btn--large {
  padding: 1.1rem 2rem;
  font-size: var(--text-base);
}

/* ───────── Nav ───────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) clamp(var(--space-4), 5vw, var(--space-12));
  background: oklch(from var(--cream) l c h / 0.78);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  border-bottom: 1px solid var(--color-border-soft);
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--ink);
  text-decoration: none;
}
.nav__brand:hover { color: var(--gold-deep); text-decoration: none; }
.nav__mark {
  width: 30px;
  height: 30px;
  color: var(--gold-deep);
}
.nav__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(var(--space-4), 2.5vw, var(--space-8));
}
.nav__links a {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--ink-soft);
  text-decoration: none;
}
.nav__links a:hover { color: var(--gold-deep); }
.nav__cta {
  border: 1px solid var(--gold);
  color: var(--gold-deep) !important;
  padding: 0.55rem 1rem;
  border-radius: var(--radius-full);
}
.nav__cta:hover {
  background: var(--gold);
  color: #fff !important;
  text-decoration: none;
}
@media (max-width: 720px) {
  .nav__links a:not(.nav__cta) { display: none; }
}

/* ───────── Hero ───────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(var(--space-16), 12vh, var(--space-32))
           clamp(var(--space-4), 5vw, var(--space-12));
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(0.85);
}
.hero__wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      oklch(from var(--cream) l c h / 0.55) 0%,
      oklch(from var(--cream) l c h / 0.35) 40%,
      oklch(from var(--cream) l c h / 0.85) 100%),
    radial-gradient(60% 80% at 50% 40%, transparent 0%,
      oklch(from var(--cream) l c h / 0.5) 100%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--content-wide);
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(var(--space-8), 5vw, var(--space-16));
  align-items: center;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: var(--text-xs);
  color: var(--gold-deep);
  margin: 0 0 var(--space-6);
}
.hero__eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px oklch(from var(--gold) l c h / 0.2);
  display: inline-block;
}
.hero__title {
  margin: 0;
  line-height: 0.95;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero__script {
  font-family: var(--font-script);
  font-size: clamp(2.5rem, 1.5rem + 4vw, 4.5rem);
  color: var(--gold-deep);
  font-weight: 400;
  margin-left: clamp(0.5rem, 2vw, 1.5rem);
  margin-bottom: -0.1em;
  transform: rotate(-3deg);
  display: inline-block;
}
.hero__display {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 0.9;
}
.hero__sub {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 0.9rem + 1.2vw, 1.85rem);
  font-weight: 400;
  font-style: italic;
  color: var(--ink-soft);
  margin: var(--space-5) 0 var(--space-4);
  line-height: 1.3;
}
.hero__sub em {
  font-style: italic;
  color: var(--gold-deep);
}
.hero__lede {
  font-size: var(--text-lg);
  color: var(--ink-soft);
  max-width: 36rem;
  margin: 0 0 var(--space-8);
  line-height: 1.55;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-10);
}
.hero__meta {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: clamp(var(--space-4), 3vw, var(--space-10));
  flex-wrap: wrap;
}
.hero__meta li {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--ink-muted);
  line-height: 1.3;
}
.hero__meta strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-xl);
  color: var(--ink);
  letter-spacing: -0.01em;
}

.hero__cover { display: flex; justify-content: center; }
.cover-stage {
  position: relative;
  width: min(380px, 100%);
  aspect-ratio: 1410 / 2250;
  transform: perspective(1400px) rotateY(-8deg) rotateX(2deg);
  transition: transform 600ms ease;
}
.cover-stage:hover { transform: perspective(1400px) rotateY(-3deg) rotateX(0deg); }
.cover-glow {
  position: absolute;
  inset: -8% -8% -4%;
  background: radial-gradient(60% 60% at 50% 50%,
      oklch(from var(--gold) l c h / 0.45) 0%, transparent 70%);
  filter: blur(40px);
  z-index: -1;
}
.cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  box-shadow:
    -2px 0 0 oklch(from var(--ink) l c h / 0.05),
    0 2px 4px oklch(from var(--ink) l c h / 0.1),
    0 30px 60px -10px oklch(from var(--ink) l c h / 0.35),
    0 18px 36px -18px oklch(from var(--ink) l c h / 0.4);
}

.hero__scroll {
  position: absolute;
  bottom: var(--space-6);
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--ink-muted);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  z-index: 2;
}
.hero__scroll span {
  display: inline-block;
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, transparent, var(--gold) 70%);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(4px); }
}

@media (max-width: 880px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .hero__cover { order: -1; margin-bottom: var(--space-6); }
  .cover-stage { width: min(260px, 70vw); transform: none; }
  .hero__title { align-items: flex-start; }
}

/* ───────── Acclaim ───────── */
.acclaim {
  padding: clamp(var(--space-20), 12vh, var(--space-32))
           clamp(var(--space-4), 5vw, var(--space-12));
  text-align: center;
  background:
    radial-gradient(80% 60% at 50% 0%, oklch(from var(--gold) l c h / 0.08), transparent 70%),
    linear-gradient(180deg, transparent, oklch(from var(--cream-2) l c h / 0.45));
  border-top: 1px solid var(--color-border-soft);
  border-bottom: 1px solid var(--color-border-soft);
}
.acclaim__title {
  font-size: var(--text-3xl);
  font-weight: 400;
  font-family: var(--font-display);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0 auto var(--space-12);
  max-width: 18ch;
}
.acclaim__title em {
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 500;
}
.acclaim__grid {
  max-width: var(--content-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
  text-align: left;
}
@media (max-width: 980px) {
  .acclaim__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .acclaim__grid { grid-template-columns: 1fr; }
}
.acclaim__card {
  display: flex;
  flex-direction: column;
  padding: var(--space-7, 1.75rem) var(--space-6) var(--space-5);
  background: var(--ivory);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  transition: transform 350ms ease, box-shadow 350ms ease, border-color 350ms ease;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  min-height: 220px;
}
.acclaim__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 100% 0%, oklch(from var(--gold) l c h / 0.08), transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 300ms ease;
}
a.acclaim__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: oklch(from var(--gold) l c h / 0.4);
  text-decoration: none;
  color: inherit;
}
a.acclaim__card:hover::after { opacity: 1; }

.acclaim__icon {
  width: 44px;
  height: 44px;
  color: var(--gold-deep);
  margin-bottom: var(--space-4);
}
.acclaim__badge {
  width: 96px;
  height: 96px;
  object-fit: contain;
  margin-bottom: var(--space-4);
  align-self: flex-start;
  filter: drop-shadow(0 4px 10px oklch(0 0 0 / 0.12));
  transition: transform 350ms ease;
}
a.acclaim__card:hover .acclaim__badge {
  transform: scale(1.06) rotate(-2deg);
}
.acclaim__hash {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ivory);
  margin-bottom: var(--space-3);
}
.acclaim__card--accent {
  background:
    radial-gradient(120% 100% at 0% 0%, oklch(from var(--gold-light) l c h / 0.7), transparent 60%),
    linear-gradient(160deg, var(--gold), var(--gold-deep));
  color: var(--ivory);
  border-color: transparent;
}
.acclaim__card--accent .acclaim__name,
.acclaim__card--accent .acclaim__cat,
.acclaim__card--accent .acclaim__link { color: var(--ivory); }
.acclaim__card--accent .acclaim__cat { opacity: 0.9; }
.acclaim__card--accent .acclaim__link {
  border-color: oklch(from var(--ivory) l c h / 0.4);
}
.acclaim__name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 var(--space-2);
  line-height: 1.15;
}
.acclaim__cat {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0;
  line-height: 1.4;
}
.acclaim__link {
  margin-top: auto;
  padding-top: var(--space-5);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
}
.acclaim__foot {
  max-width: 760px;
  margin: var(--space-12) auto 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-base);
  color: var(--ink-muted);
  line-height: 1.6;
}

/* ───────── About ───────── */
.about {
  padding: clamp(var(--space-20), 12vh, var(--space-32))
           clamp(var(--space-4), 5vw, var(--space-12));
}
.about__inner {
  max-width: var(--content-wide);
  margin: 0 auto;
}
.about__cols {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(var(--space-8), 5vw, var(--space-16));
  align-items: start;
}
.lede {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 1rem + 1vw, 1.7rem);
  font-weight: 400;
  line-height: 1.4;
  color: var(--ink);
}
.dropcap {
  float: left;
  font-family: var(--font-display);
  font-size: 4.5em;
  line-height: 0.85;
  padding: 0.1em 0.1em 0 0;
  color: var(--gold-deep);
  font-weight: 500;
}
.about__prose p {
  font-size: var(--text-base);
  color: var(--ink-soft);
  margin: 0 0 var(--space-4);
}
.about__prose p:first-child + p { margin-top: var(--space-6); }

.about__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  border-left: 1px solid var(--color-border-soft);
  padding-left: clamp(var(--space-6), 3vw, var(--space-10));
}
.about__features li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-5);
  align-items: start;
}
.feat__num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--gold);
  font-style: italic;
  letter-spacing: 0.02em;
  min-width: 2.2rem;
  border-bottom: 1px solid var(--gold-light);
  padding-bottom: 2px;
}
.about__features h3 {
  font-size: var(--text-lg);
  font-weight: 500;
  margin-bottom: var(--space-1);
}
.about__features p {
  font-size: var(--text-sm);
  color: var(--ink-muted);
  margin: 0;
  line-height: 1.55;
}

@media (max-width: 880px) {
  .about__cols { grid-template-columns: 1fr; }
  .about__features { border-left: 0; padding-left: 0; }
}

/* ───────── Preview gallery ───────── */
.preview {
  padding: clamp(var(--space-16), 10vh, var(--space-24))
           clamp(var(--space-4), 5vw, var(--space-12));
  background:
    linear-gradient(180deg, oklch(from var(--cream) l c h / 0.5), transparent),
    oklch(from var(--cream-2) l c h / 0.45);
  border-top: 1px solid var(--color-border-soft);
}
.preview__head {
  max-width: var(--content-narrow);
  margin: 0 auto var(--space-12);
  text-align: center;
}
.preview__sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--ink-muted);
  max-width: 36rem;
  margin: 0 auto;
}
.preview__gallery {
  max-width: var(--content-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
@media (max-width: 880px) {
  .preview__gallery { grid-template-columns: repeat(2, 1fr); gap: var(--space-3); }
}
@media (max-width: 480px) {
  .preview__gallery { grid-template-columns: 1fr; }
}
.day {
  margin: 0;
  background: var(--ivory);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 350ms ease, box-shadow 350ms ease;
}
.day:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.day img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.day figcaption {
  padding: var(--space-3) var(--space-4) var(--space-4);
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-sm);
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  text-align: center;
}

/* ───────── Buy / Formats ───────── */
.buy {
  padding: clamp(var(--space-20), 12vh, var(--space-32))
           clamp(var(--space-4), 5vw, var(--space-12));
}
.buy__inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  text-align: center;
}
.buy__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: var(--space-5);
  margin-top: var(--space-8);
  text-align: left;
}
.format {
  display: flex;
  flex-direction: column;
  background: var(--ivory);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
  position: relative;
  overflow: hidden;
}
.format::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-deep));
  opacity: 0.85;
}
.format:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: oklch(from var(--gold) l c h / 0.4);
}
.format header {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--color-border-soft);
}
.format__label {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--ink);
  margin: 0;
  line-height: 1.1;
}
.format__price {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--gold-deep);
  margin: 0;
  line-height: 1.3;
}
.format__price small {
  display: inline-block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.65em;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
  margin-left: 0.4em;
  text-transform: uppercase;
}
.format__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-6);
  flex: 1;
}
.format__bullets li {
  position: relative;
  padding-left: 1.4rem;
  font-size: var(--text-sm);
  color: var(--ink-soft);
  margin-bottom: var(--space-2);
  line-height: 1.55;
}
.format__bullets li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-size: 0.85em;
}
.format .btn {
  align-self: stretch;
}

/* ───────── Authors ───────── */
.authors {
  padding: clamp(var(--space-20), 12vh, var(--space-32))
           clamp(var(--space-4), 5vw, var(--space-12));
  background:
    radial-gradient(60% 60% at 50% 100%, oklch(from var(--gold) l c h / 0.08), transparent 70%),
    linear-gradient(180deg, transparent, oklch(from var(--cream-2) l c h / 0.55));
  border-top: 1px solid var(--color-border-soft);
}
.authors__head {
  max-width: 720px;
  margin: 0 auto var(--space-16);
  text-align: center;
}
.authors__lede {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--ink-muted);
  line-height: 1.5;
  margin: var(--space-5) auto 0;
  max-width: 36rem;
}
.authors__grid {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(var(--space-5), 2.5vw, var(--space-7));
}
@media (max-width: 820px) {
  .authors__grid { grid-template-columns: 1fr; max-width: 480px; }
}

/* Clean, restrained author card. Photo lives inside the padding,
   not edge-to-edge. Plenty of breathing room. */
.author {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--ivory);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: left;
  padding: 2.5rem;
  transition: transform 400ms ease, box-shadow 400ms ease, border-color 400ms ease;
}
@media (min-width: 1024px) {
  .author { padding: 3rem; }
}
@media (max-width: 480px) {
  .author { padding: 1.75rem; }
}
.author:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: oklch(from var(--gold) l c h / 0.3);
}

.author__photo {
  position: relative;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--cream-3);
  margin-bottom: var(--space-6);
  box-shadow: 0 0 0 1px oklch(from var(--gold) l c h / 0.18),
              0 6px 22px oklch(from var(--ink) l c h / 0.08);
}
.author__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  transition: transform 800ms ease;
}
.author:hover .author__photo img { transform: scale(1.06); }
.author__photo::after { display: none; }
.author__badge { display: none; }

.author__body {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
}

.author__role {
  font-family: var(--font-body);
  color: var(--gold-deep);
  margin: 0 0 var(--space-2);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
}
.author__role::before { display: none; }

.author__name {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.2vw, 1.875rem);
  font-weight: 500;
  margin: 0 0 var(--space-4);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.author__bio {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.75;
  margin: 0 0 var(--space-6);
}
.author__bio em {
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 500;
}

.author__tags {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-6);
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.author__tags li {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  background: transparent;
  font-weight: 500;
}

.author__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: auto;
  padding-top: var(--space-2);
}
.author__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink);
  background: transparent;
  padding: 0.6rem 1.05rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  text-decoration: none;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}
.author__link svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}
.author__link:hover {
  background: var(--ink);
  color: var(--ivory);
  text-decoration: none;
  transform: translateY(-1px);
  border-color: var(--ink);
}
.author__link--primary {
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: var(--ivory);
  border-color: transparent;
  box-shadow: inset 0 1px 0 oklch(1 0 0 / 0.22),
              0 4px 14px oklch(from var(--gold) l c h / 0.3);
}
.author__link--primary:hover {
  background: var(--gold-deep);
  color: var(--ivory);
  border-color: transparent;
  box-shadow: inset 0 1px 0 oklch(1 0 0 / 0.22),
              0 6px 18px oklch(from var(--gold) l c h / 0.4);
}

/* ───────── Final CTA ───────── */
.final {
  position: relative;
  padding: clamp(var(--space-20), 14vh, var(--space-32))
           clamp(var(--space-4), 5vw, var(--space-12));
  background:
    radial-gradient(120% 100% at 50% 0%, oklch(from var(--gold) l c h / 0.18) 0%, transparent 60%),
    var(--cream);
  border-top: 1px solid var(--color-border-soft);
  text-align: center;
}
.final__inner {
  max-width: var(--content-narrow);
  margin: 0 auto;
}
.final__script {
  font-family: var(--font-script);
  font-size: clamp(2rem, 1rem + 4vw, 3.5rem);
  color: var(--gold-deep);
  margin: 0 0 var(--space-2);
  line-height: 1;
}
.final__title {
  font-size: var(--text-3xl);
  font-weight: 400;
  margin-bottom: var(--space-8);
}
.final__title em {
  font-style: italic;
  color: var(--gold-deep);
}
.final__quote {
  margin-top: var(--space-12);
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--ink-muted);
  line-height: 1.5;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}
.final__quote span {
  font-family: var(--font-display);
  font-size: 1.8em;
  color: var(--gold);
  vertical-align: -0.2em;
  font-weight: 500;
}
.final__quote em {
  display: block;
  font-size: 0.85em;
  margin-top: var(--space-2);
  color: var(--ink-muted);
  font-style: italic;
}

/* ───────── Footer ───────── */
.foot {
  background: var(--ink);
  color: oklch(from var(--ivory) l c h / 0.78);
  padding: var(--space-16) clamp(var(--space-4), 5vw, var(--space-12)) var(--space-8);
}
.foot__inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-12);
  align-items: start;
}
.foot__brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--gold-light);
}
.foot__brand p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0;
  color: var(--ivory);
}
.foot__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}
.foot__nav h4 {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-light);
  margin: 0 0 var(--space-4);
  font-weight: 500;
}
.foot__nav a {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: oklch(from var(--ivory) l c h / 0.7);
  text-decoration: none;
  padding: 0.25rem 0;
}
.foot__nav a:hover {
  color: var(--gold-light);
  text-decoration: none;
}
.foot__legal {
  max-width: var(--content-wide);
  margin: var(--space-12) auto 0;
  padding-top: var(--space-6);
  border-top: 1px solid oklch(from var(--ivory) l c h / 0.1);
  font-size: var(--text-xs);
  color: oklch(from var(--ivory) l c h / 0.5);
  letter-spacing: 0.08em;
  text-align: center;
}

@media (max-width: 720px) {
  .foot__inner { grid-template-columns: 1fr; gap: var(--space-8); }
  .foot__nav { grid-template-columns: repeat(2, 1fr); gap: var(--space-6); }
}

/* ───────── Reveal on scroll ───────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 800ms ease, transform 800ms ease;
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .cover-stage { transform: none; }
}

/* === SEO + accessibility additions === */
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero__byline {
  font-family: var(--font-serif, 'Lora', serif);
  font-size: 1rem;
  line-height: 1.5;
  margin-top: 0.25rem;
  margin-bottom: 1rem;
  color: rgba(40, 30, 18, 0.78);
  letter-spacing: 0.01em;
}
.hero__byline a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-color: rgba(166, 124, 60, 0.5);
}
.hero__byline a:hover {
  color: var(--gold, #a67c3c);
  text-decoration-color: currentColor;
}

/* === Portuguese edition card + nav === */
.format--portuguese {
  position: relative;
  background: linear-gradient(155deg, #fff8e8 0%, #f3e6c8 100%);
  border-color: rgba(166, 124, 60, 0.25);
}
.format--portuguese .format__label small {
  display: block;
  font-size: 0.78em;
  font-weight: 400;
  opacity: 0.7;
  margin-top: 0.15rem;
}
.format__ribbon {
  position: absolute;
  top: 14px;
  right: -6px;
  background: linear-gradient(135deg, #c4922f 0%, #a67c3c 100%);
  color: #fffaf0;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 4px 0 0 4px;
  box-shadow: 0 4px 10px rgba(166, 124, 60, 0.35);
}
.format__ribbon::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -6px;
  border: 3px solid transparent;
  border-top-color: #6e4f1b;
  border-left-color: #6e4f1b;
}

.nav__pt {
  font-size: 0.85rem;
  padding: 0.3rem 0.7rem;
  border: 1px solid rgba(166, 124, 60, 0.4);
  border-radius: 999px;
  color: rgba(40, 30, 18, 0.85);
  transition: all 0.2s ease;
}
.nav__pt:hover {
  background: rgba(166, 124, 60, 0.1);
  border-color: rgba(166, 124, 60, 0.7);
  color: #6e4f1b;
}

/* ════════════════════════════════════════
   PORTUGUESE EDITION SPOTLIGHT
   A dedicated, visually distinct section that
   celebrates the Brazilian cover as its own moment.
   ═══════════════════════════════════════ */
.pt-spotlight {
  position: relative;
  padding: 6rem 1.5rem;
  background:
    radial-gradient(ellipse 80% 60% at 80% 20%, rgba(255, 223, 0, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 60% 50% at 15% 80%, rgba(0, 156, 59, 0.06) 0%, transparent 60%),
    linear-gradient(180deg, #faf3e6 0%, #f6efe3 100%);
  overflow: hidden;
  isolation: isolate;
}
.pt-spotlight::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 25% 30%, rgba(166, 124, 60, 0.18) 1px, transparent 2px),
    radial-gradient(circle at 70% 75%, rgba(0, 156, 59, 0.12) 1px, transparent 2px);
  background-size: 130px 130px, 180px 180px;
  background-position: 0 0, 60px 90px;
  opacity: 0.45;
  pointer-events: none;
  z-index: -1;
}

.pt-spotlight__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 5rem;
  align-items: center;
}
@media (max-width: 880px) {
  .pt-spotlight { padding: 4rem 1.25rem; }
  .pt-spotlight__inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ── Art column ───────────────────────────── */
.pt-spotlight__art {
  position: relative;
  display: flex;
  justify-content: center;
}
.pt-spotlight__flag {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  background: #fff;
  padding: 0.5rem 0.6rem 0.35rem;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(0, 39, 118, 0.18), 0 2px 4px rgba(0,0,0,0.05);
  z-index: 3;
}
.pt-spotlight__flag svg {
  display: block;
  border-radius: 2px;
}

.pt-spotlight__cover-stage {
  position: relative;
  width: 100%;
  max-width: 440px;
}
.pt-spotlight__halo {
  position: absolute;
  inset: -8% -12%;
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 223, 0, 0.32) 0%, rgba(255, 223, 0, 0.14) 35%, transparent 65%),
    radial-gradient(circle at 50% 65%, rgba(0, 156, 59, 0.18) 0%, transparent 55%);
  filter: blur(12px);
  z-index: 0;
  border-radius: 50%;
}
.pt-spotlight__cover {
  position: relative;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  box-shadow:
    0 30px 60px -15px rgba(20, 40, 80, 0.45),
    0 14px 28px -10px rgba(20, 40, 80, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.6);
  transform: rotate(-1.5deg);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 1;
}
.pt-spotlight__cover:hover {
  transform: rotate(0deg) translateY(-6px);
}

/* ── Text column ──────────────────────────── */
.pt-spotlight__eyebrow {
  font-family: var(--font-sans, 'Inter', sans-serif);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(40, 30, 18, 0.7);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.25rem;
}
.dot--green {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #009c3b;
  box-shadow: 0 0 0 4px rgba(0, 156, 59, 0.18);
  display: inline-block;
}

.pt-spotlight__title {
  margin: 0 0 1.5rem;
  line-height: 1;
}
.pt-spotlight__script {
  display: block;
  font-family: var(--font-script, 'Pinyon Script', 'Allura', cursive);
  font-weight: 400;
  font-size: clamp(4.5rem, 9vw, 6.5rem);
  color: #1c1409;
  line-height: 0.9;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.5);
}
.pt-spotlight__sub {
  display: block;
  font-family: var(--font-serif, 'Lora', serif);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.04em;
  color: rgba(40, 30, 18, 0.72);
  margin-top: 0.5rem;
}

.pt-spotlight__lede {
  font-family: var(--font-serif, 'Lora', serif);
  font-size: 1.075rem;
  line-height: 1.7;
  color: rgba(40, 30, 18, 0.82);
  margin: 0 0 1.1rem;
  max-width: 38em;
}
.pt-spotlight__lede em {
  font-style: italic;
  color: #6e4f1b;
}

.pt-spotlight__pills {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.pt-spotlight__pills li {
  font-family: var(--font-sans, 'Inter', sans-serif);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.4rem 0.85rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(166, 124, 60, 0.25);
  border-radius: 999px;
  color: rgba(40, 30, 18, 0.78);
  backdrop-filter: blur(6px);
}

.pt-spotlight__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

/* ═══════════════════════════════════════════════════════════════
   READERS ON TIKTOK — Testimonials
   ═══════════════════════════════════════════════════════════════ */
.tt-section {
  padding: clamp(var(--space-20), 12vh, var(--space-32))
           clamp(var(--space-4), 5vw, var(--space-12));
  background:
    radial-gradient(ellipse at top, oklch(from var(--gold-light) l c h / 0.08), transparent 60%),
    linear-gradient(180deg, var(--cream), oklch(from var(--cream-2) l c h / 0.6));
  border-top: 1px solid var(--color-border-soft);
  position: relative;
  overflow: hidden;
}
.tt-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, oklch(from var(--gold-light) l c h / 0.10), transparent 32%),
    radial-gradient(circle at 88% 82%, oklch(from var(--rose) l c h / 0.06), transparent 32%);
  pointer-events: none;
  z-index: 0;
}
.tt-section__head {
  max-width: var(--content-narrow);
  margin: 0 auto var(--space-12);
  text-align: center;
  position: relative;
  z-index: 1;
}
.tt-section__sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--ink-muted);
  max-width: 38rem;
  margin: var(--space-4) auto 0;
  line-height: 1.5;
}
.tt-section__cta {
  margin-top: var(--space-12);
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Grid */
.tt-grid {
  max-width: var(--content-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  position: relative;
  z-index: 1;
}
.tt-grid--featured {
  grid-template-columns: repeat(3, 1fr);
}
.tt-grid--four {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1100px) {
  .tt-grid--four { grid-template-columns: repeat(2, 1fr); }
}
.tt-grid--five {
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-5);
}
@media (max-width: 1280px) {
  .tt-grid--five { grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
}
@media (max-width: 880px) {
  .tt-grid--five { grid-template-columns: repeat(2, 1fr); gap: var(--space-4); }
}
@media (max-width: 520px) {
  .tt-grid--five { grid-template-columns: 1fr; max-width: 26rem; }
}
.tt-grid--full {
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}
@media (max-width: 1100px) {
  .tt-grid--full { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 880px) {
  .tt-grid,
  .tt-grid--full,
  .tt-grid--featured { grid-template-columns: repeat(2, 1fr); gap: var(--space-4); }
}
@media (max-width: 520px) {
  .tt-grid,
  .tt-grid--full,
  .tt-grid--featured { grid-template-columns: 1fr; max-width: 26rem; }
}

/* Card */
.tt-card {
  display: flex;
  flex-direction: column;
  background: var(--ivory);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 400ms cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 400ms cubic-bezier(0.2, 0.8, 0.2, 1),
              border-color 400ms ease;
}
.tt-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: oklch(from var(--gold) l c h / 0.35);
}

.tt-card__media {
  position: relative;
  display: block;
  width: 100%;
  border: none;
  padding: 0;
  margin: 0;
  background: var(--cream-3);
  cursor: pointer;
  overflow: hidden;
  aspect-ratio: 9 / 14;
}
.tt-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms ease, filter 400ms ease;
}
.tt-card__media:hover img {
  transform: scale(1.04);
  filter: brightness(1.05);
}
.tt-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, oklch(from var(--ink) l c h / 0.35) 100%);
  pointer-events: none;
}

/* Play overlay */
.tt-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: oklch(from var(--ivory) l c h / 0.92);
  color: var(--gold-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  box-shadow: 0 8px 32px oklch(from var(--ink) l c h / 0.25),
              0 0 0 1px oklch(from var(--gold) l c h / 0.2);
  transition: transform 350ms cubic-bezier(0.2, 0.8, 0.2, 1),
              background 250ms ease;
  z-index: 2;
}
.tt-card__play svg {
  width: 24px;
  height: 24px;
  margin-left: 3px;
}
.tt-card__media:hover .tt-card__play {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--ivory);
}

/* TikTok logo badge */
.tt-card__brand {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: oklch(from var(--ink) l c h / 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.tt-card__brand svg {
  width: 16px;
  height: 16px;
}

/* Card body */
.tt-card__body {
  padding: var(--space-4) var(--space-5) var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  flex: 1;
}
.tt-card__handle {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--gold-deep);
  text-decoration: none;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-self: flex-start;
  transition: color 200ms ease;
}
.tt-card__handle:hover {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: oklch(from var(--gold) l c h / 0.5);
  text-underline-offset: 3px;
}
.tt-card__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-base);
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0;
  /* Clamp to 4 lines */
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ─── Testimonials page: hero + wall layout (Option B) ─── */

/* Featured row: 4 hero cards up top, same look as a .tt-card */
.tt-featured-row {
  max-width: var(--content-wide);
  margin: 0 auto var(--space-10);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
  position: relative;
  z-index: 1;
}
@media (max-width: 1100px) {
  .tt-featured-row { grid-template-columns: repeat(2, 1fr); gap: var(--space-4); }
}
@media (max-width: 520px) {
  .tt-featured-row { grid-template-columns: 1fr; max-width: 26rem; }
}

/* Wall: dense 5-column grid of compact tiles */
.tt-wall {
  max-width: var(--content-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-4);
  position: relative;
  z-index: 1;
}
@media (max-width: 1280px) {
  .tt-wall { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 1024px) {
  .tt-wall { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .tt-wall { grid-template-columns: repeat(2, 1fr); gap: var(--space-3); }
}
@media (max-width: 420px) {
  .tt-wall { grid-template-columns: 1fr; max-width: 22rem; }
}

/* Wall tile */
.tt-tile {
  display: flex;
  flex-direction: column;
  background: var(--ivory);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 400ms cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 400ms cubic-bezier(0.2, 0.8, 0.2, 1),
              border-color 400ms ease;
}
.tt-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: oklch(from var(--gold) l c h / 0.35);
}

.tt-tile__media {
  position: relative;
  display: block;
  width: 100%;
  border: none;
  padding: 0;
  margin: 0;
  background: var(--cream-3);
  cursor: pointer;
  overflow: hidden;
  aspect-ratio: 9 / 14;
}
.tt-tile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms ease, filter 400ms ease;
}
.tt-tile__media:hover img {
  transform: scale(1.04);
  filter: brightness(1.05);
}
.tt-tile__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, oklch(from var(--ink) l c h / 0.28) 100%);
  pointer-events: none;
}

/* Tile play overlay (smaller than card play) */
.tt-tile__play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: oklch(from var(--ivory) l c h / 0.92);
  color: var(--gold-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  box-shadow: 0 6px 24px oklch(from var(--ink) l c h / 0.25),
              0 0 0 1px oklch(from var(--gold) l c h / 0.2);
  transition: transform 350ms cubic-bezier(0.2, 0.8, 0.2, 1),
              background 250ms ease;
  z-index: 2;
}
.tt-tile__play svg {
  width: 18px;
  height: 18px;
  margin-left: 2px;
}
.tt-tile__media:hover .tt-tile__play {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--ivory);
}

/* Tile TikTok badge */
.tt-tile__brand {
  position: absolute;
  top: var(--space-2);
  right: var(--space-2);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: oklch(from var(--ink) l c h / 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.tt-tile__brand svg {
  width: 13px;
  height: 13px;
}

/* Tile body */
.tt-tile__body {
  padding: var(--space-3) var(--space-3) var(--space-4);
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.tt-tile__handle {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-deep);
  text-decoration: none;
  letter-spacing: 0.01em;
  align-self: flex-start;
  transition: color 200ms ease;
}
.tt-tile__handle:hover {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: oklch(from var(--gold) l c h / 0.5);
  text-underline-offset: 3px;
}
.tt-tile__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--ink-soft);
  margin: 0;
  /* Clamp to 2 lines */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ─── Lightbox ─── */
.tt-lightbox {
  position: fixed;
  inset: 0;
  background: oklch(from var(--ink) l c h / 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms ease, visibility 300ms ease;
  padding: var(--space-3);
}
.tt-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}
.tt-lightbox__close {
  position: absolute;
  top: var(--space-5);
  right: var(--space-5);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: oklch(from var(--ivory) l c h / 0.15);
  border: 1px solid oklch(from var(--ivory) l c h / 0.25);
  color: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 200ms ease, transform 200ms ease;
  z-index: 1001;
}
.tt-lightbox__close:hover {
  background: oklch(from var(--ivory) l c h / 0.25);
  transform: rotate(90deg);
}
.tt-lightbox__close svg {
  width: 22px;
  height: 22px;
}
.tt-lightbox__frame {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  transform: scale(0.95);
  transition: transform 350ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.tt-lightbox.is-open .tt-lightbox__frame {
  transform: scale(1);
}

/* TikTok's embed renders the video at a fixed internal size (capped ≈325px wide).
   To make the video LARGE on screen, we render the iframe at its native size, then
   magnify the whole thing with CSS transform: scale(). The wrapper has overflow:hidden
   so TikTok's info panel (below the video) is clipped out of view. */
.tt-lightbox__iframe-wrap {
  /* Native video size before scaling. */
  --tt-w: 325px;
  --tt-vh: 578px; /* video height at 9:16 */
  /* Magnify the iframe so the video portion fills as much viewport as possible. */
  --tt-scale: min(calc(88vh / var(--tt-vh)), calc(92vw / var(--tt-w)));
  width: calc(var(--tt-w) * var(--tt-scale));
  height: calc(var(--tt-vh) * var(--tt-scale));
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #000;
  box-shadow: 0 24px 80px oklch(from var(--ink) l c h / 0.5);
}
.tt-lightbox__iframe {
  /* Native iframe size — narrow so TikTok renders the video close to wrap width,
     extra height so the info panel renders fully (then gets clipped). */
  width: var(--tt-w);
  height: 1100px;
  border: 0;
  background: #000;
  transform: scale(var(--tt-scale));
  transform-origin: top left;
  /* Make scrollbars (rarely visible) match scaled space. */
  display: block;
}
.tt-lightbox__open-link {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: oklch(from var(--ivory) l c h / 0.85);
  text-decoration: none;
  letter-spacing: 0.02em;
  padding: 0.4em 0.9em;
  border: 1px solid oklch(from var(--ivory) l c h / 0.25);
  border-radius: 999px;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
}
.tt-lightbox__open-link:hover {
  background: oklch(from var(--ivory) l c h / 0.12);
  color: var(--ivory);
  border-color: oklch(from var(--ivory) l c h / 0.4);
}

/* ─── Standalone testimonials page ─── */
.tt-page {
  padding: clamp(var(--space-16), 8vh, var(--space-24))
           clamp(var(--space-4), 5vw, var(--space-12)) var(--space-24);
  background:
    radial-gradient(ellipse at top, oklch(from var(--gold-light) l c h / 0.10), transparent 50%),
    var(--cream);
  min-height: 70vh;
}
.tt-page__head {
  max-width: var(--content-narrow);
  margin: 0 auto var(--space-12);
  text-align: center;
}
.tt-page__back {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--ink-muted);
  text-decoration: none;
  margin-bottom: var(--space-6);
  transition: color 200ms ease;
}
.tt-page__back:hover { color: var(--gold-deep); }
.tt-page__sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--ink-muted);
  max-width: 40rem;
  margin: var(--space-4) auto 0;
  line-height: 1.55;
}
.tt-page__count {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  background: oklch(from var(--gold-light) l c h / 0.15);
  padding: 0.4em 0.9em;
  border-radius: 999px;
  margin-top: var(--space-5);
}
