@font-face {
  font-family: "CeraRoundProDastur";
  src: url("assets/CeraRoundPro-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "CeraRoundProDastur";
  src: url("assets/CeraRoundPro-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "CeraRoundProDastur";
  src: url("assets/CeraRoundPro-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg-cream: #f9f3e9;
  --paper: rgba(255, 250, 241, 0.82);
  --paper-strong: rgba(255, 250, 241, 0.94);
  --ink: #0d0d0c;
  --ink-soft: rgba(13, 13, 12, 0.70);
  --line: rgba(13, 13, 12, 0.22);
  --line-strong: rgba(13, 13, 12, 0.84);
  --blush: #e96561;
  --blush-soft: rgba(233, 101, 97, 0.16);
  --gold: #9c783b;
  --gold-soft: rgba(156, 120, 59, 0.20);
  --shadow: 0 28px 80px rgba(17, 14, 10, 0.16);
  --display-font: "CeraRoundProDastur", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --body-font: "CeraRoundProDastur", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--body-font);
  background: var(--bg-cream);
  overflow-x: hidden;
  padding-bottom: 160px;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; display: block; }
button, a { font: inherit; }
a { color: inherit; }

.fixed-background {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image: url("assets/background-mobile.webp");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
.fixed-background::before {
  content: "";
  position: absolute;
  left: -76px;
  top: -78px;
  width: clamp(230px, 34vw, 430px);
  aspect-ratio: 1 / 1;
  z-index: 0;
  pointer-events: none;
  opacity: .18;
  background-image: url("assets/round.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  animation: roundBgSpin 36s linear infinite;
  transform-origin: center;
}
@keyframes roundBgSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.fixed-background::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(249,243,233,.36) 0%, rgba(249,243,233,.70) 42%, rgba(249,243,233,.88) 100%),
    radial-gradient(circle at 18% 12%, rgba(255,255,255,.72), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(255,255,255,.24), transparent 34%);
}

.invitation-shell {
  position: relative;
  isolation: isolate;
}

.band {
  position: relative;
  width: 100%;
  min-height: 82svh;
  display: grid;
  align-items: center;
  padding: clamp(76px, 13vw, 132px) clamp(18px, 6vw, 96px);
  border-block: 1px solid var(--line);
  overflow: hidden;
}
.band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255,250,241,.90), rgba(255,250,241,.54) 54%, rgba(255,250,241,.78)),
    linear-gradient(180deg, rgba(255,255,255,.20), rgba(156,120,59,.05));
  backdrop-filter: blur(2px);
}
.band::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 18px;
  width: min(360px, 68vw);
  height: 56px;
  transform: translateX(-50%) scaleX(.72);
  opacity: .16;
  background-image: url("assets/h1.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transform-origin: center;
  transition: transform 900ms cubic-bezier(.2,.75,.2,1), opacity 900ms ease;
}
.band.is-visible::after { transform: translateX(-50%) scaleX(1); opacity: .24; }

.band-dark::before {
  background:
    linear-gradient(90deg, rgba(16,16,15,.86), rgba(16,16,15,.58) 54%, rgba(16,16,15,.82)),
    linear-gradient(180deg, rgba(0,0,0,.12), rgba(156,120,59,.12));
}
.band-dark { color: var(--bg-cream); border-color: rgba(255,250,241,.20); }
.band-dark .eyebrow,
.band-dark .section-subtitle,
.band-dark .section-lead,
.band-dark .line-text { color: rgba(255,250,241,.78); }
.band-dark .section-title::after { filter: invert(1); opacity: .34; }
.band-dark .fine-rule { background: rgba(255,250,241,.42); }

.section-inner {
  width: min(100%, 1060px);
  margin-inline: auto;
  position: relative;
}
.section-inner.narrow { width: min(100%, 820px); }
.section-inner.wide { width: min(100%, 1180px); }
.align-left { margin-left: 0; margin-right: auto; }
.align-right { margin-left: auto; margin-right: 0; }
.center { text-align: center; }

