/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --ink: #090909;
  --olive: #8FB339;
  --olive-light: #A9C95C;
  --gold: #D4AF37;
  --gold-light: #E8CC6E;
  --maroon: #7A0F2E;
  --maroon-light: #9C1B3E;
  --ivory: #FFFFFF;
  --mist: #D7D7D7;

  --font-display: "Cormorant Garamond", serif;
  --font-script: "Alex Brush", cursive;
  --font-body: "Poppins", sans-serif;
  --font-arabic: "Amiri", serif;
}

* { box-sizing: border-box; }

html, body {
  background: var(--ink);
  color: var(--ivory);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll { overflow: hidden; height: 100vh; }

::selection { background: var(--gold); color: var(--ink); }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold), var(--maroon));
  border-radius: 8px;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 720px; margin: 0 auto; padding: 0 24px; }
.container-md { max-width: 980px; margin: 0 auto; padding: 0 24px; }

/* ============================================================
   TYPOGRAPHY HELPERS
   ============================================================ */
.eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(215, 215, 215, 0.85);
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  color: var(--gold);
  letter-spacing: 0.02em;
}

.text-glow-gold { text-shadow: 0 0 18px rgba(212, 175, 55, 0.55); }
.text-glow-olive { text-shadow: 0 0 16px rgba(143, 179, 57, 0.5); }

.script-name {
  font-family: var(--font-script);
  background: linear-gradient(180deg, var(--olive-light) 0%, var(--olive) 55%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--olive);
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.65)) drop-shadow(0 0 22px rgba(143, 179, 57, 0.45));
  font-size: clamp(38px, 7vw, 64px);
  letter-spacing: 0.01em;
}

/* ============================================================
   DIVIDERS & ORNAMENTS
   ============================================================ */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gold);
}
.divider-line {
  height: 1px;
  width: 70px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.7), transparent);
}
.divider svg { flex-shrink: 0; }

/* ============================================================
   GLASS / FRAME COMPONENTS
   ============================================================ */
.glass-card {
  position: relative;
  border-radius: 18px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.islamic-frame { position: relative; }
.islamic-frame::before,
.islamic-frame::after {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  opacity: 0.7;
}
.islamic-frame::before {
  top: -1px; left: -1px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  border-top-left-radius: 16px;
}
.islamic-frame::after {
  bottom: -1px; right: -1px;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  border-bottom-right-radius: 16px;
}

.gold-outline-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.6);
  padding: 12px 26px;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--gold);
  transition: all 0.3s ease;
}
.gold-outline-btn:hover {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.35);
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  animation: pulseGlow 5s ease-in-out infinite;
}
.glow-orb.gold { background: rgba(212, 175, 55, 0.22); }
.glow-orb.olive { background: rgba(143, 179, 57, 0.18); }
.glow-orb.maroon { background: rgba(122, 15, 46, 0.25); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
@keyframes floatSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes sway {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(3deg); }
}
@keyframes twinkle {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 1; }
}
@keyframes pulseGlow {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}
@keyframes scrollDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

.animate-float { animation: float 6s ease-in-out infinite; }
.animate-float-slow { animation: floatSlow 8s ease-in-out infinite; }
.animate-sway { animation: sway 6s ease-in-out infinite; }

.reveal {
  opacity: 0;
  transform: translateY(32px);
  filter: blur(4px);
  transition: opacity 0.9s cubic-bezier(0.22,1,0.36,1), transform 0.9s cubic-bezier(0.22,1,0.36,1), filter 0.9s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.reveal.delay-1 { transition-delay: 0.12s; }
.reveal.delay-2 { transition-delay: 0.24s; }
.reveal.delay-3 { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 22px 0;
  transition: all 0.4s ease;
}
.navbar.scrolled {
  padding: 12px 0;
  background: rgba(9, 9, 9, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-script);
  font-size: 26px;
  color: var(--gold);
  text-shadow: 0 0 18px rgba(212, 175, 55, 0.55);
}
.nav-links {
  display: none;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  position: relative;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--mist);
  transition: color 0.3s ease;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  height: 1px; width: 0;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 16px; }
