:root {
  --bg: #090909;
  --bg-elevated: rgba(18, 18, 18, 0.72);
  --bg-strong: rgba(13, 13, 13, 0.92);
  --gold: #d6b36a;
  --gold-soft: rgba(214, 179, 106, 0.35);
  --gold-bright: #f7df9a;
  --white: #f8f4ee;
  --muted: #dcc79a;
  --text-gold: #f1e2bf;
  --text-gold-soft: #d8bd82;
  --text-gold-deep: #bd9751;
  --border: rgba(214, 179, 106, 0.22);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --radius: 28px;
  --section-space: clamp(4rem, 8vw, 6rem);
  --page-padding: clamp(1rem, 3vw, 1.75rem);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100svh;
  font-family: var(--sans);
  color: var(--white);
  background:
    radial-gradient(circle at top, rgba(131, 94, 39, 0.24), transparent 32%),
    linear-gradient(180deg, #111111 0%, #080808 45%, #050505 100%);
  overflow-x: hidden;
}

body.loading {
  overflow: hidden;
}

button {
  font: inherit;
}

.particle-canvas,
.background-glow,
.hero__flash {
  pointer-events: none;
}

.particle-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.background-glow {
  position: fixed;
  inset: auto;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  filter: blur(45px);
  opacity: 0.35;
  z-index: 0;
}

.background-glow--one {
  top: 5%;
  left: -4rem;
  background: rgba(214, 179, 106, 0.2);
}

.background-glow--two {
  right: -5rem;
  bottom: 10%;
  background: rgba(255, 255, 255, 0.08);
}

.page-shell,
.footer,
.music-toggle,
.audio-prompt {
  position: relative;
  z-index: 1;
}

.loading-screen {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle, rgba(214, 179, 106, 0.16), transparent 30%),
    rgba(5, 5, 5, 0.98);
  z-index: 10;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  overflow: hidden;
}

.loading-screen.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-aura {
  position: absolute;
  width: min(32rem, 70vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(214, 179, 106, 0.22) 0%, rgba(214, 179, 106, 0.08) 28%, transparent 68%);
  filter: blur(8px);
  animation: auraBreath 3s ease-in-out infinite;
}

.loading-monogram-shell {
  position: relative;
  display: grid;
  gap: 0.9rem;
  place-items: center;
  padding: clamp(2rem, 6vw, 3.2rem) clamp(2rem, 7vw, 4rem);
  border: 1px solid rgba(214, 179, 106, 0.14);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    rgba(10, 10, 10, 0.3);
  box-shadow:
    0 24px 90px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
}

.loading-monogram-frame {
  position: absolute;
  inset: 0.9rem;
  pointer-events: none;
}

.loading-monogram-frame span {
  position: absolute;
  width: 2.6rem;
  height: 2.6rem;
  border-style: solid;
  border-color: rgba(214, 179, 106, 0.42);
}

.loading-monogram-frame span:nth-child(1) {
  top: 0;
  left: 0;
  border-width: 1px 0 0 1px;
  border-top-left-radius: 1.1rem;
}

.loading-monogram-frame span:nth-child(2) {
  top: 0;
  right: 0;
  border-width: 1px 1px 0 0;
  border-top-right-radius: 1.1rem;
}

.loading-monogram-frame span:nth-child(3) {
  right: 0;
  bottom: 0;
  border-width: 0 1px 1px 0;
  border-bottom-right-radius: 1.1rem;
}

.loading-monogram-frame span:nth-child(4) {
  bottom: 0;
  left: 0;
  border-width: 0 0 1px 1px;
  border-bottom-left-radius: 1.1rem;
}

.loading-monogram {
  display: flex;
  align-items: center;
  gap: clamp(0.6rem, 2vw, 1rem);
  font-family: var(--serif);
  font-size: clamp(3rem, 12vw, 6rem);
  color: var(--gold-bright);
  text-shadow:
    0 0 18px rgba(214, 179, 106, 0.65),
    0 0 48px rgba(214, 179, 106, 0.35);
  animation: monogramPulse 2.5s ease forwards;
  position: relative;
  z-index: 1;
}

.loading-monogram__letter,
.loading-monogram__amp {
  opacity: 0;
  transform: translateY(16px);
  animation: monogramLetter 1.6s ease forwards;
}

