/* ── 1. Design Tokens (Rose Blush & Champagne Theme) ──────────────────────── */
:root {
  --bg-primary: #fcf5f5;
  --bg-secondary: #f8e8e8;
  --bg-tertiary: #f0d8d8;
  --bg-glass: rgba(255, 255, 255, 0.85);
  --bg-glass-hover: rgba(255, 255, 255, 0.98);
  --bg-glass-border: rgba(180, 80, 100, 0.22);

  --gold-1: #9c354f;
  --gold-2: #c45b75;
  --gold-3: #782036;
  --gold-4: #b3883b;
  --gold-glow: rgba(180, 80, 100, 0.18);
  --gold-border: rgba(179, 136, 59, 0.38);

  --text-primary: #2e151b;
  --text-secondary: #66434c;
  --text-muted: #94717a;

  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Outfit', sans-serif;
  --font-hindi: 'Noto Sans Devanagari', sans-serif;

  --shadow-card: 0 8px 30px rgba(90, 30, 50, 0.07);
  --shadow-glow: 0 0 35px rgba(180, 80, 100, 0.12);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 8px;
}

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

html {
  scroll-behavior: smooth;
  font-size: clamp(15px, 0.9vw + 10px, 18px);
  scrollbar-width: thin;
  scrollbar-color: var(--gold-4) var(--bg-secondary);
}

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

[data-lang="hi"] body {
  font-family: var(--font-hindi), var(--font-body);
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--gold-4); border-radius: 3px; }

/* ── 3. Language System ──────────────────────────────────────────────────── */
[data-lang="en"] .lang-hi { display: none !important; }
[data-lang="hi"] .lang-en { display: none !important; }

/* ── 4. Utility: Gold Gradient Text ──────────────────────────────────────── */
.gold-text {
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2), var(--gold-3), var(--gold-2), var(--gold-4));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 6s linear infinite;
}

@keyframes shimmer {
  to { background-position: 200% center; }
}

/* ── 5. Utility: Glass Card ──────────────────────────────────────────────── */
.glass-card {
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

/* ── 6. Floating Particles ───────────────────────────────────────────────── */
#particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-2), var(--gold-1));
  opacity: 0;
  animation: float-particle linear infinite;
}

@keyframes float-particle {
  0% { opacity: 0; transform: translateY(0) translateX(0); }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { opacity: 0; transform: translateY(-100vh) translateX(30px); }
}

/* ── 7. Progress Bar ─────────────────────────────────────────────────────── */
#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2.5px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-1), var(--gold-2), var(--gold-3));
  z-index: 1010;
  transition: width 0.15s ease-out;
}

/* ── 8. Navbar ────────────────────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0.85rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
}

.navbar.scrolled {
  background: var(--bg-primary);
  box-shadow: 0 4px 20px rgba(90, 30, 50, 0.08);
  border-bottom: 1px solid var(--bg-glass-border);
  padding: 0.65rem 1.25rem;
}

.nav-brand {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--gold-border);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2), var(--gold-3));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease;
}

.nav-brand:hover {
  border-color: var(--gold-1);
  box-shadow: 0 0 20px var(--gold-glow);
}

#langToggle {
  background: transparent;
  border: 1px solid var(--gold-border);
  color: var(--text-secondary);
  padding: 0.45rem 1.2rem;
  border-radius: 99px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

#langToggle:hover {
  border-color: var(--gold-1);
  color: var(--gold-2);
  box-shadow: 0 0 20px var(--gold-glow);
}

/* ── 9. Ornament ─────────────────────────────────────────────────────────── */
.ornament {
  font-size: 1.2rem;
  letter-spacing: 8px;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2), var(--gold-3));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

