/* ============================================================
   HOUSE OF SERAPHIM — Design System
   Healing · Remembrance · Sacred Living
   ============================================================ */

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

/* ── Custom Properties ─────────────────────────────────────── */
:root {
  --ivory:      #EDE7DB;
  --cream:      #F7F2EC;
  --champagne:  #E2C898;
  --gold:       #C4943E;
  --gold-light: #D4A853;
  --sand:       #D0C4B0;
  --taupe:      #A89A8A;
  --bronze:     #7A5618;
  --charcoal:   #2C2420;
  --warm-dark:  #1A1410;
  --white-warm: #FAF7F2;
  --body:       #5C4F45;   /* warm dark — readable on ivory */
  --text-muted: #7A6B5F;   /* for subtitles, captions */

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;

  --ease-luxury: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out:    cubic-bezier(0.0, 0.0, 0.2, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);

  --section-padding: clamp(5rem, 10vw, 9rem);
  --container:       1240px;
  --container-sm:    820px;
  --container-xs:    640px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--ivory);
  color: var(--charcoal);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  animation: pageFadeIn 0.3s var(--ease-luxury);
}
@keyframes pageFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
body.page-leaving {
  opacity: 0;
  animation: none;
  transition: opacity 0.18s var(--ease-luxury);
}
img, video { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select {
  font-family: var(--font-sans);
  font-size: inherit;
  color: inherit;
  border: none;
  outline: none;
  background: transparent;
}

/* ── Typography ────────────────────────────────────────────── */
.serif { font-family: var(--font-serif); }
.serif-italic { font-family: var(--font-serif); font-style: italic; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--charcoal);
}

.hero-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  letter-spacing: 0.18em;
  line-height: 1.05;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.section-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--text-muted);
  line-height: 1.8;
  letter-spacing: 0.02em;
}

.eyebrow {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.body-text {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  line-height: 1.95;
  color: var(--body);
  letter-spacing: 0.01em;
}

/* ── Layout ────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}
.container--sm  { max-width: var(--container-sm); }
.container--xs  { max-width: var(--container-xs); }

section { position: relative; overflow: hidden; }

/* ── Gold Divider ──────────────────────────────────────────── */
.gold-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto;
}
.gold-line--left { margin: 0; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 0;
  transition: all 0.4s var(--ease-luxury);
  position: relative;
  overflow: hidden;
}

.btn-gold {
  background: var(--gold);
  color: var(--white-warm);
  border: 1px solid var(--gold);
}
.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bronze);
  transform: translateX(-101%);
  transition: transform 0.4s var(--ease-luxury);
}
.btn-gold:hover::before { transform: translateX(0); }
.btn-gold span { position: relative; z-index: 1; }

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--champagne);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--charcoal);
}

.btn-ghost {
  background: transparent;
  color: var(--taupe);
  border: 1px solid var(--sand);
  padding: 0.75rem 2rem;
  font-size: 0.75rem;
}
.btn-ghost:hover {
  color: var(--charcoal);
  border-color: var(--taupe);
}

/* ── Navigation ────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.75rem clamp(1.5rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.5s var(--ease-luxury),
              padding 0.4s var(--ease-luxury),
              box-shadow 0.5s var(--ease-luxury);
}
.nav.scrolled {
  background: rgba(237, 231, 219, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
  box-shadow: 0 1px 0 rgba(196, 148, 62, 0.12);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-logo img {
  height: 48px;
  width: 48px;
  object-fit: contain;
}
.nav-logo-text {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  line-height: 1.3;
}
.nav-logo-text small {
  display: block;
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  font-family: var(--font-sans);
  font-style: normal;
  margin-top: 0.1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal);
  opacity: 0.7;
  transition: opacity 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease-luxury);
}
.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after { width: 100%; }

.nav-book {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--champagne);
  padding: 0.6rem 1.4rem;
  transition: all 0.35s var(--ease-luxury);
}
.nav-book:hover {
  background: var(--gold);
  color: var(--white-warm);
  border-color: var(--gold);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 26px;
  height: 1px;
  background: var(--charcoal);
  transition: all 0.35s var(--ease-luxury);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--ivory);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease-luxury);
}
.nav-overlay.open { opacity: 1; pointer-events: all; }
.nav-overlay a {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--charcoal);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s, transform 0.4s, color 0.3s;
}
.nav-overlay.open a {
  opacity: 1;
  transform: translateY(0);
}
.nav-overlay.open a:nth-child(1) { transition-delay: 0.1s; }
.nav-overlay.open a:nth-child(2) { transition-delay: 0.15s; }
.nav-overlay.open a:nth-child(3) { transition-delay: 0.2s; }
.nav-overlay.open a:nth-child(4) { transition-delay: 0.25s; }
.nav-overlay.open a:nth-child(5) { transition-delay: 0.3s; }
.nav-overlay.open a:nth-child(6) { transition-delay: 0.35s; }
.nav-overlay.open a:nth-child(7) { transition-delay: 0.4s; }
.nav-overlay.open a:nth-child(8) { transition-delay: 0.45s; }
.nav-overlay a:hover { color: var(--gold); }
.nav-overlay-tagline {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1rem;
  opacity: 0;
  transition: opacity 0.4s 0.5s;
}
.nav-overlay.open .nav-overlay-tagline { opacity: 1; }

/* ── Hero Section ──────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--ivory);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    #EDE7DB 0%,
    #E4D9C8 30%,
    #DAC9B0 60%,
    #C9B090 100%
  );
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(196,148,62,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 20% 80%, rgba(196,148,62,0.05) 0%, transparent 60%);
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.35;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(237,231,219,0.2) 0%,
    rgba(237,231,219,0.5) 70%,
    rgba(237,231,219,0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: clamp(7rem, 15vw, 12rem) clamp(1.5rem, 5vw, 4rem) clamp(8rem, 14vw, 11rem);
  max-width: 1000px;
  width: 100%;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  height: 1px;
  width: 40px;
  background: var(--gold);
  opacity: 0.5;
}

.hero-title { color: var(--charcoal); margin-bottom: 1.5rem; }

.hero-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--taupe);
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto 3.5rem;
  letter-spacing: 0.02em;
}

.hero-ctas {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  opacity: 0.4;
  animation: scroll-pulse 3s ease-in-out infinite;
}
.hero-scroll span {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-line 3s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.7; }
}
@keyframes scroll-line {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── Brand Essence Section ─────────────────────────────────── */
.brand-essence {
  background: var(--cream);
  padding: var(--section-padding) 0;
}

