/* ==========================================================================
   Oliver & Aida — wedding site
   ========================================================================== */

/* --------------------------------------------------------------------------
   Design tokens
   -------------------------------------------------------------------------- */

:root {
  /* Color — sage botanical palette on warm cream */
  --color-bg:           #f5f1ea;
  --color-bg-sunk:      #efe9de;
  --color-text:         #2d3327;
  --color-text-muted:   #5a604f;   /* 6:1 on --color-bg — AA ✓ */
  --color-accent:       #7a8a6b;   /* sage — decorative / large text only (3.1:1) */
  --color-accent-strong:#556347;   /* AA-safe sage for body-size text (4.6:1) */
  --color-gold:         #b8954a;   /* decorative / large text only (2.9:1) */
  --color-gold-strong:  #8a6d2f;   /* AA-safe gold for body-size text (4.6:1) */
  --color-rule:         #d9d2c2;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-script:  'Pinyon Script', 'Cormorant Garamond', Georgia, cursive;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  /* Type scale */
  --fs-micro:  0.75rem;   /* 12px — eyebrows, meta */
  --fs-small:  0.875rem;  /* 14px — captions, footer */
  --fs-body:   1rem;      /* 16px — default */
  --fs-lead:   1.125rem;  /* 18px — lead paragraph */
  --fs-h3:     clamp(1.5rem,  1.3rem + 1vw, 1.875rem);
  --fs-h2:     clamp(2rem,    1.6rem + 2vw, 2.75rem);
  --fs-h1:     clamp(3.25rem, 2.2rem + 5.5vw, 6.5rem);

  /* Line-heights */
  --lh-tight: 1.1;
  --lh-snug:  1.3;
  --lh-body:  1.65;

  /* Tracking */
  --tracking-wide:   0.18em;
  --tracking-normal: 0.01em;

  /* Spacing — 8pt-ish, fluid where useful */
  --space-2xs: 0.25rem;
  --space-xs:  0.5rem;
  --space-sm:  0.75rem;
  --space-md:  1rem;
  --space-lg:  1.5rem;
  --space-xl:  2.5rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-section: clamp(2.75rem, 1.75rem + 3.5vw, 5rem);

  /* Layout */
  --measure:           36rem;   /* ideal reading width */
  --container:         56rem;   /* outer max-width */
  --container-narrow:  40rem;
  --page-gutter:       clamp(1.25rem, 4vw, 2.5rem);

  /* Motion */
  --ease-out: cubic-bezier(0.2, 0.7, 0.2, 1);
  --dur-sm:   180ms;
  --dur-md:   320ms;

  /* Z-index scale */
  --z-dialog:   100;
  --z-backdrop: 90;
}

/* --------------------------------------------------------------------------
   Reset
   -------------------------------------------------------------------------- */

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

html {
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body,
h1, h2, h3, h4, p,
figure, blockquote,
dl, dd, ul, ol {
  margin: 0;
}

ul, ol {
  padding: 0;
  list-style: none;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

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

/* --------------------------------------------------------------------------
   Base typography
   -------------------------------------------------------------------------- */

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  font-weight: 400;
  /* Warm vignette — depth without weight */
  background-image:
    radial-gradient(ellipse 80% 60% at 50% 0%,   rgba(184, 149, 74, 0.06), transparent 60%),
    radial-gradient(ellipse 60% 50% at 50% 100%,  rgba(122, 138, 107, 0.05), transparent 60%);
  background-attachment: fixed;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: var(--lh-tight);
  color: var(--color-text);
}

h1 { font-size: var(--fs-h1); letter-spacing: -0.02em;  }
h2 { font-size: var(--fs-h2); letter-spacing: -0.01em;  }
h3 { font-size: var(--fs-h3); letter-spacing: -0.005em; }

p {
  max-width: var(--measure);
}

p + p {
  margin-top: var(--space-md);
}

/* Small all-caps eyebrow label used above section titles */
.eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-micro);
  font-weight: 500;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-accent-strong);
  margin: 0;
  /*
    max-width: none overrides the global p { max-width: var(--measure) } rule.
    Without it, the <p class="eyebrow"> is 36rem wide left-aligned inside a
    40rem container — centering it 2rem left of the h2's true center.
  */
  max-width: none;
}