/* ── 10. Hero Section ────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 5rem 1.25rem 3rem;
  overflow: hidden;
  z-index: 1;
}

.hero-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  max-width: 90vw;
  max-height: 90vw;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  width: 100%;
}

.hero-badge {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 1.25rem;
  border: 1px solid var(--bg-glass-border);
  padding: 0.4rem 1.25rem;
  border-radius: 99px;
  max-width: 90vw;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5.5vw, 5rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
  word-break: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

.hero-subtitle {
  margin-bottom: 2rem;
  max-width: 650px;
  width: 100%;
}

.hero-subtitle .lang-en,
.hero-subtitle .lang-hi {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

[data-lang="en"] .hero-subtitle .lang-hi {
  display: none !important;
}

[data-lang="hi"] .hero-subtitle .lang-en {
  display: none !important;
}

.hero-name {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.25;
  letter-spacing: 0.5px;
}

.hero-role {
  font-size: clamp(0.85rem, 2.2vw, 1.05rem);
  color: var(--gold-1);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.hero-org {
  font-size: clamp(0.9rem, 2.3vw, 1.1rem);
  color: var(--text-secondary);
  font-weight: 400;
  letter-spacing: 0.5px;
}

.hero-photo {
  width: clamp(140px, 35vw, 180px);
  height: clamp(140px, 35vw, 180px);
  border-radius: 50%;
  border: 2px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(2.2rem, 6vw, 3rem);
  margin-bottom: 2rem;
  background: var(--bg-glass);
  box-shadow: 0 0 50px var(--gold-glow), inset 0 0 30px rgba(180, 80, 100, 0.08);
  position: relative;
  flex-shrink: 0;
}

.hero-photo::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px dashed var(--gold-border);
  animation: spin 30s linear infinite;
}

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

.hero-stats {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 3vw, 1.5rem);
  flex-wrap: nowrap;
  justify-content: center;
  width: 100%;
  max-width: 500px;
  margin-bottom: 2rem;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  flex: 1;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 4vw, 1.8rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}

.stat-label {
  font-size: clamp(0.6rem, 1.8vw, 0.7rem);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.3;
}

.stat-divider {
  width: 1px;
  height: 32px;
  background: var(--bg-glass-border);
  flex-shrink: 0;
}

.scroll-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  z-index: 2;
  margin-top: 0.5rem;
  padding: 0.5rem;
}

.scroll-arrow {
  width: 16px;
  height: 16px;
  border-right: 1.5px solid var(--gold-border);
  border-bottom: 1.5px solid var(--gold-border);
  transform: rotate(45deg);
  animation: bounce 2.5s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.5; }
  50% { transform: rotate(45deg) translateY(8px); opacity: 1; }
}

/* ── 11. Section Headers ─────────────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
  letter-spacing: 1px;
  font-weight: 300;
}

/* ── 12. Timeline ────────────────────────────────────────────────────────── */
/* ── 12. Timeline ────────────────────────────────────────────────────────── */
.timeline-wrapper {
  position: relative;
  z-index: 1;
  padding: 4.5rem 1.25rem;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
}

.timeline {
  position: relative;
  max-width: 950px;
  margin: 0 auto;
}

/* Vertical Timeline Line */
.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, var(--gold-border) 10%, var(--gold-border) 90%, transparent 100%);
}

/* ── 13. Timeline Items ──────────────────────────────────────────────────── */
.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  padding-left: 56px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.timeline-item:last-child {
  margin-bottom: 0;
}

/* ── 14. Timeline Markers ────────────────────────────────────────────────── */
.timeline-marker {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  z-index: 3;
}

.marker-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 1.5px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
  box-shadow: 0 4px 12px rgba(90, 30, 50, 0.1);
}

.timeline-item.visible .marker-dot {
  box-shadow: 0 0 20px var(--gold-glow), 0 0 30px var(--shadow-glow);
  border-color: var(--gold-1);
}

.marker-year {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
}

/* ── 15. Timeline Cards ──────────────────────────────────────────────────── */
.timeline-card {
  padding: 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  word-break: break-word;
  overflow-wrap: break-word;
}

.timeline-card::before {
  content: '';
  position: absolute;
  top: 14px;
  left: -6px;
  width: 12px;
  height: 12px;
  background: var(--bg-glass);
  border-left: 1px solid var(--bg-glass-border);
  border-bottom: 1px solid var(--bg-glass-border);
  transform: rotate(45deg);
  backdrop-filter: blur(12px);
}

.timeline-card:hover {
  background: var(--bg-glass-hover);
  border-color: var(--gold-border);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}

.timeline-card h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3.5vw, 1.6rem);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.timeline-card p {
  color: var(--text-secondary);
  font-size: clamp(0.85rem, 2.2vw, 0.95rem);
  line-height: 1.7;
  font-weight: 300;
}

.highlight-card {
  border-color: var(--gold-border) !important;
  box-shadow: var(--shadow-card), 0 0 35px var(--gold-glow) !important;
}

