/* ============================================================
   Ruhi Siingh — Personal Brand
   Warm, editorial, fashion-forward design system
   ============================================================ */

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

:root {
  /* Palette — Maison Noir: luxury/premium editorial (gold on cream + charcoal) */
  --bg-ivory: #faf9f7;        /* cream page */
  --bg-warm-white: #ffffff;   /* card white */
  --bg-blush: #f3f1ed;        /* warm stone panel */
  --bg-rose: #ece9e3;         /* stone */
  --bg-deep: #1c1917;         /* charcoal */

  --ink: #1c1917;
  --ink-soft: #44403c;
  --mute: #79716b;
  --line: #e3dfd8;

  --plum: #1c1917;            /* dark band base (charcoal) */
  --wine: #292524;            /* dark band 2 */
  --gold: #ca8a04;            /* golden yellow accent (text-safe on cream) */
  --gold-soft: #eab308;       /* bright yellow */
  --rose-gold: #d4a017;       /* marigold */
  --terracotta: #a16207;      /* deep amber-yellow */
  --sage: #8a8c7b;

  /* Radius — crisp editorial */
  --r-sm: 6px;
  --r: 10px;
  --r-lg: 16px;
  --r-pill: 100px;

  /* Restrained shadows — borders do the work */
  --sh-soft: 0 12px 34px -22px rgba(28,25,23,0.28);
  --sh-card: 0 22px 50px -30px rgba(28,25,23,0.38);
  --sh-glow: 0 14px 30px -16px rgba(202,138,4,0.36);

  /* Type */
  --font-display: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', 'Source Sans Pro', system-ui, -apple-system, sans-serif;
  --font-signature: 'Italianno', cursive;

  /* Scale */
  --fs-hero: clamp(3.2rem, 7.6vw, 6.75rem);
  --fs-h1: clamp(2.5rem, 5vw, 4.25rem);
  --fs-h2: clamp(2rem, 4vw, 3.25rem);
  --fs-h3: clamp(1.4rem, 2.4vw, 2rem);
  --fs-eyebrow: 0.78rem;
  --fs-body: 1.05rem;
  --fs-small: 0.875rem;

  /* Space */
  --s-xs: 0.5rem;
  --s-sm: 1rem;
  --s-md: 1.75rem;
  --s-lg: 3.5rem;
  --s-xl: 6rem;
  --s-xxl: 9rem;

  /* Layout */
  --container: 1240px;
  --container-narrow: 880px;
  --container-wide: 1440px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --fast: 250ms;
  --med: 600ms;
  --slow: 1100ms;
}

html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.75;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 85% -5%, rgba(202,138,4,0.07), transparent 60%),
    radial-gradient(900px 500px at -10% 30%, rgba(28,25,23,0.03), transparent 55%),
    var(--bg-ivory);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--fast) var(--ease); }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--gold); color: var(--ink); }

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
p { color: var(--ink-soft); }
em, .ital { font-style: italic; font-family: var(--font-display); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: var(--s-md);
}
.eyebrow.on-dark { color: var(--gold-soft); }

.signature {
  font-family: var(--font-signature);
  font-size: 2.75rem;
  color: var(--wine);
  line-height: 1;
}

.divider {
  display: inline-flex;
  align-items: center;
  gap: var(--s-sm);
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: var(--s-md);
}
.divider::before, .divider::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

/* Layout */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--s-md); }
.container-narrow { width: 100%; max-width: var(--container-narrow); margin: 0 auto; padding: 0 var(--s-md); }
.container-wide { width: 100%; max-width: var(--container-wide); margin: 0 auto; padding: 0 var(--s-md); }
.section { padding: var(--s-xxl) 0; position: relative; }
.section-tight { padding: var(--s-xl) 0; }
.center { text-align: center; }
.mt-md { margin-top: var(--s-md); }
.mt-lg { margin-top: var(--s-lg); }

