/* ============================================
   Wedding Site — Aaron Prasad & Nathiya
   The Site IS the Card — editorial pass
   Real artwork as canvas. Typography leads.
   ============================================ */

:root {
  /* Palette — extracted from card art */
  --wash-sky: #eef0f5;
  --wash-lavender: #e8e6f0;
  --paper-cream: #faf5ec;
  --paper-warm: #f5e8d8;
  --sage: #a8b5a0;
  --sage-deep: #7a8a72;
  --accent-purple: #5b2a5e;
  --accent-purple-soft: #8a5a8c;
  --accent-pink: #8b4a5e;
  --accent-pink-soft: #b5687c;
  --floral-lavender: #9b8aa6;
  --floral-pink: #e8b8c8;
  --ink: #2a2230;
  --ink-muted: #6a5f6f;
  --hairline: rgba(139, 74, 94, 0.18);
  --focus: var(--accent-purple);

  /* Typography — only three fonts site-wide:
     Cinzel = HEADER (names, section titles, date numbers)
     Jost   = SUBHEADER / labels / eyebrows / date stripes / buttons / form labels
     EB Garamond = BODY / prose (parents lines, ledes, venue values, FAQ answers) */
  --font-display: 'Cinzel', Georgia, serif;
  --font-sub: 'Jost', system-ui, -apple-system, sans-serif;
  --font-body: 'EB Garamond', Georgia, serif;

  /* Scale */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;
  --space-6: 6rem;
  --space-7: 8rem;
  --radius: 4px;
  --max-width: 36rem;

  /* ============================================
     TYPE SCALE — every font size lives here.
     Change one token and all elements in that role
     resize together. These are the current approved
     sizes (a consolidation, not a rescale — nothing
     changed visually except parents, bumped to 1.7).
     ============================================ */
  /* Display — Cinzel */
  --fs-hero-name: clamp(2.4rem, 9vw, 5.25rem);
  --fs-section:   clamp(2rem, 5.5vw, 3.25rem);
  --fs-inv-name:  clamp(1.7rem, 5.5vw, 2.75rem);
  --fs-numeral:   clamp(3.5rem, 9vw, 5rem);
  /* Prose — EB Garamond
     (the three emphasis lines are FLUID: they hit the max on
     desktop/tablet and shrink on narrow phones so they self-fit;
     min · preferred(vw) · max) */
  --fs-parents:   clamp(1.35rem, 5.5vw, 1.7rem);
  --fs-lede:      clamp(1.1rem, 4.5vw, 1.3rem);
  --fs-connector: clamp(1.05rem, 4.2vw, 1.25rem);
  --fs-body:      1.1875rem;
  --fs-detail:    1.4rem;
  --fs-prose-sm:  1.05rem;
  /* Labels — Jost */
  --fs-date-hero:    1.2rem;
  --fs-eyebrow:      1.15rem;
  --fs-date-word:    0.95rem;
  --fs-date-word-lg: 1.05rem;
  --fs-year:         0.85rem;
  --fs-eyebrow-sm:   0.8rem;

  /* ============================================
     LIQUID GLASS — itinerary card controls
     Baked from the demo: blur 2 · tint 6 · light · refraction on.
     Adjust these tokens to retune; nothing else needs to change.
     - To DISABLE refraction: delete " url(#liquid)" from --glass-filter.
     - For DARK glass: change brightness(1.04) to ~brightness(0.85)
       and raise the tint alphas below.
     ============================================ */
  --glass-filter: blur(2px) saturate(180%) brightness(1.04) url(#liquid);
  --glass-tint-top: rgba(255, 255, 255, 0.14);    /* tint 6 → 0.06 + 0.08 */
  --glass-tint-bottom: rgba(255, 255, 255, 0.024); /* tint 6 → 0.06 × 0.4  */
  --glass-edge: rgba(255, 255, 255, 0.45);
  --glass-radius: 30px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; }
img, svg { max-width: 100%; display: block; }

html {
  -webkit-text-size-adjust: 100%;
  /* No scroll-behavior: smooth — Lenis handles it */
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper-cream);
  overflow-x: hidden;
  min-height: 100vh;
}

