/* ============================================================
   Felipe Rojas — Mentoría Ejecutiva
   Dirección visual: académica / ejecutiva premium, CÁLIDA.
   Base clara (piedra/marfil) dominante · acentos tinto/borgoña ·
   azul profundo institucional como ancla · bronce en detalles.
   Evitar blanco puro y estética de "coach motivacional".

   GANCHOS DE IMAGEN DE FONDO (para Codex / cuando lleguen los fondos):
   defínelos en :root y caen automáticamente sobre su degradado de
   respaldo. Ejemplo:
     :root {
       --img-boardroom: url("img/sala-consejo.jpg");  (hero-panel)
       --img-contacto:  url("img/aula-direccion.jpg"); (page-hero-dark)
       --img-wall:      url("img/textura-piedra.jpg");  (fondo global)
     }
   Sobre cada imagen va un velo oscuro para mantener legible el texto.
   ============================================================ */

:root {
  /* Paleta */
  --navy: #081F3A;        /* azul profundo institucional */
  --navy-2: #12335a;      /* navy claro para degradados */
  --wine: #6E1F2F;        /* tinto sobrio / borgoña (acento) */
  --wine-2: #8a2a3c;      /* tinto claro para hover/degradado */
  --bronze: #A88456;      /* bronce / dorado apagado */
  --bronze-dark: #8a6a41; /* bronce oscuro para texto sobre claro */
  --ink: #26313A;         /* gris texto principal */
  --muted: #5f6a72;       /* gris texto secundario */

  /* Fondos cálidos (nada de blanco puro) */
  --stone: #E8E1D6;       /* piedra clara */
  --ivory: #F4EFE7;       /* marfil cálido */
  --wall: #ddd3c4;        /* pared/piedra más profunda (degradado) */
  --paper: #efe8dc;       /* superficie de tarjeta */
  --paper-2: #e7ded0;

  --line: rgba(8, 31, 58, 0.14);
  --shadow: 0 24px 70px rgba(38, 49, 58, 0.16);

  /* Escala de espaciado */
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 40px;
  --space-6: 48px;
  --space-7: 64px;
  --space-8: 80px;
  --gutter: clamp(32px, 8vw, 96px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
  /* Fondo cálido tipo pared/piedra. Si se define --img-wall, se usa
     como textura de base bajo el degradado cálido. */
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 251, 244, 0.5), transparent 30%),
    radial-gradient(circle at 88% 4%, rgba(168, 132, 86, 0.16), transparent 32%),
    linear-gradient(155deg, var(--ivory) 0%, var(--stone) 46%, var(--wall) 100%),
    var(--img-wall, transparent);
  background-size: cover, cover, cover, cover;
  background-position: center;
  background-attachment: fixed;
}

/* Textura sutil tipo papel/rejilla, en tono cálido */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(8, 31, 58, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 31, 58, 0.04) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: 0;
}

p {
  margin: 0;
}

/* ---------------- Header ---------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - var(--gutter)));
  margin: 18px auto 0;
  padding: 14px 16px 14px 20px;
  background: rgba(244, 239, 231, 0.9);
  border: 1px solid rgba(8, 31, 58, 0.12);
  box-shadow: 0 16px 44px rgba(38, 49, 58, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: grid;
  gap: 1px;
  color: var(--navy);
}

.brand span {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.42rem;
  font-weight: 700;
}

.brand small {
  color: var(--bronze-dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.main-nav a {
  border-bottom: 1px solid transparent;
  transition: color 180ms ease, border-color 180ms ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--navy);
  border-color: var(--bronze);
}

/* ---------------- Botones ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

/* CTA principal: tinto (acento de marca) */
.btn-primary {
  color: var(--ivory);
  background: var(--wine);
  box-shadow: 0 12px 28px rgba(110, 31, 47, 0.24);
}

.btn-primary:hover {
  background: var(--wine-2);
}

.btn-secondary {
  color: var(--navy);
  background: rgba(244, 239, 231, 0.6);
  border-color: rgba(8, 31, 58, 0.28);
}

.btn-secondary:hover {
  border-color: var(--navy);
  background: rgba(244, 239, 231, 0.9);
}

.btn-gold {
  color: #fff8ee;
  background: var(--bronze-dark);
}

.btn-gold:hover {
  background: var(--bronze);
}

