@font-face {
  font-family: "Mina Miremad";
  src: url("../fonts/Miremad.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Wedding Script";
  src: url("../fonts/english-font.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --ivory: #fbf7ef;
  --paper: #fffdf8;
  --wine: #681f2b;
  --wine-deep: #3e111a;
  --wine-soft: #8b3947;
  --rose: #b76c73;
  --blush: #ead8d1;
  --taupe: #a99c88;
  --sage: #647160;
  --gold: #bd9651;
  --gold-soft: #dcc38f;
  --ink: #493c38;
  --muted: #7d6f69;
  --line: rgba(104, 31, 43, .17);
  --shadow: 0 25px 70px rgba(68, 33, 29, .14);
  --fa: Tahoma, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--fa);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}
body.intro-locked { overflow: hidden; }
button, input, textarea, select { font: inherit; }
img { max-width: 100%; }
a { color: inherit; }

/* Opening envelope */
.wedding-intro {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  background: #1c090d;
  cursor: pointer;
  transition: opacity .9s ease, visibility .9s ease;
}
.intro-backdrop {
  position: absolute;
  inset: -4%;
  background-position: center;
  background-size: cover;
  filter: blur(24px) brightness(.33) saturate(.8);
  transform: scale(1.08);
}
.intro-stage {
  position: relative;
  width: min(100vw, 45svh);
  height: 100svh;
  max-height: 100vh;
  overflow: hidden;
  background: var(--wine-deep);
  box-shadow: 0 0 90px rgba(0, 0, 0, .58);
}
.intro-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.intro-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(28, 4, 9, .18), transparent 25%, transparent 72%, rgba(26, 5, 10, .38)),
    radial-gradient(circle at center, transparent 55%, rgba(20, 4, 8, .18));
}
.intro-hint {
  position: absolute;
  right: 50%;
  bottom: max(5.5%, env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  gap: .65rem;
  width: max-content;
  max-width: calc(100% - 2rem);
  padding: .75rem 1.15rem;
  color: #fff9ee;
  background: rgba(49, 12, 20, .72);
  border: 1px solid rgba(224, 196, 139, .68);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
  font-size: clamp(.88rem, 3.4vw, 1rem);
  line-height: 1.7;
  transform: translateX(50%);
  backdrop-filter: blur(8px);
  transition: opacity .45s ease, transform .45s ease;
}
.intro-hint i {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  background: var(--gold-soft);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(220, 195, 143, .45);
  animation: hintPulse 1.8s infinite;
}
.wedding-intro.playing .intro-hint {
  opacity: 0;
  transform: translate(50%, 12px);
  pointer-events: none;
}
.intro-personal {
  position: absolute;
  top: clamp(1.35rem, 4.5svh, 3.2rem);
  left: 50%;
  display: flex;
  width: min(calc(100% - 2.5rem), 390px);
  flex-direction: column;
  align-items: center;
  margin: 0;
  padding: .1rem .75rem .35rem;
  background: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
  color: #fff8eb;
  text-align: center;
  text-shadow: 0 1px 1px rgba(31, 5, 11, .46);
  opacity: 1;
  transform: translate(-50%, 0);
  transition: opacity .4s ease, transform .4s ease;
  pointer-events: none;
}
.intro-personal span {
  display: block;
  padding: .12em 0 .18em;
  background: none !important;
  border: 0 !important;
  box-shadow: none !important;
  font-family: "Mina Miremad", var(--fa);
  font-size: clamp(1.25rem, 5.2vw, 1.7rem);
  line-height: 1.65;
}
.intro-personal strong {
  display: block;
  max-width: 100%;
  margin-top: .18rem;
  padding: .12em .2em .2em;
  background: none !important;
  border: 0 !important;
  box-shadow: none !important;
  color: #d8ba78;
  font-family: "Mina Miremad", var(--fa);
  font-size: clamp(1.65rem, 6.5vw, 2.35rem);
  font-weight: 400;
  line-height: 1.6;
  overflow-wrap: anywhere;
}
.wedding-intro.playing .intro-personal {
  opacity: 0;
  transform: translate(-50%, -10px);
}
.wedding-intro.finishing { opacity: 0; pointer-events: none; }
.wedding-intro.done { visibility: hidden; }

/* Shared motion and section language */
#invitation, .site-footer {
  width: 100%;
  opacity: 0;
  transition: opacity .8s ease;
}
body.entered #invitation,
body.entered .site-footer { opacity: 1; }
#invitation { background: var(--ivory); }
.section-pad {
  position: relative;
  padding: clamp(5.5rem, 11vw, 8.5rem) clamp(1.1rem, 6vw, 4rem);
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .85s cubic-bezier(.2, .7, .2, 1), transform .85s cubic-bezier(.2, .7, .2, 1);
  transition-delay: var(--delay, 0ms);
}
.reveal.visible { opacity: 1; transform: none; }
.section-heading {
  position: relative;
  z-index: 2;
  margin: 0 auto 2.7rem;
  text-align: center;
}
.section-heading > p,
.section-kicker {
  margin: 0 0 .4rem;
  color: var(--wine-soft);
  font-size: clamp(.78rem, 2.3vw, .9rem);
  line-height: 1.9;
}
.section-heading h2,
.message-card h2,
.venue-card h2 {
  margin: 0;
  padding: .12em 0 .2em;
  color: var(--wine);
  font-family: "Mina Miremad", var(--fa);
  font-size: clamp(2.5rem, 7vw, 4.25rem);
  font-weight: 400;
  line-height: 1.6;
}

