/* ─────────────────────────────────────────────────────────────
   Salma & Rady · v2
   Editorial · cocktail-chic · black / beige / red / white
   Bodoni Moda · Italiana · Mona Sans
   ───────────────────────────────────────────────────────────── */

:root {
  /* Palette */
  --beige:        #efe7d8;
  --beige-soft:   #f6efe1;
  --beige-deep:   #e1d4b9;
  --paper:        #ffffff;
  --black:        #0a0807;
  --black-soft:   #1a1614;
  --ink:          #1d160e;        /* was #2a2218 — slightly darker body */
  --ink-soft:     #382a1d;        /* was #564536 — much more contrast for italic copy */
  --red:          #b1191f;        /* was #c1272d — a touch deeper red for legibility */
  --red-deep:     #7a1015;
  --red-soft:     #d4524a;
  --gold:         #8e7233;        /* was #a08540 — more contrast vs beige */
  --gold-soft:    #c2a35a;
  --rule:         rgba(10,8,7,.18);
  --rule-strong:  rgba(10,8,7,.38);

  /* Typography */
  --f-display: 'Bodoni Moda', 'Bodoni 72', 'Didot', Georgia, serif;
  --f-italic:  'Italiana', 'Bodoni Moda', Georgia, serif;
  --f-body:    'Mona Sans', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', system-ui, sans-serif;

  /* Rhythm */
  --pad-x:    clamp(1.25rem, 5vw, 4rem);
  --section-y: clamp(5rem, 12vh, 11rem);

  /* Motion */
  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; background: var(--beige); }

body {
  font-family: var(--f-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--beige);
  background-image:
    radial-gradient(ellipse at 20% 0%, rgba(193,39,45,.04), transparent 60%),
    radial-gradient(ellipse at 100% 100%, rgba(10,8,7,.05), transparent 50%);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Paper grain removed — impeccable flags feTurbulence "grain" as an amateur
   texture tell. The warm palette + Bodoni carry the paper feel on their own. */

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

[hidden] { display: none !important; }

/* ────────────  Type primitives ──────────── */

.eyebrow {
  font-family: var(--f-body);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex; align-items: center; gap: .9em;
  margin-bottom: 1.6rem;
}
.eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: currentColor;
  opacity: .6;
}

.section-title {
  font-family: var(--f-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(2.4rem, 6.5vw, 5rem);
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--black);
  margin-bottom: 2.8rem;
  font-variation-settings: "opsz" 96;
}
.section-title em {
  font-family: var(--f-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--red);
  font-size: .85em;
  font-variation-settings: normal;
}

/* ────────────────────────────  NAV  ──────────────────────────── */

.nav {
  position: fixed; top: 0; left: 0; right: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem var(--pad-x);
  z-index: 50;
  background: linear-gradient(180deg, rgba(10,8,7,.55), transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background .4s var(--ease), padding .4s var(--ease), border-color .4s;
  color: var(--beige);
}
.nav.is-scrolled {
  background: rgba(239,231,216,.97);
  color: var(--black);
  border-bottom: 1px solid var(--rule);
  padding-top: .7rem; padding-bottom: .7rem;
}

.nav__mark {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.1rem;
  letter-spacing: .08em;
  color: inherit;
  font-variation-settings: "opsz" 11;
}
.nav__mark svg { color: var(--red); }

.nav__links {
  list-style: none;
  display: flex; gap: 2.4rem;
}
.nav__links a {
  font-size: .7rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: inherit;
  opacity: .8;
  position: relative;
  padding: .3rem 0;
  font-weight: 500;
  transition: opacity .3s, color .3s;
}
.nav__links a::after {
  content: '';
  position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px;
  background: var(--red);
  transition: right .35s var(--ease);
}
.nav__links a:hover { opacity: 1; color: var(--red); }
.nav__links a:hover::after { right: 0; }

.nav__cta {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .7rem; letter-spacing: .26em; text-transform: uppercase;
  font-weight: 500;
  color: var(--beige);
  background: var(--red);
  padding: .75rem 1.4rem;
  border-radius: 999px;
  transition: background .3s, transform .3s, color .3s;
}
.nav__cta:hover { background: var(--black); transform: translateX(2px); }
.nav.is-scrolled .nav__cta { color: var(--beige); }

@media (max-width: 720px) {
  .nav__links { display: none; }
}

/* ────────────────────────────  HERO  ──────────────────────────── */

.hero {
  position: relative;
  min-height: 100vh;   /* fallback for iOS < 15.4 / older Android */
  min-height: 100svh;  /* stable height on modern mobile (no address-bar jump) */
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--black);
}

.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
  transform: scale(1.05);
  animation: heroDrift 28s ease-in-out infinite alternate;
  filter: contrast(1.04) saturate(1.06);
}
@keyframes heroDrift {
  from { transform: scale(1.05) translate(0,0); }
  to   { transform: scale(1.12) translate(-1.5%, -2%); }
}

.hero__veil {
  position: absolute; inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 50% 55%, rgba(10,8,7,.25) 0%, rgba(10,8,7,.7) 85%),
    linear-gradient(180deg, rgba(10,8,7,.45) 0%, rgba(10,8,7,.25) 30%, rgba(10,8,7,.75) 100%);
}

.hero__content {
  text-align: center;
  color: var(--beige);
  padding: 6rem var(--pad-x) 3rem;
  max-width: 62rem;
}

