/* ============================================================
   PARANORM PERFUMERY — STYLESHEET
   Dark Gothic Identity System v1.0
   ============================================================ */

:root {
  --void: #050505;
  --ash: #111111;
  --cinder: #1c1c1c;
  --smoke: #2e2e2e;
  --ember-line: #3a3030;
  --bone: #e2d9c8;
  --ghost: #8a8070;
  --specter: #504840;

  /* Per-scent accents */
  --chudail: #7a0e1e;
  --chudail-glow: rgba(122, 14, 30, 0.18);
  --pishach: #5c2810;
  --pishach-glow: rgba(92, 40, 16, 0.18);
  --samundar: #0b2a45;
  --samundar-glow: rgba(11, 42, 69, 0.22);

  --gold: #c9a84c;
  --gold-dim: #7a6428;

  --font-display: 'Cinzel', 'Times New Roman', serif;
  --font-gothic:  'UnifrakturMaguntia', cursive;
  --font-body:    'EB Garamond', Georgia, serif;

  --ease-reveal: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-ink:    cubic-bezier(0.4, 0, 0.2, 1);

  --section-v: clamp(5rem, 10vw, 9rem);
  --container: 1380px;
}

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

html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  background: var(--void);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.8;
  overflow-x: hidden;
}

/* Grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
  opacity: 0.038;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 300px 300px;
}

/* Scrollbar */
::-webkit-scrollbar           { width: 3px; }
::-webkit-scrollbar-track     { background: var(--void); }
::-webkit-scrollbar-thumb     { background: var(--smoke); }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dim); }

::selection { background: var(--chudail); color: var(--bone); }

img, video { display: block; max-width: 100%; }
p { margin-bottom: 1.2em; }
p:last-child { margin-bottom: 0; }
a { color: var(--gold); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--bone); }

/* ── Type Utilities ─────────────────────────────────────── */
.label {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--ghost);
}

.label--gold { color: var(--gold); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.03em;
}

/* ── Layout Utilities ───────────────────────────────────── */
.wrap {
  width: 90%;
  max-width: var(--container);
  margin: 0 auto;
}

.section { padding: var(--section-v) 0; }

/* Gothic Rule Divider */
.rune-rule {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 3rem 0;
  color: var(--specter);
  font-size: 1rem;
}
.rune-rule::before, .rune-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--smoke), transparent);
}

/* ── Navigation ─────────────────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 8000;
  padding: 1.6rem 0;
  transition: background 0.5s var(--ease-ink), padding 0.4s var(--ease-ink);
}
.nav.scrolled {
  background: rgba(5, 5, 5, 0.96);
  padding: 1rem 0;
  border-bottom: 1px solid var(--smoke);
  backdrop-filter: blur(12px);
}

.nav__inner {
  width: 90%;
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone);
}
.nav__logo em { color: var(--gold); font-style: normal; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav__links a {
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ghost);
}
.nav__links a:hover, .nav__links a.active { color: var(--gold); }

/* Scent link dots */
.nav__links .dot-chudail::before   { content: '● '; color: var(--chudail); }
.nav__links .dot-pishach::before   { content: '● '; color: #7a3515; }
.nav__links .dot-samundar::before  { content: '● '; color: #1460a0; }

.sound-btn {
  background: none;
  border: 1px solid var(--smoke);
  color: var(--ghost);
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}
.sound-btn:hover { border-color: var(--gold); color: var(--gold); }
.sound-btn.playing { border-color: var(--gold); color: var(--gold); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span { display: block; width: 22px; height: 1px; background: var(--bone); transition: all 0.3s; }

/* ── Entry Overlay ──────────────────────────────────────── */
#entry-overlay {
  position: fixed;
  inset: 0;
  z-index: 9500;
  background: var(--void);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  transition: opacity 0.8s var(--ease-reveal);
}
#entry-overlay.dismissed { opacity: 0; pointer-events: none; }

.entry__eyebrow {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--specter);
  text-align: center;
}

.entry__glyphs {
  display: flex;
  gap: 5rem;
  align-items: flex-end;
}

.entry-glyph {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  cursor: pointer;
  padding: 2rem 2.5rem;
  border: 1px solid transparent;
  transition: all 0.5s var(--ease-reveal);
  position: relative;
}
.entry-glyph::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s;
}
.entry-glyph[data-scent="chudail"]::before  { background: radial-gradient(ellipse at 50% 80%, var(--chudail-glow), transparent 70%); }
.entry-glyph[data-scent="pishach"]::before  { background: radial-gradient(ellipse at 50% 80%, var(--pishach-glow), transparent 70%); }
.entry-glyph[data-scent="samundar"]::before { background: radial-gradient(ellipse at 50% 80%, var(--samundar-glow), transparent 70%); }
.entry-glyph:hover::before { opacity: 1; }
.entry-glyph:hover { border-color: var(--smoke); }

