* { box-sizing: border-box; }
body { margin: 0; background: oklch(9% 0.006 75); }
.iz-root {
  --gold: #c9a24a;
  --bg: oklch(9% 0.006 75);
  --bg-alt: oklch(12.5% 0.012 70);
  --ink: oklch(95% 0.008 90);
  --ink-dim: oklch(72% 0.02 85);
  --ink-faint: oklch(52% 0.015 85);
  --line: oklch(45% 0.03 80 / 0.28);
  --gold-light: color-mix(in srgb, var(--gold) 65%, white);
  --gold-deep: color-mix(in srgb, var(--gold) 55%, black);
  background: var(--bg);
  color: var(--ink);
  font-family: 'Jost', system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.iz-serif { font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif; }
.iz-eyebrow {
  font-family: 'Jost', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  color: var(--gold-light);
  font-weight: 500;
}
.iz-section { position: relative; padding: 96px 24px; }
.iz-inner { max-width: 1160px; margin: 0 auto; }
.iz-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 34px; border-radius: 2px; font-family: 'Jost', sans-serif;
  font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 500; cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: all 0.25s ease; border: 1px solid var(--gold);
}
.iz-btn-primary { background: var(--gold); color: oklch(12% 0.01 70); }
.iz-btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); }
.iz-btn-ghost { background: transparent; color: var(--gold-light); }
.iz-btn-ghost:hover { background: color-mix(in srgb, var(--gold) 12%, transparent); }
.iz-divider { display: flex; align-items: center; justify-content: center; gap: 14px; }
.iz-divider .line { height: 1px; width: 56px; background: var(--line); }
.iz-card {
  background: var(--bg-alt); border: 1px solid var(--line);
  padding: 40px 32px; border-radius: 2px;
}
a { color: var(--gold-light); }
a:hover { color: var(--gold); }
::selection { background: var(--gold); color: oklch(12% 0.01 70); }

@media (max-width: 860px) {
  .iz-grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)) !important; }
  .iz-grid-3 { grid-template-columns: 1fr !important; }
  .iz-nav-hide-sm { display: none !important; }
}

@media (max-width: 560px) {
  .iz-grid-4 { grid-template-columns: 1fr !important; }
  .iz-step { flex-direction: column !important; align-items: center !important; text-align: center; }
}

/* Selector de idioma de la cabecera */
.lang-switch { display: flex; align-items: center; gap: 8px; }
.lang-switch a {
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-decoration: none;
  color: var(--ink-faint);
  transition: color 0.25s ease;
}
.lang-switch a:hover { color: var(--gold-light); }
.lang-switch a[aria-current] { color: var(--gold); }
.lang-switch span { color: var(--line); font-size: 0.78rem; }

/* Estado del formulario de contacto */
#formStatus[data-state='error'] { color: var(--gold-light); }
#formStatus[data-state='ok'] { color: var(--gold); }

/* Trampa antibots: fuera de pantalla, nunca visible ni enfocable */
.trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Casilla de consentimiento del formulario */
.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.84rem;
  color: var(--ink-faint);
  line-height: 1.6;
}
.consent input[type='checkbox'] {
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--gold);
  width: 15px;
  height: 15px;
}
.consent a { color: var(--gold-light); text-decoration: underline; text-underline-offset: 3px; }

/* Páginas legales */
.legal {
  max-width: 68ch;
  margin: 0 auto;
  padding: clamp(44px, 5.5vw, 72px) 24px;
}
.legal h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 12px;
}
.legal h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--ink);
  margin: 36px 0 10px;
}
.legal p, .legal li { color: var(--ink-dim); line-height: 1.8; }
.legal ul { padding-left: 20px; margin: 0; }
.legal li { margin-bottom: 6px; }
.legal .updated {
  font-family: 'Jost', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--ink-faint);
  margin: 0 0 10px;
}
.legal .legal-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
  text-decoration: none;
}
.legal .legal-brand span {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  color: var(--gold);
}
