@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; }

/* Full-screen autumn opening sequence */
.wedding-intro {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  background: #332018;
  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(.4) saturate(.88) sepia(.12);
  transform: scale(1.08);
}
.intro-stage {
  position: relative;
  width: min(100vw, 56.25svh);
  height: 100svh;
  max-height: 100vh;
  overflow: hidden;
  background: #513426;
  box-shadow: 0 0 90px rgba(0, 0, 0, .58);
}
.intro-video {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.intro-video--wind-down {
  transform: rotate(180deg);
  transform-origin: center;
}
.intro-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(51, 29, 18, .12), transparent 26%, transparent 72%, rgba(42, 24, 16, .3)),
    radial-gradient(circle at center, transparent 55%, rgba(45, 26, 18, .14));
  transition: opacity .65s ease;
}
.intro-light {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: #fffdf7;
  opacity: 0;
  pointer-events: none;
  transition: opacity .62s ease;
}
.intro-poem {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  display: grid;
  gap: clamp(.5rem, 1.8svh, 1rem);
  width: min(calc(100% - 2rem), 570px);
  margin: 0;
  padding: .5rem;
  color: #5f3928;
  font-family: "Mina Miremad", var(--fa);
  font-size: clamp(1.6rem, 4.4svh, 3rem);
  font-weight: 400;
  line-height: 1.8;
  text-align: center;
  text-shadow: 0 2px 14px rgba(255, 251, 239, .96), 0 1px 3px rgba(93, 54, 34, .18);
  opacity: 0;
  transform: translate(-50%, -46%) scale(.985);
  pointer-events: none;
  transition: opacity .65s ease, transform .85s cubic-bezier(.2, .72, .22, 1);
}
.intro-poem span { display: block; padding-block: .04em .08em; }
.wedding-intro.poem-phase .intro-poem {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.wedding-intro.poem-phase .intro-vignette { opacity: .18; }
.wedding-intro.brightening .intro-light { opacity: 1; }
.wedding-intro.brightening .intro-poem {
  opacity: 0;
  transform: translate(-50%, -54%) scale(1.018);
}
.intro-hint {
  position: absolute;
  z-index: 5;
  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(82, 50, 32, .7);
  border: 1px solid rgba(229, 198, 137, .7);
  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;
}
.wedding-intro.playing { cursor: default; }
.intro-personal {
  position: absolute;
  z-index: 5;
  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: 56.25svh; }
  .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 autumn hero: one growing blossom branch, one top-pinned chiffon curtain. */
.autumn-hero {
  position: relative;
  min-height: 100svh;
  align-items: start;
  color: #5b3a2b;
  background:
    radial-gradient(circle at 48% 35%, rgba(255,255,255,.78), transparent 34%),
    linear-gradient(150deg, #fffaf1 0%, #fbf7ef 50%, #f6eee2 100%);
}
.autumn-hero::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 12% 12%, rgba(196,126,87,.08), transparent 24%),
    linear-gradient(90deg, rgba(139,91,64,.025) 1px, transparent 1px);
  background-size: auto, 6px 100%;
  content: "";
  pointer-events: none;
}
.hero-chiffon {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  contain: paint;
  pointer-events: none;
}
.hero-chiffon img {
  position: absolute;
  top: 0;
  right: -2%;
  width: 104%;
  height: 104%;
  max-width: none;
  object-fit: cover;
  object-position: 100% 0;
  opacity: .94;
  transform: translate3d(0,0,0) scale(1.025,1.018);
  transform-origin: 100% 0;
  backface-visibility: hidden;
  will-change: transform;
}
.hero-chiffon-pin {
  z-index: 2;
  clip-path: inset(0 0 88% 0);
  -webkit-mask-image: linear-gradient(#000 0 7%, transparent 12%);
  mask-image: linear-gradient(#000 0 7%, transparent 12%);
  animation: none !important;
}
.hero-chiffon-flow {
  -webkit-mask-image: linear-gradient(transparent 0 5%, #000 12%);
  mask-image: linear-gradient(transparent 0 5%, #000 12%);
}
body.entered .hero-chiffon-flow {
  animation: chiffon-breeze 13s cubic-bezier(.45,0,.55,1) infinite;
}
.hero-autumn-branch {
  position: absolute;
  top: clamp(-2.9rem, -3.6vw, -1.2rem);
  left: clamp(-4.4rem, -4.5vw, -1.6rem);
  z-index: 4;
  width: clamp(245px, 34vw, 445px);
  aspect-ratio: 435 / 630;
  opacity: 0;
  filter: sepia(.22) saturate(.92) hue-rotate(338deg) contrast(1.03) drop-shadow(0 4px 8px rgba(95,57,38,.13));
  pointer-events: none;
}
.autumn-branch-sway,
.autumn-branch-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.autumn-branch-sway {
  transform-origin: 7% 92%;
  will-change: transform;
}
.autumn-branch-layer { object-fit: contain; }
.autumn-branch-stem { clip-path: inset(100% 0 0 0); }
.autumn-branch-growth {
  opacity: 0;
  transform: scale(.18) rotate(-2deg);
  transform-origin: 46% 58%;
}
body.entered .hero-autumn-branch { animation: autumn-branch-enter .95s ease-out both; }
body.entered .autumn-branch-stem { animation: autumn-stem-grow 1.65s cubic-bezier(.2,.68,.24,1) .12s both; }
body.entered .autumn-branch-growth { animation: autumn-bloom 1.05s cubic-bezier(.2,.75,.22,1.08) var(--bloom-delay) both; }
body.entered .autumn-branch-sway { animation: autumn-branch-breeze 9.5s ease-in-out 3.4s infinite; }
.hero-portrait {
  position: absolute;
  right: 50%;
  bottom: clamp(-2.4rem, -3.2svh, -1.25rem);
  z-index: 3;
  width: min(76vw, 510px);
  height: min(48svh, 590px);
  min-height: 330px;
  margin: 0;
  overflow: hidden;
  background: #eadaca;
  border: 1px solid rgba(154,103,70,.24);
  border-radius: 50% 50% 22px 22px / 27% 27% 18px 18px;
  box-shadow: 0 24px 54px rgba(96,58,38,.18), 0 0 0 7px rgba(255,253,248,.42);
  transform: translateX(50%);
}
.hero-portrait::before {
  position: absolute;
  inset: 9px;
  z-index: 2;
  border: 1px solid rgba(255,247,231,.45);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}
.hero-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 38%;
  filter: saturate(.82) contrast(1.02) sepia(.05);
}
.hero-portrait-fade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 72%, rgba(251,247,239,.18) 82%, #fbf7ef 100%),
    linear-gradient(90deg, rgba(251,247,239,.12), transparent 9%, transparent 91%, rgba(251,247,239,.12));
  pointer-events: none;
}
body.entered .hero-portrait { animation: autumn-portrait-enter 1.15s cubic-bezier(.2,.72,.22,1) .18s both; }
.autumn-hero .hero-content {
  position: absolute;
  top: clamp(10.8rem, 27svh, 16.5rem);
  right: 50%;
  z-index: 6;
  width: min(92%, 820px);
  margin: 0;
  color: #5b3929;
  text-align: center;
  text-shadow: none;
  transform: translateX(50%);
}
.autumn-hero .hero-content.reveal { transform: translate(50%, 24px); }
.autumn-hero .hero-content.reveal.visible { transform: translate(50%, 0); }
.autumn-hero .hero-content::before { display: none; }
.autumn-hero .hero-kicker {
  margin: 0 auto .35rem;
  color: #8f6047;
  font-size: clamp(.67rem, 1.55vw, .86rem);
  letter-spacing: .22em;
  text-shadow: none;
}
.autumn-hero .hero-kicker::after {
  display: block;
  width: clamp(95px, 18vw, 158px);
  height: 1px;
  margin: .55rem auto .2rem;
  background: linear-gradient(90deg, transparent, #c39a61 22%, #c39a61 78%, transparent);
  content: "";
}
.autumn-hero .hero-content h1 {
  gap: clamp(.15rem, .8vw, .65rem);
  margin: 0;
  padding: .08em .02em .12em;
  color: #563322;
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 1.04;
  text-shadow: 0 2px 18px rgba(255,251,243,.9);
}
.autumn-hero .hero-content h1 b { color: #b4854e; }
.autumn-hero .hero-date {
  gap: .55rem;
  color: #80533d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(.74rem, 1.8vw, .94rem);
  letter-spacing: .22em;
  text-shadow: none;
}
.autumn-hero .scroll-cue {
  bottom: max(.7rem, env(safe-area-inset-bottom));
  z-index: 8;
  gap: .28rem;
  padding: .42rem .9rem .34rem;
  color: #6c4634;
  background: rgba(255,252,245,.78);
  border: 1px solid rgba(151,102,71,.2);
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(83,48,30,.12);
  text-shadow: none;
  backdrop-filter: blur(6px);
}
.autumn-hero .scroll-cue > i {
  width: 18px;
  height: 25px;
  border-color: rgba(108,70,52,.48);
  background: rgba(255,253,248,.62);
  box-shadow: none;
}
.autumn-hero .scroll-cue > i b { top: 5px; background: #b4854e; }
.section-heading.visible .line-bow img { animation:ribbon-appear 1s ease-out both; }
@keyframes chiffon-breeze {
  0%,100% { transform: translate3d(0,0,0) scale(1.025,1.018) skewX(0); }
  24% { transform: translate3d(-.34%,0,0) scale(1.035,1.018) skewX(-.16deg); }
  53% { transform: translate3d(.16%,0,0) scale(1.021,1.018) skewX(.14deg); }
  79% { transform: translate3d(-.18%,0,0) scale(1.03,1.018) skewX(-.08deg); }
}
@keyframes autumn-branch-enter {
  from { opacity: 0; transform: translate(-18px,-12px); }
  to { opacity: 1; transform: none; }
}
@keyframes autumn-stem-grow { to { clip-path: inset(0); } }
@keyframes autumn-bloom {
  0% { opacity: 0; transform: scale(.18) rotate(-2deg); filter: blur(2px); }
  68% { opacity: 1; transform: scale(1.035) rotate(.35deg); filter: blur(0); }
  100% { opacity: 1; transform: none; filter: blur(0); }
}
@keyframes autumn-branch-breeze {
  0%,100% { transform: rotate(-.35deg) translate3d(0,0,0); }
  34% { transform: rotate(.45deg) translate3d(1px,-1px,0); }
  67% { transform: rotate(-.12deg) translate3d(-1px,0,0); }
}
@keyframes autumn-portrait-enter {
  from { opacity: 0; transform: translate(50%,18px) scale(.985); }
  to { opacity: 1; transform: translate(50%,0) scale(1); }
}
@keyframes ribbon-appear { from {opacity:0;transform:translateY(-8px)} to {opacity:1;transform:none} }
@media(max-width:720px) {
  .hero-autumn-branch {
    top: -1.35rem;
    left: -3.5rem;
    width: clamp(232px, 64vw, 286px);
  }
  .hero-chiffon img { right: -4%; width: 108%; }
  .hero-portrait {
    bottom: -1.45rem;
    width: min(80vw, 390px);
    height: min(46svh, 480px);
    min-height: 310px;
  }
  .autumn-hero .hero-content {
    top: clamp(10rem, 27svh, 13.25rem);
    width: calc(100% - 1.6rem);
  }
  .autumn-hero .hero-content h1 { gap: .12rem; font-size: clamp(3rem, 13vw, 4.4rem); }
  .autumn-hero .hero-date { flex-direction: row; gap: .4rem; }
  .line-bow { width:82px; margin-bottom:1rem; }
}
@media(max-width:430px) {
  .hero-autumn-branch { left: -4.15rem; width: 245px; }
  .hero-portrait { width: min(82vw, 355px); }
  .autumn-hero .hero-content h1 { font-size: clamp(2.85rem, 13.2vw, 3.75rem); }
  .autumn-hero .hero-kicker { letter-spacing: .16em; }
}
@media(max-height:640px) and (orientation:landscape) {
  .hero-autumn-branch { width: 235px; }
  .autumn-hero .hero-content { top: 4.2rem; width: 58%; }
  .autumn-hero .hero-content h1 { font-size: clamp(2.55rem, 7vw, 4rem); }
  .hero-portrait { right: 24%; width: min(36vw, 350px); height: 73svh; transform: translateX(50%); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-autumn-branch,.autumn-branch-growth { opacity:1!important; animation:none!important; transform:none!important; }
  .autumn-branch-stem { clip-path:none!important; animation:none!important; }
  .autumn-branch-sway,.hero-chiffon-flow { 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; }
}

/* Final autumn story sections */
.autumn-hero::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 7;
  height: clamp(105px, 16svh, 170px);
  background: linear-gradient(180deg, transparent 0%, rgba(248, 239, 225, .46) 46%, #f4e6d3 100%);
  content: "";
  pointer-events: none;
}
.invitation-message {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 100svh;
  margin-top: -1px;
  padding-top: clamp(7rem, 14vw, 10rem);
  padding-bottom: clamp(8rem, 14vw, 11rem);
  place-items: center;
  overflow: hidden;
  background: #f3e2ca;
}
.invitation-video-wrap,
.invitation-video-shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.invitation-video-wrap {
  z-index: 0;
  overflow: hidden;
  background: #ead6b7 url("../video/invitation-chiffon-poster.jpg") center / cover no-repeat;
}
.invitation-video-wrap::before,
.invitation-video-wrap::after {
  position: absolute;
  right: 0;
  left: 0;
  z-index: 2;
  height: clamp(125px, 21vw, 245px);
  content: "";
}
.invitation-video-wrap::before {
  top: 0;
  background: linear-gradient(180deg, #f4e6d3 0%, rgba(244, 230, 211, .87) 32%, transparent 100%);
}
.invitation-video-wrap::after {
  bottom: 0;
  background: linear-gradient(0deg, #f7efe4 0%, rgba(247, 239, 228, .88) 32%, transparent 100%);
}
.ambient-section-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.75) sepia(.08) brightness(.97);
  transform: scale(1.015);
}
.invitation-video-shade {
  z-index: 1;
  background:
    radial-gradient(ellipse at 50% 48%, rgba(255, 250, 239, .06) 0 22%, rgba(101, 70, 48, .17) 76%),
    linear-gradient(90deg, rgba(96, 64, 44, .14), transparent 22%, transparent 78%, rgba(96, 64, 44, .14));
}
.invitation-message .message-card {
  position: relative;
  z-index: 3;
  width: min(100%, 650px);
  padding: clamp(3.6rem, 8vw, 5.4rem) clamp(1.35rem, 7vw, 4.4rem);
  color: #5d493f;
  background: rgba(255, 252, 245, .8);
  border: 1px solid rgba(124, 83, 57, .23);
  border-radius: 220px 220px 32px 32px;
  box-shadow: 0 28px 78px rgba(66, 45, 31, .22), inset 0 0 0 7px rgba(255, 255, 255, .24);
  backdrop-filter: blur(13px) saturate(.9);
}
.invitation-message .message-card::before {
  inset: 10px;
  border-color: rgba(182, 132, 78, .31);
}
.invitation-message .message-monogram {
  background: rgba(255, 250, 240, .72);
  border-color: rgba(181, 132, 77, .56);
  box-shadow: 0 8px 25px rgba(82, 51, 35, .11);
}
.invitation-message .section-kicker { color: #9c664b; }
.invitation-message .message-card h2 { color: #65392e; text-shadow: 0 1px 9px rgba(255, 252, 246, .65); }
.invitation-message .ornament { color: #b5824d; }
.invitation-message .invitation-copy {
  color: #5f4c43;
  font-size: clamp(1rem, 3vw, 1.12rem);
  line-height: 2.45;
  text-shadow: 0 1px 12px rgba(255, 253, 248, .78);
}
.invitation-message .message-card > strong { color: #865842; }

.program-section {
  background: linear-gradient(180deg, #ede2d4 0%, #f8f1e8 20%, #f7efe5 84%, #f3eadf 100%);
}
.program-paper {
  background:
    radial-gradient(circle at 16% 9%, rgba(181, 125, 75, .08), transparent 19%),
    radial-gradient(circle at 88% 86%, rgba(154, 87, 63, .07), transparent 23%),
    rgba(255, 252, 246, .94);
  border-color: rgba(132, 92, 64, .18);
  border-radius: 42px;
  box-shadow: 0 26px 68px rgba(86, 58, 39, .13);
}
.program-paper::before,
.program-paper::after {
  opacity: .08;
  filter: sepia(.45) saturate(.72);
}
.program-icon {
  color: #8d705e;
  background: rgba(255, 251, 243, .92);
  border-color: rgba(159, 112, 76, .25);
}
.program-copy h3 { color: #654a3f; }
/* -- رنگ‌بندی پاییزی برای برنامه مراسم -- */
.program-item.passed .program-icon { 
  background: #cf662a; /* رنگ نارنجی پاییزی برای آیکون‌های رد شده */
  border-color: #cf662a; 
  color: #fffdf8; 
}
.program-item.passed .program-marker { 
  background: #e59345; 
  border-color: #e59345; 
}
.timeline-progress { 
  background: linear-gradient(#e59345, #b84e1b); /* طیف رنگی نارنجی روی خط زمان */
}
.timeline-runner {
  background: transparent; /* حذف بک‌گراند گرد تا فقط برگ دیده بشه */
  border: none;
  box-shadow: none;
  font-size: 1.5rem; /* بزرگتر کردن سایز برگ */
  filter: drop-shadow(0 4px 6px rgba(160, 70, 25, 0.35)); /* یک سایه ملایم زیر برگ */
}

.venue-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(180deg, #f3eadf 0%, #fffaf2 42%, #f1e6dc 100%);
}
.venue-section::before {
  top: 0;
  z-index: 0;
  height: clamp(100px, 16vw, 180px);
  background: linear-gradient(180deg, #f3eadf, transparent);
}
.venue-section::after {
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  height: clamp(100px, 15vw, 175px);
  background: linear-gradient(0deg, #f1e6dc, transparent);
}
.venue-card {
  position: relative;
  z-index: 2;
  width: min(100%, 690px);
  height: clamp(760px, 92vw, 910px);
  margin: auto;
  padding: 0;
  overflow: hidden;
  background: #f5eee5;
  border: 1px solid rgba(119, 81, 58, .2);
  border-radius: 250px 250px 36px 36px;
  box-shadow: 0 30px 78px rgba(82, 55, 39, .17), 0 0 0 8px rgba(255, 252, 246, .45);
}
.venue-card::before {
  position: absolute;
  inset: 11px;
  z-index: 4;
  border: 1px solid rgba(255, 251, 241, .58);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}
.venue-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 252, 246, .92) 0%, rgba(255, 252, 246, .7) 27%, rgba(255, 252, 246, .08) 55%, rgba(238, 225, 208, .24) 100%),
    linear-gradient(90deg, rgba(255, 252, 246, .17), transparent 20%, transparent 80%, rgba(255, 252, 246, .17));
  content: "";
  pointer-events: none;
}
.venue-landscape {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.84) contrast(.98) sepia(.04);
  transform: scale(1.01);
}
.venue-card-content {
  position: relative;
  z-index: 3;
  width: min(84%, 480px);
  margin: 0 auto;
  padding-top: clamp(4.8rem, 10vw, 7rem);
  text-align: center;
}
.venue-card .section-kicker { color: #956047; }
.venue-card h2 {
  color: #654137;
  font-size: clamp(2.6rem, 7vw, 4.2rem);
  line-height: 1.7;
  text-shadow: 0 1px 10px rgba(255, 252, 246, .72);
}
.venue-pin {
  color: #fff9ed;
  background: #755043;
  border-color: #d8b781;
  box-shadow: 0 0 0 5px rgba(181, 132, 77, .13);
}
.venue-card address {
  margin: .9rem auto 1.35rem;
  color: #6d564c;
  font-size: clamp(.84rem, 2.3vw, .95rem);
  line-height: 2.1;
  text-shadow: 0 1px 10px rgba(255, 252, 246, .85);
}
.venue-card .neshan-route {
  width: min(100%, 350px);
  color: #fffaf0;
  background: linear-gradient(135deg, rgba(117, 70, 56, .96), rgba(82, 46, 38, .97));
  border-color: rgba(216, 183, 129, .8);
  box-shadow: 0 14px 31px rgba(77, 46, 35, .22);
}
.venue-map-preview {
  position: relative;
  z-index: 2;
  width: min(100%, 690px);
  margin: 1.8rem auto 0;
  border-color: rgba(255, 252, 246, .92);
  box-shadow: 0 18px 42px rgba(80, 54, 39, .13);
}

.gallery-section {
  background:
    radial-gradient(circle at 50% 0, rgba(255, 255, 255, .72), transparent 34%),
    linear-gradient(180deg, #f1e6dc 0%, #f8f0e7 54%, #ede0d6 100%);
}
.gallery-card {
  background: #d8c7b9;
  border-color: #fffaf1;
  box-shadow: 0 17px 38px rgba(76, 51, 39, .14);
}
.empty-album {
  background: rgba(255, 252, 246, .72);
  border-color: rgba(128, 78, 60, .24);
}

.participation {
  position: relative;
  background:
    radial-gradient(circle at 15% 12%, rgba(205, 155, 94, .14), transparent 24%),
    radial-gradient(circle at 88% 84%, rgba(169, 102, 74, .12), transparent 27%),
    linear-gradient(145deg, #654033 0%, #4e3028 55%, #3f2722 100%);
}
.participation::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: clamp(95px, 14vw, 165px);
  background: linear-gradient(180deg, #ede0d6, transparent);
  content: "";
  pointer-events: none;
}
.participation .section-heading p { color: #e4c69c; }
.participation .section-heading h2 { color: #fff9ed; }
.wedding-form {
  background: rgba(255, 251, 243, .93);
  border-color: rgba(224, 190, 139, .48);
  box-shadow: 0 23px 54px rgba(35, 20, 16, .2);
}
.wedding-form h3 { color: #704438; }
.wedding-form button { background: #744537; border-color: #744537; }
.wedding-form button:hover { background: #593128; }
.guestbook-wall {
  background: rgba(255, 248, 237, .12);
  border-color: rgba(234, 205, 160, .33);
}
.guest-notes blockquote { border-right-color: #c49a61; }

.site-footer {
  background:
    radial-gradient(circle at 50% 0, rgba(255, 255, 255, .75), transparent 38%),
    linear-gradient(180deg, #efe3d7 0%, #faf5ed 100%);
  border-top-color: rgba(122, 83, 59, .14);
}
.footer-couple { color: #6c4034; }
.footer-logo-link { background: rgba(255, 252, 246, .78); border-color: rgba(181, 132, 77, .34); }
.footer-instagram { color: #714438; border-bottom-color: rgba(113, 68, 56, .27); }

@media (max-width: 720px) {
  .invitation-message { min-height: 104svh; padding: 7.5rem .85rem 8.5rem; }
  .invitation-video-wrap::before,
  .invitation-video-wrap::after { height: 150px; }
  .invitation-message .message-card {
    width: min(100%, 520px);
    padding: 3.7rem 1.15rem 3.5rem;
    border-radius: 165px 165px 28px 28px;
  }
  .invitation-message .message-card h2 { font-size: clamp(2.35rem, 11vw, 3.25rem); }
  .invitation-message .invitation-copy { line-height: 2.3; }
  .program-paper { border-radius: 31px; }
  .venue-section { padding-inline: .8rem; }
  .venue-card {
    width: min(100%, 430px);
    height: min(820px, 90svh);
    min-height: 735px;
    border-radius: 180px 180px 28px 28px;
    box-shadow: 0 24px 58px rgba(82, 55, 39, .16), 0 0 0 5px rgba(255, 252, 246, .42);
  }
  .venue-card::before { inset: 8px; }
  .venue-card-content { width: 84%; padding-top: 4.65rem; }
  .venue-card h2 { font-size: clamp(2.45rem, 12vw, 3.4rem); }
  .venue-card .neshan-route { padding: .7rem .9rem; }
  .venue-map-preview { margin-top: 1.2rem; border-width: 4px; }
}
@media (max-width: 390px) {
  .invitation-message .message-card { padding-inline: .9rem; }
  .invitation-message .invitation-copy { font-size: .96rem; }
  .venue-card { min-height: 700px; height: 87svh; }
  .venue-card-content { width: 88%; padding-top: 4.2rem; }
}
@media (prefers-reduced-motion: reduce) {
  .ambient-section-video { display: none; }
}
/* --- تم پاییزی برنامه مراسم --- */

/* 1. حذف کامل دایره، بزرگ کردن برگ و چرخاندن آن برای حالت طبیعی‌تر */
.timeline-runner {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  font-size: 1.6rem !important; /* اندازه برگ */
  transform: translate(-50%, -50%) rotate(-25deg) !important; /* کج کردن برگ به سمت چپ */
  filter: drop-shadow(0 4px 6px rgba(160, 70, 25, 0.4)) !important;
}

/* 2. تغییر رنگ خط مسیر به طیف طلایی و آجری */
.timeline-progress { 
  background: linear-gradient(#c49a61, #cf662a) !important; 
}

/* 3. تغییر رنگ آیکون مراحلی که طی شده‌اند به نارنجی/آجری پاییزی */
.program-item.passed .program-icon { 
  background: #b84e1b !important; 
  border-color: #b84e1b !important; 
  color: #fffdf8 !important; 
}
.program-item.passed .program-marker { 
  background: #e59345 !important; 
  border-color: #e59345 !important; 
}

/* 4. تغییر رنگ‌بندی کلی بخش برای همخوانی با تم پاییزی (حذف قرمز/زرشکی) */
/* تغییر رنگ روبان (پاپیون) بالای بخش */
.line-bow {
  color: #b84e1b !important; 
}
.bow-tail {
  stroke: #c49a61 !important;
}
.bow-knot {
  stroke: #c49a61 !important;
}

/* تغییر رنگ متن "از اولین سلام تا آخرین ترانه" */
.program-section .section-heading > p {
  color: #c49a61 !important; 
}

/* تغییر رنگ تیتر "برنامه‌ی مراسم" */
.program-section .section-heading h2 {
  color: #654137 !important; 
}

/* تغییر رنگ زمان هر برنامه (ساعت‌ها) */
.program-copy time {
  color: #cf662a !important; 
}