@import url('https://fonts.googleapis.com/css2?family=Alex+Brush&family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');
:root {
  --cream: #fffaf0;
  --parchment: #f2e5c9;
  --gold: #bd7a32;
  --gold-light: #e0b15a;
  --gold-dark: #875317;
  --olive: #4e5230;
  --ink: #2c2117;
  --rose: #a83f3f;
  --maroon: #7a2323;
  --maroon-dark: #5c1919;
  --white-glass: rgba(255, 255, 255, .62);
  --border-gold: rgba(189, 122, 50, .28);
  --shadow: 0 26px 70px rgba(70, 46, 15, .16);
  --serif: "Cormorant Garamond", Georgia, serif;
  --script: "Alex Brush", cursive;
  --sans: "Inter", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at 15% 0%, rgba(224, 177, 90, .25), transparent 34%),
    radial-gradient(circle at 90% 60%, rgba(189, 122, 50, .18), transparent 30%),
    var(--parchment);
  color: var(--ink);
  font-family: var(--serif);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  background-image:
    linear-gradient(45deg, rgba(255,255,255,.45) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255,255,255,.28) 25%, transparent 25%);
  background-size: 42px 42px;
}

/* FIRST SCREEN */
.welcome-screen {
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: flex;
    justify-content: center;   /* Center horizontally */
    align-items: center;       /* Center vertically */

    padding: 0;

    background:
        radial-gradient(circle at 65% 42%, rgba(255,255,255,.55), transparent 28%),
        linear-gradient(135deg,#f7e5bd 0%,#fff4dc 48%,#ead3a4 100%);

    transition: opacity .75s ease,
                visibility .75s ease,
                transform .75s ease;
}

.welcome-screen.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(1.03);
}

.welcome-content {
    width: 100%;
    max-width: 390px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation: welcomeIn .85s ease both;
}

.welcome-dua {
  direction: rtl;
  color: var(--ink);
  font-size: clamp(22px, 4.5vw, 34px);
  line-height: 1.5;
  margin-bottom: 8px;
}

.welcome-line {
  font-size: clamp(19px, 3vw, 26px);
  color: var(--ink);
  margin-bottom: 8px;
}

.welcome-content h1 {
  font-size: clamp(48px, 8vw, 76px);
  font-weight: 600;
  line-height: .95;
  margin: 16px 0;
}

.welcome-content span {
  display: block;
  font-size: 26px;
  color: var(--ink);
}

.welcome-date {
  font-size: clamp(20px, 2.4vw, 26px);
  margin: 20px 0 12px;
}

.open-btn {
  margin-top: 4px;
  border: none;
  border-radius: 999px;
  background: var(--gold);
  color: white;
  padding: 17px 36px;
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(135, 83, 23, .26);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.open-btn:hover {
  transform: translateY(-2px);
  background: var(--gold-dark);
  box-shadow: 0 22px 44px rgba(135, 83, 23, .34);
}

.welcome-bg-flower {
  position: absolute;
  pointer-events: none;
  color: rgba(189, 122, 50, .12);
  font-size: 160px;
  animation: floatDecor 8s ease-in-out infinite;
}

.flower-top {
  top: 9%;
  right: 8%;
}

.flower-bottom {
  bottom: 10%;
  left: 8%;
  animation-delay: 2s;
}

/* MAIN INVITATION */
.main-invitation {
  display: none;
  opacity: 0;
  max-width: 920px;
  min-height: 100vh;
  margin: 0 auto;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.9), transparent 34%),
    linear-gradient(180deg, var(--cream), #f8eedc);
  box-shadow: 0 0 90px rgba(0,0,0,.16);
  overflow: hidden;
  transition: opacity .8s ease;
}

.main-invitation.show {
  display: block;
  opacity: 1;
}

.section {
  position: relative;
  padding: clamp(70px, 10vw, 110px) clamp(22px, 7vw, 80px);
  text-align: center;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(189,122,50,.25), transparent);
}

.section:first-child::before {
  display: none;
}

