/* ═══════════════════════════════════════════════════════
   SOULFUL HORIZONS — Shared Stylesheet
   Velvet Uprising / Celestial Ember identity system
   Fonts: Playfair Display + Poppins (Google Fonts)
   Updated: June 2026
═══════════════════════════════════════════════════════ */

/* ── CSS VARIABLES ── */
:root {
  --black:        #000000;
  --charcoal:     #524f52;
  --mid-grey:     #595959;
  --light-grey:   #efefef;
  --off-white:    #efefef;
  --white:        #ffffff;
  --magenta:      #d32560;
  --blush:        #ecc4c0;
  --magenta-soft: rgba(211,37,96,0.07);
  --blush-soft:   rgba(236,196,192,0.15);

  /* Warmer background, Sacred Whispers pages only — not a swap for the
     shared --off-white, which FSS content still uses. See brand-identity.md
     mood keywords: "warm-neutral, creamy, pale, misty" for Sacred Whispers. */
  --off-white-warm: #f7f5f3;
}

/* ── RESET ── */
* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

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

/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 0.95rem;
  color: var(--white);
  letter-spacing: -0.03em;
  text-decoration: none;
}
.nav-logo span { color: var(--magenta); }

.nav-logo img {
  height: 36px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.nav-links a.active { color: var(--magenta); }

.mobile-menu-btn { display: none; }
.mobile-nav { display: none; }

.nav-cta {
  background: var(--magenta);
  color: var(--white);
  border: none;
  padding: 9px 22px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: background 0.2s;
}
.nav-cta:hover { background: #b8204f; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--magenta);
  color: var(--white);
  border: none;
  padding: 15px 36px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s;
}
.btn-primary:hover { background: #b8204f; }

.btn-outline {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 15px 36px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.2s;
}
.btn-outline:hover {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 13px 30px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* ── TICKER ── */
.ticker {
  background: var(--magenta);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-inner {
  display: inline-flex;
  gap: 0;
  animation: ticker 30s linear infinite;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.ticker-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--white);
  padding: 0 40px;
  font-weight: 400;
  opacity: 0.92;
}

.ticker-dot { color: rgba(255,255,255,0.4); font-style: normal; }

/* ── HERO (base — black bg, FSS) ── */
.hero {
  min-height: 100vh;
  background: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 64px 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  bottom: -100px; left: -60px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(211,37,96,0.18) 0%, transparent 65%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

/* Sacred Whispers hero variant */
.hero-sw {
  background: var(--off-white);
}
.hero-sw::before {
  background: radial-gradient(circle, rgba(236,196,192,0.4) 0%, transparent 65%);
}
.hero-sw::after {
  background-image:
    linear-gradient(rgba(0,0,0,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.02) 1px, transparent 1px);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.hero-eyebrow-line {
  width: 32px; height: 1px;
  background: var(--magenta);
}
.hero-sw .hero-eyebrow-line { background: var(--blush); }

.hero-eyebrow-text {
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--magenta);
  font-weight: 600;
}
.hero-sw .hero-eyebrow-text { color: var(--charcoal); }

.hero-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
}
.hero-sw .hero-heading { color: var(--black); }

.hero-heading em {
  font-style: italic;
  font-weight: 400;
  color: var(--magenta);
}
.hero-sw .hero-heading em { color: var(--charcoal); }

.hero-sub {
  font-size: clamp(0.9rem, 1.6vw, 1.05rem);
  color: rgba(255,255,255,0.42);
  font-weight: 300;
  line-height: 1.85;
  max-width: 520px;
  margin-bottom: 52px;
}
.hero-sw .hero-sub { color: var(--mid-grey); }

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.scroll-hint {
  position: absolute;
  bottom: 40px; left: 64px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,0.18);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  z-index: 1;
}
.scroll-line {
  width: 40px; height: 1px;
  background: linear-gradient(90deg, var(--magenta), transparent);
}

/* ── PAGE HERO (inner pages, shorter) ── */
.page-hero {
  min-height: 55vh;
  background: var(--black);
  display: flex;
  align-items: flex-end;
  padding: 120px 64px 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  bottom: -80px; left: -60px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(211,37,96,0.16) 0%, transparent 65%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

.page-hero-sw {
  background: var(--off-white);
}
.page-hero-sw::before {
  background: radial-gradient(circle, rgba(236,196,192,0.4) 0%, transparent 65%);
}
.page-hero-sw::after {
  background-image:
    linear-gradient(rgba(0,0,0,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.02) 1px, transparent 1px);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.page-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--magenta);
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.page-eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--magenta);
}

.page-hero-sw .page-eyebrow { color: var(--charcoal); }
.page-hero-sw .page-eyebrow::before { background: var(--blush); }

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.page-hero-sw h1 { color: var(--black); }

.page-hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--magenta);
}
.page-hero-sw h1 em { color: var(--charcoal); }

