:root {
  --bg: #000000;
  --text: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.72);
  --gold: #f0c27a;
  --orange: #ff8a1f;
  --orange-deep: #e85d04;
  --font-display: "Montserrat", "Helvetica Neue", sans-serif;
  --font-ui: "Outfit", "Helvetica Neue", sans-serif;
  --font-script: "Caveat", "Segoe Print", cursive;
  --font-note: "Caveat", "Segoe Print", cursive;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --reveal-progress: 0;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-ui);
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

/* ——— Full-screen entrance ——— */
.entrance {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: #000;
  cursor: pointer;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
  transition: background 1.25s var(--ease), opacity 0.9s var(--ease), visibility 0.9s;
}

.entrance.is-exploding {
  background: transparent;
  /* Keep capturing taps until gone — otherwise the click falls through to BOOK CTA */
  transition: background 1.4s var(--ease) 0.15s, opacity 1s var(--ease) 1.5s, visibility 1s 1.5s;
}

.entrance.is-exploding .entrance__glow,
.entrance.is-exploding .entrance__breath,
.entrance.is-exploding .entrance__particles {
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}

.entrance.is-gone {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.entrance__glow {
  position: absolute;
  width: min(72vw, 440px);
  height: min(72vw, 440px);
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 140, 50, 0.2) 0%, rgba(255, 90, 20, 0.07) 42%, transparent 70%);
  filter: blur(32px);
  animation: ambientPulse 5s ease-in-out infinite;
  pointer-events: none;
}

.entrance__breath {
  position: absolute;
  width: min(44vw, 280px);
  height: min(44vw, 280px);
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 180, 80, 0.1), transparent 70%);
  animation: ambientPulse 3.6s ease-in-out infinite reverse;
  pointer-events: none;
}

.entrance__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.entrance-dot {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: rgba(255, 200, 140, 0.5);
  box-shadow: 0 0 8px rgba(255, 160, 70, 0.4);
  animation: floatDot linear infinite;
  opacity: 0;
}

.entrance__stage {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease), filter 0.65s var(--ease);
}

.entrance.is-exploding .entrance__stage {
  opacity: 0;
  transform: scale(1.06);
  filter: blur(6px);
}

.orb {
  position: relative;
  width: clamp(4.8rem, 18vw, 6.8rem);
  height: clamp(4.8rem, 18vw, 6.8rem);
  margin-bottom: 2.1rem;
  display: grid;
  place-items: center;
}

.orb__core {
  position: absolute;
  inset: 30%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 28%, #fff2d6, #ffb04a 42%, #e85d04 100%);
  box-shadow:
    0 0 20px rgba(255, 170, 70, 0.9),
    0 0 48px rgba(255, 110, 20, 0.45),
    0 0 90px rgba(255, 90, 10, 0.2);
  animation: orbPulse 2.8s ease-in-out infinite;
}

.orb__ring {
  position: absolute;
  inset: 14%;
  border-radius: 50%;
  border: 1px solid rgba(255, 190, 120, 0.28);
  animation: orbPulse 2.8s ease-in-out infinite 0.12s;
}

.orb__ring--slow {
  inset: 0;
  border-color: rgba(255, 180, 100, 0.16);
  animation: orbSpin 12s linear infinite;
}

.orb__halo {
  position: absolute;
  inset: -8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 160, 60, 0.22), transparent 68%);
  filter: blur(10px);
  animation: orbPulse 2.8s ease-in-out infinite 0.25s;
}

.entrance.is-exploding .orb {
  animation: orbBloom 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.entrance__brands {
  font-family: var(--font-ui);
  font-size: clamp(0.62rem, 2.6vw, 0.74rem);
  font-weight: 600;
  letter-spacing: 0.36em;
  text-indent: 0.36em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.85rem;
}

.entrance__cta {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 5.5vw, 1.85rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.75rem;
}

.entrance__line {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-style: italic;
  font-size: clamp(0.95rem, 3.8vw, 1.15rem);
  color: rgba(255, 200, 140, 0.72);
}

.entrance__burst {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.entrance__flare {
  position: absolute;
  left: 50%;
  top: 46%;
  width: 12px;
  height: 12px;
  margin: -6px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 230, 180, 0.95), rgba(255, 140, 40, 0.35) 40%, transparent 70%);
  opacity: 0;
  pointer-events: none;
  z-index: 4;
}