/* Lenis required styles */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: clip; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.04em;
  margin: 0 0 var(--space-3);
  color: var(--accent-purple);
}

p { margin: 0 0 var(--space-2); }

a {
  color: var(--accent-purple);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color 0.2s;
}
a:hover { color: var(--accent-pink); }

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ============================================
   Section base
   ============================================ */

.section {
  padding: var(--space-6) var(--space-3);
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
}

.section__heading {
  font-size: var(--fs-section);
  text-align: center;
  margin-bottom: var(--space-4);
}

.section__lede {
  text-align: center;
  color: var(--ink-muted);
  margin-bottom: var(--space-4);
  font-size: var(--fs-prose-sm);
}

/* ============================================
   HERO — handhold.jpg as canvas, names lead
   Soft cream overlay so the image whispers,
   typography carries the composition.
   ============================================ */

.section--hero {
  min-height: 100vh;
  max-width: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: var(--space-5) var(--space-3) var(--space-7);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Hero background on its own layer so it can parallax (transform = GPU-cheap).
   Oversized + offset so the scroll translate never reveals an edge. */
.hero__bg {
  position: absolute;
  left: 0;
  right: 0;
  top: -12%;
  height: 124%;
  z-index: 0;
  background:
    linear-gradient(
      180deg,
      rgba(250, 245, 236, 0.45) 0%,
      rgba(250, 245, 236, 0.35) 45%,
      rgba(250, 245, 236, 0.55) 100%
    ),
    url("assets/handhold.jpg") center / cover no-repeat;
  will-change: transform;
}

/* Hero content above the bg + petals (scroll-cue keeps its own absolute pos) */
.section--hero > .hero__eyebrow,
.section--hero > .hero__names,
.section--hero > .hero__date-stripe {
  position: relative;
  z-index: 2;
}
.hero__scroll-cue { z-index: 2; }

/* Drifting blossom petals — JS-injected; absent entirely for reduced-motion */
.hero__petals {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.hero__petal {
  position: absolute;
  top: -8%;
  left: var(--x);
  width: var(--size);
  height: calc(var(--size) * 1.25);
  background: radial-gradient(circle at 30% 30%, var(--floral-pink), var(--floral-lavender));
  border-radius: 100% 0 100% 0;
  opacity: 0;
  filter: blur(0.3px);
  animation: petal-fall var(--dur) linear var(--delay) infinite;
}

@keyframes petal-fall {
  0%   { opacity: 0;         transform: translate3d(0, 0, 0) rotate(0deg); }
  12%  { opacity: var(--op); }
  88%  { opacity: var(--op); }
  100% { opacity: 0;         transform: translate3d(var(--drift), 112vh, 0) rotate(var(--rot)); }
}

.hero__eyebrow {
  font-family: var(--font-sub);
  font-weight: 400;
  font-size: var(--fs-eyebrow);
  text-transform: uppercase;
  color: var(--ink-muted);
  letter-spacing: 0.28em;
  margin-bottom: var(--space-3);
}

.hero__names {
  font-family: var(--font-display);
  font-size: var(--fs-hero-name);
  font-weight: 500;
  line-height: 1.12;
  color: var(--accent-purple);
  margin: 0 0 var(--space-3);
  letter-spacing: 0.03em;
  text-shadow: 0 1px 3px rgba(250, 245, 236, 0.6);
}

.hero__amp {
  display: block;
  font-size: 0.62em;
  color: var(--accent-pink);
  margin: 0.05em 0;
  font-family: var(--font-display);
}

.hero__date-stripe {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  margin: var(--space-4) auto 0;
  max-width: 26rem;
  width: 100%;
}

.date-stripe__rule {
  flex: 1;
  height: 0;
  border-top: 1px solid var(--accent-pink);
  border-bottom: 1px solid var(--accent-pink);
  padding: 1px 0;
  min-width: 1rem;
}

.date-stripe__text {
  font-family: var(--font-sub);
  font-size: var(--fs-date-hero);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-pink);
  white-space: nowrap;
  font-weight: 500;
}

.hero__scroll-cue {
  position: absolute;
  bottom: var(--space-4);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
  font-family: var(--font-sub);
  font-size: var(--fs-eyebrow-sm);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.hero__chevron {
  font-size: 1.25rem;
  line-height: 1;
  color: var(--accent-pink);
  animation: nudge 2s ease-in-out infinite;
}

@keyframes nudge {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50% { transform: translateY(4px); opacity: 1; }
}

/* ============================================
   INVITATION — flower-bands.png as canvas
   ============================================ */

.section--invitation {
  text-align: center;
  padding: var(--space-7) var(--space-3);
  max-width: none;
  background:
    linear-gradient(
      180deg,
      rgba(250, 245, 236, 0.55) 0%,
      rgba(250, 245, 236, 0.45) 50%,
      rgba(250, 245, 236, 0.7) 100%
    ),
    url("assets/flower-bands.png") center/cover no-repeat;
}

.invitation__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.invitation__line {
  font-family: var(--font-body);
  font-size: var(--fs-parents);
  letter-spacing: 0.01em;
  color: var(--ink);
  margin: 0 0 var(--space-1);
  font-weight: 500;
}

.invitation__connector {
  font-family: var(--font-body);
  font-style: italic;
  color: var(--ink-muted);
  font-size: var(--fs-connector);
  margin: var(--space-2) 0;
}

.invitation__lede {
  font-family: var(--font-body);
  font-style: italic;
  color: var(--ink-muted);
  margin: var(--space-4) auto;
  max-width: 30rem;
  font-size: var(--fs-lede);
  line-height: 1.55;
}

.invitation__names {
  font-family: var(--font-display);
  font-size: var(--fs-inv-name);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.2;
  color: var(--accent-purple);
  margin-top: var(--space-3);
}

/* ============================================
   EVENTS — full-bleed watercolor canvases
   Each section is a page of the watercolor world.
   Details sit on a translucent paper card so the
   canvas reads behind them.
   ============================================ */

.section--event {
  position: relative;
  overflow: hidden;
  text-align: center;
  min-height: 100vh;
  max-width: none;
  padding: var(--space-7) var(--space-3);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section--event > * {
  position: relative;
  z-index: 1;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

/* Decor divs in markup are no longer needed — canvas is the section bg */
.event__decor { display: none; }

.event__eyebrow {
  font-family: var(--font-sub);
  font-size: var(--fs-eyebrow-sm);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent-pink);
  margin-bottom: var(--space-2);
  font-weight: 500;
}

/* Date stripe — mirrors card back's "SATURDAY — 28 — AT 9:00 AM" treatment */
.event__date-stripe {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  max-width: 32rem;
  margin: var(--space-4) auto;
  width: 100%;
  padding: 0 0.25rem;
}

.event__date-rule {
  flex: 1;
  min-width: 0.5rem;
  height: 0;
  border-top: 1px solid var(--accent-pink);
  border-bottom: 1px solid var(--accent-pink);
  padding: 1px 0;
}

.event__date-side {
  flex: 0 0 auto;
  font-family: var(--font-sub);
  font-size: var(--fs-date-word);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
  white-space: nowrap;
}

.event__date-center {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 0 0.5rem;
}

.event__date-month {
  font-family: var(--font-sub);
  font-size: var(--fs-date-word);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
}

.event__date-day {
  font-family: var(--font-display);
  font-size: var(--fs-numeral);
  line-height: 0.9;
  color: var(--accent-purple);
  margin: 0;
}

.event__date-year {
  font-family: var(--font-sub);
  font-size: var(--fs-year);
  letter-spacing: 0.3em;
  color: var(--ink-muted);
}

/* Detail list */
.event__details {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin: var(--space-5) auto var(--space-4);
  max-width: 40rem;
  text-align: center;
}

.event__row {
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--hairline);
}

.event__row:last-child { border-bottom: none; }

.event__row dt {
  font-family: var(--font-sub);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-pink);
  margin-bottom: 0.4rem;
  font-weight: 500;
}

.event__row dd {
  margin: 0;
  font-size: var(--fs-detail);
  color: var(--ink);
  line-height: 1.45;
}

.event__cta {
  text-align: center;
  margin-top: var(--space-4);
}

/* Shared canvas for ceremony + reception combined.
   hero.png spans BOTH pages as one continuous painting.
   PROPORTIONS: size is "auto 130%" — the "auto" keeps the
   gazebo at its true aspect ratio (no elongation), the 130% +
   bottom-anchor make it tall enough to crop off the pale sky so
   colour sits behind BOTH cards. The cost of staying
   proportional in this tall/narrow spread is a zoom into the
   central gazebo column, so the corner trees fall outside the
   frame. (To bring the side trees back you must STRETCH instead,
   e.g. "100% 160%", which re-elongates the gazebo — it's one or
   the other in this geometry.) */
.events-spread {
  position: relative;
  overflow: hidden;
  background-color: var(--paper-cream);
  background-image:
    linear-gradient(
      180deg,
      rgba(250, 245, 236, 0.22) 0%,
      rgba(250, 245, 236, 0.10) 50%,
      rgba(250, 245, 236, 0.22) 100%
    ),
    url("assets/hero.png");
  background-size: 100% 100%, auto 130%;
  background-position: center, center bottom;
  background-repeat: no-repeat, no-repeat;
}

/* Individual event sections are transparent — let the
   shared canvas show through. Drop the 100vh min so the
   image doesn't get marooned in cream space. */
.event--ceremony,
.event--reception {
  background: transparent;
  min-height: auto;
  padding: var(--space-5) var(--space-3);
}

/* ============================================
   LIQUID GLASS — itinerary cards
   Apple-style frosted glass: SVG displacement refraction
   (#liquid in index.html) + modest blur + light gradient
   tint + edge highlights. Tune via --glass-* tokens in :root.
   ============================================ */
.event__details {
  border-radius: var(--glass-radius);
  background: linear-gradient(to bottom, var(--glass-tint-top), var(--glass-tint-bottom));
  -webkit-backdrop-filter: var(--glass-filter);
  backdrop-filter: var(--glass-filter);
  border: 1px solid var(--glass-edge);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.65),
    inset 0 -1px 1px rgba(255, 255, 255, 0.18),
    0 12px 40px rgba(60, 40, 70, 0.30);
  padding: var(--space-4) var(--space-3);
}

