/* ============================================================
   Lauren & Elie · 27/07 + 30/08 2026
   Faire-part papier · Refonte design
   ============================================================ */

:root {
  --bg-page:      #F2E9E2;
  --bg-card:      #FAF4ED;
  --bg-soft:      #F6EDE2;
  --gold:         #C9A84C;
  --gold-deep:    #A8862E;
  --gold-soft:    #E8D9A8;
  --green-sage:   #8B9D7A;
  --green-deep:   #6D7C5F;
  --ink:          #1a1a1a;
  --text:         #2a2a2a;
  --text-muted:   #5a5a5a;
  --text-soft:    #8a8a8a;
  --white:        #ffffff;
  --error:        #b73e3e;
  --success:      #4a7a47;

  --font-script: 'Allura', 'Snell Roundhand', 'Apple Chancery', 'Brush Script MT', cursive;
  --font-serif:  'Cormorant Garamond', 'Times New Roman', Georgia, serif;
  --font-sans:   'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-hebrew: 'David Libre', 'Frank Ruhl Libre', 'Times New Roman', serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-serif);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  padding: 30px 16px 60px;
}

/* Quand l'enveloppe est présente, body sans padding ni scroll */
body:not(.is-revealed):has(.envelope-screen) {
  padding: 0;
  overflow: hidden;
  height: 100vh;
}
body.is-revealed {
  padding: 30px 16px 60px;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ─── Écran enveloppe ──────────────────────────────────────── */
.envelope-screen {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  background: linear-gradient(180deg, #EDE0D0 0%, #E5D3B3 100%);
  overflow: hidden;
}
.envelope-screen__bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 18% 15%, rgba(201, 168, 76, 0.10) 0%, transparent 35%),
    radial-gradient(circle at 82% 78%, rgba(201, 168, 76, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 50% 100%, rgba(139, 157, 122, 0.08) 0%, transparent 45%);
  pointer-events: none;
}
.envelope-screen.is-opening {
  animation: envelope-fade 1.2s ease forwards;
}
@keyframes envelope-fade {
  0%   { opacity: 1; }
  100% { opacity: 0; visibility: hidden; }
}

.envelope {
  position: relative;
  width: 100%;
  max-width: 360px;
  background: var(--bg-card);
  padding: 70px 36px 40px;
  box-shadow:
    0 24px 60px rgba(50, 30, 10, 0.25),
    0 6px 20px rgba(50, 30, 10, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.4);
  text-align: center;
  transform: translateY(0) scale(1);
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: envelope-enter 1s ease forwards;
}
@keyframes envelope-enter {
  0%   { opacity: 0; transform: translateY(20px) scale(0.92); }
  100% { opacity: 1; transform: translateY(0)    scale(1);    }
}
.envelope-screen.is-opening .envelope {
  animation: envelope-out 1.1s cubic-bezier(0.55, 0.06, 0.68, 0.19) forwards;
}
@keyframes envelope-out {
  0%   { transform: translateY(0)    scale(1)   rotate(0deg);   opacity: 1; }
  35%  { transform: translateY(-10px) scale(1.04) rotate(0deg); opacity: 1; }
  100% { transform: translateY(-40px) scale(0.85) rotate(-2deg); opacity: 0; }
}

/* Rabat décoratif au-dessus de l'enveloppe */
.envelope__flap {
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 76px;
  pointer-events: none;
  transform-origin: top center;
  transition: transform 0.8s ease;
}
.envelope-screen.is-opening .envelope__flap {
  transform: rotateX(180deg);
}
.envelope__flap svg { width: 100%; height: 100%; }

.envelope__body {
  position: relative;
  padding-top: 20px;
}
.envelope__corner {
  position: absolute;
  width: 60px; height: 60px;
  opacity: 0.85;
}
.envelope__corner--tl { top: -10px;    left: -10px; }
.envelope__corner--br { bottom: -10px; right: -10px; }

.envelope__logo {
  width: 90px;
  height: auto;
  margin: 0 auto 18px;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(168, 134, 46, 0.15));
  animation: logo-fade 1.3s ease 0.3s both;
}
@keyframes logo-fade {
  from { opacity: 0; transform: scale(0.85); }
  to   { opacity: 1; transform: scale(1);    }
}