.hero__kicker {
  font-family: var(--f-italic);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(.95rem, 1.5vw, 1.2rem);
  letter-spacing: .12em;
  color: var(--red-soft);
  text-shadow: 0 1px 14px rgba(0,0,0,.55);
  margin-bottom: 1.6rem;
  opacity: 0;
  animation: rise .9s var(--ease) .2s forwards;
}

.hero__names {
  font-family: var(--f-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(4rem, 14vw, 10.5rem);
  line-height: .9;
  letter-spacing: -.035em;
  margin-bottom: 1.6rem;
  font-variation-settings: "opsz" 96;
  display: flex; align-items: baseline; justify-content: center;
  gap: clamp(.4rem, 1.6vw, 1rem);
  flex-wrap: wrap;
  color: var(--beige);
  text-shadow: 0 2px 30px rgba(0,0,0,.45);
}
.hero__names span {
  opacity: 0;
  animation: rise 1.1s var(--ease) .4s forwards;
}
.hero__names em {
  font-family: var(--f-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--red);
  font-size: .58em;
  opacity: 0;
  animation: rise 1.1s var(--ease) .6s forwards;
  transform: translateY(-.08em);
  font-variation-settings: normal;
}
.hero__names span:last-child { animation-delay: .8s; }

.hero__date {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: clamp(.9rem, 1.4vw, 1.05rem);
  letter-spacing: .42em;
  color: var(--beige);
  text-shadow: 0 1px 14px rgba(0,0,0,.6);
  margin-bottom: 1.1rem;
  opacity: 0;
  animation: rise 1.1s var(--ease) 1s forwards;
}

.hero__meta {
  font-size: .72rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(239,231,216,.88);
  text-shadow: 0 1px 12px rgba(0,0,0,.6);
  opacity: 0;
  animation: rise 1.1s var(--ease) 1.2s forwards;
}

.hero__cue {
  position: absolute;
  bottom: 2.4rem; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 56px;
  background: rgba(239,231,216,.4);
  overflow: hidden;
}
.hero__cue span {
  display: block;
  width: 100%; height: 50%;
  background: var(--red);
  animation: cueDrop 2.4s var(--ease) infinite;
}
@keyframes cueDrop {
  0%   { transform: translateY(-100%); }
  60%  { transform: translateY(100%); }
  100% { transform: translateY(100%); }
}

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

/* ──────────────────────────  AUDIO PLAYER  ────────────────────────── */

.audio {
  position: absolute;
  right: clamp(1rem, 3vw, 2.4rem);
  bottom: 2.4rem;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  padding: .55rem .55rem .55rem 1.15rem;
  background: rgba(10,8,7,.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(239,231,216,.15);
  border-radius: 999px;
  color: var(--beige);
  opacity: 0;
  animation: rise 1.2s var(--ease) 1.6s forwards;
  transition: background .3s, border-color .3s;
}
.audio:hover { background: rgba(10,8,7,.78); border-color: rgba(239,231,216,.28); }

.audio__btn {
  position: relative;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--red);
  display: grid; place-items: center;
  color: var(--beige);
  flex-shrink: 0;
  transition: background .3s, transform .3s;
}
.audio__btn:hover { background: var(--red-deep); transform: scale(1.06); }

.audio__icon { transition: opacity .25s; }
.audio__icon--pause { display: none; }
.audio__btn[aria-pressed="true"] .audio__icon--play  { display: none; }
.audio__btn[aria-pressed="true"] .audio__icon--pause { display: block; }
.audio__btn[aria-pressed="true"] .audio__eq           { display: flex; }

.audio__eq {
  position: absolute;
  inset: 0;
  display: none;
  align-items: flex-end;
  justify-content: center;
  gap: 2px;
  pointer-events: none;
}
.audio__eq i {
  display: block;
  width: 2px;
  background: var(--beige);
  border-radius: 1px;
  animation: eq 1.2s ease-in-out infinite;
  opacity: 0;
}
/* Replace play icon visually when playing via eq bars */
.audio__btn[aria-pressed="true"] .audio__icon--pause { opacity: 0; }
.audio__btn[aria-pressed="true"] .audio__eq i { opacity: .95; }
.audio__eq i:nth-child(1) { height: 10px; animation-delay: 0s; }
.audio__eq i:nth-child(2) { height: 16px; animation-delay: .18s; }
.audio__eq i:nth-child(3) { height: 12px; animation-delay: .36s; }
.audio__eq i:nth-child(4) { height: 18px; animation-delay: .54s; }
@keyframes eq {
  0%, 100% { transform: scaleY(.45); }
  50%      { transform: scaleY(1.2); }
}

.audio__meta {
  display: flex; flex-direction: column;
  line-height: 1.15;
}
.audio__label {
  font-size: .58rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red-soft);
  font-weight: 500;
}
.audio__title {
  font-family: var(--f-italic);
  font-style: italic;
  font-size: .92rem;
  color: var(--beige);
}

@media (max-width: 560px) {
  .audio { padding: .5rem .5rem .5rem 1rem; }
  .audio__meta { display: none; }
}

/* ──────────────────────────  LOVE NOTE  ────────────────────────── */

.note {
  padding: var(--section-y) var(--pad-x);
  text-align: center;
  max-width: 46rem;
  margin: 0 auto;
  position: relative;
}

