:root {
  --bg: #fdfcf9;
  --bg-elevated: rgba(253, 252, 249, 0.85);
  --bg-strong: rgba(253, 252, 249, 0.95);
  --cream: #fffaf0;
  --cream-rich: #f7efe0;
  --mocha: #6b6057;
  --mocha-deep: #544b45;
  --gold: #b28a47;
  --gold-soft: rgba(178, 138, 71, 0.35);
  --gold-bright: #b28a47;
  --white: #b28a47;
  --muted: #dcc79a;
  --text-gold: #b28a47;
  --text-gold-soft: #b28a47;
  --text-gold-deep: #b28a47;
  --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(178, 138, 71, 0.15), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(253, 252, 249, 0.7) 100%),
    url('assets/images/bannerbackground.png') no-repeat center center fixed;
  background-size: cover;
  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(253, 252, 249, 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(0, 0, 0, 0.03), rgba(0, 0, 0, 0.01)),
    rgba(250, 245, 235, 0.6);
  box-shadow:
    0 24px 90px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(0, 0, 0, 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 {
  color: var(--white);
  filter: drop-shadow(0 0 18px rgba(214, 179, 106, 0.24));
}

.loading-monogram__amp {
  animation-delay: 0.2s;
  color: var(--white);
}

.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(250, 245, 235, 0.8);
  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(255, 255, 255, 0.9);
  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);
  min-height: min(100vw, 46rem);
  padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 4vw, 4rem);
  background: 
    radial-gradient(ellipse at bottom right, rgba(253, 251, 246, 0.75) 0%, rgba(253, 251, 246, 0) 60%),
    url('assets/images/Banner.png') center/cover no-repeat;
  border-radius: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2;
  will-change: transform, opacity;
}



.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.24rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #b38b4d;
}

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

.hero__chip {
  padding: 0.45rem 1.1rem;
  border: 1px solid #d4af37;
  border-radius: 999px;
  background: transparent;
  color: #a37936;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08rem;
}

.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) {
  color: #9c6f24;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
}

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

.hero__names span:last-child {
  color: #9c6f24;
}

.hero__ampersand-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin: 0.2em 0;
}

.hero__floral-left, .hero__floral-right {
  width: 2rem;
  height: 2rem;
  color: #b58d4a;
}

.hero__floral-left {
  transform: scaleX(-1);
}

.hero__ampersand {
  font-size: clamp(1.8rem, 6vw, 3rem);
  color: #9c6f24;
}

.hero__divider-heart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin: 1rem auto;
  width: min(80%, 20rem);
}

.hero__divider-heart span {
  flex-grow: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.hero__divider-heart svg {
  width: 1rem;
  height: 1rem;
  color: #b58d4a;
}

.hero__subtitle {
  margin: 0 auto;
  max-width: 36rem;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 3vw, 1.45rem);
  line-height: 1.6;
  color: #8c6328;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-wrap: balance;
  text-shadow: 
    0 0 12px rgba(255, 255, 255, 1),
    0 0 25px rgba(255, 255, 255, 0.95),
    0 1px 2px rgba(255, 255, 255, 1);
}