.envelope__title {
  font-family: var(--font-script);
  font-size: clamp(48px, 11vw, 62px);
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 14px;
}
.envelope__sep {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 8px 0 14px;
}
.envelope__sep span:first-child,
.envelope__sep span:last-child {
  height: 1px;
  background: var(--gold);
  width: 36px;
}
.envelope__sep span:nth-child(2) {
  color: var(--gold);
  font-size: 10px;
  animation: sep-heartbeat 2.4s ease-in-out infinite;
}
.envelope__sub {
  font-style: italic;
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.envelope__date {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 32px;
}
.envelope__open {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 16px 32px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}
.envelope__open::before,
.envelope__open::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s ease;
}
.envelope__open::before { left: -8px;  transform: translateY(-50%); }
.envelope__open::after  { right: -8px; transform: translateY(-50%); }
.envelope__open:hover {
  background: var(--gold-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(168, 134, 46, 0.3);
}
.envelope__open:hover::before,
.envelope__open:hover::after {
  width: 24px;
}
.envelope__hint {
  margin-top: 20px;
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--text-soft);
  text-transform: uppercase;
}

/* ─── État caché du faire-part ────────────────────────────── */
.invite-wrapper--hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
}
.invite-wrapper {
  opacity: 1;
  transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}

/* ─── Logo en haut de la carte ────────────────────────────── */
.invite__logo {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}
.invite__logo img {
  width: 110px;
  height: auto;
  filter: drop-shadow(0 2px 6px rgba(168, 134, 46, 0.12));
}

/* ─── Carte centrale (faire-part) ──────────────────────────── */
.invite {
  max-width: 560px;
  margin: 0 auto;
  background: var(--bg-card);
  position: relative;
  padding: 0 40px;
  box-shadow: 0 6px 30px rgba(50, 30, 10, 0.08);
}

.floral {
  position: absolute;
  left: 0;
  width: 100%;
  height: 90px;
  z-index: 1;
  pointer-events: none;
}
.floral--top    { top: 0; }
.floral--bottom { bottom: 0; }

.invite__body {
  position: relative;
  z-index: 2;
  padding: 64px 0 90px;
  text-align: center;
}

/* ─── Couple ───────────────────────────────────────────────── */
.couple {
  margin-bottom: 12px;
}
.couple__names {
  font-family: var(--font-script);
  font-size: clamp(60px, 14vw, 84px);
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.couple__hebrew {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0;
  margin-top: 4px;
  color: var(--gold-deep);
  font-family: var(--font-hebrew);
  font-size: 17px;
  opacity: 0.85;
}
.couple__hebrew span {
  flex: 1;
  text-align: center;
  letter-spacing: 0.04em;
}
.couple__hebrew .amp { flex: 0; opacity: 0; }

.intro {
  font-style: italic;
  font-size: 16px;
  color: var(--text-muted);
  margin: 18px 0 10px;
}
.oui {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(38px, 7vw, 48px);
  font-weight: 500;
  color: var(--text);
  margin: 6px 0 20px;
}

/* ─── Séparateurs ──────────────────────────────────────────── */
.sep {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 24px 0;
}
.sep__line {
  flex: 0 0 50px;
  height: 1px;
  background: var(--gold);
}
.sep__heart {
  color: var(--gold);
  font-size: 10px;
  line-height: 1;
  display: inline-block;
  animation: sep-heartbeat 2.4s ease-in-out infinite;
}
@keyframes sep-heartbeat {
  0%, 100% { transform: scale(1); }
  10%, 30% { transform: scale(1.25); }
  20% { transform: scale(0.92); }
}
.sep--short .sep__line { flex-basis: 36px; }
.sep--long  .sep__line { flex-basis: 80px; }

.sep-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 26px 0;
  color: var(--gold);
  font-size: 13px;
}
.sep-ornament__line {
  flex: 1 1 auto;
  height: 1px;
  background: var(--gold);
  max-width: 120px;
}

/* ─── Blocs d'événements ───────────────────────────────────── */
.event {
  margin: 8px 0;
}
.event__kicker {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 8px;
}
.event__title-script {
  font-family: var(--font-script);
  font-size: clamp(46px, 9vw, 64px);
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.event__date {
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
}
.event__time {
  font-style: italic;
  font-size: 16px;
  color: var(--text);
  margin-bottom: 14px;
}
.event__venue {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-muted);
}
.event__venue strong {
  color: var(--text);
  font-weight: 500;
}
.event__lead-in {
  font-style: italic;
  font-size: 15px;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 12px;
}
.event__illu {
  margin: 18px auto 16px;
  max-width: 460px;
}
.event__cta {
  display: inline-block;
  margin-top: 18px;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 13px 30px;
  transition: background 0.25s ease, transform 0.2s ease;
}
.event__cta:hover {
  background: var(--gold);
  transform: translateY(-1px);
}

