:root {
  --magenta: #D90368;
  --deep-maroon: #930136;
  --ink: #101828;
  --slate: #4A5568;
  --indigo: #33399E;
  --cream-glow: #FFE9AB;
  --page-bg: #FFF7F6;
  --blush-1: #FFF3F3;
  --blush-2: #FFE5E4;
  --blush-3: #FFD9D7;
  --overlay-ink: rgba(16, 20, 35, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--page-bg);
  color: var(--ink);
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

a { color: var(--magenta); text-decoration: none; }
a:hover { color: var(--deep-maroon); }

input::placeholder { color: #9AA3B2; }

h1, h2 {
  margin: 0;
  font-family: 'Merriweather', serif;
  font-style: italic;
  font-weight: 700;
}

img { display: block; }

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

/* ---------------- Nav ---------------- */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 48px;
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  background: rgba(16, 20, 35, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav__brand { display: flex; align-items: center; gap: 12px; }

.nav__actions { display: flex; align-items: center; gap: 12px; }

/* ---------------- Survey link ---------------- */
/* Styled to match .lang-switcher__toggle (same pill/border/icon sizing)
   since the two sit side by side in the nav. */

.nav__survey {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 13px;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.2s, border-color 0.2s;
}
.nav__survey:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: #fff;
  color: #fff;
}
.nav__survey-icon { width: 16px; height: 16px; flex-shrink: 0; }
.nav__survey-label { white-space: nowrap; }

/* ---------------- Language switcher ---------------- */

.lang-switcher { position: relative; }

.lang-switcher__toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 13px;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.lang-switcher__toggle:hover,
.lang-switcher__toggle[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.22);
  border-color: #fff;
}
.lang-switcher__icon { width: 16px; height: 16px; flex-shrink: 0; }
.lang-switcher__current { white-space: nowrap; }

.lang-switcher__panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 240px;
  max-width: calc(100vw - 32px);
  background: #1a1d2e;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  padding: 10px;
  z-index: 60;
}

.lang-switcher__search {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  margin-bottom: 8px;
}
.lang-switcher__search::placeholder { color: rgba(255, 255, 255, 0.45); }
.lang-switcher__search:focus { outline: none; border-color: rgba(255, 255, 255, 0.5); }

.lang-switcher__list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 260px;
  overflow-y: auto;
}

.lang-switcher__option {
  display: flex;
  align-items: baseline;
  gap: 6px;
  width: 100%;
  padding: 9px 10px;
  border-radius: 8px;
  border: none;
  background: none;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  text-align: left;
  cursor: pointer;
}
.lang-switcher__option:hover,
.lang-switcher__option:focus-visible { background: rgba(255, 255, 255, 0.1); outline: none; }
.lang-switcher__option[aria-selected="true"] { background: rgba(255, 255, 255, 0.16); font-weight: 600; }
.lang-switcher__option-english { color: rgba(255, 255, 255, 0.5); font-size: 12px; }

.lang-switcher__empty {
  color: rgba(255, 255, 255, 0.5);
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  text-align: center;
  padding: 12px 4px;
  margin: 0;
}

.nav__wordmark {
  height: 26px;
  width: auto;
  filter: brightness(0) invert(1) drop-shadow(0 1px 3px rgba(0, 0, 0, 0.4));
}

.pill-btn {
  padding: 12px 26px;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.75);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.2px;
  backdrop-filter: blur(6px);
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.2s, border-color 0.2s;
  cursor: pointer;
}
.pill-btn:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

/* ---------------- Full-bleed media sections ---------------- */

.media-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.media-section video,
.media-section .media-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #1a1c26;
}

.media-section__scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.scrim--magenta {
  background: linear-gradient(180deg, rgba(16,20,35,0) 30%, rgba(16,20,35,0.5) 72%, rgba(147,0,54,0.6) 100%);
}
.scrim--indigo {
  background: linear-gradient(180deg, rgba(16,20,35,0) 30%, rgba(16,20,35,0.5) 72%, rgba(51,57,158,0.55) 100%);
}

.hero { min-height: 640px; }
.hero .media-section__scrim {
  background: linear-gradient(180deg, rgba(16,20,35,0.15) 0%, rgba(16,20,35,0.1) 38%, rgba(16,20,35,0.62) 74%, rgba(147,0,54,0.72) 100%);
}

