/* Llave Group — One-screen landing page */

:root {
  --green: #1B4D3E;
  --green-light: #2A7A5F;
  --gold: #D4A853;
  --gold-light: #E8C97A;
  --white: #FFFFFF;
  --cream: #FAF8F4;
  --text: #2C2C2C;
  --text-soft: #6B6B6B;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --serif: 'Playfair Display', Georgia, serif;
}

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

body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Animated gradient background */
.bg-gradient {
  position: fixed;
  inset: -20%;
  width: 140%;
  height: 140%;
  background: url('../assets/images/image-mesh-gradient.png') center/cover no-repeat;
  z-index: 0;
  animation: gradientDrift 6s ease-in-out infinite;
}

@keyframes gradientDrift {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.25);
  }
  100% {
    transform: scale(1);
  }
}

.page {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  position: relative;
  z-index: 1;
}

/* Language toggle — top right */
.lang-toggle {
  position: absolute;
  top: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 600;
  transition: box-shadow 0.2s ease;
}

.lang-toggle:hover { box-shadow: 0 2px 8px rgba(0,0,0,0.08); }

.lang-opt { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.lang-opt.active { color: var(--white); }
.lang-sep { color: rgba(255,255,255,0.3); }

/* Main content — centered */
.content {
  max-width: 600px;
  text-align: center;
}

.tagline {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}

h1 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6vw, 4rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

h1 .accent {
  color: var(--white);
}

.subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.1);
}

/* CTA button */
.actions { margin-bottom: 32px; }

.btn {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  padding: 18px 44px;
  border-radius: 14px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow:
    0 4px 24px rgba(0,0,0,0.08),
    inset 0 1px 0 rgba(255,255,255,0.25),
    inset 0 -1px 0 rgba(255,255,255,0.05);
}

.btn:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.35);
  transform: translateY(-2px);
  box-shadow:
    0 8px 32px rgba(0,0,0,0.12),
    inset 0 1px 0 rgba(255,255,255,0.3),
    inset 0 -1px 0 rgba(255,255,255,0.08);
}

/* Contact links */
.contact-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-link:hover { color: var(--white); }

.contact-sep { color: rgba(255,255,255,0.35); }

/* Disclaimer — bottom */
.disclaimer {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
}

/* Tablet */
@media (max-width: 768px) {
  h1 { font-size: clamp(2rem, 5vw, 3rem); }
  .subtitle { font-size: 1rem; }
  .btn { padding: 16px 36px; font-size: 1rem; }
}

/* Mobile */
@media (max-width: 480px) {
  .page {
    padding: 60px 20px 48px;
    overflow-y: auto;
    justify-content: flex-start;
    padding-top: 80px;
  }

  h1 { font-size: 2rem; margin-bottom: 16px; }

  .subtitle {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 28px;
  }

  .tagline {
    font-size: 0.7rem;
    letter-spacing: 2px;
    margin-bottom: 14px;
  }

  .btn { width: 100%; text-align: center; padding: 16px 24px; }

  .contact-line { flex-direction: column; gap: 12px; }
  .contact-sep { display: none; }

  .lang-toggle { top: 16px; right: 16px; }

  .disclaimer {
    position: relative;
    bottom: auto;
    left: 0;
    right: 0;
    margin-top: 40px;
    padding: 0 8px;
    font-size: 0.7rem;
    text-align: center;
  }
}

/* Small phones (iPhone SE, etc.) */
@media (max-width: 375px) {
  .page { padding-top: 60px; }
  h1 { font-size: 1.75rem; }
  .subtitle { font-size: 0.9rem; }
  .btn { padding: 14px 20px; font-size: 0.95rem; }
}