.section-tag {
  display: inline-block;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  color: #8F6650;
  letter-spacing: .23em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

h2 {
  color: var(--gold-dark);
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 600;
  line-height: 1.08;
  margin-bottom: 34px;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  align-content: center;
  padding-top: clamp(90px, 14vw, 130px);
  background:
    radial-gradient(circle at 50% 45%, rgba(255,255,255,.9), transparent 36%),
    linear-gradient(180deg, #fff9ec, #f8edd7);
  overflow: hidden;
}

.hero-floral {
  position: absolute;
  bottom: -18px;
  width: min(58vw, 320px);
  pointer-events: none;
  z-index: 0;
}

.hero-floral img {
  width: 100%;
  display: block;
}

.hero-floral-bl { left: -20px; transform: scaleY(-1); }
.hero-floral-br { right: -20px; transform: scale(-1, -1); }

.hero-arabic {
  position: relative;
  z-index: 1;
  font-family: "Dr Sugiyama", cursive;
  color: var(--gold-dark);
  font-size: clamp(26px, 4vw, 36px);
  margin-bottom: 10px;
}

.hero-verse {
  position: relative;
  z-index: 1;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #8F6650;
  margin-bottom: 2px;
}

.hero-verse-ref {
  position: relative;
  z-index: 1;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #8F6650;
  opacity: .68;
  margin-bottom: 26px;
}

.hero-arch {
  position: relative;
  z-index: 1;
  width: min(88vw, 460px);
  padding: 58px 30px 38px;
  border: 1px solid var(--border-gold);
  border-radius: 52% 52% 6% 6% / 130px 130px 6px 6px;
  background: radial-gradient(circle at 50% 30%, #fffefb, #fbf1de 65%, #f5e6c8 100%);
  box-shadow:
    var(--shadow),
    inset 0 0 0 7px rgba(255,255,255,.55),
    inset 0 0 0 8px rgba(189,122,50,.22);
}

.hero-arch-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-arch-label {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #8F6650;
  margin-bottom: 8px;
}

.hero-arch-name {
  font-family: var(--script), cursive;
  font-size: clamp(62px, 13vw, 98px);
  font-weight: 400;
  line-height: 1;
  margin: 4px 0;
  background: linear-gradient(180deg, #f6d98a 0%, #cf9a44 40%, #a2691f 75%, #7a4d16 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 2px rgba(120, 74, 20, .3));
}

.hero-arch-initial {
  font-size: 1.2em;
  line-height: 0;
  vertical-align: -0.05em;
}

.hero-arch-heart {
  display: inline-block;
  font-family: var(--sans);
  font-size: .38em;
  vertical-align: middle;
  color: var(--rose);
  -webkit-text-fill-color: var(--rose);
  filter: none;
  margin-left: 4px;
}

.hero-amp {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 58%;
  margin: 8px auto;
  color: var(--gold-light);
  font-family: var(--script);
  font-size: 22px;
}

.hero-amp .line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(189,122,50,.4));
}

.hero-amp .line:last-child {
  background: linear-gradient(to left, transparent, rgba(189,122,50,.4));
}

.hero-ornament {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 62%;
  margin: 12px auto;
  color: var(--gold);
  font-size: 12px;
}

.hero-ornament.small {
  width: 32%;
  font-size: 9px;
  margin: 10px auto;
}

.hero-ornament::before,
.hero-ornament::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(189,122,50,.4));
}

.hero-ornament::after {
  background: linear-gradient(to left, transparent, rgba(189,122,50,.4));
}

.hero-arch-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--serif);
  color: var(--maroon);
}

.hero-date-day {
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 600;
  letter-spacing: .03em;
}

.hero-date-big {
  font-size: clamp(46px, 8vw, 68px);
  font-weight: 600;
  line-height: 1;
  margin: 4px 0;
  color: var(--gold);
}

.hero-date-month {
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 600;
  letter-spacing: .03em;
}

.hero-arch-place {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--olive);
}

.pin-icon {
  color: var(--maroon);
  flex-shrink: 0;
}

.hero-arch-blessing {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #8F6650;
}

.frame-tick {
  position: absolute;
  color: var(--gold);
  opacity: .5;
  z-index: 1;
  font-family: var(--sans);
  font-size: 13px;
}

.tick-top { top: 14px; left: 50%; transform: translateX(-50%); }
.tick-bottom { bottom: 14px; left: 50%; transform: translateX(-50%); }
.tick-left { left: 14px; top: 50%; transform: translateY(-50%); }
.tick-right { right: 14px; top: 50%; transform: translateY(-50%); }

.hero-lantern {
  position: absolute;
  top: 42px;
  width: min(13vw, 68px);
  pointer-events: none;
  z-index: 2;
  opacity: .95;
}

.hero-lantern img {
  width: 100%;
  display: block;
}

.hero-lantern-l { left: -30px; }
.hero-lantern-r { right: -30px; transform: scaleX(-1); }

.down-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 22px;
  padding: 10px 30px;
  background: linear-gradient(180deg, var(--maroon), var(--maroon-dark));
  color: var(--gold-light);
  text-decoration: none;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(90, 25, 25, .35);
  transition: color .25s ease, background .25s ease, transform .25s ease;
}

