/* ── Variables ─────────────────────────────────────────── */
:root {
  --sage:         #8aab88;   /* front of save-the-date */
  --forest:       #4d6b45;   /* back of save-the-date / secondary bg */
  --gold:         #d4a843;
  --white:        rgba(255, 255, 255, 0.88);
  --muted:        rgba(255, 255, 255, 0.72);
  --card-bg:      rgba(255, 255, 255, 0.10);
  --card-border:  rgba(255, 255, 255, 0.22);
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  background-color: var(--sage);
  color: var(--white);
  overflow-x: hidden;
}

/* ── Nav ───────────────────────────────────────────────── */
nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2.5rem;
  transition: background 0.4s, backdrop-filter 0.4s;
}
nav.scrolled {
  background: rgba(45, 65, 38, 0.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}
.nav-logo {
  font-family: 'Caveat', cursive;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-family: 'Caveat', cursive;
  font-size: 1.15rem;
  color: var(--white);
  text-decoration: none;
  opacity: 0.82;
  transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 1; }

/* hamburger — mobile */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 780px) {
  .nav-links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    background: rgb(45, 65, 38);
    transform: translateX(100%);
    transition: transform 0.35s ease;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 2rem; }
  .nav-toggle { display: flex; z-index: 10002; }
  nav:has(.nav-links.open) {
    background: rgb(45, 65, 38);
    backdrop-filter: none;
  }
}