/* ─── Bandeau hébreu ───────────────────────────────────────── */
.hebrew-banner {
  background: rgba(201, 168, 76, 0.12);
  border-top: 1px solid rgba(201, 168, 76, 0.4);
  border-bottom: 1px solid rgba(201, 168, 76, 0.4);
  padding: 14px 10px;
  margin: 30px -40px;
  direction: rtl;
  font-family: var(--font-hebrew);
  font-size: 18px;
  color: var(--gold-deep);
  letter-spacing: 0.05em;
}

/* ─── Parents & grands-parents ─────────────────────────────── */
.parents {
  display: flex;
  justify-content: center;
  gap: 30px;
  font-style: italic;
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
  margin: 20px 0 14px;
}
.parents__couple {
  flex: 1;
  max-width: 220px;
}
.announce {
  font-style: italic;
  font-size: 14px;
  color: var(--text);
  margin: 16px 0 18px;
  line-height: 1.75;
}
.ornament-diamond {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 30px 0 16px;
}
.ornament-diamond__line {
  flex: 0 0 70px;
  height: 1px;
  background: var(--gold);
  opacity: 0.65;
}
.ornament-diamond__shape {
  width: 18px;
  height: 18px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
  position: relative;
  flex-shrink: 0;
}
.ornament-diamond__shape::after {
  content: '';
  position: absolute;
  top: 4px; left: 4px; right: 4px; bottom: 4px;
  background: var(--gold);
  opacity: 0.4;
}
.memorial {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.85;
  padding: 0 4px;
  margin-bottom: 8px;
}

/* ─── RSVP Section ─────────────────────────────────────────── */
.rsvp-wrapper {
  max-width: 560px;
  margin: 30px auto 0;
  background: var(--bg-card);
  padding: 60px 40px 70px;
  position: relative;
  box-shadow: 0 6px 30px rgba(50, 30, 10, 0.08);
}
.rsvp-wrapper > .floral { z-index: 1; }
.rsvp__inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.rsvp__title {
  font-family: var(--font-script);
  font-size: clamp(46px, 9vw, 60px);
  color: var(--gold);
  line-height: 1;
  margin-top: 30px;
  margin-bottom: 8px;
}
.rsvp__sub {
  font-style: italic;
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.rsvp__form {
  text-align: left;
  margin-top: 12px;
}

.field {
  margin-bottom: 22px;
}
.field__label {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.field__label .req { color: var(--gold); margin-left: 3px; }
.field__input,
.field__textarea {
  width: 100%;
  padding: 10px 2px 8px;
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--ink);
  transition: border-color 0.2s ease;
}
.field__input:focus,
.field__textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}
.field__textarea {
  resize: vertical;
  min-height: 70px;
  border: 1px solid rgba(42,42,42,0.5);
  padding: 12px 14px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

/* Bloc événement RSVP (Mairie / Houppa) */
.rsvp-block {
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 22px 22px 18px;
  margin-bottom: 22px;
  position: relative;
}
.rsvp-block__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 18px;
}
.rsvp-block__name {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink);
}
.rsvp-block__sep {
  color: var(--gold);
  font-size: 10px;
}
.rsvp-block__time {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

.choice {
  font-style: italic;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 10px;
}
.radio-row {
  display: flex;
  gap: 14px;
  margin-bottom: 14px;
}
.radio {
  flex: 1;
  position: relative;
}
.radio input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.radio__label {
  display: block;
  padding: 11px 8px;
  text-align: center;
  background: var(--white);
  border: 1px solid rgba(42,42,42,0.4);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s ease;
}
.radio input:checked + .radio__label {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.radio input:focus-visible + .radio__label {
  box-shadow: 0 0 0 2px var(--gold-soft);
}

.guests-list { margin-top: 6px; }
.guests-list__label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
  display: block;
}
.guest-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 10px;
  animation: fadeIn 0.25s ease;
}
.guest-row__num {
  position: absolute;
  font-size: 10px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.1em;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-2px); }
  to   { opacity: 1; transform: translateY(0); }
}

.field__submit {
  width: 100%;
  padding: 16px;
  margin-top: 14px;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  transition: background 0.25s ease;
}
.field__submit:hover { background: var(--gold); }
.field__submit:disabled { opacity: 0.55; cursor: wait; }

.alert {
  padding: 14px 16px;
  margin-bottom: 20px;
  font-size: 14px;
  font-style: italic;
  border-left: 3px solid;
  background: rgba(0,0,0,0.02);
}
.alert--success { border-color: var(--success); color: var(--success); }
.alert--error   { border-color: var(--error);   color: var(--error); background: rgba(183,62,62,0.05); }

