/* =====================================================
   THE COSMIC HEALER. site styles
   Layered over colors_and_type.css
   ===================================================== */

*, *::before, *::after { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  background: var(--ch-oxblood);
  scroll-behavior: smooth;
}
body {
  overflow-x: hidden;
  cursor: none; /* custom cursor */
}
@media (hover: none), (pointer: coarse) {
  body { cursor: auto; }
  #cursor-dot, #cursor-halo { display: none !important; }
}

/* embers + cursor live above everything but below modals */
#ember-canvas {
  position: fixed; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: screen;
}
#cursor-dot, #cursor-halo {
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  will-change: transform;
}
#cursor-dot {
  width: 8px; height: 8px;
  background: #C9951A;
  box-shadow: 0 0 12px rgba(201,149,26,0.9);
}
#cursor-halo {
  width: 28px; height: 28px;
  background: radial-gradient(circle, rgba(204,34,0,0.45) 0%, rgba(204,34,0,0) 70%);
  transition: transform 200ms cubic-bezier(0.22,1,0.36,1), width 200ms, height 200ms;
}
.cursor-hover #cursor-halo {
  width: 56px; height: 56px;
  background: radial-gradient(circle, rgba(201,149,26,0.55) 0%, rgba(201,149,26,0) 70%);
}

/* anchor links should inherit the custom cursor */
a, button { cursor: none; }
@media (hover: none), (pointer: coarse) { a, button { cursor: pointer; } }

/* ============== layout primitives ============== */
.section {
  position: relative;
  width: 100%;
  padding: 120px 0;
  overflow: hidden;
}
.section--sm { padding: 80px 0; }
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}
.center-text { text-align: center; }

/* dragon scale overlay */
.scales::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url('assets/dragon-scales.svg');
  background-size: 60px 52px;
  pointer-events: none;
  opacity: 0.06;
  z-index: 0;
}

/* concentric circle bg motif at low opacity for light sections */
.circles::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('assets/mandala.svg');
  background-repeat: no-repeat;
  background-position: 90% 80%;
  background-size: 720px;
  opacity: 0.06;
  pointer-events: none;
}

/* sacred line + wing emblem divider */
.dot-strip {
  position: relative;
  width: 100%; height: 96px;
  background:
    url('assets/wing-emblem.svg') center center / auto 56px no-repeat,
    linear-gradient(90deg, transparent 0%, rgba(201,149,26,0.35) 35%, rgba(201,149,26,0.75) 100%) left center / calc(50% - 64px) 1px no-repeat,
    linear-gradient(90deg, rgba(201,149,26,0.75) 0%, rgba(201,149,26,0.35) 65%, transparent 100%) right center / calc(50% - 64px) 1px no-repeat;
  z-index: 3;
  pointer-events: none;
}

/* ============== reveal animation ============== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 800ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

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

/* ============== nav ============== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 40px;
  background: transparent;
  transition: background 400ms cubic-bezier(0.22, 1, 0.36, 1),
              backdrop-filter 400ms cubic-bezier(0.22, 1, 0.36, 1),
              padding 400ms cubic-bezier(0.22, 1, 0.36, 1),
              border-color 400ms;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(61, 0, 0, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 40px;
  border-bottom: 1px solid rgba(201,149,26,0.18);
}
.nav__brand {
  font-family: var(--font-accent);
  font-size: 15px;
  letter-spacing: 0.2em;
  color: var(--ch-gold);
  text-transform: uppercase;
  text-decoration: none;
  border: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.nav__brand-mark {
  width: 22px; height: 22px;
  display: inline-block;
}
.nav__links {
  display: flex;
  gap: 36px;
  list-style: none;
  padding: 0; margin: 0;
}
.nav__link {
  position: relative;
  font-family: var(--font-accent);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ch-cream);
  text-decoration: none;
  border: 0;
  padding: 4px 0;
  transition: color 250ms var(--ease-warm);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--ch-gold);
  transition: width 250ms var(--ease-warm);
}
.nav__link:hover {
  color: var(--ch-gold);
}
.nav__link:hover::after { width: 100%; }

.nav__burger {
  display: none;
  background: transparent;
  border: 0;
  width: 36px; height: 36px;
  color: var(--ch-cream);
}
.nav__burger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--ch-gold);
  margin: 5px auto;
  transition: transform 320ms var(--ease-warm), opacity 320ms;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav__overlay {
  position: fixed; inset: 0;
  background: rgba(61, 0, 0, 0.98);
  backdrop-filter: blur(14px);
  z-index: 49;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms var(--ease-warm);
}
.nav__overlay::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url('assets/dot-strip.svg');
  opacity: 0.08;
  pointer-events: none;
}
.nav__overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
.nav__overlay a {
  font-family: var(--font-accent);
  font-size: 18px;
  letter-spacing: 0.2em;
  color: var(--ch-cream);
  border: 0;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 320ms var(--ease-warm), transform 320ms var(--ease-warm), color 200ms;
}
.nav__overlay.is-open a {
  opacity: 1;
  transform: none;
}
.nav__overlay a:hover { color: var(--ch-gold); }

@media (max-width: 840px) {
  .nav { padding: 18px 24px; }
  .nav.is-scrolled { padding: 12px 24px; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: block; }
}

/* ============== buttons ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-accent);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border: 0;
  border-radius: 999px;
  padding: 0 32px;
  height: 56px;
  white-space: nowrap;
  color: var(--ch-cream);
  background: linear-gradient(95deg, #CC2200 0%, #C9951A 100%);
  box-shadow: 0 0 0 rgba(201,149,26,0);
  transition: transform 300ms var(--ease-warm),
              box-shadow 300ms var(--ease-warm),
              background 300ms var(--ease-warm),
              color 300ms var(--ease-warm);
}
.btn:hover {
  transform: scale(1.03);
  box-shadow: 0 0 32px rgba(201,149,26,0.65), 0 0 64px rgba(204,34,0,0.35);
}
.btn--sm { height: 44px; font-size: 11px; padding: 0 22px; }
.btn--lg { height: 64px; font-size: 14px; padding: 0 44px; }

.btn--ghost {
  background: transparent;
  border: 1.5px solid var(--ch-gold);
  color: var(--ch-cream);
  box-shadow: none;
}
.btn--ghost:hover {
  background: var(--ch-red);
  border-color: var(--ch-red);
  box-shadow: 0 0 32px rgba(204,34,0,0.55);
  color: var(--ch-cream);
}

.btn--ghost-gold {
  background: transparent;
  border: 1.5px solid var(--ch-gold);
  color: var(--ch-gold);
  box-shadow: none;
}
.btn--ghost-gold:hover {
  background: linear-gradient(95deg, var(--ch-terracotta) 0%, var(--ch-gold) 100%);
  color: var(--ch-cream);
  border-color: transparent;
  box-shadow: 0 0 32px rgba(201,149,26,0.55);
}

/* ============== type helpers ============== */
.eyebrow {
  font-family: var(--font-accent);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ch-gold);
  margin: 0 0 24px;
  display: inline-flex; align-items: center; gap: 14px;
}
.eyebrow--crimson { color: var(--ch-red); }
.eyebrow--cream { color: var(--ch-cream); }
.eyebrow span.rule {
  display: inline-block; width: 32px; height: 1px;
  background: currentColor; opacity: 0.6;
}

.h-display {
  font-family: var(--font-hero);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  line-height: 0.95;
  margin: 0;
  color: var(--ch-cream);
  text-wrap: balance;
}
.h-section {
  font-family: var(--font-section);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
  margin: 0;
  color: var(--ch-cream);
  text-wrap: balance;
}
.h-section--earth { color: var(--ch-earth-text); }
.h-section--gold { color: var(--ch-gold); }

.lede {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--ch-cream);
  opacity: 0.82;
  text-wrap: pretty;
  margin: 0;
}
.lede--earth { color: var(--ch-earth-text); opacity: 0.85; }

.sub-italic {
  font-family: var(--font-quote);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(20px, 2vw, 28px);
  color: var(--ch-gold);
  line-height: 1.4;
  margin: 0;
  text-wrap: balance;
}