.brand-essence-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--champagne);
  border-bottom: 1px solid var(--champagne);
}
.pillar {
  padding: 3.5rem 3rem;
  text-align: center;
  border-right: 1px solid var(--champagne);
  transition: background 0.5s var(--ease-luxury);
}
.pillar:last-child { border-right: none; }
.pillar:hover { background: rgba(196,148,62,0.03); }

.pillar-symbol {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.75rem;
  color: var(--gold);
  opacity: 0.8;
}
.pillar-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.45rem;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}
.pillar-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--body);
  line-height: 1.85;
}

/* ── Offerings Section ─────────────────────────────────────── */
.offerings {
  background: var(--ivory);
  padding: var(--section-padding) 0;
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  background: var(--champagne);
  border: 1.5px solid var(--champagne);
  margin-top: 2.5rem;
}
.offering-card {
  background: var(--cream);
  padding: 2.75rem 2rem;
  position: relative;
  overflow: hidden;
  transition: background 0.4s var(--ease-luxury);
  cursor: pointer;
}
.offering-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(196,148,62,0.06) 0%, rgba(196,148,62,0.02) 100%);
  opacity: 0;
  transition: opacity 0.4s var(--ease-luxury);
}
.offering-card:hover::after { opacity: 1; }
.offering-card:hover .offering-arrow { transform: translateX(6px); opacity: 1; }

.offering-icon {
  width: 36px;
  height: 36px;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.offering-card:hover .offering-icon { opacity: 1; }

.offering-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.3rem;
  letter-spacing: 0.03em;
  margin-bottom: 0.85rem;
  position: relative; z-index: 1;
  color: var(--charcoal);
}
.offering-desc {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--body);
  line-height: 1.85;
  position: relative; z-index: 1;
}
.offering-arrow {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.45;
  transform: translateX(0);
  transition: all 0.35s var(--ease-luxury);
  position: relative; z-index: 1;
}

/* ── Reading Teaser ────────────────────────────────────────── */
.reading-teaser {
  padding: var(--section-padding) 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.reading-teaser::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 80% at 50% 50%, rgba(196,148,62,0.07) 0%, transparent 70%);
}
.reading-teaser-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.reading-teaser .section-title { color: var(--ivory); }
.reading-teaser .section-subtitle { color: rgba(247,242,236,0.5); }
.reading-teaser .eyebrow { color: var(--gold-light); }

/* ── Testimonials ──────────────────────────────────────────── */
.testimonials {
  background: var(--cream);
  padding: var(--section-padding) 0;
}
.testimonials-inner {
  text-align: center;
  position: relative;
}
.testimonial-track {
  overflow: hidden;
  margin-top: 4rem;
}
.testimonial-slides {
  display: flex;
  transition: transform 0.6s var(--ease-in-out);
}
.testimonial-slide {
  flex: 0 0 100%;
  padding: 0 clamp(1rem, 5vw, 5rem);
}
.testimonial-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.3rem, 3vw, 2rem);
  color: var(--charcoal);
  line-height: 1.6;
  letter-spacing: 0.01em;
  max-width: 800px;
  margin: 0 auto 2.5rem;
  position: relative;
}
.testimonial-quote::before {
  content: '\201C';
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.25;
  position: absolute;
  top: -2rem;
  left: -1rem;
  line-height: 1;
  font-family: var(--font-serif);
}
.testimonial-author {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 3rem;
}
.testimonial-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sand);
  cursor: pointer;
  transition: all 0.35s var(--ease-luxury);
  border: none;
  padding: 20px;
  margin: -20px;
  box-sizing: content-box;
  background-clip: content-box;
}
.testimonial-dot.active {
  background-color: var(--gold);
  background-clip: content-box;
  transform: scale(1.4);
}