/* ─── Page de remerciement ─────────────────────────────────── */
.thanks {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 30px;
  max-width: 560px;
  margin: 0 auto;
  background: var(--bg-card);
  position: relative;
  box-shadow: 0 6px 30px rgba(50, 30, 10, 0.08);
}
.thanks__heart {
  font-size: 44px;
  color: var(--gold);
  margin-bottom: 20px;
  animation: heartbeat 2.2s ease-in-out infinite;
}
@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  10%, 30% { transform: scale(1.1); }
  20% { transform: scale(0.96); }
}
.thanks__title {
  font-family: var(--font-script);
  font-size: clamp(50px, 8vw, 80px);
  color: var(--gold);
  margin-bottom: 18px;
}
.thanks__text {
  font-family: var(--font-serif);
  font-size: 20px;
  font-style: italic;
  color: var(--text);
  max-width: 460px;
  margin-bottom: 36px;
  line-height: 1.65;
}
.thanks__back {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  transition: color 0.2s ease;
}
.thanks__back:hover { color: var(--gold); }

/* ─── Lien admin discret ───────────────────────────────────── */
.footer-credits {
  text-align: center;
  margin-top: 30px;
  font-family: var(--font-sans);
  font-size: 10px;
  color: var(--text-soft);
  letter-spacing: 0.2em;
}

/* ─── Lecteur de musique flottant ──────────────────────────── */
.music-player {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 100;
}
.music-player__btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(168, 134, 46, 0.35),
              0 0 0 4px rgba(250, 244, 237, 0.6);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}
.music-player__btn::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.music-player__btn:hover {
  transform: scale(1.06);
  background: var(--gold-deep);
}
.music-player__btn:hover::before { opacity: 0.5; }
.music-player__btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--gold-soft);
}

.music-player__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.music-player__icon--playing {
  display: none;
  gap: 3px;
  align-items: flex-end;
  height: 18px;
}
.music-player__btn[data-state="playing"] .music-player__icon--play    { display: none; }
.music-player__btn[data-state="playing"] .music-player__icon--playing { display: flex; }
.music-player__btn[data-state="playing"] {
  animation: gentle-pulse 2.5s ease-in-out infinite;
}
@keyframes gentle-pulse {
  0%, 100% { box-shadow: 0 4px 18px rgba(168, 134, 46, 0.35), 0 0 0 4px rgba(250, 244, 237, 0.6); }
  50%      { box-shadow: 0 4px 24px rgba(201, 168, 76, 0.6),   0 0 0 8px rgba(201, 168, 76, 0.18); }
}

.music-player__icon--playing .bar {
  width: 3px;
  height: 14px;
  background: var(--white);
  border-radius: 1px;
  display: inline-block;
  animation: eq-bounce 0.9s ease-in-out infinite;
  transform-origin: bottom;
}
.music-player__icon--playing .bar:nth-child(1) { animation-delay: 0s;    }
.music-player__icon--playing .bar:nth-child(2) { animation-delay: 0.18s; height: 18px; }
.music-player__icon--playing .bar:nth-child(3) { animation-delay: 0.36s; height: 12px; }
@keyframes eq-bounce {
  0%, 100% { transform: scaleY(0.4); }
  50%      { transform: scaleY(1);   }
}

.music-player__hint {
  position: absolute;
  bottom: 100%;
  right: 0;
  margin-bottom: 8px;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 7px 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateY(4px);
}
.music-player[data-show-hint="1"] .music-player__hint {
  opacity: 1;
  transform: translateY(0);
}
.music-player__hint::after {
  content: '';
  position: absolute;
  top: 100%;
  right: 22px;
  border: 5px solid transparent;
  border-top-color: var(--ink);
}

@media (max-width: 600px) {
  .music-player { bottom: 16px; right: 16px; }
  .music-player__btn { width: 48px; height: 48px; }
}

/* ─── Responsive ───────────────────────────────────────────── */
@media (max-width: 600px) {
  body { padding: 16px 0 40px; }
  body.is-revealed { padding: 16px 0 40px; }
  .envelope { max-width: 340px; padding: 64px 28px 36px; }
  .envelope__logo { width: 78px; }
  .invite__logo img { width: 92px; }
  .invite, .rsvp-wrapper { padding-left: 22px; padding-right: 22px; }
  .invite__body { padding: 72px 0 80px; }
  .hebrew-banner { margin: 30px -22px; }
  .rsvp-wrapper { padding-top: 50px; padding-bottom: 50px; }
  .field-row { grid-template-columns: 1fr; gap: 12px; }
  .parents { flex-direction: column; gap: 6px; }
  .parents__couple { max-width: none; }
  .floral { height: 70px; }
}

@media (max-width: 400px) {
  .couple__names { font-size: 56px; }
  .event__title-script { font-size: 42px; }
  .rsvp__title { font-size: 44px; }
}