/* Magazine-cover hero */
.hero {
  position: relative;
  display: grid;
  width: 100%;
  height: 100svh;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: var(--wine-deep);
}
.hero-media,
.hero-media img,
.hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media { z-index: -3; margin: 0; overflow: hidden; }
.hero-media img {
  object-fit: cover;
  object-position: 50% 50%;
  filter: saturate(.84) contrast(1.04);
  transform: none;
}
.hero-media.is-reference img {
  object-position: 50% 50%;
  transform: none;
}
.hero-media.is-reference .hero-shade {
  background:
    linear-gradient(180deg, rgba(35, 8, 13, .9) 0%, rgba(35, 8, 13, .7) 18%, rgba(31, 8, 12, .08) 39%, rgba(28, 8, 12, .22) 56%, rgba(26, 7, 11, .96) 100%),
    linear-gradient(90deg, rgba(35, 8, 12, .14), transparent 32%, transparent 68%, rgba(35, 8, 12, .14));
}
.hero-shade {
  background:
    linear-gradient(180deg, rgba(25, 8, 10, .38) 0%, rgba(32, 9, 13, .05) 28%, rgba(28, 8, 12, .18) 53%, rgba(26, 7, 11, .9) 100%),
    linear-gradient(90deg, rgba(35, 8, 12, .12), transparent 32%, transparent 68%, rgba(35, 8, 12, .12));
}
.hero-frame {
  display: none;
}
.hero-floral {
  position: absolute;
  z-index: -2;
  width: min(42vw, 290px);
  height: min(32vh, 245px);
  object-fit: cover;
  opacity: .48;
  filter: saturate(.72) sepia(.12);
  pointer-events: none;
}
.hero-floral-top {
  top: 0;
  left: 0;
  -webkit-mask-image: radial-gradient(ellipse at top left, #000 0 38%, transparent 73%);
  mask-image: radial-gradient(ellipse at top left, #000 0 38%, transparent 73%);
}
.hero-floral-bottom {
  right: 0;
  bottom: 0;
  transform: rotate(180deg);
  -webkit-mask-image: radial-gradient(ellipse at top left, #000 0 38%, transparent 73%);
  mask-image: radial-gradient(ellipse at top left, #000 0 38%, transparent 73%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(94%, 1040px);
  margin-top: auto;
  margin-bottom: clamp(7.5rem, 17vh, 11rem);
  text-align: center;
  text-shadow: 0 1px 2px rgba(20, 4, 8, .98), 0 4px 22px rgba(20, 4, 8, .88);
}
.hero-content::before {
  position: absolute;
  inset: -3rem -5rem;
  z-index: -1;
  background: radial-gradient(ellipse at center, rgba(27, 7, 11, .62) 0%, rgba(27, 7, 11, .35) 42%, transparent 74%);
  content: "";
  pointer-events: none;
}
.hero-kicker {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: .15em 0 .25em;
  color: #f2dfb7;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(.74rem, 2vw, .95rem);
  letter-spacing: .3em;
  line-height: 1.8;
}
.hero-content h1 {
  display: flex;
  width: 100%;
  min-width: 0;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: clamp(.25rem, 1.4vw, .9rem);
  margin: .1rem 0 0;
  padding: .3em .02em .16em;
  color: #fffdf9;
  font-family: "Wedding Script", "Brush Script MT", cursive;
  font-size: clamp(3rem, 8.6vw, 7.2rem);
  font-weight: 400;
  line-height: 1.08;
  white-space: nowrap;
  word-break: keep-all;
}
.hero-content h1 span { display: inline-block; flex: 0 0 auto; }
.hero-content h1 b {
  flex: 0 0 auto;
  color: var(--gold-soft);
  font-family: "Wedding Script", Georgia, serif;
  font-size: .48em;
  font-style: normal;
  font-weight: 400;
}
.hero-names-fa {
  margin: .25rem 0 .65rem;
  padding: .1em 0 .18em;
  color: #fffaf1;
  font-size: clamp(.84rem, 2.6vw, 1rem);
  line-height: 1.9;
}
.hero-date {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .85rem;
  color: #f4ead5;
  font-size: clamp(.76rem, 2.4vw, .93rem);
  line-height: 1.9;
  font-variant-numeric: tabular-nums;
  letter-spacing: .08em;
}
.hero-date > span { padding-block: .08em .15em; }
.hero-date i { width: 24px; height: 1px; background: var(--gold-soft); }
.scroll-cue {
  position: absolute;
  right: 50%;
  bottom: max(1.35rem, env(safe-area-inset-bottom));
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: #fff;
  font-size: clamp(.72rem, 2.5vw, .86rem);
  line-height: 1.7;
  text-decoration: none;
  text-shadow: 0 1px 2px rgba(20, 4, 8, .98), 0 3px 16px rgba(20, 4, 8, .92);
  filter: drop-shadow(0 2px 5px rgba(20, 4, 8, .48));
  transform: translateX(50%);
}
.scroll-cue > i {
  position: relative;
  display: block;
  width: 23px;
  height: 35px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 20px;
  background: rgba(38, 9, 13, .24);
  box-shadow: 0 4px 18px rgba(0, 0, 0, .2);
}
.scroll-cue > i b {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 3px;
  height: 7px;
  background: var(--gold-soft);
  border-radius: 4px;
  transform: translateX(-50%);
  animation: scrollDot 1.7s ease-in-out infinite;
}

/* Invitation card with the supplied floral painting */
.invitation-message {
  display: grid;
  min-height: 760px;
  place-items: center;
  overflow: hidden;
  background: var(--ivory);
}
.floral-ribbon {
  position: absolute;
  right: 0;
  left: 0;
  height: clamp(125px, 24vw, 210px);
  background: url("../img/wedding-floral-pattern.jpg") center 44% / cover;
  opacity: .34;
  filter: saturate(.78);
  pointer-events: none;
}
.floral-ribbon::after {
  position: absolute;
  inset: 0;
  content: "";
}
.floral-ribbon-top { top: 0; }
.floral-ribbon-top::after { background: linear-gradient(180deg, transparent 28%, var(--ivory)); }
.floral-ribbon-bottom { bottom: 0; transform: rotate(180deg); }
.floral-ribbon-bottom::after { background: linear-gradient(180deg, transparent 28%, var(--ivory)); }
.message-card {
  position: relative;
  z-index: 2;
  width: min(100%, 670px);
  padding: clamp(3.4rem, 9vw, 5.6rem) clamp(1.4rem, 7vw, 4.8rem);
  text-align: center;
  background: rgba(255, 253, 248, .9);
  border: 1px solid rgba(104, 31, 43, .16);
  border-radius: 220px 220px 28px 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(9px);
}
.message-card h2 {
  padding: .18em .08em .38em;
  line-height: 1.85;
  overflow: visible;
}
.message-card::before {
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(189, 150, 81, .28);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}
.message-monogram {
  display: flex;
  width: 88px;
  height: 88px;
  margin: 0 auto 1.2rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 9px 0 8px;
  color: var(--wine);
  background: var(--paper);
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 1rem;
  line-height: 1;
  box-shadow: 0 8px 25px rgba(80, 43, 34, .09);
}
.message-monogram span { display: block; flex: 0 0 auto; padding: 0; line-height: 1; }
.message-monogram .monogram-letter { color: var(--wine); font-size: 1.05rem; }
.message-monogram .monogram-amp {
  margin: 2px 0;
  color: var(--gold);
  font-family: "Wedding Script", Georgia, serif;
  font-size: 1.12rem;
  font-style: normal;
}
.ornament { display: block; margin: .4rem 0 1.2rem; color: var(--gold); letter-spacing: .18em; }
.invitation-copy {
  margin: 0 auto 1.2rem;
  color: #665650;
  font-size: clamp(1rem, 3.2vw, 1.12rem);
  line-height: 2.35;
}
.message-card > strong {
  display: block;
  color: var(--wine-soft);
  font-size: .9rem;
  font-weight: 500;
  line-height: 2;
}

/* Countdown */
.countdown-section {
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 18% 24%, rgba(189, 150, 81, .16), transparent 24%),
    radial-gradient(circle at 82% 76%, rgba(183, 108, 115, .13), transparent 27%),
    linear-gradient(rgba(77, 19, 30, .94), rgba(58, 13, 22, .97)),
    url("../img/wedding-floral-pattern.jpg") center / cover;
}
.countdown-section::before,
.countdown-section::after {
  position: absolute;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(220, 195, 143, .18);
  border-radius: 50%;
  content: "";
}
.countdown-section::before { top: -95px; right: -75px; }
.countdown-section::after { bottom: -110px; left: -55px; }
.countdown-card {
  position: relative;
  z-index: 2;
  width: min(100%, 780px);
  margin: auto;
  padding: clamp(2.6rem, 6vw, 4.3rem) clamp(.8rem, 5vw, 3rem) clamp(2.35rem, 5vw, 3.7rem);
  overflow: hidden;
  isolation: isolate;
  text-align: center;
  background:
    radial-gradient(circle at 50% -20%, rgba(255, 244, 216, .13), transparent 48%),
    rgba(42, 9, 16, .46);
  border: 1px solid rgba(231, 207, 158, .48);
  border-radius: 42px;
  box-shadow: 0 30px 80px rgba(25, 3, 8, .32), inset 0 0 0 7px rgba(255, 250, 239, .025);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.countdown-card::before {
  position: absolute;
  inset: 12px;
  z-index: -1;
  border: 1px solid rgba(220, 195, 143, .18);
  border-radius: 32px;
  content: "";
  pointer-events: none;
}
.countdown-card::after {
  position: absolute;
  top: -55%;
  left: -20%;
  z-index: -2;
  width: 42%;
  height: 210%;
  background: linear-gradient(90deg, transparent, rgba(255, 241, 207, .075), transparent);
  content: "";
  pointer-events: none;
  transform: rotate(18deg);
  animation: countdownShimmer 9s ease-in-out infinite;
}
.countdown-section .section-heading { position: relative; z-index: 2; margin-bottom: .2rem; }
.countdown-section .section-heading p {
  margin-bottom: .8rem;
  color: #e6cfa7;
  line-height: 2;
}
.countdown-section .section-heading h2 {
  margin-top: 3rem;
  padding: .24em .08em .42em;
  color: #fffaf0;
  line-height: 1.9;
  overflow: visible;
}
.countdown-vow {
  display: flex;
  width: min(74%, 390px);
  align-items: center;
  justify-content: center;
  gap: .75rem;
  margin: -.2rem auto .9rem;
  color: var(--gold-soft);
}
.countdown-vow span {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(220, 195, 143, .72));
}
.countdown-vow span:last-child { transform: scaleX(-1); }
.countdown-vow b {
  flex: 0 0 auto;
  font-family: Georgia, serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  animation: vowPulse 2.8s ease-in-out infinite;
}
.countdown {
  direction: ltr;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(.15rem, 1vw, .65rem);
  margin: 1rem auto 1.45rem;
}
.countdown-unit {
  display: grid;
  min-width: 0;
  flex: 0 1 118px;
  justify-items: center;
}
.countdown-dial {
  position: relative;
  display: grid;
  width: clamp(61px, 14vw, 112px);
  aspect-ratio: 1;
  place-items: center;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 250, 236, .16), transparent 25%),
    linear-gradient(145deg, rgba(119, 40, 53, .64), rgba(42, 9, 16, .7));
  border: 1px solid rgba(235, 210, 158, .38);
  border-radius: 50%;
  box-shadow: inset 0 0 24px rgba(255, 235, 193, .06), 0 13px 30px rgba(22, 2, 7, .28);
}
.countdown-dial::before {
  position: absolute;
  inset: -5px;
  padding: 2px;
  background: conic-gradient(from 30deg, transparent 0 64%, rgba(189, 150, 81, .18) 72%, #efd9a4 88%, transparent 96%);
  border-radius: 50%;
  content: "";
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: countdownOrbit 8s linear infinite;
  animation-delay: var(--orbit-delay);
}
.countdown-dial::after {
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(255, 244, 216, .1);
  border-radius: 50%;
  content: "";
}
.countdown-dial > i {
  position: absolute;
  inset: -5px;
  z-index: 3;
  border-radius: 50%;
  animation: countdownOrbit 8s linear infinite;
  animation-delay: var(--orbit-delay);
}
.countdown-dial > i::before {
  position: absolute;
  top: -2px;
  left: 50%;
  width: 7px;
  height: 7px;
  background: #f4dfa9;
  border: 2px solid rgba(73, 16, 27, .9);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(239, 217, 164, .12), 0 0 13px rgba(239, 217, 164, .7);
  content: "";
  transform: translateX(-50%);
}
.countdown strong {
  position: relative;
  z-index: 2;
  display: block;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 6.6vw, 3.55rem);
  font-weight: 400;
  line-height: 1.15;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 4px 18px rgba(12, 1, 4, .5);
}
.countdown strong.is-ticking { animation: numberBloom .48s cubic-bezier(.2, .75, .25, 1); }
.countdown-label {
  display: block;
  margin-top: .75rem;
  color: #ead8cd;
  font-size: .72rem;
  line-height: 1.8;
  direction: rtl;
}
.countdown-separator {
  flex: 0 0 auto;
  margin-bottom: 2rem;
  color: rgba(220, 195, 143, .76);
  font-size: clamp(.42rem, 1.2vw, .68rem);
  font-weight: 400;
  animation: separatorTwinkle 2.8s ease-in-out infinite;
}
.countdown-card > time {
  display: inline-block;
  padding: .42rem 1.05rem .5rem;
  color: #f0dfc2;
  background: rgba(255, 250, 238, .055);
  border: 1px solid rgba(220, 195, 143, .2);
  border-radius: 999px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: .82rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: .08em;
  line-height: 1.9;
}

/* Scroll-driven wedding timeline */
.program-section {
  overflow: hidden;
  background: linear-gradient(180deg, #efe8dd 0%, #efe8dd 78%, #f7f1e8 94%, #fbf7ef 100%);
}
.program-paper {
  position: relative;
  width: min(100%, 790px);
  margin: auto;
  padding: clamp(3.2rem, 8vw, 5rem) clamp(.65rem, 5vw, 3rem);
  overflow: hidden;
  background: rgba(255, 253, 248, .96);
  border: 1px solid rgba(109, 83, 64, .19);
  border-radius: 38px;
  box-shadow: 0 25px 65px rgba(74, 53, 38, .13);
}
.program-paper::before,
.program-paper::after {
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(42px, 10vw, 84px);
  background: url("../img/wedding-floral-pattern.jpg") center / cover;
  opacity: .14;
  content: "";
  pointer-events: none;
}
.program-paper::before {
  right: 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000);
  mask-image: linear-gradient(90deg, transparent, #000);
}
.program-paper::after {
  left: 0;
  transform: scaleX(-1);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000);
  mask-image: linear-gradient(90deg, transparent, #000);
}
.line-bow {
  display: block;
  width: clamp(92px, 10vw, 116px);
  margin: 0 auto .55rem;
  color: var(--wine-soft);
  filter: drop-shadow(0 3px 6px rgba(77, 17, 29, .08));
}
.line-bow img {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}
.line-bow path {
  vector-effect: non-scaling-stroke;
}
.bow-loop,
.bow-fold,
.bow-tail {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
  stroke-dasharray: 220;
  animation: bow-line-draw 1.25s cubic-bezier(.23,.72,.24,1) both;
}
.bow-fold {
  opacity: .72;
  animation-delay: .14s;
}
.bow-tail {
  stroke: var(--gold-deep);
  animation-delay: .22s;
}
.bow-knot {
  fill: #f7efe2;
  stroke: var(--gold-deep);
  stroke-width: 1.6;
  transform-origin: center;
  animation: bow-knot-in .62s cubic-bezier(.2,.85,.26,1.25) .22s both;
}
@keyframes bow-line-draw {
  from { opacity: 0; stroke-dashoffset: 220; }
  to { opacity: 1; stroke-dashoffset: 0; }
}
@keyframes bow-knot-in {
  from { opacity: 0; transform: scale(.5) rotate(-10deg); }
  to { opacity: 1; transform: scale(1) rotate(0); }
}
.program-timeline {
  --timeline-y: 0%;
  position: relative;
  z-index: 2;
  width: min(100%, 650px);
  margin: auto;
  padding: .2rem 1rem;
}
.timeline-track {
  position: absolute;
  top: 48px;
  bottom: 48px;
  left: calc(1rem + 88px);
  width: 2px;
  background: #ded1c2;
  border-radius: 999px;
}
.timeline-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--timeline-y);
  background: linear-gradient(var(--gold), var(--wine-soft));
  border-radius: inherit;
}
.timeline-runner {
  position: absolute;
  top: var(--timeline-y);
  left: 50%;
  z-index: 4;
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  color: #fff;
  background: var(--wine);
  border: 2px solid var(--paper);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(189, 150, 81, .36), 0 5px 14px rgba(72, 31, 31, .22);
  font-size: .65rem;
  font-style: normal;
  transform: translate(-50%, -50%);
  transition: top .12s linear;
}
.program-item {
  direction: ltr;
  display: grid;
  grid-template-columns: 70px 36px minmax(0, 1fr);
  align-items: center;
  min-height: 130px;
  gap: 0;
}
.program-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  justify-self: center;
  color: #887a6d;
  background: #fffdf8;
  border: 1px solid #d8cbbd;
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(72, 49, 34, .07);
  transition: color .45s ease, background .45s ease, border-color .45s ease, transform .45s ease;
}
.program-icon svg { width: 29px; height: 29px; }
.program-marker {
  position: relative;
  z-index: 3;
  display: block;
  width: 11px;
  height: 11px;
  justify-self: center;
  background: var(--paper);
  border: 2px solid #c7b7a5;
  border-radius: 50%;
  box-shadow: 0 0 0 5px var(--paper);
  transition: background .35s ease, border-color .35s ease, transform .35s ease;
}
.program-copy {
  direction: rtl;
  min-width: 0;
  padding: 1rem 1.15rem;
  text-align: right;
}
.program-copy time {
  display: inline-block;
  color: var(--wine-soft);
  font-family: Georgia, var(--fa);
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.8;
}
.program-copy h3 {
  margin: .05rem 0 .25rem;
  padding: .08em 0 .14em;
  color: #574843;
  font-family: "Mina Miremad", var(--fa);
  font-size: clamp(1.65rem, 4.4vw, 2.15rem);
  font-weight: 400;
  line-height: 1.6;
}
.program-copy p { margin: 0; color: var(--muted); font-size: .8rem; line-height: 1.9; }
.program-item.passed .program-icon {
  color: #fff8ed;
  background: var(--wine);
  border-color: var(--wine);
  transform: scale(1.06);
}
.program-item.passed .program-marker {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.16);
}

