/* Launch page + dual countdown band */

/* Local Launch menu (RSVP lives here — not in main site nav) */
.launch-menu {
  position: sticky;
  top: 72px;
  z-index: 90;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  background: var(--navy-deep, #07122a);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.launch-menu a {
  flex: 1;
  max-width: 420px;
  text-align: center;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(15px, 2.2vw, 18px);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 20px;
  color: rgba(255,255,255,0.78);
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: background 0.2s ease, color 0.2s ease;
}
.launch-menu a:last-child { border-right: none; }
.launch-menu a:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.launch-menu a.is-active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
  box-shadow: inset 0 -3px 0 var(--red);
}
.launch-menu__rsvp {
  background: var(--red) !important;
  color: var(--white) !important;
  box-shadow: none !important;
}
.launch-menu__rsvp:hover {
  background: var(--red-bright, #e8222a) !important;
  color: var(--white) !important;
}
.launch-menu__rsvp.is-active {
  background: var(--red-bright, #e8222a) !important;
  box-shadow: inset 0 -3px 0 #fff !important;
}
body.has-lang-banner .launch-menu { top: 112px; }
@media (max-width: 900px) {
  .launch-menu { top: 64px; }
  body.has-lang-banner .launch-menu { top: 104px; }
  .launch-menu a { padding: 14px 12px; font-size: 14px; letter-spacing: 1px; }
}

.launch-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 168px 80px 72px;
  overflow: hidden;
}
.launch-hero__bg {
  position: absolute; inset: 0;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  transform: scale(1.04);
  animation: launchBgDrift 18s ease-in-out infinite alternate;
}
@keyframes launchBgDrift {
  from { transform: scale(1.04) translate3d(0,0,0); }
  to { transform: scale(1.08) translate3d(-1.5%, -1%, 0); }
}
.launch-hero__shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(13,27,62,0.55) 0%, rgba(13,27,62,0.72) 45%, rgba(13,27,62,0.94) 100%),
    linear-gradient(90deg, rgba(208,31,31,0.18), transparent 55%);
}
.launch-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 920px;
}
.launch-hero__brand {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(42px, 8vw, 88px);
  line-height: 0.95;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
  animation: launchFadeUp 0.7s ease both;
}
.launch-hero__ribbon {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--navy);
  border-left: 4px solid var(--red);
  padding: 10px 16px;
  margin-bottom: 22px;
  animation: launchFadeUp 0.7s ease 0.08s both;
}
.launch-hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(48px, 10vw, 96px);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -1px;
  color: var(--white);
  margin-bottom: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px 16px;
  animation: launchFadeUp 0.7s ease 0.16s both;
}
.launch-hero__the {
  background: var(--red);
  color: var(--white);
  font-size: 0.42em;
  letter-spacing: 3px;
  padding: 8px 14px 6px;
  position: relative;
  top: -0.15em;
}
.launch-hero__date-word { color: var(--red-bright); }
.launch-hero__sub {
  font-size: clamp(16px, 2.2vw, 20px);
  line-height: 1.5;
  color: rgba(255,255,255,0.82);
  max-width: 540px;
  margin-bottom: 28px;
  animation: launchFadeUp 0.7s ease 0.24s both;
}
.launch-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  animation: launchFadeUp 0.7s ease 0.32s both;
}
@keyframes launchFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.launch-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.launch-facts__item {
  padding: 36px 40px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.launch-facts__item:last-child { border-right: none; }
.launch-facts__label {
  display: block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 10px;
}
.launch-facts__value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--white);
}

.launch-about {
  padding: 80px;
  background: var(--navy);
}
.launch-section-label {
  font-size: clamp(28px, 5vw, 48px) !important;
  letter-spacing: 4px !important;
  margin-bottom: 18px !important;
  font-weight: 800 !important;
}
.launch-pillars {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  max-width: 920px;
}
.launch-pillar {
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.launch-pillar:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.launch-pillar h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(24px, 3.4vw, 34px);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0;
  color: var(--white);
  line-height: 1.2;
}
.launch-pillar p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
  max-width: 420px;
}

.launch-book {
  padding: 72px 80px;
  background: var(--red);
  text-align: center;
}
.launch-book__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 4vw, 44px);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.launch-book__body {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255,255,255,0.9);
  max-width: 640px;
  margin: 0 auto 28px;
}
.launch-book__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}
.launch-book .btn-primary {
  background: var(--navy);
}
.launch-book .btn-primary:hover { background: var(--navy-light); }
.launch-book .btn-outline {
  border-color: rgba(255,255,255,0.55);
}
.launch-book__note {
  font-size: 14px;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.75);
}