/* ── Hero ──────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  background-color: var(--sage);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}

.lights-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: clamp(60px, 6.43vw, 90px);
  overflow: hidden;
  pointer-events: none;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 20% 80%, rgba(0, 0, 0, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(0, 0, 0, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-names {
  font-family: 'Caveat', cursive;
  font-size: clamp(4rem, 11vw, 9.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  position: relative;
  color: #ffffff;
}
.hero-amp { opacity: 0.75; font-size: 0.8em; }

@keyframes name-glitch {
  0%   { transform: translate(0,0);      text-shadow: none;                               opacity: 1;   }
  8%   { transform: translate(-5px, 0);  text-shadow:  4px 0 #f55, -4px 0 #5ff;          opacity: 1;   }
  16%  { transform: translate( 5px, 1px); text-shadow: -4px 0 #f55,  4px 0 #5ff;         opacity: 0.7; }
  24%  { transform: translate(-3px,-1px); text-shadow:  2px 0 #f55, -2px 0 #5ff;         opacity: 1;   }
  32%  { transform: translate( 3px, 0);  text-shadow: none;                               opacity: 0.4; }
  40%  { transform: translate(0, 0);     text-shadow: none;                               opacity: 1;   }
  /* text swaps at 380ms */
  52%  { transform: translate(-4px, 1px); text-shadow:  3px 0 #f55, -3px 0 #5ff;         opacity: 0.8; }
  64%  { transform: translate( 4px,-1px); text-shadow: -3px 0 #f55,  3px 0 #5ff;         opacity: 1;   }
  76%  { transform: translate(-2px, 0);  text-shadow:  1px 0 #f55, -1px 0 #5ff;          opacity: 0.9; }
  88%  { transform: translate( 1px, 0);  text-shadow: none;                               opacity: 1;   }
  100% { transform: translate(0, 0);     text-shadow: none;                               opacity: 1;   }
}
.hero-names.glitching {
  animation: name-glitch 0.8s steps(2, end) forwards;
}

.hero-date {
  font-family: 'Caveat', cursive;
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  font-weight: 500;
  margin: 0.6rem 0 0.3rem;
}
.hero-location {
  font-family: 'Caveat', cursive;
  font-size: clamp(1.3rem, 3vw, 2rem);
  opacity: 0.78;
  margin-bottom: 3rem;
}

.hero-photos {
  display: flex;
  justify-content: center;
}

.hero-photo {
  width: min(540px, 88vw);
  height: min(260px, 47vw);
  margin-top: 1.5rem;
  border-radius: 0;
  clip-path: url(#organic-frame);
  flex-shrink: 0;
  position: relative;
  z-index: 10000;
  background: var(--card-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: contrast(0.88);
}
.placeholder-label {
  font-family: 'Caveat', cursive;
  font-size: 1.1rem;
  opacity: 0.45;
  text-align: center;
  line-height: 1.5;
  padding: 1rem;
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  opacity: 0.5;
  animation: float 2.4s ease-in-out infinite;
}
.scroll-hint span { font-family: 'Caveat', cursive; font-size: 0.95rem; }

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(9px); }
}

/* ── Section shell ─────────────────────────────────────── */
section { padding: 6rem 1.5rem; }
.inner {
  max-width: 820px;
  margin: 0 auto;
}
.alt { background-color: var(--forest); }

.section-title {
  font-family: 'Caveat', cursive;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.2rem;
  letter-spacing: 0.01em;
}
.section-lead {
  font-family: 'Caveat', cursive;
  font-size: 1.45rem;
  opacity: 0.8;
  text-align: center;
  margin-bottom: 2rem;
}

p {
  font-size: 1.05rem;
  line-height: 1.85;
  opacity: 0.9;
  margin-bottom: 1.25rem;
}
p:last-child { margin-bottom: 0; }

/* ── Divider flourish ──────────────────────────────────── */
.flourish {
  text-align: center;
  font-family: 'Caveat', cursive;
  font-size: 1.8rem;
  opacity: 0.3;
  margin: 2rem 0;
  letter-spacing: 0.5rem;
}

/* ── Button ────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.85rem 2.8rem;
  border: 2px solid var(--white);
  border-radius: 50px;
  font-family: 'Caveat', cursive;
  font-size: 1.55rem;
  color: var(--white);
  text-decoration: none;
  background: transparent;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, transform 0.2s;
  letter-spacing: 0.02em;
}
.btn:hover { background: var(--white); color: var(--forest); transform: scale(1.03); }
.btn.disabled {
  opacity: 0.45;
  cursor: default;
  pointer-events: none;
}

/* ── Vibes cloud ───────────────────────────────────────── */
.vibes-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.4rem;
  justify-content: center;
  margin: 2.2rem 0 3rem;
}
.vibe {
  font-family: 'Caveat', cursive;
  display: inline-block;
  transform: rotate(var(--r, 0deg));
}

/* ── Timeline ──────────────────────────────────────────── */
.timeline {
  position: relative;
  padding-left: 2.2rem;
  margin-top: 2rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: rgba(255, 255, 255, 0.28);
}
.t-item {
  position: relative;
  margin-bottom: 2.5rem;
  padding-left: 1.4rem;
}
.t-item::before {
  content: '';
  position: absolute;
  left: -2.6rem;
  top: 0.55rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--white);
  opacity: 0.75;
}
.t-day {
  font-family: 'Caveat', cursive;
  font-size: 1.05rem;
  opacity: 0.6;
  margin-bottom: 0.1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.t-title {
  font-family: 'Caveat', cursive;
  font-size: 1.7rem;
  margin-bottom: 0.35rem;
}

/* ── Note callout ──────────────────────────────────────── */
.note {
  background: rgba(255, 255, 255, 0.07);
  border-left: 3px solid rgba(255, 255, 255, 0.38);
  border-radius: 0 8px 8px 0;
  padding: 1rem 1.5rem;
  margin-top: 2rem;
  font-size: 0.97rem;
  line-height: 1.7;
}
.note strong {
  font-weight: 400;
  font-family: 'Caveat', cursive;
  font-size: 1.15rem;
  display: block;
  margin-bottom: 0.3rem;
}

/* ── Cards ─────────────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin: 2rem 0;
}
@media (max-width: 480px) {
  .card-grid { grid-template-columns: 1fr; }
}
.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 1.5rem 1.4rem;
  text-align: center;
  backdrop-filter: blur(6px);
  transition: transform 0.22s, background 0.22s;
  color: inherit;
  text-decoration: none;
  display: block;
}
.card:hover { transform: translateY(-5px); background: rgba(255, 255, 255, 0.16); }
.card-link { color: inherit; text-decoration: none; }
.booking-code-box {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0.5rem 0 1.2rem;
  padding: 0.55rem 1.2rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  font-size: 1rem;
  letter-spacing: 0.02em;
}
.copy-btn {
  background: none;
  border: none;
  color: inherit;
  opacity: 0.55;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  transition: opacity 0.15s;
}
.copy-btn:hover { opacity: 1; }
.card-title {
  font-family: 'Caveat', cursive;
  font-size: 1.85rem;
  margin-bottom: 0.6rem;
}
.card p { font-size: 0.97rem; opacity: 0.82; margin-bottom: 0; }

/* ── Airport cards ─────────────────────────────────────── */
.airport-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}
.airport {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 1.2rem 1.4rem;
  backdrop-filter: blur(6px);
}
.airport-code {
  font-family: 'Caveat', cursive;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
}
.airport-name { font-size: 0.88rem; opacity: 0.7; margin-top: 0.25rem; line-height: 1.4; }