.hero {
  min-height: 100svh;
  padding-top: clamp(84px, 13vw, 150px);
  padding-bottom: clamp(90px, 14vw, 160px);
}
.hero::before {
  background:
    linear-gradient(90deg, rgba(255,250,241,.94), rgba(255,250,241,.58) 46%, rgba(255,250,241,.22) 100%),
    radial-gradient(circle at 28% 42%, rgba(233,101,97,.10), transparent 24%);
}
.hero-inner { max-width: 720px; margin-left: 0; }
.hero-ornament {
  width: min(250px, 58vw);
  margin-bottom: 28px;
  opacity: .65;
  filter: contrast(1.2);
}
.occasion {
  margin: 0 0 16px;
  font: 300 clamp(54px, 14vw, 112px)/.92 var(--display-font);
  letter-spacing: .01em;
}
.names {
  margin: 0;
  font: 300 clamp(34px, 9vw, 70px)/1.02 var(--display-font);
  letter-spacing: .01em;
}
.hero-separator {
  width: min(410px, 78vw);
  height: 80px;
  margin: 18px 0 12px;
  opacity: .66;
  background-image: url("assets/h4.svg");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
}
.event-line {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  align-items: center;
  margin-top: 14px;
  font-size: clamp(16px, 3.8vw, 21px);
  text-transform: uppercase;
  letter-spacing: .13em;
}
.event-line span {
  position: relative;
  color: var(--ink-soft);
}
.event-line span + span::before {
  content: "";
  position: absolute;
  left: -13px;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--blush);
  transform: translateY(-50%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--ink-soft);
  font-size: 12px;
  letter-spacing: .34em;
  text-transform: uppercase;
}
.section-title {
  margin: 0;
  font: 300 clamp(34px, 8.8vw, 74px)/1.02 var(--display-font);
  letter-spacing: .01em;
}
.section-title::after {
  content: "";
  display: block;
  width: min(300px, 68vw);
  height: 52px;
  margin-top: 14px;
  background-image: url("assets/h1.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
  opacity: .42;
}
.center .section-title::after { margin-inline: auto; background-position: center; }
.section-subtitle,
.section-lead {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 4vw, 23px);
  line-height: 1.72;
}
.center .section-subtitle, .center .section-lead { margin-inline: auto; }

.invitation-text {
  font-size: clamp(17px, 4vw, 22px);
  line-height: 1.84;
  letter-spacing: .01em;
}
.invitation-text p { margin: 0 0 1.15em; }
.invitation-text p:first-child {
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.host-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: grid;
  gap: 12px;
}
.host-list li {
  font: 500 clamp(30px, 8vw, 56px)/1.08 var(--display-font);
}
.host-ornament {
  position: absolute;
  right: min(4vw, 36px);
  top: 50%;
  width: clamp(110px, 24vw, 220px);
  aspect-ratio: 1/1;
  transform: translateY(-50%);
  opacity: .12;
  background-image: url("assets/round.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}

.timeline-list {
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line-strong);
}
.timeline-item {
  display: grid;
  grid-template-columns: minmax(74px, 140px) 1fr;
  gap: clamp(16px, 4vw, 38px);
  align-items: center;
  min-height: 118px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  transform: translateX(-26px);
  opacity: 0;
  transition: transform 800ms cubic-bezier(.2,.75,.2,1), opacity 800ms ease;
}
.is-visible .timeline-item { transform: translateX(0); opacity: 1; }
.timeline-item:nth-child(2) { transition-delay: 90ms; }
.timeline-item:nth-child(3) { transition-delay: 180ms; }
.timeline-item:nth-child(4) { transition-delay: 270ms; }
.timeline-time {
  font: 500 clamp(28px, 7vw, 50px)/1 var(--display-font);
  color: var(--ink);
}
.timeline-title {
  font-size: clamp(18px, 4.2vw, 26px);
  line-height: 1.4;
}
.timeline-item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 46px;
  height: 46px;
  opacity: .20;
  transform: translateY(-50%);
  background-image: url("assets/m6.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.photo-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(280px, 1.18fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}
.photo-frame {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 0;
  box-shadow: var(--shadow);
  background: var(--paper-strong);
  border-top: 6px solid var(--ink);
  border-bottom: 6px solid var(--ink);
}
.photo-frame::before,
.photo-frame::after {
  content: "";
  position: absolute;
  z-index: 2;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: .78;
}
.photo-frame::before {
  left: -38px;
  top: -38px;
  width: 170px;
  height: 170px;
  background-image: url("assets/round.svg");
}
.photo-frame::after {
  right: -32px;
  bottom: -26px;
  width: 260px;
  height: 120px;
  background-image: url("assets/h8.svg");
  background-position: right bottom;
  transform: rotate(180deg);
}
.photo-frame img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.03) saturate(.92);
}
.photo-caption {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 14px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.venue-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
}
.venue-details {
  display: grid;
  gap: 16px;
  margin-top: 30px;
  font-size: clamp(18px, 4.4vw, 28px);
  line-height: 1.45;
}
.venue-hall { font-weight: 800; letter-spacing: .02em; }
.venue-street, .venue-city { color: var(--ink-soft); }
.map-button {
  min-width: min(100%, 260px);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 17px 28px;
  border: 1px solid var(--ink);
  color: var(--bg-cream);
  background: var(--ink);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 13px;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease;
}
.map-button:hover { transform: translateY(-2px); background: transparent; color: var(--ink); }
.map-button::before {
  content: "";
  width: 30px;
  height: 18px;
  background-image: url("assets/m6.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: invert(1);
  transition: filter 220ms ease;
}
.map-button:hover::before { filter: none; }

.footer-band {
  min-height: 38svh;
  text-align: center;
}
.footer-ornament {
  width: min(360px, 76vw);
  margin: 0 auto 24px;
  opacity: .36;
}
.footer-text {
  margin: 0;
  font: 500 clamp(34px, 9vw, 70px)/1 var(--display-font);
}

.audio-player {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  display: none;
  align-items: center;
  gap: 10px;
  max-width: calc(100vw - 36px);
  padding: 10px 14px;
  background: rgba(255,250,241,.88);
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(0,0,0,.12);
  backdrop-filter: blur(8px);
}
.audio-player.is-active { display: flex; }
.audio-player button {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--bg-cream);
  cursor: pointer;
}
.audio-title {
  min-width: 0;
  max-width: 180px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 13px;
}