.hero__blessing {
  margin: 1.5rem auto 0;
  max-width: 32rem;
  font-family: var(--serif);
  color: #8c6328;
  font-size: clamp(1.1rem, 2.8vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.03rem;
  text-shadow: 
    0 0 12px rgba(255, 255, 255, 1),
    0 0 25px rgba(255, 255, 255, 0.95),
    0 1px 2px rgba(255, 255, 255, 1);
}

.hero__signature-line {
  margin-top: 1.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hero__signature-ornament {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.sig-floral-left, .sig-floral-right {
  width: 1.5rem;
  height: 1.5rem;
  color: #b58d4a;
}

.sig-floral-right {
  transform: scaleX(-1);
}

.sig-heart {
  width: 0.8rem;
  height: 0.8rem;
  color: #b58d4a;
}

.hero__signature-text-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.hero__signature-text-row span {
  width: 2.5rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, #b58d4a, transparent);
}

.hero__signature-text-row p {
  margin: 0;
  color: #9c6f24;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18rem;
  text-shadow: 
    0 0 10px rgba(255, 255, 255, 1),
    0 0 20px rgba(255, 255, 255, 0.9),
    0 1px 2px rgba(255, 255, 255, 1);
}



.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;
  color: var(--white);
  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(0, 0, 0, 0.035), rgba(0, 0, 0, 0.012)),
    rgba(255, 255, 255, 0.7);
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(0, 0, 0, 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;
  color: var(--white);
}

.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(0, 0, 0, 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(0, 0, 0, 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-image-card {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border-radius: 20px;
  padding: 0.5rem;
  background: #f7f3ea;
  border: 1px solid rgba(214, 179, 106, 0.3);
  box-shadow: 
    0 15px 35px rgba(122, 96, 54, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 2px rgba(214, 179, 106, 0.15);
}

.highlight-image-card__bg {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}

.highlight-image-card__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  padding: 26% 12% 5% 20%;
  z-index: 1;
}

.highlight-image-card__title {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: #8c6328;
  margin: 0 0 0.4rem;
  font-weight: 600;
  letter-spacing: 0.05rem;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8), 0 2px 4px rgba(140, 99, 40, 0.15);
}

.highlight-image-card p:last-child {
  margin: 0;
  font-family: var(--serif);
  color: #8c6328;
  font-size: 1.05rem;
  line-height: 1.5;
  max-width: 100%;
  font-weight: 600;
  letter-spacing: 0.02rem;
  text-shadow: 
    0 0 10px rgba(255, 255, 255, 1),
    0 0 20px rgba(255, 255, 255, 0.9),
    0 1px 2px rgba(255, 255, 255, 1);
}

.highlight-image-card:hover {
  transform: translateY(-8px);
  filter: drop-shadow(0 20px 40px rgba(122, 96, 54, 0.25)) brightness(1.02);
}

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

.event-card,
.event-panel {
  position: relative;
  padding: 1.6rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at top, rgba(255, 244, 215, 0.45), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 244, 233, 0.92)),
    var(--bg-elevated);
  backdrop-filter: blur(16px);
  box-shadow:
    0 24px 58px rgba(122, 96, 54, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  overflow: hidden;
  will-change: transform, opacity;
}

.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;
}

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

.event-card:hover,
.event-panel:hover {
  box-shadow:
    0 24px 66px rgba(122, 96, 54, 0.22),
    0 0 28px rgba(214, 179, 106, 0.1);
}

.info-card {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border-radius: 20px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: 
    0 18px 42px rgba(122, 96, 54, 0.13),
    0 0 0 1px rgba(214, 179, 106, 0.16);
  overflow: hidden;
}

.info-card__bg {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

.info-card__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  padding: 21.5% 11% 6% 15%;
  z-index: 1;
}

.info-card__label {
  margin: 0 0 0.18rem;
  text-transform: uppercase;
  letter-spacing: 0.15rem;
  font-size: clamp(0.62rem, 1.15vw, 0.95rem);
  color: #8c6328;
  text-shadow: 0 0 12px rgba(214, 179, 106, 0.08);
}

.info-card h3 {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.25vw, 1.9rem);
  color: #8c6328;
  margin: 0 0 0.22rem;
  font-weight: 600;
  letter-spacing: 0.05rem;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8), 0 2px 4px rgba(140, 99, 40, 0.15);
}

.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;
  color: var(--gold-bright);
  text-shadow: 0 0 18px rgba(214, 179, 106, 0.08);
}

.info-card p {
  margin: 0 0 0.2rem;
  font-family: var(--serif);
  color: #8c6328;
  font-size: clamp(0.76rem, 1.4vw, 1.1rem);
  line-height: 1.3;
  max-width: 100%;
  font-weight: 600;
  letter-spacing: 0.02rem;
  text-shadow: 
    0 0 10px rgba(255, 255, 255, 1),
    0 0 20px rgba(255, 255, 255, 0.9),
    0 1px 2px rgba(255, 255, 255, 1);
}