.entrance.is-exploding .entrance__flare {
  animation: flareExpand 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.shockwave {
  position: absolute;
  left: 50%;
  top: 46%;
  width: 40px;
  height: 40px;
  margin: -20px;
  border-radius: 50%;
  border: 1px solid rgba(255, 190, 120, 0.55);
  box-shadow: 0 0 24px rgba(255, 150, 60, 0.25);
  opacity: 0;
  animation: shockwaveExpand 1.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.burst-particle {
  position: absolute;
  left: 50%;
  top: 46%;
  width: 3px;
  height: 3px;
  margin: -1.5px;
  border-radius: 50%;
  background: #ffd9a0;
  box-shadow: 0 0 12px rgba(255, 180, 90, 0.75);
  opacity: 0;
  animation: dustDrift 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.music-toggle {
  position: fixed;
  top: max(1rem, env(safe-area-inset-top));
  right: max(1rem, env(safe-area-inset-right));
  z-index: 95;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
  display: grid;
  place-items: center;
  backdrop-filter: blur(8px);
}

.music-toggle.is-muted {
  opacity: 0.45;
}

.music-toggle__icon {
  line-height: 1;
}

@keyframes ambientPulse {
  0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.07); }
}

@keyframes orbPulse {
  0%, 100% { transform: scale(1); opacity: 0.95; }
  50% { transform: scale(1.06); opacity: 1; }
}

@keyframes orbSpin {
  from { transform: rotate(0deg) scale(1); }
  to { transform: rotate(360deg) scale(1); }
}

@keyframes orbBloom {
  0% { transform: scale(1); opacity: 1; filter: brightness(1); }
  35% { transform: scale(1.55); opacity: 1; filter: brightness(1.8); }
  100% { transform: scale(3.2); opacity: 0; filter: brightness(2.4); }
}

@keyframes floatDot {
  0% { opacity: 0; transform: translateY(0); }
  20% { opacity: 0.55; }
  100% { opacity: 0; transform: translateY(-50vh); }
}

@keyframes flareExpand {
  0% {
    opacity: 0.95;
    transform: scale(1);
    filter: blur(0);
  }
  100% {
    opacity: 0;
    transform: scale(55);
    filter: blur(20px);
  }
}

@keyframes shockwaveExpand {
  0% {
    opacity: 0.7;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(28);
  }
}

@keyframes dustDrift {
  0% {
    opacity: 0.95;
    transform: translate(0, 0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(var(--tx), var(--ty)) scale(0.15);
  }
}

/* ——— Poster reveal (2nd image) ——— */
.reveal {
  position: fixed;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  padding:
    max(0.75rem, env(safe-area-inset-top))
    1.1rem
    max(1rem, env(safe-area-inset-bottom));
  background:
    radial-gradient(ellipse 90% 55% at 50% 72%, rgba(120, 45, 10, 0.55), transparent 70%),
    #000;
  pointer-events: none;
  opacity: 1;
}

.reveal.is-clear {
  pointer-events: auto;
}

.reveal__atmosphere {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.reveal__glow {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  pointer-events: none;
}

.reveal__glow--core {
  bottom: -5%;
  width: min(130vw, 560px);
  height: min(65vh, 480px);
  background: radial-gradient(
    ellipse at center,
    rgba(255, 120, 30, 0.45) 0%,
    rgba(180, 60, 10, 0.28) 40%,
    transparent 72%
  );
  filter: blur(30px);
}

.reveal__glow--mid {
  top: 38%;
  width: min(85vw, 360px);
  height: 280px;
  background: radial-gradient(ellipse, rgba(255, 160, 60, 0.18), transparent 70%);
  filter: blur(36px);
}

.reveal__sparks {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 12% 22%, rgba(255, 200, 120, 0.55), transparent),
    radial-gradient(1.5px 1.5px at 78% 18%, rgba(255, 180, 80, 0.4), transparent),
    radial-gradient(1px 1px at 30% 70%, rgba(255, 210, 140, 0.35), transparent),
    radial-gradient(1.5px 1.5px at 88% 62%, rgba(255, 160, 60, 0.45), transparent),
    radial-gradient(1px 1px at 55% 40%, rgba(255, 220, 160, 0.3), transparent);
}

.reveal__content {
  position: relative;
  z-index: 2;
  width: min(100%, 26rem);
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.5rem 0 1rem;
}

.friendship-banner {
  margin-bottom: 0.85rem;
  font-family: var(--font-ui);
  font-size: clamp(0.68rem, 2.8vw, 0.8rem);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.friendship-banner__mark {
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-shadow: 0 0 20px rgba(255, 138, 31, 0.55);
}

.reveal__headline {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.35rem, 11vw, 3.6rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 0 40px rgba(255, 140, 40, 0.25);
  margin-bottom: 0.45rem;
}

.reveal__script {
  position: relative;
  font-family: var(--font-script);
  font-size: clamp(1.55rem, 6vw, 2.1rem);
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 1.15rem;
  line-height: 1.1;
  text-shadow: 0 0 24px rgba(255, 138, 31, 0.45);
}

.reveal__script-line {
  display: block;
  width: 8.5rem;
  height: 3px;
  margin: 0.2rem auto 0;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  border-radius: 2px;
  opacity: 0.95;
  box-shadow: 0 0 12px rgba(255, 138, 31, 0.55);
  transform: rotate(-2deg);
}

.brand-lockup {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.55rem;
  padding: 1.1rem 0.85rem;
  margin-bottom: 1.15rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(240, 194, 122, 0.45);
  background: linear-gradient(180deg, rgba(30, 16, 8, 0.65), rgba(10, 6, 4, 0.75));
  box-shadow:
    0 0 0 1px rgba(255, 140, 40, 0.08) inset,
    0 0 48px rgba(255, 120, 30, 0.18);
  overflow: hidden;
}

.brand-lockup__glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(ellipse at 50% 50%, rgba(255, 140, 40, 0.22), transparent 60%);
  pointer-events: none;
}

.brand {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.brand-hotbox-word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.2rem, 5.5vw, 1.55rem);
  letter-spacing: 0.04em;
  color: #fff;
  text-shadow: 0 0 18px rgba(255, 140, 40, 0.45);
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.flame-o {
  position: relative;
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  width: 0.88em;
  height: 1.1em;
  margin: 0 0.02em;
  vertical-align: -0.14em;
}

.flame-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  filter: drop-shadow(0 0 8px rgba(255, 110, 0, 0.75));
}

.flame-path {
  transform-origin: 50% 90%;
  transform-box: fill-box;
}

.flame-path--outer {
  fill: #ff3b1f;
  animation: flameDance 0.9s ease-in-out infinite;
}

.flame-path--mid {
  fill: #ff7a00;
  animation: flameDance 0.75s ease-in-out infinite reverse;
}

.flame-path--inner {
  fill: #ffd54a;
  animation: flameDance 0.6s ease-in-out infinite;
  animation-delay: -0.2s;
}

.flame-path--core {
  fill: #fff6d6;
  animation: flameCore 0.7s ease-in-out infinite;
}

@keyframes flameDance {
  0%,
  100% {
    transform: scale(1, 1) skewX(0deg);
  }
  50% {
    transform: scale(1.05, 1.1) skewX(-2deg);
  }
}

@keyframes flameCore {
  0%,
  100% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.15, 1.2);
  }
}

