/* ============================================================
   Rodalyn & Andrii — Garden Wedding Invite
   Editorial "quiet luxury" garden theme.
     · fixed garden backdrop behind every section
     · envelope-opening intro (wax seal + lid + letter)
     · depth-layered falling petals over the whole page
   Type: Cormorant Garamond (display + italic signatures) · Jost (UI)
   ============================================================ */

:root {
  /* Motif: powder blue + blush pink, with cream base & antique gold */
  --blue-deep: #3f4f60;  /* deep dusty blue — panels, titles, footer */
  --blue: #5c7488;       /* dusty blue — primary accent, buttons, labels */
  --powder: #aec6d8;     /* powder blue — light accent */
  --powder-soft: #d4e2ec;
  --blush: #e3c0c2;      /* blush pink — romantic accent */
  --blush-deep: #cf9ea2;
  --cream: #f6f1e7;
  --cream-2: #efe7d8;
  --stone: #b3a892;      /* warm taupe hairlines / secondary */
  --gold: #b99a5b;       /* muted antique gold, used sparingly */
  --ink: #3c4650;        /* soft slate for body text on light */

  /* legacy aliases so any stray references still resolve */
  --green-deep: var(--blue-deep);
  --green: var(--blue);
  --sage: var(--powder);

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", system-ui, sans-serif;
}

* { box-sizing: border-box; }

/* The [hidden] attribute must always win. Author rules like `.field { display: block }`
   otherwise override the UA's `[hidden] { display: none }`, which would leak the
   plus-one block onto invitations that were never given a plus one. */
[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--serif);
  color: var(--ink);
  background: var(--green-deep);
  font-size: 20px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.intro-open { overflow: hidden; }

/* ============================================================
   SEAMLESS BACKDROP
   ============================================================ */
.bg-garden {
  position: fixed; inset: 0; z-index: -3;
  background: url("assets/hero.jpg") center top / cover no-repeat;
}
.bg-veil {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background: linear-gradient(180deg,
    rgba(63,79,96,0.24) 0%,
    rgba(63,79,96,0.08) 20%,
    rgba(246,241,231,0.32) 55%,
    rgba(246,241,231,0.5) 100%);
}
/* faint film grain adds a tactile, editorial finish */
.grain {
  position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================================
   TYPE PRIMITIVES
   ============================================================ */
/* no z-index here: it would trap children below the front petal layer,
   letting the mounted plates lift above it instead */
.site { position: relative; }
section { padding: 6.5rem 1.5rem; text-align: center; position: relative; }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.42em;
  font-size: 0.66rem;
  font-weight: 400;
  color: var(--green);
  margin: 0 0 1.1rem;
  padding-left: 0.42em; /* optically balance the tracking */
}
.eyebrow--light { color: var(--cream); opacity: 0.82; }
.eyebrow--sm { font-size: 0.58rem; letter-spacing: 0.34em; margin-bottom: 0.6rem; }

.section__title {
  font-size: clamp(2.1rem, 5.5vw, 3.4rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  margin: 0 0 2rem;
  color: var(--green-deep);
}
.panel--deep .section__title { color: var(--cream); }

.signature { font-family: var(--serif); font-style: italic; font-weight: 500; color: var(--green); }

/* hairline divider with a small open diamond */
.rule { display: flex; align-items: center; justify-content: center; gap: 0.9rem; margin: 0 auto 1.9rem; }
.rule span { width: 46px; height: 1px; background: var(--stone); opacity: 0.7; }
.rule i { width: 6px; height: 6px; border: 1px solid var(--gold); transform: rotate(45deg); }
.rule--light span { background: var(--cream); opacity: 0.4; }
.rule--light i { border-color: var(--blush); }

/* ============================================================
   BUTTONS / LINKS
   ============================================================ */
.btn {
  display: inline-block;
  font-family: var(--sans);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 400;
  padding: 0.95rem 2.4rem;
  background: var(--green);
  color: var(--cream);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}
.btn:hover { background: var(--blue-deep); transform: translateY(-1px); box-shadow: 0 10px 24px rgba(40,50,62,0.25); }
.btn--ghost { background: transparent; border: 1px solid rgba(246,241,231,0.7); color: var(--cream); }
.btn--ghost:hover { background: rgba(246,241,231,0.12); box-shadow: none; }
.btn--small { padding: 0.7rem 1.6rem; font-size: 0.64rem; background: transparent; color: var(--green); border: 1px solid var(--stone); }
.panel--deep .btn--small { color: var(--cream); border-color: rgba(246,241,231,0.55); }
.btn--small:hover { background: var(--green); color: var(--cream); border-color: var(--green); box-shadow: none; }

.link-arrow {
  font-family: var(--sans); font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--green); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 0.25s;
}
.link-arrow:hover { border-bottom-color: var(--gold); }