.note__motif {
  color: var(--red);
  margin: 0 auto 2rem;
  opacity: .9;
}

.note__open {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  color: var(--ink);
  letter-spacing: .01em;
  margin-bottom: 2.2rem;
  font-variation-settings: "opsz" 40;
}

.note__body {
  font-family: var(--f-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  line-height: 1.32;
  color: var(--black);
  letter-spacing: -.005em;
  margin-bottom: 2.4rem;
  font-variation-settings: "opsz" 60;
}

.note__sign {
  font-family: var(--f-italic);
  font-style: italic;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--red);
  letter-spacing: .06em;
}

/* ──────────────────────────  THE COUPLE  ────────────────────────── */

.couple {
  padding: var(--section-y) var(--pad-x);
  max-width: 86rem;
  margin: 0 auto;
  text-align: center;
}
.couple .eyebrow { display: inline-flex; }

.couple__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1;
  color: var(--black);
  letter-spacing: -.02em;
  font-variation-settings: "opsz" 80;
  margin: 1rem 0 0;
}
.couple__title em { font-family: var(--f-italic); font-style: italic; color: var(--red); padding: 0 .08em; }

.couple__set {
  display: grid;
  grid-template-columns: 1fr 1.22fr 1fr;
  gap: clamp(.8rem, 2vw, 1.5rem);
  align-items: center;
  max-width: 64rem;
  margin: 2.4rem auto 0;
}
.couple__frame--lead { transform: scale(1.04); z-index: 3; }
.couple__frame--lead:hover { transform: scale(1.04) translateY(-6px); }
.couple__frame--a { transform: translateY(-1.1rem); }
.couple__frame--b { transform: translateY(1.1rem); }

.couple__card { text-align: center; display: flex; flex-direction: column; align-items: center; }

.couple__frame {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
  background: var(--beige-deep);
  box-shadow:
    0 1px 0 var(--red) inset,
    0 0 0 1px var(--rule),
    0 30px 60px -20px rgba(10,8,7,.32),
    0 12px 24px -10px rgba(193,39,45,.18);
  transition: transform .8s var(--ease), box-shadow .8s var(--ease);
}
.couple__frame::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,8,7,.22));
  z-index: 1;
  pointer-events: none;
}
.couple__frame::after {
  content: '';
  position: absolute; inset: 10px;
  border: 1px solid rgba(239,231,216,.22);
  pointer-events: none;
  z-index: 2;
}

.couple__frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.03) saturate(1.05);
  transition: transform 1.2s var(--ease);
}
.couple__frame:hover {
  transform: translateY(-6px);
  box-shadow:
    0 1px 0 var(--red) inset,
    0 0 0 1px var(--red),
    0 40px 80px -20px rgba(10,8,7,.4),
    0 18px 36px -10px rgba(193,39,45,.25);
}
.couple__frame:hover img { transform: scale(1.04); }

.couple__card--salma .couple__frame img { object-position: 50% 30%; }
.couple__card--rady  .couple__frame img { object-position: 70% 40%; }

.couple__amp {
  font-family: var(--f-italic);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  line-height: 1;
  color: var(--red);
  letter-spacing: -.04em;
  align-self: center;
  padding: 0 .2rem;
  transform: translateY(-.3em);
}