/* Navigation */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem 0;
  transition: background var(--med) var(--ease),
              backdrop-filter var(--med) var(--ease),
              padding var(--med) var(--ease),
              box-shadow var(--med) var(--ease);
}
.site-nav.is-scrolled {
  background: rgba(250, 249, 247, 0.84);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  padding: 0.75rem 0;
  box-shadow: 0 1px 0 rgba(28,25,23,0.06), 0 10px 30px -20px rgba(28,25,23,0.18);
}
.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.02em;
  line-height: 1;
}
.brand small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: 4px;
  font-weight: 500;
}
.on-hero .brand,
.on-hero .brand small,
.on-hero .nav-links a { color: #fff; }
.on-hero.is-scrolled .brand,
.on-hero.is-scrolled .nav-links a { color: var(--ink); }
.on-hero.is-scrolled .brand small { color: var(--mute); }

.nav-links {
  display: flex;
  gap: 2.25rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: relative;
  padding: 0.25rem 0;
  font-weight: 500;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  height: 1px; width: 0;
  background: var(--gold);
  transition: width var(--fast) var(--ease);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: var(--gold); }

.nav-toggle {
  display: none;
  width: 28px; height: 22px;
  position: relative;
  z-index: 110;
}
.nav-toggle span {
  display: block;
  position: absolute;
  left: 0;
  width: 100%; height: 2px;
  background: currentColor;
  transition: transform var(--fast) var(--ease),
              opacity var(--fast) var(--ease),
              top var(--fast) var(--ease);
}
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 10px; }
.nav-toggle span:nth-child(3) { top: 20px; }
.nav-toggle.is-active span:nth-child(1) { top: 10px; transform: rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { top: 10px; transform: rotate(-45deg); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 3px;
  transition: all var(--fast) var(--ease);
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: var(--ink);
  color: #fff;
}
.btn-primary:hover {
  background: #000;
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -16px rgba(28,25,23,0.5);
}
.btn-gold {
  background: var(--gold);
  color: #fff;
}
.btn-gold:hover {
  background: #a16207;
  transform: translateY(-2px);
  box-shadow: var(--sh-glow);
}
.btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,0.55);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}
.btn-outline {
  color: var(--wine);
  border-color: var(--wine);
}
.btn-outline:hover {
  background: var(--wine);
  color: var(--bg-warm-white);
}
.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0;
  color: var(--wine);
  border-bottom: 1px solid var(--gold);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 500;
}
.btn-link .arrow {
  display: inline-block;
  transition: transform var(--fast) var(--ease);
}
.btn-link:hover .arrow { transform: translateX(6px); }
.btn-link:hover { color: var(--plum); }

/* Hero */
.hero {
  min-height: 100vh;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: 50% 38%;
  background-attachment: fixed;
  will-change: transform;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg,
      rgba(20,15,13,0.82) 0%,
      rgba(20,15,13,0.62) 32%,
      rgba(20,15,13,0.28) 55%,
      rgba(20,15,13,0.08) 75%,
      rgba(20,15,13,0.00) 100%),
    linear-gradient(180deg,
      rgba(28,25,23,0.22) 0%,
      rgba(28,25,23,0.42) 100%);
}
.hero .container {
  position: relative;
  z-index: 2;
  padding-top: 6rem;
  max-width: 1240px;
}
.hero h1, .hero .tagline, .hero .hero-eyebrow, .hero-actions {
  max-width: 560px;
}
.hero-eyebrow { color: var(--gold-soft); }
.hero h1 {
  color: #fff;
  font-size: var(--fs-hero);
  margin-bottom: var(--s-md);
  font-weight: 400;
  max-width: 12ch;
}
.hero h1 .ital { color: var(--gold-soft); }
.hero .tagline {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  max-width: 540px;
  color: rgba(255,255,255,0.92);
  margin-bottom: var(--s-lg);
  font-weight: 300;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: var(--s-sm); flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.75);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  text-align: center;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px; height: 50px;
  background: rgba(255,255,255,0.7);
  margin: 14px auto 0;
  animation: scrollHint 2.4s var(--ease) infinite;
}
.hero-credit {
  position: absolute;
  right: 1.5rem; bottom: 1.5rem;
  z-index: 2;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* Section heads */
.section-head { text-align: center; margin-bottom: var(--s-xl); }
.section-head h2 { max-width: 720px; margin: 0 auto var(--s-sm); }
.section-head .sub { color: var(--mute); max-width: 540px; margin: 0 auto; }

/* About */
.about { background: var(--bg-warm-white); position: relative; overflow: hidden; }
.about::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(184,146,79,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: var(--s-xl);
  align-items: center;
}
.about-image-wrap {
  position: relative;
  aspect-ratio: 4/5;
}
.about-image-wrap::before {
  content: '';
  position: absolute;
  top: -22px; left: -22px;
  width: 100%; height: 100%;
  border: 1px solid var(--rose-gold);
  border-radius: var(--r-lg);
  z-index: 0;
  pointer-events: none;
}
.about-image {
  position: relative;
  z-index: 1;
  width: 100%; height: 100%;
  overflow: hidden;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-card);
}
.about-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.about-image:hover img { transform: scale(1.05); }
.about-text > p + p { margin-top: 1rem; }
.about-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-md);
  margin: var(--s-lg) 0 var(--s-md);
  padding: var(--s-md) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about-meta .label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 0.4rem;
  font-weight: 500;
}
.about-meta .value {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ink);
  line-height: 1.35;
}