.hero__content {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0 6vw 64px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 800px;
}

.hero__headline {
  font-size: clamp(1.7rem, 3.4vw, 2.8rem);
  line-height: 1.28;
  color: #fff;
}

.hero__headline .stay {
  background: linear-gradient(90deg, #F63183, var(--cream-glow));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.hero__subhead {
  margin: 0;
  max-width: 520px;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
}

.hero__cta {
  align-self: flex-start;
  margin-top: 8px;
  padding: 16px 34px;
  font-size: 15px;
}

/* ---------------- Story text plate (the 5 couple sections) ---------------- */

.story__plate {
  position: absolute;
  bottom: 0;
  padding: 0 6vw 64px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 520px;
}

.story__plate--left { left: 0; align-items: flex-start; }
.story__plate--right { right: 0; align-items: flex-end; text-align: right; }

.story__tag {
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.story__headline {
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  line-height: 1.25;
  color: #fff;
}

/* ---------------- Forms ---------------- */

.email-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
  max-width: 520px;
}

.email-form input[type="email"],
.email-form input[type="text"] {
  flex-grow: 1;
  min-width: 220px;
  padding: 15px 22px;
  border-radius: 999px;
  border: none;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  outline: none;
}

.email-form button {
  padding: 15px 30px;
  border-radius: 999px;
  border: none;
  background: var(--magenta);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.email-form button:hover { background: var(--deep-maroon); }
.email-form button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.email-form__captcha { width: 100%; }

.form-success {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 15px;
}
.form-success--light { color: var(--cream-glow); }
.form-success--dark { color: var(--deep-maroon); }

.form-error {
  margin: 4px 0 0;
  width: 100%;
  font-size: 13px;
  color: #FFD9D7;
  font-weight: 500;
}
.form-error--dark { color: #b3261e; }

/* ---------------- Three moments ---------------- */

.moments {
  width: 100%;
  padding: 100px 6vw;
  background: linear-gradient(160deg, var(--blush-1), var(--blush-2));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}

.moments__title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  text-align: center;
  max-width: 680px;
}

.moments__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 980px;
}

.moments__col {
  flex: 1 1 240px;
  min-width: 220px;
  padding: 8px 40px;
  border-left: 1px solid rgba(16, 24, 40, 0.12);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.moments__col:last-child { border-right: 1px solid rgba(16, 24, 40, 0.12); }

.moments__label {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--magenta);
}

.moments__desc {
  margin: 0;
  font-family: 'Merriweather', serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.55;
  color: var(--slate);
}

/* ---------------- Manifesto ---------------- */

.manifesto {
  height: 92vh;
  min-height: 560px;
}
.manifesto .media-section__scrim {
  background: linear-gradient(180deg, rgba(16,20,35,0.5), rgba(16,20,35,0.62));
}

.manifesto__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 8vw;
  gap: 26px;
  pointer-events: none;
  text-align: center;
}

.manifesto__quote {
  margin: 0;
  font-family: 'Merriweather', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.6rem, 3.6vw, 2.7rem);
  line-height: 1.45;
  color: #fff;
  max-width: 820px;
}