.couple__card figcaption { margin-top: 1.8rem; }
.couple__role {
  font-family: var(--f-italic);
  font-style: italic;
  font-size: .98rem;
  color: var(--red);
  letter-spacing: .14em;
  margin-bottom: .4rem;
}
.couple__name {
  font-family: var(--f-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1;
  color: var(--black);
  letter-spacing: -.02em;
  font-variation-settings: "opsz" 80;
  margin-bottom: .8rem;
}
.couple__line {
  font-family: var(--f-italic);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 1.08rem;
  max-width: 34rem;
  margin: 2rem auto 0;
}

@media (max-width: 720px) {
  .couple__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .couple__amp { transform: none; padding: .5rem 0; font-size: 3.5rem; }
}

/* ────────────────────────────  DETAILS  ──────────────────────────── */

.details {
  padding: var(--section-y) var(--pad-x);
  max-width: 76rem;
  margin: 0 auto;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.details__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.detail { text-align: center; padding: 1rem; }
.detail__label {
  display: block;
  font-size: .66rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
  font-weight: 500;
}
.detail__value {
  font-family: var(--f-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  line-height: 1.25;
  color: var(--black);
  font-variation-settings: "opsz" 60;
}
.detail__value em {
  font-family: var(--f-italic);
  font-style: italic;
  color: var(--ink-soft);
  font-weight: 400;
  font-size: .85em;
}

@media (max-width: 720px) {
  .details__grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
  .detail { border-bottom: 1px solid var(--rule); padding-bottom: 1.5rem; }
  .detail:nth-last-child(-n+2) { border-bottom: 0; padding-bottom: 0; }
}

/* ──────────────────────────  THE NIGHT  ────────────────────────── */

.night {
  padding: var(--section-y) var(--pad-x);
  max-width: 58rem;
  margin: 0 auto;
}
.night .eyebrow { display: flex; justify-content: center; }

.night__list { list-style: none; margin-top: 1.5rem; }
.night__list li {
  display: grid;
  grid-template-columns: 7rem 1fr;
  align-items: baseline;
  gap: 1.4rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--rule);
  transition: padding-left .4s var(--ease);
}
.night__list li:hover { padding-left: 1rem; }
.night__list li:last-child { border-bottom: 0; }

.night__list time {
  font-family: var(--f-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
  color: var(--red);
  font-variation-settings: "opsz" 80;
  letter-spacing: -.01em;
}
.night__list span {
  font-family: var(--f-italic);
  font-style: italic;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: var(--black);
  line-height: 1.4;
}

@media (max-width: 560px) {
  .night__list li { grid-template-columns: 4.5rem 1fr; gap: 1rem; }
}

/* ──────────────────────────  DRESS CODE  ────────────────────────── */

.dress {
  padding: var(--section-y) var(--pad-x);
  max-width: 88rem;
  margin: 0 auto;
  position: relative;
}
.dress .eyebrow { display: inline-flex; }

.dress__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  margin-bottom: 3rem;
}

.dress__col { position: relative; display: flex; flex-direction: column; gap: 2rem; }

.dress__board {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 20px 44px -24px rgba(10,8,7,.30);
}
.dress__board::after { display: none; }
.dress__board img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  background: transparent;
}

.dress__copy { display: flex; flex-direction: column; }

.dress__tag {
  font-family: var(--f-italic);
  font-style: italic;
  font-size: 1.1rem;
  letter-spacing: .14em;
  color: var(--red);
  margin-bottom: .8rem;
}

.dress__lead {
  font-family: var(--f-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 1.6rem;
  font-variation-settings: "opsz" 60;
}

.dress__list { list-style: none; }
.dress__list li {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 1rem;
  padding: .85rem 0;
  border-bottom: 1px solid var(--rule);
  font-size: .98rem;
  line-height: 1.45;
}
.dress__list li:last-child { border-bottom: 0; }
.dress__list span {
  font-size: .66rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--red);
  align-self: center;
  font-weight: 500;
}

.dress__footnote {
  text-align: center;
  font-family: var(--f-italic);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 1rem;
  margin-top: 1rem;
  letter-spacing: .02em;
}

.dress__note {
  text-align: center; font-family: var(--f-italic); font-style: italic;
  color: var(--red); font-size: 1rem; letter-spacing: .04em; margin-top: 1.4rem;
}
.dress__inspo {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(.7rem, 1.6vw, 1.2rem); margin: 1.8rem 0 2.4rem;
}

@media (max-width: 720px) {
  .dress__grid { grid-template-columns: 1fr; gap: 3rem; }
  .dress__list li { grid-template-columns: 5.5rem 1fr; }
  .dress__inspo { grid-template-columns: 1fr 1fr; }
}

/* ──────────────────────────  COCKTAILS  ────────────────────────── */

.cocktails {
  padding: var(--section-y) var(--pad-x);
  max-width: 76rem;
  margin: 0 auto;
  text-align: center;
}
.cocktails .eyebrow { display: inline-flex; }

.cocktails__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 2rem;
  text-align: left;
}

.cocktail {
  padding: 2.6rem 2rem;
  position: relative;
  border-right: 1px solid var(--rule);
  transition: background .4s var(--ease), transform .4s var(--ease);
}
.cocktail:last-child { border-right: 0; }
.cocktail:hover { background: var(--beige-soft); transform: translateY(-4px); }

.cocktail__icon {
  width: 44px; height: 44px;
  color: var(--red);
  margin-bottom: 1.6rem;
  transition: transform .5s var(--ease), color .3s;
}
.cocktail:hover .cocktail__icon {
  transform: rotate(-6deg) scale(1.06);
  color: var(--black);
}

.cocktail__num {
  font-family: var(--f-italic);
  font-style: italic;
  font-size: .9rem;
  letter-spacing: .25em;
  color: var(--red);
  text-transform: lowercase;
  margin-bottom: .4rem;
}

.cocktail__name {
  font-family: var(--f-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.7rem, 2.8vw, 2.2rem);
  line-height: 1.05;
  color: var(--black);
  margin-bottom: 1rem;
  font-variation-settings: "opsz" 60;
}

.cocktail__rec {
  font-size: .76rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 1.4rem;
  line-height: 1.65;
  font-weight: 500;
}

.cocktail__note {
  font-family: var(--f-italic);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.5;
}

@media (max-width: 720px) {
  .cocktails__grid { grid-template-columns: 1fr; }
  .cocktail { border-right: 0; border-bottom: 1px solid var(--rule); padding: 2.2rem 0; }
  .cocktail:last-child { border-bottom: 0; }
}

/* ──────────────────────────  MOOD MOMENT (cocktail cheers) ────────────────────────── */

.break {
  position: relative;
  height: 78svh;
  min-height: 520px;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}
.break__image {
  position: absolute; inset: -10% 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
  filter: brightness(.65) saturate(1.15) contrast(1.1);
  will-change: transform;
}
.break::before {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(10,8,7,.45), rgba(10,8,7,.15) 50%, rgba(10,8,7,.6));
}
.break__quote p {
  font-family: var(--f-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.15;
  color: var(--beige);
  text-align: center;
  max-width: 42rem;
  padding: 0 var(--pad-x);
  letter-spacing: -.015em;
  font-variation-settings: "opsz" 96;
  text-shadow: 0 2px 30px rgba(0,0,0,.4);
}
.break__quote em {
  font-family: var(--f-italic);
  color: var(--red-soft);
}

/* ──────────────────────────  EDITORIAL TRIPTYCH  ────────────────────────── */

.mood {
  padding: var(--section-y) var(--pad-x);
  max-width: 86rem;
  margin: 0 auto;
}
.mood__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(1rem, 2.5vw, 2.5rem);
  align-items: stretch;
}
.mood__frame {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  box-shadow:
    0 0 0 1px var(--rule),
    0 30px 60px -20px rgba(10,8,7,.28);
  transition: transform .8s var(--ease);
}
.mood__frame:hover { transform: translateY(-4px); }
.mood__frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
  filter: contrast(1.04) saturate(1.06);
}
.mood__frame:hover img { transform: scale(1.04); }