.launch-values {
  padding: 48px 80px 64px;
  background: var(--navy-mid);
  text-align: center;
}
.launch-values__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 36px;
  margin-bottom: 28px;
}
.launch-values__list li {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.launch-values__slogan {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(18px, 2.5vw, 26px);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
}

#stemdag.countdown-band {
  padding: 48px 40px 56px;
}
.countdown-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.countdown-event {
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 28px 24px 24px;
  text-align: center;
}
.countdown-event .countdown-title {
  font-size: clamp(20px, 2.6vw, 30px);
  margin-bottom: 10px;
}
.countdown-meta {
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255,255,255,0.85);
  margin-bottom: 22px;
}
.countdown-event .countdown-grid { gap: 12px; }
.countdown-event .countdown-block {
  min-width: 84px;
  padding: 14px 16px;
}
.countdown-event .countdown-num { font-size: clamp(36px, 5vw, 56px); }
.countdown-event .countdown-block::after { right: -10px; font-size: 28px; }
.countdown-contact {
  margin-top: 16px;
  font-size: 14px;
  color: rgba(255,255,255,0.9);
}
.countdown-contact a {
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.countdown-more {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.5);
  padding-bottom: 2px;
}
.countdown-more:hover { border-bottom-color: var(--white); }

/* RSVP page */
.rsvp-intro {
  padding: 168px 80px 40px;
  background:
    linear-gradient(180deg, rgba(13,27,62,0.88), rgba(13,27,62,0.96)),
    url('../images/hero-bg.jpg') center/cover no-repeat;
  text-align: center;
}
.rsvp-intro__meta {
  margin-top: 16px;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
}
.rsvp-intro__label {
  font-size: clamp(18px, 3.2vw, 28px);
  letter-spacing: 5px;
  margin-bottom: 20px;
  animation: rsvpLabelFlash 1.4s ease-in-out infinite;
}
@keyframes rsvpLabelFlash {
  0%, 100% { opacity: 1; color: var(--red-bright); text-shadow: 0 0 0 transparent; }
  50% { opacity: 0.55; color: #ff6b6b; text-shadow: 0 0 18px rgba(232, 34, 42, 0.55); }
}
@media (prefers-reduced-motion: reduce) {
  .rsvp-intro__label { animation: none; opacity: 1; }
}
.rsvp-guests {
  padding: 56px 80px 24px;
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  max-width: none;
}
.rsvp-guests .section-body {
  max-width: 720px;
}
.rsvp-note {
  margin: 0;
  padding: 12px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  line-height: 1.45;
}
.launch-about--guests {
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.launch-refresh {
  margin-top: 28px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--red-bright);
}
.rsvp-section {
  padding: 48px 80px 80px;
  background: var(--navy);
  max-width: 820px;
  margin: 0 auto;
}
.rsvp-form textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 16px;
  outline: none;
  width: 100%;
  resize: vertical;
  min-height: 96px;
  transition: border-color 0.2s;
}
.rsvp-form textarea:focus { border-color: var(--red-bright); }
.rsvp-form textarea::placeholder { color: rgba(255,255,255,0.25); }
.rsvp-alt {
  margin-top: 36px;
  text-align: center;
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}
.rsvp-alt a {
  color: var(--red-bright);
  font-weight: 700;
  text-decoration: none;
}
.rsvp-alt a:hover { text-decoration: underline; }

@media (max-width: 900px) {
  .launch-hero { padding: 150px 24px 56px; min-height: 88vh; }
  .launch-facts { grid-template-columns: 1fr; }
  .launch-facts__item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 28px 24px;
  }
  .launch-about, .launch-book, .launch-values { padding-left: 24px; padding-right: 24px; }
  .launch-pillars { grid-template-columns: 1fr; gap: 28px; }
  .countdown-duo { grid-template-columns: 1fr; }
  #stemdag.countdown-band { padding: 40px 16px 48px; }
  .countdown-event .countdown-block { min-width: 0; width: 26vw; max-width: 88px; }
  .rsvp-intro { padding: 150px 24px 36px; }
  .rsvp-guests { padding: 40px 24px 16px; }
  .rsvp-section { padding: 32px 24px 64px; }
}
