:root {
  --red: #C4253A;
  --red-dark: #9B1B2D;
  --cream: #F5F0E8;
  --cream-dark: #E8DFD0;
  --black: #1A1A1A;
  --grey: #6B6B6B;
  --grey-light: #B8B8B8;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'IBM Plex Sans', sans-serif;
  background: var(--cream);
  color: var(--black);
  line-height: 1.55;
  font-weight: 400;
}
.container { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
a { color: inherit; text-decoration: none; }

/* ===== NAV ===== */
.nav {
  background: var(--cream);
  padding: 20px 0;
  border-bottom: 1px solid var(--cream-dark);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 26px;
  font-weight: 500;
  color: var(--black);
  letter-spacing: -0.01em;
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 14px;
}
.nav-links a {
  color: var(--grey);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--black); }
.nav-cta {
  background: var(--red);
  color: var(--cream) !important;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--red-dark); }
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.mobile-cta-only { display: flex; }
  .nav-links.mobile-cta-only a:not(.nav-cta) { display: none; }
}

/* ===== HERO ===== */
.hero {
  background: var(--black);
  color: var(--cream);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -150px; right: -150px;
  width: 500px; height: 500px;
  background: var(--red);
  border-radius: 50%;
  opacity: 0.12;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -200px; left: -200px;
  width: 400px; height: 400px;
  background: var(--red);
  border-radius: 50%;
  opacity: 0.08;
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; }
.hero-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 500;
  margin-bottom: 32px;
}
.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 6.5vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 32px;
  max-width: 950px;
}
.hero h1 em {
  font-style: italic;
  color: var(--red);
}
.hero-sub {
  font-size: 19px;
  color: rgba(245, 240, 232, 0.8);
  max-width: 720px;
  margin-bottom: 48px;
  line-height: 1.5;
}
.hero-cta {
  display: inline-block;
  background: var(--red);
  color: var(--cream) !important;
  padding: 18px 40px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.hero-cta:hover { background: var(--red-dark); }
.hero-scroll {
  margin-top: 80px;
  padding-top: 32px;
  border-top: 1px solid rgba(245, 240, 232, 0.2);
  color: rgba(245, 240, 232, 0.6);
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-scroll::after { content: '↓'; font-size: 18px; }

/* ===== ACCESOS RÁPIDOS ===== */
.accesos {
  background: var(--cream);
  padding: 64px 0;
  border-bottom: 1px solid var(--cream-dark);
}
.accesos-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
  text-align: center;
}
.accesos-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 400;
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.accesos-sub {
  text-align: center;
  color: var(--grey);
  font-size: 15px;
  margin-bottom: 40px;
}
.accesos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.acceso-card {
  background: white;
  padding: 36px 32px;
  border: 1px solid var(--cream-dark);
  transition: all 0.2s ease;
  text-align: center;
}
.acceso-card:hover {
  border-color: var(--red);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}
.acceso-icon {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 28px;
  color: var(--red);
  margin-bottom: 12px;
}
.acceso-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey);
  font-weight: 500;
  margin-bottom: 12px;
}
.acceso-title {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.acceso-title em { font-style: italic; color: var(--red); }
.acceso-desc {
  font-size: 14px;
  color: var(--grey);
  margin-bottom: 24px;
  line-height: 1.5;
}
.acceso-btn {
  display: inline-block;
  padding: 12px 28px;
  background: var(--black);
  color: var(--cream) !important;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.acceso-btn:hover { background: var(--red); }

.accesos-divider {
  text-align: center;
  margin-top: 48px;
  color: var(--grey);
  font-size: 14px;
  font-style: italic;
}
.accesos-divider a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ===== SECTION GENERIC ===== */
section.standard { padding: 100px 0; }
.section-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--red);
  margin-bottom: 16px;
  font-weight: 500;
}
.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  max-width: 820px;
}
.section-title em { font-style: italic; color: var(--red); }
.section-intro {
  font-size: 18px;
  color: var(--grey);
  max-width: 720px;
  margin-bottom: 56px;
  line-height: 1.55;
}