.mood__frame--tall { aspect-ratio: 3/4; }
.mood__frame--wide {
  aspect-ratio: 4/5;
  position: relative;
}
.mood__frame--wide img { object-fit: cover; }
.mood__frame--wide figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2rem 1.6rem 1.6rem;
  background: linear-gradient(180deg, transparent, rgba(10,8,7,.7));
  color: var(--beige);
}
.mood__frame--wide figcaption p {
  font-family: var(--f-italic);
  font-style: italic;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  letter-spacing: .01em;
  line-height: 1.3;
}

@media (max-width: 720px) {
  .mood__grid { grid-template-columns: 1fr; }
}

/* ──────────────────────────  SONG / NAPKIN  ────────────────────────── */

.song {
  padding: var(--section-y) var(--pad-x);
  max-width: 60rem;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.song .eyebrow { display: inline-flex; }

/* photobooth-strip keepsake from the night */
.song__strip {
  display: block;
  width: clamp(124px, 13vw, 158px);
  margin: 1.75rem auto .25rem;
  transform: rotate(-4deg);
  box-shadow: 0 24px 50px -18px rgba(10,8,7,.55), 0 8px 18px -10px rgba(10,8,7,.4);
  transition: transform .8s var(--ease);
}
.song__strip img { display: block; width: 100%; height: auto; }
.song__strip:hover { transform: rotate(-2deg) translateY(-3px); }
@media (min-width: 900px) {
  .song__strip {
    position: absolute;
    right: clamp(.5rem, 2vw, 2rem);
    top: 50%;
    margin: 0;
    width: clamp(140px, 12vw, 168px);
    transform: translateY(-46%) rotate(5deg);
    z-index: 1;
  }
  .song__strip:hover { transform: translateY(-49%) rotate(3deg); }
}

.napkin {
  position: relative;
  max-width: 38rem;
  margin: 1rem auto 3rem;
  isolation: isolate;
}

.napkin__paper {
  position: relative;
  background: var(--paper);
  padding: 2rem 2rem 1.6rem;
  text-align: left;
  /* Wavy napkin edge using radial dotted mask + soft shadow */
  background-image:
    radial-gradient(circle at 6px 6px, rgba(0,0,0,.04) 0, transparent 1.5px);
  background-size: 12px 12px;
  background-color: var(--paper);
  box-shadow:
    0 0 0 1px rgba(10,8,7,.08),
    0 30px 60px -20px rgba(10,8,7,.32),
    0 14px 24px -10px rgba(193,39,45,.18);
  transform: rotate(-1.2deg);
  transition: transform .8s var(--ease);
  z-index: 2;
}
.napkin:hover .napkin__paper { transform: rotate(-.6deg) translateY(-2px); }

/* Scalloped napkin edges via repeating-conic-gradient on top/bottom */
.napkin__paper::before,
.napkin__paper::after {
  content: '';
  position: absolute; left: 0; right: 0; height: 10px;
  background:
    radial-gradient(circle 6px at 6px 0, var(--paper) 98%, transparent 100%) repeat-x;
  background-size: 12px 10px;
}
.napkin__paper::before { top: -8px; }
.napkin__paper::after  { bottom: -8px; transform: scaleY(-1); }

.napkin__shadow {
  position: absolute; inset: 1rem -.8rem -.8rem 1rem;
  background: var(--red-deep);
  opacity: .12;
  z-index: 1;
  transform: rotate(-1.5deg);
  border-radius: 2px;
}

/* The cocktail-ring stain — appears on hover */
.napkin__ring {
  position: absolute;
  right: -.4rem; top: -.6rem;
  width: 90px; height: 90px;
  border-radius: 50%;
  border: 14px solid transparent;
  background:
    radial-gradient(circle at center, transparent 38%, rgba(139,19,24,.22) 40%, transparent 56%);
  pointer-events: none;
  opacity: 0;
  transform: scale(.6) rotate(-12deg);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
  z-index: 3;
  filter: blur(.4px);
}
.napkin:hover .napkin__ring { opacity: .85; transform: scale(1) rotate(-8deg); }

.napkin__header {
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px dashed var(--rule-strong);
  padding-bottom: .9rem;
  margin-bottom: 1.2rem;
}
.napkin__stamp {
  font-family: var(--f-body);
  font-size: .62rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  padding: .35rem .7rem;
  border: 1px solid var(--red);
  border-radius: 2px;
  transform: rotate(-2deg);
}
.napkin__date {
  font-family: var(--f-italic);
  font-style: italic;
  font-size: .9rem;
  color: var(--ink-soft);
}

.napkin__form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem 1rem;
  align-items: end;
}
.napkin__field { display: flex; flex-direction: column; gap: .3rem; grid-column: 1; }
.napkin__field--small { font-size: .85rem; }
.napkin__label {
  font-family: var(--f-body);
  font-size: .6rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
}
.napkin__form input {
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  padding: .35rem .1rem;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--black);
  outline: 0;
  font-variation-settings: "opsz" 60;
  transition: border-color .3s;
}
.napkin__form input:focus { border-bottom-color: var(--red); }
.napkin__form input::placeholder {
  color: rgba(10,8,7,.32);
  font-family: var(--f-italic);
}
.napkin__field--small input { font-size: 1rem; border-bottom-style: dashed; }