.loading-monogram__letter {
  background: linear-gradient(180deg, #fff8ea 0%, #f6dc9e 42%, #c8994b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 18px rgba(214, 179, 106, 0.24));
}

.loading-monogram__amp {
  animation-delay: 0.2s;
  background: linear-gradient(180deg, #fff1c2 0%, #f7df9a 45%, #b68535 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.loading-monogram__letter:last-child {
  animation-delay: 0.35s;
}

.loading-monogram__subtitle {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.26rem;
  text-transform: uppercase;
  color: var(--text-gold-soft);
  text-shadow: 0 0 12px rgba(214, 179, 106, 0.12);
  opacity: 0;
  transform: translateY(8px);
  animation: subtitleRise 1.4s ease forwards 0.45s;
}

.music-toggle {
  position: fixed;
  top: max(1rem, env(safe-area-inset-top));
  right: max(1rem, env(safe-area-inset-right));
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1rem;
  max-width: calc(100vw - 2rem);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--white);
  background: rgba(10, 10, 10, 0.66);
  backdrop-filter: blur(14px);
  box-shadow: 0 0 20px rgba(214, 179, 106, 0.12);
  cursor: pointer;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.audio-prompt {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  padding: 0.8rem 1.1rem;
  max-width: min(18rem, calc(100vw - 2rem));
  border: 1px solid rgba(214, 179, 106, 0.5);
  border-radius: 999px;
  background: rgba(18, 10, 3, 0.84);
  color: var(--gold-bright);
  box-shadow: 0 0 24px rgba(214, 179, 106, 0.2);
  backdrop-filter: blur(14px);
  cursor: pointer;
  animation: promptPulse 2s ease-in-out infinite;
}

.audio-prompt[hidden] {
  display: none;
}

.music-toggle:hover,
.audio-prompt:hover,
.music-toggle:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(214, 179, 106, 0.45);
  box-shadow: 0 0 28px rgba(214, 179, 106, 0.18);
}

.music-toggle.is-active .music-toggle__icon {
  animation: noteFloat 1.8s linear infinite;
}

.page-shell {
  width: min(100%, 1200px);
  margin: 0 auto;
  padding: 0 var(--page-padding);
}

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

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(6rem, 12vw, 8rem) 0 clamp(4rem, 8vw, 5.5rem);
  overflow: hidden;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.4;
  mix-blend-mode: screen;
}

.hero__orb--one {
  width: 15rem;
  height: 15rem;
  top: 11%;
  left: 8%;
  background: radial-gradient(circle, rgba(214, 179, 106, 0.45), transparent 68%);
  animation: orbFloat 8s ease-in-out infinite;
  will-change: transform;
}

.hero__orb--two {
  width: 18rem;
  height: 18rem;
  right: 6%;
  bottom: 12%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 70%);
  animation: orbFloat 10s ease-in-out infinite reverse;
  will-change: transform;
}

.hero__sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__sparkle {
  position: absolute;
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 50%;
  opacity: 0;
  background:
    radial-gradient(circle, rgba(255, 247, 218, 0.98) 0%, rgba(247, 223, 154, 0.9) 34%, rgba(247, 223, 154, 0.18) 62%, transparent 74%);
  filter: drop-shadow(0 0 10px rgba(214, 179, 106, 0.5));
  animation: sparklePulse 4.2s ease-in-out infinite;
}

.hero__sparkle::before,
.hero__sparkle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: linear-gradient(180deg, transparent, rgba(255, 244, 214, 0.95), transparent);
  transform: translate(-50%, -50%);
  border-radius: 999px;
}

.hero__sparkle::before {
  width: 1px;
  height: 1.45rem;
}

.hero__sparkle::after {
  width: 1.45rem;
  height: 1px;
}

.hero__sparkle--1 {
  top: 17%;
  left: 28%;
  animation-delay: 0.1s;
}

.hero__sparkle--2 {
  top: 23%;
  right: 27%;
  animation-delay: 1.2s;
}

.hero__sparkle--3 {
  top: 37%;
  left: 22%;
  animation-delay: 2.2s;
}

.hero__sparkle--4 {
  top: 41%;
  right: 23%;
  animation-delay: 0.7s;
}

.hero__sparkle--5 {
  bottom: 30%;
  left: 31%;
  animation-delay: 1.8s;
}

.hero__sparkle--6 {
  bottom: 23%;
  right: 29%;
  animation-delay: 2.8s;
}