.brand__sub {
  font-family: var(--font-ui);
  font-size: 0.48rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-indent: 0.28em;
  color: rgba(255, 255, 255, 0.7);
}

.brand-lockup__sep {
  position: relative;
  z-index: 1;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 0 12px rgba(255, 180, 80, 0.6);
}

.brand-px-mark {
  position: relative;
  width: 4.4rem;
  height: 4rem;
  display: grid;
  place-items: center;
}

.brand-px-mark__x {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3.8rem;
  line-height: 0.8;
  background: linear-gradient(180deg, #fff 10%, #f0c27a 45%, #c9832e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 12px rgba(255, 160, 60, 0.55));
}

.brand-px-mark__bar {
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  min-width: 4.2rem;
  padding: 0.16rem 0.3rem;
  border-radius: 3px;
  background: linear-gradient(180deg, #1a120c, #0a0604);
  border: 1px solid rgba(240, 194, 122, 0.35);
  color: #f5e6c8;
  font-family: var(--font-display);
  font-size: 0.45rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-indent: 0.16em;
}

.venue-card {
  width: 100%;
  margin-bottom: 1rem;
  padding: 1.2rem 1.1rem 1.15rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(255, 190, 120, 0.3);
  background:
    linear-gradient(165deg, rgba(45, 24, 12, 0.5), rgba(8, 6, 5, 0.78));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 16px 36px rgba(0, 0, 0, 0.3);
}

.venue-card__place {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(1.55rem, 6.5vw, 2rem);
  font-weight: 500;
  color: #f7efe4;
  line-height: 1.1;
}

.venue-card__city {
  margin-top: 0.25rem;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-indent: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 190, 120, 0.75);
}

.venue-card__meta {
  margin-top: 0.95rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255, 180, 100, 0.2);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.45rem 0.55rem;
  font-family: var(--font-ui);
  font-size: clamp(0.72rem, 3vw, 0.82rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.88);
}