/* ── Archetype Teaser ──────────────────────────────────────── */
.archetype-teaser {
  background: var(--ivory);
  padding: var(--section-padding) 0;
  border-top: 1px solid var(--champagne);
  border-bottom: 1px solid var(--champagne);
}
.archetype-teaser-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 6rem);
  align-items: center;
}
.archetype-teaser-text {}
.archetype-teaser-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.archetype-symbol-large {
  width: 200px;
  height: 200px;
  color: var(--champagne);
  opacity: 0.6;
}

/* ── Sanctuary Section ─────────────────────────────────────── */
.sanctuary {
  background: var(--cream);
  padding: var(--section-padding) 0;
}
.sanctuary-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 1.5px;
  background: var(--champagne);
}
.sanctuary-row:last-child { margin-bottom: 0; }
.sanctuary-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--sand);
  position: relative;
}
.sanctuary-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-luxury);
}
.sanctuary-row:hover .sanctuary-img img { transform: scale(1.04); }

.sanctuary-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--sand) 0%, var(--champagne) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sanctuary-img-placeholder svg {
  width: 60px;
  height: 60px;
  color: var(--gold);
  opacity: 0.3;
}

.sanctuary-text {
  background: var(--cream);
  padding: clamp(3rem, 6vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sanctuary-row:nth-child(even) .sanctuary-img { order: 2; }
.sanctuary-row:nth-child(even) .sanctuary-text { order: 1; }

/* ── Frequencies ────────────────────────────────────────────── */
.frequencies {
  background: #18130f;
  padding: var(--section-padding) 0 clamp(2rem,5vw,3.5rem);
  position: relative;
  overflow: hidden;
}
.freq-scroll {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.5rem clamp(1.5rem, 5vw, 5rem) 1.5rem;
}
.freq-scroll::-webkit-scrollbar { display: none; }
.freq-card {
  flex: 0 0 clamp(300px, 82vw, 400px);
  scroll-snap-align: start;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(196,148,62,0.18);
  border-radius: 3px;
  overflow: hidden;
  transition: border-color 0.5s;
}
.freq-card:hover { border-color: rgba(196,148,62,0.4); }
.freq-embed { width: 100%; }
.freq-embed iframe { display: block; width: 100%; }
.freq-card-body { padding: 1.75rem 1.5rem 2rem; }
.freq-title {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.55rem);
  color: var(--ivory);
  letter-spacing: 0.01em;
  margin-bottom: 0.65rem;
}
.freq-desc {
  font-family: var(--font-sans);
  font-size: 0.87rem;
  color: rgba(168,154,138,0.9);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.freq-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s, gap 0.3s;
  min-height: 44px;
}
.freq-link:hover { color: var(--gold-light); gap: 0.7rem; }
.freq-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.75rem;
}
.freq-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(196,148,62,0.25);
  border: none;
  cursor: pointer;
  padding: 20px;
  margin: -20px;
  box-sizing: content-box;
  background-clip: content-box;
  transition: background 0.35s, transform 0.35s;
}
.freq-dot.active {
  background-color: var(--gold);
  background-clip: content-box;
  transform: scale(1.4);
}

/* ── Sound Journeys ──────────────────────────────────────── */
.sound-journeys {
  background: #110e0b;
  padding: var(--section-padding) 0;
  border-top: 1px solid rgba(196,148,62,0.1);
  position: relative;
  overflow: hidden;
}
.sj-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.sj-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(196,148,62,0.14);
  border-radius: 3px;
  overflow: hidden;
  transition: border-color 0.5s;
}
.sj-card:hover { border-color: rgba(196,148,62,0.35); }
.sj-embed { width: 100%; }
.sj-embed iframe { display: block; width: 100%; }
.sj-card-body { padding: 1.5rem 1.5rem 2rem; }
.sj-title {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--ivory);
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}
.sj-desc {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: rgba(168,154,138,0.85);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

/* ── About Preview ─────────────────────────────────────────── */
.about-preview {
  background: var(--ivory);
  padding: var(--section-padding) 0;
}
.about-preview-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(3rem, 8vw, 6rem);
  align-items: center;
}
.about-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--sand);
  position: relative;
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(196,148,62,0.2);
  pointer-events: none;
}

.about-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, var(--sand) 0%, var(--champagne) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Retreats Preview ──────────────────────────────────────── */
.retreats-preview {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.retreats-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2C2420 0%, #3D3028 50%, #2C2420 100%);
}
.retreats-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}
.retreats-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,20,16,0.8) 0%, rgba(26,20,16,0.3) 100%);
}
.retreats-content {
  position: relative;
  z-index: 1;
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 4rem);
  max-width: 700px;
}
.retreats-content .section-title { color: var(--ivory); font-weight: 300; }
.retreats-content .section-subtitle { color: rgba(247,242,236,0.55); }
.retreats-content .eyebrow { color: var(--gold-light); }

