* {
  box-sizing: border-box;
}

:root {
  --black: #050505;
}

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

body {
  min-height: 100vh;
  overflow: hidden;
  background: #fff;
  color: var(--black);
  font-family: Arial, Helvetica, sans-serif;
}

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

.content {
  position: relative;
  z-index: 5;
  min-height: 100vh;
  padding: clamp(42px, 8vh, 112px) 24px 280px;
  text-align: center;
}

h1 {
  margin: 0;
  font-size: clamp(3.5rem, 8vw, 7.1rem);
  line-height: .98;
  font-weight: 300;
  letter-spacing: -.025em;
}

.subtitle {
  margin: 14px 0 0;
  font-size: clamp(1.7rem, 3.15vw, 3rem);
  line-height: 1.1;
  font-weight: 300;
  letter-spacing: -.025em;
}

.secret {
  margin-top: clamp(48px, 6vh, 66px);
}

.secret p {
  margin: 0;
  font-size: clamp(1.15rem, 1.75vw, 1.65rem);
  line-height: 1.1;
  font-weight: 300;
}

.email {
  display: inline-block;
  margin-top: 10px;
  color: inherit;
  text-decoration: none;
  font-size: clamp(2rem, 3.25vw, 3rem);
  line-height: 1;
  font-weight: 300;
  letter-spacing: -.025em;
}

.email:hover,
.email:focus-visible {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: clamp(52px, 6vh, 68px);
}

.socials a {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  color: #000;
  text-decoration: none;
  transition: transform .18s ease;
}

.socials a:hover,
.socials a:focus-visible {
  transform: translateY(-3px);
}

.socials svg {
  width: 70px;
  height: 70px;
  display: block;
}

/* Cintas: recorte exacto de la imagen original.
   Se escala únicamente en anchura y permanece anclado al borde inferior. */
.construction-original {
  position: absolute;
  z-index: 3;
  left: 0;
  bottom: 0;
  width: 100vw;
  height: auto;
  display: block;
  pointer-events: none;
  user-select: none;
}

/* En pantallas pequeñas mantenemos la composición anclada al borde inferior. */
@media (max-width: 700px) {
  .content {
    padding: 52px 18px 240px;
  }

  h1 {
    font-size: clamp(2.65rem, 12vw, 5rem);
    letter-spacing: -.03em;
  }

  .subtitle {
    margin-top: 12px;
    font-size: clamp(1.35rem, 6vw, 2rem);
  }

  .secret {
    margin-top: 48px;
  }

  .secret p {
    font-size: 1.05rem;
  }

  .email {
    font-size: clamp(1.7rem, 7.2vw, 2.35rem);
    margin-top: 12px;
  }

  .socials {
    gap: 14px;
    margin-top: 48px;
  }

  .socials a,
  .socials svg {
    width: 58px;
    height: 58px;
  }

  .desktop {
    display: none;
  }
}

@media (max-height: 650px) and (min-width: 701px) {
  .content {
    padding-top: 32px;
  }

  .secret {
    margin-top: 32px;
  }

  .socials {
    margin-top: 34px;
  }
}
