:root {
  --black: #030303;
  --black-2: #070707;
  --white: #f3f0ea;
  --muted: rgba(243, 240, 234, .62);
  --muted-2: rgba(243, 240, 234, .38);
  --line: rgba(255,255,255,.12);
  --line-soft: rgba(255,255,255,.07);

  --font: "Manrope", "IBM Plex Sans", "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  overflow-x: hidden;
  font-weight: 300;
}

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
img { display: block; max-width: 100%; }

.music-toggle {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 120;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.28);
  backdrop-filter: blur(12px);
  color: rgba(255,255,255,.68);
  padding: 10px 13px;
  font-size: 8px;
  letter-spacing: .22em;
  text-transform: uppercase;
  cursor: pointer;
}

/* INTRO */

.ad-intro {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: #000;
  overflow: hidden;
  transition: opacity 1.3s var(--ease), visibility 1.3s var(--ease);
}

.ad-intro.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.ad-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 1.05s var(--ease), transform 3.8s var(--ease);
}

.ad-bg.active {
  opacity: 1;
  transform: scale(1);
}

.ad-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(0,0,0,.58), rgba(0,0,0,.05) 45%, rgba(0,0,0,.45)),
    linear-gradient(to top, rgba(0,0,0,.78), transparent 56%);
}

.ad-copy {
  position: absolute;
  left: clamp(22px, 5vw, 72px);
  bottom: clamp(64px, 10vh, 98px);
  max-width: 320px;
}

.ad-label,
.eyebrow {
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255,255,255,.48);
}

.ad-copy h1 {
  margin-top: 13px;
  font-size: clamp(1rem, 1.45vw, 1.35rem);
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: .045em;
  text-transform: uppercase;
}

.ad-subline {
  margin-top: 14px;
  color: rgba(255,255,255,.42);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.enter-btn {
  position: absolute;
  right: clamp(22px, 4vw, 70px);
  bottom: clamp(28px, 5vh, 58px);
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.58);
  font-size: 8.5px;
  letter-spacing: .24em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .45s var(--ease), transform .45s var(--ease);
}

.enter-btn:hover {
  color: var(--white);
  transform: translateX(5px);
}

/* SITE */

.site {
  opacity: 0;
  transition: opacity 1s var(--ease);
}

.site.visible { opacity: 1; }

.container {
  width: min(1120px, 88vw);
  margin: 0 auto;
}

.section {
  padding: clamp(86px, 11vw, 150px) 0;
}

.split {
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: clamp(42px, 8vw, 120px);
  align-items: start;
}

/* NAV */

.nav {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px clamp(22px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: var(--white);
  mix-blend-mode: difference;
}

.brand {
  font-size: 9.5px;
  letter-spacing: .42em;
  font-weight: 500;
}

.nav nav {
  display: flex;
  gap: 30px;
}

.nav nav a,
.lang button,
.lang span {
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.54);
  font-size: 8.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .35s var(--ease);
}

.nav nav a:hover,
.lang button.active,
.lang button:hover {
  color: var(--white);
}

.lang {
  justify-self: end;
  display: flex;
  gap: 8px;
  align-items: center;
}