/* --------------------------------------------------------------------------
   Layout primitives
   -------------------------------------------------------------------------- */

.page {
  display: block;
}

.section {
  --section-bg: var(--color-bg);
  padding-block: var(--space-section);
  padding-inline: var(--page-gutter);
  background-color: var(--section-bg);
}

.section--sunk {
  --section-bg: var(--color-bg-sunk);
}

.section__inner {
  max-width: var(--container);
  margin-inline: auto;
}

.section__inner--narrow {
  max-width: var(--container-narrow);
}

.section__header {
  margin-bottom: var(--space-xl);
  text-align: center;
}

.section__header > .eyebrow + h2 {
  margin-top: var(--space-xs);
}

/* Thin gold accent rule — connects heading to content, echoes invitation typography */
.section__header h2::after {
  content: "";
  display: block;
  width: 2rem;
  height: 1px;
  background-color: var(--color-gold);
  margin: var(--space-md) auto 0;
  opacity: 0.55;
}

/* --------------------------------------------------------------------------
   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;
}

/* --------------------------------------------------------------------------
   Hero entrance animations
   Uses animation-fill-mode: both so elements start in their `from` state
   before the delay fires. Disabled entirely under prefers-reduced-motion.
   -------------------------------------------------------------------------- */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(0.75rem); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__tagline { animation: fadeUp 480ms var(--ease-out)  60ms both; }
.hero__title   { animation: fadeUp 520ms var(--ease-out) 200ms both; }
.hero__date    { animation: fadeUp 480ms var(--ease-out) 360ms both; }
.hero__place   { animation: fadeUp 400ms var(--ease-out) 460ms both; }
.hero__cta     { animation: fadeUp 380ms var(--ease-out) 560ms both; }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-2xl) var(--page-gutter);
  text-align: center;
  position: relative;
}

/* Scroll-invite line — static, no continuous animation (per UX guidelines) */
.hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: var(--space-xl);
  width: 1px;
  height: var(--space-xl);
  background: linear-gradient(to bottom, transparent, var(--color-gold));
  transform: translateX(-50%);
  opacity: 0.4;
}

.hero__inner {
  max-width: var(--container-narrow);
}

.hero__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.125rem, 1rem + 0.6vw, 1.5rem);
  line-height: var(--lh-snug);
  color: var(--color-text-muted);
  margin-inline: auto;
  max-width: 28rem;
  margin-bottom: clamp(2rem, 1rem + 4vw, 4rem);
}

.hero__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(-0.5rem, -0.75rem + 1vw, 0.25rem);
  margin-bottom: clamp(2rem, 1rem + 4vw, 4rem);
}

.hero__name {
  display: block;
  font-family: var(--font-script);
  font-size: clamp(4rem, 2.5rem + 7vw, 8rem);
  line-height: 1.05;
  letter-spacing: 0;
  font-weight: 400;
  color: var(--color-text);
}

.hero__amp {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: clamp(2.5rem, 1.5rem + 4.5vw, 5rem);
  line-height: 1;
  color: var(--color-accent);
  margin-block: clamp(-0.4rem, -0.5rem + 0.3vw, -0.1rem);
}

/* ---- Hero date block — mirrors the printed invitation ---- */

.hero__date {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(1rem, 0.5rem + 3vw, 2.25rem);
  max-width: 28rem;
  margin-inline: auto;
  margin-bottom: var(--space-lg);
}

.hero__date-side {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 500;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-text);
}

.hero__date-side--left  { justify-self: end; }
.hero__date-side--right { justify-self: start; }

.hero__date-center {
  display: grid;
  justify-items: center;
  row-gap: 0.25rem;
  line-height: 1;
}

.hero__date-month,
.hero__date-year {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 500;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-text);
}

.hero__date-day {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(3.25rem, 2.25rem + 4.5vw, 5.5rem);
  line-height: 1;
  color: var(--color-text);
  padding-inline: clamp(0.55em, 0.45em + 0.5vw, 0.75em);
}