/* ── Email Capture ─────────────────────────────────────────── */
.email-capture {
  background: var(--champagne);
  padding: var(--section-padding) 0;
  text-align: center;
  position: relative;
}
.email-capture::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(196,148,62,0.08) 0%, transparent 70%);
}
.email-capture-inner { position: relative; z-index: 1; }
.email-form {
  display: flex;
  max-width: 460px;
  margin: 2.5rem auto 0;
  border: 1px solid var(--gold);
  background: var(--white-warm);
}
.email-form input {
  flex: 1;
  padding: 1rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--charcoal);
  background: transparent;
}
.email-form input::placeholder { color: var(--taupe); }
.email-form button {
  padding: 1rem 1.75rem;
  background: var(--gold);
  color: var(--white-warm);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.35s;
  white-space: nowrap;
  flex-shrink: 0;
}
.email-form button:hover { background: var(--bronze); }
.email-privacy {
  margin-top: 1.25rem;
  font-size: 0.72rem;
  color: var(--taupe);
  letter-spacing: 0.05em;
}

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--warm-dark);
  padding: 4rem clamp(1.5rem, 5vw, 4rem) 2.5rem;
  color: var(--ivory);
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(237,231,219,0.1);
}
.footer-brand .nav-logo-text { color: var(--ivory); }
.footer-brand .nav-logo-text small { color: var(--gold); }
.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(237,231,219,0.45);
  margin-top: 1rem;
  line-height: 1.7;
}
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.75rem; }
.footer-col ul li a {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: rgba(237,231,219,0.5);
  letter-spacing: 0.05em;
  transition: color 0.3s;
}
.footer-col ul li a:hover { color: var(--ivory); }

.footer-bottom {
  max-width: var(--container);
  margin: 2rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: rgba(237,231,219,0.3);
  letter-spacing: 0.08em;
}
.footer-socials {
  display: flex;
  gap: 1.5rem;
}
.footer-socials a {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(237,231,219,0.4);
  transition: color 0.3s;
}
.footer-socials a:hover { color: var(--gold); }

/* ── Reading Pages ─────────────────────────────────────────── */
.page-hero {
  padding: clamp(8rem, 15vw, 12rem) clamp(1.5rem, 5vw, 4rem) clamp(4rem, 8vw, 6rem);
  text-align: center;
  background: var(--cream);
  border-bottom: 1px solid var(--champagne);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--champagne);
  border: 1.5px solid var(--champagne);
  margin-top: 4rem;
}
.category-card {
  background: var(--cream);
  padding: 3rem 2.5rem;
  cursor: pointer;
  transition: background 0.4s var(--ease-luxury);
  position: relative;
  overflow: hidden;
}
.category-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-luxury);
}
.category-card:hover { background: var(--white-warm); }
.category-card:hover::after { transform: scaleX(1); }

.category-icon {
  width: 44px;
  height: 44px;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.category-card:hover .category-icon { opacity: 1; }

.category-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.45rem;
  letter-spacing: 0.03em;
  margin-bottom: 0.85rem;
}
.category-desc {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--body);
  line-height: 1.85;
}

/* ── Form Styles ───────────────────────────────────────────── */
.form-section {
  padding: var(--section-padding) clamp(1.5rem, 5vw, 4rem);
  background: var(--ivory);
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: flex-start;
}
.form-card {
  background: var(--cream);
  border: 1px solid var(--champagne);
  max-width: 580px;
  width: 100%;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4rem);
}
.form-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe);
  cursor: pointer;
  transition: color 0.3s;
  background: none;
  border: none;
  margin-bottom: 3rem;
}
.form-back:hover { color: var(--gold); }
.form-back svg { width: 14px; height: 14px; }

.form-field {
  margin-bottom: 2rem;
}
.form-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.form-input {
  display: block;
  width: 100%;
  padding: 0.9rem 0;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--charcoal);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--champagne);
  transition: border-color 0.3s;
  border-radius: 0;
}
.form-input:focus { border-bottom-color: var(--gold); outline: none; }
.form-input::placeholder {
  font-style: italic;
  color: var(--sand);
}

/* ── Reading Result ────────────────────────────────────────── */
.result-page {
  padding: clamp(7rem, 12vw, 10rem) clamp(1.5rem, 5vw, 4rem) var(--section-padding);
  background: var(--ivory);
  min-height: 100vh;
}
.result-card {
  max-width: 720px;
  margin: 0 auto;
}
.result-header {
  text-align: center;
  margin-bottom: 4rem;
}
.result-celestial {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin: 0 auto 2rem;
  opacity: 0.8;
}
.result-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.result-name {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--taupe);
  margin-bottom: 2.5rem;
}

.cosmic-blueprint {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5px;
  background: var(--champagne);
  border: 1.5px solid var(--champagne);
  margin: 0 auto 3.5rem;
  max-width: 420px;
}
.blueprint-card {
  background: var(--cream);
  padding: 1.75rem 2rem;
  text-align: center;
}
.blueprint-label {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.blueprint-value {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--charcoal);
  font-weight: 300;
  letter-spacing: 0.04em;
}