/* Venue */
.venue-section {
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(rgba(251, 247, 239, .9), rgba(251, 247, 239, .97)),
    url("../img/wedding-floral-pattern.jpg") center / cover;
}
.venue-section::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: -1;
  height: clamp(120px, 18vw, 210px);
  background: linear-gradient(180deg, #fbf7ef 0%, rgba(251, 247, 239, .92) 38%, rgba(251, 247, 239, 0) 100%);
  content: "";
  pointer-events: none;
}
.venue-card {
  position: relative;
  width: min(100%, 690px);
  margin: auto;
  padding: clamp(2.4rem, 7vw, 4.2rem) clamp(1.1rem, 6vw, 3.4rem);
  text-align: center;
  background: rgba(255, 253, 248, .9);
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}
.venue-card h2 {
  max-width: 100%;
  margin-inline: auto;
  padding: .18em .08em .42em;
  font-size: clamp(2.25rem, 7vw, 4rem);
  line-height: 1.85;
  overflow: visible;
  overflow-wrap: anywhere;
}
.venue-pin {
  display: grid;
  width: 52px;
  height: 52px;
  margin: .7rem auto 1rem;
  place-items: center;
  color: #fff;
  background: var(--wine);
  border: 3px solid #ead7b0;
  border-radius: 50%;
  font-size: 1.4rem;
  box-shadow: 0 0 0 5px rgba(189, 150, 81, .14);
}
.venue-card address {
  max-width: 470px;
  margin: 1.35rem auto 1.6rem;
  color: var(--muted);
  font-size: .9rem;
  font-style: normal;
  line-height: 2;
}
.map-preview {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 6px solid #fff;
  border-radius: 22px;
  box-shadow: 0 15px 35px rgba(79, 49, 40, .12);
}
.map-preview iframe { display: block; width: 100%; height: 100%; pointer-events: none; border: 0; filter: sepia(.2) saturate(.65); }
.map-click-layer {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: .75rem;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(180deg, transparent 45%, rgba(61, 17, 26, .7));
}
.map-click-layer span {
  padding: .48rem .9rem;
  background: rgba(104, 31, 43, .9);
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 999px;
  font-size: .76rem;
  line-height: 1.7;
  backdrop-filter: blur(6px);
}
.neshan-route {
  display: flex;
  width: min(100%, 360px);
  align-items: center;
  gap: .85rem;
  margin: 1.3rem auto 0;
  padding: .75rem 1rem;
  color: #fff;
  text-align: right;
  text-decoration: none;
  background: linear-gradient(135deg, #7b2937, #571723);
  border: 1px solid rgba(189, 150, 81, .7);
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(76, 22, 33, .22);
  transition: transform .25s ease, box-shadow .25s ease;
}
.neshan-route:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(76, 22, 33, .27); }
.neshan-route svg { width: 30px; height: 30px; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: 1.45; }
.neshan-route span { display: flex; min-width: 0; flex-direction: column; }
.neshan-route b { font-size: .82rem; line-height: 1.7; }
.neshan-route small { color: rgba(255, 255, 255, .72); font-size: .68rem; line-height: 1.6; }
.neshan-route i { margin-right: auto; font-style: normal; }