/* ============== Hero ============== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 140px 24px 180px;
  text-align: center;
  background:
    radial-gradient(60% 55% at 50% 50%, rgba(224,123,42,0.32) 0%, rgba(204,34,0,0.18) 28%, transparent 68%),
    radial-gradient(80% 80% at 50% 50%, #A00000 0%, #7C0000 55%, #6B0000 100%);
  overflow: hidden;
}
.hero__wings-wrap {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 170%;
  max-width: 2200px;
  pointer-events: none;
  z-index: 1;
  will-change: transform, opacity;
}
.hero__wings {
  width: 100%;
  display: block;
  animation: wingBreath 4.4s ease-in-out infinite;
  filter: drop-shadow(0 0 60px rgba(201,149,26,0.35));
}
@keyframes wingBreath {
  0%,100% { transform: scale(1); filter: drop-shadow(0 0 60px rgba(201,149,26,0.35)); }
  50%     { transform: scale(1.025); filter: drop-shadow(0 0 90px rgba(201,149,26,0.55)); }
}
.hero__inner-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 760px; height: 760px;
  pointer-events: none;
  z-index: 2;
  background: radial-gradient(circle, rgba(255,233,176,0.35) 0%, rgba(204,34,0,0.18) 30%, transparent 65%);
  animation: glowPulse 4.4s ease-in-out infinite;
}
@keyframes glowPulse {
  0%,100% { opacity: 0.65; transform: translate(-50%,-50%) scale(1); }
  50%     { opacity: 1.0;  transform: translate(-50%,-50%) scale(1.04); }
}

/* Plasma streams */
.plasma {
  position: absolute;
  bottom: -40px;
  left: 50%;
  width: 6px;
  height: 70vh;
  pointer-events: none;
  border-radius: 999px;
  background: linear-gradient(to top,
    rgba(255,233,176,0) 0%,
    rgba(255,233,176,0.4) 20%,
    rgba(255,248,238,0.85) 50%,
    rgba(255,233,176,0.5) 80%,
    rgba(255,233,176,0) 100%);
  filter: blur(1.5px);
  opacity: 0.7;
  transform: translateX(-50%);
  animation: plasmaRise 8s ease-in-out infinite;
  z-index: 2;
}
.plasma--a { left: 48%; height: 60vh; width: 3px; animation-duration: 6s; opacity: 0.5; }
.plasma--b { left: 50%; height: 75vh; width: 5px; animation-duration: 8s; opacity: 0.7; }
.plasma--c { left: 52%; height: 65vh; width: 3px; animation-duration: 10s; opacity: 0.6; animation-delay: -3s; }
.plasma--d { left: 50.6%; height: 80vh; width: 2px; animation-duration: 7s; opacity: 0.4; animation-delay: -2s; }
@keyframes plasmaRise {
  0%   { transform: translateX(-50%) translateY(0%) scaleY(1); opacity: 0.2; }
  20%  { opacity: 0.7; }
  100% { transform: translateX(-50%) translateY(-30%) scaleY(1.2); opacity: 0; }
}

.hero__content {
  position: relative;
  z-index: 5;
  max-width: 980px;
  margin: 0 auto;
  width: 100%;
}
.hero__title {
  font-size: clamp(48px, 9.5vw, 124px);
  margin: 18px 0 18px;
  text-shadow: 0 0 60px rgba(201,149,26,0.4), 0 0 120px rgba(204,34,0,0.45);
}
.hero__roar-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin: 0 0 32px;
}
.hero__roar {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 72px);
  color: var(--ch-gold);
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin: 0;
  text-shadow: 0 0 50px rgba(201,149,26,0.4), 0 0 18px rgba(204,34,0,0.3);
  text-wrap: balance;
}
.hero__roar-word {
  letter-spacing: 0.08em;
  font-weight: 900;
  font-size: 1.05em;
  text-shadow: 0 0 70px rgba(201,149,26,0.7), 0 0 14px rgba(255,233,176,0.5);
}
.hero__sub {
  font-family: var(--font-quote);
  font-weight: 600;
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 28px);
  color: var(--ch-gold);
  margin: 0 0 28px;
  text-wrap: balance;
}
.hero__body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,248,238,0.82);
  max-width: 560px;
  margin: 0 auto 40px;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.hero__scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 5;
  font-family: var(--font-accent);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--ch-gold);
  text-transform: uppercase;
  animation: scrollPulse 2s ease-in-out infinite;
}
.hero__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--ch-gold), transparent);
}
.hero__scroll svg { width: 14px; height: 14px; stroke: var(--ch-gold); }
@keyframes scrollPulse {
  0%,100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* Cinematic fade-in for hero pieces */
.hero__fade {
  opacity: 0;
  transform: translateY(14px);
  animation: heroFade 1.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero__fade--1 { animation-delay: 0.05s; }
.hero__fade--2 { animation-delay: 0.45s; }
.hero__fade--3 { animation-delay: 0.95s; }
.hero__fade--4 { animation-delay: 1.30s; }
.hero__fade--5 { animation-delay: 1.65s; }
.hero__fade--6 { animation-delay: 2.10s; }
.hero__fade--7 { animation-delay: 2.40s; }
@keyframes heroFade {
  to { opacity: 1; transform: none; }
}

/* dot strip pop in */
.dot-strip-anim span {
  display: block;
  width: 100%; height: 100%;
  background-image: url('assets/dot-strip.svg');
  background-size: 800px 40px;
  background-repeat: repeat-x;
  background-position: center;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 1200ms var(--ease-warm), transform 1200ms var(--ease-warm);
}
.dot-strip-anim.is-in span { opacity: 1; transform: none; }

/* ============== About ============== */
.about {
  background: var(--ch-parchment);
  color: var(--ch-earth-text);
  position: relative;
}
.about::before {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 280px;
  background: linear-gradient(to bottom, transparent, rgba(122,59,30,0.22));
  pointer-events: none;
}
.about__grid {
  display: grid;
  grid-template-columns: 38% 62%;
  gap: 56px;
  align-items: stretch;
  max-width: 1180px;
  margin: 0 auto;
}
.about__media-sticky {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.about__grid > div:nth-child(2) {
  max-width: 620px;
  padding-top: 4px;
}
.about__portrait {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid var(--ch-gold);
  box-shadow: 0 0 0 1px rgba(201,149,26,0.3), 0 0 64px rgba(201,149,26,0.35);
  background: linear-gradient(170deg, #5C2A00, #3D1A00 60%, #1A0A00);
}
.about__media-card {
  width: 100%;
  padding: 18px 22px;
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  background: rgba(255, 248, 238, 0.6);
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}
.about__media-card-eyebrow {
  font-family: var(--font-accent);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ch-red);
}
.about__media-card-text {
  font-family: var(--font-section);
  font-size: 17px;
  font-weight: 600;
  color: var(--ch-earth-text);
  line-height: 1.3;
}
.about__media-card-meta {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ch-earth);
  opacity: 0.85;
}
.about__media-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 6px 0 2px;
  opacity: 0.7;
}
.about__media-ornament span {
  height: 1px;
  flex: 1;
  background: linear-gradient(to right, transparent, var(--ch-gold), transparent);
}
.about__media-ornament svg {
  flex: 0 0 auto;
  color: var(--ch-gold);
}
.about__portrait-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #1A0A00;
}
.about__caption {
  position: absolute;
  bottom: 14px; left: 14px;
  font-family: var(--font-accent);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: rgba(255,248,238,0.7);
  text-transform: uppercase;
}
.about__motif {
  margin-top: 28px;
  display: flex; justify-content: center;
}
.about__motif img {
  width: 120px;
  animation: motifSpin 30s linear infinite;
  opacity: 0.85;
}
@keyframes motifSpin {
  to { transform: rotate(360deg); }
}
.about__quote {
  text-align: center;
  max-width: 920px;
  margin: 96px auto 0;
  font-family: var(--font-quote);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(28px, 3.6vw, 48px);
  color: var(--ch-red);
  line-height: 1.25;
  text-shadow: 0 0 32px rgba(201,149,26,0.25);
  text-wrap: balance;
}
.about__quote-rule {
  display: block;
  width: 60px; height: 1px;
  margin: 32px auto 0;
  background: var(--ch-gold);
  opacity: 0.5;
}

.editorial-intro {
  font-family: var(--font-section);
  font-weight: 600;
  font-size: clamp(26px, 2.5vw, 32px);
  line-height: 1.35;
  color: var(--ch-earth-text);
  margin: 20px 0 28px;
  text-wrap: balance;
}
.about__body { padding-top: 4px; }