.entry-glyph__symbol {
  font-size: 3.5rem;
  transition: transform 0.5s var(--ease-reveal);
}
.entry-glyph:hover .entry-glyph__symbol { transform: translateY(-8px); }

.entry-glyph__name {
  font-family: var(--font-gothic);
  font-size: 2.2rem;
  color: var(--bone);
  line-height: 1;
}
.entry-glyph[data-scent="chudail"] .entry-glyph__name  { color: #e0b0b8; }
.entry-glyph[data-scent="pishach"] .entry-glyph__name  { color: #d0a880; }
.entry-glyph[data-scent="samundar"] .entry-glyph__name { color: #80b0d8; }

.entry-glyph__sub {
  font-family: var(--font-display);
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--specter);
}

#entry-skip {
  background: none;
  border: none;
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--specter);
  cursor: pointer;
  padding: 0.5rem 1rem;
  text-decoration: underline;
  text-decoration-color: var(--smoke);
  transition: color 0.3s;
}
#entry-skip:hover { color: var(--ghost); }

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  height: 100vh;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 55%, rgba(122,14,30,0.1) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(92,40,16,0.07) 0%, transparent 40%),
    radial-gradient(ellipse at 80% 20%, rgba(11,42,69,0.07) 0%, transparent 40%),
    var(--void);
}

.hero__arch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(700px, 90vw);
  height: 500px;
  opacity: 0.055;
  pointer-events: none;
}

/* Candle */
.hero__candle {
  position: absolute;
  bottom: 9%;
  left: 50%;
  transform: translateX(-50%);
}
.candle-body {
  width: 2px;
  height: 50px;
  background: linear-gradient(to top, var(--gold-dim) 0%, transparent 100%);
  margin: 0 auto;
}
.candle-flame {
  width: 8px;
  height: 14px;
  background: radial-gradient(ellipse at 50% 25%, #fff9e0 0%, var(--gold) 45%, transparent 80%);
  border-radius: 50% 50% 30% 30%;
  margin: 0 auto;
  animation: flame 2.2s ease-in-out infinite alternate;
  transform-origin: bottom center;
  position: relative;
}
.candle-glow {
  position: absolute;
  inset: -10px -14px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.22) 0%, transparent 70%);
  border-radius: 50%;
  animation: flicker 3.5s ease-in-out infinite;
}
@keyframes flame {
  from { transform: scaleX(1) scaleY(1) skewX(0deg); filter: blur(0.5px); }
  to   { transform: scaleX(0.78) scaleY(1.15) skewX(-3deg); filter: blur(1px); }
}
@keyframes flicker {
  0%,100% { opacity: 1; }
  33%     { opacity: 0.7; }
  66%     { opacity: 0.85; }
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 5%;
}

.hero__eyebrow {
  display: block;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease-reveal) 0.3s forwards;
}

.hero__title {
  font-family: var(--font-gothic);
  font-size: clamp(5rem, 14vw, 10rem);
  line-height: 0.88;
  color: var(--bone);
  opacity: 0;
  animation: fadeUp 1.3s var(--ease-reveal) 0.55s forwards;
  text-shadow: 0 0 100px rgba(201,168,76,0.08);
}

.hero__sub {
  font-family: var(--font-display);
  font-size: clamp(0.7rem, 1.5vw, 0.85rem);
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--ghost);
  margin-top: 1.8rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease-reveal) 0.95s forwards;
}