.reading-section {
  margin-bottom: 2.5rem;
  padding: 2.5rem;
  background: var(--cream);
  border-left: 2px solid var(--champagne);
  position: relative;
  transition: border-color 0.3s;
}
.reading-section:hover { border-left-color: var(--gold); }
.reading-section-label {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.reading-section-text {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.8vw, 1.15rem);
  color: var(--body);
  line-height: 1.95;
  letter-spacing: 0.01em;
}
.reading-section-text.italic {
  font-style: italic;
  color: var(--text-muted);
}
.key-messages {
  list-style: none;
  padding: 0;
}
.key-messages li {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--charcoal);
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
  border-bottom: 1px solid var(--sand);
  line-height: 1.7;
}
.key-messages li:last-child { border-bottom: none; }
.key-messages li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 5px;
  height: 1px;
  background: var(--gold);
  transform: translateY(-50%);
}

.result-ctas {
  margin-top: 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.result-ctas .btn { justify-content: center; width: 100%; }

/* ── Archetype Quiz ────────────────────────────────────────── */
.quiz-page {
  min-height: 100vh;
  background: var(--ivory);
  display: flex;
  flex-direction: column;
}
.quiz-intro {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(5rem, 10vw, 8rem) clamp(1.5rem, 5vw, 4rem);
  background: linear-gradient(160deg, var(--ivory) 0%, var(--cream) 60%, var(--champagne) 100%);
  position: relative;
}
.quiz-intro::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(196,148,62,0.06) 0%, transparent 70%);
}
.quiz-intro-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.quiz-flow {
  flex: 1;
  padding: clamp(4rem, 8vw, 6rem) clamp(1.5rem, 5vw, 4rem) var(--section-padding);
  display: none;
}
.quiz-flow.active { display: flex; flex-direction: column; align-items: center; }

.quiz-progress-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 4rem;
  width: 100%;
  max-width: 360px;
}
.quiz-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sand);
  transition: all 0.4s var(--ease-luxury);
  flex-shrink: 0;
}
.quiz-dot.active {
  background: var(--gold);
  transform: scale(1.4);
  box-shadow: 0 0 8px rgba(196,148,62,0.4);
}
.quiz-dot.done { background: var(--champagne); }
.quiz-dot-line {
  flex: 1;
  height: 1px;
  background: var(--sand);
  transition: background 0.4s;
}
.quiz-dot-line.done { background: var(--champagne); }

.quiz-step {
  display: none;
  width: 100%;
  max-width: 680px;
  animation: quiz-slide-in 0.5s var(--ease-out) both;
}
.quiz-step.active { display: block; }
@keyframes quiz-slide-in {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.quiz-question {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  color: var(--charcoal);
  letter-spacing: 0.02em;
  line-height: 1.35;
  margin-bottom: 2.5rem;
  text-align: center;
}
.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.quiz-option {
  padding: 1.5rem 2rem;
  background: var(--cream);
  border: 1px solid var(--champagne);
  cursor: pointer;
  transition: all 0.35s var(--ease-luxury);
  text-align: left;
  position: relative;
  overflow: hidden;
}
.quiz-option::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--gold);
  transform: scaleY(0);
  transition: transform 0.35s var(--ease-luxury);
}
.quiz-option:hover {
  background: var(--white-warm);
  border-color: var(--gold);
  padding-left: 2.5rem;
}
.quiz-option:hover::before { transform: scaleY(1); }
.quiz-option.selected {
  background: rgba(196,148,62,0.06);
  border-color: var(--gold);
  padding-left: 2.5rem;
}
.quiz-option.selected::before { transform: scaleY(1); }
.quiz-option-text {
  font-family: var(--font-serif);
  font-size: 1.12rem;
  color: var(--body);
  line-height: 1.6;
  letter-spacing: 0.01em;
}
.quiz-option.selected .quiz-option-text { color: var(--bronze); font-weight: 500; }

.quiz-nav {
  display: flex;
  justify-content: flex-end;
  margin-top: 2rem;
  gap: 1rem;
}

/* ── Email Gate ────────────────────────────────────────────── */
.email-gate {
  display: none;
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
  text-align: center;
  animation: quiz-slide-in 0.5s var(--ease-out) both;
}
.email-gate.active { display: block; }
.email-gate .section-title { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 1rem; }
.email-gate-fields {
  margin-top: 2.5rem;
}
.email-gate-fields .form-input {
  margin-bottom: 1.5rem;
  text-align: center;
}

/* ── Archetype Result ──────────────────────────────────────── */
.archetype-result {
  display: none;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  animation: quiz-slide-in 0.6s var(--ease-out) both;
}
.archetype-result.active { display: block; }
.archetype-header {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--cream);
  border: 1px solid var(--champagne);
  margin-bottom: 2rem;
}
.archetype-symbol {
  width: 64px;
  height: 64px;
  color: var(--gold);
  margin: 0 auto 2rem;
  opacity: 0.8;
}
.archetype-primary {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  letter-spacing: 0.06em;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.archetype-secondary {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--taupe);
  margin-bottom: 1.5rem;
}
.archetype-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--taupe);
  line-height: 1.65;
  max-width: 500px;
  margin: 0 auto;
}