.about__p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.85;
  color: var(--ch-earth-text);
  margin: 0 0 24px;
  text-wrap: pretty;
}
.about__body > div + .about__p { margin-top: 16px; }
.about__p:last-child { margin-bottom: 0; }

/* ============== Services ============== */
.services {
  background: var(--ch-oxblood);
  position: relative;
}
.services__streaks {
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background: repeating-linear-gradient(
    180deg,
    transparent 0,
    transparent 60px,
    rgba(201,149,26,0.3) 60px,
    rgba(201,149,26,0.3) 61px
  );
  animation: streakFlow 15s linear infinite;
}
@keyframes streakFlow {
  from { background-position: 0 0; }
  to   { background-position: 0 -200px; }
}
.services__head { text-align: center; max-width: 880px; margin: 0 auto 72px; }
.services__head h2 { font-size: clamp(40px, 5.6vw, 72px); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.s-card {
  position: relative;
  padding: 36px 32px 32px;
  background: rgba(255,240,220,0.035);
  border: 1px solid rgba(201,149,26,0.22);
  border-radius: 8px;
  box-shadow: 0 0 0 1px rgba(201,149,26,0.0), 0 0 18px rgba(201,149,26,0.12);
  transition: transform 300ms var(--ease-warm),
              box-shadow 300ms var(--ease-warm),
              border-color 300ms var(--ease-warm);
}
.s-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--ch-red);
  border-radius: 8px 8px 0 0;
}
.s-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,149,26,0.7);
  box-shadow: 0 0 0 1px rgba(201,149,26,0.4), 0 0 40px rgba(201,149,26,0.35);
}
.s-card__icon {
  width: 44px; height: 44px;
  color: var(--ch-gold);
  margin-bottom: 24px;
  transition: transform 300ms var(--ease-warm);
}
.s-card:hover .s-card__icon { transform: scale(1.12); }
.s-card__title {
  font-family: var(--font-section);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ch-cream);
  margin: 0 0 12px;
  line-height: 1.2;
}
.s-card__body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,248,238,0.7);
  margin: 0;
}

.featured-card {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 32px;
  background: var(--ch-terracotta);
  border: 1px solid rgba(201,149,26,0.5);
  border-radius: 8px;
  padding: 36px 40px;
  position: relative;
  overflow: hidden;
}
.featured-card::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url('assets/dragon-scales.svg');
  background-size: 60px 52px;
  opacity: 0.1;
  pointer-events: none;
}
.featured-card__icon {
  width: 64px; height: 64px;
  color: var(--ch-gold);
  position: relative; z-index: 1;
}
.featured-card__copy { position: relative; z-index: 1; }
.featured-card__copy h3 {
  font-family: var(--font-section);
  font-weight: 600;
  font-size: 24px;
  color: var(--ch-cream);
  margin: 0 0 6px;
}
.featured-card__copy p {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ch-parchment);
  opacity: 0.85;
  margin: 0;
}
.featured-card a { position: relative; z-index: 1; }

.services__cta {
  margin-top: 64px;
  text-align: center;
}
.services__cta-note {
  margin-top: 20px;
  font-family: var(--font-body);
  font-style: italic;
  font-size: 14px;
  color: rgba(255,248,238,0.65);
}
.services__cta-note a {
  color: var(--ch-gold);
  border-bottom: 1px solid transparent;
}
.services__cta-note a:hover { border-bottom-color: var(--ch-gold); }

