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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100dvh;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

ul, ol {
  list-style: none;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--text-muted);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-secondary);
}

::selection {
  background: var(--accent);
  color: var(--text-primary);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 120px 0;
  position: relative;
}

.section-label {
  font-family: var(--font-subheading);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.section-label::before,
.section-label::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent);
  opacity: 0.4;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 680px;
  line-height: 1.7;
}

.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-shadow);
  padding: 32px;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.glass-card::after {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: calc(var(--radius-lg) - 4px);
  border: 1px solid rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.glass-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 64px rgba(26, 46, 36, 0.1);
}

@media (max-width: 768px) {
  .glass-card {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 24px;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 32px;
  font-family: var(--font-subheading);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  border-radius: var(--radius-full);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--accent);
  color: #1A2E24;
  box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 8px 32px var(--accent-glow);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0) scale(0.98);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(26, 46, 36, 0.12);
}

.btn-secondary:hover {
  background: rgba(26, 46, 36, 0.04);
  border-color: rgba(26, 46, 36, 0.2);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: #2C1810;
}

.btn-icon {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ripple {
  position: relative;
  overflow: hidden;
}

.ripple::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--transition-base);
  pointer-events: none;
}

.ripple:hover::after {
  opacity: 1;
}

.magnetic {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===== LANDING SCREEN ===== */
.landing-screen {
  position: fixed;
  inset: 0;
  z-index: var(--z-loader);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--bg-primary);
  overflow: hidden;
}

.landing-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #1A2E24 0%, #2D4A3C 50%, #1A2E24 100%);
}

.landing-bg .landing-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
  opacity: 0.6;
}

.landing-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(26, 46, 36, 0.65) 0%, rgba(26, 46, 36, 0.2) 45%, rgba(26, 46, 36, 0.5) 100%);
  z-index: 1;
}

.landing-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 24px;
  max-width: 640px;
}

.landing-divider {
  width: 60px;
  height: 1px;
  margin: 0 auto 24px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.5;
}

.landing-subtitle {
  font-family: var(--font-subheading);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}

.landing-ornament {
  margin-bottom: 20px;
  opacity: 0.4;
}

.landing-title {
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 1.8vw, 1.1rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.landing-names-wrapper {
  position: relative;
  margin: 24px 0;
}

.landing-names-wrapper::before,
.landing-names-wrapper::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

.landing-names-wrapper::before { top: -20px; }
.landing-names-wrapper::after { bottom: -20px; }

.landing-names {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  line-height: 1.1;
  letter-spacing: 0.06em;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 2px 40px rgba(0,0,0,0.2);
}

.landing-names .ampersand {
  color: var(--accent);
  margin: 0 12px;
  font-style: italic;
  font-weight: 400;
  display: inline-block;
  text-shadow: 0 0 30px rgba(106, 191, 138, 0.3);
}

.landing-date {
  font-family: var(--font-subheading);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 48px;
}

.landing-guest {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.landing-guest-name {
  font-family: var(--font-subheading);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 48px;
  position: relative;
  display: inline-block;
}

.landing-guest-name::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}



.landing-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.landing-buttons .btn {
  min-width: 240px;
}

.landing-screen .btn-primary {
  background: #fff;
  color: #1A2E24;
}

.landing-screen .btn-primary:hover {
  background: rgba(255,255,255,0.9);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.landing-screen .btn-secondary {
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.2);
}

.landing-screen .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.35);
}

.landing-footer {
  position: absolute;
  bottom: 24px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  padding: 12px 24px;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: 0.12em;
  color: var(--text-primary);
  text-align: center;
  font-weight: 600;
}

.nav-ampersand {
  color: var(--accent);
  font-style: italic;
  margin: 0 6px;
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) brightness(0.9);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(26, 46, 36, 0.7) 0%, rgba(26, 46, 36, 0.3) 50%, rgba(26, 46, 36, 0.75) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.hero-content::before,
.hero-content::after {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(106, 191, 138, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content::before {
  top: -40px;
  left: -80px;
}

.hero-content::after {
  bottom: -40px;
  right: -80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  font-family: var(--font-subheading);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  text-wrap: balance;
  font-weight: 600;
  color: #fff;
}

.hero-sub {
  display: block;
  font-family: var(--font-subheading);
  font-size: clamp(0.75rem, 1.5vw, 0.85rem);
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hero-title .hero-accent {
  color: var(--accent);
  font-style: italic;
}

.hero-meta {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
}

.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: center;
}

.hero-meta-label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
}

.hero-synopsis {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(255, 255, 255, 0.65);
  max-width: 520px;
  line-height: 1.8;
  margin: 0 auto 40px;
  font-style: italic;
}

.hero .btn-secondary {
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.2);
}