/* HERO */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 120px clamp(24px, 6vw, 80px) clamp(54px, 8vh, 92px);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("8.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  animation: slowZoom 24s linear infinite alternate;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(0,0,0,.66), rgba(0,0,0,.07) 52%, rgba(0,0,0,.5)),
    linear-gradient(to top, rgba(0,0,0,.86), transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 430px;
}

.hero h2,
.section-title h2,
.section-head h2,
.panel-copy h2,
.location-content h2,
.closing-content h2 {
  font-family: var(--font);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.035em;
  text-transform: none;
}

.hero h2 {
  margin-top: 14px;
  font-size: clamp(2.2rem, 4.6vw, 4.4rem);
}

.hero-text {
  margin-top: 20px;
  max-width: 390px;
  color: rgba(243,240,234,.58);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
}

.hero-meta {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: rgba(243,240,234,.36);
  font-size: 8px;
  letter-spacing: .22em;
  text-transform: uppercase;
}

/* TEXT */

.section-title h2,
.section-head h2 {
  margin-top: 18px;
  font-size: clamp(2rem, 3.8vw, 3.6rem);
  max-width: 520px;
}

.section-copy p {
  color: rgba(243,240,234,.62);
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.95;
  max-width: 540px;
}

.text-link {
  display: inline-block;
  margin-top: 32px;
  color: rgba(243,240,234,.84);
  font-size: 8.5px;
  letter-spacing: .25em;
  text-transform: uppercase;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}

.text-link:hover {
  opacity: .62;
  transform: translateX(4px);
}

/* COUNTDOWN */

.countdown-section {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: var(--black-2);
}

.center { text-align: center; }

.countdown {
  margin: 42px auto 0;
  width: min(820px, 100%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line-soft);
}

.countdown div {
  padding: clamp(24px, 4vw, 44px) 10px;
  text-align: center;
  border-right: 1px solid var(--line-soft);
}

.countdown div:last-child { border-right: 0; }

.countdown strong {
  display: block;
  font-size: clamp(2rem, 5vw, 4.8rem);
  font-weight: 300;
  letter-spacing: -0.045em;
  line-height: .9;
}

.countdown span {
  display: block;
  margin-top: 18px;
  font-size: 7.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted-2);
}

/* PROGRAMME */

.section-head { margin-bottom: 56px; }

.timeline { border-top: 1px solid var(--line); }

.time-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 28px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.time-row span {
  font-size: clamp(1.4rem, 2.5vw, 2.4rem);
  font-weight: 300;
  letter-spacing: -0.03em;
}

.time-row p {
  align-self: center;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

/* EXPERIENCE */

.experience { background: #030303; }

.experience-panel {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: center;
}

.experience-panel.reverse {
  grid-template-columns: .8fr 1.2fr;
}

.experience-panel.reverse .panel-image { order: 2; }
.experience-panel.reverse .panel-copy { order: 1; }

.panel-image {
  height: 100svh;
  background-size: cover;
  background-position: center;
  filter: saturate(.92) contrast(1.04);
}

.panel-copy {
  padding: clamp(36px, 6vw, 82px);
}

.panel-copy h2 {
  margin-top: 16px;
  font-size: clamp(1.9rem, 3.4vw, 3.2rem);
}

.panel-copy p:not(.eyebrow) {
  margin-top: 22px;
  color: rgba(243,240,234,.58);
  max-width: 420px;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.9;
}

/* LOCATION */

.location {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: clamp(80px, 10vh, 120px) clamp(24px, 6vw, 80px);
  overflow: hidden;
}

.location-bg {
  position: absolute;
  inset: 0;
  background-image: url("6.png");
  background-size: cover;
  background-position: center;
}

.location-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,.86), transparent 58%),
    linear-gradient(to right, rgba(0,0,0,.68), transparent 56%);
}

.location-content {
  position: relative;
  z-index: 2;
}

.location-content h2 {
  margin-top: 16px;
  font-size: clamp(2.2rem, 4.5vw, 4.4rem);
}

.location-content p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 8.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
}

/* RSVP */

.rsvp { background: var(--black-2); }

.rsvp-form {
  display: grid;
  gap: 16px;
}

.rsvp-form input {
  width: 100%;
  padding: 16px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--white);
  outline: none;
  font-size: 12.5px;
  font-weight: 300;
  letter-spacing: .04em;
}

.rsvp-form input::placeholder { color: var(--muted-2); }

.choice {
  display: flex;
  gap: 32px;
  margin-top: 18px;
}

.choice label {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 8.5px;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.choice input { width: auto; }

.rsvp-form button {
  margin-top: 24px;
  width: fit-content;
  padding: 15px 34px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--white);
  font-size: 8.5px;
  letter-spacing: .26em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .4s var(--ease), color .4s var(--ease);
}

.rsvp-form button:hover {
  background: var(--white);
  color: #000;
}

.form-message {
  min-height: 20px;
  color: var(--muted);
  font-size: 12px;
}

/* CLOSING */

.closing {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
}

.closing-bg {
  position: absolute;
  inset: 0;
  background-image: url("8.png");
  background-size: cover;
  background-position: center;
}

.closing-shade {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.76);
}

.closing-content {
  position: relative;
  z-index: 2;
  padding: 0 22px;
}