/* Pillars */
.pillars {
  background:
    radial-gradient(rgba(201,146,95,0.14) 1px, transparent 1.6px) 0 0 / 22px 22px,
    var(--bg-ivory);
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-md);
}
.pillar-card {
  background: linear-gradient(180deg, var(--bg-warm-white), var(--bg-ivory));
  padding: var(--s-lg) var(--s-md);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--sh-soft);
  transition: all var(--med) var(--ease);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.pillar-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--gold-soft), var(--rose-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--med) var(--ease);
}
.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-card);
  border-color: transparent;
}
.pillar-card:hover::before { transform: scaleX(1); }
.pillar-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.3em;
  margin-bottom: var(--s-md);
  font-style: italic;
}
.pillar-card h3 { font-size: 1.4rem; margin-bottom: var(--s-sm); }
.pillar-card p {
  font-size: 0.95rem;
  margin-bottom: var(--s-md);
  flex: 1;
}
.pillar-card .btn-link { font-size: 0.7rem; }

/* Feature quote (parallax) */
.feature-quote {
  position: relative;
  padding: var(--s-xxl) 0;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.feature-quote-bg {
  position: absolute; inset: 0;
  z-index: -1;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.feature-quote-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(28,25,23,0.50), rgba(28,25,23,0.84));
}
.feature-quote .container { position: relative; z-index: 1; text-align: center; }
.feature-quote .eyebrow { color: var(--gold-soft); }
.feature-quote blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2.5rem);
  line-height: 1.45;
  max-width: 920px;
  margin: 0 auto;
  color: #fff;
  font-weight: 400;
}
.feature-quote blockquote::before,
.feature-quote blockquote::after {
  content: '"';
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold-soft);
  opacity: 0.5;
  line-height: 0;
  vertical-align: -0.4em;
}
.feature-quote blockquote::before { margin-right: 0.5rem; }
.feature-quote blockquote::after { margin-left: 0.5rem; }
.feature-quote cite {
  display: block;
  margin-top: var(--s-lg);
  font-family: var(--font-signature);
  font-size: 2.4rem;
  color: var(--gold-soft);
  font-style: normal;
}

/* Numbers / journey */
.journey { background: var(--bg-warm-white); }
.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-md);
  text-align: center;
}
.journey-stat .num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--wine);
  line-height: 1;
  margin-bottom: var(--s-sm);
  font-weight: 500;
}
.journey-stat .num span { color: var(--gold); font-style: italic; }
.journey-stat .label {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mute);
}

/* Gallery preview */
.gallery-preview { background: var(--bg-ivory); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 120px;
  gap: 1rem;
}
.gallery-item {
  overflow: hidden;
  position: relative;
  background: var(--line);
  border-radius: var(--r);
  box-shadow: var(--sh-soft);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(31,24,22,0.4));
  opacity: 0;
  transition: opacity var(--med) var(--ease);
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item:hover::after { opacity: 1; }
.g1 { grid-column: span 5; grid-row: span 4; }
.g2 { grid-column: span 4; grid-row: span 3; }
.g3 { grid-column: span 3; grid-row: span 3; }
.g4 { grid-column: span 4; grid-row: span 3; }
.g5 { grid-column: span 5; grid-row: span 4; }
.g6 { grid-column: span 3; grid-row: span 3; }