/* Gallery */
.gallery-section { background: #f4ece5; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: .8rem;
  width: min(100%, 760px);
  margin: auto;
}
.gallery-card {
  grid-column: span 6;
  position: relative;
  aspect-ratio: 4 / 5;
  padding: 0;
  overflow: hidden;
  background: #d9cdc3;
  border: 6px solid #fffaf3;
  border-radius: 120px 120px 18px 18px;
  box-shadow: 0 16px 35px rgba(73, 48, 41, .12);
  cursor: zoom-in;
}
.gallery-card:nth-child(3n + 1) { grid-column: span 12; aspect-ratio: 7 / 5; border-radius: 24px; }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease, filter .5s ease; }
.gallery-card:hover img { transform: scale(1.035); filter: saturate(1.05); }
.empty-album {
  display: grid;
  min-height: 230px;
  width: min(100%, 620px);
  margin: auto;
  place-items: center;
  align-content: center;
  color: var(--muted);
  background: rgba(255, 253, 248, .55);
  border: 1px dashed rgba(104, 31, 43, .28);
  border-radius: 28px;
}
.empty-album span { color: var(--wine-soft); font-size: 2.4rem; }
.empty-album p { margin: .3rem 0 0; font-size: .9rem; text-align: center; }

/* Guestbook and RSVP */
.participation {
  overflow: hidden;
  background:
    linear-gradient(rgba(104, 31, 43, .9), rgba(69, 16, 26, .96)),
    url("../img/wedding-floral-pattern.jpg") center / cover;
}
.participation .section-heading p { color: #e4cda5; }
.participation .section-heading h2 { color: #fffaf0; }
.forms-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  width: min(100%, 760px);
  margin: auto;
}
.forms-layout > form:only-child { grid-column: 1 / -1; width: min(100%, 520px); margin: auto; }
.wedding-form {
  padding: clamp(1.3rem, 4vw, 2rem);
  background: rgba(255, 253, 248, .93);
  border: 1px solid rgba(231, 207, 158, .5);
  border-radius: 26px;
  box-shadow: 0 20px 48px rgba(30, 4, 10, .18);
  backdrop-filter: blur(8px);
}
.wedding-form h3 {
  margin: 0 0 1rem;
  padding: .1em 0 .18em;
  color: var(--wine);
  font-family: "Mina Miremad", var(--fa);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.55;
}
.wedding-form label,
.wedding-form legend { display: block; color: #675751; font-size: .82rem; line-height: 1.8; }
.wedding-form label { margin: .85rem 0; }
.wedding-form input,
.wedding-form textarea {
  width: 100%;
  margin-top: .4rem;
  padding: .72rem .2rem;
  color: #51433f;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(104, 31, 43, .24);
  border-radius: 0;
  outline: none;
}
.wedding-form textarea { resize: vertical; line-height: 1.9; }
.wedding-form input:focus,
.wedding-form textarea:focus { border-color: var(--wine-soft); }
.wedding-form fieldset { margin: 1rem 0; padding: 0; border: 0; }
.wedding-form .choice { display: inline-flex; align-items: center; gap: .4rem; margin: .65rem 0 0 .6rem; }
.wedding-form .choice input { width: auto; margin: 0; accent-color: var(--wine); }
.wedding-form button {
  margin-top: .8rem;
  padding: .75rem 1.45rem;
  color: #fff;
  background: var(--wine);
  border: 1px solid var(--wine);
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.wedding-form button:hover { background: var(--wine-deep); transform: translateY(-1px); }
.wedding-form button:disabled { opacity: .55; }
.form-result { min-height: 1.5rem; margin: .7rem 0 0; color: var(--wine); font-size: .78rem; line-height: 1.8; }
.guestbook-wall {
  position: relative;
  z-index: 2;
  width: min(100%, 760px);
  margin: 1.4rem auto 0;
  padding: 1.4rem 1rem 1rem;
  background: rgba(255, 250, 241, .18);
  border: 1px solid rgba(235, 214, 174, .36);
  border-radius: 28px;
  box-shadow: 0 18px 45px rgba(30, 4, 10, .14);
  backdrop-filter: blur(8px);
}
.guestbook-wall > header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  margin-bottom: 1rem;
  color: #f0d9ad;
  text-align: center;
}
.guestbook-wall header p { margin: 0; color: #e4cda5; font-size: .72rem; line-height: 1.8; }
.guestbook-wall header h3 {
  margin: 0;
  padding: .1em 0 .18em;
  color: #fffaf0;
  font-family: "Mina Miremad", var(--fa);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.55;
}
.guest-notes {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, calc((100% - .8rem) / 2));
  gap: .8rem;
  padding: .2rem .1rem .55rem;
  overflow-x: auto;
  scroll-snap-type: inline mandatory;
  scrollbar-color: rgba(232, 204, 151, .42) transparent;
  scrollbar-width: thin;
}
.guest-notes blockquote {
  position: relative;
  min-height: 132px;
  margin: 0;
  padding: 1.2rem;
  overflow: hidden;
  color: #65534d;
  background: rgba(255, 253, 248, .94);
  border-right: 3px solid var(--gold);
  border-radius: 18px 18px 18px 5px;
  scroll-snap-align: start;
}
.guest-notes p { margin: 0 0 .55rem; font-size: .86rem; line-height: 1.9; }
.guest-notes cite { color: var(--wine); font-size: .76rem; font-style: normal; }
.guestbook-empty {
  width: min(100%, 390px);
  margin: .2rem auto .5rem !important;
  padding: 1rem;
  color: #fff5e7;
  text-align: center;
  border: 1px dashed rgba(235, 214, 174, .4);
  border-radius: 16px;
}
.guest-note-new { animation: newNote 1.3s ease both; }

/* Footer and controls */
.site-footer {
  position: relative;
  padding: 3.8rem 1rem;
  overflow: hidden;
  color: #735f58;
  text-align: center;
  background:
    linear-gradient(rgba(251, 247, 239, .86), rgba(251, 247, 239, .95)),
    url("../img/wedding-floral-pattern.jpg") center / cover;
  border-top: 1px solid var(--line);
}
.footer-couple {
  display: flex;
  width: min(100%, 620px);
  align-items: center;
  justify-content: center;
  gap: clamp(.35rem, 1.8vw, .9rem);
  margin: 0 auto .4rem;
  padding: .22em 0 .16em;
  color: var(--wine);
  font-family: "Wedding Script", cursive;
  font-size: clamp(2.5rem, 8vw, 4rem);
  line-height: 1.2;
  white-space: nowrap;
}
.footer-couple span { display: inline-block; flex: 0 1 auto; min-width: 0; }
.footer-couple b {
  flex: 0 0 auto;
  color: var(--gold);
  margin-inline: .05em;
  font-family: Georgia, "Times New Roman", serif;
  font-size: .46em;
  font-style: italic;
  font-weight: 400;
  line-height: 1;
}
.footer-stars { color: var(--gold); font-size: .85rem; }
.footer-logo-link {
  display: grid;
  width: 100px;
  height: 100px;
  margin: .8rem auto .7rem;
  place-items: center;
  background: rgba(255, 253, 248, .65);
  border: 1px solid rgba(189, 150, 81, .36);
  border-radius: 50%;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
}
.footer-logo-link img { width: 86px; height: 86px; object-fit: contain; mix-blend-mode: multiply; }
.footer-logo-link:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(77, 39, 32, .12); }
.site-footer p:not(.footer-couple) { margin: .4rem 0 0; font-size: .78rem; }
.footer-instagram {
  display: inline-block;
  margin-top: .35rem;
  padding: .25rem .65rem;
  color: var(--wine);
  font-family: Georgia, serif;
  font-size: .84rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(104, 31, 43, .28);
}
.music-toggle {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 20;
  display: grid;
  width: 45px;
  height: 45px;
  padding: 0;
  place-items: center;
  color: #fff;
  background: rgba(104, 31, 43, .9);
  border: 1px solid rgba(224, 196, 139, .7);
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(63, 16, 25, .25);
  cursor: pointer;
  backdrop-filter: blur(8px);
}
.music-toggle[aria-pressed="true"] { opacity: .58; }
.lightbox {
  max-width: min(94vw, 920px);
  max-height: 90vh;
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
}
.lightbox::backdrop { background: rgba(31, 8, 13, .92); backdrop-filter: blur(8px); }
.lightbox img { max-height: 88vh; object-fit: contain; border-radius: 14px; }
.lightbox button {
  position: absolute;
  top: -46px;
  left: 0;
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  place-items: center;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .65);
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
}