.hero__sparkle--7 {
  bottom: 17%;
  left: 44%;
  animation-delay: 3.4s;
}

.hero__sparkle--8 {
  top: 53%;
  right: 44%;
  animation-delay: 1.9s;
}

.hero__flash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(255, 244, 217, 0.24), transparent 35%),
    radial-gradient(circle at center, rgba(214, 179, 106, 0.22), transparent 50%);
  opacity: 0;
}

.hero--entered .hero__flash {
  animation: heroFlash 1.8s ease-out;
}

.hero__content {
  position: relative;
  text-align: center;
  width: min(100%, 46rem);
  padding: clamp(1.75rem, 4vw, 3rem) clamp(1rem, 4vw, 4rem);
  border: 1px solid rgba(214, 179, 106, 0.12);
  border-radius: calc(var(--radius) + 8px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    rgba(10, 10, 10, 0.38);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px);
  will-change: transform, opacity;
}

.ornament-frame {
  position: absolute;
  inset: clamp(0.7rem, 2.5vw, 0.9rem);
  pointer-events: none;
}

.ornament-frame span {
  position: absolute;
  width: 2.4rem;
  height: 2.4rem;
  border-color: rgba(214, 179, 106, 0.42);
  border-style: solid;
}

.ornament-frame span:nth-child(1) {
  top: 0;
  left: 0;
  border-width: 1px 0 0 1px;
  border-top-left-radius: 1rem;
}

.ornament-frame span:nth-child(2) {
  top: 0;
  right: 0;
  border-width: 1px 1px 0 0;
  border-top-right-radius: 1rem;
}

.ornament-frame span:nth-child(3) {
  right: 0;
  bottom: 0;
  border-width: 0 1px 1px 0;
  border-bottom-right-radius: 1rem;
}

.ornament-frame span:nth-child(4) {
  bottom: 0;
  left: 0;
  border-width: 0 0 1px 1px;
  border-bottom-left-radius: 1rem;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.24rem;
  font-size: 0.75rem;
  color: var(--text-gold-soft);
  text-shadow: 0 0 14px rgba(214, 179, 106, 0.12);
}

.hero__chips {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.hero__chip {
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(214, 179, 106, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-gold);
  font-size: 0.8rem;
  letter-spacing: 0.06rem;
  text-shadow: 0 0 12px rgba(214, 179, 106, 0.08);
}

.hero__divider,
.divider-line {
  width: min(13rem, 70%);
  height: 1px;
  margin: 1rem auto 0;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
  box-shadow: 0 0 16px rgba(214, 179, 106, 0.35);
}

.hero__names,
.section-heading h2,
.info-card h3,
.event-panel h2,
.event-card h3 {
  font-family: var(--serif);
}

.hero__names {
  display: grid;
  gap: 0.2rem;
  margin: 1.4rem 0 1rem;
  font-size: clamp(2.6rem, 8vw, 5.3rem);
  line-height: 0.95;
  font-weight: 600;
  letter-spacing: -0.03em;
  position: relative;
}

.hero__names span {
  position: relative;
  display: inline-block;
}

.hero__names span:not(.hero__ampersand) {
  background:
    linear-gradient(180deg, #fffaf1 0%, #f3e4c3 34%, #f7f2e9 58%, #caa45c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.12),
    0 10px 28px rgba(0, 0, 0, 0.28),
    0 0 26px rgba(214, 179, 106, 0.08);
}

.hero__names span:not(.hero__ampersand)::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 0.16em;
  height: 0.08em;
  background: linear-gradient(90deg, transparent, rgba(214, 179, 106, 0.26), transparent);
  filter: blur(10px);
  opacity: 0.75;
  z-index: -1;
}

.hero__names span:first-child {
  transform: translateX(-0.02em);
}

.hero__names span:last-child {
  background:
    linear-gradient(180deg, #fffaf2 0%, #f7dd9c 24%, #fff8ef 58%, #bf9146 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero__names::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(76%, 30rem);
  height: 68%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(214, 179, 106, 0.12), transparent 68%);
  filter: blur(22px);
  z-index: -1;
}

.hero__ampersand {
  font-size: clamp(2rem, 7vw, 4rem);
  margin: 0.05em 0;
  background: linear-gradient(180deg, #fff3cf 0%, #f7df9a 40%, #cc9f4e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 0 12px rgba(214, 179, 106, 0.2),
    0 0 28px rgba(214, 179, 106, 0.22);
  filter: drop-shadow(0 0 12px rgba(214, 179, 106, 0.24));
}

.hero__subtitle {
  margin: 0 auto;
  max-width: 32rem;
  font-size: clamp(0.96rem, 2vw, 1.08rem);
  line-height: 1.85;
  color: var(--text-gold);
  text-wrap: balance;
  text-shadow:
    0 2px 18px rgba(0, 0, 0, 0.22),
    0 0 14px rgba(214, 179, 106, 0.06);
}

.hero__blessing {
  margin: 1.25rem auto 0;
  max-width: 28rem;
  color: var(--text-gold-soft);
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  letter-spacing: 0.04rem;
  text-shadow: 0 0 18px rgba(214, 179, 106, 0.14);
}

.hero__signature-line {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.3rem;
  justify-content: center;
}

.hero__signature-line span {
  width: 4.5rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214, 179, 106, 0.8), transparent);
}