.event-card p,
.event-panel p,
.footer p {
  margin: 0.45rem 0;
  color: rgba(143, 109, 53, 0.95);
  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(255, 244, 216, 0.6), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 241, 230, 0.95)),
    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__date {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  color: var(--gold-bright);
  margin: -0.2rem auto 1.5rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 14px rgba(214, 179, 106, 0.15);
}

.event-panel__venue-name {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 3.5vw, 1.8rem);
  color: #dfbe79;
  margin: 0.3rem 0 0.5rem;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(214, 179, 106, 0.08);
}

.event-panel__location-card {
  width: min(100%, 38rem);
  margin: 1.35rem auto 0;
  padding: 1.2rem 1.15rem 1.05rem;
  border: 1px solid rgba(214, 179, 106, 0.16);
  border-radius: 28px;
  background:
    radial-gradient(circle at top, rgba(214, 179, 106, 0.12), transparent 45%),
    linear-gradient(180deg, rgba(112, 99, 90, 0.96), rgba(84, 75, 69, 0.98));
  box-shadow:
    0 22px 52px rgba(79, 62, 45, 0.2),
    inset 0 1px 0 rgba(255, 248, 230, 0.12);
}

.event-panel__location-label {
  margin: 0 0 0.45rem !important;
  text-transform: uppercase;
  letter-spacing: 0.18rem;
  font-size: 0.72rem;
  color: #dfbe79 !important;
}

.event-panel__location-text {
  margin: 0 auto !important;
  max-width: 31rem;
  line-height: 1.8;
  color: rgba(255, 245, 223, 0.92) !important;
}

.event-panel__schedule {
  display: grid;
  gap: 1.1rem;
  width: min(100%, 34rem);
  margin: 1.4rem auto 0;
  padding: 1.2rem 1rem;
  border: 1px solid rgba(214, 179, 106, 0.14);
  border-radius: 28px;
  background:
    radial-gradient(circle at top, rgba(255, 244, 216, 0.45), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 244, 233, 0.95));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    0 18px 44px rgba(122, 96, 54, 0.12);
}

.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(--gold-bright);
  font-size: 1.45rem;
  font-family: var(--serif);
  font-weight: 600;
  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 Float Button */
.instagram-float {
  position: fixed;
  left: max(1.2rem, env(safe-area-inset-left));
  bottom: max(1.2rem, env(safe-area-inset-bottom));
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem;
  border-radius: 999px;
  background: #5C2D3A; /* High contrast Mulberry background */
  border: 2px solid #d1a454; /* Solid gold border */
  box-shadow: 
    0 8px 32px rgba(92, 45, 58, 0.4),
    0 0 15px rgba(209, 164, 84, 0.5); /* Glowing shadow */
  color: #fff;
  text-decoration: none;
  z-index: 100;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
  max-width: 3.2rem; /* Adjusted for bolder padding */
}

.instagram-float:hover {
  max-width: 15rem;
  background: #4a242e; /* Darker mulberry on hover */
  box-shadow: 
    0 12px 40px rgba(92, 45, 58, 0.6),
    0 0 25px rgba(209, 164, 84, 0.8);
  border-color: #f7df9a;
  transform: translateY(-5px) scale(1.05);
}

.instagram-float__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.8rem; /* Larger icon */
  height: 1.8rem;
  flex-shrink: 0;
  z-index: 2;
}

.instagram-float__icon svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.5));
  transition: filter 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Ensure the SVG itself ignores the HTML gradient to use pure gold/white */
.instagram-float__icon svg path {
  fill: #fff2c9; /* Bright gold/white base */
}