.page-hero-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
  line-height: 1.85;
  max-width: 500px;
  margin-top: 24px;
}
.page-hero-sw .page-hero-sub { color: var(--mid-grey); }

/* ── SECTION BLOCKS ── */
.section-white  { background: var(--white); padding: 96px 64px; }
.section-off    { background: var(--off-white); padding: 96px 64px; }
.section-black  { background: var(--black); padding: 96px 64px; }
.section-charcoal { background: var(--charcoal); padding: 96px 64px; }

.section-border-b { border-bottom: 1px solid var(--light-grey); }
.section-border-t { border-top: 1px solid var(--light-grey); }

.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--magenta);
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow-sw { color: var(--charcoal); }
.eyebrow::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--magenta);
}
.eyebrow-sw::before { background: var(--blush); }
.eyebrow-plain { display: block; }
.eyebrow-plain::before { display: none; }

.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: var(--black);
  letter-spacing: -0.03em;
  line-height: 1.15;
  max-width: 640px;
  margin-bottom: 56px;
}

.section-heading em {
  font-style: italic;
  font-weight: 400;
  color: var(--magenta);
}
.section-heading-white { color: var(--white); }
.section-heading-white em { color: var(--magenta); }

.section-body {
  font-size: 0.88rem;
  color: var(--mid-grey);
  font-weight: 300;
  line-height: 1.9;
  max-width: 600px;
  margin-bottom: 16px;
}

/* ── RECOGNITION ── */
.recognition-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--light-grey);
  border: 1px solid var(--light-grey);
}

.recognition-card {
  background: var(--white);
  padding: 36px 32px;
  position: relative;
}

.recognition-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
}
.recognition-card:nth-child(1)::before { background: var(--magenta); }
.recognition-card:nth-child(2)::before { background: var(--charcoal); }
.recognition-card:nth-child(3)::before { background: var(--mid-grey); }

.recognition-card p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--charcoal);
  line-height: 1.7;
  font-weight: 400;
}

.recognition-card p strong {
  font-style: normal;
  font-weight: 700;
  color: var(--black);
}

/* ── TESTIMONIALS ── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1px;
  background: var(--light-grey);
  border: 1px solid var(--light-grey);
  max-width: 760px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--white);
  padding: 48px 44px;
  position: relative;
  text-align: center;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 32px; height: 2px;
  background: var(--magenta);
}

.testimonial-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--charcoal);
  line-height: 1.65;
  margin-bottom: 20px;
}

.testimonial-attr {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--magenta);
  font-weight: 600;
}

/* ── TWO DOORS ── */
.doors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

.door {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.door-fss { background: var(--black); }
.door-sw  { background: var(--off-white); }

/* Door image — large and prominent, like standing at the threshold */
.door-image-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-top: 40px;
  flex: 0 0 auto;
  position: relative;
}

.door-image {
  width: auto;
  height: 340px;
  max-height: 45vh;
  object-fit: contain;
  object-position: bottom;
  display: block;
  pointer-events: none;
}
.door-fss .door-image {
  filter: drop-shadow(0 16px 48px rgba(211,37,96,0.35));
}
.door-sw .door-image {
  filter: drop-shadow(0 16px 48px rgba(188,150,148,0.25));
}