/* Press strip */
.press-strip {
  padding: var(--s-lg) 0;
  background: var(--bg-warm-white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.press-row {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: var(--s-lg);
  flex-wrap: wrap;
}
.press-row .item {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--mute);
  font-size: 1.1rem;
  transition: color var(--fast) var(--ease);
}
.press-row .item:hover { color: var(--wine); }

/* Newsletter CTA */
.cta-band {
  background:
    radial-gradient(600px 380px at 20% 25%, rgba(202,138,4,0.40), transparent 60%),
    radial-gradient(620px 400px at 85% 80%, rgba(234,179,8,0.30), transparent 60%),
    radial-gradient(520px 360px at 60% 30%, rgba(212,160,23,0.28), transparent 60%),
    linear-gradient(135deg, #1c1917 0%, #292524 55%, #3a3430 120%);
  background-size: 180% 180%, 180% 180%, 180% 180%, 100% 100%;
  animation: auroraDrift 28s ease-in-out infinite;
  color: var(--bg-warm-white);
  text-align: center;
  padding: var(--s-xxl) 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before, .cta-band::after {
  content: '';
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217,184,115,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band::before { top: -100px; left: -100px; }
.cta-band::after { bottom: -100px; right: -100px; }
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { color: var(--bg-warm-white); margin-bottom: var(--s-md); }
.cta-band .tagline {
  color: rgba(253,250,243,0.85);
  max-width: 560px;
  margin: 0 auto var(--s-lg);
  font-size: 1.1rem;
}
.newsletter-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  gap: var(--s-xs);
  flex-wrap: wrap;
  justify-content: center;
}
.newsletter-form input {
  flex: 1;
  min-width: 220px;
  padding: 0.95rem 1.25rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--bg-warm-white);
  font-family: inherit;
  font-size: 0.95rem;
  border-radius: 3px;
  transition: border-color var(--fast) var(--ease);
}
.newsletter-form input::placeholder { color: rgba(253,250,243,0.55); }
.newsletter-form input:focus {
  outline: none;
  border-color: var(--gold-soft);
}

/* Page hero (inner pages) */
.page-hero {
  min-height: 60vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
  color: #fff;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
}
.page-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(28,25,23,0.46), rgba(28,25,23,0.80));
}
.page-hero .container { position: relative; z-index: 1; text-align: center; }
.page-hero .eyebrow { color: var(--gold-soft); }
.page-hero h1 {
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  margin-bottom: var(--s-md);
  font-weight: 400;
}
.page-hero p { color: rgba(255,255,255,0.85); max-width: 620px; margin: 0 auto; }

/* Writings — poem cards */
.poems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--s-md);
}
.poem-card {
  background: linear-gradient(180deg, var(--bg-warm-white), var(--bg-blush));
  padding: var(--s-lg) var(--s-md);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--sh-soft);
  position: relative;
  transition: all var(--med) var(--ease);
}
.poem-card:hover {
  box-shadow: var(--sh-card);
  transform: translateY(-4px);
}
.poem-card .quote-mark {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold);
  line-height: 0.5;
  opacity: 0.4;
  display: block;
  margin-bottom: var(--s-sm);
}
.poem-card .body {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: var(--s-md);
  white-space: pre-line;
}
.poem-card .meta {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mute);
}

/* Book feature */
.book-feature { background: var(--bg-warm-white); }
.book-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--s-xl);
  align-items: center;
}
.book-cover {
  position: relative;
  aspect-ratio: 2/3;
  background: linear-gradient(135deg, var(--plum), var(--wine));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--s-md);
  border-radius: var(--r);
  box-shadow: 30px 30px 60px -24px rgba(28,25,23,0.42);
  transition: transform var(--med) var(--ease);
}
.book-cover:hover { transform: rotate(-1deg) translateY(-6px); }
.book-cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
  border-radius: var(--r);
}
.book-cover-text {
  position: relative;
  z-index: 1;
  color: var(--bg-warm-white);
}
.book-cover-text .title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  line-height: 1.2;
  margin-bottom: var(--s-md);
  font-style: italic;
}
.book-cover-text .author {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

/* Events / albums */
.events-list { display: grid; gap: var(--s-lg); }
.event-card {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--s-lg);
  align-items: center;
  background: var(--bg-warm-white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-soft);
  overflow: hidden;
  transition: all var(--med) var(--ease);
}
.event-card:hover {
  box-shadow: var(--sh-card);
  transform: translateY(-4px);
}
.event-card:nth-child(even) {
  grid-template-columns: 1fr 1.4fr;
  direction: rtl;
}
.event-card:nth-child(even) .event-content { direction: ltr; }
.event-card:nth-child(even) .event-image { direction: ltr; }
.event-image {
  height: 100%; min-height: 320px;
  overflow: hidden;
}
.event-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.event-card:hover .event-image img { transform: scale(1.06); }
.event-content { padding: var(--s-lg) var(--s-md); }
.event-date {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s-sm);
  font-weight: 500;
}
.event-content h3 { margin-bottom: var(--s-sm); }
.event-content p { margin-bottom: var(--s-md); }
.event-tag {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  background: transparent;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 3px;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

/* Press articles */
.press-list { display: grid; gap: var(--s-md); }
.press-item {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: var(--s-md);
  padding: var(--s-md);
  background: var(--bg-warm-white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--sh-soft);
  align-items: center;
  transition: all var(--fast) var(--ease);
}
.press-item:hover {
  border-color: var(--rose-gold);
  transform: translateX(6px);
  box-shadow: var(--sh-card);
}
.press-item .outlet {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--wine);
}
.press-item .headline {
  font-size: 1.05rem;
  color: var(--ink);
  font-weight: 500;
}
.press-item .date {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
}