.instagram-float:hover .instagram-float__icon svg {
  filter: drop-shadow(0 0 10px #fff2c9);
  transform: scale(1.15) rotate(5deg);
}
.instagram-float:hover .instagram-float__icon svg path {
  fill: #ffffff;
}

.instagram-float__text {
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-15px);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  color: #fff2c9; /* Bright gold text */
}

.instagram-float:hover .instagram-float__text {
  opacity: 1;
  transform: translateX(0);
}

/* High Contrast Pulse Ring */
.instagram-float__ring {
  position: absolute;
  left: 0;
  top: 0;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  border: 2px solid #5C2D3A;
  opacity: 0;
  animation: pulseInstaRing1 2.5s infinite cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.instagram-float__ring::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  border: 2px solid #d1a454;
  opacity: 0;
  animation: pulseInstaRing2 2.5s infinite cubic-bezier(0.22, 1, 0.36, 1);
  animation-delay: 0.4s;
}

@keyframes pulseInstaRing1 {
  0% { transform: scale(0.9); opacity: 0.9; }
  100% { transform: scale(1.8); opacity: 0; }
}
@keyframes pulseInstaRing2 {
  0% { transform: scale(0.9); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

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

.insta-sparkle {
  position: absolute;
  color: #ffffff;
  text-shadow: 0 0 10px #ffffff, 0 0 20px #fff2c9;
  opacity: 0;
  animation: twinkleInsta 2.5s infinite ease-in-out;
}

.insta-sparkle--1 {
  top: -10%;
  left: 5%;
  font-size: 1rem;
  animation-delay: 0.1s;
}

.insta-sparkle--2 {
  bottom: 0%;
  right: 5%;
  font-size: 0.8rem;
  animation-delay: 1.2s;
}

.insta-sparkle--3 {
  top: -15%;
  right: -10%;
  font-size: 1.2rem;
  animation-delay: 0.7s;
}

@keyframes twinkleInsta {
  0%, 100% { opacity: 0; transform: scale(0.5) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.6) rotate(90deg); filter: brightness(1.8); }
}

@media (max-width: 699px) {
  .instagram-float {
    bottom: max(0.75rem, env(safe-area-inset-bottom));
  }
}

/* --- Elegant Wedding Section --- */
.elegant-wedding-section {
  padding: 2rem 0 6rem;
}

.elegant-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: min(100%, 46rem);
  margin: 0 auto;
}

.elegant-header {
  text-align: center;
  margin-bottom: 0.5rem;
}

.elegant-header__ornament svg {
  width: 3.5rem;
  height: auto;
  margin-bottom: 0.8rem;
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.5));
}

.elegant-header h2 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 7vw, 4rem);
  color: var(--gold-bright);
  margin: 0;
  font-weight: 600;
  text-shadow: 0 0 20px rgba(214, 179, 106, 0.25);
  letter-spacing: -0.02em;
}

.elegant-header__date {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 4vw, 1.8rem);
  color: var(--text-gold);
  margin: 0.4rem 0 0;
  letter-spacing: 0.05em;
  text-shadow: 0 0 10px rgba(214, 179, 106, 0.1);
}

.elegant-frame {
  width: 100%;
  display: flex;
  flex-direction: column;
  border: 2px solid rgba(212, 175, 55, 0.6);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 
    0 35px 80px rgba(0, 0, 0, 0.25), 
    0 0 30px rgba(212, 175, 55, 0.15),
    inset 0 0 20px rgba(212, 175, 55, 0.05);
}

/* Base Card Styles */
.elegant-card, .elegant-times-card {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  z-index: 1;
}

.dark-card {
  background: linear-gradient(145deg, #1c150b, #0f0a04);
  color: #fff;
  padding: 2.5rem 2.5rem;
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.03);
}

.dark-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 10% 50%, rgba(212, 175, 55, 0.2), transparent 45%);
  pointer-events: none;
  z-index: -1;
}

.light-card {
  background: #fdfaf0;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  color: #333;
  padding: 2.5rem 2.5rem;
  flex-direction: column;
  width: 100%;
}

/* Icon Column */
.elegant-card__icon-col {
  flex-shrink: 0;
  margin-right: 2rem;
}