/* ============================================================
   TRANSLUCENT PANELS
   ============================================================ */
/* NOTE: no backdrop-filter here on purpose — it creates a stacking context
   that would trap the mounted plates below the front petal layer (and it's
   expensive on mobile). Slightly higher alpha compensates for the lost blur. */
.panel { background: rgba(246,241,231,0.88); }
.panel--deep { background: rgba(63,79,96,0.88); color: var(--cream); }
.panel--deep .eyebrow { color: var(--cream); opacity: 0.82; }

/* ============================================================
   ENVELOPE INTRO
   ============================================================ */
.intro {
  position: fixed; inset: 0; z-index: 100;
  display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(120% 90% at 50% 22%, rgba(120,142,163,0.45), rgba(52,64,78,0.94)),
    url("assets/hero.jpg") center / cover no-repeat;
  transition: opacity 0.9s ease, visibility 0.9s ease;
}
.intro.done { opacity: 0; visibility: hidden; pointer-events: none; }
.intro__stage { text-align: center; perspective: 1400px; }
.intro__hint {
  font-family: var(--sans); text-transform: uppercase; letter-spacing: 0.38em;
  font-size: 0.66rem; color: var(--cream); margin-top: 2.6rem; padding-left: 0.38em;
  animation: pulse 2.4s ease-in-out infinite;
}
.intro__hint.hide { opacity: 0; transition: opacity 0.4s; }
@keyframes pulse { 0%,100% { opacity: 0.4; } 50% { opacity: 1; } }

