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

:root {
  --bg: #ffffff;
  --bg2: #f5f5f3;
  --ink: #18180f;
  --ink-soft: #3e3e33;
  --ink-muted: #90907e;
  --line: #e0e0d8;
  --coral: #F0617A;
  --sans: 'Barlow', system-ui, -apple-system, sans-serif;
  --display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --nav-h: 60px;
  --max: 800px;
}

html { font-size: 16px; }

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
}

.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 40px; width: auto; display: block; }

.nav-links { display: flex; align-items: center; list-style: none; }
.nav-links a {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-decoration: none;
  padding: 0.4rem 0.8rem;
  transition: color 0.15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 1.5px; background: var(--ink); }

/* MAIN */
main {
  margin-top: var(--nav-h);
  flex: 1;
  max-width: var(--max);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2.5rem 6rem;
}

/* HERO */
.hero { padding: 5rem 0 4rem; border-bottom: 1px solid var(--line); }

.hero h1 {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(4rem, 9vw, 7.5rem);
  letter-spacing: 0.01em;
  line-height: 0.9;
  color: var(--ink);
  margin-bottom: 2rem;
}
.hero h1 span { color: var(--coral); }

.hero-desc {
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--ink-soft);
  max-width: 480px;
  line-height: 1.7;
  border-left: 2px solid var(--coral);
  padding-left: 1.2rem;
}
.hero-desc strong { font-weight: 500; color: var(--ink); }

/* PAGE HEADER */
.page-header { padding: 5rem 0 4rem; border-bottom: 1px solid var(--line); }

.page-header h1 {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(4rem, 9vw, 7.5rem);
  letter-spacing: 0.01em;
  line-height: 0.9;
  color: var(--ink);
}
.page-header h1 span { color: var(--coral); }
.page-header h1 em { color: var(--ink); font-style: italic; font-weight: 800; }

/* INTRO */
.intro { padding: 2.5rem 0; border-bottom: 1px solid var(--line); }
.intro p { font-size: 1rem; font-weight: 300; color: var(--ink-soft); line-height: 1.8; max-width: 580px; }

/* SECTION LABEL */
.section-label {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 2rem;
}

/* DOMINIO ROWS */
.dominios { padding: 3.5rem 0; border-bottom: 1px solid var(--line); }

.dominio-row {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 0 1.5rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
  text-decoration: none;
  color: var(--ink);
}
.dominio-row:last-child { border-bottom: none; }
.dominio-row:hover .dominio-nombre { color: var(--coral); }

.dominio-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  color: var(--line);
  padding-top: 4px;
}

.dominio-body { display: flex; flex-direction: column; gap: 0.3rem; }

.dominio-nombre {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  transition: color 0.15s;
  line-height: 1;
}

.dominio-desc { font-size: 0.9rem; font-weight: 300; color: var(--ink-muted); line-height: 1.6; }

/* CIERRE */
.cierre { padding: 3.5rem 0 0; display: flex; align-items: flex-start; justify-content: space-between; gap: 2rem; }
.cierre-texto { font-size: 0.95rem; font-weight: 300; color: var(--ink-soft); max-width: 420px; line-height: 1.75; }
.pie-contacto {
  font-size: 0.8rem; font-weight: 400; letter-spacing: 0.05em;
  color: var(--ink-muted); text-decoration: none;
  border-bottom: 1px solid var(--line); padding-bottom: 2px;
  white-space: nowrap; align-self: center; flex-shrink: 0;
  transition: color 0.15s, border-color 0.15s;
}
.pie-contacto:hover { color: var(--coral); border-color: var(--coral); }

/* AREAS */
.area {
  padding: 3rem 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 14rem 1fr;
  gap: 0 4rem;
  align-items: start;
}
.area:last-child { border-bottom: none; }

.area-titulo {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 2rem;
  letter-spacing: 0.03em;
  color: var(--ink);
  line-height: 0.95;
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}
.area-titulo span { color: var(--coral); }

.area-body p { font-size: 0.95rem; font-weight: 300; color: var(--ink-soft); line-height: 1.85; margin-bottom: 1rem; }
.area-body p:last-child { margin-bottom: 0; }
.area-body p.strong { color: var(--ink); font-weight: 500; }
.area-body em { font-style: italic; color: var(--ink); }

/* GRUPOS */
.grupo { padding: 2.5rem 0; border-bottom: 1px solid var(--line); }
.grupo:last-of-type { border-bottom: none; }

.grupo-titulo {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-bottom: 1.2rem;
  line-height: 1;
}
.grupo-titulo span { color: var(--coral); }

