:root {
  --charcoal: #303839;
  --white: #ffffff;
  --black: #000000;
  --gold: #C6A96B;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

.logo-img {
  width: clamp(120px, 11vw, 170px);
  height: auto;
  object-fit: contain;
}

.logo-img.mobile {
  width: 138px;
}

/* Mobile menu same as reference */
#overlay {
  z-index: 40;
}

#mobileMenu {
  z-index: 50;
}

#mobileMenu .logo-img.mobile {
  width: 138px;
  height: auto;
  object-fit: contain;
}

#mobileMenu nav a {
  color: var(--charcoal);
  transition: 0.25s ease;
}

#mobileMenu nav a:hover {
  background: var(--charcoal);
  color: var(--white);
}

/* Timer */
.timer-box {
  display: grid;
  place-items: center;
  border-radius: 1.5rem;
  background: var(--charcoal);
  padding: 1.2rem 0.5rem;
  color: var(--white);
}

.timer-box span {
  font-size: clamp(1.7rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
}

.timer-box small {
  margin-top: 0.5rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.65);
}

/* Coming soon section */
.launchingSoon {
  min-height: calc(100vh - 150px);
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: flex;
  align-items: center;
}

.launchingSoon h1 {
  letter-spacing: 0.32rem;
  margin-bottom: 0;
  line-height: 0.9;
}

#paragraphMain {
  font-size: 0.9rem;
  letter-spacing: 0.06rem;
  line-height: 1.7;
}

.timer {
  margin-top: 1.8rem;
}

/* Footer */
.logofooter {
  width: 180px;
  height: auto;
  object-fit: contain;
}

/* Mobile */
@media (max-width: 768px) {
  .launchingSoon {
    min-height: calc(100vh - 135px);
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .launchingSoon h1 {
    font-size: 3.2rem;
    letter-spacing: 0.18rem;
  }

  #paragraphMain {
    font-size: 0.82rem;
    line-height: 1.6;
  }

  .timer-box {
    padding: 0.85rem 0.35rem;
    border-radius: 1rem;
  }

  .logofooter {
    width: 120px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  #mobileMenu {
    width: 88%;
    max-width: 24rem;
    padding: 1.5rem;
  }

  #mobileMenu .logo-img.mobile {
    width: 138px;
  }
}

#footerParagraph{
  letter-spacing: .06rem;
}