.down-link:hover {
  color: #fff;
  background: linear-gradient(180deg, var(--maroon-dark), #4a1414);
  transform: translateY(2px);
}

/* FAMILIES */
.families {
  background: var(--parchment);
  overflow: hidden;
}

.section-floral {
  position: absolute;
  width: min(38vw, 220px);
  pointer-events: none;
  z-index: 0;
}

.section-floral img {
  width: 100%;
  display: block;
}

.section-floral-tl { top: -10px; left: -10px; }
.section-floral-tr { top: -10px; right: -10px; transform: scaleX(-1); }
.section-floral-bl { bottom: -10px; left: -10px; transform: scaleY(-1); }
.section-floral-br { bottom: -10px; right: -10px; transform: scale(-1, -1); }

@media (max-width: 480px) {
  .hero-floral {
    width: min(42vw, 190px);
    bottom: -10px;
  }

  .hero-floral-bl { left: -10px; }
  .hero-floral-br { right: -10px; }

  .hero-lantern {
    width: min(11vw, 52px);
    top: 30px;
  }

  .hero-lantern-l { left: -20px; }
  .hero-lantern-r { right: -20px; }

  .section-floral {
    width: min(24vw, 110px);
  }
}

.families-card {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 auto;
  padding: 48px 30px 40px;
  border: 1px solid var(--border-gold);
  border-radius: 34px;
  background: radial-gradient(circle at 50% 15%, #fffefb, #fbf1de 70%, #f5e6c8 100%);
  box-shadow:
    var(--shadow),
    inset 0 0 0 7px rgba(255,255,255,.55),
    inset 0 0 0 8px rgba(189,122,50,.18);
}

.family-block {
  margin: 0 0 6px;
}

.family-label {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  max-width: 360px;
  margin: 0 auto 16px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.family-label .line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(189,122,50,.45));
}

.family-label .line:last-child {
  background: linear-gradient(to left, transparent, rgba(189,122,50,.45));
}

.family-block h3 {
  color: var(--gold-dark);
  font-weight: 600;
  font-size: clamp(22px, 3vw, 28px);
  margin: 6px 0;
}

.family-block h3.deceased-name {
  position: relative;
  display: inline-block;
}

.family-block h3 .late {
  position: absolute;
  right: calc(100% + 6px);
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  font-family: var(--sans);
  font-style: italic;
  font-weight: 600;
  font-size: .5em;
  color: var(--olive);
}

.family-amp {
  font-family: var(--script);
  color: var(--gold-light);
  font-size: 24px;
  margin: 10px 0;
}

.announce {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .08em;
  line-height: 1.7;
  font-size: 19px;
  margin-bottom: 24px;
}

.full-name {
    font-family: var(--script), cursive;
    color: var(--gold-dark);
    font-size: clamp(28px, 5.5vw, 42px);
    font-weight: 400;
    line-height: 1.25;
    margin: 8px 0;
    text-transform: capitalize;
}

.amp {
  font-family: "Great Vibes", "Alex Brush", cursive;
  color: var(--gold);
  font-size: clamp(24px, 4vw, 32px);
  margin: 4px 0;
}

/* PHOTO */
.couple-section {
  background: linear-gradient(180deg, #fff9ee, var(--cream));
}

.arch-photo {
  width: min(78vw, 390px);
  aspect-ratio: 2 / 3;
  margin: 34px auto 14px;
  border-radius: 190px 190px 28px 28px;
  overflow: hidden;
  border: 3px solid rgba(224,177,90,.55);
  box-shadow: 0 32px 90px rgba(78, 51, 18, .22), 0 0 60px rgba(168, 63, 63, .12);
  background: #fff;
  position: relative;
}

.arch-photo::after {
  content: "";
  position: absolute;
  inset: 13px;
  border: 1px solid rgba(255,255,255,.6);
  border-radius: inherit;
  pointer-events: none;
}

.arch-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RECEPTION */
.reception {
  background: var(--parchment);
}

.date-card {
  max-width: 620px;
  margin: 0 auto 38px;
  padding: 36px 24px;
  background: var(--white-glass);
  border: 1px solid var(--border-gold);
  border-radius: 32px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.main-time {
  font-size: 42px;
  color: var(--olive);
  margin-bottom: 22px;
}

.date-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  text-transform: uppercase;
  color: var(--olive);
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: .08em;
}

.date-row strong {
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(60px, 11vw, 92px);
  font-weight: 600;
  line-height: 1;
  border-left: 2px solid rgba(114,118,74,.5);
  border-right: 2px solid rgba(114,118,74,.5);
  padding: 0 26px;
}

.year {
  font-size: 30px;
  color: var(--olive);
  margin: 20px 0;
}

.time-box {
  display: flex;
  justify-content: center;
  gap: 46px;
}

.time-box div {
  display: grid;
  gap: 6px;
}

.time-box small {
  font-family: var(--sans);
  text-transform: uppercase;
  color: var(--olive);
}

.time-box b {
  color: var(--gold);
  font-size: 24px;
}

.count-title {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: 18px;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 13px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.countdown div {
  min-width: 86px;
  padding: 18px 12px 14px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.85), rgba(224,177,90,.18));
  border: 1px solid var(--border-gold);
  box-shadow: 0 14px 32px rgba(189,122,50,.14);
}

.countdown span {
  display: block;
  color: var(--gold);
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
}

.countdown small {
  font-family: var(--sans);
  color: var(--olive);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: .1em;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  background: var(--gold);
  color: white;
  padding: 15px 28px;
  font-family: var(--sans);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(135,83,23,.24);
  transition: transform .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--gold-dark);
}

/* SCHEDULE */
.timeline {
  max-width: 620px;
  margin: 0 auto;
  display: grid;
  gap: 28px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 95px 26px 1fr;
  gap: 18px;
  text-align: left;
  align-items: center;
}

.timeline-item time {
  color: var(--gold);
  font-weight: 700;
}

.timeline-item span {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(189,122,50,.12);
}

.timeline-item p {
  color: var(--olive);
  font-size: 24px;
}

/* VENUE */
.venue {
  background: var(--parchment);
}

.venue-card {
  max-width: 650px;
  margin: 0 auto;
  padding: 28px;
  border-radius: 30px;
  background: var(--white-glass);
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow);
}

.venue-card h3 {
  color: var(--gold-dark);
  font-size: 32px;
  margin-bottom: 22px;
}

.venue-card iframe {
  width: 100%;
  height: 360px;
  border: 0;
  border-radius: 22px;
  margin-bottom: 24px;
}

/* FORMS */
.form-card {
  max-width: 650px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: 28px;
  background: var(--white-glass);
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  padding: 15px 18px;
  background: rgba(255,255,255,.78);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  outline: none;
}

textarea {
  min-height: 110px;
}

.wishes {
  max-width: 650px;
  margin: 28px auto 0;
}

.wish {
  text-align: left;
  background: rgba(255,255,255,.64);
  border: 1px solid var(--border-gold);
  border-radius: 18px;
  padding: 16px 20px;
  margin: 12px 0;
}