.hero__date-day::before,
.hero__date-day::after {
  content: "";
  position: absolute;
  top: 18%;
  bottom: 18%;
  width: 1.5px;
  background-color: var(--color-gold);
}
.hero__date-day::before { left: 0; }
.hero__date-day::after  { right: 0; }

.hero__date-day time {
  font-variant-numeric: lining-nums;
}

.hero__place {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 500;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-text-muted);
  max-width: none;
  margin-top: var(--space-md);
}

/* Quick-access RSVP in the hero */
.hero__cta {
  margin-top: var(--space-xl);
}

/* Ghost variant — secondary to the main RSVP section CTA below */
.hero__cta .btn-rsvp {
  background-color: transparent;
  color: var(--color-text);
}

.hero__cta .btn-rsvp:hover {
  background-color: transparent;
  color: var(--color-gold-strong);
  border-color: var(--color-gold-strong);
}

/* --------------------------------------------------------------------------
   RSVP Button — shared by hero and RSVP section
   Editorial dark contained style; ghost on hover.
   Contrast: cream (#f5f1ea) on dark (#2d3327) = 12.7:1 AAA ✓
   -------------------------------------------------------------------------- */

.btn-rsvp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: var(--fs-micro);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-indent: 0.2em; /* optical compensation for trailing letter-spacing */
  color: var(--color-bg);
  background-color: var(--color-text);
  border: 1.5px solid var(--color-text);
  padding: 0.875em 2.75em;
  cursor: pointer;
  /* Minimum touch target — 44px height */
  min-height: 44px;
  transition:
    background-color var(--dur-sm) var(--ease-out),
    color var(--dur-sm) var(--ease-out);
}

.btn-rsvp:hover {
  background-color: transparent;
  color: var(--color-gold-strong);
  border-color: var(--color-gold-strong);
}

/* Override the global :focus-visible for the button */
.btn-rsvp:focus-visible {
  outline: 2px solid var(--color-gold-strong);
  outline-offset: 4px;
}

/* --------------------------------------------------------------------------
   RSVP section action area
   -------------------------------------------------------------------------- */

.rsvp__action {
  margin-top: var(--space-xl);
  text-align: center;
}

/* --------------------------------------------------------------------------
   The Day — schedule timeline
   -------------------------------------------------------------------------- */

.timeline {
  --timeline-col-time: clamp(3rem, 10vw, 4rem);
  --timeline-gap:      clamp(1.25rem, 4vw, 2rem);

  position: relative;
  max-width: 22rem;
  margin-inline: auto;
}

/* Vertical spine */
.timeline::before {
  content: "";
  position: absolute;
  top: 1.25rem;
  bottom: 1.25rem;
  left: calc(var(--timeline-col-time) + (var(--timeline-gap) / 2));
  width: 1px;
  background-color: var(--color-rule);
  transform: translateX(-0.5px);
}

.timeline__item {
  display: grid;
  grid-template-columns: var(--timeline-col-time) var(--timeline-gap) 1fr;
  align-items: baseline;
  padding-block: var(--space-md);
  position: relative;
}

/* Gold dot on the spine */
.timeline__item::before {
  content: "";
  position: absolute;
  top: 1.55em;
  left: calc(var(--timeline-col-time) + (var(--timeline-gap) / 2));
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--color-gold);
  box-shadow: 0 0 0 4px var(--section-bg);
  transform: translate(-50%, -50%);
}

.timeline__time {
  grid-column: 1;
  text-align: right;
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 500;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-accent-strong);
  line-height: var(--lh-snug);
  margin: 0;
  max-width: none;
}

.timeline__event {
  grid-column: 3;
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  line-height: var(--lh-snug);
  color: var(--color-text);
  margin: 0;
  max-width: none;
}

/* --------------------------------------------------------------------------
   Venue (Ceremony, Dinner & Party)
   -------------------------------------------------------------------------- */