.hero .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.35);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* ===== COUNTDOWN ===== */
.countdown {
  text-align: center;
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 600px;
  margin: 48px auto 0;
}

.countdown-item {
  padding: 24px 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  backdrop-filter: blur(12px);
}

.countdown-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.countdown-number .accent {
  color: var(--accent);
}

.countdown-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}

.countdown-event {
  display: none;
  padding: 40px;
}

.countdown-event.active {
  display: block;
}

.countdown-event-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.countdown-event h3 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin-bottom: 8px;
}

.countdown-event p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* ===== BRIDE & GROOM ===== */
.couple {
  text-align: center;
}

.couple-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: start;
  margin-top: 48px;
}

.couple-card {
  padding: 32px;
  text-align: center;
}

.couple-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 3px solid var(--accent);
  box-shadow: 0 0 40px var(--accent-glow);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.couple-card:hover .couple-photo {
  transform: scale(1.05);
  box-shadow: 0 0 60px var(--accent-glow);
}

.couple-name {
  font-family: var(--font-heading);
  font-size: 2rem;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.couple-label {
  display: inline-block;
  padding: 4px 14px;
  background: var(--accent);
  border-radius: var(--radius-full);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}

.couple-parent {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

.couple-social {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  transition: all var(--transition-base);
}

.couple-social:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(106, 191, 138, 0.08);
}

.couple-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
}

.couple-divider-ring {
  width: 64px;
  height: 64px;
  border: 3px solid var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  position: relative;
}

.couple-divider-ring::before,
.couple-divider-ring::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 1px;
  background: var(--secondary);
}

.couple-divider-ring::before {
  right: calc(100% + 12px);
}

.couple-divider-ring::after {
  left: calc(100% + 12px);
}

/* ===== LOVE STORY ===== */
.story-header {
  text-align: center;
  margin-bottom: 64px;
}

.story-series-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(106, 191, 138, 0.1);
  border: 1px solid rgba(106, 191, 138, 0.3);
  border-radius: var(--radius-full);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--secondary);
  margin-bottom: 16px;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.story-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: var(--radius-lg);
  min-height: 400px;
  display: flex;
  flex-direction: column;
  background-size: cover;
  background-position: center;
}

.story-card-inner {
  margin-top: auto;
  padding: 32px 24px 24px;
  background: linear-gradient(0deg, rgba(26, 46, 36, 0.85) 0%, rgba(26, 46, 36, 0.4) 60%, transparent 100%);
  color: #fff;
  transition: padding var(--transition-base);
}

.story-card:hover .story-card-inner {
  padding-bottom: 32px;
}

.story-episode {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 8px;
}

.story-card-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  margin-bottom: 4px;
}

.story-card-date {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 12px;
}

.story-card-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  flex: 1;
}

.story-card-hover {
  position: absolute;
  inset: 0;
  background: rgba(26, 46, 36, 0.85);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.story-card:hover .story-card-hover {
  opacity: 1;
}

.story-card-hover span {
  font-family: var(--font-subheading);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 10px 24px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-full);
}

/* ===== GALLERY ===== */
.gallery {
  overflow: hidden;
}

.gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 24px;
}

.gallery-header-left {
  flex: 1;
}

.gallery-header-right {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  padding-bottom: 4px;
}

.gallery-carousel-wrap {
  position: relative;
}

.gallery-carousel-wrap::before,
.gallery-carousel-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 4;
  pointer-events: none;
}

.gallery-carousel-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-primary) 0%, transparent 100%);
}

.gallery-carousel-wrap::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg-primary) 0%, transparent 100%);
}

.gallery-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 32px 0 48px;
  cursor: grab;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.gallery-carousel::-webkit-scrollbar {
  display: none;
}

.gallery-carousel.dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.gallery-item {
  flex: 0 0 auto;
  scroll-snap-align: start;
  position: relative;
  cursor: pointer;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 4px;
}

