/* ============================================================
   OJO HÍPICO · v.1 · 2026-04-16
   Brand tokens: #0F3D2E (turf) · #0D0D10 (caballo) · #C8A24A (oro) · #F4EFE6 (hueso)
   ============================================================ */

:root {
  /* Brand */
  --oh-turf:    #0F3D2E;
  --oh-black:   #0D0D10;
  --oh-gold:    #C8A24A;
  --oh-gold-2:  #D8B765;
  --oh-bone:    #F4EFE6;
  --oh-bone-2:  #E8E1D3;
  --oh-ink:     #1A1A1D;
  --oh-muted:   #7A7570;

  /* Type */
  --ff-serif:   'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --ff-sans:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --container:  1200px;
  --narrow:     720px;

  /* Motion */
  --ease:       cubic-bezier(.2, .8, .2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-sans);
  font-weight: 400;
  line-height: 1.6;
  color: var(--oh-ink);
  background: var(--oh-bone);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; transition: opacity .2s var(--ease); }
a:hover { opacity: .75; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: var(--narrow); }

/* ========== EYEBROWS / TITLES ========== */
.eyebrow {
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--oh-gold);
  margin-bottom: 18px;
}
.eyebrow--light { color: var(--oh-gold-2); }

.section-title {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: clamp(1.8rem, 4.2vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--oh-black);
  margin-bottom: 28px;
  max-width: 900px;
}
.section-title--light { color: var(--oh-bone); }

.section-lede {
  font-family: var(--ff-serif);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 400;
  color: var(--oh-muted);
  max-width: 760px;
  margin-bottom: 48px;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--ff-sans);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: all .25s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--oh-gold);
  color: var(--oh-black);
  border-color: var(--oh-gold);
}
.btn--primary:hover {
  background: var(--oh-gold-2);
  border-color: var(--oh-gold-2);
  opacity: 1;
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: var(--oh-bone);
  border-color: rgba(244, 239, 230, 0.4);
}
.btn--ghost:hover {
  background: rgba(244, 239, 230, 0.08);
  border-color: var(--oh-bone);
  opacity: 1;
}
.btn--gold {
  background: var(--oh-gold);
  color: var(--oh-black);
  border: none;
  padding: 16px 32px;
}
.btn--gold:hover {
  background: var(--oh-gold-2);
  opacity: 1;
}

/* ========== NAV ========== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(13, 13, 16, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 162, 74, 0.15);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--oh-bone);
}
.nav__mark {
  font-family: var(--ff-serif);
  font-size: 1.6rem;
  color: var(--oh-gold);
  line-height: 1;
}
.nav__wordmark {
  font-family: var(--ff-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--oh-bone);
}
.nav__links {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}
.nav__links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--oh-bone-2);
}
.nav__cta {
  color: var(--oh-gold) !important;
  border: 1px solid var(--oh-gold);
  padding: 8px 18px;
  border-radius: 2px;
}
.nav__cta:hover { background: var(--oh-gold); color: var(--oh-black) !important; opacity: 1; }

@media (max-width: 768px) {
  .nav__links li:not(:last-child) { display: none; }
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--oh-black);
  padding: 120px 24px 80px;
}
.hero__image {
  position: absolute;
  inset: 0;
  background: url('/assets/hero-eye.jpg') center/cover no-repeat;
  filter: contrast(1.05) saturate(1.1);
  transform: scale(1.02);
}
.hero__veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(13,13,16,0.1) 0%, rgba(13,13,16,0.7) 70%, rgba(13,13,16,0.95) 100%),
    linear-gradient(180deg, rgba(13,13,16,0.3) 0%, rgba(13,13,16,0.6) 100%);
}
.hero__content {
  position: relative;
  max-width: 900px;
  text-align: center;
  color: var(--oh-bone);
  z-index: 2;
}
.hero__eyebrow {
  font-family: var(--ff-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--oh-gold);
  margin-bottom: 22px;
}
.hero__title {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: clamp(2.4rem, 7vw, 5.2rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: 28px;
}
.hero__title-line { display: block; }
.hero__title-line--accent {
  color: var(--oh-gold);
  font-style: italic;
  font-weight: 500;
}
.hero__lede {
  font-family: var(--ff-serif);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 400;
  color: var(--oh-bone-2);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.55;
}
.hero__cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero__status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--oh-bone-2);
  opacity: 0.8;
}
.hero__status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--oh-gold);
  animation: pulse 2s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(1.3); }
}

/* ========== MANIFIESTO ========== */
.manifiesto {
  background: var(--oh-bone);
  padding: 120px 0;
}
.manifiesto__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 20px;
}
.manifiesto__col p {
  font-family: var(--ff-serif);
  font-size: 1.18rem;
  line-height: 1.7;
  color: var(--oh-ink);
}
.manifiesto__col strong {
  font-weight: 600;
  color: var(--oh-turf);
}
@media (max-width: 768px) {
  .manifiesto { padding: 80px 0; }
  .manifiesto__grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ========== MÉTODO ========== */
.metodo {
  background: var(--oh-turf);
  background-image:
    radial-gradient(ellipse at top left, rgba(200,162,74,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(200,162,74,0.05) 0%, transparent 60%);
  padding: 120px 0;
  color: var(--oh-bone);
}
.metodo__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 20px;
}
.method-card {
  background: rgba(13, 13, 16, 0.35);
  border: 1px solid rgba(200, 162, 74, 0.15);
  padding: 32px 28px;
  border-radius: 4px;
  transition: all .3s var(--ease);
  position: relative;
}
.method-card:hover {
  border-color: rgba(200, 162, 74, 0.4);
  background: rgba(13, 13, 16, 0.5);
  transform: translateY(-3px);
}
.method-card--feature {
  background: linear-gradient(145deg, rgba(200,162,74,0.18), rgba(200,162,74,0.04));
  border-color: var(--oh-gold);
  grid-column: span 1;
}
.method-card__num {
  font-family: var(--ff-serif);
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--oh-gold);
  line-height: 1;
  margin-bottom: 20px;
}
.method-card__title {
  font-family: var(--ff-serif);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--oh-bone);
  margin-bottom: 14px;
}
.method-card__body {
  font-family: var(--ff-sans);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--oh-bone-2);
  margin-bottom: 22px;
}
.method-card__status {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid rgba(244, 239, 230, 0.25);
  border-radius: 2px;
  color: var(--oh-bone-2);
}
.method-card__status--live {
  background: var(--oh-gold);
  color: var(--oh-black);
  border-color: var(--oh-gold);
}
.method-card__status--feature {
  background: var(--oh-gold);
  color: var(--oh-black);
  border-color: var(--oh-gold);
}