.venue__address {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 500;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-accent-strong);
  text-align: center;
  max-width: none;
  margin-bottom: var(--space-md);
  text-indent: var(--tracking-wide);
}

.venue__note {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.125rem, 1rem + 0.5vw, 1.375rem);
  line-height: 1.45;
  color: var(--color-text-muted);
  text-align: center;
  margin-inline: auto;
  max-width: 30rem;
  margin-bottom: var(--space-lg);
}

.venue__link {
  text-align: center;
  max-width: none;
}

/* --------------------------------------------------------------------------
   Link — understated underline with arrow nudge
   -------------------------------------------------------------------------- */

.link {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4em;
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 500;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-text);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--color-gold);
  transition:
    color var(--dur-sm) var(--ease-out),
    border-color var(--dur-sm) var(--ease-out);
}

.link:hover {
  color: var(--color-gold-strong);
  border-bottom-color: var(--color-gold-strong);
}

.link__arrow {
  display: inline-block;
  transition: transform var(--dur-md) var(--ease-out);
}

.link:hover .link__arrow {
  transform: translateX(0.25em);
}

/* --------------------------------------------------------------------------
   Stay the Night
   -------------------------------------------------------------------------- */

.stay__lede {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--fs-lead);
  line-height: var(--lh-snug);
  color: var(--color-text);
  text-align: center;
  margin-inline: auto;
  max-width: 34rem;
  margin-bottom: var(--space-lg);
}

@media (min-width: 48rem) {
  .stay__lede { font-size: 1.375rem; }
}

.stay__details {
  max-width: 32rem;
  margin-inline: auto;
  padding-block: var(--space-lg);
  border-top: 1px solid var(--color-rule);
  border-bottom: 1px solid var(--color-rule);
  display: grid;
  gap: var(--space-lg);
}

.stay__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xs);
  text-align: center;
}

@media (min-width: 34rem) {
  .stay__row {
    grid-template-columns: 10rem 1fr;
    gap: var(--space-md);
    text-align: left;
    align-items: baseline;
  }
}

.stay__label {
  font-family: var(--font-body);
  font-size: var(--fs-micro);
  font-weight: 500;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-accent-strong);
  margin: 0;
}

.stay__value {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  line-height: var(--lh-snug);
  color: var(--color-text);
  margin: 0;
}

/* --------------------------------------------------------------------------
   Divider — inline SVG botanical sprig
   -------------------------------------------------------------------------- */

.divider {
  display: block;
  width: clamp(12rem, 38vw, 16rem);
  height: auto;
  margin-inline: auto;
  margin-block: var(--space-section);
  color: var(--color-accent);
  opacity: 0.8;
}

/* --------------------------------------------------------------------------
   Prose — generic paragraph block inside a section
   -------------------------------------------------------------------------- */

.prose {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-text);
  text-align: center;
  margin-inline: auto;
  max-width: 32rem;
}

.prose + .prose {
  margin-top: var(--space-md);
}

.prose--lede {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--fs-lead);
  line-height: var(--lh-snug);
  color: var(--color-text);
  max-width: 32rem;
}

@media (min-width: 48rem) {
  .prose--lede { font-size: 1.375rem; }
}

.prose strong {
  font-weight: 500;
  color: var(--color-text);
  font-style: normal;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
  padding: var(--space-2xl) var(--page-gutter) var(--space-xl);
  text-align: center;
  border-top: 1px solid var(--color-rule);
  margin-top: var(--space-section);
}

.site-footer__inner {
  max-width: var(--container-narrow);
  margin-inline: auto;
}

.site-footer__text {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  margin: 0 auto var(--space-lg);
  max-width: none;
}

.site-footer__email {
  color: var(--color-text);
  text-decoration: none;
  border-bottom: 1px solid var(--color-gold);
  padding-bottom: 1px;
  transition:
    color var(--dur-sm) var(--ease-out),
    border-color var(--dur-sm) var(--ease-out);
}

.site-footer__email:hover {
  color: var(--color-gold-strong);
  border-bottom-color: var(--color-gold-strong);
}

.site-footer__mark {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--color-accent);
  margin: 0;
  max-width: none;
  line-height: 1;
}