/* SVG filter host — present in DOM, takes no space. Not display:none
   (that breaks filter refs in some browsers). */
.lg-filter {
  position: absolute;
  width: 0;
  height: 0;
  pointer-events: none;
}

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-family: var(--font-sub);
  font-size: 0.8125rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid var(--accent-purple);
  border-radius: var(--radius);
  cursor: pointer;
  background: transparent;
  color: var(--accent-purple);
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.btn:hover {
  background: var(--accent-purple);
  color: var(--paper-cream);
  text-decoration: none;
}

.btn--primary {
  background: var(--accent-purple);
  color: var(--paper-cream);
  width: 100%;
  padding: 1rem;
  font-size: 0.875rem;
}

.btn--primary:hover {
  background: var(--accent-pink);
  border-color: var(--accent-pink);
}

.btn--ghost {
  border-color: var(--accent-pink);
  color: var(--accent-pink);
}

.btn--ghost:hover {
  background: var(--accent-pink);
  color: var(--paper-cream);
}

/* ============================================
   RSVP — paper card on cream
   ============================================ */

/* RSVP — hero-withoutgazebo.png as a full-bleed canvas,
   stretched so the trees stay locked to the left and right
   edges as the section's natural border. */
.section--rsvp {
  max-width: none;
  padding: var(--space-6) var(--space-3);
  background-color: var(--paper-cream);
  background-image:
    linear-gradient(
      180deg,
      rgba(250, 245, 236, 0.3) 0%,
      rgba(250, 245, 236, 0.45) 50%,
      rgba(250, 245, 236, 0.4) 100%
    ),
    url("assets/hero-withoutgazebo.png");
  background-size: 100% 100%, 100% 100%;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
}