.grupo ul { list-style: none; }
.grupo ul li {
  font-size: 0.94rem; font-weight: 300; color: var(--ink-soft);
  line-height: 1.7; padding: 0.6rem 0 0.6rem 1rem;
  border-bottom: 1px solid var(--line); position: relative;
}
.grupo ul li:last-child { border-bottom: none; }
.grupo ul li::before { content: '—'; position: absolute; left: 0; color: var(--coral); font-size: 0.8rem; }

/* PARA QUIÉN */
.pq-card {
  padding: 2.5rem 0; border-bottom: 1px solid var(--line);
  display: grid; grid-template-columns: 80px 1fr; gap: 0 2rem; align-items: start;
}
.pq-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: 2.8rem;
  letter-spacing: 0.04em;
  color: var(--coral);
  opacity: 0.3;
  line-height: 1;
}
.pq-body h3 {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-bottom: 0.7rem;
  line-height: 1;
}
.pq-body p { font-size: 0.95rem; font-weight: 300; color: var(--ink-soft); line-height: 1.75; max-width: 480px; }

/* BIO */
.bio-section {
  padding: 2.5rem 0; border-bottom: 1px solid var(--line);
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 0 3rem; align-items: start;
}
.bio-photo { width: 100%; max-width: 220px; display: block; filter: grayscale(10%); border-radius: 4px; }
.bio-text h2 {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 2rem;
  letter-spacing: 0.03em;
  color: var(--ink);
  margin-bottom: 0.2rem;
  line-height: 1;
}
.bio-role { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--coral); margin-bottom: 1.2rem; }
.bio-text p { font-size: 0.95rem; font-weight: 300; color: var(--ink-soft); line-height: 1.8; margin-bottom: 1rem; }
.bio-text a { font-size: 0.8rem; font-weight: 400; letter-spacing: 0.05em; color: var(--ink-muted); text-decoration: none; border-bottom: 1px solid var(--line); padding-bottom: 2px; transition: color 0.15s; }
.bio-text a:hover { color: var(--coral); border-color: var(--coral); }

/* EQUIPO */
.equipo { padding: 2.5rem 0; border-bottom: 1px solid var(--line); }
.equipo-titulo {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--coral);
  margin-bottom: 1.2rem;
  line-height: 1;
}
.equipo p { font-size: 0.95rem; font-weight: 300; color: var(--ink-soft); line-height: 1.8; margin-bottom: 1rem; }
.pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.pill { font-size: 0.78rem; font-weight: 300; color: var(--ink-muted); border: 1px solid var(--line); padding: 0.35rem 0.85rem; }

/* CTA BLOCK */
.cta-block {
  padding: 4rem 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.8rem;
}
.cta-headline {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  letter-spacing: 0.02em;
  line-height: 0.95;
  color: var(--ink);
}
.cta-headline span { color: var(--coral); }
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-decoration: none;
  border: 1.5px solid var(--ink);
  padding: 0.85rem 1.4rem;
  transition: all 0.18s ease;
}
.cta-button:hover {
  background: var(--coral);
  border-color: var(--coral);
  color: #fff;
}

/* CONTACT */
.contact-mail {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 2.2rem;
  letter-spacing: 0.02em;
  color: var(--ink);
  line-height: 1.1;
}
.contact-mail a { color: var(--ink); text-decoration: none; border-bottom: 3px solid var(--coral); padding-bottom: 2px; }
.contact-mail a:hover { color: var(--coral); }

strong { font-weight: 500; color: var(--ink); }

/* FOOTER */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--line);
  padding: 1.25rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  color: var(--ink-muted);
}
.footer-tag {
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--ink-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
}

/* RESPONSIVE */
@media (max-width: 640px) {
  nav { padding: 0 1.25rem; }
  main { padding: 0 1.25rem 4rem; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: var(--nav-h); left: 0; right: 0; background: var(--bg); border-bottom: 1px solid var(--line); padding: 1rem 1.25rem 1.5rem; align-items: flex-start; }
  .nav-links.open a { padding: 0.6rem 0; font-size: 0.95rem; }
  .nav-hamburger { display: flex; }
  .area { grid-template-columns: 1fr; gap: 1rem; }
  .area-titulo { position: static; font-size: 1.7rem; }
  .bio-section { grid-template-columns: 1fr; gap: 1.5rem; }
  .pq-card { grid-template-columns: 1fr; gap: 0.5rem; }
  .cierre { flex-direction: column; }
  footer { flex-direction: column; gap: 0.4rem; text-align: center; padding: 1rem 1.25rem; }
  .cta-headline { font-size: 2rem; }
}