/* ========== PROGRAMA ========== */
.programa {
  background: var(--oh-bone);
  padding: 120px 0;
}
.programa__gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.programa__item {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  aspect-ratio: 1 / 1;
  cursor: pointer;
}
.programa__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.programa__item:hover img { transform: scale(1.05); }
.programa__item figcaption {
  position: absolute;
  bottom: 14px;
  left: 16px;
  font-family: var(--ff-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--oh-bone);
  background: rgba(13,13,16,0.75);
  padding: 6px 12px;
  border-radius: 2px;
  backdrop-filter: blur(8px);
}

/* ========== LISTA PRIORITY ========== */
.lista {
  background: var(--oh-black);
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(200,162,74,0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(15,61,46,0.3) 0%, transparent 50%);
  padding: 140px 0;
  color: var(--oh-bone);
  text-align: center;
}
.lista .section-title { margin-left: auto; margin-right: auto; }
.lista__lede {
  font-family: var(--ff-serif);
  font-size: 1.18rem;
  line-height: 1.6;
  color: var(--oh-bone-2);
  max-width: 580px;
  margin: 0 auto 48px;
}

.priority-form {
  max-width: 520px;
  margin: 0 auto;
}
.priority-form__label {
  display: block;
  font-family: var(--ff-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--oh-gold);
  margin-bottom: 12px;
  text-align: left;
}
.priority-form__row {
  display: flex;
  gap: 0;
  background: rgba(244, 239, 230, 0.06);
  border: 1px solid rgba(244, 239, 230, 0.2);
  border-radius: 3px;
  padding: 6px;
  transition: border-color .25s var(--ease);
}
.priority-form__row:focus-within { border-color: var(--oh-gold); }
.priority-form__input {
  flex: 1;
  padding: 14px 18px;
  font-family: var(--ff-sans);
  font-size: 1rem;
  background: transparent;
  border: none;
  outline: none;
  color: var(--oh-bone);
}
.priority-form__input::placeholder { color: rgba(244,239,230,0.4); }
.priority-form__note {
  margin-top: 18px;
  font-family: var(--ff-sans);
  font-size: 0.82rem;
  color: var(--oh-bone-2);
  opacity: 0.7;
}
.priority-form__note--success { color: var(--oh-gold); opacity: 1; font-weight: 600; }
.priority-form__note--error { color: #E88C70; opacity: 1; }

/* ========== FOOTER ========== */
.footer {
  background: var(--oh-black);
  padding: 48px 0;
  border-top: 1px solid rgba(200, 162, 74, 0.15);
  color: var(--oh-bone-2);
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer__legal {
  font-family: var(--ff-sans);
  font-size: 0.85rem;
  color: var(--oh-bone-2);
  opacity: 0.75;
}
.footer__legal a { color: var(--oh-gold); }
.footer__disclaimer {
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  color: var(--oh-muted);
  max-width: 640px;
  margin-top: 8px;
  opacity: 0.6;
  line-height: 1.5;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .manifiesto, .metodo, .programa { padding: 80px 0; }
  .lista { padding: 100px 0; }
  .priority-form__row { flex-direction: column; gap: 8px; padding: 8px; }
  .priority-form__row .btn { width: 100%; }
}