/* DUA */
.dua-section {
  background: linear-gradient(180deg, #fff7e9, var(--parchment));
}

.dua-arabic {
  direction: rtl;
  color: var(--gold);
  font-size: clamp(30px, 6vw, 48px);
  line-height: 1.8;
  margin-bottom: 18px;
}

.dua-english {
  max-width: 640px;
  margin: 0 auto;
  color: var(--olive);
  font-size: 22px;
  font-style: italic;
}

/* FOOTER */
.footer {
  background: linear-gradient(180deg, #2d2116, #130d08);
  color: rgba(255,255,255,.75);
}

.footer h2 {
  font-family: var(--script);
  color: var(--gold-light);
  font-size: clamp(58px, 9vw, 100px);
  font-weight: 400;
  margin-bottom: 14px;
}

/* MUSIC */
.music-btn {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border: 2px solid rgba(255,255,255,.7);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #fff 0 10%, var(--gold-light) 11% 22%, var(--gold) 23% 100%);
  color: white;
  font-size: 23px;
  box-shadow: 0 14px 34px rgba(0,0,0,.2);
  cursor: pointer;
  display: none;
}

.music-btn.show {
  display: grid;
  place-items: center;
}

.music-btn.playing {
  animation: spin 4s linear infinite;
}

/* FLOATING PETALS */
.floating-petal,
.petal {
  position: fixed;
  top: -10vh;
  z-index: 20;
  pointer-events: none;
  color: rgba(189,122,50,.35);
  animation: petalFall 14s linear infinite;
}

.floating-petal:nth-of-type(1) { left: 8%; animation-delay: 0s; }
.floating-petal:nth-of-type(2) { left: 25%; animation-delay: 3s; }
.floating-petal:nth-of-type(3) { left: 50%; animation-delay: 7s; }
.floating-petal:nth-of-type(4) { left: 72%; animation-delay: 2s; }
.floating-petal:nth-of-type(5) { left: 88%; animation-delay: 5s; }

/* ANIMATIONS */
@keyframes welcomeIn {
  from { opacity: 0; transform: translateX(-25px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes floatDecor {
  0%,100% {
    transform:
      perspective(1000px)
      translateY(var(--parallaxY, 0px))
      rotate(0deg)
      rotateX(var(--tiltX, 0deg))
      rotateY(var(--tiltY, 0deg));
  }
  50% {
    transform:
      perspective(1000px)
      translateY(calc(-16px + var(--parallaxY, 0px)))
      rotate(8deg)
      rotateX(var(--tiltX, 0deg))
      rotateY(var(--tiltY, 0deg));
  }
}

@keyframes petalFall {
  0% { transform: translateY(-12vh) rotate(0deg); opacity: 0; }
  12% { opacity: .8; }
  100% { transform: translateY(115vh) rotate(300deg); opacity: 0; }
}

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

/* MOBILE */
@media (max-width:680px){

  .welcome-screen{
      justify-content:center;
      align-items:center;
      padding:20px;
  }

  .welcome-content{
      width:100%;
      max-width:380px;
      text-align:center;
  }

}

  .welcome-content {
    padding-left: 0;
    max-width: 300px;
  }

  .welcome-content h1 {
    font-size: 44px;
  }

  .open-btn {
    padding: 15px 30px;
    font-size: 17px;
  }

  .date-row {
    gap: 10px;
  }

  .date-row strong {
    padding: 0 14px;
  }

  .time-box {
    gap: 28px;
  }

  .timeline-item {
    grid-template-columns: 80px 22px 1fr;
  }

  .timeline-item p {
    font-size: 19px;
  }

  .venue-card {
    padding: 18px;
  }

  .venue-card iframe {
    height: 280px;
  } 

  .section {
    padding: 64px 20px;
  }


.initial {
  font-size: 1.15em;
  color: inherit;
}

.couple-names {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 25px 0;
  width: 100%;
}

.couple-names h1 {
  font-family: "Great Vibes", "Alex Brush", cursive;
  font-size: clamp(72px, 12vw, 110px);
  font-weight: 400;
  color: var(--gold);
  line-height: 1.05;
  margin: 0;
}

/* Weds only */
.couple-names .weds {
  font-family: "Great Vibes", "Alex Brush", cursive;
  font-size: clamp(36px, 6vw, 52px);
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin: 10px 0;
}

/* Initial letter */
.couple-names .initial {
  display: inline;
  font-family: inherit;
  font-size: 1.08em;
  color: inherit;
  line-height: inherit;
  vertical-align: baseline;
}

.couple-names span {
  font-family: "Great Vibes", "Alex Brush", cursive;
  font-size: clamp(36px, 6vw, 52px);
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin: 10px 0;
}

.welcome-dua,
.welcome-line,
.welcome-date{
    width:100%;
    text-align:center;
}

/* =========================================================
   PREMIUM WEDDING LANDING V3
   ========================================================= */
.welcome-screen{
  position:fixed;
  inset:0;
  z-index:9999;
  display:block;
  overflow-y:auto;
  overflow-x:hidden;
  padding:0;
  background:
    radial-gradient(circle at 50% 20%, rgba(255,255,255,.98), transparent 31%),
    radial-gradient(circle at 12% 72%, rgba(236,189,117,.20), transparent 26%),
    radial-gradient(circle at 90% 72%, rgba(236,189,117,.18), transparent 28%),
    linear-gradient(180deg,#fff9ee 0%,#fffaf3 48%,#f8ead1 100%);
  transition:opacity .9s ease, visibility .9s ease, transform .9s ease;
}
.welcome-screen::before,
.welcome-screen::after{
  content:"";
  position:absolute;
  width:330px;
  height:330px;
  border:1px solid rgba(190,128,51,.11);
  border-radius:48% 52% 45% 55%;
  transform:rotate(28deg);
  pointer-events:none;
}
.welcome-screen::before{top:-170px;left:-150px}
.welcome-screen::after{top:-170px;right:-150px}
.welcome-screen.hide{
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transform:scale(1.025);
}
.premium-landing{
  position:relative;
  z-index:2;
  width:min(100%,1280px);
  min-height:100vh;
  margin:0 auto;
  padding:42px 58px 30px;
  text-align:center;
  animation:premiumReveal 1.1s ease both;
}
.welcome-dua{
  margin:0 0 18px;
  color:#5d3b18;
  font-size:clamp(27px,3vw,45px);
  line-height:1.5;
}
.welcome-line{
  margin:0;
  color:#56391e;
  font-family:var(--serif);
  font-size:clamp(15px,1.5vw,22px);
  font-weight:600;
  letter-spacing:.15em;
  line-height:1.55;
  text-transform:uppercase;
}
.landing-main{
  width:min(100%,1060px);
  margin:22px auto -42px;
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  align-items:center;
  gap:34px;
}
.landing-portrait-wrap{
  display:grid;
  place-items:center;
}
.landing-arch{
  position:relative;
  width:min(100%,430px);
  aspect-ratio:4/5.1;
  overflow:hidden;
  border:2px solid rgba(202,137,54,.68);
  border-radius:52% 52% 8% 8% / 34% 34% 8% 8%;
  background:#f2d9a9;
  box-shadow:0 28px 65px rgba(119,73,20,.19), inset 0 0 0 8px rgba(255,255,255,.35);
}
.landing-arch::after{
  content:"";
  position:absolute;
  inset:10px;
  border:1px solid rgba(255,255,255,.62);
  border-radius:inherit;
  pointer-events:none;
}
.landing-arch img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  filter:saturate(.88) sepia(.08) brightness(1.04);
}
.landing-names{
  min-width:0;
  padding-bottom:40px;
}
.landing-names h1{
  margin:0;
  color:#9a5d19;
  font-family:var(--script);
  font-size:clamp(92px,11vw,160px);
  font-weight:400;
  line-height:.72;
  text-shadow:0 8px 28px rgba(177,108,30,.10);
}
.landing-weds{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:20px;
  margin:32px auto 38px;
  width:min(100%,480px);
}
.landing-weds span{
  height:1px;
  flex:1;
  background:linear-gradient(90deg,transparent,#d79a4c);
}
.landing-weds span:last-child{
  background:linear-gradient(90deg,#d79a4c,transparent);
}
.landing-weds em{
  color:#c88634;
  font-family:var(--script);
  font-size:clamp(36px,4vw,58px);
  font-style:normal;
  line-height:1;
}
.landing-date-card{
  position:relative;
  z-index:4;
  width:min(100%,560px);
  margin:0 auto;
  padding:34px 48px 30px;
  border:1px solid rgba(190,128,51,.32);
  border-radius:120px 120px 28px 28px;
  background:rgba(255,250,240,.86);
  box-shadow:0 20px 55px rgba(111,70,22,.13), inset 0 0 30px rgba(255,255,255,.78);
  backdrop-filter:blur(12px);
}
.calendar-mark{
  color:#bd7a32;
  font-size:27px;
  margin-bottom:10px;
}
.landing-date-card .welcome-date{
  margin:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  color:#5d3b18;
}
.date-big{
  font-family:var(--serif);
  font-size:clamp(56px,10vw,88px);
  font-weight:600;
  line-height:1;
  color:var(--gold);
  letter-spacing:0;
  text-transform:none;
}
.date-month{
  margin-top:6px;
  font-family:var(--serif);
  font-size:clamp(17px,2vw,22px);
  font-weight:600;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.landing-date-card small{
  display:block;
  margin-top:5px;
  color:#6c4928;
  font-family:var(--serif);
  font-size:14px;
  letter-spacing:.2em;
  text-transform:uppercase;
}
.ornament-line{
  display:flex;
  align-items:center;
  gap:10px;
  margin:18px 0;
  color:#d39a50;
}
.ornament-line::before,.ornament-line::after{
  content:"";
  height:1px;
  flex:1;
  background:linear-gradient(90deg,transparent,rgba(190,128,51,.45));
}
.ornament-line::after{background:linear-gradient(90deg,rgba(190,128,51,.45),transparent)}
.landing-date-card blockquote{
  color:#604226;
  font-size:20px;
  font-style:normal;
}
.quran-ref{
  margin:2px 0 14px;
  color:#79593b;
  font-size:16px;
}
.open-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:13px;
  margin-top:2px;
  padding:16px 34px;
  border:1px solid rgba(255,255,255,.5);
  border-radius:999px;
  background:linear-gradient(135deg,#c17b2d,#dfa956);
  color:#fff;
  font-family:var(--serif);
  font-size:17px;
  font-weight:600;
  letter-spacing:.11em;
  text-transform:uppercase;
  box-shadow:0 15px 34px rgba(150,91,24,.27);
}
.open-btn span{font-size:15px;color:var(--rose)}
.landing-nav{
  width:min(100%,900px);
  margin:24px auto 0;
  padding:16px 20px;
  display:grid;
  grid-template-columns:repeat(5,1fr);
  border:1px solid rgba(190,128,51,.28);
  border-radius:26px;
  background:rgba(255,250,240,.76);
  box-shadow:0 15px 42px rgba(100,62,19,.11);
  backdrop-filter:blur(10px);
}
.landing-nav a{
  min-width:0;
  padding:3px 12px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:7px;
  color:#62401f;
  text-decoration:none;
  border-right:1px solid rgba(190,128,51,.22);
}
.landing-nav a:last-child{border-right:0}
.landing-nav b{
  color:#b9792e;
  font-size:27px;
  font-weight:400;
  line-height:1;
}
.landing-nav span{
  font-family:var(--serif);
  font-size:12px;
  letter-spacing:.11em;
  white-space:nowrap;
  text-transform:uppercase;
}
.landing-blessing{
  margin:24px auto 0;
  color:#654526;
  font-size:18px;
  line-height:1.5;
}
.landing-heart{display:block;margin-top:8px;color:var(--rose)}
.lantern{
  position:absolute;
  z-index:3;
  top:92px;
  width:72px;
  height:112px;
  display:grid;
  place-items:center;
  color:#bc7b31;
  border:2px solid rgba(188,123,49,.45);
  border-radius:35px 35px 18px 18px;
  background:radial-gradient(circle,rgba(255,226,145,.95),rgba(224,164,72,.18) 48%,transparent 70%);
  box-shadow:0 0 32px rgba(236,174,74,.35);
  font-size:28px;
  animation:lanternFloat 5s ease-in-out infinite;
}
.lantern::before{
  content:"";
  position:absolute;
  top:-94px;
  width:1px;
  height:94px;
  background:rgba(181,116,39,.5);
}
.lantern span{position:absolute;bottom:15px;font-size:13px}
.lantern-left{left:7%}
.lantern-right{right:7%;animation-delay:1.2s}
.landing-pattern{
  position:absolute;
  bottom:-90px;
  width:390px;
  height:390px;
  opacity:.12;
  border:1px solid #bd7a32;
  border-radius:50%;
  pointer-events:none;
}
.landing-pattern::before,.landing-pattern::after{
  content:"";
  position:absolute;
  inset:50px;
  border:1px solid #bd7a32;
  transform:rotate(45deg);
}
.landing-pattern-left{left:-210px}
.landing-pattern-right{right:-210px}
@keyframes premiumReveal{
  from{opacity:0;transform:translateY(18px)}
  to{opacity:1;transform:translateY(0)}
}
@keyframes lanternFloat{
  0%,100%{transform:translateY(0) rotate(-1deg)}
  50%{transform:translateY(8px) rotate(1deg)}
}

@media(max-width:680px){
  .premium-landing{
    min-height:100svh;
    padding:24px 14px 24px;
  }
  .welcome-dua{
    font-size:25px;
    margin-bottom:10px;
  }
  .welcome-line{
    font-size:12px;
    letter-spacing:.14em;
  }
  .lantern{
    top:76px;
    width:38px;
    height:63px;
    border-radius:20px 20px 10px 10px;
    font-size:17px;
  }
  .lantern::before{top:-76px;height:76px}
  .lantern span{bottom:7px;font-size:8px}
  .lantern-left{left:6px}
  .lantern-right{right:6px}
  .landing-main{
    display:block;
    margin:20px auto -18px;
  }
  .landing-portrait-wrap{
    position:relative;
    z-index:1;
  }
  .landing-arch{
    width:min(74vw,310px);
    aspect-ratio:4/5.15;
  }
  .landing-names{
    position:relative;
    z-index:2;
    margin-top:-28px;
    padding:0;
  }
  .landing-names h1{
    font-size:clamp(76px,25vw,112px);
    line-height:.68;
  }
  .landing-weds{
    width:82%;
    gap:12px;
    margin:23px auto 28px;
  }
  .landing-weds em{font-size:38px}
  .landing-date-card{
    width:calc(100% - 18px);
    padding:28px 20px 24px;
    border-radius:76px 76px 24px 24px;
  }
  .landing-date-card .welcome-date{
    font-size:20px;
    letter-spacing:.10em;
  }
  .landing-date-card blockquote{font-size:17px}
  .open-btn{
    padding:14px 23px;
    font-size:14px;
  }
  .landing-nav{
    width:calc(100% - 8px);
    overflow-x:auto;
    grid-template-columns:repeat(5,minmax(78px,1fr));
    padding:13px 8px;
    border-radius:21px;
    scrollbar-width:none;
  }
  .landing-nav::-webkit-scrollbar{display:none}
  .landing-nav a{padding:2px 8px}
  .landing-nav b{font-size:23px}
  .landing-nav span{font-size:9px}
  .landing-blessing{
    margin-top:20px;
    padding:0 16px;
    font-size:15px;
  }
  .landing-pattern{width:250px;height:250px}
}

/* =========================================================
   FINAL MOBILE LANDING FIX
   Salman & Ayesha
   ========================================================= */

@media screen and (max-width: 680px) {

    .welcome-screen {
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100dvh;
        min-height: 100dvh;

        overflow-y: auto;
        overflow-x: hidden;

        background:
            radial-gradient(
                circle at 50% 15%,
                rgba(255,255,255,.98),
                transparent 32%
            ),
            linear-gradient(
                180deg,
                #fffaf1 0%,
                #fff8ed 55%,
                #f8e8cc 100%
            );
    }


    .premium-landing {
        width: 100%;
        max-width: 430px;

        min-height: auto;

        margin: 0 auto;

        padding:
            20px
            14px
            28px;

        overflow: hidden;
    }


    /* =========================
       BISMILLAH
       ========================= */

    .welcome-dua {
        margin: 0 0 5px;

        font-size: 23px;
        line-height: 1.4;

        position: relative;
        z-index: 5;
    }


    .welcome-line {
        margin: 0;

        font-size: 10px;
        line-height: 1.6;

        letter-spacing: .16em;
    }


    /* =========================
       LANTERNS
       ========================= */

    .lantern {
        top: 68px;

        width: 34px;
        height: 56px;

        font-size: 14px;

        border-radius:
            18px
            18px
            9px
            9px;
    }


    .lantern::before {
        top: -70px;

        height: 70px;
    }


    .lantern-left {
        left: 5px;
    }


    .lantern-right {
        right: 5px;
    }


    /* =========================
       MAIN HERO
       ========================= */

    .landing-main {
        display: flex;

        flex-direction: column;

        align-items: center;

        width: 100%;

        margin:
            16px
            auto
            0;

        gap: 0;
    }


    /* =========================
       COUPLE PHOTO
       ========================= */

    .landing-portrait-wrap {
        width: 100%;

        display: flex;

        justify-content: center;

        position: relative;

        z-index: 1;
    }


    .landing-arch {
        width: 68vw;

        max-width: 275px;

        height: 340px;

        aspect-ratio: auto;

        border-radius:
            48% 48%
            7% 7% /
            30% 30%
            7% 7%;

        box-shadow:
            0 18px 45px
            rgba(119,73,20,.16);
    }


    .landing-arch img {
        width: 100%;
        height: 100%;

        object-fit: cover;

        object-position: center;
    }


    /* =========================
       NAMES
       ========================= */

    .landing-names {
        width: 100%;

        position: relative;

        z-index: 3;

        margin-top: 12px;

        padding: 0;
    }


    .landing-names h1 {
        margin: 0;

        font-family: var(--script);

        font-size: 72px;

        font-weight: 400;

        line-height: .82;

        color: #9a5d19;

        text-align: center;

        text-shadow:
            0 5px 18px
            rgba(177,108,30,.08);
    }


    .landing-weds {
        width: 74%;

        margin:
            18px
            auto
            20px;

        gap: 12px;
    }


    .landing-weds em {
        font-size: 35px;

        line-height: 1;
    }


    .landing-weds span {
        height: 1px;
    }


    /* =========================
       DATE CARD
       ========================= */

    .landing-date-card {
        width: calc(100% - 12px);

        margin:
            20px
            auto
            0;

        padding:
            28px
            18px
            22px;

        border-radius:
            65px
            65px
            22px
            22px;

        position: relative;

        z-index: 4;
    }


    .calendar-mark {
        margin-bottom: 8px;

        font-size: 22px;
    }


    .landing-date-card .welcome-date {
        font-size: 18px;

        line-height: 1.3;

        letter-spacing: .11em;
    }


    .landing-date-card small {
        margin-top: 5px;

        font-size: 11px;

        letter-spacing: .18em;
    }


    .ornament-line {
        margin:
            15px
            0;
    }


    .landing-date-card blockquote {
        font-size: 16px;

        line-height: 1.4;
    }


    .quran-ref {
        margin:
            2px
            0
            13px;

        font-size: 13px;
    }


    /* =========================
       OPEN BUTTON
       ========================= */

    .open-btn {
        min-width: 210px;

        margin-top: 2px;

        padding:
            13px
            22px;

        font-size: 12px;

        letter-spacing: .10em;
    }


    .open-btn span {
        font-size: 12px;
    }


    /* =========================
       NAVIGATION
       ========================= */

    .landing-nav {
        width: calc(100% - 8px);

        margin:
            18px
            auto
            0;

        padding:
            12px
            4px;

        display: grid;

        grid-template-columns:
            repeat(5, 1fr);

        overflow: visible;

        border-radius: 20px;
    }


    .landing-nav a {
        min-width: 0;

        padding:
            3px
            2px;

        gap: 5px;
    }


    .landing-nav b {
        font-size: 20px;
    }


    .landing-nav span {
        width: 100%;

        overflow: hidden;

        font-size: 7px;

        letter-spacing: .04em;

        text-align: center;

        white-space: nowrap;
    }


    /* =========================
       BLESSING
       ========================= */

    .landing-blessing {
        margin:
            18px
            auto
            0;

        padding:
            0
            12px;

        font-size: 13px;

        line-height: 1.5;
    }


    .landing-heart {
        margin-top: 7px;

        font-size: 12px;
    }


    /* =========================
       PATTERN
       ========================= */

    .landing-pattern {
        width: 220px;
        height: 220px;

        opacity: .08;
    }


    .landing-pattern-left {
        left: -150px;
    }


    .landing-pattern-right {
        right: -150px;
    }

}


/* =========================================================
   EXTRA SMALL PHONE
   ========================================================= */

@media screen and (max-width: 380px) {

    .premium-landing {
        padding-left: 10px;
        padding-right: 10px;
    }


    .landing-arch {
        width: 65vw;

        max-width: 245px;

        height: 310px;
    }


    .landing-names h1 {
        font-size: 64px;
    }


    .landing-weds {
        margin:
            15px
            auto
            17px;
    }


    .landing-weds em {
        font-size: 31px;
    }


    .landing-date-card .welcome-date {
        font-size: 16px;
    }


    .landing-nav span {
        font-size: 6.5px;
    }
}

/* =========================
   APPLE LIQUID GLASS SYSTEM
   ========================= */

/* ---- glass buttons (pill controls) ---- */
.open-btn,
.btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, .6);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .35), rgba(255, 255, 255, 0) 45%),
    linear-gradient(135deg, rgba(223, 169, 86, .78), rgba(150, 91, 24, .68));
  backdrop-filter: blur(20px) saturate(190%);
  -webkit-backdrop-filter: blur(20px) saturate(190%);
  box-shadow:
    0 14px 34px rgba(120, 74, 20, .28),
    inset 0 1.5px 1px rgba(255, 255, 255, .8),
    inset 0 -10px 16px rgba(120, 74, 20, .22),
    inset 0 0 0 1px rgba(255, 255, 255, .12);
  text-shadow: 0 1px 3px rgba(90, 55, 12, .35);
  transition: transform .5s cubic-bezier(.16, 1.4, .3, 1), box-shadow .4s ease, background .4s ease;
}

/* top specular highlight, like light skimming curved glass */
.open-btn::before,
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(120% 100% at 28% -10%, rgba(255, 255, 255, .65), transparent 55%);
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 1;
}

/* moving sheen sweep on hover, mimics refraction shift */
.open-btn::after,
.btn::after {
  content: "";
  position: absolute;
  top: -60%;
  left: -35%;
  width: 35%;
  height: 220%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .6), transparent);
  transform: rotate(20deg);
  transition: left .8s ease;
  pointer-events: none;
  z-index: 1;
}

.open-btn:hover,
.btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 20px 44px rgba(120, 74, 20, .34),
    inset 0 1.5px 1px rgba(255, 255, 255, .9),
    inset 0 -10px 18px rgba(120, 74, 20, .26),
    inset 0 0 0 1px rgba(255, 255, 255, .18);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .42), rgba(255, 255, 255, 0) 45%),
    linear-gradient(135deg, rgba(223, 169, 86, .88), rgba(150, 91, 24, .78));
}