.gallery-item:nth-child(3n+1) {
  width: 280px;
  aspect-ratio: 2 / 3;
}

.gallery-item:nth-child(3n+2) {
  width: 360px;
  aspect-ratio: 3 / 4;
}

.gallery-item:nth-child(3n+3) {
  width: 320px;
  aspect-ratio: 4 / 5;
}

.gallery-item-frame {
  width: 100%;
  height: 100%;
  padding: 8px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(4px);
  border-radius: 6px;
  transition: background 0.4s ease;
}

.gallery-item:hover .gallery-item-frame {
  background: rgba(255,255,255,0.08);
}

.gallery-item-inner {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.gallery-item-inner .gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease, transform 10s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item-inner .gallery-img.loaded {
  opacity: 1;
}

.gallery-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 32px 80px rgba(26, 46, 36, 0.2);
}

.gallery-item:hover .gallery-img {
  transform: scale(1.15);
}

.gallery-item-number {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--font-subheading);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  padding: 3px 8px;
  border-radius: 2px;
  background: rgba(0,0,0,0.15);
  backdrop-filter: blur(4px);
  z-index: 3;
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(26, 46, 36, 0.75) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  z-index: 3;
  transform: translateY(12px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover .gallery-item-caption {
  transform: translateY(0);
  opacity: 1;
}

.gallery-item-caption::before {
  content: '';
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--accent);
  margin-bottom: 10px;
}

.gallery-item-caption-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  color: #fff;
  font-weight: 500;
  margin-bottom: 2px;
}

.gallery-item-caption-desc {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.05em;
}

/* Dots */
.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: -8px;
  margin-bottom: 32px;
}

.gallery-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-muted);
  opacity: 0.2;
  transition: all 0.4s ease;
  border: none;
  cursor: pointer;
  padding: 0;
}

.gallery-dot.active {
  opacity: 1;
  background: var(--accent);
  width: 20px;
  border-radius: 3px;
}

.gallery-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}

.gallery-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  transition: all var(--transition-base);
  box-shadow: var(--glass-shadow);
}

.gallery-nav-btn:hover {
  border-color: var(--accent);
  background: rgba(106, 191, 138, 0.1);
  color: var(--accent);
  box-shadow: 0 8px 24px var(--accent-glow);
  transform: translateY(-2px);
}

/* ===== VIDEO ===== */
.video-section {
  text-align: center;
}

.video-wrapper {
  position: relative;
  max-width: 800px;
  margin: 48px auto 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--bg-card);
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: opacity var(--transition-base);
}

.video-poster.hidden {
  opacity: 0;
  pointer-events: none;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  cursor: pointer;
  box-shadow: 0 8px 32px var(--accent-glow);
}

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--accent-hover);
}

.video-play-btn svg {
  width: 32px;
  height: 32px;
  fill: white;
  margin-left: 4px;
}

/* ===== EVENT ===== */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.event-card {
  text-align: center;
  padding: 40px 32px;
}

.event-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(106, 191, 138, 0.08);
  border: 1px solid rgba(106, 191, 138, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.event-name {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.event-detail {
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--text-secondary);
}

.event-detail strong {
  color: var(--accent);
  font-weight: 600;
}

.event-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
}

.event-actions .btn {
  font-size: 11px;
  padding: 10px 20px;
}

/* ===== GIFT ===== */
.gift {
  text-align: center;
}

.gift-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.gift-card {
  padding: 32px;
  text-align: center;
}

.gift-card h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  color: var(--secondary);
  margin-bottom: 20px;
}

.gift-bank-item {
  padding: 16px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  transition: border-color var(--transition-base);
  cursor: pointer;
}

.gift-bank-item:hover {
  border-color: var(--secondary);
}

.gift-bank-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.gift-bank-account {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.gift-bank-holder {
  font-size: 12px;
  color: var(--text-muted);
}

.gift-qris {
  width: 240px;
  height: 240px;
  margin: 0 auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

.gift-qris img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== RSVP ===== */
.rsvp {
  text-align: center;
}

.rsvp-form {
  max-width: 520px;
  margin: 48px auto 0;
  padding: 40px;
  text-align: left;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-tertiary);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 14px;
  transition: border-color var(--transition-base);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-textarea {
  min-height: 100px;
  resize: vertical;
}

.form-select {
  appearance: none;
  cursor: pointer;
}

.form-submit {
  width: 100%;
  margin-top: 8px;
}

.form-success {
  display: none;
  padding: 48px 24px;
  text-align: center;
}

.form-success.active {
  display: block;
}

.form-success-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.form-success h4 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 8px;
}

.form-success p {
  color: var(--text-muted);
}

/* ===== GUEST BOOK ===== */
.guest-book {
  text-align: center;
}

.wishes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
  margin-top: 48px;
  text-align: left;
}