.hero__signature-line p {
  margin: 0;
  color: var(--text-gold-soft);
  font-size: 0.8rem;
  letter-spacing: 0.18rem;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(214, 179, 106, 0.08);
}

.portrait {
  position: absolute;
  top: 50%;
  width: clamp(9rem, 23vw, 16rem);
  opacity: 0.72;
  transform: translateY(-50%);
}

.portrait svg {
  width: 100%;
  height: auto;
}

.portrait path {
  fill: none;
  stroke: rgba(214, 179, 106, 0.82);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 12px rgba(214, 179, 106, 0.22));
}

.portrait--left {
  left: -0.5rem;
  animation: floatPortrait 5.6s ease-in-out infinite;
}

.portrait--right {
  right: -0.5rem;
  animation: floatPortrait 6.2s ease-in-out infinite reverse;
}

.section-heading {
  text-align: center;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.section-heading h2 {
  margin: 0.5rem 0 0;
  font-size: clamp(2rem, 6vw, 3.4rem);
  font-weight: 600;
  background: linear-gradient(180deg, #fff7e7 0%, #efd29a 48%, #c4964a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 18px rgba(214, 179, 106, 0.08);
}

.section--highlights {
  padding-top: 0;
}

.section--developer {
  padding-top: 1rem;
}

.developer-card {
  position: relative;
  max-width: 46rem;
  margin: 0 auto;
  padding: clamp(1.8rem, 4vw, 2.6rem);
  text-align: center;
  border: 1px solid rgba(214, 179, 106, 0.18);
  border-radius: 30px;
  background:
    radial-gradient(circle at top, rgba(214, 179, 106, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    rgba(16, 12, 8, 0.68);
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.developer-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(214, 179, 106, 0.12), transparent 42%),
    radial-gradient(circle at bottom right, rgba(214, 179, 106, 0.08), transparent 26%);
  pointer-events: none;
}

.developer-card__ornament {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.developer-card__ornament span {
  width: clamp(2.5rem, 9vw, 4rem);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214, 179, 106, 0.75), transparent);
}

.developer-card__ornament i {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: radial-gradient(circle, #fff3cf 0%, #cf9f4e 100%);
  box-shadow:
    0 0 14px rgba(214, 179, 106, 0.34),
    0 0 24px rgba(214, 179, 106, 0.14);
}

.developer-card h2 {
  margin: 0.55rem 0 0.9rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  background: linear-gradient(180deg, #fff7e7 0%, #efd29a 48%, #c4964a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.developer-card__text {
  max-width: 34rem;
  margin: 0 auto 1.4rem;
  color: var(--text-gold);
  line-height: 1.85;
}

.developer-card__link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.9rem 1.1rem;
  border: 1px solid rgba(214, 179, 106, 0.24);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-gold);
  text-decoration: none;
  box-shadow:
    0 16px 38px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.developer-card__link:hover,
.developer-card__link:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(214, 179, 106, 0.42);
  box-shadow:
    0 20px 44px rgba(0, 0, 0, 0.26),
    0 0 24px rgba(214, 179, 106, 0.1);
}

.developer-card__icon {
  display: inline-grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff4d2 0%, #e0b15b 42%, #8f5d1e 100%);
  box-shadow: 0 0 18px rgba(214, 179, 106, 0.18);
}

.developer-card__icon svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: #201308;
}

.developer-card__link strong,
.developer-card__link small {
  display: block;
  text-align: left;
}

.developer-card__link small {
  margin-top: 0.12rem;
  color: var(--text-gold-soft);
}

.highlight-grid {
  display: grid;
  gap: 1rem;
}

.highlight-card {
  position: relative;
  padding: 1.2rem 1.1rem;
  border: 1px solid rgba(214, 179, 106, 0.18);
  border-radius: 26px;
  background:
    radial-gradient(circle at top, rgba(214, 179, 106, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    rgba(15, 12, 8, 0.7);
  text-align: center;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
  transition:
    transform 0.45s ease,
    border-color 0.45s ease,
    box-shadow 0.45s ease;
}

.highlight-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(214, 179, 106, 0.14), transparent 42%),
    radial-gradient(circle at bottom right, rgba(214, 179, 106, 0.08), transparent 28%);
  opacity: 0.8;
  pointer-events: none;
}

.highlight-card::after {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(214, 179, 106, 0.12);
  border-radius: 20px;
  pointer-events: none;
}

.highlight-card:hover {
  transform: translateY(-10px) scale(1.01);
  border-color: rgba(214, 179, 106, 0.34);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.46),
    0 0 30px rgba(214, 179, 106, 0.12);
}

