/* CSS Document */
:root {
  --green: #012c33;
  --stone: #828696;

  --strip-height: 28px;
  --hero-height: clamp(420px, 41.72vw, 570px);
  --logo-size: clamp(120px, 19.03vw, 260px);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Montserrat", Arial, sans-serif;
  background: var(--green);
  color: #ffffff;
}

img {
  display: block;
  max-width: 100%;
}

.page {
  position: relative;
  min-height: 100dvh;
  overflow-x: hidden;
}

/* Logo flotante */
.site-logo {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--logo-size);
  height: var(--logo-size);
  z-index: 20;
  display: block;
  background: var(--green);
}

.site-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Franja decorativa */
.top-strip {
  height: var(--strip-height);
  width: 100%;
  background: var(--stone);
}

/* Hero */
.hero {
  position: relative;
  width: 100%;
  height: var(--hero-height);
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 1;
}

.hero-content {
  position: absolute;
  left: var(--logo-size);
  right: 48px;
  bottom: 34px;
  z-index: 5;
}

.hero-content h1 {
  margin: 0;
  max-width: 920px;
  font-size: clamp(2rem, 2.65vw, 2.25rem);
  line-height: 1.18;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-align: left;
  text-wrap: balance;
}

/* Footer */
.coming-soon {
  min-height: calc(100dvh - var(--strip-height) - var(--hero-height));
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 72px 24px;
  text-align: center;
}

.coming-soon-inner {
  transform: translateY(-4px);
}

.coming-soon p {
  margin: 0 0 12px;
  font-size: clamp(0.95rem, 1.25vw, 1.08rem);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-indent: 0.34em;
  color: #ffffff;
}

.coming-soon span {
  display: block;
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.82);
}

/* Mobile */
@media (max-width: 700px) {
  :root {
    --strip-height: 24px;
    --hero-height: 430px;
    --logo-size: 112px;
  }

  .site-logo {
    width: var(--logo-size);
    height: var(--logo-size);
  }

  .hero {
    height: var(--hero-height);
  }

  .hero-image {
    object-position: center center;
  }

  .hero-content {
    left: 22px;
    right: 22px;
    bottom: 30px;
  }

  .hero-content h1 {
    max-width: 100%;
    font-size: clamp(1.45rem, 6.7vw, 1.95rem);
    line-height: 1.17;
    letter-spacing: -0.025em;
  }

  .coming-soon {
    min-height: 300px;
    padding: 76px 24px 88px;
  }

  .coming-soon p {
    font-size: 0.95rem;
    letter-spacing: 0.28em;
    text-indent: 0.28em;
  }

  .coming-soon span {
    font-size: 0.9rem;
  }
}

@media (max-width: 420px) {
  :root {
    --hero-height: 410px;
    --logo-size: 104px;
  }

  .hero-content {
    left: 20px;
    right: 20px;
    bottom: 28px;
  }

  .hero-content h1 {
    font-size: clamp(1.35rem, 7vw, 1.7rem);
  }

  .coming-soon {
    min-height: 280px;
  }
}