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

html, body {
  height: 100%;
  background: #fff;
  color: #1a1a18;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
}

/* ── LAYOUT ── */
.page {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px 64px;
  gap: 0;
}

/* ── LOGO ── */
.logo-wrap {
  width: 200px;
  height: 200px;
  margin-bottom: 40px;
}

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

/* ── CONTACTO ── */
.contact-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.contact-label {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #9b8b78;
}

.contact-email {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: #1a1a18;
  text-decoration: none;
  border-bottom: 1px solid #1a1a18;
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.contact-email:hover {
  color: #9b8b78;
  border-color: #9b8b78;
}

/* ── INTRO ── */
#intro {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease;
}

#intro.fade-out {
  opacity: 0;
  pointer-events: none;
}

#intro-text {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: clamp(22px, 4vw, 42px);
  font-weight: 300;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #1a1a18;
}

#intro-text .char {
  display: inline-flex;
  justify-content: center;
  opacity: 0;
  width: 1.55em;
  letter-spacing: 0;
}

#intro-text .space {
  display: inline-block;
  width: 0.5em;
}

/* ── CORNER MARKS ── */
.corner-mark {
  position: fixed;
  width: 22px;
  height: 22px;
  pointer-events: none;
  opacity: 0;
  z-index: 2;
}

.corner-mark svg { width: 100%; height: 100%; }

.corner-mark path {
  fill: none;
  stroke: #1a1a18;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