/* ============== Books ============== */
.books {
  background: linear-gradient(180deg, var(--ch-cream) 0%, var(--ch-parchment) 100%);
  color: var(--ch-earth-text);
  position: relative;
}
.books__head { text-align: center; max-width: 880px; margin: 0 auto 64px; }
.books__head .eyebrow {
  font-weight: 700;
  letter-spacing: 0.32em;
}
.books__head h2 {
  font-family: var(--font-section);
  font-weight: 600;
  font-size: clamp(34px, 4.8vw, 64px);
  color: var(--ch-earth-text);
  line-height: 1.05;
  margin: 16px 0 24px;
}
.books__declaration {
  font-family: var(--font-quote);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 1.75;
  color: var(--ch-oxblood);
  max-width: 720px;
  margin: 28px auto 0;
  padding: 0 16px;
  text-wrap: balance;
}
.books__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1080px;
  margin: 0 auto 88px;
}
.pillar {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.pillar__dot {
  flex: 0 0 auto;
  width: 10px; height: 10px;
  margin-top: 9px;
  border-radius: 999px;
  background: var(--ch-gold);
  box-shadow: 0 0 12px rgba(201,149,26,0.6);
}
.pillar p {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ch-earth-text);
  margin: 0;
}
.pillar strong {
  font-family: var(--font-section);
  font-weight: 600;
  font-style: italic;
  font-size: 19px;
  display: block;
  margin-bottom: 4px;
  color: var(--ch-crimson);
}
.book-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 780px;
  margin: 0 auto;
}
/* When only one title is shown, center it at a comfortable width */
.book-row--single {
  grid-template-columns: minmax(0, 300px);
  justify-content: center;
}
.book {
  text-align: left;
  transition: transform 350ms var(--ease-warm);
}
.book:hover { transform: rotate(2deg) translateY(-8px); }
.book__cover {
  aspect-ratio: 3/4;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(122,59,30,0.35), 0 0 0 1px rgba(201,149,26,0.4);
  transition: box-shadow 350ms var(--ease-warm);
}
.book:hover .book__cover {
  box-shadow: 0 24px 48px rgba(122,59,30,0.45), 0 0 0 1px var(--ch-gold), 0 0 32px rgba(201,149,26,0.4);
}
.book__cover-inner {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: space-between;
  padding: 22px 18px;
  color: var(--ch-cream);
}
.book__cover--a { background: radial-gradient(circle at 30% 30%, #E07B2A, #7A3B1E 70%); }
.book__cover--b { background: radial-gradient(circle at 60% 70%, #1A3B8B, #0D1B4B 70%); }
.book__cover--c { background: radial-gradient(circle at 40% 50%, #2ECC71, #1f6b3a 70%); }
.book__cover--image { background: #2a0d0d; }
.book__cover-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.book__cover-mark {
  font-family: var(--font-accent);
  font-size: 9px; letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.7;
}
.book__cover-title {
  font-family: var(--font-section);
  font-weight: 600;
  font-style: italic;
  font-size: 26px;
  line-height: 1.05;
  text-wrap: balance;
}
.book__cover-author {
  font-family: var(--font-accent);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.85;
}
.book__cover-art {
  position: absolute;
  inset: 0;
  opacity: 0.85;
  pointer-events: none;
}
.book__meta { margin: 14px 0 4px; }
.book__meta h3 {
  font-family: var(--font-section);
  font-weight: 600;
  font-size: 18px;
  color: var(--ch-earth-text);
  margin: 0 0 6px;
  line-height: 1.2;
}
.book__meta p {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.5;
  color: var(--ch-earth);
  margin: 0;
}
.book__more {
  font-family: var(--font-accent);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--ch-crimson);
  text-decoration: none;
  border: 0;
  text-transform: uppercase;
  margin-top: 12px;
  display: inline-block;
}
.book__more::after {
  content: " →";
  transition: transform 250ms var(--ease-warm);
  display: inline-block;
}
.book:hover .book__more::after { transform: translateX(4px); }

.books__quote {
  margin-top: 96px;
  padding: 64px 32px;
  background: var(--ch-amber);
  border-radius: 8px;
  text-align: center;
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(201,149,26,0.35);
}
.books__quote p {
  font-family: var(--font-quote);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.3;
  color: var(--ch-earth-text);
  max-width: 800px;
  margin: 0 auto;
  text-wrap: balance;
}
.books__quote .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 600ms var(--ease-warm), transform 600ms var(--ease-warm);
}
.books__quote.is-in .word {
  opacity: 1;
  transform: none;
}

/* ============== SoulPath ============== */
.soulpath {
  background: linear-gradient(180deg, #1A3B8B 0%, #0D1B4B 70%, #06102E 100%);
  position: relative;
  color: var(--ch-cream);
  overflow: hidden;
}
.soulpath__stars {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 0;
}
.soulpath__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}
.soulpath h2 {
  font-size: clamp(40px, 5vw, 64px);
  margin: 16px 0 24px;
}
.offering-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.offering-list li {
  padding-left: 22px;
  border-left: 3px solid var(--ch-gold);
  font-family: var(--font-section);
  font-weight: 600;
  font-style: italic;
  font-size: 22px;
  color: var(--ch-cream);
  line-height: 1.25;
}
.offering-list li span {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 400;
  display: block;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: rgba(255,248,238,0.6);
  margin-top: 4px;
}
.soulpath__cta {
  margin-top: 88px;
  padding: 36px 32px;
  border: 1px solid rgba(201,149,26,0.4);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: rgba(26, 10, 0, 0.35);
  backdrop-filter: blur(4px);
}
.soulpath__cta p {
  font-family: var(--font-quote);
  font-style: italic;
  font-size: 22px;
  color: var(--ch-cream);
  margin: 0;
}

/* ============== Yidaki ============== */
.yidaki {
  background:
    radial-gradient(60% 50% at 50% 100%, rgba(255,233,176,0.45) 0%, rgba(201,149,26,0.12) 35%, transparent 65%),
    linear-gradient(180deg, #FF9933 0%, #E07B2A 55%, #C45A14 100%);
  position: relative;
  color: var(--ch-cream);
}
.yidaki__bg {
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(120% 70% at 50% 110%, rgba(255,233,176,0.25), transparent 60%),
    radial-gradient(80% 40% at 50% 110%, rgba(224,123,42,0.4), transparent 70%);
  opacity: 0.7;
}
.yidaki__bg::after {
  content: "";
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 35%;
  background: linear-gradient(to top, rgba(196,90,20,0.55), transparent);
}
.yidaki__head {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto 56px;
}
.yidaki__head h2 {
  font-size: clamp(44px, 6.4vw, 80px);
  margin: 16px 0 24px;
}
.wave-wrap {
  width: 100%;
  margin: 32px 0 64px;
  display: flex; justify-content: center;
}
.wave-wrap svg { width: 100%; max-width: 1100px; }
.wave-path {
  stroke: var(--ch-gold);
  stroke-width: 3;
  fill: none;
  opacity: 0.7;
  filter: drop-shadow(0 0 12px rgba(201,149,26,0.65));
  animation: waveAmp 4s ease-in-out infinite;
  transform-origin: 50% 50%;
}
.wave-path--b { opacity: 0.4; animation-delay: -1.5s; stroke-width: 2; }
@keyframes waveAmp {
  0%,100% { transform: scaleY(1); }
  50%     { transform: scaleY(1.7); }
}

.yidaki__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 1000px;
  margin: 0 auto;
}
.y-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  background: rgba(61,0,0,0.55);
  border: 1px solid rgba(201,149,26,0.35);
  border-radius: 8px;
  padding: 22px 26px;
  transition: transform 300ms var(--ease-warm),
              border-color 300ms var(--ease-warm),
              box-shadow 300ms var(--ease-warm);
  position: relative;
}
.y-card:hover {
  transform: translateY(-4px);
  border-color: var(--ch-gold);
  box-shadow: 0 0 32px rgba(201,149,26,0.35);
}
.y-card__dot {
  width: 28px; height: 28px;
  border-radius: 999px;
  background: radial-gradient(circle, var(--ch-gold) 0%, var(--ch-red) 70%);
  box-shadow: 0 0 12px rgba(201,149,26,0.7);
}
.y-card__title {
  font-family: var(--font-section);
  font-weight: 600;
  font-style: italic;
  font-size: 19px;
  color: var(--ch-cream);
  margin: 0;
}
.yidaki__loc {
  text-align: center;
  margin: 48px 0 32px;
  font-family: var(--font-accent);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--ch-gold);
  text-transform: uppercase;
}
.yidaki__cta-row { text-align: center; }

.dot-wave {
  position: relative;
  height: 64px;
  margin-top: 80px;
  overflow: hidden;
}

/* ============== Shop ============== */
.shop {
  background:
    radial-gradient(70% 50% at 50% 20%, rgba(224,123,42,0.3) 0%, transparent 60%),
    linear-gradient(180deg, #8B0000 0%, #5C0000 100%);
  position: relative;
  color: var(--ch-cream);
}
.shop__head { text-align: center; max-width: 880px; margin: 0 auto 56px; }
.shop__head h2 {
  font-size: clamp(44px, 6.4vw, 80px);
  margin: 16px 0 24px;
}
.shop__head h2 .gold {
  color: var(--ch-gold);
  text-shadow: 0 0 32px rgba(201,149,26,0.45);
  display: block;
}
.shop__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto 72px;
}
.p-card {
  position: relative;
  background: var(--ch-parchment);
  border: 1px solid rgba(201,149,26,0.5);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  transition: transform 300ms var(--ease-warm),
              box-shadow 300ms var(--ease-warm);
  overflow: hidden;
}
.p-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 36px rgba(201,149,26,0.45);
}
.p-card__badge {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 2;
  font-family: var(--font-accent);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ch-cream);
  background: var(--ch-crimson);
  padding: 7px 12px;
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(204,34,0,0.4);
}
.p-card__art {
  aspect-ratio: 1/1;
  border-radius: 4px;
  margin: 12px 0 20px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.p-card__art--tee { background: linear-gradient(180deg, #3D0000, #7A3B1E); }
.p-card__art--art { background: radial-gradient(circle at 30% 30%, #E07B2A, #5C2A00 70%); }
.p-card__art--book { background: linear-gradient(170deg, #2ECC71 0%, #1f6b3a 70%); }
.p-card h3 {
  font-family: var(--font-section);
  font-weight: 600;
  font-size: 20px;
  color: var(--ch-earth-text);
  margin: 0 0 4px;
}
.p-card p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ch-earth);
  margin: 0;
}

.notify {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.notify h3 {
  font-family: var(--font-section);
  font-weight: 600;
  font-style: italic;
  font-size: 24px;
  color: var(--ch-cream);
  margin: 0 0 20px;
}
.notify__form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  margin: 0 auto;
  max-width: 480px;
}
.notify__input {
  background: rgba(26,10,0,0.5);
  border: 1px solid var(--ch-gold);
  border-radius: 999px;
  padding: 0 24px;
  height: 52px;
  color: var(--ch-cream);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color 250ms, box-shadow 250ms;
  outline: 0;
}
.notify__input:focus {
  border-color: var(--ch-gold);
  box-shadow: 0 0 0 1px var(--ch-gold), 0 0 16px rgba(201,149,26,0.45);
}
.notify__input::placeholder { color: rgba(255,248,238,0.5); }
.notify__sent {
  font-family: var(--font-quote);
  font-style: italic;
  font-size: 22px;
  color: var(--ch-gold);
  margin: 0;
}

/* ============== Contact ============== */
.contact {
  background: linear-gradient(180deg, #7A3B1E 0%, #3D0000 100%);
  text-align: center;
  position: relative;
}
.contact h2 {
  font-size: clamp(40px, 6vw, 72px);
  margin: 16px 0 24px;
}
.contact p {
  font-family: var(--font-body);
  font-size: 18px;
  color: rgba(255,248,238,0.8);
  max-width: 720px;
  margin: 0 auto 28px;
  line-height: 1.6;
}
.contact__email {
  display: inline-block;
  font-family: var(--font-section);
  font-weight: 600;
  font-style: italic;
  font-size: clamp(24px, 2.6vw, 34px);
  color: var(--ch-gold);
  text-decoration: none;
  border: 0;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  position: relative;
  margin-bottom: 48px;
  transition: color 250ms;
}
.contact__email::after {
  content: "";
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--ch-gold);
  transition: width 320ms var(--ease-warm);
}
.contact__email:hover::after { width: 100%; }
.contact__email:hover { color: var(--ch-amber); }
.contact__cta { display: flex; justify-content: center; }

.contact__channels {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  margin: 32px 0 8px;
}
.contact__channel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  border: 0;
  padding: 4px 8px;
  transition: transform var(--dur-fast) var(--ease-warm);
}
.contact__channel:hover { transform: translateY(-1px); }
.contact__channel-label {
  font-family: var(--font-accent);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 240, 220, 0.55);
}
.contact__channel-value {
  font-family: var(--font-section);
  font-weight: 600;
  font-size: clamp(20px, 2.4vw, 30px);
  color: var(--ch-gold);
  position: relative;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0% 1px;
  transition: background-size var(--dur-base) var(--ease-warm), color var(--dur-fast) var(--ease-warm);
}
.contact__channel:hover .contact__channel-value {
  color: var(--ch-amber);
  background-size: 100% 1px;
}

/* ----- Contact payment / support ----- */
.contact__pay {
  margin: 64px auto 0;
  max-width: 760px;
}
.contact__pay .eyebrow { justify-content: center; }
.contact__pay-note {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255, 240, 220, 0.62);
  max-width: 520px;
  margin: 14px auto 28px;
}
.contact__pay-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.pay-card {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  text-align: left;
  padding: 20px 22px;
  border: 1px solid var(--ch-gold-border);
  border-radius: var(--radius-card);
  background: linear-gradient(135deg, rgba(201,149,26,0.06), rgba(255,240,220,0.02));
  text-decoration: none;
  transition: transform var(--dur-base) var(--ease-warm),
              border-color var(--dur-fast) var(--ease-warm),
              box-shadow var(--dur-base) var(--ease-warm);
}
.pay-card:hover {
  transform: translateY(-3px);
  border-color: var(--ch-gold);
  box-shadow: var(--glow-card);
}
.pay-card__icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: var(--ch-gold);
  border: 1px solid var(--ch-gold-border);
  background: rgba(201,149,26,0.07);
  transition: color var(--dur-fast) var(--ease-warm),
              border-color var(--dur-fast) var(--ease-warm);
}
.pay-card:hover .pay-card__icon {
  color: var(--ch-amber);
  border-color: var(--ch-amber);
}
.pay-card__body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.pay-card__name {
  font-family: var(--font-section);
  font-weight: 600;
  font-size: 20px;
  color: var(--ch-cream);
  letter-spacing: 0.01em;
}
.pay-card__handle {
  font-family: var(--font-accent);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 240, 220, 0.5);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pay-card__arrow {
  margin-left: auto;
  font-size: 18px;
  color: var(--ch-gold);
  transition: transform var(--dur-base) var(--ease-warm),
              color var(--dur-fast) var(--ease-warm);
}
.pay-card:hover .pay-card__arrow {
  color: var(--ch-amber);
  transform: translate(2px, -2px);
}

/* ============== Footer ============== */
.footer {
  background: var(--ch-oxblood);
  color: rgba(255,248,238,0.8);
  position: relative;
  padding: 96px 0 32px;
  overflow: hidden;
}
.footer__bg {
  position: absolute;
  top: 60%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  opacity: 0.04;
  pointer-events: none;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer__brand {
  font-family: var(--font-accent);
  font-size: 15px;
  letter-spacing: 0.2em;
  color: var(--ch-gold);
  text-transform: uppercase;
  margin: 0 0 10px;
}
.footer__name {
  font-family: var(--font-quote);
  font-weight: 500;
  font-style: italic;
  font-size: 17px;
  color: var(--ch-cream);
  margin: 0 0 4px;
}
.footer__loc {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,248,238,0.6);
  margin: 0;
}
.footer__col h4 {
  font-family: var(--font-accent);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--ch-gold);
  text-transform: uppercase;
  margin: 0 0 16px;
}
.footer__nav {
  display: flex; flex-direction: column;
  gap: 10px;
  list-style: none; padding: 0; margin: 0;
}
.footer__nav a {
  font-family: var(--font-accent);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--ch-cream);
  text-decoration: none;
  border: 0;
  text-transform: uppercase;
  transition: color 250ms;
}
.footer__nav a:hover { color: var(--ch-gold); }
.footer__contact a {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ch-gold);
  text-decoration: none;
  border: 0;
}
.footer__ig-cta {
  display: inline-flex !important;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  border: 1px solid var(--ch-gold) !important;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(224,123,42,0.18), rgba(201,149,26,0.18));
  color: var(--ch-gold) !important;
  margin-bottom: 18px;
  transition: transform var(--dur-fast) var(--ease-warm), background var(--dur-base) var(--ease-warm), box-shadow var(--dur-base) var(--ease-warm);
  box-shadow: 0 0 24px rgba(201,149,26,0.25);
}
.footer__ig-cta:hover {
  transform: translateY(-1px);
  background: linear-gradient(90deg, rgba(224,123,42,0.35), rgba(201,149,26,0.35));
  box-shadow: 0 0 36px rgba(201,149,26,0.4);
}
.footer__ig-cta svg { width: 22px; height: 22px; }
.footer__ig-cta > span {
  display: flex; flex-direction: column;
  line-height: 1.2;
}
.footer__ig-label {
  font-family: var(--font-accent);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.7;
}
.footer__ig-handle {
  font-family: var(--font-section);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.footer__email {
  font-size: 13px !important;
  opacity: 0.75;
}
.footer__socials {
  display: flex; gap: 14px;
  margin-top: 16px;
}
.footer__socials a {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(201,149,26,0.4);
  color: var(--ch-gold);
  transition: background 250ms, color 250ms, border-color 250ms;
}
.footer__socials a:hover {
  background: var(--ch-gold);
  color: var(--ch-oxblood);
  border-color: var(--ch-gold);
}
.footer__divider {
  position: relative;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,149,26,0.5), transparent);
  margin: 0 0 24px;
}
.footer__divider::after {
  content: "";
  position: absolute; left: 50%; top: 50%;
  width: 8px; height: 8px;
  background: var(--ch-gold);
  transform: translate(-50%, -50%) rotate(45deg);
}
.footer__legal {
  text-align: center;
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,248,238,0.5);
}