[data-empty="true"], .hidden { display: none !important; }

.js .reveal .section-inner,
.js .reveal.hero .hero-inner {
  opacity: 0;
  transform: translateX(-46px);
  transition: transform 950ms cubic-bezier(.2,.75,.2,1), opacity 850ms ease;
}
.js .reveal.align-reveal-right .section-inner { transform: translateX(46px); }
.js .reveal.is-visible .section-inner,
.js .reveal.hero.is-visible .hero-inner {
  opacity: 1;
  transform: translateX(0);
}

@media (min-width: 600px) {
  .fixed-background {
    background-image: url("assets/background-desktop.webp");
    background-position: center center;
  }
}
@media (min-width: 900px) {
  .band { min-height: 86vh; }
  .hero-inner { padding-left: clamp(18px, 5vw, 80px); }
  .timeline-list {
    grid-template-columns: repeat(3, minmax(0,1fr));
    border-top: 1px solid var(--line-strong);
    border-bottom: 1px solid var(--line-strong);
  }
  .timeline-item {
    display: block;
    min-height: 260px;
    padding: 34px 28px 52px 0;
    border-bottom: 0;
    border-right: 1px solid var(--line);
  }
  .timeline-item:last-child { border-right: 0; }
  .timeline-time { margin-bottom: 38px; }
  .timeline-item::after { right: 28px; top: auto; bottom: 28px; transform: none; }
}
@media (max-width: 899px) {
  .photo-grid, .venue-layout { grid-template-columns: 1fr; }
  .venue-layout { align-items: start; }
  .map-button { width: 100%; }
  .host-ornament { right: -50px; opacity: .10; }
}
@media (max-width: 599px) {
  .band { min-height: 76svh; padding-inline: 20px; }
  .hero { min-height: 100svh; align-items: end; }
  .hero::before { background: linear-gradient(180deg, rgba(255,250,241,.20), rgba(255,250,241,.72) 45%, rgba(255,250,241,.96)); }
  .hero-inner { max-width: 100%; }
  .hero-ornament { margin-bottom: 18px; }
  .event-line { display: grid; gap: 9px; }
  .event-line span + span::before { display: none; }
  .section-title::after { height: 44px; }
  .photo-frame, .photo-frame img { min-height: 360px; }
  .footer-band { min-height: 32svh; }
}