.icon-circle {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.icon-circle svg {
  width: 1.8rem;
  height: 1.8rem;
}

.icon-circle--dark {
  border: 1px solid rgba(212, 175, 55, 0.5);
  box-shadow: inset 0 0 15px rgba(212, 175, 55, 0.1), 0 0 20px rgba(212, 175, 55, 0.15);
  background: rgba(0,0,0,0.2);
}

.icon-circle--dark svg {
  color: #ebdcb7;
  filter: drop-shadow(0 0 4px rgba(212, 175, 55, 0.4));
}

.icon-circle--dark::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 50%;
}

.icon-circle--light {
  border: 1px solid rgba(212, 175, 55, 0.4);
  background: transparent;
  box-shadow: inset 0 0 10px rgba(212, 175, 55, 0.05);
}

.icon-circle--light svg {
  color: #967026;
}

.icon-circle--light::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 50%;
}

/* Card Content */
.elegant-card__content {
  flex-grow: 1;
}

.elegant-card__label, .times-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin: 0 0 0.5rem;
  color: #c4a14f;
  font-weight: 600;
}

.elegant-card__title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 4.5vw, 2.2rem);
  font-weight: 400;
  margin: 0 0 0.8rem;
  color: #f6eedb;
  line-height: 1.2;
}

.elegant-card__divider, .elegant-times-card__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.2rem 0;
  gap: 0.4rem;
}

.elegant-card__divider {
  justify-content: flex-start;
}

.elegant-card__divider span, .elegant-times-card__divider span {
  width: 2.5rem;
  height: 1px;
}

.dark-card .elegant-card__divider span {
  background: linear-gradient(90deg, transparent, #c4a14f);
}

.dark-card .elegant-card__divider span:last-child {
  background: linear-gradient(270deg, transparent, #c4a14f);
}

.light-card .elegant-times-card__divider span {
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
  width: 6rem;
}

.elegant-card__divider i, .elegant-times-card__divider i {
  width: 6px;
  height: 6px;
  background: #d4af37;
  transform: rotate(45deg);
}

.elegant-card__address {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: #d7cdbf;
  line-height: 1.5;
  margin: 0 0 1.5rem;
}

.elegant-card__address svg {
  width: 1.2rem;
  height: 1.2rem;
  flex-shrink: 0;
  color: #c4a14f;
  margin-top: 3px;
}

/* Buttons */
.btn-directions {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.6rem 1.4rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-directions svg {
  width: 1.2rem;
  height: 1.2rem;
}

.btn-directions__text {
  display: flex;
  flex-direction: column;
}

.btn-directions__text strong {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

.btn-directions__text span {
  font-size: 0.65rem;
  opacity: 0.8;
  margin-top: 0.1rem;
}

.btn-directions--dark {
  border: 1px solid #7c683b;
  color: #ebdcb7;
  background: transparent;
}

.btn-directions--dark:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: #d4af37;
}

.btn-directions--light {
  border: 1px solid #ebdcb7;
  color: #8a631c;
  background: transparent;
}

.btn-directions--light:hover {
  background: rgba(212, 175, 55, 0.05);
  border-color: #c4a14f;
}

/* Times Card Rows */
.times-row {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}

.times-col-icon {
  margin-right: 2rem;
}

.times-col-details {
  flex-grow: 1;
}

.times-time {
  font-family: var(--serif);
  font-size: clamp(2rem, 6vw, 2.8rem);
  color: #2a1f14;
  margin: 0;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* Bless Button */
.bless-button-wrapper {
  margin-top: 2rem;
  width: min(100%, 36rem);
}

.bless-action-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.2rem;
  background: linear-gradient(90deg, #fceda7, #d4af37);
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4), inset 0 -3px 15px rgba(0,0,0,0.15), inset 0 3px 10px rgba(255,255,255,0.8);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #4a3411;
}

.bless-action-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(212, 175, 55, 0.5), inset 0 -3px 15px rgba(0,0,0,0.15), inset 0 3px 10px rgba(255,255,255,0.8);
}

.bless-action-btn__icon {
  width: 4rem;
  height: 4rem;
  background: radial-gradient(circle at top left, #3e2711, #120b05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4af37;
  border: 2px solid rgba(255,255,255,0.1);
  box-shadow: inset 0 0 15px rgba(0,0,0,0.8), 0 0 20px rgba(212,175,55,0.4);
}

.bless-action-btn__icon svg {
  width: 2rem;
  height: 2rem;
  filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.5));
}

.bless-action-btn__text {
  flex-grow: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.bless-action-btn__text strong {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(255,255,255,0.5);
}

.bless-action-btn__text span {
  font-size: 0.8rem;
  opacity: 0.85;
  margin-top: 0.2rem;
  letter-spacing: 0.02em;
}

.bless-action-btn__pointer svg {
  width: 2.2rem;
  height: 2.2rem;
  color: #4a3411;
  margin-right: 0.5rem;
  animation: pointerFloat 2s ease-in-out infinite;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.15));
}

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