.napkin__submit {
  grid-column: 2; grid-row: 1 / span 2;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--red);
  color: var(--beige);
  display: grid; place-items: center;
  align-self: end;
  transition: background .3s, transform .3s var(--ease);
  flex-shrink: 0;
}
.napkin__submit:hover { background: var(--black); transform: translateX(3px) rotate(-8deg); }

.napkin__received {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(-12deg) scale(.6);
  pointer-events: none;
  opacity: 0;
  transition: opacity .4s, transform .6s var(--ease);
  z-index: 4;
}
.napkin__received span {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 1.4rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--red);
  border: 3px double var(--red);
  padding: .8rem 1.6rem;
  background: rgba(255,255,255,.5);
  font-weight: 700;
}
.napkin.is-stamped .napkin__received {
  opacity: .92;
  transform: translate(-50%, -50%) rotate(-12deg) scale(1);
}

/* The live queue of requests */
.queue {
  margin-top: 3.5rem;
  text-align: center;
  min-height: 80px;
}
.queue__head {
  font-size: .68rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.queue__head span { display: inline-flex; align-items: center; gap: .8em; }
.queue__head span::before, .queue__head span::after {
  content: ''; width: 32px; height: 1px; background: var(--red); opacity: .5;
}
.queue__list {
  list-style: none;
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: .6rem;
  padding: 0;
}
.queue__list li {
  display: inline-flex; align-items: baseline; gap: .6rem;
  padding: .5rem 1.1rem;
  background: var(--paper);
  border: 1px solid var(--rule-strong);
  border-radius: 999px;
  font-family: var(--f-italic);
  font-style: italic;
  color: var(--black);
  font-size: 1rem;
  animation: queueIn .6s var(--ease) backwards;
}
.queue__list li small {
  font-family: var(--f-body);
  font-style: normal;
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 500;
}
@keyframes queueIn {
  from { opacity: 0; transform: translateY(8px) scale(.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.queue__hint {
  font-family: var(--f-italic);
  font-style: italic;
  color: var(--ink-soft);
  font-size: .98rem;
  transition: opacity .3s;
}
.queue__list:not(:empty) + .queue__hint { display: none; }

/* ──────────────────────────  RSVP  ────────────────────────── */

.rsvp {
  padding: var(--section-y) var(--pad-x);
  max-width: 38rem;
  margin: 0 auto;
  text-align: center;
}
.rsvp .eyebrow { display: inline-flex; }
.rsvp__lead {
  font-family: var(--f-italic);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink-soft);
  margin-bottom: 3rem;
  margin-top: -1.5rem;
}
.rsvp__lead em { color: var(--red); font-style: italic; }

.rsvp__form { display: grid; gap: 2rem; text-align: left; }

.field { display: grid; gap: .55rem; }
.field > span, .field > legend {
  font-size: .66rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
}
.field input,
.field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule-strong);
  padding: .6rem 0;
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--black);
  outline: 0;
  transition: border-color .3s;
  font-variation-settings: "opsz" 60;
  resize: vertical;
}
.field input:focus, .field textarea:focus { border-bottom-color: var(--red); }
.field input::placeholder,
.field textarea::placeholder {
  color: rgba(10,8,7,.32);
  font-family: var(--f-italic);
  font-style: italic;
}

.field--radio { border: 0; padding: 0; }
.field__radios {
  display: flex; flex-wrap: wrap; gap: .6rem;
  margin-top: .3rem;
}
.field__radios label { position: relative; cursor: pointer; }
.field__radios input { position: absolute; opacity: 0; }
.field__radios span {
  display: inline-block;
  padding: .7rem 1.3rem;
  font-family: var(--f-italic);
  font-style: italic;
  font-size: 1.02rem;
  border: 1px solid var(--rule-strong);
  border-radius: 999px;
  color: var(--ink-soft);
  transition: all .3s var(--ease);
}
.field__radios label:hover span { border-color: var(--red); color: var(--red); }
.field__radios input:checked + span {
  background: var(--red);
  color: var(--beige);
  border-color: var(--red);
}

.rsvp__submit {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  margin-top: 1rem;
  padding: 1.05rem 2.4rem;
  background: var(--red);
  color: var(--beige);
  font-size: .76rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  border-radius: 999px;
  font-weight: 500;
  transition: background .3s, gap .3s var(--ease), transform .3s var(--ease);
  justify-self: center;
}
.rsvp__submit:hover { background: var(--black); gap: 1rem; transform: translateY(-2px); }