@keyframes hintPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(220, 195, 143, .45); }
  50% { box-shadow: 0 0 0 9px rgba(220, 195, 143, 0); }
}
@keyframes scrollDot {
  0% { opacity: 0; transform: translate(-50%, 0); }
  25% { opacity: 1; }
  75% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 13px); }
}
@keyframes newNote {
  0% { opacity: 0; transform: translateY(14px) scale(.96); }
  100% { opacity: 1; transform: none; }
}
@keyframes countdownOrbit {
  to { transform: rotate(1turn); }
}
@keyframes countdownShimmer {
  0%, 14% { opacity: 0; transform: translateX(-140%) rotate(18deg); }
  28% { opacity: 1; }
  58%, 100% { opacity: 0; transform: translateX(390%) rotate(18deg); }
}
@keyframes vowPulse {
  0%, 100% { opacity: .62; transform: scale(.92); }
  50% { opacity: 1; transform: scale(1.12); }
}
@keyframes separatorTwinkle {
  0%, 100% { opacity: .42; transform: scale(.82) rotate(0); }
  50% { opacity: 1; transform: scale(1.12) rotate(45deg); }
}
@keyframes numberBloom {
  0% { opacity: .2; transform: translateY(7px) scale(.86); filter: blur(3px); }
  62% { opacity: 1; transform: translateY(-2px) scale(1.04); filter: blur(0); }
  100% { transform: none; }
}