.manifesto__attrib {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

/* .manifesto__content is pointer-events:none (it's decorative text over a
   background video) — re-enable just for this one clickable CTA. */
.manifesto__survey-cta { pointer-events: auto; }

/* ---------------- Tag cloud ---------------- */

.tag-cloud {
  width: 100%;
  padding: 96px 6vw;
  background: var(--page-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

.tag-cloud__title {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  text-align: center;
}

.tag-cloud__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 760px;
}

.chip {
  padding: 10px 22px;
  border-radius: 999px;
  background: var(--blush-2);
  color: var(--deep-maroon);
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 14px;
}

/* ---------------- Waitlist card ---------------- */

.waitlist-section {
  width: 100%;
  padding: 80px 6vw;
  background: radial-gradient(circle at 50% 40%, #FFEDEC 0%, var(--blush-2) 55%, var(--blush-3) 100%);
  display: flex;
  justify-content: center;
}

.waitlist-card {
  width: 100%;
  max-width: 520px;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 28px;
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  box-shadow: 0 30px 70px rgba(147, 0, 54, 0.1);
}

.waitlist-card__logo { height: 96px; width: 96px; }

.waitlist-card__title {
  font-size: clamp(1.6rem, 2.8vw, 2rem);
  text-align: center;
}

.waitlist-card__subhead {
  margin: 0;
  font-size: 15px;
  color: var(--slate);
  text-align: center;
  max-width: 380px;
}

.waitlist-card .email-form {
  flex-direction: column;
  width: 100%;
  margin-top: 8px;
  max-width: none;
}

.waitlist-card .email-form input {
  width: 100%;
}

.waitlist-card .email-form button {
  margin-top: 6px;
  padding: 16px;
  width: 100%;
}

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

.footer {
  width: 100%;
  padding: 36px 6vw;
  background: var(--blush-1);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(16, 24, 40, 0.08);
}

.footer__brand { display: flex; align-items: center; gap: 10px; }
.footer__logo { height: 56px; width: 56px; }
.footer__copy { font-family: 'Poppins', sans-serif; font-size: 13px; color: var(--slate); }

/* ---------------- Responsive: tablet ---------------- */

@media (max-width: 880px) {
  .nav { padding: 18px 24px; }

  .media-section,
  .hero { min-height: 560px; }
  .manifesto { min-height: 480px; }

  .hero__content,
  .story__plate,
  .manifesto__content { padding-left: 24px; padding-right: 24px; }

  .story__plate { max-width: 460px; }

  .moments { padding: 72px 24px; gap: 40px; }
  .tag-cloud { padding: 72px 24px; }
  .waitlist-section { padding: 64px 24px; }
}

/* ---------------- Responsive: mobile ---------------- */

@media (max-width: 640px) {
  .nav { padding: 14px 18px; }
  .nav__wordmark { height: 20px; }
  .nav__actions { gap: 8px; }
  .pill-btn { padding: 10px 18px; font-size: 13px; }

  /* Icon-only on mobile: the language name would crowd the CTA next to it,
     so keep just the globe glyph and rely on aria-label for accessibility. */
  .lang-switcher__toggle { padding: 10px; gap: 0; }
  .lang-switcher__current { display: none; }
  .lang-switcher__panel { right: -8px; width: 220px; }

  /* Same icon-only treatment for the Survey link, so it stays paired
     with the language icon instead of crowding the nav with two labels. */
  .nav__survey { padding: 10px; gap: 0; }
  .nav__survey-label { display: none; }

  /* dvh tracks the real visible viewport on mobile browsers, where 100vh
     overshoots under the address bar; vh stays as a fallback for browsers
     without dvh support. */
  .media-section { height: 100vh; height: 100dvh; min-height: 520px; }
  .hero { min-height: 560px; }
  .manifesto { height: auto; min-height: 440px; }

  .hero__content,
  .story__plate,
  .manifesto__content { padding-left: 20px; padding-right: 20px; padding-bottom: 40px; }

  .story__plate,
  .story__plate--right { max-width: 100%; }

  .hero__headline { font-size: clamp(1.8rem, 8vw, 2.6rem); }
  .story__headline { font-size: clamp(1.4rem, 6.5vw, 1.9rem); }
  .manifesto__quote { font-size: clamp(1.3rem, 6vw, 1.7rem); }

  .email-form { gap: 10px; }
  .email-form input,
  .email-form button { width: 100%; flex-grow: 1; }

  .moments { padding: 56px 20px; gap: 28px; }
  .moments__grid { flex-direction: column; gap: 28px; }
  .moments__col {
    flex: 0 0 auto;
    width: 100%;
    min-width: 0;
    padding: 0 0 0 20px;
    border-left: 2px solid rgba(217, 3, 104, 0.25);
    border-right: none !important;
  }

  .tag-cloud { padding: 56px 20px; gap: 24px; }

  .waitlist-section { padding: 48px 16px; }
  .waitlist-card { padding: 32px 22px; border-radius: 22px; gap: 16px; }
  .waitlist-card__logo { height: 72px; width: 72px; }

  .footer { padding: 28px 20px; justify-content: center; text-align: center; }
}