.icon-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--gold);
  transition: background 0.3s ease;
}
.icon-btn:hover { background: rgba(212, 175, 55, 0.1); }
.menu-toggle {
  color: var(--gold);
  display: inline-flex;
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(9, 9, 9, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-drawer.open { opacity: 1; pointer-events: auto; }
.mobile-drawer-close {
  display: flex;
  justify-content: flex-end;
  padding: 24px;
}
.mobile-drawer-close button { color: var(--gold); }
.mobile-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding-top: 30px;
  list-style: none;
  margin: 0;
}
.mobile-links a {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--mist);
}
.mobile-links a:hover { color: var(--gold); }

@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .icon-btn { display: inline-flex; }
  .menu-toggle { display: none; }
}

/* ============================================================
   BISMILLAH INTRO (Arabic calligraphy reveal — no photo, pure
   type + light, matches the reference animation)
   ============================================================ */
.bismillah-intro {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  background: var(--ink);
  overflow: hidden;
  cursor: pointer;
  transition: opacity 0.9s ease;
}
.bismillah-intro.fade-out {
  opacity: 0;
  pointer-events: none;
}
.bismillah-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70vw;
  max-width: 640px;
  height: 70vw;
  max-height: 640px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(212,175,55,0.16) 0%, rgba(9,9,9,0) 70%);
  animation: pulseGlow 4s ease-in-out infinite;
  pointer-events: none;
}
.bismillah-particles { position: absolute; inset: 0; pointer-events: none; }