/* Content area below the door image */
.door-content {
  padding: 40px 64px 72px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.door-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.door-fss .door-tag { color: var(--magenta); }
.door-sw  .door-tag { color: var(--charcoal); }

.door-tag-line { width: 24px; height: 1px; }
.door-fss .door-tag-line { background: var(--magenta); }
.door-sw  .door-tag-line { background: var(--charcoal); }

.door-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.door-fss .door-heading { color: var(--white); }
.door-sw  .door-heading { color: var(--black); }

.door-heading em { font-style: italic; font-weight: 400; color: var(--magenta); }
.door-sw .door-heading em { color: var(--charcoal); }

.door-body {
  font-size: 0.86rem;
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 20px;
  max-width: 380px;
  position: relative;
  z-index: 1;
}
.door-fss .door-body { color: rgba(255,255,255,0.45); }
.door-sw  .door-body { color: var(--mid-grey); }

.door-offer {
  font-size: 0.76rem;
  font-weight: 500;
  margin-bottom: 36px;
  max-width: 380px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}
.door-fss .door-offer { color: rgba(255,255,255,0.6); }
.door-sw  .door-offer { color: var(--charcoal); }

.door-offer span { font-weight: 600; }
.door-fss .door-offer span { color: var(--magenta); }
.door-sw  .door-offer span { color: var(--charcoal); }

.door-btn {
  align-self: flex-start;
  padding: 13px 30px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  position: relative;
  z-index: 1;
}
.door-btn::after { content: '→'; font-weight: 300; }

.door-fss .door-btn { background: var(--magenta); color: var(--white); }
.door-sw  .door-btn { background: transparent; color: var(--charcoal); border: 1px solid var(--charcoal); }

/* ── SARAH SECTION ── */
.sarah {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--light-grey);
  border-bottom: 1px solid var(--light-grey);
}

.sarah-text {
  padding: 96px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--light-grey);
}

.sarah-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--magenta);
  font-weight: 600;
  margin-bottom: 20px;
}

.sarah-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.3;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.sarah-text h2 em { font-style: italic; font-weight: 400; color: var(--magenta); }

.sarah-text p {
  font-size: 0.85rem;
  color: var(--mid-grey);
  font-weight: 300;
  line-height: 1.9;
  max-width: 420px;
  margin-bottom: 16px;
}

.sarah-credentials {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 36px;
}

.credential {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.72rem;
  color: var(--charcoal);
  font-weight: 400;
  line-height: 1.5;
}
.credential::before {
  content: '';
  display: block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--magenta);
  flex-shrink: 0;
  margin-top: 6px;
}

.sarah-link {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--magenta);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  align-self: flex-start;
}
.sarah-link::after {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--magenta);
}

.sarah-photo-panel {
  background: var(--charcoal);
  padding: 96px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sarah-photo {
  width: 100%;
  max-width: 320px;
  max-height: 380px;
  object-fit: cover;
  object-position: center top;
  display: block;
  margin: 0 auto 36px;
  border-radius: 2px;
}

.sarah-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  max-height: 500px;
  background: rgba(255,255,255,0.05);
  border: 1px dashed rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.sarah-photo-placeholder span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sarah-pull {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 1.8vw, 1.4rem);
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin-bottom: 20px;
  padding-left: 24px;
  border-left: 2px solid var(--magenta);
}

.sarah-pull-attr {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  font-weight: 600;
  padding-left: 24px;
}

/* ── PILLARS ── */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-left: 1px solid var(--light-grey);
  border-top: 1px solid var(--light-grey);
}

.pillar {
  padding: 40px 36px;
  border-right: 1px solid var(--light-grey);
  border-bottom: 1px solid var(--light-grey);
  position: relative;
}

.pillar::before {
  content: '';
  position: absolute;
  top: -1px; left: 0;
  width: 40px; height: 2px;
}
.pillar:nth-child(1)::before { background: var(--magenta); }
.pillar:nth-child(2)::before { background: var(--charcoal); }
.pillar:nth-child(3)::before { background: var(--mid-grey); }
.pillar:nth-child(4)::before { background: var(--magenta); }
.pillar:nth-child(5)::before { background: var(--charcoal); }

.pillar h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.pillar p {
  font-size: 0.78rem;
  color: var(--mid-grey);
  line-height: 1.85;
  font-weight: 300;
}

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.t-card {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
}

.t-card-light { border-top: 1px solid var(--light-grey); }

.t-mark {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--magenta);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 16px;
}

.t-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-bottom: 20px;
}

.t-text-dark { color: var(--charcoal); }

.t-name {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--magenta);
  font-weight: 600;
}

/* ── WORK WITH ME ── */
.wwm-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.wwm-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--magenta);
  font-weight: 600;
  margin-bottom: 20px;
}