.closing-content h2 {
  margin-top: 18px;
  font-size: clamp(2.4rem, 5vw, 5rem);
}

/* ANIMATIONS */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes slowZoom {
  from { transform: scale(1.02); }
  to { transform: scale(1.065); }
}

/* MOBILE */

@media (max-width: 900px) {
  .music-toggle {
    right: 16px;
    bottom: 16px;
    font-size: 7px;
    padding: 9px 10px;
    letter-spacing: .18em;
  }

  .nav {
    grid-template-columns: 1fr auto;
    padding: 20px 18px;
  }

  .nav nav { display: none; }

  .brand {
    font-size: 8.5px;
    letter-spacing: .34em;
  }

  .lang button,
  .lang span {
    font-size: 8px;
    letter-spacing: .16em;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .hero {
    min-height: 100svh;
    padding: 108px 20px 48px;
    align-items: flex-end;
  }

  .hero-bg { background-position: center center; }

  .hero-content { max-width: 300px; }

  .hero h2 {
    margin-top: 12px;
    font-size: clamp(2rem, 9.5vw, 3rem);
    line-height: 1.02;
    letter-spacing: -0.035em;
  }

  .hero-text {
    margin-top: 16px;
    max-width: 270px;
    font-size: 12px;
    line-height: 1.75;
  }

  .hero-meta {
    margin-top: 22px;
    flex-direction: column;
    gap: 9px;
    font-size: 7.5px;
    letter-spacing: .2em;
  }

  .section { padding: 78px 0; }

  .section-title h2,
  .section-head h2,
  .panel-copy h2,
  .location-content h2,
  .closing-content h2 {
    margin-top: 14px;
    font-size: clamp(1.75rem, 8vw, 2.7rem);
    line-height: 1.05;
    letter-spacing: -0.035em;
  }

  .section-copy p,
  .panel-copy p:not(.eyebrow) {
    font-size: 12.5px;
    line-height: 1.85;
  }

  .eyebrow,
  .ad-label {
    font-size: 7.5px;
    letter-spacing: .24em;
  }

  .text-link {
    font-size: 7.5px;
    letter-spacing: .2em;
  }

  .countdown {
    grid-template-columns: repeat(4, 1fr);
  }

  .countdown div {
    padding: 22px 3px;
  }

  .countdown strong {
    font-size: clamp(1.55rem, 7.5vw, 2.5rem);
  }

  .countdown span {
    margin-top: 12px;
    font-size: 6px;
    letter-spacing: .1em;
  }

  .section-head { margin-bottom: 48px; }

  .time-row {
    grid-template-columns: 70px 1fr;
    gap: 14px;
    padding: 22px 0;
  }

  .time-row span {
    font-size: 1.3rem;
  }

  .time-row p {
    font-size: 8.2px;
    line-height: 1.6;
    letter-spacing: .14em;
  }

  .experience-panel,
  .experience-panel.reverse {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .experience-panel.reverse .panel-image,
  .experience-panel.reverse .panel-copy {
    order: initial;
  }

  .panel-image {
    height: 66svh;
    background-position: center center;
  }

  .panel-copy {
    padding: 46px 20px 74px;
  }

  .location {
    min-height: 92svh;
    padding: 88px 20px 48px;
  }

  .location-content p {
    font-size: 8px;
    letter-spacing: .18em;
  }

  .choice {
    flex-direction: column;
    gap: 16px;
  }

  .rsvp-form input {
    font-size: 12px;
    padding: 15px 0;
  }

  .rsvp-form button {
    padding: 14px 28px;
    font-size: 7.5px;
    letter-spacing: .22em;
  }

  .ad-bg {
    background-size: cover;
    background-position: center center;
  }

  .ad-copy {
    left: 20px;
    right: 20px;
    bottom: 76px;
    max-width: 250px;
  }

  .ad-copy h1 {
    margin-top: 11px;
    font-size: .96rem;
    line-height: 1.25;
    letter-spacing: .055em;
  }

  .ad-subline {
    margin-top: 12px;
    font-size: 8px;
    letter-spacing: .18em;
  }

  .enter-btn {
    left: 20px;
    right: auto;
    bottom: 28px;
    font-size: 7.5px;
    letter-spacing: .2em;
  }
}