.hero__tagline {
  font-style: italic;
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  color: var(--specter);
  margin-top: 1.2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: fadeUp 1s var(--ease-reveal) 1.15s forwards;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: var(--specter);
  font-family: var(--font-display);
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeIn 1s var(--ease-reveal) 2s forwards;
}
.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollDrop 2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%   { transform: scaleY(0); transform-origin: top; }
  49%  { transform: scaleY(1); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── Triptych ───────────────────────────────────────────── */
.triptych { background: var(--void); }

.triptych__header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}
.triptych__header .label { display: block; margin-bottom: 1.2rem; }
.triptych__header h2 { font-size: clamp(2rem, 5vw, 3.5rem); color: var(--bone); }

.triptych__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--smoke);
}

/* Scent Card */
.scent-card {
  background: var(--ash);
  padding: clamp(2.5rem, 5vw, 4.5rem) clamp(1.5rem, 3vw, 3rem);
  text-align: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.5s var(--ease-ink);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scent-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s var(--ease-ink);
}
.scent-card--chudail::before   { background: radial-gradient(ellipse at 50% 90%, var(--chudail-glow), transparent 65%); }
.scent-card--pishach::before   { background: radial-gradient(ellipse at 50% 90%, var(--pishach-glow), transparent 65%); }
.scent-card--samundar::before  { background: radial-gradient(ellipse at 50% 90%, var(--samundar-glow), transparent 65%); }

.scent-card:hover { background: var(--cinder); }
.scent-card:hover::before { opacity: 1; }