.archetype-section {
  margin-bottom: 1.5px;
  background: var(--cream);
  padding: 2.5rem;
  border-left: 2px solid var(--champagne);
}
.archetype-section-label {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.archetype-section-text {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.8vw, 1.15rem);
  color: var(--body);
  line-height: 1.95;
  letter-spacing: 0.01em;
}

/* Strengths / Challenges trait lists */
.trait-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.trait-list li {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.6vw, 1.1rem);
  color: var(--body);
  padding: 0.85rem 0 0.85rem 1.75rem;
  position: relative;
  border-bottom: 1px solid rgba(210,195,175,0.5);
  line-height: 1.7;
}
.trait-list li:last-child { border-bottom: none; }
.trait-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 1px;
  background: var(--gold);
  transform: translateY(-50%);
}
.trait-list.challenges li::before { background: var(--taupe); }

.ritual-card {
  background: linear-gradient(135deg, var(--cream) 0%, var(--champagne) 100%);
  border: 1px solid var(--champagne);
  padding: 2.5rem;
  margin: 2rem 0;
  position: relative;
}
.ritual-card::before {
  content: '✦';
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: var(--gold);
  opacity: 0.4;
  font-size: 1rem;
}
.ritual-title {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.ritual-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--charcoal);
  line-height: 1.8;
}

/* ── Inner Pages ───────────────────────────────────────────── */
.inner-hero {
  padding: clamp(8rem, 15vw, 12rem) clamp(1.5rem, 5vw, 4rem) clamp(4rem, 8vw, 6rem);
  background: var(--cream);
  position: relative;
}
.inner-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: clamp(1.5rem, 5vw, 4rem);
  right: clamp(1.5rem, 5vw, 4rem);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--champagne), transparent);
}

.offerings-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--champagne);
  border: 1.5px solid var(--champagne);
  margin-top: 4rem;
}
.offering-page-card {
  background: var(--cream);
  padding: 3rem 2.5rem;
}
.offering-page-icon {
  width: 40px;
  height: 40px;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0.7;
}
.offering-page-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
}
.offering-page-desc {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--body);
  line-height: 1.9;
  margin-bottom: 2rem;
}

.contact-form {
  max-width: 620px;
  margin: 0 auto;
}
.contact-form .form-field { margin-bottom: 2.5rem; }
.contact-form textarea {
  resize: vertical;
  min-height: 160px;
  display: block;
  width: 100%;
  padding: 0.9rem 0;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--charcoal);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--champagne);
  transition: border-color 0.3s;
}
.contact-form textarea:focus { border-bottom-color: var(--gold); outline: none; }

.coming-soon {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(5rem, 10vw, 8rem) clamp(1.5rem, 5vw, 4rem);
  background: var(--cream);
}

