@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Manrope:wght@300;400;500&display=swap');

:root {
  --ink: #0a0e14;
  --ink-soft: #111923;
  --paper: #edf2f5;
  --white: #f8fafb;
  --muted: #a9b3bd;
  --blue: #bdd2e1;
  --line: rgba(255,255,255,.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: Inter, Arial, sans-serif;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }

.intro-screen {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  background: #070a0f;
  transition: opacity 1.1s ease 1.4s, visibility 0s linear 2.5s;
}
.intro-word {
  font-family: Manrope, sans-serif;
  font-size: clamp(54px, 11vw, 150px);
  font-weight: 300;
  letter-spacing: -.07em;
  opacity: 0;
  transform: translateY(18px);
  animation: intro 1.35s ease forwards;
}
body.loaded .intro-screen {
  opacity: 0;
  visibility: hidden;
}
@keyframes intro {
  to { opacity: 1; transform: translateY(0); }
}

.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.025);
  animation: breathe 16s ease-in-out infinite alternate;
}
@keyframes breathe {
  to { transform: scale(1.07); }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6,9,13,.04) 0%, rgba(6,9,13,.10) 36%, rgba(6,9,13,.88) 100%),
    linear-gradient(90deg, rgba(6,9,13,.34) 0%, rgba(6,9,13,.04) 58%, rgba(6,9,13,.02) 100%);
}

.nav {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 28px clamp(22px, 5vw, 72px);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
}
.nav__archive { opacity: .72; }

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 clamp(22px, 7vw, 108px) clamp(64px, 9vh, 108px);
  max-width: 1100px;
}
.kicker, .section-label {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .19em;
  text-transform: uppercase;
}
h1, h2, h3 {
  margin: 0;
  font-family: Manrope, Inter, sans-serif;
  font-weight: 300;
}
h1 {
  font-size: clamp(66px, 13vw, 158px);
  line-height: .86;
  letter-spacing: -.075em;
}
.full-name {
  margin: 28px 0 7px;
  font-size: clamp(19px, 2.3vw, 30px);
}
.dates {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  letter-spacing: .11em;
}
.enter-button {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid rgba(255,255,255,.44);
  border-radius: 999px;
  background: rgba(9,13,19,.13);
  backdrop-filter: blur(8px);
  font-size: 14px;
  transition: background .25s ease, transform .25s ease;
}
.enter-button:hover {
  background: rgba(255,255,255,.12);
  transform: translateY(-2px);
}

.soundline {
  position: absolute;
  z-index: 3;
  right: clamp(22px, 5vw, 72px);
  bottom: 50px;
  height: 44px;
  display: flex;
  align-items: end;
  gap: 4px;
  opacity: .6;
}
.soundline span {
  width: 2px;
  height: 8px;
  background: rgba(255,255,255,.78);
  animation: wave 1.7s ease-in-out infinite;
}
.soundline span:nth-child(2n) { animation-delay: -.4s; }
.soundline span:nth-child(3n) { animation-delay: -.8s; }
.soundline span:nth-child(5n) { animation-delay: -1.1s; }
@keyframes wave {
  0%,100% { height: 7px; }
  50% { height: 38px; }
}

.welcome {
  padding: clamp(90px, 12vw, 170px) clamp(22px, 8vw, 130px);
  color: #17212a;
  background: var(--paper);
}
.welcome h2, .future h2 {
  max-width: 1000px;
  font-size: clamp(46px, 8vw, 104px);
  line-height: .98;
  letter-spacing: -.06em;
}
.welcome__text {
  max-width: 840px;
  margin: 42px 0 0;
  font-size: clamp(21px, 2.7vw, 34px);
  line-height: 1.45;
}
.welcome__note {
  margin: 32px 0 0;
  color: #66727d;
}

.rooms {
  padding: 0 clamp(22px, 8vw, 130px) clamp(90px, 12vw, 170px);
  background: var(--ink-soft);
}
.room {
  min-height: 148px;
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 26px;
  align-items: center;
  border-top: 1px solid var(--line);
}
.room:last-child { border-bottom: 1px solid var(--line); }
.room__number {
  color: #77838e;
  font-size: 12px;
  letter-spacing: .15em;
}
.room h3 {
  font-size: clamp(28px, 4vw, 50px);
  letter-spacing: -.04em;
}
.room p {
  margin: 9px 0 0;
  color: var(--muted);
  line-height: 1.5;
}
.room__status {
  color: var(--blue);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  text-align: right;
}

.future {
  min-height: 72vh;
  padding: clamp(90px, 12vw, 170px) clamp(22px, 8vw, 130px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    radial-gradient(circle at 75% 18%, rgba(123,158,184,.7), transparent 28%),
    linear-gradient(145deg, #182431, #090d13 72%);
}
.future p:last-child {
  max-width: 760px;
  margin: 36px 0 0;
  color: #b4bec7;
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.65;
}

footer {
  padding: 30px clamp(22px, 8vw, 130px);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: #7f8b96;
  font-size: 12px;
}
footer div:nth-child(2) { text-align: center; }
footer div:last-child { text-align: right; }

@media (max-width: 760px) {
  .hero__image { object-position: 58% center; }
  .hero__content { padding-bottom: 82px; }
  h1 { font-size: clamp(62px, 21vw, 100px); }
  .soundline { display: none; }
  .room {
    grid-template-columns: 42px 1fr;
    padding: 30px 0;
  }
  .room__status {
    grid-column: 2;
    text-align: left;
  }
  footer {
    grid-template-columns: 1fr;
  }
  footer div:nth-child(2),
  footer div:last-child {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