.wwm-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--black);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 24px;
}
.wwm-heading em { font-style: italic; font-weight: 400; color: var(--magenta); }

.wwm-body {
  font-size: 0.85rem;
  color: var(--mid-grey);
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 20px;
  max-width: 420px;
}

.wwm-process {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 32px 0;
}

.wwm-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.wwm-step-num {
  font-family: 'Playfair Display', serif;
  font-size: 0.8rem;
  font-weight: 900;
  color: var(--magenta);
  opacity: 0.5;
  flex-shrink: 0;
  margin-top: 1px;
  width: 20px;
}

.wwm-step-text {
  font-size: 0.78rem;
  color: var(--charcoal);
  font-weight: 400;
  line-height: 1.6;
}
.wwm-step-text strong { font-weight: 600; color: var(--black); }

/* Booking placeholder */
.booking-card {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-top: 3px solid var(--magenta);
  padding: 40px 36px;
}

.booking-card-label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--magenta);
  font-weight: 600;
  margin-bottom: 14px;
}

.booking-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  line-height: 1.2;
}

.booking-card p {
  font-size: 0.78rem;
  color: var(--mid-grey);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 28px;
}

.widget-area {
  background: var(--off-white);
  border: 1px dashed var(--light-grey);
  padding: 48px 24px;
  text-align: center;
  margin-bottom: 20px;
}

.widget-area-label {
  font-size: 0.72rem;
  color: var(--mid-grey);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.6;
  margin-bottom: 6px;
}

.widget-area-sub {
  font-size: 0.72rem;
  color: var(--mid-grey);
  opacity: 0.4;
  font-weight: 300;
}

.booking-note {
  font-size: 0.68rem;
  color: var(--mid-grey);
  font-weight: 300;
  text-align: center;
  line-height: 1.6;
}

/* ── PRODUCT CARDS ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  border: 1px solid var(--light-grey);
  border-top: 3px solid var(--magenta);
  padding: 32px 28px;
  background: var(--white);
  display: flex;
  flex-direction: column;
}

.product-card-sw { border-top-color: var(--blush); }

.product-tag {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--magenta);
  font-weight: 600;
  margin-bottom: 12px;
}
.product-tag-sw { color: var(--charcoal); }

.product-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.product-card p {
  font-size: 0.75rem;
  color: var(--mid-grey);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 20px;
  flex: 1;
}

.product-price {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.product-btn {
  background: var(--magenta);
  color: var(--white);
  border: none;
  padding: 11px 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  align-self: flex-start;
}
.product-btn-sw {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--charcoal);
}
.product-btn-coming {
  background: var(--off-white);
  color: var(--mid-grey);
  cursor: default;
}

/* ── EMAIL SIGNUP ── */
.email-section {
  text-align: center;
}

.email-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
  color: var(--black);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 14px;
}
.email-section h2 em { font-style: italic; font-weight: 400; color: var(--magenta); }

.email-section-dark h2 { color: var(--white); }

.email-desc {
  font-size: 0.86rem;
  color: var(--mid-grey);
  font-weight: 300;
  line-height: 1.75;
  max-width: 440px;
  margin: 0 auto 36px;
}
.email-section-dark .email-desc { color: rgba(255,255,255,0.4); }

.email-row {
  display: flex;
  max-width: 460px;
  margin: 0 auto;
}

.email-input {
  flex: 1;
  padding: 14px 18px;
  background: var(--off-white);
  border: 1px solid var(--light-grey);
  border-right: none;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  color: var(--black);
  outline: none;
}
.email-section-dark .email-input {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1);
  color: var(--white);
}
.email-input::placeholder { color: var(--mid-grey); font-weight: 300; }
.email-section-dark .email-input::placeholder { color: rgba(255,255,255,0.25); }

.email-btn {
  background: var(--magenta);
  color: var(--white);
  border: none;
  padding: 14px 28px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
}

/* ── STAT BLOCKS ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--light-grey);
}
.stat-block {
  padding: 40px 32px;
  border-right: 1px solid var(--light-grey);
  text-align: center;
}
.stat-block:last-child { border-right: none; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--black);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-num span { color: var(--magenta); }
.stat-label {
  font-size: 0.72rem;
  color: var(--mid-grey);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* ── FOOTER ── */
footer {
  background: var(--black);
  padding: 56px 64px 32px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 24px;
  gap: 40px;
}

