* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  color: #f1ece1;
  overflow-x: hidden;
  background: #0a1216;
}

.scene {
  position: relative;
  min-height: 100vh;
  isolation: isolate;
  overflow: hidden;
}

.bg-image {
  position: absolute;
  inset: 0;
  background-image: url("images/landing-img.jpg");
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(5, 12, 16, 0.55) 0%, rgba(5, 12, 16, 0.25) 28%, rgba(5, 12, 16, 0.3) 55%, rgba(4, 10, 13, 0.7) 100%),
    linear-gradient(to right, rgba(4, 10, 14, 0.55) 0%, rgba(4, 10, 14, 0.25) 45%, rgba(4, 10, 14, 0.15) 100%);
  z-index: 1;
}

.page {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(20px, 4vw, 48px) clamp(24px, 6vw, 64px);
}

/* Top bar */
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.topbar-block {
  display: flex;
  flex-direction: column;
  font-family: "Cinzel", serif;
  font-size: clamp(10px, 1vw, 13px);
  letter-spacing: 0.25em;
  line-height: 1.9;
  text-transform: uppercase;
  font-weight: 400;
}

.topbar-block--right {
  text-align: right;
  letter-spacing: calc(0.25em + 2px);
}

/* Hero */
.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 16px;
  gap: 0;
  transform: translateY(clamp(-90px, -7vw, -50px));
}

.logo {
  width: clamp(305px, 32vw, 465px);
  height: auto;
  margin-bottom: clamp(0px, 1.2vw, 16px);
}

.coming-soon {
  font-family: "Cinzel", serif;
  font-weight: 400;
  font-size: clamp(20px, 3.4vw, 44px);
  letter-spacing: calc(0.5em + 3px);
  text-transform: uppercase;
  margin-left: 0.5em;
  color: #f4efe4;
}

.divider {
  width: 64px;
  height: 1px;
  background: rgba(241, 236, 225, 0.6);
  margin: clamp(20px, 2.4vw, 30px) 0;
}

.tagline {
  font-family: "Cinzel", serif;
  font-size: clamp(11px, 1.15vw, 14px);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 2;
  color: #ece6d8;
  margin-bottom: clamp(28px, 3.2vw, 40px);
}

/* Notify form */
.notify-form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.notify-btn {
  font-family: "Cinzel", serif;
  background: transparent;
  border: 1px solid rgba(241, 236, 225, 0.7);
  color: #f1ece1;
  padding: 16px 36px;
  font-size: clamp(11px, 1vw, 13px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.notify-btn:hover {
  background: rgba(241, 236, 225, 0.12);
}

.email-row {
  display: flex;
  align-items: stretch;
  border: 1px solid rgba(241, 236, 225, 0.7);
}

.email-input {
  font-family: "Cormorant Garamond", serif;
  background: transparent;
  border: none;
  outline: none;
  color: #f1ece1;
  padding: 14px 18px;
  font-size: 15px;
  letter-spacing: 0.05em;
  min-width: 220px;
}

.email-input::placeholder {
  color: rgba(241, 236, 225, 0.55);
}

.email-submit {
  background: transparent;
  border: none;
  border-left: 1px solid rgba(241, 236, 225, 0.5);
  color: #f1ece1;
  padding: 0 18px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s ease;
}

.email-submit:hover {
  background: rgba(241, 236, 225, 0.12);
}

.form-message {
  font-family: "Cinzel", serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 14px;
  min-height: 1em;
  color: #e7dfc9;
}

/* Socials */
.socials {
  display: flex;
  gap: 16px;
  margin-top: clamp(10px, 1.2vw, 14px);
}

.social-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(241, 236, 225, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f1ece1;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.social-icon:hover {
  background: rgba(241, 236, 225, 0.12);
  transform: translateY(-2px);
}

/* Footer */
.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: -5px;
  font-family: "Cinzel", serif;
  font-size: clamp(9px, 0.85vw, 12px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #f1ece1;
}

.footer .sep {
  opacity: 0.5;
  letter-spacing: 0;
}

/* Fade-in */
.page {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 1.1s ease, transform 1.1s ease;
}

.page.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 640px) {
  .topbar {
    font-size: 9px;
  }

  .email-input {
    min-width: 160px;
  }
}