/* ===== QUIÉNES SOMOS ===== */
.nosotros { background: white; }
.nosotros-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.nosotros-text p {
  font-size: 17px;
  color: var(--grey);
  line-height: 1.65;
  margin-bottom: 20px;
}
.nosotros-text strong { color: var(--black); font-weight: 600; }
.nosotros-quote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 28px;
  line-height: 1.3;
  color: var(--black);
  letter-spacing: -0.01em;
  padding: 32px;
  background: var(--cream);
  border-left: 4px solid var(--red);
  position: sticky;
  top: 100px;
}
.nosotros-quote-attr {
  font-family: 'IBM Plex Sans', sans-serif;
  font-style: normal;
  font-size: 13px;
  color: var(--grey);
  margin-top: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ===== SERVICIOS ===== */
.servicios { background: var(--cream); }
.servicios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--black);
}
.servicio {
  padding: 48px 32px 48px 0;
  border-right: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--black);
}
.servicio:last-child { border-right: none; padding-right: 0; }
.servicio:nth-child(2) { padding-left: 32px; padding-right: 32px; }
.servicio-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--red);
  margin-bottom: 20px;
  font-weight: 400;
}
.servicio-title {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 18px;
  color: var(--black);
  letter-spacing: -0.01em;
}
.servicio-desc {
  font-size: 15px;
  color: var(--grey);
  line-height: 1.6;
}

/* ===== CIFRAS ===== */
.cifras { background: var(--black); color: var(--cream); }
.cifras .section-num { color: #E89AA5; }
.cifras .section-title { color: var(--cream); }
.cifras-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(245, 240, 232, 0.25);
  border-bottom: 1px solid rgba(245, 240, 232, 0.25);
  margin-top: 24px;
}
.cifra {
  padding: 40px 28px 40px 0;
  border-right: 1px solid rgba(245, 240, 232, 0.15);
}
.cifra:last-child { border-right: none; padding-right: 0; }
.cifra:nth-child(n+2) { padding-left: 28px; padding-right: 28px; }
.cifra:last-child { padding-right: 0; }
.cifra-num {
  font-family: 'Fraunces', serif;
  font-size: 56px;
  font-weight: 400;
  line-height: 1;
  color: var(--red);
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}
.cifra-num span {
  font-size: 28px;
  color: rgba(196, 37, 58, 0.7);
  vertical-align: top;
  margin-left: 2px;
}
.cifra-label {
  font-size: 14px;
  color: rgba(245, 240, 232, 0.7);
  line-height: 1.4;
}

/* ===== SECTORES / CLIENTES ===== */
.sectores { background: white; }
.sectores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--cream-dark);
  border: 1px solid var(--cream-dark);
  margin-top: 16px;
}
.sector {
  background: white;
  padding: 32px 28px;
  transition: all 0.2s ease;
}
.sector:hover {
  background: var(--cream);
}
.sector-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--red);
  margin-bottom: 14px;
  letter-spacing: 0.1em;
}
.sector-name {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.sector-desc {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.5;
}

/* ===== COMPROMISO / SELLOS ===== */
.compromiso { background: var(--cream); }
.compromiso-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 24px;
}
.compromiso-card {
  background: white;
  padding: 40px 36px;
  border-top: 4px solid var(--red);
  transition: transform 0.2s ease;
}
.compromiso-card:hover { transform: translateY(-4px); }
.compromiso-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--red);
  margin-bottom: 16px;
  font-weight: 500;
  text-transform: uppercase;
}
.compromiso-title {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.compromiso-title em { font-style: italic; color: var(--red); }
.compromiso-desc {
  font-size: 15px;
  color: var(--grey);
  line-height: 1.65;
}
.wep-highlight {
  grid-column: 1 / -1;
  background: var(--black);
  color: var(--cream);
  padding: 48px 40px;
  border-top: 4px solid var(--red);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.wep-highlight .compromiso-label { color: #E89AA5; }
.wep-highlight .compromiso-title { color: var(--cream); font-size: 32px; }
.wep-highlight .compromiso-desc { color: rgba(245, 240, 232, 0.8); }
.wep-quote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 18px;
  color: rgba(245, 240, 232, 0.85);
  border-left: 3px solid var(--red);
  padding-left: 24px;
  line-height: 1.4;
}
.wep-quote-attr {
  margin-top: 16px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-style: normal;
  font-size: 12px;
  color: rgba(245, 240, 232, 0.6);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ===== PRENSA ===== */
.prensa { background: white; }
.prensa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 24px;
}
.prensa-card {
  border: 1px solid var(--cream-dark);
  padding: 32px 28px;
  transition: all 0.2s ease;
}
.prensa-card:hover {
  border-color: var(--red);
  transform: translateY(-3px);
}
.prensa-medio {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--red);
  margin-bottom: 12px;
  font-weight: 500;
}
.prensa-titulo {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 16px;
  color: var(--black);
  margin-bottom: 16px;
  line-height: 1.4;
  font-weight: 500;
}
.prensa-fecha {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--grey);
  letter-spacing: 0.1em;
}
.reconocimientos-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--cream-dark);
}
.reconocimiento {
  padding: 16px 24px;
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 500;