.venue-card__sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 180, 100, 0.55);
}

.dress-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1.35rem;
}

.dress-line__label {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-indent: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 190, 120, 0.7);
}

.dress-line__value {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(1.45rem, 6vw, 1.9rem);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-indent: 0.22em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 0 24px rgba(255, 255, 255, 0.18);
}

.reveal__cta {
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 3.35rem;
  padding: 0.95rem 1.6rem;
  width: min(100%, 18rem);
  border-radius: 999px;
  background: linear-gradient(180deg, #ffb347 0%, #ff8a1f 45%, #e85d04 100%);
  color: #1a0e06;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-indent: 0.08em;
  text-transform: uppercase;
  box-shadow:
    0 0 0 1px rgba(255, 220, 160, 0.35) inset,
    0 0 28px rgba(255, 120, 20, 0.65),
    0 10px 28px rgba(255, 100, 0, 0.35);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  opacity: calc(0.25 + var(--reveal-progress) * 0.75);
  margin-bottom: 1.15rem;
}

.reveal.is-clear .reveal__cta {
  opacity: 1;
  pointer-events: auto;
}

.reveal__cta:active {
  transform: scale(0.98);
}

.reveal__footer {
  position: relative;
  font-family: var(--font-script);
  font-size: clamp(1.15rem, 4.5vw, 1.45rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.2;
}

.reveal__heart {
  color: var(--orange);
  margin-left: 0.15rem;
}

.reveal__footer-line {
  display: block;
  width: 8rem;
  height: 2px;
  margin: 0.25rem auto 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: rotate(-1deg);
}

/* ——— Scroll + collage ——— */
.scroll-track {
  position: relative;
  z-index: 0;
  height: 200vh;
  pointer-events: none;
}

.collage {
  position: fixed;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  height: 100dvh;
  overflow: hidden;
  pointer-events: none;
  visibility: hidden;
  background: transparent;
}

.collage.is-ready {
  visibility: visible;
  animation: wallAwaken 2.2s var(--ease) forwards;
}

/* Covers the Friendship Day poster until photos begin to fall */
.collage__veil {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #050505;
  opacity: calc(1 - var(--reveal-progress) * 1.15);
  pointer-events: none;
}

.collage__vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 50% 48%, transparent 0%, transparent 40%, rgba(0, 0, 0, 0.2) 75%, rgba(0, 0, 0, 0.4) 100%);
  opacity: calc(1 - var(--reveal-progress) * 1.2);
  pointer-events: none;
}