.envelope {
  position: relative; width: min(342px, 82vw); height: min(226px, 54vw);
  cursor: pointer; transform-style: preserve-3d;
  transition: transform 0.9s ease, opacity 0.9s ease; outline: none;
}
.envelope:focus-visible { box-shadow: 0 0 0 3px rgba(223,195,191,0.8); border-radius: 6px; }
.envelope__back {
  position: absolute; inset: 0; border-radius: 6px;
  background: linear-gradient(160deg, #f2ebdd, #e6dbc5);
  box-shadow: 0 34px 70px rgba(0,0,0,0.46); z-index: 1;
}
.envelope__letter {
  position: absolute; left: 6%; right: 6%; top: 8%;
  padding: 1.5rem 1.1rem;
  background: linear-gradient(180deg, #fffdf8, #f5eee0);
  border-radius: 3px; box-shadow: 0 8px 24px rgba(0,0,0,0.18); z-index: 2;
  transform: translateY(0);
  transition: transform 1.05s cubic-bezier(.2,.7,.2,1) 0.45s;
}
.envelope__eyebrow { font-family: var(--sans); text-transform: uppercase; letter-spacing: 0.28em; font-size: 0.5rem; color: var(--green); margin: 0 0 0.6rem; }
.envelope__names { font-family: var(--serif); font-size: 2rem; margin: 0.1rem 0 0.5rem; color: var(--green-deep); letter-spacing: 0.01em; }
.envelope__names span { font-style: italic; color: var(--gold); }
.envelope__invite { font-family: var(--serif); font-style: italic; font-size: 0.92rem; color: var(--ink); margin: 0; }
.envelope__guest { font-family: var(--serif); font-style: italic; color: var(--gold); font-size: 1.15rem; margin: 0.6rem 0 0; }
.envelope__pocket {
  position: absolute; inset: 0; border-radius: 6px; z-index: 3;
  background: linear-gradient(160deg, #ebe1cd, #dccdb1);
  clip-path: polygon(0 26%, 50% 66%, 100% 26%, 100% 100%, 0 100%);
}
.envelope__lid {
  position: absolute; top: 0; left: 0; right: 0; height: 74%;
  background: linear-gradient(160deg, #e6dbc5, #d6c6a8);
  border-radius: 6px 6px 0 0; clip-path: polygon(0 0, 100% 0, 50% 92%);
  transform-origin: top center; transform: rotateX(0deg);
  transition: transform 0.85s ease, background 0.4s; z-index: 6; backface-visibility: hidden;
}
.envelope__seal {
  position: absolute; left: 50%; top: 50%; width: 92px; height: 92px;
  transform: translate(-50%, -50%); z-index: 8;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.35));
  transition: transform 0.55s ease, opacity 0.55s ease;
}
.envelope.open { cursor: default; }
.envelope.open .envelope__seal { opacity: 0; transform: translate(-50%, 10px) scale(0.55) rotate(-12deg); }
.envelope.open .envelope__lid { transform: rotateX(178deg); z-index: 2; background: #d1c1a2; }
.envelope.open .envelope__letter { transform: translateY(-64%); z-index: 7; }
.envelope.lift { transform: translateY(-14%) scale(1.04); opacity: 0; transition: transform 0.9s ease 0.7s, opacity 0.8s ease 0.9s; }

/* ============================================================
   FALLING PETALS — two layers for depth
   ============================================================ */
.petals { position: fixed; inset: 0; pointer-events: none; overflow: hidden; }
.petals--back { z-index: 0; }     /* behind the frosted panels */
.petals--front { z-index: 45; }   /* drifting in front of content */
.petal {
  position: absolute; top: -10vh; width: var(--size, 26px); height: auto;
  opacity: var(--op, 0.9); will-change: transform;
  animation: petal-fall var(--dur, 13s) linear var(--delay, 0s) infinite;
}
.petals--front .petal { filter: blur(0.4px); }
@keyframes petal-fall {
  0%   { transform: translate3d(0, -12vh, 0) rotate(0deg); }
  100% { transform: translate3d(var(--drift, 60px), 116vh, 0) rotate(var(--spin, 360deg)); }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  color: var(--cream); position: relative; padding: 2rem 1.5rem;
  text-shadow: 0 2px 22px rgba(40,50,62,0.5);
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(64% 46% at 50% 50%, rgba(48,60,74,0.5), rgba(48,60,74,0.14) 60%, transparent 80%);
}
.hero__inner { position: relative; z-index: 2; }
.hero__names {
  margin: 0.5rem 0 0.4rem; display: flex; flex-direction: column;
  line-height: 0.98; font-weight: 400;
}
.hero__name { font-size: clamp(3.3rem, 13vw, 7rem); letter-spacing: -0.02em; }
.hero__amp { font-style: italic; font-weight: 400; font-size: clamp(1.8rem, 6vw, 3rem); color: var(--blush); margin: 0.1rem 0; }
.hero__sub {
  font-family: var(--sans); letter-spacing: 0.4em; text-transform: uppercase;
  font-size: 0.78rem; margin: 0.6rem 0 0.6rem; padding-left: 0.4em; opacity: 0.95;
}
.hero__greeting { font-size: 1.9rem; color: var(--cream); margin: 0.4rem 0 1rem; }
.hero__meta { font-family: var(--sans); letter-spacing: 0.24em; font-size: 0.78rem; margin: 0 0 2rem; opacity: 0.92; }
.hero__scroll { position: absolute; bottom: 1.8rem; z-index: 2; animation: bob 2.4s ease-in-out infinite; }
.hero__scroll span { display: block; width: 1px; height: 46px; background: linear-gradient(var(--cream), transparent); opacity: 0.8; }
@keyframes bob { 0%,100% { transform: translateY(0); opacity: 0.8; } 50% { transform: translateY(8px); opacity: 0.4; } }

/* ============================================================
   DATE / COUNTDOWN (naked numerals, hairline separators)
   ============================================================ */
.date__day { font-size: clamp(1.7rem, 4.4vw, 2.5rem); color: var(--green-deep); font-weight: 400; margin: 0 0 0.2rem; }
.date__year { font-family: var(--sans); letter-spacing: 0.28em; text-transform: uppercase; font-size: 0.66rem; color: var(--green); margin: 0 0 2.6rem; }
.countdown { display: flex; justify-content: center; align-items: stretch; margin: 0 auto 2.4rem; max-width: 440px; }
.cd { flex: 1; position: relative; padding: 0 0.5rem; }
.cd + .cd::before { content: ""; position: absolute; left: 0; top: 12%; bottom: 12%; width: 1px; background: var(--stone); opacity: 0.5; }
.cd span { display: block; font-size: clamp(2.2rem, 8vw, 3.2rem); font-weight: 300; color: var(--green-deep); line-height: 1; font-variant-numeric: tabular-nums; }
.cd small { font-family: var(--sans); text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.56rem; color: var(--green); margin-top: 0.6rem; display: block; }

.cal { display: flex; gap: 1.4rem; align-items: center; justify-content: center; flex-wrap: wrap; }
.cal__alt { font-family: var(--sans); font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--green); text-decoration: none; border-bottom: 1px solid transparent; cursor: pointer; transition: border-color 0.25s; }
.cal__alt:hover { border-bottom-color: var(--gold); }

/* ============================================================
   WELCOME NOTE
   ============================================================ */
.note { padding-top: 6rem; padding-bottom: 6rem; }

/* watercolour portrait of the couple, mounted like a painted plate.
   z-index lifts it above the front petals so none drift across their faces. */
.portrait { margin: 0 auto 2.6rem; width: min(330px, 74vw); position: relative; z-index: 46; }
.portrait__art {
  display: block; width: 100%; height: auto;
  border-radius: 3px;
  border: 1px solid rgba(185,154,91,0.45);
  box-shadow: 0 22px 46px rgba(16,24,34,0.42);
  opacity: 0; transform: translateY(22px) scale(0.985);
  transition: opacity 1.1s ease, transform 1.2s cubic-bezier(.2,.7,.2,1);
}
.note.visible .portrait__art { opacity: 1; transform: none; }

.note__open { font-size: 2.2rem; color: var(--blush); margin: 0 0 1.5rem; }
.note__card { max-width: 620px; margin: 0 auto; }
.note__card p { margin: 0; font-size: 1.15rem; }
.note__sign { font-size: 2.4rem; color: var(--blush); margin: 1.8rem 0 0; }

/* ============================================================
   SCHEDULE
   ============================================================ */
.timeline { max-width: 540px; margin: 0 auto; text-align: left; }
.timeline__item {
  display: grid; grid-template-columns: 116px 1fr; gap: 1.4rem; align-items: baseline;
  padding: 1.35rem 0; border-bottom: 1px solid rgba(179,168,146,0.4);
}
.timeline__item:last-child { border-bottom: none; }
.timeline__time { font-family: var(--serif); font-size: 1.5rem; color: var(--gold); font-weight: 500; }
.timeline__time em { font-style: italic; font-size: 0.8rem; letter-spacing: 0.04em; }
.timeline__label { font-size: 1.2rem; color: var(--green-deep); display: flex; flex-direction: column; }
.timeline__sub { font-family: var(--sans); font-size: 0.68rem; letter-spacing: 0.08em; color: var(--green); text-transform: uppercase; margin-top: 0.25rem; }

/* ============================================================
   VENUE
   ============================================================ */
.venue__grid { display: flex; gap: 1.8rem; justify-content: center; flex-wrap: wrap; max-width: 880px; margin: 0 auto; }
.venue__card { flex: 1 1 320px; max-width: 400px; text-align: center; }
.venue__name { font-size: 1.9rem; color: var(--green-deep); margin: 0 0 0.3rem; font-weight: 400; }
.venue__addr { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); margin: 0 0 1.1rem; }
.venue__map { border-radius: 4px; overflow: hidden; box-shadow: 0 14px 34px rgba(40,50,62,0.2); border: 1px solid rgba(179,168,146,0.5); }
.venue__map iframe { display: block; width: 100%; height: 220px; border: 0; filter: saturate(0.9) contrast(0.98); }
.venue__card .link-arrow { display: inline-block; margin-top: 1rem; }

/* hand-painted illustration of the reception grounds */
.estate { margin: 3.5rem auto 0; max-width: 880px; position: relative; z-index: 46; }
.estate__art {
  display: block; width: 100%; height: auto;
  border-radius: 3px;
  border: 1px solid rgba(179,168,146,0.5);
  box-shadow: 0 16px 34px rgba(40,50,62,0.18);
  opacity: 0; transform: translateY(24px);
  transition: opacity 1.1s ease, transform 1.2s cubic-bezier(.2,.7,.2,1) 0.15s;
}
.venue.visible .estate__art { opacity: 1; transform: none; }
.estate__cap {
  font-family: var(--sans); font-size: 0.62rem; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--blue); opacity: 0.85; margin-top: 1.1rem;
}

