:root {
  --color-white: #ffffff;
  --color-text-dark: #2b2b2b;
  --color-timer-bg: #715f41;
  --color-gold: #9a7b4f;
  --font-sans: "Montserrat", sans-serif;
  --font-serif: "Cormorant Garamond", serif;
  --page-max-width: 1440px;
  --content-padding-x: 72px;
  --footer-margin-x: 40px;
  --footer-margin-bottom: 28px;
  --logo-width: 200px;
  --eyebrow-size: 11px;
  --eyebrow-tracking: 0.42em;
  --title-size: 42px;
  --title-line-height: 1.2;
  --subtitle-size: 16px;
  --copyright-size: 13px;
  --timer-value-size: 15px;
  --timer-label-size: 11px;
}

*,
::before,
::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0px;
  font-family: var(--font-sans);
  color: var(--color-white);
  background: rgb(0, 0, 0);
  overflow-x: hidden;
}

.coming-soon-page {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.coming-soon-page__video {
  position: absolute;
  inset: 0px;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  transform: scale(1.04);
}

.coming-soon-page__overlay {
  position: absolute;
  inset: 0px;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.58) 0%,
    rgba(0, 0, 0, 0.38) 34%,
    rgba(0, 0, 0, 0.08) 62%,
    rgba(0, 0, 0, 0) 100%
  );
  pointer-events: none;
}

.site-logo {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding-top: 0px;
}

.site-logo__link {
  display: block;
  width: var(--logo-width);
  background: var(--color-white);
  border-radius: 0px 0px 12px 12px;
  padding: 18px 24px 14px;
  text-decoration: none;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 6px 18px;
}

.site-logo__image {
  display: block;
  width: 100%;
  height: auto;
}

.hero-content {
  position: relative;
  z-index: 1;
  flex: 1 1 0%;
  display: flex;
  align-items: center;
  padding: 10px 0px 0px;
}

.hero-content__container {
  width: 100%;
  max-width: var(--page-max-width);
  margin: 0px auto;
  padding: 0 var(--content-padding-x);
}

.eyebrow {
  margin: 0px 0px 26px;
  font-size: var(--eyebrow-size);
  font-weight: 400;
  letter-spacing: var(--eyebrow-tracking);
  line-height: 1;
  text-transform: uppercase;
  color: var(--color-white);
}

.hero-title {
  margin: 0px 0px 26px;
  max-width: 560px;
  font-size: var(--title-size);
  font-weight: 700;
  line-height: var(--title-line-height);
  letter-spacing: 0.015em;
  text-transform: uppercase;
  color: var(--color-white);
}

.hero-subtitle {
  margin: 0px;
  max-width: 430px;
  font-size: var(--subtitle-size);
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.95);
}

.site-footer {
  position: absolute;
  bottom: 20px;
  z-index: 2;
  padding: 0px 0px;
  left: 50%;
  transform: translate(-50%, 0%);
  width: 70%;
}

.site-footer__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  max-width: calc(var(--page-max-width) - (var(--footer-margin-x) * 2));
  margin: 0px auto;
  padding: 14px 28px;
  background: var(--color-white);
  border-radius: 999px;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 8px 28px;
}

.site-footer__copyright {
  margin: 0px;
  font-size: var(--copyright-size);
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-text-dark);
  white-space: nowrap;
}

.countdown {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.countdown__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 8px 16px;
  background: var(--color-timer-bg);
  border-radius: 999px;
}

.countdown__value {
  font-size: var(--timer-value-size);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--color-white);
  font-variant-numeric: tabular-nums;
}

.countdown__label {
  font-size: var(--timer-label-size);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

.countdown.is-complete .countdown__pill {
  opacity: 0.72;
}
.whatsaap {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}
.whatsaap a {
  display: block;
}
.whatsaap a img {
  max-width: 80px;
}
@media (max-width: 1199.98px) {
  :root {
    --content-padding-x: 56px;
    --title-size: 46px;
  }
}

@media (max-width: 991.98px) {
  :root {
    --content-padding-x: 40px;
    --title-size: 40px;
    --footer-margin-x: 24px;
  }

  .hero-content {
    padding-bottom: 108px;
  }

  .site-footer__bar {
    padding: 16px 22px;
  }
  .site-footer {
    padding: 0px 15px;
    width: 100%;
  }
}

@media (max-width: 767.98px) {
  :root {
    --content-padding-x: 24px;
    --logo-width: 148px;
    --title-size: 32px;
    --subtitle-size: 15px;
    --footer-margin-x: 16px;
    --footer-margin-bottom: 20px;
    --copyright-size: 12px;
    --timer-value-size: 13px;
    --timer-label-size: 10px;
  }

  .site-logo__link {
    padding: 16px 20px 12px;
    border-radius: 0px 0px 10px 10px;
  }

  .hero-content {
    align-items: flex-start;
    padding-top: 100px;
    padding-bottom: 140px;
  }

  .coming-soon-page__overlay {
    background: linear-gradient(
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.35) 45%,
      rgba(0, 0, 0, 0.15) 100%
    );
  }

  .site-footer__bar {
    flex-direction: column;
    align-items: stretch;
    border-radius: 24px;
    padding: 18px 20px;
    gap: 16px;
  }

  .site-footer__copyright {
    text-align: center;
    white-space: normal;
  }

  .countdown {
    justify-content: center;
  }

  .countdown__pill {
    min-height: 34px;
    padding: 7px 14px;
  }
}

@media (max-width: 575.98px) {
  :root {
    --title-size: 26px;
  }

  .countdown {
    gap: 6px;
  }

  .countdown__pill {
    gap: 6px;
    padding: 6px 12px;
  }
  .whatsaap a img {
    max-width: 50px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .coming-soon-page__video {
    display: none;
  }
}
