/* ==========================================================================
   Páginas en español (Ineika Surfcamp)
   Mismo sistema visual: crema/papel, tipografía Oxygen, naranja como único
   acento. Contenido nuevo de las páginas bajo /es/.
   ========================================================================== */

.es-page-main {
  --es-ink: #3a352f;
  --es-paper: #fffaf2;
  color: var(--es-ink);
  font-family: "Oxygen", "Helvetica Neue", Arial, sans-serif;
  background: var(--es-paper);
}

.es-page-main *,
.es-page-main *::before,
.es-page-main *::after {
  box-sizing: border-box;
}

.es-page-main h1,
.es-page-main h2,
.es-page-main h3,
.es-page-main p {
  margin: 0;
}

.es-page-main a {
  color: inherit;
}

.es-hero {
  position: relative;
  padding: clamp(38px, 7vw, 78px) 24px 42px;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 12%, color-mix(in srgb, var(--e-global-color-accent) 20%, transparent), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, var(--es-paper) 100%);
  border-bottom: 1px dotted #cfc0ab;
}

.es-hero-inner,
.es-section-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.es-eyebrow {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  margin-bottom: 12px;
  color: #776c5c;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.es-eyebrow::before {
  display: inline-block;
  width: 20px;
  height: 4px;
  content: "";
  background: var(--e-global-color-accent);
  border-radius: 4px;
  transform: rotate(-3deg);
}

.es-hero h1 {
  max-width: 900px;
  font-size: clamp(34px, 6vw, 72px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.es-lead {
  max-width: 760px;
  margin-top: 18px;
  color: #665c4e;
  font-size: 16px;
  line-height: 1.7;
}

.es-section {
  padding: 44px 24px;
  border-bottom: 1px dotted #d8cab7;
}

.es-section:last-of-type {
  border-bottom: 0;
}

.es-section h2 {
  margin-bottom: 12px;
  font-size: clamp(24px, 3.6vw, 42px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.es-section h3 {
  margin-bottom: 7px;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.es-section p {
  max-width: 820px;
  margin-bottom: 13px;
  color: #5f5547;
  font-size: 15px;
  line-height: 1.75;
}

.es-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.es-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 18px 16px;
  background: #ffffff;
  border: 1px solid #dccdb8;
  border-radius: 4px;
  box-shadow: 0 8px 20px rgba(58, 53, 47, 0.06);
}

.es-card h3 {
  margin-bottom: 0;
}

.es-card p {
  margin-bottom: 0;
  font-size: 13px;
  line-height: 1.6;
}

.es-card-link {
  margin-top: auto;
  align-self: flex-start;
  padding: 4px 10px 5px;
  color: #3a352f;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  background: color-mix(in srgb, var(--e-global-color-accent) 85%, #ffffff);
  border-radius: 999px;
}

.es-list {
  max-width: 820px;
  margin: 12px 0 14px;
  padding: 0;
  list-style: none;
}

.es-list li {
  position: relative;
  padding: 7px 0 7px 22px;
  color: #5f5547;
  font-size: 15px;
  line-height: 1.6;
}

.es-list li::before {
  position: absolute;
  top: 13px;
  left: 0;
  width: 9px;
  height: 3px;
  content: "";
  background: var(--e-global-color-accent);
  border-radius: 4px;
  transform: rotate(-35deg);
}

.es-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.es-btn {
  display: inline-block;
  padding: 10px 18px 11px;
  color: #3a352f;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  background: color-mix(in srgb, var(--e-global-color-accent) 88%, #ffffff);
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(58, 53, 47, 0.1);
}

.es-btn--outline {
  color: #3a352f;
  background: #ffffff;
  border: 1px solid #c9baa5;
}

.es-legal {
  max-width: 820px;
  margin: 0;
  padding: 0;
}

.es-legal h2 {
  margin: 26px 0 8px;
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
}

.es-legal h2:first-child {
  margin-top: 0;
}

.es-legal p {
  font-size: 14px;
}

@media (max-width: 640px) {
  .es-hero {
    padding-right: 18px;
    padding-left: 18px;
  }

  .es-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .es-hero h1 {
    font-size: clamp(32px, 10vw, 48px);
  }
}