/* ============================================================
   DRESS CODE
   ============================================================ */
.dress__figure { margin: 0.5rem auto 1.6rem; width: min(330px, 74vw); position: relative; }
.dress__figure::after {
  content: ""; position: absolute; inset: -6% -4% -2%; z-index: -1; border-radius: 50% 50% 46% 46% / 60% 60% 40% 40%;
  background: radial-gradient(60% 60% at 50% 42%, rgba(246,241,231,0.22), transparent 70%);
}
.dress__art {
  display: block; width: 100%; height: auto;
  filter: drop-shadow(0 16px 34px rgba(0,0,0,0.3));
  opacity: 0; transform: translateY(24px);
  transition: opacity 1s ease, transform 1.1s cubic-bezier(.2,.7,.2,1);
}
.dress.visible .dress__art { opacity: 1; transform: none; }
.dress__text { max-width: 540px; margin: 0 auto 2.4rem; font-size: 1.12rem; }
.palette { display: flex; gap: 1.4rem; justify-content: center; list-style: none; padding: 0; margin: 0; flex-wrap: wrap; }
.palette li { display: flex; flex-direction: column; align-items: center; gap: 0.55rem; }
.palette small { font-family: var(--sans); font-size: 0.56rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--cream); opacity: 0.8; }
.swatch {
  width: 42px; height: 42px; border-radius: 50%; background: var(--c);
  box-shadow: 0 3px 10px rgba(0,0,0,0.28); border: 1px solid rgba(246,241,231,0.5);
  transform: scale(0); transition: transform 0.5s cubic-bezier(.2,1.3,.4,1);
}
.dress.visible .palette li:nth-child(1) .swatch { transition-delay: 0.1s; transform: scale(1); }
.dress.visible .palette li:nth-child(2) .swatch { transition-delay: 0.2s; transform: scale(1); }
.dress.visible .palette li:nth-child(3) .swatch { transition-delay: 0.3s; transform: scale(1); }
.dress.visible .palette li:nth-child(4) .swatch { transition-delay: 0.4s; transform: scale(1); }
.dress.visible .palette li:nth-child(5) .swatch { transition-delay: 0.5s; transform: scale(1); }