.rsvp__thanks { text-align: center; padding: 2rem 0; }
.rsvp__thanks svg { color: var(--red); margin: 0 auto 1.4rem; }
.rsvp__thanks p {
  font-family: var(--f-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  color: var(--black);
  margin-bottom: 1.5rem;
  font-variation-settings: "opsz" 60;
}
.rsvp__edit {
  font-family: var(--f-italic);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 1rem;
  text-decoration: underline;
  text-decoration-color: var(--rule-strong);
  text-underline-offset: 4px;
  transition: color .3s;
}
.rsvp__edit:hover { color: var(--red); }

/* ──────────────────────────  COUNTDOWN  ────────────────────────── */

.countdown {
  padding: var(--section-y) var(--pad-x) calc(var(--section-y) * .8);
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 50%, var(--black-soft), var(--black) 80%);
  color: var(--beige);
  border-top: 1px solid var(--rule);
  position: relative;
}
.countdown .eyebrow { color: var(--red-soft); display: inline-flex; }
.countdown .eyebrow::before { background: var(--red-soft); }

.countdown__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 56rem;
  margin: 1.5rem auto 0;
}
.countdown__row > div {
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  padding: 1rem .5rem;
  position: relative;
}
.countdown__row > div + div::before {
  content: '·';
  position: absolute; left: -1rem; top: 50%;
  transform: translateY(-50%);
  color: var(--red);
  font-size: 1.6rem;
}
.countdown__row span {
  font-family: var(--f-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(2.6rem, 6.5vw, 4.4rem);
  line-height: 1;
  color: var(--beige);
  font-variation-settings: "opsz" 144;
  font-variant-numeric: tabular-nums;
  letter-spacing: -.02em;
}
.countdown__row i {
  font-style: normal;
  font-size: .66rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--red-soft);
  font-weight: 500;
}

@media (max-width: 560px) {
  .countdown__row { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
}

/* ──────────────────────────  FOOTER  ────────────────────────── */

.footer {
  padding: 4rem var(--pad-x) 5rem;
  text-align: center;
  background: var(--black);
  color: var(--beige);
}

.footer__actions {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(239,231,216,.12);
  margin-bottom: 3rem;
}
.footer__actions a {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .76rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--beige);
  padding: .5rem 0;
  border-bottom: 1px solid transparent;
  font-weight: 500;
  transition: border-color .3s, color .3s;
}
.footer__actions a:hover { color: var(--red-soft); border-bottom-color: var(--red-soft); }
.footer__actions svg { color: var(--red-soft); }

.footer__sign svg {
  color: var(--red-soft);
  margin: 0 auto 1.2rem;
  opacity: .8;
}
.footer__crest {
  display: block;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.4rem;
  box-shadow: 0 12px 28px -14px rgba(0,0,0,.7);
}

/* gold felucca — recurring brand motif (hero + love note; echoes the crest) */
.hero__sail {
  width: clamp(42px, 5vw, 54px);
  height: auto;
  margin: 0 auto 1.2rem;
  color: var(--gold-soft);
  opacity: .92;
  filter: drop-shadow(0 3px 10px rgba(0,0,0,.45));
}
.note__motif { color: var(--gold-soft); }

/* cinematic motion interlude (lazy-played) */
.interlude {
  position: relative;
  height: clamp(38vh, 46vh, 54vh);
  overflow: hidden;
  background: var(--black);
}
.interlude__video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.footer__names {
  font-family: var(--f-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(2.4rem, 4.5vw, 3.2rem);
  letter-spacing: -.025em;
  color: var(--beige);
  margin-bottom: .8rem;
  font-variation-settings: "opsz" 144;
}
.footer__date {
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(239,231,216,.78);
}

/* ──────────────────────────  RSVP NUDGE  ────────────────────────── */

.nudge {
  position: fixed;
  left: 50%;
  bottom: 1.4rem;
  transform: translateX(-50%) translateY(120%);
  z-index: 40;
  display: inline-flex; align-items: center; gap: 1rem;
  padding: .75rem .75rem .75rem 1.4rem;
  background: var(--black);
  color: var(--beige);
  border-radius: 999px;
  box-shadow:
    0 0 0 1px rgba(239,231,216,.12),
    0 20px 40px -10px rgba(10,8,7,.5);
  transition: transform .5s var(--ease), opacity .5s;
  max-width: calc(100vw - 2rem);
}
.nudge.is-visible { transform: translateX(-50%) translateY(0); }
.nudge__msg {
  font-family: var(--f-italic);
  font-style: italic;
  font-size: .95rem;
  display: flex; align-items: center; gap: .6rem;
  white-space: nowrap;
  margin: 0;
  flex-shrink: 0;
}
.nudge__msg em { display: inline; font-style: italic; }
.nudge__msg em { color: var(--red-soft); font-style: italic; }
.nudge__pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(193,39,45,.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(193,39,45,.6); }
  70%  { box-shadow: 0 0 0 10px rgba(193,39,45,0); }
  100% { box-shadow: 0 0 0 0 rgba(193,39,45,0); }
}
.nudge__cta {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .68rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--beige);
  background: var(--red);
  padding: .55rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  transition: background .3s;
}
.nudge__cta:hover { background: var(--red-deep); }
.nudge__close {
  width: 30px; height: 30px;
  border-radius: 50%;
  color: rgba(239,231,216,.6);
  font-size: 1.2rem;
  line-height: 1;
  transition: color .3s, background .3s;
}
.nudge__close:hover { color: var(--beige); background: rgba(239,231,216,.08); }

@media (max-width: 560px) {
  .nudge { gap: .6rem; padding: .6rem .6rem .6rem 1rem; }
  .nudge__msg { font-size: .82rem; white-space: normal; }
}