/* ============== Manifesto (The Roar) section ============== */
.manifesto {
  background: var(--ch-oxblood);
  position: relative;
  overflow: hidden;
}
.manifesto::before {
  content: "";
  position: absolute;
  top: 18%; left: 50%;
  width: 90%; max-width: 1100px;
  height: 700px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(201,149,26,0.12) 0%, rgba(204,34,0,0.08) 35%, transparent 70%);
  pointer-events: none;
  filter: blur(40px);
  z-index: 0;
}
.manifesto .container { position: relative; z-index: 1; max-width: 1180px; }
.manifesto__head {
  text-align: center;
  margin: 0 auto 56px;
}

/* opening movement */
.manifesto__opening {
  text-align: center;
  margin: 0 auto 64px;
  max-width: 920px;
}
.manifesto__opening-lede {
  font-family: var(--font-section);
  font-weight: 500;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.6;
  color: rgba(255,248,238,0.85);
  max-width: 680px;
  margin: 0 auto 36px;
  text-wrap: balance;
}
.manifesto__roar {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(56px, 8vw, 96px);
  color: var(--ch-gold);
  letter-spacing: 0.01em;
  line-height: 1.05;
  margin: 0;
  text-shadow: 0 0 60px rgba(201,149,26,0.45), 0 0 24px rgba(204,34,0,0.35);
}
.manifesto__roar-word {
  letter-spacing: 0.08em;
  font-size: 1.05em;
  text-shadow: 0 0 80px rgba(201,149,26,0.7), 0 0 16px rgba(255,233,176,0.5);
}

/* photo placeholder */
.manifesto__photo {
  position: relative;
  width: 100%;
  max-width: 900px;
  height: 500px;
  margin: 0 auto 80px;
  border: 1px solid rgba(201,149,26,0.4);
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(255,233,176,0.18) 0%, rgba(201,149,26,0.08) 22%, transparent 55%),
    linear-gradient(160deg, #8B0000 0%, #5C1500 45%, #3D0000 100%);
  box-shadow: 0 0 0 1px rgba(201,149,26,0.18), 0 0 60px rgba(201,149,26,0.28), inset 0 0 80px rgba(204,34,0,0.35);
}
.manifesto__photo-orb {
  position: absolute;
  top: 50%; left: 50%;
  width: 240px; height: 240px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,248,238,0.85) 0%, rgba(255,233,176,0.5) 30%, rgba(201,149,26,0.18) 60%, transparent 80%);
  filter: blur(8px);
  animation: orbPulse 4.2s ease-in-out infinite;
  pointer-events: none;
}
@keyframes orbPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.85; }
  50%      { transform: translate(-50%, -50%) scale(1.08); opacity: 1; }
}
.manifesto__photo-label {
  position: absolute;
  bottom: 22px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-accent);
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--ch-gold);
  text-transform: uppercase;
  white-space: nowrap;
}