/* Coaching services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-md);
}
.service-card {
  background: linear-gradient(180deg, var(--bg-warm-white), var(--bg-ivory));
  padding: var(--s-lg) var(--s-md);
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-soft);
  transition: all var(--med) var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-card);
  border-color: var(--rose-gold);
}
.service-icon {
  display: inline-flex;
  width: 72px; height: 72px;
  border: none;
  background: linear-gradient(135deg, var(--gold-soft), var(--rose-gold));
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: var(--sh-glow);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  margin-bottom: var(--s-md);
}
.service-card h3 { font-size: 1.3rem; margin-bottom: var(--s-sm); }
.service-card p { font-size: 0.95rem; }

/* Footer */
.site-footer {
  background: var(--bg-deep);
  color: rgba(253,250,243,0.72);
  padding: var(--s-xl) 0 var(--s-md);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.4fr;
  gap: var(--s-lg);
  margin-bottom: var(--s-xl);
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.85rem;
  color: var(--bg-warm-white);
  margin-bottom: var(--s-sm);
  font-weight: 500;
}
.footer-brand small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-top: 4px;
}
.footer-tag {
  font-family: var(--font-display);
  font-style: italic;
  color: rgba(253,250,243,0.6);
  margin-top: var(--s-md);
  font-size: 1rem;
  max-width: 320px;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: var(--s-md);
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; font-size: 0.95rem; }
.footer-col a:hover { color: var(--gold-soft); }
.footer-bottom {
  padding-top: var(--s-md);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(253,250,243,0.45);
  flex-wrap: wrap;
  gap: var(--s-sm);
}
.social-row { display: flex; gap: 1rem; }
.social-row a {
  display: inline-flex;
  width: 36px; height: 36px;
  border: 1px solid rgba(253,250,243,0.2);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all var(--fast) var(--ease);
}
.social-row a:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* Hindi verse strip — Devanagari typography */
.hindi-strip {
  background: linear-gradient(180deg, var(--bg-warm-white), var(--bg-blush));
  padding: var(--s-xl) 0;
  position: relative;
  overflow: hidden;
}
.hindi-strip::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.hindi-strip::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.hindi-strip .container { text-align: center; position: relative; }
.hindi-strip .eyebrow { color: var(--wine); }
.hindi-verse {
  font-family: 'Tiro Devanagari Hindi', 'Noto Serif Devanagari', serif;
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.6;
  color: var(--ink);
  max-width: 820px;
  margin: 0 auto var(--s-md);
  font-weight: 400;
}
.hindi-attribution {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mute);
}