/* --------------------------------------------------------------------------
   RSVP modal dialog
   -------------------------------------------------------------------------- */

/*
  Enter animation — one-shot, triggered when the dialog has [open].
  Uses transform + opacity (GPU-composited, no layout thrashing).
*/
@keyframes dialogIn {
  from { opacity: 0; transform: translateY(1.25rem) scale(0.99); }
  to   { opacity: 1; transform: translateY(0)       scale(1); }
}

.rsvp-dialog {
  /* Reset UA dialog styles */
  border: none;
  padding: 0;

  /* Size */
  width: min(36rem, calc(100vw - 2rem));
  max-height: min(92svh, 740px);

  /* Cream background — shows through Tally's transparentBackground iframe */
  background: var(--color-bg);

  /* Gold top accent — a subtle nod to the brand token */
  border-top: 2px solid var(--color-gold);

  /* Depth — two-layer shadow: close diffuse + wide ambient */
  box-shadow:
    0 4px 20px rgba(45, 51, 39, 0.10),
    0 28px 64px rgba(45, 51, 39, 0.20);

  /* Clip the scrollable body to the rounded nothing — no radius here intentionally */
  overflow: hidden;

  /* Centering (UA sets margin:auto on dialogs; this reinforces cross-browser) */
  margin: auto;
}

/* Frosted-glass backdrop */
.rsvp-dialog::backdrop {
  background: rgba(45, 51, 39, 0.50);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* Animate on open */
.rsvp-dialog[open] {
  animation: dialogIn 300ms var(--ease-out) both;
}

/* Flex column so header is fixed, body scrolls */
.rsvp-dialog__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  /* min-height: 0 is the flex scroll trick — without it, flex children
     won't shrink below their content height */
  min-height: 0;
}

/* Dialog chrome header */
.rsvp-dialog__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid var(--color-rule);
  flex-shrink: 0;
}

.rsvp-dialog__head .eyebrow {
  /* eyebrow already has no max-width but inherits from <p> — override */
  max-width: none;
}

/* Close button — 44×44 touch target, circular hover fill */
.rsvp-dialog__close {
  display: flex;
  align-items: center;
  justify-content: center;
  /* Visual size */
  width: 1.75rem;
  height: 1.75rem;
  /* Touch target expansion via min sizing */
  min-width: 44px;
  min-height: 44px;
  flex-shrink: 0;
  background: none;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: var(--color-text-muted);
  transition:
    color var(--dur-sm) var(--ease-out),
    background-color var(--dur-sm) var(--ease-out);
}

.rsvp-dialog__close:hover {
  color: var(--color-text);
  background-color: var(--color-bg-sunk);
}

.rsvp-dialog__close:focus-visible {
  outline: 2px solid var(--color-gold-strong);
  outline-offset: 2px;
}

/* Scrollable form area */
.rsvp-dialog__body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  /* Give the Tally iframe breathing room */
  padding: var(--space-lg);
  background: var(--color-bg);
}

/* Tally iframe */
.rsvp-dialog__frame {
  display: block;
  width: 100%;
  border: none;
  /* Initial height — Tally's embed.js will adjust via postMessage
     if it successfully runs and detects the iframe */
  min-height: 480px;
  background: transparent;
}

/* --------------------------------------------------------------------------
   Motion preferences
   -------------------------------------------------------------------------- */

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

  /* Hero entrance — show immediately, no movement */
  .hero__tagline,
  .hero__title,
  .hero__date,
  .hero__place,
  .hero__cta {
    animation: none;
    opacity: 1;
    transform: none;
  }

  /* Dialog enter — appear instantly */
  .rsvp-dialog[open] {
    animation: none;
  }

  /* Link transitions */
  .link,
  .link__arrow,
  .site-footer__email {
    transition: none;
  }

  .link:hover .link__arrow {
    transform: none;
  }

  /* Button transitions */
  .btn-rsvp {
    transition: none;
  }

  /* Close button transitions */
  .rsvp-dialog__close {
    transition: none;
  }
}