.highlight-card__ornament {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.highlight-card__ornament span {
  width: 2.7rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214, 179, 106, 0.75), transparent);
}

.highlight-card__ornament i {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: radial-gradient(circle, #fff3cf 0%, #cf9f4e 100%);
  box-shadow:
    0 0 14px rgba(214, 179, 106, 0.34),
    0 0 24px rgba(214, 179, 106, 0.16);
}

.highlight-card__title {
  margin: 0 0 0.45rem;
  color: var(--text-gold);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.15rem);
  text-shadow:
    0 0 14px rgba(214, 179, 106, 0.08),
    0 0 28px rgba(214, 179, 106, 0.06);
}

.highlight-card p:last-child {
  margin: 0;
  color: var(--text-gold-soft);
  line-height: 1.8;
  max-width: 17rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.details-grid,
.event-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: minmax(0, 1fr);
}

.info-card,
.event-card,
.event-panel {
  position: relative;
  padding: 1.6rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    var(--bg-elevated);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  overflow: hidden;
  will-change: transform, opacity;
}

.info-card::before,
.event-card::before,
.event-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(214, 179, 106, 0.12), transparent 45%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.info-card:hover::before,
.event-card:hover::before,
.event-panel:hover::before {
  opacity: 1;
}

.info-card:hover,
.event-card:hover,
.event-panel:hover {
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.45),
    0 0 28px rgba(214, 179, 106, 0.1);
}

.info-card__label {
  margin: 0 0 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  font-size: 0.72rem;
  color: var(--text-gold-soft);
  text-shadow: 0 0 12px rgba(214, 179, 106, 0.08);
}

.info-card h3,
.event-card h3,
.event-panel h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(2rem, 5.2vw, 2.7rem);
  line-height: 1;
  font-weight: 600;
  background: linear-gradient(180deg, #fff7e6 0%, #eed198 52%, #c59647 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 18px rgba(214, 179, 106, 0.08);
}

.info-card p,
.event-card p,
.event-panel p,
.footer p {
  margin: 0.45rem 0;
  color: var(--text-gold);
  line-height: 1.75;
  text-shadow: 0 0 10px rgba(214, 179, 106, 0.04);
}

.event-wrapper {
  display: grid;
  gap: 1rem;
}

.event-panel {
  text-align: center;
  padding: clamp(2rem, 5vw, 3rem) clamp(1.2rem, 4vw, 2.5rem);
  background:
    radial-gradient(circle at top, rgba(214, 179, 106, 0.08), transparent 40%),
    var(--bg-strong);
}

.event-panel__ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-bottom: 1.35rem;
}

.event-panel__ornament span {
  display: block;
  width: clamp(2.6rem, 10vw, 4rem);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214, 179, 106, 0.72), transparent);
}