/* movements */
.manifesto__movement {
  max-width: 680px;
  margin: 0 auto 56px;
}
.manifesto__paragraph {
  font-family: var(--font-section);
  font-weight: 500;
  font-size: clamp(18px, 1.7vw, 20px);
  line-height: 1.85;
  color: var(--ch-cream);
  margin: 0 0 18px;
  text-wrap: balance;
  text-align: center;
}
.manifesto__paragraph:last-child { margin-bottom: 0; }
.manifesto__paragraph--soft {
  color: rgba(255,248,238,0.8);
}

/* display fragments */
.manifesto__display {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(38px, 5.2vw, 56px);
  color: var(--ch-gold);
  text-align: center;
  letter-spacing: 0.01em;
  line-height: 1.1;
  margin: 24px auto 24px;
  text-shadow: 0 0 40px rgba(201,149,26,0.35);
  text-wrap: balance;
}

/* lineage block */
.manifesto__lineage {
  text-align: center;
  margin: 0 auto 56px;
  max-width: 760px;
}
.manifesto__lineage-names {
  font-family: var(--font-accent);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--ch-gold);
  line-height: 2;
  margin: 0 0 24px;
  text-transform: none;
}
.manifesto__lineage-blood {
  font-family: var(--font-section);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(18px, 1.7vw, 20px);
  line-height: 1.7;
  color: var(--ch-cream);
  margin: 0;
  text-wrap: balance;
}

/* rule between movements */
.manifesto__rule {
  display: block;
  width: 60px;
  height: 1px;
  margin: 56px auto;
  background: var(--ch-gold);
  opacity: 0.5;
  border: 0;
}

/* closing tercet */
.manifesto__closing {
  text-align: center;
  max-width: 760px;
  margin: 24px auto 0;
}
.manifesto__closing p {
  font-family: var(--font-quote);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 2.6vw, 28px);
  line-height: 1.55;
  color: var(--ch-gold);
  margin: 0 0 8px;
  text-shadow: 0 0 28px rgba(201,149,26,0.3);
  text-wrap: balance;
}
.manifesto__closing p:last-child { margin-bottom: 0; }

/* ============== Services - narrative arc layout ============== */
.services__rule {
  display: block;
  height: 1px;
  width: 100%;
  max-width: 720px;
  margin: 56px auto;
  border: 0;
  background: linear-gradient(to right, transparent, rgba(201,149,26,0.5), transparent);
}
.services__chapter-label {
  text-align: center;
  font-family: var(--font-accent);
  font-size: 13px;
  letter-spacing: 0.28em;
  color: var(--ch-gold);
  text-transform: uppercase;
  margin: 0 0 40px;
}

/* Image placeholders (lead, portrait, feature, column) */
.s-photo {
  position: relative;
  width: 100%;
  border: 1px solid rgba(201,149,26,0.38);
  border-radius: 10px;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(255,233,176,0.18) 0%, rgba(201,149,26,0.08) 22%, transparent 55%),
    linear-gradient(160deg, #8B0000 0%, #5C1500 45%, #3D0000 100%);
  box-shadow: 0 0 0 1px rgba(201,149,26,0.16), 0 0 50px rgba(201,149,26,0.22), inset 0 0 70px rgba(204,34,0,0.3);
}
.s-photo__orb {
  position: absolute;
  top: 50%; left: 50%;
  width: 38%;
  aspect-ratio: 1/1;
  max-width: 220px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,248,238,0.78) 0%, rgba(255,233,176,0.42) 32%, rgba(201,149,26,0.15) 62%, transparent 82%);
  filter: blur(6px);
  animation: orbPulse 4.4s ease-in-out infinite;
  pointer-events: none;
}
.s-photo__label {
  position: absolute;
  bottom: 16px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-accent);
  font-size: 10px;
  letter-spacing: 0.26em;
  color: var(--ch-gold);
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  max-width: calc(100% - 32px);
  text-shadow: 0 0 12px rgba(0,0,0,0.6);
}
.s-photo--lead {
  aspect-ratio: 16/7;
  max-height: 420px;
}
.s-photo--portrait {
  aspect-ratio: 4/5;
  max-width: 280px;
}
.s-photo--portrait .s-photo__orb { max-width: 140px; }
.s-photo--portrait .s-photo__label { font-size: 9px; letter-spacing: 0.22em; }
.s-photo--feature {
  aspect-ratio: 21/8;
  max-height: 320px;
}
.s-photo--column {
  aspect-ratio: 16/7;
  border-radius: 6px;
  margin-bottom: 18px;
}
.s-photo--column .s-photo__orb { max-width: 90px; filter: blur(4px); }
.s-photo--column .s-photo__label { font-size: 9px; letter-spacing: 0.22em; bottom: 10px; }

/* Lead photo + feature photo wrappers */
.services__lead-photo {
  max-width: 960px;
  margin: 0 auto 56px;
}
.services__feature-photo {
  max-width: 960px;
  margin: 48px auto 0;
}

/* Identity block - 2-col with portrait */
.services__identity {
  margin: 0 auto;
  max-width: 920px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: center;
  background: rgba(255,240,220,0.03);
  border: 1px solid rgba(201,149,26,0.28);
  border-radius: 8px;
  padding: 36px 40px;
}
.services__identity-portrait {
  display: flex;
  justify-content: center;
}
.services__identity-portrait-img {
  display: block;
  width: 100%;
  max-width: 280px;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
  border: 1px solid rgba(201,149,26,0.38);
  border-radius: 10px;
  box-shadow: 0 0 0 1px rgba(201,149,26,0.16), 0 0 50px rgba(201,149,26,0.22);
}
.services__identity-body {
  text-align: left;
}
.services__identity-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 4.2vw, 48px);
  color: var(--ch-cream);
  letter-spacing: 0.04em;
  margin: 0 0 12px;
  line-height: 1.05;
  text-shadow: 0 0 28px rgba(201,149,26,0.35);
}
.services__identity-titles {
  font-family: var(--font-accent);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--ch-gold);
  text-transform: uppercase;
  margin: 0 0 20px;
}
.services__identity-titles .sep {
  display: inline-block;
  margin: 0 10px;
  color: rgba(201,149,26,0.6);
}
.services__identity-blurb {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 16px;
  color: var(--ch-cream);
  line-height: 1.8;
  margin: 0;
}
.services__identity-blurb p { margin: 0; }
.services__identity-blurb p + p { margin-top: 4px; }

/* Remove/Restore moment - borderless, typographic */
.services__rr {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 16px;
  text-align: center;
}
.services__rr-intro {
  font-family: var(--font-quote);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--ch-gold);
  margin: 0 0 40px;
  text-shadow: 0 0 16px rgba(201,149,26,0.25);
}
.services__rr-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin: 0 0 48px;
  text-align: left;
}
.services__rr-col h4 {
  font-family: var(--font-accent);
  font-size: 13px;
  letter-spacing: 0.22em;
  color: var(--ch-gold);
  text-transform: uppercase;
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(201,149,26,0.3);
}
.services__rr-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 24px;
}
.services__rr-list li {
  font-family: var(--font-section);
  font-weight: 500;
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--ch-cream);
  line-height: 1.7;
  position: relative;
  padding-left: 16px;
}
.services__rr-list li::before {
  content: "·";
  position: absolute;
  left: 4px;
  top: -1px;
  color: var(--ch-gold);
  font-size: 18px;
  line-height: 1.5;
}
.services__rr-statement {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(24px, 2.8vw, 32px);
  color: var(--ch-cream);
  max-width: 720px;
  margin: 0 auto 14px;
  line-height: 1.2;
  text-wrap: balance;
  text-shadow: 0 0 24px rgba(201,149,26,0.18);
}
.services__rr-tagline {
  font-family: var(--font-accent);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--ch-gold);
  text-transform: uppercase;
  margin: 0;
}