.piece {
  position: absolute;
  z-index: 2;
  will-change: transform, opacity;
  --fall-x: 0px;
  --fall-y: 0px;
  --fall-rot: 0deg;
  --fall-opacity: 1;
  transform: translate3d(var(--fall-x), var(--fall-y), 0) rotate(calc(var(--r) + var(--fall-rot)));
  opacity: var(--fall-opacity);
}

.piece__inner {
  position: relative;
  opacity: 0;
  transform: translateY(20px) scale(0.97);
}

.collage.is-ready .piece__inner {
  animation: pieceIn 2.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes pieceIn {
  0% {
    opacity: 0;
    transform: translateY(24px) scale(0.97);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes wallAwaken {
  0% { filter: brightness(1.35) saturate(1.1); }
  100% { filter: brightness(1) saturate(1); }
}

/* Gold-framed photos — larger to fill the screen */
.photo {
  display: block;
  width: clamp(130px, 42vw, 200px);
  height: clamp(160px, 52vw, 250px);
  object-fit: cover;
  border-radius: 3px;
  border: 1.5px solid rgba(232, 188, 110, 0.85);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.35),
    0 14px 36px rgba(0, 0, 0, 0.55),
    0 0 18px rgba(232, 160, 70, 0.12);
}

.piece-title {
  z-index: 20;
  left: 50%;
  top: 48%;
  transform: translate3d(calc(-50% + var(--fall-x)), calc(-50% + var(--fall-y)), 0)
    rotate(calc(var(--r) + var(--fall-rot)));
  width: min(92vw, 26rem);
  filter: none;
  pointer-events: auto;
}

.collage-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 1.5rem 1.25rem;
  text-align: center;
  border-radius: 1rem;
  background: rgba(0, 0, 0, 0.58);
  box-shadow:
    0 0 0 1px rgba(232, 188, 110, 0.22),
    0 12px 40px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
}

.collage-title__ornament {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  width: min(100%, 11rem);
}

.collage-title__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 188, 110, 0.85), transparent);
}

.collage-title__heart {
  font-size: 0.7rem;
  color: #e8bc6e;
  line-height: 1;
  text-shadow: 0 0 12px rgba(232, 160, 70, 0.55);
}

.collage-word {
  margin: 0;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-weight: 600;
  font-size: clamp(1.65rem, 7.5vw, 2.4rem);
  letter-spacing: 0.06em;
  color: #fff;
  text-shadow:
    0 0 1px rgba(0, 0, 0, 1),
    0 2px 12px rgba(0, 0, 0, 0.95),
    0 0 28px rgba(0, 0, 0, 0.7);
  white-space: nowrap;
  line-height: 1;
}

.collage-word--script {
  font-family: var(--font-script);
  font-weight: 700;
  font-size: clamp(2.4rem, 11vw, 3.6rem);
  letter-spacing: 0.02em;
  color: #ffc978;
  font-style: italic;
  text-shadow:
    0 0 2px rgba(0, 0, 0, 1),
    0 2px 14px rgba(0, 0, 0, 0.95),
    0 0 36px rgba(255, 170, 60, 0.65);
}