.open-btn:hover::after,
.btn:hover::after {
  left: 130%;
}

.open-btn:active,
.btn:active {
  transform: translateY(-1px) scale(.96);
  transition: transform .15s ease;
}

/* ---- glass panels: cards, nav, forms ---- */
.landing-date-card,
.date-card,
.venue-card,
.form-card,
.landing-nav {
  position: relative;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, .5), rgba(255, 255, 255, .14)),
    var(--white-glass);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, .55);
  box-shadow:
    0 20px 50px rgba(90, 58, 16, .16),
    inset 0 1px 1px rgba(255, 255, 255, .85),
    inset 0 -1px 12px rgba(120, 74, 20, .05);
  transition: box-shadow .4s ease, transform .4s ease;
}

.landing-date-card::before,
.date-card::before,
.venue-card::before,
.form-card::before,
.landing-nav::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(110% 70% at 18% -10%, rgba(255, 255, 255, .55), transparent 60%);
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* keep inner content above the specular overlay */
.landing-date-card > *,
.date-card > *,
.venue-card > *,
.form-card > *,
.landing-nav > * {
  position: relative;
  z-index: 1;
}

/* =========================
   IMMERSIVE 3D EXPERIENCE
   ========================= */

/* ---- cinematic scroll reveal ---- */
.section:not(.hero) {
  opacity: 0;
  transform: translateY(56px) scale(.95) rotateX(6deg);
  transform-origin: center bottom;
  transition:
    opacity 1.1s cubic-bezier(.2, .7, .2, 1),
    transform 1.1s cubic-bezier(.2, .7, .2, 1);
  will-change: transform, opacity;
}