/* ---------------- Hero (inicio) ---------------- */
.hero {
  width: min(1180px, calc(100% - var(--gutter)));
  margin: var(--space-7) auto 0;
}

.hero-home {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  gap: var(--space-4);
  align-items: stretch;
  min-height: 520px;
}

.hero-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: clamp(40px, 7vw, 80px);
  background:
    linear-gradient(120deg, rgba(244, 239, 231, 0.97), rgba(232, 225, 214, 0.8)),
    linear-gradient(135deg, rgba(110, 31, 47, 0.05), transparent 52%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-copy::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -130px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(168, 132, 86, 0.35);
  transform: rotate(36deg);
}

.eyebrow {
  color: var(--bronze-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 620px;
  margin-top: 20px;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 1.06;
}

.tagline {
  max-width: 620px;
  margin-top: 24px;
  color: var(--wine);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.2rem, 2.1vw, 1.65rem);
  line-height: 1.22;
}

.subtext {
  max-width: 690px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 1.03rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

/* Panel de autoridad: ancla azul profundo institucional.
   Acepta imagen de fondo sobria (sala de consejo / biblioteca). */
.hero-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  min-height: 440px;
  padding: var(--space-5);
  color: #eef2f8;
  background:
    linear-gradient(to bottom, rgba(8, 31, 58, 0.58), rgba(8, 31, 58, 0.96)),
    var(--img-boardroom, linear-gradient(135deg, #12335a 0%, #0b2647 48%, #081f3a 100%));
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(168, 132, 86, 0.4);
}

.panel-seal,
.panel-kicker,
.hero-panel h2,
.proof-list {
  position: relative;
  z-index: 1;
}

.panel-seal {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  margin-bottom: auto;
  color: var(--bronze);
  border: 1px solid rgba(168, 132, 86, 0.75);
  border-radius: 50%;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.7rem;
  font-weight: 700;
}

.panel-kicker {
  color: var(--bronze);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-panel h2 {
  margin-top: 14px;
  color: #f3f6fb;
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
}

.proof-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: var(--space-4) 0 0;
}

.proof-list div {
  padding-top: 14px;
  border-top: 1px solid rgba(168, 132, 86, 0.4);
}

.proof-list dt {
  color: var(--bronze);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.7rem;
  font-weight: 700;
}

.proof-list dd {
  margin: 0;
  color: rgba(238, 242, 248, 0.78);
  font-size: 0.78rem;
}

/* ---------------- Banda de mensaje (tinto) ---------------- */
.statement-band {
  width: min(1180px, calc(100% - var(--gutter)));
  margin: var(--space-5) auto 0;
  padding: var(--space-4) clamp(24px, 5vw, 56px);
  color: #f6ece2;
  background: linear-gradient(135deg, var(--wine) 0%, #58121f 100%);
  border-left: 6px solid var(--bronze);
}

.statement-band p {
  max-width: 920px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.14;
}

/* ---------------- Rejillas de tarjetas ---------------- */
.intro-grid,
.credential-grid,
.audience-section {
  width: min(1180px, calc(100% - var(--gutter)));
  margin: var(--space-5) auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}

.intro-grid article,
.credential-grid article,
.audience-section article,
.contact-card,
.contact-form {
  padding: var(--space-6);
  background: rgba(244, 239, 231, 0.82);
  border: 1px solid var(--line);
  box-shadow: 0 16px 48px rgba(38, 49, 58, 0.1);
}

.intro-grid .num {
  display: block;
  margin-bottom: 18px;
  color: var(--bronze-dark);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.intro-grid h2,
.credential-grid h2,
.audience-section h2 {
  font-size: 2rem;
}

.intro-grid p {
  margin-top: 14px;
  color: var(--muted);
}

/* ---------------- Split (inicio) — tarjeta clara cálida ---------------- */
.split-section,
.results-section,
.timeline-section,
.contact-section,
.page-hero {
  width: min(1180px, calc(100% - var(--gutter)));
  margin: var(--space-5) auto 0;
}

.split-section {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: var(--space-4);
  align-items: start;
  padding: clamp(40px, 6vw, 72px);
  background: rgba(244, 239, 231, 0.9);
  border: 1px solid var(--line);
  border-top: 4px solid var(--bronze);
  box-shadow: var(--shadow);
}

.split-section h2 {
  margin-top: 16px;
  font-size: clamp(2rem, 3.4vw, 3rem);
}

.split-copy p {
  color: var(--muted);
  font-size: 1.06rem;
}

.text-link {
  display: inline-block;
  margin-top: 22px;
  color: var(--wine);
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

/* ---------------- Page hero (trayectoria / contacto) ---------------- */
.page-hero {
  padding: clamp(48px, 8vw, 96px);
  background: rgba(244, 239, 231, 0.86);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

/* Variante oscura: tinto con posible imagen sobria de fondo */
.page-hero-dark {
  color: #f6ece2;
  background:
    linear-gradient(135deg, rgba(110, 31, 47, 0.94), rgba(88, 18, 31, 0.96)),
    var(--img-contacto, linear-gradient(135deg, #6E1F2F, #58121f));
  background-size: cover;
  background-position: center;
  border-color: rgba(255, 255, 255, 0.14);
}

.page-hero h1 {
  max-width: 820px;
  margin-top: 16px;
  font-size: clamp(2.3rem, 4.2vw, 3.6rem);
}

.page-hero p:last-child {
  max-width: 760px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 1.1rem;
}

.page-hero-dark h1 {
  color: #f8efe6;
}

.page-hero-dark p:last-child {
  color: rgba(246, 236, 226, 0.82);
}

/* ---------------- Línea de tiempo ---------------- */
.timeline-section {
  padding: var(--space-5);
  background: rgba(244, 239, 231, 0.66);
  border: 1px solid var(--line);
}

.timeline {
  display: grid;
  gap: var(--space-3);
}

.timeline-item {
  position: relative;
  padding: var(--space-4) var(--space-4) var(--space-4) var(--space-5);
  background: rgba(255, 253, 249, 0.55);
  border: 1px solid rgba(8, 31, 58, 0.12);
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--bronze);
}

.period {
  color: var(--bronze-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.timeline-item h2 {
  margin-top: 10px;
  font-size: 1.8rem;
}

.timeline-item p {
  margin-top: 10px;
  color: var(--muted);
}

/* ---------------- Resultados (bloque tinto) ---------------- */
.results-section {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: var(--space-4);
  padding: clamp(40px, 6vw, 64px);
  color: #f6ece2;
  background: linear-gradient(135deg, var(--wine) 0%, #58121f 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.section-heading h2 {
  margin-top: 14px;
  color: #f8efe6;
  font-size: clamp(2rem, 3.4vw, 3rem);
}

.results-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.results-list li {
  position: relative;
  padding: 0 0 18px 24px;
  margin-bottom: 18px;
  color: rgba(246, 236, 226, 0.84);
  border-bottom: 1px solid rgba(246, 236, 226, 0.18);
}

.results-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  background: var(--bronze);
}

/* ---------------- Credenciales / audiencia ---------------- */
.credential-grid {
  grid-template-columns: repeat(2, 1fr);
}

.credential-grid ul,
.audience-section ul {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.credential-grid li,
.audience-section li {
  padding: 13px 0;
  color: var(--muted);
  border-bottom: 1px solid rgba(8, 31, 58, 0.13);
}

.audience-section {
  grid-template-columns: repeat(2, 1fr);
}

/* ---------------- Contacto ---------------- */
.contact-section {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: var(--space-3);
}

.contact-card h2 {
  margin-top: 14px;
  font-size: clamp(2rem, 3.4vw, 3rem);
}

.contact-card p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--muted);
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: var(--space-4);
}

.contact-method {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  align-items: center;
  padding: var(--space-3);
  background: rgba(8, 31, 58, 0.04);
  border: 1px solid rgba(8, 31, 58, 0.12);
  transition: border-color 160ms ease, background 160ms ease;
}

.contact-method:hover {
  border-color: var(--bronze);
  background: rgba(168, 132, 86, 0.08);
}

.contact-method strong {
  color: var(--bronze-dark);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-method span {
  color: var(--navy);
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(8, 31, 58, 0.18);
  border-radius: 2px;
  padding: 13px 14px;
  color: var(--ink);
  background: rgba(255, 253, 249, 0.6);
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--wine);
  box-shadow: 0 0 0 3px rgba(110, 31, 47, 0.12);
}

.contact-form textarea {
  min-height: 154px;
  resize: vertical;
}

/* ---------------- Footer (azul profundo) ---------------- */
.site-footer {
  width: min(1180px, calc(100% - var(--gutter)));
  margin: var(--space-5) auto var(--space-2);
  padding: var(--space-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  color: rgba(238, 242, 248, 0.8);
  background: var(--navy);
  border-top: 3px solid var(--bronze);
}

.site-footer p {
  max-width: 660px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.18rem;
  line-height: 1.22;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: rgba(238, 242, 248, 0.74);
  font-size: 0.86rem;
  font-weight: 700;
}

.site-footer a:hover {
  color: var(--bronze);
}

/* ---------------- Responsivo ---------------- */
@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
    gap: 16px;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 14px;
  }

  .hero-home,
  .split-section,
  .results-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: 420px;
  }

  .intro-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .site-header {
    position: static;
    width: calc(100% - 20px);
    margin-top: 10px;
    flex-direction: column;
  }

  .main-nav {
    justify-content: flex-start;
  }

  .main-nav .btn {
    width: 100%;
  }

  .hero,
  .statement-band,
  .intro-grid,
  .split-section,
  .results-section,
  .timeline-section,
  .contact-section,
  .page-hero,
  .credential-grid,
  .audience-section,
  .site-footer {
    width: calc(100% - 20px);
  }

  .hero {
    margin-top: 18px;
  }

  .hero-copy,
  .page-hero,
  .split-section,
  .results-section,
  .timeline-section,
  .contact-card,
  .contact-form {
    padding: 26px;
  }

  .hero h1 {
    font-size: clamp(2.3rem, 11vw, 3.2rem);
  }

  .proof-list,
  .credential-grid,
  .audience-section {
    grid-template-columns: 1fr;
  }

  .contact-method {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Propuesta visual 02: portada sintética + contacto con libreta
   ============================================================ */

.hero-alt {
  width: min(1180px, calc(100% - var(--gutter)));
  min-height: 500px;
  margin: var(--space-3) auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: var(--space-4);
}

.hero-alt-copy {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(44px, 7vw, 86px);
  background:
    linear-gradient(120deg, rgba(244, 239, 231, 0.95), rgba(232, 225, 214, 0.72)),
    radial-gradient(circle at 90% 10%, rgba(110, 31, 47, 0.12), transparent 34%);
  border: 1px solid var(--line);
  border-top: 5px solid var(--wine);
  box-shadow: var(--shadow);
}

.hero-alt-copy::before {
  content: "";
  position: absolute;
  right: clamp(18px, 5vw, 62px);
  top: clamp(18px, 5vw, 58px);
  width: 116px;
  height: 116px;
  border: 1px solid rgba(168, 132, 86, 0.38);
  border-radius: 50%;
}

.hero-alt h1 {
  max-width: 760px;
  margin-top: 22px;
  font-size: clamp(3rem, 6.5vw, 6.4rem);
  line-height: 0.98;
}

.mentor-portrait-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 500px;
  background:
    linear-gradient(160deg, rgba(8, 31, 58, 0.94), rgba(110, 31, 47, 0.82)),
    var(--navy);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: var(--shadow);
}

.mentor-photo-card {
  background:
    linear-gradient(to bottom, rgba(8, 31, 58, 0.08), rgba(8, 31, 58, 0.72) 58%, rgba(110, 31, 47, 0.86)),
    url("mentor-ejecutivo-bn.png");
  background-size: cover;
  background-position: 48% center;
}

.mentor-portrait-card::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(168, 132, 86, 0.42);
}

.mentor-photo-card::before {
  z-index: 1;
}

.mentor-portrait-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -24% -20%;
  height: 42%;
  background: radial-gradient(ellipse at center, rgba(168, 132, 86, 0.22), transparent 62%);
}

.mentor-photo-card::after {
  z-index: 1;
  background: linear-gradient(to top, rgba(8,31,58,0.78), transparent);
}

.mentor-photo-frame {
  min-height: 410px;
}

.portrait-window {
  position: relative;
  min-height: 410px;
  display: grid;
  place-items: end center;
  padding: 54px 34px 0;
}

.portrait-figure {
  position: relative;
  width: min(78%, 260px);
  height: 360px;
  z-index: 1;
}

.portrait-head {
  position: absolute;
  left: 50%;
  top: 28px;
  width: 96px;
  height: 112px;
  transform: translateX(-50%);
  border-radius: 44% 44% 48% 48%;
  background: linear-gradient(145deg, #caa27f, #9a6d52);
  box-shadow: inset -16px -10px 24px rgba(61, 35, 28, 0.26);
}

.portrait-head::before {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  top: -8px;
  height: 32px;
  border-radius: 38px 38px 14px 14px;
  background: #2b2525;
}

.portrait-body {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 230px;
  height: 238px;
  transform: translateX(-50%);
  clip-path: polygon(20% 0, 80% 0, 100% 100%, 0 100%);
  background: linear-gradient(135deg, #111923, #2b3440 58%, #0a1118);
  border: 1px solid rgba(255,255,255,0.08);
}

.portrait-shirt {
  position: absolute;
  left: 50%;
  bottom: 78px;
  width: 92px;
  height: 158px;
  transform: translateX(-50%);
  clip-path: polygon(0 0, 100% 0, 70% 100%, 30% 100%);
  background: #f2eadf;
}

.portrait-tie {
  position: absolute;
  left: 50%;
  bottom: 68px;
  width: 30px;
  height: 144px;
  transform: translateX(-50%);
  clip-path: polygon(50% 0, 100% 18%, 68% 100%, 32% 100%, 0 18%);
  background: linear-gradient(#7a2032, #4f111d);
}

.portrait-caption {
  position: relative;
  z-index: 1;
  padding: 0 34px 38px;
}

.portrait-caption p {
  color: #f8efe6;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.08;
}

.portrait-caption dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: var(--space-4) 0 0;
}

.portrait-caption div {
  padding-top: 12px;
  border-top: 1px solid rgba(168, 132, 86, 0.42);
}

.portrait-caption dt {
  color: var(--bronze);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
}

.portrait-caption dd {
  margin: 0;
  color: rgba(246, 236, 226, 0.74);
  font-size: 0.72rem;
}

.contact-visual-hero {
  width: min(1180px, calc(100% - var(--gutter)));
  min-height: 460px;
  margin: var(--space-3) auto 0;
  display: grid;
  grid-template-columns: 0.76fr 1fr;
  gap: var(--space-4);
}

.contact-visual-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vw, 74px);
  background: rgba(244, 239, 231, 0.88);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-visual-copy h1 {
  max-width: 620px;
  margin-top: 18px;
  font-size: clamp(2.6rem, 5vw, 4.7rem);
}

.contact-visual-copy p:last-child {
  max-width: 560px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 1.06rem;
}

.notebook-card {
  position: relative;
  overflow: hidden;
  min-height: 580px;
  background:
    linear-gradient(90deg, rgba(8,31,58,0.22), rgba(8,31,58,0.05)),
    url("libreta-roja-felipe.jpg");
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(8, 31, 58, 0.12);
  box-shadow: var(--shadow);
}

.notebook-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(244,239,231,0.04) 0 46%, rgba(8,31,58,0.72) 72% 100%);
}

.notebook-overlay {
  position: absolute;
  right: clamp(22px, 4vw, 46px);
  bottom: clamp(22px, 4vw, 46px);
  width: min(380px, calc(100% - 44px));
  padding: 28px;
  color: #f8efe6;
  background: rgba(8, 31, 58, 0.9);
  border: 1px solid rgba(168, 132, 86, 0.48);
  box-shadow: 0 22px 48px rgba(8, 31, 58, 0.32);
  backdrop-filter: blur(8px);
}

.notebook-overlay h2 {
  margin: 12px 0 18px;
  color: #f8efe6;
  font-size: 2.2rem;
}

.notebook-overlay a {
  display: block;
  padding: 12px 0;
  color: #f8efe6;
  font-weight: 700;
  border-top: 1px solid rgba(168, 132, 86, 0.34);
}

@media (max-width: 920px) {
  .hero-alt,
  .contact-visual-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .mentor-portrait-card,
  .notebook-card {
    min-height: 520px;
  }
}

@media (max-width: 680px) {
  .hero-alt,
  .contact-visual-hero {
    width: calc(100% - 20px);
    margin-top: 18px;
  }

  .hero-alt-copy,
  .contact-visual-copy {
    padding: 26px;
  }

  .hero-alt h1 {
    font-size: clamp(2.5rem, 13vw, 3.7rem);
  }

  .portrait-caption dl {
    grid-template-columns: 1fr;
  }

  .notebook-card {
    min-height: 500px;
    background-position: 42% center;
  }

  .notebook-overlay {
    right: 18px;
    bottom: 18px;
    width: calc(100% - 36px);
    padding: 22px;
  }
}