/* Social embeds section */
.social-embeds { background: var(--bg-warm-white); }
.embed-row { margin-bottom: var(--s-xl); }
.embed-row:last-child { margin-bottom: 0; }
.embed-row-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--s-md);
  margin-bottom: var(--s-md);
  padding-bottom: var(--s-sm);
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.embed-row-head h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin: 0;
  color: var(--ink);
}
.embed-row-head .handle {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
  margin-left: 0.6rem;
  font-weight: 500;
}
.embed-grid-yt {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-md);
}
.embed-grid-ig {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-sm);
}
.embed-tile {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--bg-ivory);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--sh-soft);
  transition: transform var(--med) var(--ease), box-shadow var(--med) var(--ease);
}
.embed-tile-yt { aspect-ratio: 16/9; }
.embed-tile-ig { aspect-ratio: 1/1.18; min-height: 280px; }
.embed-tile iframe {
  width: 100%; height: 100%;
  border: 0;
  display: block;
}
.embed-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--s-md);
  background: linear-gradient(135deg, var(--bg-blush), var(--bg-warm-white));
  color: var(--ink-soft);
}
.embed-placeholder.yt {
  background: linear-gradient(135deg, var(--plum), var(--wine));
  color: rgba(253,250,243,0.92);
}
.embed-placeholder:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 40px -16px rgba(31,24,22,0.2);
}
.embed-placeholder .icon {
  display: inline-flex;
  width: 56px; height: 56px;
  border: 1px solid currentColor;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  margin: 0 auto var(--s-sm);
  opacity: 0.85;
}
.embed-placeholder p {
  font-size: 0.9rem;
  margin: 0;
  color: inherit;
  font-family: var(--font-display);
  font-style: italic;
}
.embed-placeholder small {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.55;
  font-family: var(--font-body);
  font-style: normal;
}