/* 14 numbered services */
.services__numbered {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 0 0 28px;
}
.n-card {
  position: relative;
  padding: 22px 22px 22px 26px;
  background: rgba(255,240,220,0.03);
  border: 1px solid rgba(201,149,26,0.2);
  border-left: 3px solid #CC2200;
  border-radius: 6px;
  transition: transform 300ms var(--ease-warm),
              border-color 300ms var(--ease-warm),
              box-shadow 300ms var(--ease-warm);
}
.n-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,149,26,0.6);
  box-shadow: 0 0 0 1px rgba(201,149,26,0.3), 0 0 30px rgba(201,149,26,0.3);
}
.n-card__num {
  font-family: var(--font-accent);
  font-size: 11px;
  color: var(--ch-gold);
  letter-spacing: 0.22em;
  margin: 0 0 6px;
}
.n-card__title {
  font-family: var(--font-section);
  font-weight: 600;
  font-size: 18px;
  color: var(--ch-cream);
  margin: 0;
  line-height: 1.3;
}

/* Highlight card (black magic) */
.services__highlight {
  margin: 24px auto 0;
  max-width: 720px;
  padding: 26px 32px;
  background: #8B0000;
  border: 1px solid var(--ch-gold);
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 0 0 1px rgba(201,149,26,0.25), 0 0 40px rgba(204,34,0,0.4);
}
.services__highlight-title {
  font-family: var(--font-accent);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--ch-gold);
  text-transform: uppercase;
  margin: 0 0 8px;
  line-height: 1.5;
}
.services__highlight-sub {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 15px;
  color: rgba(255,248,238,0.92);
  margin: 0;
}

/* 2-col offerings */
.services__offer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 880px;
  margin: 0 auto 36px;
}
.offer-col {
  padding: 24px 22px;
  background: rgba(255,240,220,0.025);
  border: 1px solid rgba(201,149,26,0.18);
  border-radius: 8px;
}
.offer-col h4 {
  font-family: var(--font-accent);
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--ch-gold);
  text-transform: uppercase;
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201,149,26,0.22);
}
.offer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.offer-col li {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,248,238,0.82);
  line-height: 1.7;
  padding: 4px 0;
}

/* How We Guide Your Transformation block */
.services__guide {
  max-width: 820px;
  margin: 0 auto 48px;
  text-align: center;
  padding: 0 16px;
}
.services__guide-title {
  font-family: var(--font-section);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 42px);
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--ch-gold);
  margin: 0 0 24px;
  text-wrap: balance;
}
.services__guide-body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.8;
  color: var(--ch-cream);
  opacity: 0.88;
  margin: 0;
  text-wrap: pretty;
}

/* What I Connect To block */
.services__connect {
  max-width: 820px;
  margin: 0 auto 48px;
  text-align: center;
  padding: 0 16px;
}
.services__connect-title {
  font-family: var(--font-section);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 42px);
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--ch-gold);
  margin: 0 0 28px;
  text-wrap: balance;
}

/* Pills */
.services__pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 0 8px;
}
.s-pill {
  font-family: var(--font-accent);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--ch-gold);
  text-transform: uppercase;
  padding: 7px 16px;
  border: 1px solid rgba(201,149,26,0.4);
  border-radius: 999px;
  background: transparent;
  transition: background 250ms, border-color 250ms;
}
.s-pill:hover { background: rgba(201,149,26,0.12); border-color: var(--ch-gold); }

/* Closing block */
.services__closing {
  text-align: center;
  margin: 0 auto 40px;
  max-width: 880px;
  padding: 8px 16px;
}
.services__closing-eyebrow {
  font-family: var(--font-accent);
  font-size: 13px;
  letter-spacing: 0.25em;
  color: var(--ch-gold);
  text-transform: uppercase;
  line-height: 2;
  margin: 0 0 28px;
}
.services__closing-eyebrow span {
  display: block;
}
.services__closing-statement {
  font-family: var(--font-quote);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 2.2vw, 24px);
  color: var(--ch-cream);
  line-height: 1.5;
  margin: 0 0 24px;
  text-wrap: balance;
}
.services__closing-note {
  font-family: var(--font-body);
  font-size: 17px;
  color: rgba(255,248,238,0.8);
  margin: 0;
}

/* ============== responsive ============== */
@media (max-width: 1080px) {
  .container { padding: 0 24px; }
  .services__grid, .shop__grid, .book-row { grid-template-columns: repeat(2, 1fr); }
  .books__pillars { grid-template-columns: 1fr; gap: 28px; }
  .about__grid { grid-template-columns: 38% 62%; gap: 48px; max-width: 100%; }
  .soulpath__grid { gap: 56px; }
  .hero__wings-wrap { width: 150%; }
  .services__grid { gap: 16px; }
}