.footer-brand {}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  text-decoration: none;
  display: inline-block;
}
.footer-logo span { color: rgba(211,37,96,0.8); }

.footer-desc {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.38);
  font-weight: 300;
  line-height: 1.7;
  max-width: 210px;
}

.footer-links-group { display: flex; gap: 48px; }

.footer-col-title {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-col-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col-links a {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col-links a:hover { color: rgba(255,255,255,0.85); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy { font-size: 0.72rem; color: rgba(255,255,255,0.35); }
.footer-tagline {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(211,37,96,0.55);
}

/* ── CONTENT BLOCKS ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.content-block h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.content-block p {
  font-size: 0.8rem;
  color: var(--mid-grey);
  font-weight: 300;
  line-height: 1.85;
}

.content-block-dark h3 { color: var(--white); }
.content-block-dark p { color: rgba(255,255,255,0.4); }

/* ── FULL BLEED TEXT SECTION ── */
.manifesto {
  padding: 96px 64px;
  max-width: 760px;
}

.manifesto p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-style: italic;
  font-weight: 400;
  color: var(--white);
  line-height: 1.7;
  margin-bottom: 24px;
}

.manifesto p:last-child { margin-bottom: 0; }

/* ── UTILITY ── */
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mb-56 { margin-bottom: 56px; }

/* ── SACRED WHISPERS WARM BACKGROUND ── */
/* Apply to <body> or a section on Sacred Whispers pages only. */
.bg-warm { background: var(--off-white-warm); }

/* ── SCROLL REVEAL ── */
/* Gentle fade + small rise, once, on scroll into view. No bounce, no
   flash — kept slow and quiet on purpose (see project brief: nothing
   alarming, nothing that could feel like a jump-scare). Add class
   "reveal" to any element; scroll-reveal.js handles the rest.
   Use reveal-1 / reveal-2 / reveal-3 on siblings for a soft stagger. */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-1.is-visible { transition-delay: 0.08s; }
.reveal-2.is-visible { transition-delay: 0.16s; }
.reveal-3.is-visible { transition-delay: 0.24s; }
.reveal-4.is-visible { transition-delay: 0.32s; }

/* ── B&W → COLOUR ON HOVER ── */
/* Add class "bw-hover" to any <img>. Grayscale by default, eases into
   colour on hover/focus. Kept slow (0.6s) so it reads as a reveal,
   not a flicker. */
.bw-hover {
  filter: grayscale(1) contrast(1.05);
  transition: filter 0.6s ease;
}
.bw-hover:hover,
.bw-hover:focus-visible {
  filter: grayscale(0) contrast(1);
}

/* ── STICKY IMAGE PANEL ── */
/* Optional: add to a photo panel (e.g. .sarah-photo-panel) inside a
   grid section so the image stays in view while the text column
   scrolls past it, the way a pinned portrait works on longer pages.
   Only takes effect on wider screens — see media query below. */
@media (min-width: 1025px) {
  .sticky-panel { align-self: start; position: sticky; top: 96px; }
}

/* ══ ACCESSIBILITY ══ */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--magenta);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker-inner { animation: none; }
  * { transition: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .bw-hover { filter: grayscale(1) contrast(1.05) !important; }
  .sticky-panel { position: static !important; }
}

@media (prefers-contrast: high) {
  :root { --mid-grey: #3a3a3a; --charcoal: #1a1a1a; }
}

/* ══ TABLET (769px–1024px) ══ */
@media (min-width: 769px) and (max-width: 1024px) {
  nav { padding: 0 36px; }
  .nav-links { gap: 20px; }
  .nav-links a { font-size: 0.75rem; }

  .hero { padding: 120px 36px 80px; }
  .page-hero { padding: 100px 36px 64px; }
  .section-white, .section-off, .section-black, .section-charcoal { padding: 72px 36px; }

  .recognition-grid { grid-template-columns: 1fr; }
  .doors, .sarah { grid-template-columns: 1fr; }
  .door-content { padding: 36px 36px 60px; }
  .door-image { height: 260px; }
  .sarah-text { padding: 64px 36px; border-right: none; border-bottom: 1px solid var(--light-grey); }
  .sarah-photo-panel { padding: 56px 36px; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 28px; }
  .wwm-inner, .two-col { grid-template-columns: 1fr; gap: 40px; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .three-col { grid-template-columns: 1fr 1fr; gap: 24px; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat-block:nth-child(2) { border-right: none; }
  .stat-block:nth-child(3) { border-right: 1px solid var(--light-grey); border-top: 1px solid var(--light-grey); }
  .stat-block:nth-child(4) { border-top: 1px solid var(--light-grey); }
  footer { padding: 48px 36px 28px; }
  .footer-links-group { gap: 32px; }
  .manifesto { padding: 72px 36px; }
}

/* ══ MOBILE (max-width: 768px) ══ */
@media (max-width: 768px) {
  nav { padding: 0 20px; height: 56px; }
  .nav-links { display: none; }
  #desktopCta { display: none; }
  .mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
  }
  .mobile-menu-btn span {
    display: block;
    width: 22px; height: 1.5px;
    background: rgba(255,255,255,0.5);
  }
  .mobile-nav {
    display: none;
    position: fixed;
    top: 56px; left: 0; right: 0;
    background: var(--black);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 20px 20px 28px;
    z-index: 99;
    flex-direction: column;
  }
  .mobile-nav.open { display: flex; }
  .mobile-nav a {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: block;
    min-height: 48px;
    display: flex;
    align-items: center;
  }
  .mobile-nav a:last-child { border-bottom: none; }

  .hero { padding: 96px 20px 80px; min-height: 100svh; }
  .hero::before { width: 280px; height: 280px; }
  .hero-heading { font-size: clamp(2.4rem, 11vw, 3.2rem); margin-bottom: 24px; }
  .hero-sub { font-size: 0.88rem; margin-bottom: 36px; max-width: 100%; }
  .hero-buttons { flex-direction: column; gap: 10px; }
  .btn-primary, .btn-outline { width: 100%; text-align: center; padding: 14px 24px; justify-content: center; }
  .scroll-hint { display: none; }

  .page-hero { padding: 96px 20px 56px; min-height: auto; }
  .page-hero h1 { font-size: clamp(1.9rem, 9vw, 2.8rem); }

  .section-white, .section-off, .section-black, .section-charcoal { padding: 56px 20px; }

  .ticker { padding: 12px 0; }
  .ticker-text { font-size: 0.82rem; padding: 0 24px; }

  .recognition-grid { grid-template-columns: 1fr; }
  .recognition-card { padding: 24px 20px; }

  .doors, .sarah { grid-template-columns: 1fr; }
  .door-content { padding: 28px 20px 52px; }
  .door-image { height: 200px; }
  .sarah-text { padding: 56px 20px; border-right: none; border-bottom: 1px solid var(--light-grey); }
  .sarah-photo-panel { padding: 48px 20px; }

  .pillars-grid { grid-template-columns: 1fr; border-left: none; border-top: none; }
  .pillar { border-left: none; border-right: none; padding: 28px 0; border-top: 1px solid var(--light-grey); }
  .pillar::before { top: 0; }

  .testimonials-grid { grid-template-columns: 1fr; gap: 32px; }
  .products-grid { grid-template-columns: 1fr; }
  .three-col { grid-template-columns: 1fr; gap: 28px; }

  .wwm-inner, .two-col { grid-template-columns: 1fr; gap: 40px; }
  .booking-card { padding: 24px 20px; }

  .email-section h2 { font-size: clamp(1.4rem, 7vw, 2rem); }
  .email-row { flex-direction: column; }
  .email-input { border-right: 1px solid var(--light-grey); border-bottom: none; width: 100%; }
  .email-btn { width: 100%; padding: 14px; min-height: 44px; }

  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat-block { padding: 28px 16px; }
  .stat-block:nth-child(2) { border-right: none; }
  .stat-block:nth-child(3) { border-top: 1px solid var(--light-grey); border-right: 1px solid var(--light-grey); }
  .stat-block:nth-child(4) { border-top: 1px solid var(--light-grey); border-right: none; }

  footer { padding: 48px 20px 28px; }
  .footer-top { flex-direction: column; gap: 32px; }
  .footer-links-group { flex-direction: column; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  button, .door-btn, .nav-cta, .email-btn, .mobile-nav a { min-height: 44px; }

  .manifesto { padding: 56px 20px; }
  .manifesto p { font-size: 1rem; }
}