.collage-tagline {
  margin-top: 0.35rem;
  font-family: var(--font-ui);
  font-size: clamp(0.58rem, 2.6vw, 0.7rem);
  font-weight: 600;
  letter-spacing: 0.28em;
  text-indent: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

.collage-scroll-hint {
  margin-top: 1.1rem;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.9rem;
  border: 0;
  background: transparent;
  color: rgba(255, 220, 170, 0.95);
  font-family: var(--font-ui);
  font-size: clamp(0.62rem, 2.8vw, 0.72rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  animation: collageHintPulse 2.2s ease-in-out infinite;
}

.collage-scroll-hint__chevron {
  display: block;
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid rgba(255, 200, 120, 0.9);
  border-bottom: 2px solid rgba(255, 200, 120, 0.9);
  transform: rotate(45deg);
  opacity: 0.9;
}

.collage-scroll-hint.is-hidden {
  opacity: 0;
  pointer-events: none;
  animation: none;
  transition: opacity 0.4s ease;
}

@keyframes collageHintPulse {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.75;
  }
  50% {
    transform: translateY(6px);
    opacity: 1;
  }
}

/* Dense wall — photos fill every area including behind title */
.piece-1  { left: -8%;  top: -6%;  z-index: 3; }
.piece-2  { left: 28%;  top: -8%;  z-index: 4; }
.piece-3  { left: 62%;  top: -4%;  z-index: 3; }
.piece-4  { left: -10%; top: 14%;  z-index: 5; }
.piece-5  { left: 22%;  top: 12%;  z-index: 3; }
.piece-6  { left: 58%;  top: 10%;  z-index: 5; }
.piece-7  { left: -6%;  top: 36%;  z-index: 4; }
.piece-8  { left: 30%;  top: 34%;  z-index: 2; }
.piece-9  { left: 64%;  top: 32%;  z-index: 4; }
.piece-10 { left: -8%;  top: 56%;  z-index: 5; }
.piece-11 { left: 26%;  top: 54%;  z-index: 3; }
.piece-12 { left: 60%;  top: 52%;  z-index: 5; }
.piece-13 { left: -4%;  top: 74%;  z-index: 4; }
.piece-14 { left: 32%;  top: 72%;  z-index: 5; }
.piece-15 { left: 66%;  top: 70%;  z-index: 3; }
.piece-16 { left: 14%;  top: 86%;  z-index: 4; }

.piece-1 .photo,
.piece-8 .photo,
.piece-14 .photo {
  width: clamp(150px, 48vw, 230px);
  height: clamp(180px, 56vw, 280px);
}

.piece-3 .photo,
.piece-11 .photo,
.piece-16 .photo {
  width: clamp(120px, 38vw, 175px);
  height: clamp(145px, 46vw, 215px);
}

.piece-5 .photo,
.piece-6 .photo,
.piece-12 .photo {
  width: clamp(135px, 44vw, 205px);
  height: clamp(135px, 44vw, 205px);
}

@media (min-width: 768px) {
  .reveal__content {
    width: min(100%, 32rem);
  }

  .reveal__headline {
    font-size: clamp(3.2rem, 6vw, 4rem);
  }

  .brand-lockup {
    padding: 1.25rem 1rem;
  }

  .brand-hotbox-word {
    font-size: 1.7rem;
  }

  .brand-px-mark {
    width: 5rem;
    height: 4.5rem;
  }

  .brand-px-mark__x {
    font-size: 4.4rem;
  }

  .photo {
    width: clamp(170px, 18vw, 240px);
    height: clamp(210px, 22vw, 300px);
  }

  .piece-1 .photo,
  .piece-8 .photo,
  .piece-14 .photo {
    width: clamp(200px, 21vw, 280px);
    height: clamp(250px, 26vw, 350px);
  }

  .piece-3 .photo,
  .piece-11 .photo,
  .piece-16 .photo {
    width: clamp(150px, 15vw, 200px);
    height: clamp(185px, 18vw, 250px);
  }

  .piece-5 .photo,
  .piece-6 .photo,
  .piece-12 .photo {
    width: clamp(165px, 17vw, 220px);
    height: clamp(165px, 17vw, 220px);
  }

  .collage-word {
    font-size: clamp(2.1rem, 3.4vw, 2.8rem);
  }

  .collage-word--script {
    font-size: clamp(3.2rem, 5.2vw, 4.2rem);
  }

  .piece-title {
    top: 48%;
    width: min(44vw, 32rem);
  }

  .piece-1  { left: -4%;  top: -6%; }
  .piece-2  { left: 22%;  top: -8%; }
  .piece-3  { left: 48%;  top: -4%; }
  .piece-4  { left: 74%;  top: -2%; }
  .piece-5  { left: -6%;  top: 22%; }
  .piece-6  { left: 20%;  top: 20%; }
  .piece-7  { left: 52%;  top: 18%; }
  .piece-8  { left: 78%;  top: 24%; }
  .piece-9  { left: -4%;  top: 48%; }
  .piece-10 { left: 24%;  top: 46%; }
  .piece-11 { left: 54%;  top: 44%; }
  .piece-12 { left: 80%;  top: 50%; }
  .piece-13 { left: -2%;  top: 72%; }
  .piece-14 { left: 28%;  top: 70%; }
  .piece-15 { left: 56%;  top: 74%; }
  .piece-16 { left: 78%;  top: 78%; }

  .scroll-track {
    height: 240vh;
  }
}

@media (max-height: 720px) {
  .reveal__headline {
    font-size: clamp(1.9rem, 8vw, 2.6rem);
  }

  .brand-lockup {
    padding: 0.7rem 0.5rem;
    margin-bottom: 0.75rem;
  }

  .brand-hotbox-word {
    font-size: 1.15rem;
  }

  .brand-px-mark {
    width: 3.4rem;
    height: 3.1rem;
  }

  .brand-px-mark__x {
    font-size: 3rem;
  }

  .reveal__cta {
    min-height: 2.9rem;
    margin-bottom: 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .collage.is-ready .piece__inner,
  .flame-path,
  .orb__core,
  .orb__ring,
  .orb__halo,
  .entrance__glow,
  .entrance__breath {
    animation: none;
  }

  .collage.is-ready .piece__inner {
    opacity: 1;
    transform: none;
  }

  .entrance {
    transition: none;
  }
}

/* ── Live events (API) — hidden during collage scroll ─────────── */
.events {
  position: relative;
  z-index: 2;
  padding: 4rem 1.25rem 5rem;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(212, 175, 55, 0.12), transparent 55%),
    #0a0908;
  color: #f5efe4;
  /* Stay out of the way while memories / scroll experience runs */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
  transition:
    opacity 0.45s ease,
    visibility 0.45s ease,
    max-height 0.01s linear 0.45s,
    padding 0.45s ease;
}

.events.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  max-height: none;
  padding: 4rem 1.25rem 5rem;
  transition:
    opacity 0.45s ease,
    visibility 0.45s ease,
    max-height 0s,
    padding 0.45s ease;
}