@media (max-width: 840px) {
  .section { padding: 80px 0; }
  .container { padding: 0 24px; }
  .about__grid, .soulpath__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__media-sticky { position: static; top: auto; width: 100%; max-width: 520px; margin: 0 auto; gap: 16px; }
  .about__portrait { width: 100%; margin: 0; }
  .about__media-card { margin: 0; }
  .services__grid, .shop__grid, .book-row, .yidaki__grid { grid-template-columns: 1fr; }
  .featured-card { grid-template-columns: 1fr; text-align: center; }
  .featured-card__icon { margin: 0 auto; }
  .soulpath__cta { flex-direction: column; text-align: center; }
  .footer__grid { grid-template-columns: 1fr; }
  .nav__overlay a { font-size: 16px; }

  /* Hero */
  .hero { min-height: auto; padding: 110px 20px 130px; }
  .hero__title { font-size: 56px; letter-spacing: -0.01em; }
  .hero__roar-row { gap: 28px; margin-bottom: 28px; }
  .hero__roar { font-size: 40px; }
  .hero__sub { font-size: 22px; color: #FFFFFF; }
  .hero__body { font-size: 16px; max-width: 100%; }
  .hero__wings-wrap { width: 180%; }
  .hero__ctas { flex-direction: column; align-items: stretch; width: 100%; max-width: 340px; margin: 0 auto; }
  .hero__ctas .btn { width: 100%; }
  .hero__scroll { display: none; }
  .hero .eyebrow { font-size: 10px; flex-wrap: wrap; justify-content: center; }
  .hero .eyebrow .rule { display: none; }

  /* About */
  .about__grid { gap: 36px; max-width: 100%; }
  .about__media-card { padding: 16px 18px; }
  .about__media-card-text { font-size: 17px; }
  .about__grid > div:nth-child(2) { max-width: 100%; padding-top: 0; }
  .about__quote { margin-top: 56px; font-size: 28px; padding: 0 8px; }
  .about .lede { font-size: 17px; line-height: 1.8; margin-bottom: 24px; }
  .about__declaration { margin: 4px 0 28px; }
  .about__stanza { margin: 28px 0; padding-left: 16px; }
  .about__display { margin: 28px 0; }
  .editorial-intro { font-size: 24px; margin: 24px 0 24px; }

  /* Services */
  .services__head { margin-bottom: 40px; }
  .services__head h2 { font-size: 40px; }
  .s-card { padding: 28px 24px 24px; }
  .services__cta { margin-top: 48px; }
  .services__lead-photo { margin-bottom: 40px; }
  .services__feature-photo { margin: 36px auto 0; }
  .services__identity {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px 24px;
    text-align: center;
  }
  .services__identity-body { text-align: center; }
  .services__identity-portrait { justify-content: center; }
  .services__rule { margin: 44px auto; }
  .services__chapter-label { font-size: 12px; letter-spacing: 0.22em; margin-bottom: 32px; }
  .services__rr { padding: 0 8px; }
  .services__rr-grid { grid-template-columns: 1fr; gap: 36px; }
  .services__rr-list { grid-template-columns: 1fr 1fr; gap: 4px 16px; }
  .services__numbered { grid-template-columns: 1fr; gap: 12px; }
  .services__offer-grid { grid-template-columns: 1fr; gap: 16px; }
  .services__highlight { padding: 22px 24px; }
  .services__highlight-title { font-size: 12px; letter-spacing: 0.18em; }
  .services__pills { gap: 8px; }
  .services__closing { padding: 0 12px; }

  /* Service photos */
  .s-photo--lead { aspect-ratio: 16/9; max-height: 360px; }
  .s-photo--feature { aspect-ratio: 16/9; max-height: 280px; }
  .s-photo--portrait { max-width: 240px; }
  .services__identity-portrait-img { max-width: 240px; }
  .s-photo--column { aspect-ratio: 16/6; }

  /* Manifesto */
  .manifesto__head { margin-bottom: 40px; }
  .manifesto__opening { margin-bottom: 48px; }
  .manifesto__opening-lede { font-size: 18px; margin-bottom: 28px; }
  .manifesto__roar { font-size: 64px; }
  .manifesto__photo { height: 340px; margin-bottom: 56px; }
  .manifesto__photo-orb { width: 180px; height: 180px; }
  .manifesto__photo-label { font-size: 10px; letter-spacing: 0.2em; bottom: 16px; }
  .manifesto__paragraph { font-size: 17px; line-height: 1.8; }
  .manifesto__display { font-size: 36px; }
  .manifesto__lineage-names { font-size: 12px; letter-spacing: 0.16em; line-height: 1.9; }
  .manifesto__lineage-blood { font-size: 17px; }
  .manifesto__closing p { font-size: 22px; }
  .manifesto__rule { margin: 44px auto; }

  /* Books */
  .books__head h2 { font-size: 38px; }
  .books__pillars { margin-bottom: 56px; }
  .books__quote { margin-top: 56px; padding: 40px 20px; }
  .books__quote p { font-size: 22px; }
  .book__cover-title { font-size: 22px; }

  /* SoulPath */
  .soulpath h2 { font-size: 40px; }
  .soulpath__cta { padding: 24px 20px; border-radius: 16px; gap: 20px; }
  .soulpath__cta p { font-size: 18px; }
  .offering-list li { font-size: 19px; }

  /* Yidaki */
  .yidaki__head h2 { font-size: 44px; }
  .yidaki__grid { gap: 12px; }
  .y-card { padding: 18px 20px; }
  .y-card__title { font-size: 17px; }
  .wave-wrap { margin: 16px 0 40px; }
  .dot-wave { margin-top: 56px; height: 48px; }

  /* Shop */
  .shop__head h2 { font-size: 44px; }
  .notify__form { grid-template-columns: 1fr; gap: 10px; }
  .notify__form .btn { width: 100%; }
  .p-card__art svg { max-width: 80%; height: auto; }

  /* Contact */
  .contact h2 { font-size: 40px; }
  .contact__email { font-size: 22px; }
  .contact p { font-size: 16px; }

  /* Footer */
  .footer { padding: 64px 0 24px; }
  .footer__grid { gap: 32px; text-align: center; }
  .footer__socials { justify-content: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 64px 0; }

  /* Nav */
  .nav { padding: 14px 16px; }
  .nav.is-scrolled { padding: 10px 16px; }
  .nav__brand { font-size: 13px; letter-spacing: 0.16em; }
  .nav__brand-mark { width: 18px; height: 18px; }

  /* Hero */
  .hero { padding: 96px 16px 110px; }
  .hero__title { font-size: 44px; }
  .hero__roar-row { gap: 20px; margin-bottom: 20px; }
  .hero__roar { font-size: 30px; }
  .hero__sub { font-size: 19px; }
  .hero__body { font-size: 15px; }
  .hero__wings-wrap { width: 200%; }
  .hero__ctas { max-width: 100%; }
  .btn { height: 52px; font-size: 12px; padding: 0 24px; }
  .btn--lg { height: 56px; }

  /* Headings. one notch smaller */
  .about__quote { font-size: 24px; }
  .editorial-intro { font-size: 20px; }
  .about__p { font-size: 16px; line-height: 1.75; margin-bottom: 20px; }
  .services__head h2,
  .books__head h2,
  .soulpath h2,
  .yidaki__head h2,
  .shop__head h2,
  .contact h2 { font-size: 32px; }
  .sub-italic { font-size: 16px; }

  .s-card__title { font-size: 19px; }

  .offering-list li { font-size: 17px; }
  .offering-list li span { font-size: 13px; }

  .y-card__title { font-size: 16px; }
  .y-card__dot { width: 22px; height: 22px; }

  .p-card { padding: 20px; }
  .p-card h3 { font-size: 18px; }
  .p-card__badge { font-size: 9px; padding: 6px 10px; }

  .contact__email { font-size: 18px; }

  /* New blocks added after the font swap, phone overrides */
  .services__guide-title,
  .services__connect-title { font-size: 26px; }
  .services__guide-body { font-size: 15px; line-height: 1.7; }
  .contact__channel-value { font-size: 17px; word-break: break-all; }
  .contact__channel-label { font-size: 10px; letter-spacing: 0.22em; }
  .contact__pay { margin-top: 48px; }
  .contact__pay-grid { grid-template-columns: 1fr; gap: 14px; }
  .pay-card { padding: 16px 18px; gap: 14px; }
  .pay-card__icon { width: 44px; height: 44px; }
  .pay-card__name { font-size: 18px; }
  /* let the full handle wrap instead of overflowing the card on phones */
  .pay-card__handle {
    white-space: normal;
    overflow: visible;
    overflow-wrap: anywhere;
  }
  .footer__ig-cta { padding: 12px 18px; gap: 10px; }
  .footer__ig-handle { font-size: 15px; }
  .footer__ig-label { font-size: 9px; letter-spacing: 0.2em; }
  .footer__ig-cta svg { width: 18px; height: 18px; }

  /* Manifesto. phone portrait */
  .manifesto__roar { font-size: 52px; }
  .manifesto__opening-lede { font-size: 17px; }
  .manifesto__photo { height: 260px; }
  .manifesto__photo-orb { width: 140px; height: 140px; }
  .manifesto__photo-label { font-size: 9px; white-space: normal; max-width: 80%; line-height: 1.5; text-align: center; }
  .manifesto__paragraph { font-size: 16px; line-height: 1.75; }
  .manifesto__display { font-size: 30px; }
  .manifesto__lineage-names { font-size: 11px; letter-spacing: 0.14em; }
  .manifesto__lineage-blood { font-size: 16px; }
  .manifesto__closing p { font-size: 20px; }

  /* Services. phone portrait */
  .services__lead-photo { margin-bottom: 32px; }
  .services__feature-photo { margin: 28px auto 0; }
  .services__identity {
    padding: 24px 18px;
    gap: 20px;
  }
  .services__identity-portrait { width: 100%; }
  .services__identity-name { font-size: 32px; }
  .services__identity-titles { font-size: 11px; letter-spacing: 0.14em; }
  .services__identity-titles .sep { margin: 0 6px; }
  .services__identity-blurb { font-size: 15px; }
  .services__rr { padding: 0; }
  .services__rr-intro { font-size: 14px; margin-bottom: 28px; }
  .services__rr-col h4 { font-size: 12px; letter-spacing: 0.18em; margin-bottom: 14px; padding-bottom: 10px; }
  .services__rr-statement { font-size: 22px; }
  .services__rr-list { grid-template-columns: 1fr; gap: 2px; }
  .services__rr-list li { font-size: 16px; padding-left: 14px; }
  .services__rr-tagline { font-size: 10px; letter-spacing: 0.22em; }
  .services__chapter-label { font-size: 11px; letter-spacing: 0.2em; margin-bottom: 26px; }
  .services__rule { margin: 36px auto; max-width: 80%; }
  .services__closing { padding: 0 8px; }
  .services__closing-eyebrow { font-size: 11px; letter-spacing: 0.18em; margin-bottom: 22px; }
  .services__closing-statement { font-size: 20px; }
  .services__closing-note { font-size: 15px; }
  .n-card { padding: 18px 16px 18px 20px; }
  .n-card__num { font-size: 10px; }
  .n-card__title { font-size: 16px; }
  .offer-col { padding: 20px 16px; }
  .offer-col h4 { font-size: 11px; letter-spacing: 0.18em; }
  .offer-col li { font-size: 13px; line-height: 1.6; }

  /* Service photos. phone */
  .s-photo--lead { aspect-ratio: 4/3; max-height: 280px; }
  .s-photo--feature { aspect-ratio: 16/10; max-height: 220px; }
  .s-photo--portrait { max-width: 200px; }
  .services__identity-portrait-img { max-width: 200px; }
  .s-photo--column { aspect-ratio: 16/7; margin-bottom: 14px; }
  .s-photo__label { font-size: 9px; letter-spacing: 0.18em; white-space: normal; line-height: 1.4; max-width: calc(100% - 24px); }
}