@media (max-width: 650px) {
  .elegant-card {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }
  .elegant-card__icon-col {
    margin: 0 0 1.5rem 0;
  }
  .elegant-card__divider {
    justify-content: center;
  }
  .elegant-card__address {
    justify-content: center;
    text-align: center;
  }
  .times-row {
    flex-direction: column;
    text-align: center;
    gap: 1.2rem;
  }
  .times-col-icon {
    margin: 0;
  }
  .bless-action-btn {
    flex-direction: column;
    gap: 1.2rem;
    padding: 1.8rem;
    border-radius: 24px;
  }
  .bless-action-btn__icon {
    width: 4.5rem;
    height: 4.5rem;
  }
  .bless-action-btn__pointer {
    margin: 0 auto;
  }
}

/* Blessing Petals */
.blessing-petal {
  position: absolute;
  top: -10vh;
  pointer-events: none;
  opacity: 0;
  animation-name: fallPetal;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  z-index: 9999;
  will-change: transform, opacity;
}

@keyframes fallPetal {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  5% {
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(var(--petal-drift, 0), 120vh, 0) rotate(var(--petal-rotate, 180deg));
  }
}

/* Tablet Responsiveness for Image Cards */
@media (min-width: 700px) and (max-width: 1024px) {
  .highlight-image-card__content { padding: 24% 8% 4% 16%; }
  .highlight-image-card__title { font-size: 1.15rem; margin-bottom: 0.2rem; }
  .highlight-image-card p:last-child { font-size: 0.65rem; line-height: 1.35; }

  .info-card__content { padding: 21.5% 9% 5% 14%; }
  .info-card__label { font-size: 0.65rem; margin-bottom: 0.12rem; }
  .info-card h3 { font-size: 1.18rem; margin-bottom: 0.16rem; }
  .info-card p { font-size: 0.72rem; line-height: 1.28; margin-bottom: 0.12rem; }
}

/* Mobile Responsiveness for Image Cards */
@media (max-width: 699px) {
  .info-card {
    padding: 0;
  }

  .info-card__content {
    padding: 21.5% 10% 6% 15%;
  }
  
  .info-card__label {
    font-size: 2.2vw;
    margin-bottom: 1vw;
    letter-spacing: 0.3vw;
  }

  .info-card h3 {
    font-size: 5.5vw;
    margin-bottom: 1.5vw;
    line-height: 1.1;
  }

  .info-card p {
    font-size: 2.8vw;
    line-height: 1.4;
    margin-bottom: 1vw;
    max-width: 100%;
  }

  .highlight-image-card__content {
    padding: 26% 12% 5% 20%;
  }

  .highlight-image-card__title {
    font-size: 6vw;
    margin-bottom: 1.5vw;
  }

  .highlight-image-card p:last-child {
    font-size: 3vw;
    line-height: 1.4;
  }
}