.section--rsvp > * {
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

/* RSVP form — same Liquid Glass as the itinerary cards
   (shares the --glass-* tokens). */
.rsvp-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-3);
  border-radius: var(--glass-radius);
  background: linear-gradient(to bottom, var(--glass-tint-top), var(--glass-tint-bottom));
  -webkit-backdrop-filter: var(--glass-filter);
  backdrop-filter: var(--glass-filter);
  border: 1px solid var(--glass-edge);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.65),
    inset 0 -1px 1px rgba(255, 255, 255, 0.18),
    0 12px 40px rgba(60, 40, 70, 0.30);
}

@media (min-width: 600px) {
  .rsvp-form { padding: var(--space-5) var(--space-4); }
}

.field { display: flex; flex-direction: column; gap: 0.5rem; }

.field[hidden] { display: none; }

.field label,
.field legend {
  font-family: var(--font-sub);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
}

.req { color: var(--accent-pink); margin-left: 0.15rem; }

.optional {
  color: var(--ink-muted);
  font-weight: 400;
  font-style: italic;
  font-size: 0.95em;
  margin-left: 0.25rem;
  text-transform: none;
  letter-spacing: 0;
}

.field__hint {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink-muted);
  font-style: italic;
}

.field input[type="text"],
.field select,
.field textarea {
  width: 100%;
  padding: 0.875rem;
  font-family: inherit;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  color: var(--ink);
  transition: border-color 0.2s, background 0.2s;
}