.wish-card {
  padding: 24px;
}

.wish-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.wish-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  color: white;
  flex-shrink: 0;
}

.wish-author {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-primary);
}

.wish-date {
  font-size: 11px;
  color: var(--text-muted);
}

.wish-message {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.wish-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--glass-border);
}

.wish-like {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
  cursor: pointer;
  transition: color var(--transition-fast);
}

.wish-like:hover,
.wish-like.liked {
  color: var(--accent);
}

/* ===== ENDING CREDITS ===== */
.ending {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 60px 0 !important;
}

.ending-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0.3;
}

.ending-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: 0.08em;
  color: var(--text-primary);
  margin-bottom: 48px;
}

.ending-credits {
  max-width: 400px;
  margin: 0 auto;
}

.ending-credit-item {
  margin-bottom: 24px;
}

.ending-credit-role {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.ending-credit-name {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 2rem);
  letter-spacing: 0.05em;
  color: var(--text-primary);
}

.ending-thanks {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--glass-border);
}

.ending-thanks-title {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.ending-thanks-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.ending-thanks-item {
  padding: 6px 16px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  font-size: 12px;
  color: var(--text-muted);
}

.ending-closing {
  margin-top: 48px;
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 3rem);
  letter-spacing: 0.1em;
  color: var(--accent);
  opacity: 0.6;
}

/* ===== MUSIC PLAYER ===== */
.music-player {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: var(--z-nav);
  display: flex;
  align-items: center;
  gap: 12px;
}

.music-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  transition: all var(--transition-base);
  position: relative;
}

.music-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.music-btn.playing::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  animation: music-pulse 2s ease-in-out infinite;
}

.music-progress {
  width: 0;
  height: 4px;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-full);
  overflow: hidden;
  transition: width var(--transition-base);
}

.music-progress.active {
  width: 120px;
}

.music-progress-fill {
  height: 100%;
  background: var(--accent);
  border-radius: var(--radius-full);
  transition: width 0.3s linear;
}

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  padding: 12px 24px;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  font-size: 13px;
  color: var(--text-primary);
  opacity: 0;
  transition: all var(--transition-base);
  z-index: var(--z-modal);
  pointer-events: none;
}