/* ── Photo placeholders ────────────────────────────────── */
.photo-ph {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: var(--card-bg);
  border: 2px dashed var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem 0;
}
.photo-ph.tall   { height: 340px; }
.photo-ph.medium { height: 260px; }
.photo-ph.short  { height: 200px; }
.photo-ph .placeholder-label { font-size: 1rem; }

/* ── Story split layout ────────────────────────────────── */
.story-split {
  display: grid;
  gap: 2rem;
  align-items: center;
  margin: 2.5rem 0;
}
.story-split.img-left  { grid-template-columns: 1fr 1.4fr; }
.story-split.img-right { grid-template-columns: 1.4fr 1fr; }
.story-split .photo-ph { margin: 0; height: 280px; }

@media (max-width: 640px) {
  .story-split.img-left,
  .story-split.img-right { grid-template-columns: 1fr; }
  .story-split .photo-ph { height: 220px; }
}

/* ── Gallery grid ──────────────────────────────────────── */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 180px;
  gap: 0.9rem;
  margin-top: 2rem;
}
.gallery-item {
  background: var(--card-bg);
  border: 2px dashed var(--card-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.22s;
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item.span2r { grid-row: span 2; }
.gallery-item.span2c { grid-column: span 2; }
.gallery-item .placeholder-label { font-size: 0.9rem; }

@media (max-width: 560px) {
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
  .gallery-item.span2c { grid-column: span 1; }
}

/* ── FAQs ───────────────────────────────────────────────── */
.faq-list {
  margin-top: 1.5rem;
}
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.faq-item:first-child {
  border-top: 1px solid rgba(255,255,255,0.2);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  font-size: 1.05rem;
  font-weight: 400;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-bottom: 3px;
}
.faq-item[open] summary::after {
  transform: rotate(-135deg);
  margin-bottom: -3px;
}
.faq-answer {
  padding-bottom: 1.2rem;
  opacity: 0.85;
}
.faq-answer p { margin: 0; }

/* ── RSVP section ──────────────────────────────────────── */
.rsvp-section { background-color: var(--forest); text-align: center; }
.rsvp-section .inner { max-width: 560px; text-align: left; }
.rsvp-section .section-title,
.rsvp-section .section-intro { text-align: center; }

/* ── Footer ────────────────────────────────────────────── */
footer {
  background-color: #2d4126;
  text-align: center;
  padding: 3.5rem 2rem;
}
.footer-names {
  font-family: 'Caveat', cursive;
  font-size: clamp(2.2rem, 6vw, 3.5rem);
  font-weight: 700;
}
.footer-detail {
  font-family: 'Caveat', cursive;
  font-size: 1.3rem;
  opacity: 0.62;
  margin-top: 0.4rem;
}
.footer-love {
  font-family: 'Caveat', cursive;
  font-size: 1rem;
  opacity: 0.35;
  margin-top: 2rem;
}

/* ── Scroll reveal ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── Nav logout ────────────────────────────────────────── */
.nav-logout {
  font-family: 'Caveat', cursive;
  font-size: 1.15rem;
  color: var(--white);
  opacity: 0.5;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.2s;
}
.nav-logout:hover { opacity: 1; }

/* ── Enter page ────────────────────────────────────────── */
.enter-page {
  min-height: 100svh;
  background-color: var(--sage);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.5rem 3rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.enter-card {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  width: min(480px, 92vw);
  margin-top: 2.5rem;
  backdrop-filter: blur(10px);
}

.enter-card-title {
  font-family: 'Caveat', cursive;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.enter-input {
  display: block;
  width: 100%;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.38);
  border-radius: 50px;
  padding: 0.9rem 1.5rem;
  font-family: 'Caveat', cursive;
  font-size: 1.4rem;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  margin-bottom: 1rem;
}
.enter-input::placeholder { color: rgba(255, 255, 255, 0.4); }
.enter-input:focus {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.18);
}

.enter-error {
  font-family: 'Caveat', cursive;
  font-size: 1.1rem;
  opacity: 0.85;
  margin-top: 0.9rem;
  color: #ffd;
}

.result-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 0.9rem 1.2rem;
  margin-bottom: 0.75rem;
  text-align: left;
  transition: background 0.2s;
}
.result-item:hover { background: rgba(255, 255, 255, 0.15); }

.result-name {
  font-family: 'Caveat', cursive;
  font-size: 1.5rem;
  flex: 1;
}

.result-confirm-btn {
  flex-shrink: 0;
  font-family: 'Caveat', cursive;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  color: var(--white);
  padding: 0.4rem 1.1rem;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.result-confirm-btn:hover { background: rgba(255, 255, 255, 0.28); }

.btn-text {
  background: none;
  border: none;
  color: var(--white);
  font-family: 'Caveat', cursive;
  font-size: 1.1rem;
  opacity: 0.6;
  cursor: pointer;
  padding: 0.5rem 0;
  transition: opacity 0.2s;
}
.btn-text:hover { opacity: 1; }

/* ── RSVP form ─────────────────────────────────────────── */
.rsvp-loading {
  font-family: 'Caveat', cursive;
  font-size: 1.4rem;
  opacity: 0.6;
  text-align: center;
  padding: 2rem;
}

.rsvp-notice {
  background: rgba(255, 255, 255, 0.08);
  border-left: 3px solid rgba(255, 255, 255, 0.4);
  border-radius: 0 8px 8px 0;
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
  font-size: 0.97rem;
  line-height: 1.7;
}

.rsvp-guest-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 1.8rem;
  margin-bottom: 1.5rem;
}

.rsvp-guest-name {
  font-family: 'Caveat', cursive;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.form-field { margin-bottom: 1.4rem; }
.form-field:last-child { margin-bottom: 0; }

.form-label {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  display: block;
  margin-bottom: 0.6rem;
}

.form-hint {
  font-size: 0.88rem;
  opacity: 0.65;
  margin-bottom: 0.6rem;
  margin-top: -0.3rem;
}

.radio-group {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.radio-option {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  padding: 0.45rem 1.1rem;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  transition: background 0.15s, border-color 0.15s;
  user-select: none;
}
.radio-option:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}
.radio-option:has(:checked) {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}
.radio-option input[type="radio"] {
  display: none;
}

.checkbox-option {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  cursor: pointer;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
}

.checkbox-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--white);
  cursor: pointer;
  flex-shrink: 0;
}