@media (min-width: 760px) {
  .hero-content h1 { gap: 1.15rem; }
}

@media (max-width: 720px) {
  .section-pad { padding-inline: 1rem; }
  .intro-stage { width: 100vw; }
  .hero-content {
    width: calc(100% - 2.2rem);
    margin-bottom: max(7.2rem, 15vh);
  }
  .hero-content h1 { gap: .2rem; font-size: clamp(2.65rem, 12.5vw, 4rem); }
  .hero-media.is-reference img { object-position: 50% 50%; transform: none; }
  .message-card { border-radius: 150px 150px 25px 25px; }
  .forms-layout { grid-template-columns: 1fr; }
  .program-paper { border-radius: 28px; }
  .program-timeline { padding-inline: .4rem; }
  .timeline-track { left: calc(.4rem + 69px); }
  .program-item { grid-template-columns: 54px 30px minmax(0, 1fr); min-height: 122px; }
  .program-icon { width: 48px; height: 48px; }
  .program-icon svg { width: 25px; height: 25px; }
  .program-copy { padding-inline: .8rem .4rem; }
}

@media (max-width: 430px) {
  .hero-content h1 { font-size: clamp(2.4rem, 12vw, 3.25rem); }
  .hero-date { flex-direction: column; gap: .05rem; }
  .hero-date i { width: 20px; }
  .message-card { padding-inline: 1.2rem; }
  .countdown-card { padding-inline: .65rem; border-radius: 30px; }
  .countdown-card::before { inset: 8px; border-radius: 23px; }
  .countdown-section .section-heading h2 { margin-top: 2.7rem; }
  .countdown { gap: .12rem; }
  .countdown-unit { min-width: 0; }
  .countdown-dial { width: clamp(58px, 17.5vw, 68px); }
  .countdown-label { margin-top: .62rem; font-size: .66rem; }
  .countdown-separator { margin-bottom: 1.8rem; }
  .gallery-grid { gap: .55rem; }
  .gallery-card { border-width: 4px; }
  .guest-notes { grid-auto-columns: minmax(235px, 88%); }
  .footer-couple { gap: .42rem; font-size: clamp(2.15rem, 12vw, 3rem); }
}