/* ── Scroll Animations ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-luxury), transform 0.8s var(--ease-luxury);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── Utility ───────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.mt-sm { margin-top: 1.5rem; }
.mt-md { margin-top: 2.5rem; }
.mt-lg { margin-top: 4rem; }
.mb-sm { margin-bottom: 1.5rem; }
.mb-md { margin-bottom: 2.5rem; }
.mb-lg { margin-bottom: 4rem; }
.gap-sm { gap: 1rem; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.hidden { display: none !important; }

/* ── Loading shimmer ───────────────────────────────────────── */
.shimmer {
  background: linear-gradient(90deg, var(--cream) 25%, var(--champagne) 50%, var(--cream) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}
@keyframes shimmer {
  from { background-position: 200% 0; }
  to   { background-position: -200% 0; }
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .offerings-grid { grid-template-columns: repeat(2, 1fr); }
  .offerings-page-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .archetype-teaser-inner { grid-template-columns: 1fr; }
  .archetype-teaser-visual { display: none; }
}
@media (max-width: 768px) {
  .nav-links, .nav-book { display: none; }
  .nav-hamburger { display: flex; }

  /* Nav: increase logo + hamburger tap targets to ≥44px */
  .nav-logo { min-height: 44px; }
  .nav-hamburger { padding: 14px 9px; min-width: 44px; min-height: 44px; justify-content: center; align-items: center; }

  /* Hero: 85svh — short enough to hint at content below */
  .hero { min-height: 85svh; }
  /* Hero content padding reduced so title/buttons sit higher */
  .hero-content { padding-top: clamp(4.5rem, 11vw, 7rem); padding-bottom: clamp(4rem, 9vw, 6rem); }
  /* Hero inner spacing */
  .hero-eyebrow { margin-bottom: 1.5rem; }
  .hero-subtitle { margin-bottom: 2rem; }

  /* Typography: tighter sizes and line-heights for mobile */
  .section-title { font-size: clamp(2rem, 5vw, 3.5rem); }
  .body-text { line-height: 1.75; font-size: clamp(1rem, 1.8vw, 1.1rem); }
  .section-subtitle { line-height: 1.65; font-size: clamp(1rem, 2vw, 1.2rem); }

  /* Brand essence: tighter intro margin and pillar padding */
  .brand-essence-intro { margin-bottom: 1.75rem; }
  .pillar { padding: 1.5rem 1rem; }
  .pillar-symbol { margin-bottom: 0.75rem; width: 40px; height: 40px; }
  .pillar-title { font-size: 1.1rem; margin-bottom: 0.5rem; }
  .pillar-text { font-size: 0.95rem; line-height: 1.65; }

  /* Atmospheric teasers: compressed section padding on mobile */
  .reading-teaser { padding: clamp(2.5rem, 6vw, 4rem) 0; }
  .archetype-teaser { padding: clamp(2.5rem, 6vw, 4rem) 0; }

  /* Testimonials: tighten track top-margin, make quote smaller */
  .testimonial-track { margin-top: 2rem; }
  .testimonial-quote { font-size: clamp(1.1rem, 3vw, 1.5rem); }
  .testimonial-dots { margin-top: 1.75rem; }

  /* Sanctuary: remove outer section padding — rows provide spacing */
  .sanctuary { padding: 0; }

  /* Retreats: shorter cinematic banner on mobile */
  .retreats-preview { min-height: 40vh; }

  /* Email capture: tighter */
  .email-capture { padding: clamp(2.5rem, 6vw, 4rem) 0; }

  /* About image: widescreen crop uses less vertical space */
  .about-img { aspect-ratio: 16/9; max-height: 260px; }

  /* Testimonials: keep section itself compact */
  .testimonials { padding: clamp(2.5rem, 6vw, 3.5rem) 0; }

  /* Brand essence and offerings: tighter vertical padding on mobile */
  .brand-essence { padding: clamp(2.5rem, 6vw, 3.5rem) 0; }
  .offerings { padding: clamp(2.5rem, 6vw, 3.5rem) 0; }
  .about-preview { padding: clamp(2.5rem, 6vw, 3.5rem) 0; }

  /* About page approach section: tighter padding */
  .approach-section { padding: clamp(3rem, 7vw, 4rem) 0 !important; }
  .approach-section .mb-lg { margin-bottom: 2rem !important; }

  /* Hide decorative scroll cue on offerings mobile (saves ~80px) */
  .offerings-scroll-cue { display: none; }

  /* Reduce offerings grid top margin on mobile */
  .offerings-grid { margin-top: 2rem; }

  /* Pillars / grids */
  .pillars { grid-template-columns: 1fr; }
  /* Archetype traits grid: single column on mobile */
  [style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }
  .pillar { border-right: none; border-bottom: 1px solid var(--champagne); }
  .pillar:last-child { border-bottom: none; }
  .offerings-grid { grid-template-columns: repeat(2, 1fr); }
  .offerings-page-grid { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .category-card { padding: 1.75rem 1rem; }
  .category-title { font-size: 1.2rem; }
  .category-desc { font-size: 0.95rem; }
  .category-icon { width: 36px; height: 36px; margin-bottom: 1rem; }
  .sanctuary-row { grid-template-columns: 1fr; }
  .sanctuary-row:nth-child(even) .sanctuary-img { order: 0; }
  .sanctuary-row:nth-child(even) .sanctuary-text { order: 1; }
  .about-preview-inner { grid-template-columns: 1fr; }
  .about-img { aspect-ratio: 4/3; max-height: 360px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .cosmic-blueprint { max-width: 100%; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; max-width: 320px; justify-content: center; }

  /* Hero scroll — hide decorative text label, keep line */
  .hero-scroll span { display: none; }

  /* Small text → lift to readable sizes */
  .offering-arrow { font-size: 0.75rem; }
  .result-label { font-size: 0.72rem; }
  .blueprint-label { font-size: 0.7rem; }
  .reading-section-label { font-size: 0.7rem; }

  /* Reading result layout */
  .reading-section { padding: 1.5rem; }
  .blueprint-card { padding: 1.25rem 1rem; }
  .result-ctas { flex-direction: column; align-items: stretch; }
  .result-ctas .btn { justify-content: center; width: 100%; }

  /* Footer social links — larger tap targets via padding */
  .footer-socials a { padding: 0.75rem 0.4rem; margin: -0.75rem 0; }

  /* Music sections */
  .sj-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .freq-card { flex: 0 0 min(380px, 88vw); }
  .freq-card-body { padding: 1.5rem 1.25rem 1.75rem; }
  .sj-card-body { padding: 1.25rem 1.25rem 1.75rem; }

  /* Testimonial dots — invisible padding enlarges tap area to ~44px */
  .testimonial-dot { width: 8px; height: 8px; padding: 18px; margin: -18px; box-sizing: content-box; background-clip: content-box; }
  .testimonial-dots { gap: 1.5rem; }

  /* Footer social — ensure 44px height */
  .footer-socials a { padding: 0.85rem 0.5rem; margin: -0.85rem 0; }

  /* Pillar padding reduce */
  .pillar { padding: 2.5rem 1.75rem; }

  /* Compact offering cards in 2-col grid */
  .offering-card { padding: 1.5rem 1rem; }
  .offering-title { font-size: 1.1rem; }
  .offering-desc { font-size: 0.92rem; line-height: 1.65; }
  .offering-icon { margin-bottom: 0.75rem; }
  .offering-arrow { margin-top: 0.75rem; }

  /* Pillar text line-height tighter on mobile */
  .pillar-text { line-height: 1.65; font-size: 1rem; }

  /* Sanctuary on mobile: hide placeholder images, show text-only cards */
  .sanctuary { padding: clamp(1.5rem, 5vw, 2.5rem) 0; }
  .sanctuary-img { display: none; }
  .sanctuary-row {
    display: block;
    margin-bottom: 0;
    background: transparent;
  }
  .sanctuary-row + .sanctuary-row { border-top: 1px solid var(--champagne); }
  .sanctuary-text {
    padding: 1.5rem clamp(1.5rem, 5vw, 4rem);
    border-left: 2px solid var(--champagne);
    margin: 0 clamp(1.5rem, 5vw, 4rem);
  }

  /* Page headers — tighter on mobile so content reaches viewport sooner */
  .cat-header { padding-top: clamp(5rem, 10vw, 7rem); padding-bottom: 1.5rem; }
  .cat-body .category-grid { margin-top: 2rem; }
  .page-hero { padding-top: clamp(5rem, 10vw, 7rem); padding-bottom: clamp(2rem, 5vw, 3rem); }
  .inner-hero { padding-top: clamp(5rem, 10vw, 7rem); padding-bottom: clamp(2rem, 5vw, 3rem); }

  /* Retreat section */
  .retreats-content { padding: clamp(3rem,8vw,5rem) clamp(1.5rem,5vw,3rem); }

  /* Offerings detail page: compact cards on mobile */
  .offerings-page-grid { margin-top: 2rem; }
  .offering-page-card { padding: 2rem 1.25rem; }
  .offering-page-title { font-size: 1.25rem; margin-bottom: 0.75rem; }
  .offering-page-desc { font-size: 1rem; line-height: 1.75; margin-bottom: 1.25rem; }
  .offering-page-icon { width: 32px; height: 32px; margin-bottom: 1rem; }

  /* Form fields full-width */
  .form-input, .contact-form input, .contact-form select, .contact-form textarea { width: 100%; }

  /* Contact sidebar — stacks below form on mobile, remove left-border indent */
  .contact-sidebar-col { margin-top: 3rem; padding-top: 3rem; border-top: 1px solid var(--champagne); }
  .contact-sidebar-inner { border-left: none !important; padding-left: 0 !important; }
  /* Bypass reveal on mobile so sidebar shows immediately without scroll */
  .contact-sidebar-col.reveal { opacity: 1 !important; transform: none !important; }

  /* Footer links — expand tap target height to ≥44px */
  .footer-col ul li { margin-bottom: 0; }
  .footer-col ul li a { display: block; padding: 0.75rem 0; }

  /* Email form button — ensure 44px height */
  .email-form button { min-height: 44px; }
}

@media (max-width: 480px) {
  /* Footer: 2-col grid instead of stacking — saves ~350px */
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }  /* brand spans full width */
  .footer-col h4 { font-size: 0.6rem; margin-bottom: 0.75rem; }
  .footer-col ul li a { font-size: 0.78rem; padding: 0.75rem 0; }

  /* Footer outer padding tighter */
  .footer { padding-top: 2.5rem; padding-bottom: 1.5rem; }
  .footer-inner { padding-bottom: 2rem; }

  .email-form { flex-direction: column; }
  .email-form button { padding: 0.9rem; }
  .quiz-progress-bar { max-width: 280px; }
  .result-ctas .btn { font-size: 0.7rem; padding: 1rem 1.5rem; }

  /* Buttons full-width on smallest screens */
  .hero-ctas .btn { max-width: 100%; }

  /* Section padding tighter on small screens — reduces all section heights ~30px each */
  :root { --section-padding: clamp(2rem, 6vw, 3.5rem); }

  /* Override 768px section-specific paddings (they hardcode 2.5rem, which wins over the variable).
     At 375px these bring each section from 40px→32px per side = 16px saved × 2 × 7 sections. */
  .brand-essence, .offerings, .testimonials, .about-preview { padding: 2rem 0; }
  .reading-teaser, .archetype-teaser, .email-capture { padding: 2rem 0; }

  /* Tighten spacing utilities on mobile — compounds across every section */
  .mb-sm { margin-bottom: 1rem; }
  .mb-md { margin-bottom: 1.75rem; }
  .mb-lg { margin-bottom: 2.5rem; }
  .mt-sm { margin-top: 1rem; }
  .mt-md { margin-top: 1.75rem; }
  .mt-lg { margin-top: 2.5rem; }

  /* Nav logo text smaller */
  .nav-logo-text { font-size: 0.85rem; }
  .nav-logo-text small { font-size: 0.5rem; }

  /* Reading cards padding */
  .result-card { padding: clamp(2rem, 6vw, 3rem) clamp(1.25rem, 4vw, 2.5rem); }
  .reading-section { padding: 1.25rem; }
  .blueprint-card { padding: 1rem 0.75rem; }

  /* Testimonials: tighter quote on smallest screens */
  .testimonial-quote { font-size: 1rem; line-height: 1.55; }
  .testimonial-track { margin-top: 1.5rem; }
}

/* ── Page-specific tints ───────────────────────────────────── */
body.reading-page { background: var(--ivory); }
body.archetype-page { background: var(--ivory); }