.highlight-card h3 {
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2), var(--gold-3));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── 16. Card Photo Placeholder ──────────────────────────────────────────── */
.card-photo {
  margin-top: 1.25rem;
  height: 140px;
  border-radius: var(--radius-md);
  border: 1px dashed var(--gold-border);
  background: rgba(180, 80, 100, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  transition: all 0.3s ease;
}

.card-photo > span {
  font-size: 1.6rem;
  opacity: 0.5;
}

.card-photo small {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.card-photo:hover {
  border-color: var(--gold-1);
  background: rgba(180, 80, 100, 0.08);
}

/* ── 17. Invitation Section ──────────────────────────────────────────────── */
.invitation-wrapper {
  position: relative;
  z-index: 1;
  padding: 4.5rem 1.25rem;
  background: radial-gradient(ellipse at center, rgba(180, 80, 100, 0.06) 0%, var(--bg-primary) 70%);
}

.invitation-card {
  max-width: 580px;
  width: 100%;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  word-break: break-word;
  overflow-wrap: break-word;
}

/* Corner Ornaments (compact on mobile) */
.card-corner {
  position: absolute;
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--gold-border);
  opacity: 0.5;
  pointer-events: none;
}

.card-corner.top-left { top: 8px; left: 8px; border-right: none; border-bottom: none; border-radius: 3px 0 0 0; }
.card-corner.top-right { top: 8px; right: 8px; border-left: none; border-bottom: none; border-radius: 0 3px 0 0; }
.card-corner.bottom-left { bottom: 8px; left: 8px; border-right: none; border-top: none; border-radius: 0 0 0 3px; }
.card-corner.bottom-right { bottom: 8px; right: 8px; border-left: none; border-top: none; border-radius: 0 0 3px 0; }

.invitation-subtitle {
  color: var(--text-secondary);
  font-size: clamp(0.85rem, 2.2vw, 0.95rem);
  margin-bottom: 0.5rem;
  font-weight: 300;
  line-height: 1.5;
}

.honoree-name {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 600;
  margin: 0.6rem 0;
  line-height: 1.2;
}

.honoree-title {
  color: var(--text-muted);
  font-size: clamp(0.75rem, 2vw, 0.85rem);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1.4;
}

.divider-line {
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
  margin: 1.5rem auto;
}

/* ── 18. Event Details ───────────────────────────────────────────────────── */
.event-details {
  margin: 1.5rem 0;
  text-align: left;
}

.detail-row {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--bg-glass-border);
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(180, 80, 100, 0.08);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.detail-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
}

.detail-text strong {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold-1);
  font-weight: 500;
}

.detail-text span {
  color: var(--text-secondary);
  font-size: clamp(0.85rem, 2.2vw, 0.95rem);
  line-height: 1.5;
}

/* ── 19. Countdown ───────────────────────────────────────────────────────── */
.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin: 2rem 0;
  width: 100%;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(180, 80, 100, 0.05);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 0.75rem 0.35rem;
  width: 100%;
}

.countdown-item span {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.countdown-item small {
  font-size: clamp(0.55rem, 1.5vw, 0.65rem);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

.countdown-sep {
  display: none;
}

.celebration-msg {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  padding: 1.2rem;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  grid-column: 1 / -1;
}

/* ── 20. Map Button ──────────────────────────────────────────────────────── */
.map-btn {
  display: inline-block;
  padding: 0.65rem 1.4rem;
  border: 1px solid var(--gold-border);
  border-radius: 99px;
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
  max-width: 100%;
}

.map-btn:hover {
  border-color: var(--gold-1);
  color: var(--gold-2);
  box-shadow: 0 0 20px var(--gold-glow);
}

/* ── 21. Share Section ───────────────────────────────────────────────────── */
.share-section {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin: 2.5rem auto 0;
  max-width: 580px;
  width: 100%;
  flex-wrap: wrap;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  border-radius: 99px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
  flex: 1 1 200px;
  max-width: 280px;
}

.whatsapp-share {
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #25D366;
}

.whatsapp-share:hover {
  background: rgba(37, 211, 102, 0.25);
  border-color: #25D366;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.15);
}

.copy-link {
  background: transparent;
  border: 1px solid var(--bg-glass-border);
  color: var(--text-secondary);
}

.copy-link:hover {
  border-color: var(--gold-border);
  color: var(--gold-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--gold-glow);
}

/* ── 22. Footer ──────────────────────────────────────────────────────────── */
.footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 4rem 1.25rem 2.5rem;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  border-top: 1px solid var(--bg-glass-border);
}

.footer-invite {
  max-width: 550px;
  margin: 0 auto 1.5rem;
  color: var(--text-secondary);
  font-size: clamp(0.85rem, 2.2vw, 0.95rem);
  line-height: 1.8;
  font-weight: 300;
}

.family-names {
  margin: 1.5rem 0;
}

.family-names p {
  margin-bottom: 0.4rem;
  color: var(--text-secondary);
  font-size: clamp(0.9rem, 2.5vw, 1rem);
}

.family-names strong {
  color: var(--text-primary);
  font-weight: 500;
}

.family-surname {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 3vw, 1.3rem) !important;
  letter-spacing: 3px;
  margin-top: 0.8rem !important;
  font-weight: 600;
}

