:root {
  color-scheme: light;
  /* Misma paleta de marca que bienvenida/ y dashboard/ (la vigente -- las
     páginas más viejas del sitio, talento/artistas/proveedores, todavía
     usan un terracota naranja anterior). */
  --color-cream: #E8DFD1;
  --color-card: #F6EEDD;
  --color-ink: #17140F;
  --color-olive: #53624E;
  --color-terracotta: #53624E;
  --color-terracotta-text: #3E4A3B;
  --color-wine: #7A2E3D;
  --color-shadow: rgba(23, 20, 15, 0.14);
  --color-line: rgba(23, 20, 15, 0.12);
  --color-ink-muted: #5B564C;
  --radius-md: 14px;
  --font-family: "Inter", sans-serif;
  --font-display: "Emblema Headline 1 Basic", "Fraunces", "Inter", sans-serif;
}

@font-face {
  font-family: "Emblema Headline 1 Basic";
  src: url("assets/Emblema-Headline1-Basic.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--color-cream);
  color: var(--color-ink);
  font-family: var(--font-family);
}

/* Enlace fijo para volver al landing y selector de idioma -- mismo patrón
   que talento/artistas/proveedores (ver comentario en artistas/styles.css). */
.volver-link {
  position: fixed;
  top: 18px;
  left: 20px;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(23, 20, 15, 0.55);
  color: #fff;
  transition: background-color 200ms ease;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  backdrop-filter: blur(2px);
}

.volver-link:hover,
.volver-link:focus-visible {
  background: rgba(23, 20, 15, 0.75);
}

.volver-link-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.lang-toggle {
  position: fixed;
  top: 18px;
  right: 20px;
  z-index: 10;
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  background: rgba(23, 20, 15, 0.35);
  backdrop-filter: blur(2px);
}

.lang-toggle-btn {
  padding: 7px 14px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: color 160ms ease, background-color 160ms ease;
}

.lang-toggle-btn:hover {
  color: #fff;
}

.lang-toggle-btn.is-active {
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-terracotta-text);
}

.ct-hero {
  text-align: center;
  padding: 96px 20px 116px;
  background:
    linear-gradient(180deg, rgba(23, 20, 15, 0.5) 0%, rgba(23, 20, 15, 0.7) 100%),
    var(--hero-image, none) center 30% / cover no-repeat;
  color: #fff;
}

.ct-logo {
  display: block;
  margin: 0 auto 20px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.65);
}

.ct-eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}

.ct-hero h1 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  line-height: 1.2;
  text-transform: uppercase;
}

.ct-lede {
  margin: 0 auto;
  max-width: 48ch;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.ct-body {
  max-width: 520px;
  margin: 0 auto;
  padding: 56px 20px calc(56px + env(safe-area-inset-bottom, 0px));
}

.ct-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ct-field label {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-ink-muted);
}

.ct-field input,
.ct-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--color-line);
  border-radius: var(--radius-md);
  background: var(--color-card);
  font-family: inherit;
  font-size: 16px;
  color: var(--color-ink);
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.ct-field textarea {
  resize: vertical;
  min-height: 110px;
}

.ct-field input:focus,
.ct-field textarea:focus {
  outline: none;
  border-color: var(--color-terracotta);
  box-shadow: 0 0 0 3px rgba(83, 98, 78, 0.16);
}

.ct-hint-error {
  margin: -6px 0 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-wine);
}

.ct-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 6px;
}

.ct-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 26px;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background-color 150ms ease, transform 150ms ease;
}

.ct-cta--whatsapp {
  background: var(--color-terracotta);
  color: #fff;
}

.ct-cta--whatsapp:hover {
  background: #465340;
  transform: translateY(-2px);
}

.ct-cta--email {
  border: 1.5px solid var(--color-terracotta);
  background: rgba(83, 98, 78, 0.08);
  color: var(--color-terracotta-text);
}

.ct-cta--email:hover {
  background: rgba(83, 98, 78, 0.16);
  transform: translateY(-2px);
}

.ct-footer {
  padding: 24px 20px calc(24px + env(safe-area-inset-bottom, 0px));
  text-align: center;
  font-size: 0.82rem;
  color: var(--color-ink-muted);
}

.ct-footer a {
  color: var(--color-terracotta-text);
  font-weight: 600;
  text-decoration: none;
}

.ct-footer a:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .ct-hero {
    padding: 80px 20px 90px;
  }

  .ct-actions {
    flex-direction: column;
  }

  .ct-cta {
    justify-content: center;
  }
}