/* ============================================================
   TRAVEL & GIFTS
   ============================================================ */
.cards { display: flex; gap: 1.6rem; justify-content: center; flex-wrap: wrap; max-width: 900px; margin: 0 auto; }
.info-card {
  flex: 1 1 240px; max-width: 300px; text-align: center;
  background: rgba(255,255,255,0.5); border: 1px solid rgba(179,168,146,0.45);
  border-radius: 4px; padding: 2rem 1.6rem;
}
.info-card p:last-child { margin: 0; font-size: 1.02rem; color: var(--ink); }
.gifts__text { max-width: 560px; margin: 0 auto; font-size: 1.18rem; font-style: italic; color: var(--cream); }

/* ============================================================
   RSVP
   ============================================================ */
.rsvp__deadline { margin: -0.6rem 0 2rem; opacity: 0.9; font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; }
.rsvp__form {
  max-width: 480px; margin: 0 auto; text-align: left;
  background: var(--cream); color: var(--ink);
  padding: 2.2rem; border-radius: 4px; box-shadow: 0 24px 56px rgba(0,0,0,0.3);
}
.field { display: block; margin-bottom: 1.3rem; }
.field > span, .field legend { display: block; font-family: var(--sans); font-size: 0.66rem; letter-spacing: 0.16em; color: var(--green); margin-bottom: 0.5rem; text-transform: uppercase; }
.field input[type="text"], .field textarea {
  width: 100%; padding: 0.75rem 0.9rem; border: 1px solid var(--stone); border-radius: 3px;
  font-family: var(--serif); font-size: 1.05rem; background: #fff; color: var(--ink);
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(92,116,136,0.18); }
fieldset.field { border: none; padding: 0; margin: 0 0 1.3rem; }
.radio, .check { display: flex; align-items: center; gap: 0.55rem; font-family: var(--serif); font-size: 1.05rem; margin: 0.35rem 0; text-transform: none; letter-spacing: 0; color: var(--ink); }
.radio input, .check input { accent-color: var(--green); }
.plusone { background: #f0ece1; border: 1px solid rgba(179,168,146,0.5); border-radius: 4px; padding: 1.1rem; }
.plusone__name { margin-top: 0.85rem; margin-bottom: 0; }
.hidden-field { position: absolute; left: -9999px; }
.rsvp__status { font-family: var(--sans); font-size: 0.8rem; margin-top: 1rem; min-height: 1.2em; letter-spacing: 0.04em; }
.rsvp__status.ok { color: var(--green); }
.rsvp__status.err { color: #b23b3b; }
.rsvp__form .btn { width: 100%; margin-top: 0.5rem; border-radius: 3px; }

/* ============================================================
   FOOTER
   ============================================================ */
.foot { background: rgba(52,64,78,0.92); color: var(--cream); text-align: center; padding: 4rem 1.5rem; }
.foot__names { font-size: 2.8rem; margin: 0; color: var(--blush); }
.foot__tag { font-family: var(--sans); letter-spacing: 0.24em; text-transform: uppercase; font-size: 0.66rem; color: var(--cream); opacity: 0.82; margin-top: 0.7rem; }

/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 560px) {
  body { font-size: 18px; }
  section { padding: 5rem 1.25rem; }
  .timeline__item { grid-template-columns: 92px 1fr; gap: 1rem; }
  .cd small { letter-spacing: 0.12em; }
}

@media (prefers-reduced-motion: reduce) {
  .petal { animation-duration: 26s; }
  .hero__scroll, .intro__hint { animation: none; }
  html { scroll-behavior: auto; }
  .reveal { transition: opacity 0.4s ease; transform: none; }
}
