:root {
  /* Pink-forward surfaces */
  --cream: #fff7fa;
  --blush: #fcecf3;
  --blush-deep: #f3d6e4;
  --page-bg: #ebc9d9;
  /* Mauve-rose accents */
  --gold: #c9788c;
  --gold-deep: #b05f74;
  --gold-soft: rgba(201, 120, 140, 0.38);
  --gold-line: rgba(201, 120, 140, 0.28);
  --rose-glow: rgba(240, 170, 200, 0.2);
  --rose-glow-soft: rgba(230, 150, 185, 0.1);
  --ink: #2a1f26;
  --ink-muted: #7a5f6c;
  --font-script: "Great Vibes", cursive;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Outfit", system-ui, sans-serif;
  --radius-frame: 26px;
  /* Frame: soft outer hairline + stronger inner line (reference-style) */
  --frame-outer: rgba(237, 205, 218, 0.92);
  --frame-inner: rgba(176, 95, 116, 0.55);
  --frame-gold: #cf9eb0;
  --frame-bracket: var(--gold-deep);
  --frame-corner-inset: 11px;
  --frame-corner-arm: 3rem;
  --frame-corner-w: 2.5px;
  /* Slightly heavier bottom brackets (reference card) */
  --frame-corner-w-bottom: 3px;
  --frame-inner-radius: calc(var(--radius-frame) - var(--frame-corner-inset) - 2px);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-shell: 0 22px 56px rgba(120, 50, 78, 0.1);
  --texture: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100dvh;
  background: linear-gradient(168deg, var(--page-bg) 0%, var(--blush-deep) 48%, #f0d5e3 100%);
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.page-shell {
  --page-pad-x: 1.35rem;
  position: relative;
  max-width: 480px;
  margin: 1.25rem auto;
  padding: 2.5rem var(--page-pad-x) 3.25rem;
  background-color: var(--blush);
  background-image: var(--texture), radial-gradient(ellipse 120% 80% at 50% -25%, var(--rose-glow), transparent 52%), radial-gradient(ellipse 95% 65% at 50% 115%, var(--rose-glow-soft), transparent 48%);
  border: 1px solid var(--frame-outer);
  border-radius: var(--radius-frame);
  box-shadow:
    var(--shadow-shell),
    inset 0 0 0 2px var(--frame-inner);
  overflow: hidden;
}

/*
 * Thicker corner brackets — curved L’s inset from the shell edge.
 * Top + bottom (reference: bottom corners as bold accents, thin inner line).
 */
.shell-frame-corners {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
}

.shell-brkt {
  position: absolute;
  width: var(--frame-corner-arm);
  height: var(--frame-corner-arm);
  box-sizing: border-box;
  border-style: solid;
  border-color: var(--frame-bracket);
  opacity: 0.9;
}

.shell-brkt--tl {
  top: var(--frame-corner-inset);
  left: var(--frame-corner-inset);
  border-width: var(--frame-corner-w) 0 0 var(--frame-corner-w);
  border-top-left-radius: var(--frame-inner-radius);
}

.shell-brkt--tr {
  top: var(--frame-corner-inset);
  right: var(--frame-corner-inset);
  border-width: var(--frame-corner-w) var(--frame-corner-w) 0 0;
  border-top-right-radius: var(--frame-inner-radius);
}

.shell-brkt--bl {
  bottom: var(--frame-corner-inset);
  left: var(--frame-corner-inset);
  border-width: 0 0 var(--frame-corner-w-bottom) var(--frame-corner-w-bottom);
  border-bottom-left-radius: var(--frame-inner-radius);
}

.shell-brkt--br {
  bottom: var(--frame-corner-inset);
  right: var(--frame-corner-inset);
  border-width: 0 var(--frame-corner-w-bottom) var(--frame-corner-w-bottom) 0;
  border-bottom-right-radius: var(--frame-inner-radius);
}

@media (min-width: 480px) {
  .page-shell {
    --page-pad-x: 1.85rem;
    margin: 2rem auto;
    padding: 2.85rem var(--page-pad-x) 3.6rem;
  }
}

.section {
  position: relative;
  margin-bottom: 3rem;
}

.section:last-child {
  margin-bottom: 0;
}

/* Content sits on page background — no lifted “cards” */
.surface-card,
.surface-card--media,
.surface-card--footer,
.surface-card--count {
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.surface-card--media {
  padding: 0;
}

.surface-card--footer {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
}

.surface-card--count {
  padding: 0.85rem 0 0.25rem;
  margin-top: 0.15rem;
}

.local-figure {
  margin: 0 auto;
}

.local-img--in-card {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 0;
  border: none;
  box-shadow: none;
  background: transparent;
}

.palace {
  object-fit: cover;
  aspect-ratio: 16/7;
}

/* Dot dividers (reference) */
.divider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
  margin: 1.75rem auto 0;
}

.divider-dots--spaced {
  margin-top: 2.25rem;
  margin-bottom: 0.25rem;
}

.divider-dots__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.55;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.85s var(--ease-out),
    transform 0.85s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* —— Hero —— */
.hero {
  position: relative;
  text-align: center;
  padding-top: 0.35rem;
}

/* Hero top: symmetrical flourish + center jewel (no monogram) */
.hero-ornament {
  width: min(13.75rem, 84vw);
  margin: 0 auto 0.9rem;
  color: var(--gold-deep);
}

.hero-ornament__svg {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.9;
}

.hero-romance {
  margin: 0 auto 0.4rem;
  max-width: 18rem;
  font-family: var(--font-script);
  font-size: clamp(1.68rem, 5.4vw, 2.2rem);
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  color: var(--gold-deep);
  text-shadow: 0 1px 0 rgba(255, 251, 252, 0.6);
}

/* Tiny heart under the romantic line */
.hero-romance::after {
  content: "";
  display: block;
  width: 1.25rem;
  height: 1.1rem;
  margin: 0.45rem auto 0;
  opacity: 0.55;
  background-color: var(--gold);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}

.names-display {
  font-size: clamp(1.95rem, 6vw, 2.5rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin: 0 0 1.35rem;
  line-height: 1.25;
}

/* Hero names in script: larger + lighter weight vs body (reference hierarchy) */
.names-display.script-accent {
  font-size: clamp(2.35rem, 7.8vw, 3.2rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.12;
  color: var(--gold-deep);
}

.names-va {
  font-weight: 600;
  opacity: 0.88;
  margin: 0 0.2em;
}

.names-display.script-accent .names-va {
  font-weight: 400;
  opacity: 0.92;
}

.hero-illustration {
  /* max-width: min(300px, 92vw); */
  margin: 0 auto;
}

/* —— Invite —— */
.invite {
  position: relative;
  text-align: center;
}

.serif {
  font-family: var(--font-serif);
}

.invite-lead {
  color: var(--ink);
  font-size: 1.12rem;
  max-width: 22rem;
  margin: 0 auto 1.35rem;
  font-weight: 500;
  line-height: 1.65;
}

.date-big {
  font-size: clamp(3.05rem, 13vw, 4rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  margin: 0 0 0.3rem;
  color: var(--ink);
}

.date-sep {
  color: var(--gold);
  font-weight: 600;
  margin: 0 0.06em;
}

.place-script {
  font-family: var(--font-script);
  font-size: clamp(2.55rem, 9vw, 3.28rem);
  color: var(--gold);
  margin: 0 0 1.1rem;
  line-height: 1.15;
}

.names-caps {
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0;
}

/* Wedding calendar (April 2026, Mon week start) */
.wedding-calendar {
  max-width: 19.5rem;
  margin: 0 auto;
  text-align: center;
}

.wedding-calendar__ribbon {
  font-size: clamp(1.72rem, 5.8vw, 2.2rem);
  margin: 0 0 0.65rem;
  line-height: 1.15;
  color: var(--gold);
}

.wedding-calendar__frame {
  padding: 1rem 0.85rem 1.1rem;
  background: linear-gradient(165deg, var(--cream) 0%, var(--blush) 100%);
  border: 1px solid var(--frame-outer);
  border-radius: calc(var(--radius-frame) - 4px);
  box-shadow:
    inset 0 0 0 2px var(--frame-inner),
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    0 10px 28px rgba(120, 50, 78, 0.07);
}

.wedding-calendar__head {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.45rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--gold-line);
}

.wedding-calendar__month {
  font-size: 1.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
}

.wedding-calendar__year {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold-deep);
  letter-spacing: 0.12em;
}

.wedding-calendar__dows {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.15rem;
  margin-bottom: 0.4rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.wedding-calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.2rem 0.15rem;
}

.wedding-calendar__day {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  max-height: 2.45rem;
  margin: 0 auto;
  width: 100%;
  max-width: 2.45rem;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
  border-radius: 50%;
  line-height: 1;
}

.wedding-calendar__day--muted {
  color: var(--ink-muted);
  opacity: 0.45;
  font-weight: 500;
}

.wedding-calendar__day--wedding {
  color: var(--cream);
  background: linear-gradient(145deg, var(--gold) 0%, var(--gold-deep) 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.35) inset,
    0 4px 14px rgba(176, 95, 116, 0.38);
  font-weight: 700;
}

/* Chandeliers */
.chandelier-pendulum {
  display: block;
  transform-origin: top center;
  animation: chandelier-sway 5.5s ease-in-out infinite alternate;
}

.chandelier-pendulum--flip {
  animation-name: chandelier-sway-flip;
}

.chandelier-img {
  display: block;
  height: 5rem;
  width: auto;
  object-fit: contain;
  object-position: top center;
  opacity: 0.9;
  filter: drop-shadow(0 6px 14px rgba(26, 26, 26, 0.06));
}

.chandelier-img--peek {
  height: clamp(7.5rem, 28vw, 10.5rem);
  width: auto;
}

@keyframes chandelier-sway {
  from {
    transform: rotate(-1.8deg);
  }

  to {
    transform: rotate(1.8deg);
  }
}

@keyframes chandelier-sway-flip {
  from {
    transform: scaleX(-1) rotate(1.8deg);
  }

  to {
    transform: scaleX(-1) rotate(-1.8deg);
  }
}

/* Peek from edges — axis on border line, ~half clipped (reference) */
.peek-chandelier {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

.peek-chandelier--left {
  left: calc(-1 * var(--page-pad-x) - 2px);
  /* Sit with bulk near time / venue copy (reference), not section vertical center */
  top: clamp(9rem, 52%, 15rem);
  transform: translate(-50%, -50%);
}

.peek-chandelier--right {
  right: calc(-1 * var(--page-pad-x) - 2px);
  left: auto;
  top: clamp(9rem, 52%, 15rem);
  transform: translate(50%, -50%);
}

/* Vertical band per section (alternating L / R peeks) */
.hero .peek-chandelier {
  top: clamp(3.5rem, 36%, 9.5rem);
}

.invite .peek-chandelier {
  top: clamp(6.5rem, 48%, 13.5rem);
}

.gifts .peek-chandelier {
  top: clamp(5rem, 44%, 11.5rem);
}

.countdown-block .peek-chandelier {
  top: clamp(10rem, 56%, 17rem);
}

.footer .peek-chandelier {
  top: clamp(5.5rem, 42%, 11.5rem);
}

/* Stack section content above side chandeliers */
.hero > :not(.peek-chandelier),
.invite > :not(.peek-chandelier),
.gifts > :not(.peek-chandelier),
.countdown-block > :not(.peek-chandelier),
.footer > :not(.peek-chandelier) {
  position: relative;
  z-index: 1;
}

/* —— Details / schedule —— */
.details {
  position: relative;
  text-align: center;
  padding-top: 0.5rem;
}

/* Stack copy above side chandeliers */
.details > :not(.peek-chandelier) {
  position: relative;
  z-index: 1;
}

.details-illustration {
  width: 100%;
  margin: 0 auto;
}

.time-hero {
  font-size: clamp(3.15rem, 14vw, 4.35rem);
  font-weight: 700;
  margin: 0.15rem 0 0.2rem;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.venue-script {
  font-size: clamp(2.38rem, 8.5vw, 3.12rem);
  margin: 0;
  line-height: 1.2;
}

.venue-lines {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0.25rem 0 0;
}

.venue-lines--muted {
  color: var(--ink-muted);
  font-weight: 500;
  margin-bottom: 1.35rem;
}

.info-chips {
  list-style: none;
  margin: 0 auto 1.5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  max-width: 19.5rem;
  text-align: left;
}

.info-chip {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.6rem 0 0.65rem;
  border-radius: 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--gold-line);
  box-shadow: none;
}

.info-chip:last-child {
  border-bottom: none;
}

.info-chip__icon {
  flex-shrink: 0;
  width: 2.3rem;
  height: 2.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  background: transparent;
  color: var(--gold);
}

.info-chip__icon svg {
  width: 1.12rem;
  height: 1.12rem;
}

.info-chip__text {
  font-size: 1.14rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
}

.script-accent {
  font-family: var(--font-script);
  color: var(--gold);
}

.script-accent.inline {
  font-size: 1.3em;
}

.section-title {
  font-size: clamp(2.55rem, 8.5vw, 3.28rem);
  font-weight: 500;
  text-align: center;
  margin: 0 0 1.1rem;
  line-height: 1.1;
}

/* Map */
.map-block {
  position: relative;
  text-align: center;
  padding-top: 0.25rem;
}

.map-block > :not(.peek-chandelier) {
  position: relative;
  z-index: 1;
}

.map-illustration {
  max-width: 100%;
  margin: 0 auto 1.15rem;
}

/* Stylized map + venue pill (over art; replaces baked-in label) */
.map-figure {
  position: relative;
  max-width: 100%;
  margin: 1.1rem auto 0.35rem;
}

.map-figure .local-img--in-card {
  display: block;
  width: 100%;
  height: auto;
}

.map-venue-fig {
  position: absolute;
  top: 20%;
  left: 40%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.28rem;
  width: min(16rem, calc(100% - 1rem));
  margin: 0;
  padding: 0;
  transform: translateX(-50%);
  pointer-events: none;
}

.map-pin {
  display: flex;
  justify-content: center;
  filter: drop-shadow(0 3px 8px rgba(120, 50, 78, 0.22));
}

.map-pin__svg {
  width: 2.2rem;
  height: auto;
  color: var(--gold-deep);
}

.map-pin__dot {
  fill: var(--cream);
}

.map-venue-label {
  margin: 0;
  padding: 0.45rem 1.15rem 0.52rem;
  max-width: 100%;
  font-size: clamp(0.9rem, 3.6vw, 1.1rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.25;
  color: var(--ink);
  text-align: center;
  background: var(--cream);
  border: 1px solid var(--frame-outer);
  border-radius: 999px;
  box-shadow:
    inset 0 0 0 1px var(--frame-inner),
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 6px 18px rgba(120, 50, 78, 0.1);
}

.btn-row {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  align-items: center;
  max-width: 17rem;
  margin: 0 auto;
}

.map-actions {
  margin-top: 1.5rem;
}

.btn-with-icon {
  gap: 0.5rem;
}

.btn-ic {
  width: 1.12rem;
  height: 1.12rem;
  flex-shrink: 0;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  padding: 0.82rem 1.5rem;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition:
    color 0.35s var(--ease-out),
    background 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out),
    transform 0.35s var(--ease-out);
}

.btn-outline:hover {
  color: var(--cream);
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  box-shadow: none;
  transform: translateY(-1px);
}

.btn-outline:active {
  transform: translateY(0);
}

.btn-outline:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.btn-ghost {
  background: transparent;
}

.btn-inline {
  margin-top: 0.35rem;
  font-size: 0.86rem;
  padding: 0.55rem 1.15rem;
}

/* To'yona / bank card */
.toyona {
  text-align: center;
}

.toyona-title {
  font-size: 1.58rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 0.65rem;
}

.toyona-lead {
  color: var(--ink-muted);
  font-size: 1.12rem;
  font-weight: 500;
  max-width: 22rem;
  margin: 0 auto 1.15rem;
  line-height: 1.55;
}

.bank-card {
  padding: 1rem 0 0.25rem;
  max-width: 19rem;
  margin: 0 auto;
  text-align: center;
}

.bank-card__names {
  font-size: clamp(1.95rem, 7vw, 2.38rem);
  margin: 0 0 0.15rem;
}

.bank-card__date {
  font-size: 1.04rem;
  color: var(--ink-muted);
  letter-spacing: 0.12em;
  margin: 0 0 1rem;
}

.bank-card__num {
  font-family: var(--font-sans);
  font-size: clamp(1.18rem, 4.8vw, 1.4rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--ink);
  margin: 0;
}

/* Gifts */
.gifts {
  position: relative;
  text-align: center;
}

.gifts-card {
  padding: 0.35rem 0 0;
  max-width: 22rem;
  margin: 0 auto;
  text-align: center;
}

.gifts-text {
  color: var(--ink-muted);
  font-size: 1.2rem;
  font-weight: 500;
  margin: 0;
  line-height: 1.6;
}

/* Countdown */
.countdown-block {
  position: relative;
  text-align: center;
}

.countdown-heading {
  margin-bottom: 0.85rem;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.35rem;
}

.cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.cd-num {
  font-family: var(--font-serif);
  font-size: clamp(1.95rem, 8.5vw, 2.8rem);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  min-height: 1.15em;
  color: var(--ink);
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}

.cd-num.tick {
  opacity: 0.62;
  transform: scale(0.96);
}

.cd-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* Footer */
.footer {
  position: relative;
  text-align: center;
  padding-top: 0.35rem;
}

.footer-illustration {
  margin-bottom: 1.2rem;
}

.footer-tag {
  font-size: 1.12rem;
  font-weight: 500;
  color: var(--ink-muted);
  margin: 0;
}

/* SVG line draw (hero flourish, etc.) */
.svg-draw .draw-path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  transition: stroke-dashoffset 1.65s var(--ease-out);
}

.svg-draw.is-drawn .draw-path {
  stroke-dashoffset: 0;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .svg-draw .draw-path {
    stroke-dasharray: none;
    stroke-dashoffset: 0;
    transition: none;
  }

  .cd-num {
    transition: none;
  }

  .btn-outline {
    transition: none;
  }

  .btn-outline:hover {
    transform: none;
  }

  .chandelier-pendulum {
    animation: none;
  }

  .chandelier-pendulum--flip {
    animation: none;
    transform: scaleX(-1);
  }
}