/* Updated typography, calendar, and vertical program layout */
.occasion,
.names,
.section-title,
.host-list li,
.timeline-time,
.footer-text {
  letter-spacing: -.028em;
}
.occasion,
.names,
.section-title {
  font-weight: 300;
}
.section-title::after {
  display: none !important;
  content: none !important;
}
.hero-separator {
  margin-top: 22px;
}
.calendar-card {
  width: min(372px, 100%);
  margin-top: 28px;
  padding: 18px 18px 20px;
  background: rgba(255, 250, 241, .84);
  border: 1px solid rgba(13, 13, 12, .22);
  box-shadow: 0 18px 56px rgba(17, 14, 10, .10);
  backdrop-filter: blur(6px);
}
.calendar-month-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink);
}
.calendar-month-title::after {
  content: "♥";
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  color: var(--blush);
  background: var(--blush-soft);
  font-size: 14px;
  letter-spacing: 0;
}
.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}
.calendar-weekdays {
  margin-bottom: 8px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
}
.calendar-day {
  position: relative;
  min-height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid transparent;
  font-size: 13px;
  line-height: 1;
  color: var(--ink);
}
.calendar-day.is-muted {
  opacity: .32;
}
.calendar-day.is-event {
  border-color: var(--ink);
  background: rgba(13, 13, 12, .92);
  color: var(--bg-cream);
  font-weight: 500;
  box-shadow: 0 10px 26px rgba(13, 13, 12, .18);
}
.calendar-day.is-event .heart {
  position: absolute;
  right: -5px;
  top: -8px;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  color: var(--blush);
  background: #fffaf1;
  border: 1px solid rgba(13, 13, 12, .16);
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
}
.program-layout {
  display: grid;
  grid-template-columns: minmax(58px, 120px) minmax(0, 1fr);
  gap: clamp(22px, 5vw, 78px);
  align-items: start;
}
.program-title-rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 430px;
}
.program-title-rail .eyebrow {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  margin: 0 0 22px;
  letter-spacing: .28em;
}
.program-title {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  white-space: nowrap;
  font-size: clamp(42px, 8vw, 74px);
  line-height: .92;
}
.timeline-list {
  margin: 0;
  padding: 0 0 0 clamp(18px, 4vw, 46px);
  border-top: 0;
  border-left: 1px solid var(--line-strong);
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.timeline-item {
  display: grid;
  grid-template-columns: minmax(86px, 150px) minmax(0, 1fr);
  gap: clamp(14px, 4vw, 42px);
  align-items: center;
  min-height: 126px;
  padding: 28px 0;
  border-right: 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: calc(-1 * clamp(18px, 4vw, 46px) - 8px);
  top: 50%;
  width: 15px;
  height: 15px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: var(--bg-cream);
  transform: translateY(-50%);
  box-shadow: inset 0 0 0 4px rgba(233,101,97,.34);
}
.timeline-time {
  margin-bottom: 0 !important;
  color: var(--ink);
}
.timeline-title {
  font-weight: 400;
}
.timeline-item::after {
  right: 0;
  left: auto;
  top: 50%;
  bottom: auto;
  width: 40px;
  height: 40px;
  transform: translateY(-50%);
  opacity: .14;
}
@media (min-width: 900px) {
  .timeline-list {
    grid-template-columns: 1fr;
    border-top: 0;
    border-bottom: 0;
    border-left: 1px solid var(--line-strong);
  }
  .timeline-item {
    display: grid;
    min-height: 138px;
    padding: 30px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .timeline-item:last-child { border-bottom: 0; }
  .timeline-item::after { right: 0; top: 50%; bottom: auto; transform: translateY(-50%); }
}
@media (max-width: 599px) {
  .fixed-background::before {
    left: -105px;
    top: -88px;
    width: 260px;
    opacity: .15;
  }
  .calendar-card {
    padding: 15px 14px 17px;
  }
  .calendar-day { min-height: 31px; font-size: 12px; }
  .program-layout {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 16px;
  }
  .program-title-rail { min-height: 390px; }
  .program-title-rail .eyebrow { display: none; }
  .program-title { font-size: clamp(38px, 12vw, 50px); }
  .timeline-list { padding-left: 18px; }
  .timeline-item {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: 112px;
    padding-right: 28px;
  }
  .timeline-item::before { left: -26px; }
  .timeline-item::after { width: 28px; height: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
  .js .reveal .section-inner,
  .js .reveal.hero .hero-inner,
  .timeline-item {
    opacity: 1;
    transform: none;
  }
}


/* Final update: lighter h1/h2 titles, clean photo frame, rotating round ornament */
h1,
h2,
.occasion,
.names,
.section-title {
  font-family: "CeraRoundProDastur", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 300 !important;
}
.photo-frame::before,
.photo-frame::after {
  display: none !important;
  content: none !important;
}
.fixed-background::before {
  background-image: url("assets/round.svg");
  animation: roundBgSpin 36s linear infinite;
  opacity: .20;
}
@media (max-width: 599px) {
  .fixed-background::before {
    opacity: .16;
  }
}


/* Final update: all bold text switched to light font, clean photo preview, subtle hair breeze animation */
body :is(h1, h2, h3, h4, h5, h6, strong, b, .occasion, .names, .section-title, .venue-hall, .map-button, .timeline-time, .calendar-month-title, .calendar-weekdays span, .calendar-day.is-event, .footer-text, .host-list li, .invitation-text p:first-child, .event-line, .event-line span, .audio-title, .audio-toggle, .eyebrow, .photo-caption) {
  font-weight: 300 !important;
}
.photo-frame::before,
.photo-frame::after {
  display: none !important;
  content: none !important;
}
.fixed-background {
  overflow: hidden;
}
.fixed-background .hair-breeze {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("assets/background-mobile.webp");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  will-change: transform;
  opacity: .99;
}
.fixed-background .hair-breeze-feather {
  clip-path: polygon(56% 5%, 78% 5%, 84% 28%, 65% 30%, 54% 16%);
  mask-image: radial-gradient(circle at 69% 18%, #000 58%, transparent 76%);
  -webkit-mask-image: radial-gradient(circle at 69% 18%, #000 58%, transparent 76%);
  transform-origin: 66% 26%;
  animation: hairFeatherBreeze 6.4s ease-in-out infinite alternate;
}
.fixed-background .hair-breeze-strand {
  clip-path: polygon(80% 24%, 98% 24%, 100% 60%, 78% 60%);
  mask-image: radial-gradient(circle at 89% 41%, #000 56%, transparent 74%);
  -webkit-mask-image: radial-gradient(circle at 89% 41%, #000 56%, transparent 74%);
  transform-origin: 84% 30%;
  animation: hairStrandBreeze 7.2s ease-in-out infinite alternate;
}
@media (min-width: 600px) {
  .fixed-background .hair-breeze {
    background-image: url("assets/background-desktop.webp");
    background-position: center center;
  }
  .fixed-background .hair-breeze-feather {
    clip-path: polygon(72% 8%, 86% 8%, 89% 29%, 73% 31%, 69% 18%);
    mask-image: radial-gradient(circle at 79% 18%, #000 58%, transparent 76%);
    -webkit-mask-image: radial-gradient(circle at 79% 18%, #000 58%, transparent 76%);
    transform-origin: 78% 24%;
  }
  .fixed-background .hair-breeze-strand {
    clip-path: polygon(77% 21%, 91% 21%, 93% 55%, 77% 55%);
    mask-image: radial-gradient(circle at 84% 39%, #000 56%, transparent 74%);
    -webkit-mask-image: radial-gradient(circle at 84% 39%, #000 56%, transparent 74%);
    transform-origin: 82% 30%;
  }
}
@keyframes hairFeatherBreeze {
  0% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(2px, -1px, 0) rotate(1deg); }
  100% { transform: translate3d(-1px, 1px, 0) rotate(-1.2deg); }
}
@keyframes hairStrandBreeze {
  0% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(1px, 2px, 0) rotate(1.8deg); }
  100% { transform: translate3d(-1px, -1px, 0) rotate(-1.4deg); }
}
@media (prefers-reduced-motion: reduce) {
  .fixed-background::before,
  .fixed-background .hair-breeze {
    animation: none !important;
  }
}