.events__inner {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.events__eyebrow {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #d4af37;
}

.events__title {
  margin: 0.65rem 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.85rem, 5vw, 2.6rem);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.events__lede {
  margin: 0.75rem auto 1.75rem;
  max-width: 28rem;
  font-family: "Outfit", sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(245, 239, 228, 0.62);
}

.events__grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.event-card {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 0.9rem;
  padding: 0.75rem;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.03);
}

.event-card__media {
  display: block;
  overflow: hidden;
  border-radius: 0.65rem;
  aspect-ratio: 4 / 5;
  background: rgba(255, 255, 255, 0.06);
}

.event-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-card__media--empty {
  background: linear-gradient(145deg, #2a2418, #12100c);
}

.event-card__body {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 0.15rem 0.15rem 0.15rem 0;
}

.event-card__title {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.25;
  color: #fff8ec;
}

.event-card__meta,
.event-card__price {
  margin: 0.35rem 0 0;
  font-family: "Outfit", sans-serif;
  font-size: 0.78rem;
  color: rgba(245, 239, 228, 0.55);
}

.event-card__price {
  color: #d4af37;
  font-weight: 600;
}

.event-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.65rem;
}

.event-card__book,
.event-card__details {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.4rem;
  padding: 0 0.9rem;
  border-radius: 999px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
}

.event-card__book {
  background: #d4af37;
  color: #1a1408;
}

.event-card__details {
  border: 1px solid rgba(245, 239, 228, 0.28);
  color: rgba(245, 239, 228, 0.85);
}

@media (min-width: 640px) {
  .event-card {
    grid-template-columns: 7.5rem 1fr;
    gap: 1.1rem;
    padding: 1rem;
  }

  .event-card__title {
    font-size: 1.05rem;
  }
}