.section.in-view {
  opacity: 1;
  transform: translateY(0) scale(1) rotateX(0deg);
}

/* ---- 3D tilt photo cards ---- */
.hero-arch,
.arch-photo,
.landing-arch {
  transition: transform .6s cubic-bezier(.2, .7, .2, 1);
  will-change: transform;
}

.hero-arch.tilt-active,
.arch-photo.tilt-active,
.landing-arch.tilt-active {
  transition-duration: .15s;
}

.arch-photo,
.landing-arch {
  position: relative;
}

/* moving glare that follows the pointer, like light on glass */
.hero-arch::after,
.arch-photo::after,
.landing-arch::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at var(--gx, 50%) var(--gy, 50%), rgba(255, 255, 255, .6), transparent 55%);
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}

.tilt-active.hero-arch::after,
.tilt-active.arch-photo::after,
.tilt-active.landing-arch::after {
  opacity: 1;
}

/* ---- accessibility: respect reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  .section:not(.hero) {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-arch,
  .arch-photo,
  .landing-arch {
    transition: none;
  }
}

/* ---- rsvp feedback banner ---- */
.rsvp-feedback {
  margin-top: 20px;
  padding: 16px 20px;
  border-radius: 16px;
  background: rgba(189, 122, 50, .08);
  border: 1px solid var(--border-gold);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.5;
  text-align: left;
  animation: welcomeIn .4s ease both;
}

.feedback-success {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feedback-success span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-size: 14px;
  font-weight: bold;
}

/* ---- 3D Mobile GPU & Hardware Acceleration ---- */
.hero-arch,
.arch-photo,
.landing-arch,
.families-card,
.date-card,
.venue-card {
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  touch-action: manipulation;
}

.hero-arch-inner,
.arch-photo img,
.landing-portrait-wrap img {
  transform: translateZ(16px);
  transform-style: preserve-3d;
}