.event-panel__ornament i {
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: radial-gradient(circle, #fff2c9 0%, #d1a454 100%);
  box-shadow:
    0 0 16px rgba(214, 179, 106, 0.38),
    0 0 28px rgba(214, 179, 106, 0.18);
}

.event-panel__venue {
  max-width: 38rem;
  margin-left: auto !important;
  margin-right: auto !important;
}

.event-panel__location-card {
  width: min(100%, 38rem);
  margin: 1.35rem auto 0;
  padding: 1.15rem 1rem 1rem;
  border: 1px solid rgba(214, 179, 106, 0.16);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.012)),
    rgba(17, 13, 9, 0.7);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.event-panel__location-label {
  margin: 0 0 0.45rem !important;
  text-transform: uppercase;
  letter-spacing: 0.18rem;
  font-size: 0.72rem;
  color: var(--text-gold-deep) !important;
}

.event-panel__location-text {
  margin: 0 auto !important;
  max-width: 31rem;
  line-height: 1.8;
}

.event-panel__schedule {
  display: grid;
  gap: 1.1rem;
  width: min(100%, 34rem);
  margin: 1.4rem auto 0;
  padding: 1.15rem 1rem;
  border: 1px solid rgba(214, 179, 106, 0.14);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.012));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 44px rgba(0, 0, 0, 0.24);
}

.event-panel__schedule-item {
  display: grid;
  gap: 0.35rem;
}

.event-panel__caption {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.16rem;
  font-size: 0.73rem;
  color: var(--text-gold-deep) !important;
  text-shadow: 0 0 10px rgba(214, 179, 106, 0.12);
}

.event-panel__schedule-separator {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214, 179, 106, 0.45), transparent);
}

.event-panel__time,
.event-card__time {
  color: var(--text-gold-soft);
  font-size: 1.15rem;
  letter-spacing: 0.08rem;
  text-shadow: 0 0 14px rgba(214, 179, 106, 0.14);
}

.event-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  margin: 0 0 1.7rem;
}

.event-connector span:nth-child(1),
.event-connector span:nth-child(3) {
  width: 3.75rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214, 179, 106, 0.8), transparent);
}

.event-connector span:nth-child(2) {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 16px rgba(214, 179, 106, 0.55);
}

.footer {
  padding: 0 var(--page-padding) calc(3.5rem + env(safe-area-inset-bottom));
  text-align: center;
}

.divider-line--short {
  width: min(10rem, 40%);
}