.bismillah-text {
  position: relative;
  z-index: 2;
  margin: 0;
  font-family: var(--font-arabic);
  font-weight: 700;
  font-size: clamp(38px, 8vw, 84px);
  line-height: 1.4;
  text-align: center;
  padding: 0 24px;
  background: linear-gradient(100deg, #8a6a1e 0%, #D4AF37 22%, #F6E8B8 45%, #D4AF37 68%, #8a6a1e 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 22px rgba(212, 175, 55, 0.45));
  opacity: 0;
  transform: scale(0.88);
  animation:
    bismillahFadeIn 1.4s cubic-bezier(0.22,1,0.36,1) 0.3s forwards,
    bismillahShimmer 3.2s linear 1.7s infinite;
}
.bismillah-translation {
  position: relative;
  z-index: 2;
  margin: 0;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(215, 215, 215, 0.6);
  opacity: 0;
  animation: bismillahTranslationFadeIn 1.2s ease 1.3s forwards;
}

@keyframes bismillahFadeIn {
  from { opacity: 0; transform: scale(0.88); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes bismillahTranslationFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 0.6; transform: translateY(0); }
}
@keyframes bismillahShimmer {
  0% { background-position: 200% center; }
  100% { background-position: -50% center; }
}

@media (prefers-reduced-motion: reduce) {
  .bismillah-text { animation: bismillahFadeIn 0.6s ease forwards; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 96px 24px 90px;
  text-align: center;
}
.hero-particles,
.islamic-pattern-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.islamic-pattern-bg { opacity: 0.06; }
.hero-content { position: relative; z-index: 2; max-width: 880px; margin: 0 auto; }

.hero-eyebrow-row { margin-top: 8px; }

.hero-couples-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.couple-name-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.heart-icon { color: var(--maroon); }

.hero-center-divider {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-center-divider .v-line {
  width: 1px; height: 64px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

@media (min-width: 768px) {
  .hero-couples-grid { grid-template-columns: 1fr auto 1fr; gap: 24px; }
  .hero-center-divider { display: flex; }
}

.hero-date-block { margin-top: 32px; display: flex; flex-direction: column; gap: 4px; align-items: center; }
.hero-date-day { font-size: 13px; text-transform: uppercase; letter-spacing: 0.3em; color: var(--mist); }
.hero-date-main { font-family: var(--font-display); font-size: clamp(26px, 4vw, 36px); color: var(--ivory); }
.hero-date-hijri { font-size: 13px; color: rgba(215,215,215,0.8); }
.hero-date-schedule { margin-top: 4px; font-size: 13px; color: var(--gold); }

.hero-venue-btn {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background: rgba(122, 15, 46, 0.9);
  padding: 13px 28px;
  font-size: 13px;
  color: var(--ivory);
  box-shadow: 0 0 25px rgba(122, 15, 46, 0.35);
  transition: transform 0.3s ease;
}
.hero-venue-btn:hover { transform: scale(1.05); }

.scroll-down {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--mist);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
}
.scroll-down svg { animation: scrollDown 1.8s ease-in-out infinite; color: var(--gold); }

/* Decorative: moon, lanterns, leaves */
.moon-deco { position: absolute; pointer-events: none; }
.lantern-deco { position: absolute; pointer-events: none; transform-origin: top center; }
.lantern-deco .chain { width: 1px; height: 40px; margin: 0 auto; background: linear-gradient(to bottom, transparent, rgba(212,175,55,0.8)); }
.leaves-deco { position: absolute; pointer-events: none; opacity: 0.6; }
.leaves-deco.flip { transform: scaleX(-1); }

/* ============================================================
   SECTION SPACING
   ============================================================ */
section { position: relative; padding: 96px 0; }
.section-head { max-width: 560px; margin: 0 auto; text-align: center; }
.section-head .section-heading { margin-top: 8px; }
.section-head .divider { margin-top: 16px; }

/* ============================================================
   INVITATION + COUNTDOWN
   ============================================================ */
.invitation-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 60px;
}
@media (min-width: 1024px) {
  .invitation-grid { grid-template-columns: 1fr 1fr; }
}
.invitation-card {
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.arabic-verse { font-family: var(--font-arabic); font-size: 26px; color: var(--gold); margin-top: 20px; }
.arabic-translation { font-size: 13px; color: rgba(215,215,215,0.85); margin-top: 6px; }
.invitation-message { max-width: 420px; margin-top: 24px; font-family: var(--font-display); font-size: 19px; line-height: 1.7; color: var(--mist); }

.countdown-card { padding: 32px; width: 100%; }
.countdown-card h3 { text-align: center; font-family: var(--font-display); font-size: 26px; color: var(--gold); margin: 0; }
.countdown-card .sub { text-align: center; font-size: 13px; color: rgba(215,215,215,0.85); margin-top: 4px; }
.countdown-units {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  background: rgba(255,255,255,0.02);
  padding: 16px 6px;
}
.countdown-unit .value {
  font-family: var(--font-display);
  font-size: clamp(22px, 4vw, 30px);
  color: var(--olive);
  text-shadow: 0 0 16px rgba(143, 179, 57, 0.5);
  font-variant-numeric: tabular-nums;
}
.countdown-unit .label { margin-top: 4px; font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(215,215,215,0.85); }

.countdown-notes {
  margin-top: 26px;
  padding-top: 26px;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
@media (min-width: 640px) { .countdown-notes { grid-template-columns: repeat(4, 1fr); } }
.countdown-note { display: flex; flex-direction: column; align-items: center; gap: 4px; text-align: center; }
.countdown-note svg { color: var(--gold); }
.countdown-note .title { font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--gold); }
.countdown-note .text { font-size: 13px; color: rgba(215,215,215,0.85); }

/* ============================================================
   OUR COUPLES
   ============================================================ */
.couples-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) { .couples-grid { grid-template-columns: 1fr 1fr; } }

.couple-card {
  overflow: hidden;
  transition: box-shadow 0.5s ease;
}
.couple-card:hover { box-shadow: 0 0 25px rgba(212, 175, 55, 0.35); }
.couple-card-inner {
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.couple-tag {
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.5);
  padding: 5px 18px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
}
.couple-emblem {
  margin: 24px 0;
  width: 96px; height: 96px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 175, 55, 0.4);
  background: radial-gradient(circle, rgba(212,175,55,0.12), transparent 70%);
}
.couple-card .father-name { font-size: 14px; color: rgba(215,215,215,0.85); margin-top: 4px; }
.couple-verse { max-width: 300px; font-family: var(--font-display); font-style: italic; font-size: 14px; line-height: 1.6; color: rgba(215,215,215,0.9); margin-top: 20px; }
.couple-verse-ref { margin-top: 8px; font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(212,175,55,0.8); }

/* ============================================================
   WEDDING DETAILS
   ============================================================ */
.details-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 640px) { .details-grid { grid-template-columns: 1fr 1fr; } }
.detail-card {
  padding: 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.5s ease, transform 0.4s ease;
}
.detail-card:hover { transform: translateY(-6px); box-shadow: 0 0 30px rgba(212, 175, 55, 0.25); }
.detail-icon {
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.4);
  background: rgba(212, 175, 55, 0.05);
  color: var(--gold);
}
.detail-card h3 { margin: 18px 0 0; font-family: var(--font-display); font-size: 24px; color: var(--gold); }
.detail-row { margin-top: 10px; display: flex; align-items: center; gap: 8px; font-size: 15px; color: var(--ivory); }
.detail-row.muted { color: rgba(215,215,215,0.7); }
.detail-row svg { color: var(--olive); flex-shrink: 0; }

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline-wrap { position: relative; margin-top: 64px; max-width: 760px; margin-left: auto; margin-right: auto; }
.timeline-line {
  position: absolute;
  left: 24px;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(212,175,55,0.5), transparent);
}
@media (min-width: 768px) { .timeline-line { left: 50%; transform: translateX(-50%); } }