/* Top accent line */
.scent-card__bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  opacity: 0.3;
  transition: opacity 0.4s;
}
.scent-card--chudail  .scent-card__bar { background: linear-gradient(to right, transparent, var(--chudail), transparent); }
.scent-card--pishach  .scent-card__bar { background: linear-gradient(to right, transparent, #7a3515, transparent); }
.scent-card--samundar .scent-card__bar { background: linear-gradient(to right, transparent, #1460a0, transparent); }
.scent-card:hover .scent-card__bar { opacity: 1; }

.scent-card__glyph {
  font-size: 2.8rem;
  margin-bottom: 2rem;
  display: block;
  transition: transform 0.6s var(--ease-reveal);
  opacity: 0.6;
}
.scent-card:hover .scent-card__glyph {
  transform: scale(1.12) translateY(-6px);
  opacity: 1;
}

.scent-card__name {
  font-family: var(--font-gothic);
  font-size: clamp(2.8rem, 5vw, 3.8rem);
  color: var(--bone);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.scent-card__archetype {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.scent-card--chudail  .scent-card__archetype { color: #c06080; }
.scent-card--pishach  .scent-card__archetype { color: #b08060; }
.scent-card--samundar .scent-card__archetype { color: #6090c0; }

.scent-card__desc {
  font-size: 0.95rem;
  color: var(--ghost);
  line-height: 1.75;
  max-width: 300px;
  margin-bottom: 2.5rem;
}

.scent-card__notes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 3rem;
}

.note-pill {
  font-family: var(--font-display);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--smoke);
  padding: 0.22rem 0.7rem;
  color: var(--specter);
  transition: all 0.3s;
}
.scent-card:hover .note-pill {
  border-color: var(--ghost);
  color: var(--ghost);
}

.scent-card__link {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 0.7rem 2rem;
  border: 1px solid var(--smoke);
  color: var(--ghost);
  text-decoration: none;
  transition: all 0.4s var(--ease-ink);
  position: relative;
  z-index: 1;
  margin-top: auto;
}
.scent-card:hover .scent-card__link {
  border-color: var(--bone);
  color: var(--bone);
}

/* ── Coven (About) ──────────────────────────────────────── */
.coven {
  background: var(--ash);
  border-top: 1px solid var(--smoke);
  border-bottom: 1px solid var(--smoke);
}
.coven__inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.coven__title { color: var(--bone); margin-bottom: 2.5rem; }
.coven__body { color: var(--ghost); font-size: 1.1rem; line-height: 1.9; margin-bottom: 3rem; }
.coven__quote {
  font-style: italic;
  font-size: clamp(1.15rem, 2.8vw, 1.6rem);
  color: var(--bone);
  border-left: 2px solid var(--gold);
  padding: 0 0 0 2rem;
  text-align: left;
  margin: 3rem 0;
  line-height: 1.6;
}

/* ── Launch Banner ──────────────────────────────────────── */
.launch {
  text-align: center;
  background: var(--void);
  position: relative;
  overflow: hidden;
}
.launch::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201,168,76,0.05), transparent 65%);
}
.launch__content { position: relative; z-index: 1; }
.launch__date {
  font-family: var(--font-display);
  font-size: clamp(0.65rem, 1.5vw, 0.78rem);
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1.5rem;
}
.launch__title { font-size: clamp(2rem, 5vw, 3.5rem); color: var(--bone); margin-bottom: 1.2rem; }
.launch__body { color: var(--ghost); max-width: 480px; margin: 0 auto 3.5rem; font-size: 1.05rem; }
.launch__arch-ornament {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 0 auto 3rem;
}

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  transition: all 0.4s var(--ease-ink);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-ink);
  z-index: 0;
}
.btn span { position: relative; z-index: 1; }
.btn:hover { color: var(--void); }
.btn:hover::before { transform: scaleX(1); }

.btn--ghost {
  border-color: var(--smoke);
  color: var(--ghost);
}
.btn--ghost::before { background: var(--bone); }
.btn--ghost:hover { color: var(--void); }

/* ── Scent Page Hero ────────────────────────────────────── */
.scent-hero {
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}
.scent-hero--chudail  { background: radial-gradient(ellipse at 65% 40%, rgba(122,14,30,0.35) 0%, transparent 55%), radial-gradient(ellipse at 20% 70%, rgba(60,5,15,0.4) 0%, transparent 50%), var(--void); }
.scent-hero--pishach  { background: radial-gradient(ellipse at 40% 50%, rgba(92,40,16,0.38) 0%, transparent 55%), radial-gradient(ellipse at 75% 70%, rgba(40,15,5,0.35) 0%, transparent 50%), var(--void); }
.scent-hero--samundar { background: radial-gradient(ellipse at 50% 35%, rgba(11,42,69,0.45) 0%, transparent 55%), radial-gradient(ellipse at 25% 80%, rgba(5,20,45,0.4) 0%, transparent 50%), var(--void); }

.scent-hero__inner {
  position: relative;
  z-index: 2;
  padding: 0 5% clamp(4rem, 10vw, 8rem);
  max-width: 900px;
}
.scent-hero__label { display: block; margin-bottom: 1.8rem; }
.scent-hero__name {
  font-family: var(--font-gothic);
  font-size: clamp(5.5rem, 18vw, 13rem);
  line-height: 0.82;
  color: var(--bone);
  margin-bottom: 2rem;
}
.scent-hero__tagline {
  font-style: italic;
  font-size: clamp(1.05rem, 2.5vw, 1.4rem);
  color: var(--ghost);
  max-width: 520px;
  line-height: 1.7;
}

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: linear-gradient(to right, var(--chudail), var(--gold));
  transform-origin: left;
  transform: scaleX(0);
  z-index: 8500;
  transition: transform 0.1s linear;
}

/* ── Story Acts ─────────────────────────────────────────── */
.story-act {
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 5%;
  padding: var(--section-v) 5%;
}
.story-act:nth-child(even) .story-act__text   { order: 2; }
.story-act:nth-child(even) .story-act__visual { order: 1; }

.story-act__label { display: block; margin-bottom: 1rem; }
.story-act__title {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  color: var(--bone);
  margin-bottom: 1.8rem;
}
.story-act__body { color: var(--ghost); font-size: 1.05rem; line-height: 1.95; max-width: 520px; }

.story-act__incantation {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--specter);
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--ember-line);
}
.story-act__incantation .devanagari { font-size: 1.4rem; display: block; margin-bottom: 0.4rem; font-family: var(--font-body); color: var(--ghost); letter-spacing: 0; }