/* ──────────────────────────  SCROLL REVEAL  ────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(2.4rem);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero__video { animation: none; }
}

/* ── THE VIBE — party moodboards ── */
.vibe { padding: 0 var(--pad-x) var(--section-y); max-width: 86rem; margin: 0 auto; text-align: center; }
.vibe .eyebrow { display: inline-flex; }
.vibe__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(.8rem, 2.5vw, 1.6rem); margin-top: 2rem; }
.vibe__frame { aspect-ratio: 3/4; overflow: hidden; position: relative; background: var(--beige-deep);
  box-shadow: 0 1px 0 var(--red) inset, 0 0 0 1px var(--rule), 0 30px 60px -20px rgba(10,8,7,.32); }
.vibe__frame img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.03) saturate(1.05); transition: transform 1.2s var(--ease); }
.vibe__frame:hover img { transform: scale(1.04); }
@media (max-width: 720px) { .vibe__grid { grid-template-columns: 1fr; gap: 1rem; } }

/* ── "from the night" video elements (subtle, lazy-played) ── */
.couple__reel { max-width: clamp(210px, 23vw, 290px); margin: 2.6rem auto 0; }
.couple__reel video {
  width: 100%; aspect-ratio: 594/1200; object-fit: cover;
  background: var(--beige-deep);
  box-shadow: 0 1px 0 var(--red) inset, 0 0 0 1px var(--rule), 0 30px 60px -20px rgba(10,8,7,.32);
}
.couple__reel figcaption {
  font-family: var(--f-display); font-style: italic; font-weight: 500;
  color: var(--ink); font-size: clamp(1.05rem, 1.9vw, 1.4rem);
  letter-spacing: .01em; margin-top: 1.1rem;
  font-variation-settings: "opsz" 40;
}

/* neon photobooth flip — mirrors the strip on the opposite gutter */
.song__flip {
  display: block; width: clamp(120px, 13vw, 152px);
  margin: 1.5rem auto .25rem; transform: rotate(3deg);
  box-shadow: 0 24px 50px -18px rgba(10,8,7,.55), 0 8px 18px -10px rgba(10,8,7,.4);
  transition: transform .8s var(--ease);
}
.song__flip video { display: block; width: 100%; height: auto; }
.song__flip:hover { transform: rotate(1deg) translateY(-3px); }
@media (min-width: 900px) {
  .song__flip {
    position: absolute; left: clamp(.5rem, 2vw, 2rem); top: 50%;
    margin: 0; width: clamp(136px, 12vw, 160px);
    transform: translateY(-46%) rotate(-5deg); z-index: 1;
  }
  .song__flip:hover { transform: translateY(-49%) rotate(-3deg); }
}

/* "they said yes" — celebratory closer */
.saidyes { padding: var(--section-y) var(--pad-x); display: grid; place-items: center; background: var(--black); }
.saidyes__clip {
  width: clamp(220px, 32vw, 340px); aspect-ratio: 1/1; overflow: hidden;
  border-radius: 4px; box-shadow: 0 30px 80px -28px rgba(177,25,31,.45);
}
.saidyes__clip video { width: 100%; height: 100%; object-fit: cover; display: block; }

/* "our song" — Spotify embed in the song section */
.song__ours {
  font-family: var(--f-italic); font-style: italic; color: var(--red);
  font-size: 1.05rem; letter-spacing: .04em; margin: 1.8rem 0 1rem;
}
.song__spotify {
  max-width: 420px; margin: 0 auto 1.4rem;
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 24px 50px -20px rgba(10,8,7,.4);
}
.song__spotify iframe { display: block; width: 100%; border: 0; }

/* ── song keepsakes — MOBILE: strip above-right + clip below-left, only grazing the slip's empty edges (never the text) · DESKTOP: flank in the side gutters ── */
.song__strip img, .song__flip video { display: block; width: 100%; height: auto; border-radius: 2px; }
@media (max-width: 899px) {
  .song__strip {
    display: block; position: relative; z-index: 4; pointer-events: none;
    width: clamp(78px, 20vw, 104px);
    margin: .6rem 6px -14px auto;        /* right-aligned, above the slip, dips ~14px onto its top padding */
    transform: rotate(5deg);
    box-shadow: 0 16px 34px -14px rgba(10,8,7,.55);
  }
  .song__flip {
    display: block; position: relative; z-index: 4; pointer-events: none;
    width: clamp(104px, 29vw, 132px);
    margin: -14px auto .6rem 8px;         /* left-aligned, below the slip, dips ~14px onto its bottom padding */
    transform: rotate(-6deg);
    box-shadow: 0 16px 34px -14px rgba(10,8,7,.5);
  }
}
@media (min-width: 900px) {
  .song__strip, .song__flip { position: absolute; margin: 0; top: 50%; bottom: auto; z-index: 1; pointer-events: none; }
  .song__strip { right: clamp(.5rem, 3vw, 2.5rem); left: auto; transform: translateY(-46%) rotate(5deg); width: clamp(120px, 11vw, 152px);
    box-shadow: 0 24px 50px -18px rgba(10,8,7,.5); }
  .song__flip  { left: clamp(.5rem, 3vw, 2.5rem); right: auto; transform: translateY(-46%) rotate(-5deg); width: clamp(118px, 11vw, 146px);
    box-shadow: 0 24px 50px -18px rgba(10,8,7,.5); }
}