.toast.active {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ===== MODAL / LIGHTBOX ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  background: rgba(26, 46, 36, 0.85);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-content {
  max-width: 700px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  transform: scale(0.95) translateY(20px);
  transition: transform var(--transition-spring);
}

.modal-overlay.active .modal-content {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  transition: all var(--transition-base);
}

.modal-close:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  letter-spacing: 0.03em;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.modal-subtitle {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.modal-body {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.9;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  background: rgba(26, 46, 36, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox img {
  max-width: 95vw;
  max-height: 95vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  font-size: 24px;
  transition: all var(--transition-base);
}

.lightbox-close:hover {
  background: var(--accent);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  transition: all var(--transition-base);
}

.lightbox-nav:hover {
  background: var(--accent);
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

/* ===== PROGRESS BAR ===== */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--accent);
  z-index: var(--z-loader);
  transition: width 0.1s linear;
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: var(--z-nav);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition-base);
  pointer-events: none;
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.scroll-top:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* ===== THEME SWITCH ===== */
.theme-switch {
  position: fixed;
  bottom: 80px;
  left: 24px;
  z-index: var(--z-nav);
}

.theme-toggle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition-base);
  font-size: 18px;
}

.theme-toggle:hover {
  border-color: var(--secondary);
  color: var(--secondary);
}

/* ===== LOADING TRANSITION ===== */
.loading-transition {
  position: fixed;
  inset: 0;
  z-index: calc(var(--z-loader) + 1);
  background: var(--bg-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.loading-transition.active {
  opacity: 1;
  pointer-events: all;
}

.loading-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid var(--glass-border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.loading-text {
  margin-top: 16px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}

/* ===== SKELETON ===== */
.skeleton {
  background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-tertiary) 50%, var(--bg-card) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
  border-radius: var(--radius-sm);
}

.skeleton-text {
  height: 16px;
  margin-bottom: 8px;
  width: 80%;
}

.skeleton-text:last-child {
  width: 60%;
}

.skeleton-image {
  width: 100%;
  aspect-ratio: 16 / 9;
}

/* ===== SHARE BUTTON ===== */
.share-btn {
  position: fixed;
  bottom: 136px;
  left: 24px;
  z-index: var(--z-nav);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition-base);
}

.share-btn:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* ===== CONTINUE READING ===== */
.continue-bar {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: var(--z-nav);
  padding: 10px 20px;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  font-size: 12px;
  color: var(--text-secondary);
  display: none;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.continue-bar:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ===== FILM GRAIN ===== */
.film-grain {
  position: fixed;
  inset: 0;
  z-index: var(--z-grain);
  pointer-events: none;
  opacity: 0.02;
  background-image: repeating-conic-gradient(#2C1810 0%, transparent 0.0002%, transparent 0.0004%, #2C1810 0.0006%);
  background-size: 3px 3px;
}

@media (max-width: 768px) {
  .film-grain {
    display: none;
  }
}

/* ===== CONFETTI CANVAS ===== */
#confettiCanvas {
  position: fixed;
  inset: 0;
  z-index: var(--z-overlay);
  pointer-events: none;
}

/* ===== CURSOR SPOTLIGHT ===== */
.cursor-spotlight {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(106, 191, 138, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: var(--z-cursor);
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  opacity: 0;
}

.cursor-spotlight.visible {
  opacity: 1;
}

/* ===== AMBIENT LIGHTS ===== */
.ambient-lights {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.ambient-light {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.1;
}

.ambient-light:nth-child(1) {
  width: 500px;
  height: 500px;
  background: var(--accent);
  top: -10%;
  left: -5%;
}

.ambient-light:nth-child(2) {
  width: 400px;
  height: 400px;
  background: var(--accent);
  bottom: -10%;
  right: -5%;
  opacity: 0.07;
}

.ambient-light:nth-child(3) {
  width: 350px;
  height: 350px;
  background: var(--accent);
  top: 50%;
  right: -2%;
  opacity: 0.06;
}

/* ===== UTILITY ===== */
.hidden {
  display: none !important;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-gradient {
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); }

/* ===== LOADING SCREEN (INTRO) ===== */
.intro-screen {
  position: fixed;
  inset: 0;
  z-index: calc(var(--z-loader) + 2);
  background: var(--bg-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  color: #fff;
  overflow: hidden;
}

.intro-screen.fade-out {
  opacity: 0;
  visibility: hidden;
}

.intro-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.intro-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1);
}

.intro-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(26, 46, 36, 0.75) 0%, rgba(26, 46, 36, 0.4) 50%, rgba(26, 46, 36, 0.85) 100%);
}

.intro-ornament {
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
  opacity: 0;
  animation: introFadeIn 0.8s ease 0.2s forwards;
}

.intro-names {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
  opacity: 0;
  animation: introFadeIn 0.8s ease 0.4s forwards;
}

.intro-name {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  letter-spacing: 0.3em;
  font-weight: 600;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.intro-ampersand {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-style: italic;
  color: var(--accent);
  opacity: 0.8;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.intro-subtitle {
  position: relative;
  z-index: 1;
  font-family: var(--font-subheading);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 48px;
  opacity: 0;
  animation: introFadeIn 0.8s ease 0.6s forwards;
}

.intro-ring-loader {
  position: relative;
  z-index: 1;
  color: var(--accent);
  margin-bottom: 24px;
  opacity: 0;
  animation: introFadeIn 0.6s ease 0.8s forwards;
}

.intro-ring {
  display: block;
  animation: introSpin 1.5s linear infinite;
}

@keyframes introSpin {
  to { transform: rotate(360deg); }
}

@keyframes introFadeIn {
  to { opacity: 1; }
}

.intro-text {
  position: relative;
  z-index: 1;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.35);
  opacity: 0;
  animation: introFadeIn 0.6s ease 1s forwards;
}