.field select { cursor: pointer; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent-pink);
  background: white;
  outline: none;
}

.field textarea { resize: vertical; min-height: 4rem; }

.field--group {
  border: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.field--group legend { margin-bottom: 0.5rem; padding: 0; line-height: 1.5; }

.radio {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-body);
  font-size: var(--fs-prose-sm);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  cursor: pointer;
  padding: 0.625rem 0.875rem;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.6);
  color: var(--ink);
  transition: all 0.2s;
}

.radio input { margin: 0; accent-color: var(--accent-purple); }

.radio:has(input:checked) {
  border-color: var(--accent-purple);
  background: var(--accent-purple);
  color: var(--paper-cream);
}

/* ============================================
   FAQ
   ============================================ */

.section--faq {
  max-width: none;
  padding: var(--space-6) var(--space-3);
  background:
    linear-gradient(
      180deg,
      rgba(250, 245, 236, 0.78) 0%,
      rgba(250, 245, 236, 0.68) 100%
    ),
    url("assets/flower-bands.png") center center / cover no-repeat;
}

.section--faq > * {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.faq__item {
  border-bottom: 1px solid var(--hairline);
  padding: var(--space-2) 0;
}

.faq__item:first-of-type { border-top: 1px solid var(--hairline); }

.faq__item summary {
  cursor: pointer;
  font-family: var(--font-sub);
  font-weight: 500;
  font-size: var(--fs-prose-sm);
  color: var(--ink);
  padding: var(--space-1) 0;
  list-style: none;
  position: relative;
  padding-right: 2.5rem;
  letter-spacing: 0.01em;
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--accent-pink);
  line-height: 1;
  font-family: var(--font-sub);
  font-weight: 300;
}

.faq__item[open] summary::after { content: "–"; }

.faq__item p {
  margin-top: var(--space-2);
  color: var(--ink-muted);
  font-size: var(--fs-prose-sm);
  padding-right: 2rem;
  line-height: 1.55;
}

/* ============================================
   Footer — wildflower band from flower-bands.png
   ============================================ */

.footer {
  text-align: center;
  padding: 16rem var(--space-3) var(--space-5);
  color: var(--ink-muted);
  font-family: var(--font-body);
  font-size: 0.875rem;
  position: relative;
  background: var(--paper-cream);
  max-width: none;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 14rem;
  background-image: url("assets/flower-bands.png");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  pointer-events: none;
}

.footer__credit {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--accent-purple);
  margin-bottom: var(--space-2);
}

.footer__year {
  font-family: var(--font-sub);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  color: var(--ink-muted);
  text-transform: uppercase;
}

/* ============================================
   Utilities
   ============================================ */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================
   Responsive
   ============================================ */

@media (min-width: 720px) {
  .btn--primary { width: auto; min-width: 18rem; }
  .rsvp-form .btn--primary { align-self: center; }
  .event__date-side { font-size: var(--fs-date-word-lg); }
  .event__date-month { font-size: var(--fs-date-word-lg); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__chevron { animation: none; }
  .hero__petals { display: none; }
}