@media (max-height: 640px) and (orientation: landscape) {
  .intro-stage { width: 45svh; }
  .hero-content { margin-bottom: 4.8rem; }
  .hero-content h1 { font-size: clamp(2.5rem, 7.5vw, 4.4rem); }
  .scroll-cue { bottom: .65rem; }
  .scroll-cue > span { display: none; }
}

/* Center the ampersand independently of the two names' different lengths. */
.hero-content h1,.footer-couple {
  display:grid;
  grid-template-columns:minmax(0,1fr) auto minmax(0,1fr);
  column-gap:.16em;
  direction:ltr;
}
.hero-content h1 span,.footer-couple span { width:max-content; padding-inline:.13em; }
.hero-content h1 span:first-child,.footer-couple span:first-child { justify-self:end; }
.hero-content h1 span:last-child,.footer-couple span:last-child { justify-self:start; }
.hero-content h1 b,.footer-couple b {
  margin:0;
  justify-self:center;
  font-family:Georgia,"Times New Roman",serif;
  font-style:normal;
  line-height:1.2;
}
/* Dissolve the floral venue background into the gallery's blush paper. */
.venue-section::after {
  content:""; position:absolute; bottom:0; left:0; right:0; height:clamp(110px,16vw,190px);
  z-index:-1; pointer-events:none; background:linear-gradient(transparent,#f4ece5);
}
/* Approved asymmetric botanical artwork: animation starts only after the envelope. */
.hero-botanical { position:absolute; z-index:2; pointer-events:none; width:clamp(115px,16vw,215px); opacity:0; filter:drop-shadow(0 2px 5px #35151a40); }
.botanical-left { left:0; bottom:0; aspect-ratio:410/425; }
.botanical-right { right:0; top:0; aspect-ratio:435/630; width:clamp(125px,17vw,230px); }
.botanical-orientation,.botanical-sway { position:absolute; inset:0; }
.botanical-left .botanical-orientation { transform:scaleX(-1); }
.botanical-right .botanical-orientation { transform:rotate(180deg); }
.botanical-layer { position:absolute; inset:0; width:100%; height:100%; object-fit:contain; }
.botanical-growth { opacity:0; transform:scale(.12); transform-origin:50% 65%; }
.botanical-stem { clip-path:inset(100% 0 0); }
body.entered .hero-botanical { animation:botanical-enter-top 1.5s ease-out both; }
body.entered .botanical-left { animation-name:botanical-enter-bottom; }
body.entered .botanical-stem { animation:botanical-stem-grow 1.5s ease-out .1s both; }
body.entered .botanical-growth { animation:botanical-bloom 1.2s cubic-bezier(.22,.72,.25,1) var(--bloom-delay) both; }
body.entered .botanical-sway { transform-origin:50% 100%; animation:botanical-breeze 8s ease-in-out 4s infinite; }
.section-heading.visible .line-bow img { animation:ribbon-appear 1s ease-out both; }
@keyframes botanical-enter-bottom { from {opacity:0;transform:translateY(65px)} to {opacity:1;transform:none} }
@keyframes botanical-enter-top { from {opacity:0;transform:translateY(-65px)} to {opacity:1;transform:none} }
@keyframes botanical-stem-grow { to {clip-path:inset(0)} }
@keyframes botanical-bloom { to {opacity:1;transform:scale(1)} }
@keyframes botanical-breeze { 0%,100% {transform:rotate(-.7deg)} 50% {transform:rotate(.7deg)} }
@keyframes ribbon-appear { from {opacity:0;transform:translateY(-8px)} to {opacity:1;transform:none} }
@media(max-width:720px) {
  .botanical-left { width:105px; }
  .botanical-right { width:115px; }
  .line-bow { width:82px; margin-bottom:1rem; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-botanical,.botanical-growth { opacity:1!important; animation:none!important; transform:none!important; }
  .botanical-stem { clip-path:none!important; animation:none!important; }
  .botanical-sway { animation:none!important; }
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .timeline-runner { transition: none; }
}