.attending-details {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.4rem;
  margin-top: 1.2rem;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.form-input {
  display: block;
  width: 100%;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  padding: 0.65rem 1rem;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
  margin-top: 0.6rem;
}
.form-input[hidden] { display: none; }
.form-input::placeholder { color: rgba(255, 255, 255, 0.38); }
.form-input:focus { border-color: rgba(255, 255, 255, 0.65); }

.form-textarea {
  display: block;
  width: 100%;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 12px;
  padding: 1rem 1.1rem;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  color: var(--white);
  outline: none;
  resize: vertical;
  min-height: 110px;
  line-height: 1.65;
  transition: border-color 0.2s;
}
.form-textarea::placeholder { color: rgba(255, 255, 255, 0.38); }
.form-textarea:focus { border-color: rgba(255, 255, 255, 0.65); }

.rsvp-message-section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.rsvp-actions {
  text-align: center;
  margin-top: 2.5rem;
}

.rsvp-status {
  font-family: 'Caveat', cursive;
  font-size: 1.15rem;
  margin-top: 1rem;
  min-height: 1.5rem;
  color: #ffd;
}

.rsvp-success {
  text-align: center;
  padding: 2rem 0;
}

.rsvp-success-title {
  font-family: 'Caveat', cursive;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  margin-bottom: 1rem;
}