.footer-blessings {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
  margin: 2rem 0 1.2rem;
  font-weight: 300;
  line-height: 1.5;
}

.copyright {
  font-size: 0.68rem;
  color: var(--text-muted);
  opacity: 0.5;
}

/* ── 23. Responsive: Desktop (≥768px) ────────────────────────────────────── */
@media (min-width: 768px) {
  .hero {
    padding: 6rem 2rem 4rem;
  }

  .timeline-wrapper {
    padding: 6rem 2rem;
  }

  .timeline::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .timeline-item {
    width: 50%;
    padding-left: 0;
    margin-bottom: 4rem;
  }

  .timeline-item:nth-child(odd) {
    margin-left: 50%;
    padding-left: 50px;
  }

  .timeline-item:nth-child(even) {
    padding-right: 50px;
    text-align: right;
  }

  .timeline-marker {
    width: 48px;
  }

  .marker-dot {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
  }

  .timeline-item:nth-child(odd) .timeline-marker {
    left: -24px;
  }

  .timeline-item:nth-child(even) .timeline-marker {
    right: -24px;
    left: auto;
  }

  .timeline-card {
    padding: 2rem;
  }

  .timeline-item:nth-child(odd) .timeline-card::before {
    left: -8px;
    top: 18px;
    width: 16px;
    height: 16px;
  }

  .timeline-item:nth-child(even) .timeline-card::before {
    right: -8px;
    left: auto;
    top: 18px;
    width: 16px;
    height: 16px;
    border-left: none;
    border-bottom: none;
    border-right: 1px solid var(--bg-glass-border);
    border-top: 1px solid var(--bg-glass-border);
  }

  .invitation-wrapper {
    padding: 6rem 2rem;
  }

  .invitation-card {
    padding: 4rem 3.5rem;
  }

  .card-corner {
    width: 45px;
    height: 45px;
  }

  .card-corner.top-left { top: 12px; left: 12px; }
  .card-corner.top-right { top: 12px; right: 12px; }
  .card-corner.bottom-left { bottom: 12px; left: 12px; }
  .card-corner.bottom-right { bottom: 12px; right: 12px; }

  .countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    width: auto;
  }

  .countdown-item {
    min-width: 85px;
    padding: 1.1rem 0.8rem;
    width: auto;
  }

  .countdown-item span {
    font-size: 2.6rem;
  }

  .countdown-sep {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gold-border);
    font-weight: 300;
    padding-bottom: 1rem;
  }

  .share-section {
    gap: 1rem;
  }

  .share-btn {
    flex: 0 0 auto;
    padding: 0.75rem 1.6rem;
  }
}

/* ── 24. Extra Small Screens (≤380px) ────────────────────────────────────── */
@media (max-width: 380px) {
  .hero-badge {
    letter-spacing: 1.5px;
    font-size: 0.68rem;
  }

  .hero-stats {
    gap: 0.4rem;
  }

  .timeline-item {
    padding-left: 48px;
  }

  .timeline::before {
    left: 17px;
  }

  .marker-dot {
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }

  .timeline-marker {
    width: 34px;
  }

  .timeline-card {
    padding: 1.1rem;
  }

  .invitation-card {
    padding: 2rem 1rem;
  }

  .countdown-item {
    padding: 0.5rem 0.2rem;
  }

  .countdown-item span {
    font-size: 1.25rem;
  }

  .countdown-item small {
    font-size: 0.52rem;
  }
}

/* ── 24. Animations & Motion ─────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Staggered timeline reveal */
.timeline-item:nth-child(2).visible { transition-delay: 0.05s; }
.timeline-item:nth-child(3).visible { transition-delay: 0.1s; }

/* ── 25. Reduced Motion ──────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .timeline-item {
    opacity: 1;
    transform: none;
  }

  .gold-text {
    animation: none;
  }

  #particles { display: none; }
}