.divider-line--footer {
  margin-bottom: 1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.95s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.95s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.95s cubic-bezier(0.22, 1, 0.36, 1);
  filter: blur(10px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.reveal.is-visible.reveal--popup {
  animation: popupReveal 0.95s cubic-bezier(0.2, 0.9, 0.2, 1) both;
}

.reveal--hero {
  transition-delay: 0.15s;
}

.reveal--fade {
  transform: translateY(0);
  opacity: 0;
}

.reveal--scale {
  transform: translateY(22px) scale(0.96);
}

.reveal--lift {
  transform: translateY(40px) scale(0.985);
}

.reveal--side-left {
  transform: translate3d(-42px, 22px, 0);
}

.reveal--side-right {
  transform: translate3d(42px, 22px, 0);
}

.reveal-child {
  opacity: 0;
  transform: translateY(26px) scale(0.98);
  filter: blur(8px);
  transition:
    opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible .reveal-child {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.reveal.is-visible .reveal-child {
  animation: childPopupReveal 0.82s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.reveal-child--1 {
  transition-delay: 0.12s;
  animation-delay: 0.12s !important;
}

.reveal-child--2 {
  transition-delay: 0.24s;
  animation-delay: 0.24s !important;
}

.reveal-child--3 {
  transition-delay: 0.36s;
  animation-delay: 0.36s !important;
}

@media (min-width: 700px) {
  .highlight-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .details-grid,
  .event-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__content {
    padding: 2rem 4rem;
  }
}

@media (min-width: 900px) {
  .page-shell {
    width: min(100%, 1280px);
  }

  .hero {
    padding-top: clamp(7rem, 9vw, 9rem);
  }

  .hero__content {
    width: min(100%, 50rem);
  }

  .highlight-grid {
    gap: 1.25rem;
  }

  .details-grid,
  .event-grid {
    gap: 1.5rem;
  }
}

@media (max-width: 860px) {
  .portrait {
    display: none;
  }
}

@media (max-width: 699px) {
  .loading-monogram {
    gap: 0.45rem;
  }

  .loading-monogram-shell {
    width: min(92vw, 26rem);
    padding: 1.8rem 1.25rem 1.6rem;
  }

  .loading-monogram-frame span {
    width: 2rem;
    height: 2rem;
  }

  .loading-monogram__subtitle {
    font-size: 0.7rem;
    letter-spacing: 0.18rem;
    text-align: center;
  }

  .music-toggle,
  .audio-prompt {
    font-size: 0.84rem;
  }

  .music-toggle {
    top: auto;
    right: max(0.75rem, env(safe-area-inset-right));
    bottom: max(0.75rem, env(safe-area-inset-bottom));
    padding: 0.72rem 0.95rem;
  }

  .audio-prompt {
    right: auto;
    left: 50%;
    bottom: calc(4.25rem + env(safe-area-inset-bottom));
    transform: translateX(-50%);
    width: min(18rem, calc(100vw - 2rem));
    text-align: center;
  }

  .audio-prompt:hover {
    transform: translateX(-50%) translateY(-2px);
  }

  .hero {
    align-items: flex-start;
    padding-top: clamp(5.75rem, 18vw, 7rem);
  }

  .hero__orb--one {
    width: 11rem;
    height: 11rem;
    top: 8%;
    left: -1rem;
  }

  .hero__orb--two {
    width: 12rem;
    height: 12rem;
    right: -1.5rem;
    bottom: 8%;
  }

  .hero__sparkle {
    transform: scale(0.82);
  }

  .hero__sparkle--1 {
    left: 15%;
  }

  .hero__sparkle--2 {
    right: 14%;
  }

  .hero__sparkle--3 {
    left: 10%;
  }

  .hero__sparkle--4 {
    right: 10%;
  }

  .hero__sparkle--5 {
    left: 16%;
  }

  .hero__sparkle--6 {
    right: 18%;
  }

  .hero__chips {
    gap: 0.45rem;
  }

  .hero__chip {
    padding: 0.4rem 0.75rem;
    font-size: 0.73rem;
  }

  .hero__names {
    gap: 0.1rem;
    margin-top: 1.1rem;
    font-size: clamp(2.25rem, 11vw, 3.6rem);
    letter-spacing: -0.025em;
  }

  .hero__subtitle br {
    display: none;
  }

  .hero__signature-line {
    gap: 0.55rem;
  }

  .hero__signature-line span {
    width: 2.6rem;
  }

  .hero__signature-line p {
    font-size: 0.68rem;
    letter-spacing: 0.12rem;
  }

  .hero__names span:not(.hero__ampersand)::after {
    left: 8%;
    right: 8%;
  }

  .highlight-card,
  .info-card,
  .event-card,
  .event-panel {
    padding: 1.25rem 1rem;
  }

  .highlight-card::after {
    inset: 0.8rem;
  }

  .highlight-card__ornament span {
    width: 2.2rem;
  }

  .reveal--side-left,
  .reveal--side-right {
    transform: translateY(26px);
  }

  .info-card h3,
  .event-card h3,
  .event-panel h2 {
    font-size: clamp(1.8rem, 9vw, 2.35rem);
  }

  .event-panel__schedule {
    padding: 1rem 0.85rem;
  }

  .event-panel__location-card {
    padding: 1rem 0.9rem 0.95rem;
  }

  .event-connector {
    margin-bottom: 1.25rem;
  }

  .footer {
    padding-bottom: calc(6rem + env(safe-area-inset-bottom));
  }
}

@media (max-width: 420px) {
  :root {
    --radius: 22px;
  }

  .page-shell {
    padding: 0 0.9rem;
  }

  .hero__content {
    border-radius: 26px;
  }

  .ornament-frame span {
    width: 1.8rem;
    height: 1.8rem;
  }

  .eyebrow {
    letter-spacing: 0.18rem;
    font-size: 0.68rem;
  }

  .hero__divider,
  .divider-line {
    width: min(10rem, 72%);
  }

  .highlight-card__title {
    font-size: 1.5rem;
  }

  .music-toggle {
    left: 0.9rem;
    right: 0.9rem;
    justify-content: center;
    max-width: none;
  }

  .developer-card__link {
    width: 100%;
    justify-content: center;
  }

  .developer-card__link strong,
  .developer-card__link small {
    text-align: center;
  }
}

@media (max-height: 760px) {
  .hero {
    min-height: auto;
    padding-top: 5.5rem;
    padding-bottom: 3rem;
  }

  .hero__content {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}

@media (min-width: 700px) and (max-width: 1024px) {
  .hero__content {
    width: min(100%, 42rem);
  }

  .hero__names {
    font-size: clamp(3.2rem, 7vw, 4.4rem);
  }
}

@media (orientation: landscape) and (max-width: 920px) {
  .hero {
    min-height: auto;
    padding-top: 5.75rem;
    padding-bottom: 3.25rem;
  }

  .hero__content {
    width: min(100%, 38rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal,
  .reveal-child,
  .reveal--fade,
  .reveal--scale,
  .reveal--lift,
  .reveal--side-left,
  .reveal--side-right {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

@keyframes monogramPulse {
  0% {
    transform: scale(0.94);
  }
  60% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes monogramLetter {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFlash {
  0% {
    opacity: 0;
  }
  24% {
    opacity: 1;
  }
  100% {
    opacity: 0.2;
  }
}

@keyframes floatPortrait {
  0%,
  100% {
    transform: translateY(-50%) translateY(0);
  }
  50% {
    transform: translateY(-50%) translateY(-10px);
  }
}

@keyframes noteFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@keyframes orbFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -12px, 0) scale(1.05);
  }
}

@keyframes promptPulse {
  0%,
  100% {
    box-shadow: 0 0 24px rgba(214, 179, 106, 0.16);
  }
  50% {
    box-shadow: 0 0 34px rgba(214, 179, 106, 0.28);
  }
}

@keyframes popupReveal {
  0% {
    opacity: 0;
    transform: translateY(34px) scale(0.9);
    filter: blur(12px);
  }
  60% {
    opacity: 1;
    transform: translateY(-10px) scale(1.03);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes childPopupReveal {
  0% {
    opacity: 0;
    transform: translateY(24px) scale(0.92);
    filter: blur(8px);
  }
  65% {
    opacity: 1;
    transform: translateY(-6px) scale(1.02);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes auraBreath {
  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.78;
  }
  50% {
    transform: scale(1.06);
    opacity: 1;
  }
}

@keyframes subtitleRise {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes sparklePulse {
  0%,
  100% {
    opacity: 0;
    transform: scale(0.45) rotate(0deg);
  }
  18% {
    opacity: 0.2;
  }
  42% {
    opacity: 1;
    transform: scale(1) rotate(12deg);
  }
  60% {
    opacity: 0.55;
    transform: scale(0.72) rotate(-8deg);
  }
  82% {
    opacity: 0;
    transform: scale(0.4) rotate(18deg);
  }
}

/* Instagram Floating Button */
.instagram-float {
  position: fixed;
  bottom: max(1.5rem, env(safe-area-inset-bottom));
  left: max(1.5rem, env(safe-area-inset-left));
  display: block;
  border-radius: 50%;
  text-decoration: none;
  z-index: 50;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: floatInsta 4s ease-in-out infinite;
}

.instagram-float:hover {
  transform: translateY(-5px) scale(1.05);
}

.instagram-float:hover .instagram-float__icon {
  border-color: rgba(214, 179, 106, 0.8);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5), 0 0 25px rgba(214, 179, 106, 0.3);
  background: linear-gradient(135deg, #5c2835 0%, #36151e 100%);
}

.instagram-float__icon {
  display: grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #4f232e 0%, #2a1118 100%);
  border: 1.5px solid var(--gold);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 15px rgba(214, 179, 106, 0.15);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.instagram-float__icon::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 45%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 55%
  );
  animation: shineInsta 3s linear infinite;
}

.instagram-float__icon svg {
  width: 1.4rem;
  height: 1.4rem;
  fill: var(--gold-bright);
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 3px rgba(214, 179, 106, 0.5));
}

@keyframes floatInsta {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes shineInsta {
  0% {
    transform: translateX(-100%) translateY(-100%);
  }
  20%, 100% {
    transform: translateX(100%) translateY(100%);
  }
}

/* Pulsing rings effect behind the icon to attract attention */
.instagram-float::before,
.instagram-float::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid var(--gold);
  opacity: 0;
  z-index: -1;
}

.instagram-float::before {
  animation: rippleInsta 2.5s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.instagram-float::after {
  animation: rippleInsta 2.5s cubic-bezier(0.215, 0.61, 0.355, 1) infinite 1.25s;
}

@keyframes rippleInsta {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

.event-panel__date {
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  margin: 0.4rem 0 0.8rem;
  text-shadow: 0 0 12px rgba(214, 179, 106, 0.2);
}