@media (max-width: 1024px) {
  .embed-grid-yt { grid-template-columns: 1fr; }
  .embed-grid-ig { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .embed-grid-ig { grid-template-columns: 1fr; }
}

/* RSRT — Ruh Se Rooh Tak anchoring brand */
.rsrt { background: var(--bg-warm-white); }
.rsrt-panel {
  background:
    radial-gradient(700px 400px at 85% 10%, rgba(202,138,4,0.34), transparent 60%),
    linear-gradient(135deg, #1c1917, #292524);
  color: var(--bg-warm-white);
  border-radius: var(--r-lg);
  padding: var(--s-xl) var(--s-lg);
  box-shadow: var(--sh-card);
  overflow: hidden;
}
.rsrt-panel .about-grid { gap: var(--s-xl); }
.rsrt-panel h2, .rsrt-panel h3 { color: #fff; }
.rsrt-panel p { color: rgba(253,250,243,0.88); }
.rsrt-panel .eyebrow { color: var(--gold-soft); }
.rsrt-medallion {
  position: relative;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--sh-glow), 0 0 0 6px rgba(234,179,8,0.28);
}
.rsrt-medallion img { width: 100%; height: 100%; object-fit: cover; }
.rsrt-tagline {
  font-family: var(--font-signature);
  font-size: 2.6rem;
  color: var(--gold-soft);
  line-height: 1;
  margin-top: var(--s-sm);
}
.rsrt-meta { display: flex; flex-wrap: wrap; gap: var(--s-md); margin-top: var(--s-lg); }
.rsrt-meta .pill {
  padding: 0.5rem 1.1rem;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(234,179,8,0.45);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

/* ============ Living gradient (aurora) ============ */
@keyframes auroraDrift {
  0%   { background-position: 0% 50%, 100% 50%, 50% 0%; }
  50%  { background-position: 100% 50%, 0% 50%, 50% 100%; }
  100% { background-position: 0% 50%, 100% 50%, 50% 0%; }
}
/* Living colour sheen drifting over photo heroes */
.hero::after,
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(40% 50% at 15% 20%, rgba(234,179,8,0.38), transparent 70%),
    radial-gradient(45% 55% at 85% 75%, rgba(202,138,4,0.30), transparent 70%),
    radial-gradient(40% 40% at 60% 10%, rgba(250,249,247,0.35), transparent 70%);
  background-size: 200% 200%, 200% 200%, 200% 200%;
  mix-blend-mode: soft-light;
  animation: auroraDrift 24s ease-in-out infinite;
}

/* ============ Animated gradient text ============ */
@keyframes gradShimmer { to { background-position: 200% center; } }
.grad-text {
  background: linear-gradient(100deg, var(--gold-soft), var(--rose-gold), var(--terracotta), var(--gold-soft));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: gradShimmer 6s linear infinite;
}

/* ============ Film grain overlay ============ */
body::after {
  content: '';
  position: fixed; inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============ Dot texture utility ============ */
.tex-dots {
  background-image:
    radial-gradient(rgba(201,146,95,0.16) 1px, transparent 1.6px);
  background-size: 22px 22px;
}

/* ============ Dark-luxe band ============ */
.dark-luxe {
  background:
    radial-gradient(720px 420px at 82% 18%, rgba(201,146,95,0.20), transparent 60%),
    radial-gradient(620px 380px at 12% 90%, rgba(212,160,23,0.28), transparent 60%),
    linear-gradient(160deg, #1c1917, #292524) !important;
}
.dark-luxe .section-head h2,
.dark-luxe h2,
.dark-luxe h3 { color: #fff; }
.dark-luxe .eyebrow { color: var(--gold-soft); }
.dark-luxe .section-head .sub,
.dark-luxe p { color: rgba(253,250,243,0.7); }
.dark-luxe .journey-stat .num { color: var(--gold-soft); }
.dark-luxe .journey-stat .num span { color: var(--rose-gold); }
.dark-luxe .journey-stat .label { color: rgba(253,250,243,0.6); }

/* Reveal animations */
.reveal,
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-scale {
  opacity: 0;
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
  will-change: opacity, transform;
}
.reveal,
.reveal-up { transform: translateY(48px); }
.reveal-left { transform: translateX(-48px); }
.reveal-right { transform: translateX(48px); }
.reveal-scale { transform: scale(0.92); transition-duration: 1.4s; }

.reveal.is-visible,
.reveal-up.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible,
.reveal-scale.is-visible {
  opacity: 1;
  transform: none;
}
.reveal-d1 { transition-delay: 0.15s; }
.reveal-d2 { transition-delay: 0.3s; }
.reveal-d3 { transition-delay: 0.45s; }
.reveal-d4 { transition-delay: 0.6s; }
.reveal-d5 { transition-delay: 0.75s; }

@keyframes scrollHint {
  0%, 100% { transform: scaleY(1); transform-origin: top; opacity: 0.7; }
  50% { transform: scaleY(0.3); transform-origin: bottom; opacity: 0.3; }
}

/* Responsive */
@media (max-width: 1024px) {
  :root {
    --s-xxl: 7rem;
    --s-xl: 4.5rem;
    --s-lg: 2.5rem;
  }
  .about-grid, .book-grid { grid-template-columns: 1fr; gap: var(--s-lg); }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .event-card, .event-card:nth-child(even) { grid-template-columns: 1fr; direction: ltr; }
  .event-image { min-height: 240px; }
  .press-item { grid-template-columns: 1fr; gap: 0.5rem; }
}

@media (max-width: 720px) {
  :root {
    --s-xxl: 5rem;
    --s-xl: 3.5rem;
    --s-md: 1.25rem;
  }
  .nav-links {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    background: var(--bg-warm-white);
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform var(--med) var(--ease);
    z-index: 105;
  }
  .nav-links.is-open { transform: translateX(0); }
  .nav-links a { font-size: 1.1rem; color: var(--ink) !important; }
  .nav-toggle { display: block; color: #fff; }
  .on-hero.is-scrolled .nav-toggle,
  body:not(.on-hero) .nav-toggle { color: var(--ink); }

  .pillars-grid,
  .services-grid,
  .journey-grid,
  .footer-grid { grid-template-columns: 1fr; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .g1, .g2, .g3, .g4, .g5, .g6 { grid-column: span 1; grid-row: span 1; }
  .g1 { grid-column: span 2; }

  .hero-bg, .feature-quote-bg, .page-hero-bg {
    background-attachment: scroll;
    background-position: center;
  }
  .hero-bg::after {
    background: linear-gradient(180deg,
      rgba(20,15,13,0.45) 0%,
      rgba(20,15,13,0.65) 60%,
      rgba(28,25,23,0.78) 100%);
  }
  .hero h1 { max-width: 100%; }
  .hero h1, .hero .tagline, .hero .hero-eyebrow, .hero-actions { max-width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-up, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 1; transform: none;
  }
  .hero-bg, .feature-quote-bg, .page-hero-bg { background-attachment: scroll; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   YouTube carousel — "Live from her feeds"
   ============================================================ */
.yt-carousel { position: relative; margin-top: var(--s-md); }
.yt-track {
  display: flex;
  gap: 1.1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.5rem 0.25rem 1rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.yt-track::-webkit-scrollbar { display: none; }
.yt-card {
  position: relative;
  flex: 0 0 auto;
  width: clamp(220px, 30vw, 300px);
  aspect-ratio: 16 / 9;
  border-radius: var(--r);
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid var(--line);
  background: var(--bg-deep);
  cursor: pointer;
  padding: 0;
  box-shadow: var(--sh-soft);
  transition: transform var(--fast) var(--ease), box-shadow var(--fast) var(--ease);
}
.yt-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--med) var(--ease);
}
.yt-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(28,25,23,0) 45%, rgba(28,25,23,0.78) 100%);
}
.yt-card:hover { transform: translateY(-4px); box-shadow: var(--sh-card); }
.yt-card:hover img { transform: scale(1.06); }
.yt-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(250,249,247,0.92);
  color: var(--ink);
  font-size: 1rem; padding-left: 3px;
  box-shadow: var(--sh-glow);
  transition: transform var(--fast) var(--ease), background var(--fast) var(--ease);
}
.yt-card:hover .yt-play { transform: translate(-50%, -50%) scale(1.12); background: var(--gold); color: #fff; }
.yt-cap {
  position: absolute; left: 0.9rem; bottom: 0.75rem; right: 0.9rem;
  z-index: 2;
  color: #fff;
  font-size: 0.74rem; letter-spacing: 0.06em; font-weight: 500;
  text-align: left;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}
.yt-card.is-playing iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; z-index: 3; }
.yt-card.is-playing .yt-play,
.yt-card.is-playing .yt-cap,
.yt-card.is-playing::after { display: none; }
.yt-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 4;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--bg-warm-white);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 1.4rem; line-height: 1;
  box-shadow: var(--sh-soft);
  transition: background var(--fast) var(--ease), transform var(--fast) var(--ease);
}
.yt-nav:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
.yt-prev { left: -8px; }
.yt-next { right: -8px; }
@media (max-width: 700px) { .yt-nav { display: none; } }

/* ============================================================
   Birthday celebration (June 16) — confetti + badge
   ============================================================ */
.confetti-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9998;
}
.bday-cluster {
  position: fixed;
  left: 50%;
  top: 5.25rem;
  transform: translateX(-50%);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  pointer-events: none;
  width: max-content;
  max-width: calc(100vw - 2rem);
}
.bday-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.55rem 1.15rem;
  border-radius: var(--r-pill);
  border: 1px solid var(--gold);
  box-shadow: var(--sh-glow);
  animation: bdayPop 0.7s var(--ease-out) both;
}
.bday-badge .cake { font-size: 0.95rem; }
.bday-podcast {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--gold);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: var(--r-pill);
  box-shadow: var(--sh-glow);
  animation: bdayPop 0.85s var(--ease-out) both;
  transition: transform var(--fast) var(--ease), background var(--fast) var(--ease);
  text-align: center;
}
.bday-podcast:hover { transform: translateY(-2px); background: #a16207; color: #fff; }
.bday-podcast .mic { font-size: 0.9rem; }
.bday-podcast .arrow { transition: transform var(--fast) var(--ease); }
.bday-podcast:hover .arrow { transform: translateX(3px); }
@keyframes bdayPop {
  from { opacity: 0; transform: translateY(-12px) scale(0.92); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@media (max-width: 600px) {
  .bday-cluster { top: 4.5rem; }
  .bday-badge { font-size: 0.62rem; padding: 0.45rem 0.85rem; }
  .bday-podcast { font-size: 0.58rem; padding: 0.42rem 0.8rem; letter-spacing: 0.1em; }
}

/* ============================================================
   Floating music player
   ============================================================ */
.music-fab {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 9997;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--gold);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.7rem 1.05rem;
  border-radius: var(--r-pill);
  border: none;
  box-shadow: var(--sh-glow), 0 8px 24px -12px rgba(28,25,23,0.45);
  transition: transform var(--fast) var(--ease), background var(--fast) var(--ease);
}
.music-fab:hover { transform: translateY(-2px); background: #a16207; }
.music-fab .note { font-size: 0.95rem; line-height: 1; }
.music-fab.is-playing .note { animation: notePulse 1.1s ease-in-out infinite; }
@keyframes notePulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.18); opacity: 0.7; }
}
.music-panel {
  position: fixed;
  right: 1.25rem;
  bottom: 4.5rem;
  z-index: 9997;
  width: min(340px, calc(100vw - 2.5rem));
  background: var(--bg-warm-white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-card);
  padding: 0.5rem;
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  pointer-events: none;
  transition: opacity var(--fast) var(--ease), transform var(--fast) var(--ease);
}
.music-panel.is-open { opacity: 1; transform: none; pointer-events: auto; }
.music-panel iframe { display: block; width: 100%; border: 0; border-radius: var(--r); }