/* Arch Frame Visual Placeholder */
.arch-frame {
  display: flex;
  align-items: center;
  justify-content: center;
}
.arch-frame__svg-wrap {
  width: min(320px, 80vw);
  height: min(420px, 55vw);
  border: 1px solid var(--smoke);
  border-radius: 50% 50% 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(180deg, var(--cinder) 0%, var(--ash) 100%);
  transition: border-color 0.5s;
}
.arch-frame__svg-wrap:hover { border-color: var(--ghost); }
.arch-frame__svg-wrap::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 50% 50% 0 0;
  background: linear-gradient(180deg, rgba(201,168,76,0.12) 0%, transparent 50%);
  pointer-events: none;
}
.arch-frame__num {
  font-family: var(--font-gothic);
  font-size: clamp(5rem, 12vw, 8rem);
  color: var(--ember-line);
  line-height: 1;
}

/* ── Notes Section ──────────────────────────────────────── */
.notes-section {
  background: var(--ash);
  border-top: 1px solid var(--smoke);
  border-bottom: 1px solid var(--smoke);
}
.notes-section__title { text-align: center; color: var(--bone); margin-bottom: 3.5rem; }

.notes-pyramid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--smoke);
  max-width: 1000px;
  margin: 0 auto;
}
.notes-tier {
  background: var(--cinder);
  padding: 3rem 2rem;
  text-align: center;
}
.notes-tier__label { display: block; margin-bottom: 1.2rem; }
.notes-tier__list {
  list-style: none;
  color: var(--bone);
  font-size: 1rem;
  line-height: 2.1;
}
.notes-tier__list li::before { content: '—  '; color: var(--specter); }

/* ── Ritual ─────────────────────────────────────────────── */
.ritual-section {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.ritual-section__title { color: var(--bone); margin-bottom: 2rem; }
.ritual-section__body { color: var(--ghost); font-style: italic; font-size: 1.1rem; line-height: 1.95; margin-bottom: 3.5rem; }

/* ── Tribe CTA Strip ────────────────────────────────────── */
.tribe-strip {
  background: var(--void);
  border-top: 1px solid var(--smoke);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.tribe-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.06), transparent 60%);
}
.tribe-strip__content { position: relative; z-index: 1; }
.tribe-strip__date { display: block; margin-bottom: 1.2rem; }
.tribe-strip__title { color: var(--bone); margin-bottom: 1rem; font-size: clamp(1.8rem, 4.5vw, 3rem); }
.tribe-strip__body { color: var(--ghost); max-width: 480px; margin: 0 auto 3rem; }
.tribe-strip__buttons { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }

/* ── Footer ─────────────────────────────────────────────── */
footer {
  background: var(--ash);
  border-top: 1px solid var(--smoke);
  padding: 5rem 0 2.5rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer__brand p { color: var(--specter); font-size: 0.95rem; line-height: 1.8; max-width: 260px; margin-top: 1rem; }

.footer__col h4 {
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ghost);
  margin-bottom: 1.5rem;
}
.footer__col ul { list-style: none; }
.footer__col ul li { margin-bottom: 0.7rem; }
.footer__col ul li a { color: var(--specter); font-size: 0.95rem; }
.footer__col ul li a:hover { color: var(--gold); }

.footer__bottom {
  padding-top: 2.5rem;
  border-top: 1px solid var(--smoke);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--specter);
  font-size: 0.8rem;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
}

/* ── Reveal Animations ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--ease-reveal), transform 0.85s var(--ease-reveal);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .triptych__grid { grid-template-columns: 1fr; }
  .footer__grid   { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .story-act { grid-template-columns: 1fr; }
  .story-act:nth-child(even) .story-act__text   { order: unset; }
  .story-act:nth-child(even) .story-act__visual { order: unset; }
  .notes-pyramid { grid-template-columns: 1fr; }

  .nav__links {
    position: fixed;
    inset: 0;
    background: rgba(5,5,5,0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    display: none;
    z-index: 7999;
  }
  .nav__links.open { display: flex; }
  .nav__links a { font-size: 1.1rem; }
  .hamburger { display: flex; }
  .sound-btn { display: none; }
}

@media (max-width: 600px) {
  .footer__grid   { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .entry__glyphs  { flex-direction: column; gap: 2rem; align-items: center; }
}