.timeline-step { position: relative; display: flex; align-items: flex-start; gap: 22px; margin-bottom: 48px; }
.timeline-step:last-child { margin-bottom: 0; }
.timeline-icon {
  position: relative; z-index: 2;
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--gold);
  background: var(--ink);
  color: var(--gold);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.35);
}
.timeline-body { flex: 1; padding: 20px; }
.timeline-body .time { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); }
.timeline-body h3 { margin: 4px 0 0; font-family: var(--font-display); font-size: 22px; color: var(--ivory); }
.timeline-body p { margin-top: 8px; font-size: 15px; color: rgba(215,215,215,0.85); }

@media (min-width: 768px) {
  .timeline-step { width: 50%; }
  .timeline-step:nth-child(odd) { margin-right: auto; padding-right: 40px; flex-direction: row-reverse; text-align: right; }
  .timeline-step:nth-child(odd) .timeline-icon { position: absolute; right: -24px; top: 0; }
  .timeline-step:nth-child(even) { margin-left: auto; padding-left: 40px; }
  .timeline-step:nth-child(even) .timeline-icon { position: absolute; left: -24px; top: 0; }
}

/* ============================================================
   VENUE
   ============================================================ */
.venue-card { margin-top: 56px; overflow: hidden; }
.venue-map { width: 100%; aspect-ratio: 16/9; border: 0; }
.venue-info { padding: 40px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px; }
.venue-info svg.pin { color: var(--gold); }
.venue-info h3 { margin: 0; font-family: var(--font-display); font-size: 26px; color: var(--ivory); }
.venue-info p { max-width: 440px; font-size: 15px; color: rgba(215,215,215,0.85); }
.venue-buttons { margin-top: 12px; display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }

/* ============================================================
   FAMILY
   ============================================================ */
.family-grid { margin-top: 56px; display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 768px) { .family-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .family-grid { grid-template-columns: 1fr 1fr 1fr; } }
.family-card { padding: 36px; text-align: center; }
.family-card .heading { font-size: 12px; text-transform: uppercase; letter-spacing: 0.2em; color: var(--gold); }
.family-card h3 { margin: 16px 0 0; font-family: var(--font-display); font-size: 24px; color: var(--ivory); }
.family-row { margin-top: 12px; display: flex; align-items: flex-start; justify-content: center; gap: 8px; font-size: 15px; color: rgba(215,215,215,0.85); }
.family-row svg { color: var(--olive); flex-shrink: 0; margin-top: 2px; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { padding: 70px 0 48px; text-align: center; }
.footer-inner { max-width: 520px; margin: 30px auto 0; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.footer-inner .thanks { font-size: 15px; color: rgba(215,215,215,0.85); }
.footer-inner .closing { font-family: var(--font-script); font-size: 30px; color: var(--gold); text-shadow: 0 0 18px rgba(212,175,55,0.55); }
.footer-inner .signature { font-size: 12px; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(215,215,215,0.8); }
.footer-socials { margin-top: 20px; display: flex; gap: 16px; }
.footer-socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--gold);
  transition: all 0.3s ease;
}
.footer-socials a:hover { background: var(--gold); color: var(--ink); }
.footer-credit { margin-top: 28px; font-size: 11px; color: rgba(215,215,215,0.4); }
