@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=Instrument+Serif:ital@0;1&family=Inter+Tight:wght@400;500;600;700;800&display=swap');

:root {
  --sans: "Inter Tight", Inter, Arial, sans-serif;
  --condensed: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  --serif: "Instrument Serif", Georgia, serif;

  --green-950: #062b20;
  --green-900: #0a3f2f;
  --green-800: #11513d;
  --green-700: #1b684f;
  --green-100: #dfe9e2;

  --amber: #d79531;
  --amber-dark: #b97418;
  --amber-light: #efbd72;
  --amber-soft: #f4dfbd;

  --paper: #fcf9f2;
  --paper-warm: #f6efe3;
  --cream: #f1e8d9;
  --white: #ffffff;
  --ink: #14231c;
  --muted: #627068;
  --line: #d5ddd7;
  --line-strong: #bdcbc2;
  --line-dark: rgba(255, 255, 255, 0.14);

  --shadow-soft: 0 18px 48px rgba(6, 43, 32, 0.08);
  --shadow: 0 28px 78px rgba(6, 43, 32, 0.15);
  --shadow-dark: 0 34px 90px rgba(0, 0, 0, 0.26);

  --shell: min(1240px, calc(100vw - 48px));
  --section-space: clamp(84px, 8.5vw, 132px);
  --radius-s: 14px;
  --radius-m: 24px;
  --radius-l: 36px;
  --pill: 999px;
  --header-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

button,
input,
summary {
  font: inherit;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  background: var(--amber-soft);
  color: var(--green-950);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  transform: translateY(-160%);
  border-radius: 10px;
  background: var(--green-950);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s var(--ease);
}

.skip-link:focus {
  transform: none;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: var(--green-700);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.25;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 32px;
  height: 2px;
  flex: 0 0 auto;
  border-radius: 99px;
  background: var(--amber);
}

.kicker--light {
  color: #ecd8ba;
}

.kicker--light::before,
.kicker--warm::before {
  background: var(--amber-light);
}

.kicker--warm {
  color: var(--amber-light);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h2 {
  margin: 14px 0 0;
  color: var(--green-950);
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 5.15rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.96;
  text-wrap: balance;
}

h3 {
  color: var(--green-950);
}

.section-dark h2,
.section-ink h2,
.final-cta h2 {
  color: #fff;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.72fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: end;
  margin-bottom: 48px;
}

.section-heading > p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 1.01rem;
  line-height: 1.68;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 52px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: var(--pill);
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 0.2s var(--ease),
    background 0.2s var(--ease),
    color 0.2s var(--ease),
    border-color 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: var(--green-900);
  color: #fff;
  box-shadow: 0 16px 34px rgba(10, 63, 47, 0.18);
}

.button--primary:hover {
  background: var(--green-700);
  box-shadow: 0 20px 42px rgba(10, 63, 47, 0.23);
}

.button--secondary,
.button--accent {
  background: var(--amber);
  color: var(--green-950);
}

.button--secondary:hover,
.button--accent:hover {
  background: #e6a34d;
}

.button--outline {
  border-color: rgba(10, 63, 47, 0.22);
  background: transparent;
  color: var(--green-900);
}

.button--outline:hover {
  border-color: var(--green-900);
  background: rgba(255, 255, 255, 0.7);
}

.button--accent {
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
}

.button-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-900);
  font-weight: 800;
  text-underline-offset: 5px;
}

/* =========================================================
   01. HERO
   Fondo orgánico: luz, materia y ciclos. Sin cuadrícula.
   ========================================================= */

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100svh;
  overflow: hidden;
  overflow: clip;
  background:
    radial-gradient(ellipse 58% 72% at 84% 38%, rgba(215, 149, 49, 0.18), rgba(215, 149, 49, 0.05) 46%, transparent 72%),
    radial-gradient(ellipse 58% 46% at 0% 100%, rgba(10, 63, 47, 0.10), rgba(10, 63, 47, 0.025) 55%, transparent 76%),
    linear-gradient(112deg, #fffdf8 0%, #fbf6ed 50%, #f4ead9 100%);
}

@supports (height: 100dvh) {
  .hero {
    min-height: 100dvh;
  }
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  left: -20%;
  bottom: -56%;
  width: 88%;
  aspect-ratio: 1.35;
  border-radius: 54% 46% 0 0 / 66% 56% 0 0;
  background:
    radial-gradient(ellipse at 52% 5%, rgba(255, 255, 255, 0.78), transparent 52%),
    linear-gradient(148deg, rgba(10, 63, 47, 0.12), rgba(215, 149, 49, 0.08));
  transform: rotate(-7deg);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -16rem;
  right: -10rem;
  width: 53rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 0 54%, rgba(215, 149, 49, 0.24) 54.08% 54.25%, transparent 54.42% 65%, rgba(10, 63, 47, 0.12) 65.08% 65.24%, transparent 65.4% 75%, rgba(215, 149, 49, 0.10) 75.08% 75.22%, transparent 75.4%);
  opacity: 0.72;
  transform: rotate(12deg);
  pointer-events: none;
}

.site-header {
  position: relative;
  z-index: 20;
  min-height: var(--header-h);
  border-bottom: 1px solid rgba(10, 63, 47, 0.09);
  background: rgba(252, 249, 242, 0.64);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: block;
  flex: 0 1 470px;
}

.brand img {
  width: min(470px, 44vw);
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: var(--amber-dark);
  transition: right 0.25s var(--ease);
}

.desktop-nav a:hover {
  color: var(--amber-dark);
}

.desktop-nav a:hover::after {
  right: 0;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(10, 63, 47, 0.2);
  border-radius: var(--pill);
  color: var(--green-900);
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.header-cta:hover {
  border-color: var(--green-900);
  background: var(--green-900);
  color: #fff;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
  gap: clamp(42px, 6vw, 84px);
  align-items: center;
  padding-block: clamp(32px, 4vw, 52px) clamp(58px, 6vw, 78px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 10%;
  left: -10%;
  width: 52%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.58), transparent 68%);
  filter: blur(8px);
  pointer-events: none;
}

.hero h1 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  max-width: none;
  margin: 23px 0 0;
  color: var(--green-950);
  font-family: var(--condensed);
  font-size: clamp(4rem, 6.45vw, 6.7rem);
  font-weight: 800;
  letter-spacing: -0.046em;
  line-height: 0.82;
  text-transform: uppercase;
}

.hero h1 span,
.hero h1 em {
  white-space: nowrap;
}

.hero h1 em {
  margin-block: 10px 8px;
  color: var(--amber-dark);
  font-family: var(--serif);
  font-size: 0.47em;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1;
  font-style: italic;
  text-transform: none;
}

.hero-descriptor {
  margin: 22px 0 0;
  color: var(--green-900);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  font-weight: 800;
  letter-spacing: 0.01em;
}

.hero-lede {
  max-width: 590px;
  margin: 11px 0 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.2vw, 1.09rem);
  line-height: 1.66;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 27px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
  margin-top: 27px;
  padding-top: 20px;
  border-top: 1px solid rgba(10, 63, 47, 0.14);
}

.hero-proof span {
  padding: 0 16px;
  border-right: 1px solid rgba(10, 63, 47, 0.14);
  color: var(--muted);
  font-size: 0.79rem;
}

.hero-proof span:first-child {
  padding-left: 0;
}

.hero-proof span:last-child {
  border-right: 0;
}

.hero-proof strong {
  display: block;
  color: var(--green-900);
  font-family: var(--condensed);
  font-size: 1.35rem;
  line-height: 1;
  letter-spacing: 0.004em;
  text-transform: uppercase;
}

.hero-art {
  position: relative;
  z-index: 1;
  isolation: isolate;
  min-width: 0;
  align-self: stretch;
  display: grid;
  align-items: center;
  padding-block: 14px;
}

.hero-art::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 8% -9% 3% 5%;
  border-radius: 48% 52% 46% 54% / 42% 48% 52% 58%;
  background: radial-gradient(circle at 50% 44%, rgba(239, 189, 114, 0.35), rgba(215, 149, 49, 0.10) 44%, transparent 72%);
  filter: blur(18px);
  transform: rotate(-5deg);
  pointer-events: none;
}

.hero-art__frame {
  position: relative;
  height: min(66vh, 650px);
  min-height: 470px;
  overflow: hidden;
  border: 1px solid rgba(10, 63, 47, 0.08);
  border-radius: 34px 34px 104px 34px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.hero-art__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 50%, rgba(6, 43, 32, 0.19) 100%);
  pointer-events: none;
}

.hero-art__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 50%;
  transform: scale(1.025);
  transition: transform 0.7s var(--ease);
}

.hero-art:hover .hero-art__frame img {
  transform: scale(1.055);
}

.hero-art__tag {
  position: absolute;
  z-index: 2;
  padding: 12px 16px;
  border: 1px solid rgba(10, 63, 47, 0.08);
  border-radius: var(--pill);
  background: rgba(255, 253, 248, 0.91);
  box-shadow: 0 12px 30px rgba(6, 43, 32, 0.11);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  color: var(--green-900);
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-art__tag--top {
  top: 9%;
  left: -26px;
}

.hero-art__tag--bottom {
  right: -18px;
  bottom: 10%;
}

.hero-art__index {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 20px;
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--serif);
  font-size: 4.3rem;
  font-weight: 400;
  line-height: 1;
  font-style: italic;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 14px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 13px;
  transform: translateX(-50%);
  color: var(--green-900);
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.hero-scroll i {
  position: relative;
  width: 44px;
  height: 1px;
  background: rgba(10, 63, 47, 0.36);
}

.hero-scroll i::after {
  content: "";
  position: absolute;
  right: 0;
  top: -2px;
  width: 5px;
  height: 5px;
  border-right: 1px solid var(--green-900);
  border-bottom: 1px solid var(--green-900);
  transform: rotate(45deg);
}

/* =========================================================
   02. RESULTADOS
   ========================================================= */

.outcomes {
  padding: var(--section-space) 0;
  background:
    radial-gradient(circle at 88% 10%, rgba(215, 149, 49, 0.08), transparent 22rem),
    linear-gradient(180deg, var(--paper-warm) 0%, #faf7f0 100%);
}

.outcomes-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.74fr) minmax(0, 1.26fr);
  gap: clamp(36px, 5.5vw, 72px);
  align-items: start;
}

.outcomes-intro > p:last-of-type {
  max-width: 40rem;
  margin: 21px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.66;
}

.outcomes-note {
  display: grid;
  gap: 6px;
  max-width: 34rem;
  margin-top: 25px;
  padding: 17px 19px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.58);
}

.outcomes-note strong {
  color: var(--green-950);
  font-size: 0.94rem;
}

.outcomes-note span {
  color: #4e5a53;
  font-size: 0.9rem;
  line-height: 1.56;
}

.outcomes-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 15px;
}

.outcome-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 230px;
  padding: 23px 21px 21px;
  border: 1px solid #d0d8d2;
  border-radius: 23px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 38px rgba(10, 63, 47, 0.05);
}

.outcome-card--featured {
  border-color: var(--green-900);
  background: linear-gradient(180deg, #0a3f2f 0%, #072f24 100%);
  box-shadow: 0 22px 60px rgba(10, 63, 47, 0.17);
}

.outcome-card__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(215, 149, 49, 0.13);
  color: var(--amber-dark);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
}

.outcome-card--featured .outcome-card__index {
  background: rgba(255, 255, 255, 0.08);
  color: #f4c67d;
}

.outcome-card__eyebrow {
  margin: 15px 0 0;
  color: var(--amber-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.outcome-card--featured .outcome-card__eyebrow {
  color: #f4c67d;
}

.outcome-card h3 {
  margin: 9px 0 0;
  color: var(--green-950);
  font-size: 1.18rem;
  line-height: 1.3;
}

.outcome-card--featured h3 {
  color: #fff;
}

.outcome-card p {
  margin: 11px 0 0;
  color: #5a665f;
  font-size: 0.92rem;
  line-height: 1.6;
}

.outcome-card--featured p {
  color: #c4d3cd;
}

.outcome-card small {
  margin-top: auto;
  padding-top: 14px;
  color: var(--green-900);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.outcome-card--featured small {
  color: #f2d49e;
}

.outcomes-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 29px;
  border-top: 1px solid #d0d8d2;
  border-bottom: 1px solid #d0d8d2;
}

.outcomes-strip div {
  padding: 18px 15px;
  border-right: 1px solid #d0d8d2;
}

.outcomes-strip div:last-child {
  border-right: 0;
}

.outcomes-strip strong {
  display: block;
  color: var(--green-950);
  font-size: 0.91rem;
}

.outcomes-strip span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.48;
}

/* =========================================================
   04. HORAS
   ========================================================= */

.section-ink {
  background: #111a16;
  color: #fff;
}

.hours {
  position: relative;
  padding: var(--section-space) 0;
  overflow: hidden;
  overflow: clip;
  background:
    radial-gradient(circle at 18% 16%, rgba(215, 149, 49, 0.09), transparent 20rem),
    radial-gradient(circle at 82% 76%, rgba(255, 255, 255, 0.045), transparent 18rem),
    linear-gradient(180deg, #101a16 0%, #0b1411 100%);
}

.hours::before {
  content: "";
  position: absolute;
  right: -15rem;
  bottom: -20rem;
  width: 44rem;
  aspect-ratio: 1;
  border: 1px solid rgba(215, 149, 49, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.014), 0 0 0 140px rgba(255, 255, 255, 0.01);
  pointer-events: none;
}

.hours-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(360px, 0.88fr);
  gap: clamp(32px, 4.6vw, 64px) clamp(42px, 5.5vw, 76px);
  align-items: start;
}

.hours-lead p:last-child {
  max-width: 35rem;
  margin: 21px 0 0;
  color: #aebeb6;
  font-size: 0.98rem;
  line-height: 1.66;
}

.hours-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.032), rgba(255, 255, 255, 0.01));
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.23);
}

.hours-visual__ring {
  position: absolute;
  inset: 50%;
  width: min(78%, 330px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(215, 149, 49, 0.22);
  border-radius: 50%;
  box-shadow: 0 0 0 30px rgba(255, 255, 255, 0.018), 0 0 0 66px rgba(255, 255, 255, 0.012);
}

.hours-visual__core {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: min(50vw, 220px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(215, 149, 49, 0.26), rgba(215, 149, 49, 0.045) 50%, rgba(255, 255, 255, 0.025) 100%);
  text-align: center;
}

.hours-visual__label {
  color: #f1bf72;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hours-visual__core strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-family: var(--condensed);
  font-size: clamp(4.8rem, 9vw, 6.5rem);
  font-weight: 800;
  line-height: 0.78;
  letter-spacing: -0.045em;
}

.hours-visual__core small {
  display: block;
  margin-top: 9px;
  color: #c2d0ca;
  font-size: 0.84rem;
}

.hours-floating {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 4px;
  max-width: 184px;
  padding: 15px 16px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  -webkit-backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.hours-floating strong {
  color: #fff;
  font-family: var(--condensed);
  font-size: 2.55rem;
  line-height: 0.82;
}

.hours-floating span {
  color: #cad4cf;
  font-size: 0.78rem;
  line-height: 1.4;
}

.hours-floating--left {
  left: 20px;
  bottom: 24px;
}

.hours-floating--right {
  right: 20px;
  top: 24px;
}

.hours-breakdown {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
}

.hours-card {
  display: flex;
  flex-direction: column;
  min-height: 184px;
  padding: 21px 19px;
  border: 1px solid var(--line-dark);
  border-radius: 21px;
  background: rgba(255, 255, 255, 0.022);
}

.hours-card--accent {
  border-color: rgba(215, 149, 49, 0.27);
  background: rgba(215, 149, 49, 0.1);
}

.hours-card > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #f0b964;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
}

.hours-card h3 {
  margin: 15px 0 0;
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.3;
}

.hours-card p {
  margin: 10px 0 0;
  color: #afc0b8;
  font-size: 0.89rem;
  line-height: 1.58;
}

/* =========================================================
   05. PROGRAMA
   ========================================================= */

.program {
  padding: var(--section-space) 0;
  background: #fff;
}

.program-layout {
  display: grid;
  grid-template-columns: minmax(290px, 0.66fr) minmax(0, 1.34fr);
  gap: clamp(42px, 6.5vw, 88px);
  align-items: start;
}

.program-intro {
  position: sticky;
  top: calc(var(--header-h) + 28px);
}

.program-intro > p:nth-of-type(2) {
  max-width: 34rem;
  margin: 21px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.66;
}

.program-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 26px 0 24px;
}

.program-summary div {
  min-width: 0;
  padding: 14px 12px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--paper);
}

.program-summary strong {
  display: block;
  color: var(--green-950);
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.program-summary span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.35;
}

.program-intro .button {
  width: 100%;
}

.program-intro__note {
  margin: 10px 0 0 !important;
  color: var(--muted) !important;
  font-size: 0.77rem !important;
  text-align: center;
  line-height: 1.45 !important;
}

.module-list {
  border-top: 1px solid var(--line);
}

.module {
  border-bottom: 1px solid var(--line);
  transition: background 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.module[open] {
  margin-inline: -14px;
  padding-inline: 14px;
  border-radius: 20px;
  background: #faf7ef;
  box-shadow: 0 14px 38px rgba(10, 63, 47, 0.055);
}

.module summary {
  list-style: none;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 138px 36px;
  gap: 16px;
  align-items: center;
  padding: 21px 0;
  cursor: pointer;
}

.module summary::-webkit-details-marker {
  display: none;
}

.module-number {
  color: var(--amber-dark);
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 1;
  font-style: italic;
}

.module-main small {
  display: block;
  margin-bottom: 5px;
  color: var(--amber-dark);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.module-main strong {
  display: block;
  color: var(--green-950);
  font-size: 0.98rem;
  line-height: 1.34;
}

.module-main em {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.77rem;
  font-style: normal;
  line-height: 1.44;
}

.module-meta {
  text-align: right;
}

.module-meta b {
  display: block;
  color: var(--green-900);
  font-family: var(--condensed);
  font-size: 1.15rem;
  line-height: 1;
}

.module-meta small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.4;
}

.module-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--green-900);
  font-size: 1.1rem;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}

.module[open] .module-icon {
  transform: rotate(45deg);
  background: var(--green-900);
  color: #fff;
}

.module-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  padding: 0 48px 24px 70px;
}

.module-body > div > strong {
  display: block;
  margin-bottom: 6px;
  color: var(--green-900);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.module-body p {
  margin: 0;
  color: #4e5a53;
  font-size: 0.88rem;
  line-height: 1.58;
}

.module-body ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-content: start;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.module-body li {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: var(--pill);
  background: #fff;
  color: var(--green-900);
  font-size: 0.71rem;
  font-weight: 800;
}

/* =========================================================
   06. TALLER
   ========================================================= */

.workshop {
  position: relative;
  padding: var(--section-space) 0;
  overflow: hidden;
  overflow: clip;
  background:
    radial-gradient(circle at 90% 20%, rgba(215, 149, 49, 0.09), transparent 23rem),
    linear-gradient(180deg, #f3ecdf 0%, #f8f4ec 100%);
}

.workshop::after {
  content: "";
  position: absolute;
  right: -12rem;
  top: 4rem;
  width: 34rem;
  aspect-ratio: 1;
  border: 1px solid rgba(10, 63, 47, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 66px rgba(10, 63, 47, 0.022);
  pointer-events: none;
}

.workshop-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(310px, 0.78fr) minmax(420px, 1.22fr);
  gap: clamp(38px, 5.5vw, 74px);
  align-items: center;
}

.workshop-copy > p:nth-of-type(2) {
  max-width: 38rem;
  margin: 21px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.66;
}

.workshop-quote {
  margin-top: 28px;
  padding: 17px 20px;
  border-left: 3px solid var(--amber);
  background: rgba(255, 255, 255, 0.5);
}

.workshop-quote span {
  display: block;
  color: var(--amber-dark);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.workshop-quote strong {
  display: block;
  margin-top: 8px;
  color: var(--green-950);
  font-family: var(--serif);
  font-size: 1.42rem;
  font-weight: 400;
  line-height: 1.18;
}

.workshop-art {
  position: relative;
}

.workshop-art__frame {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border-radius: 32px 32px 96px 32px;
  background: var(--green-900);
  box-shadow: var(--shadow);
}

.workshop-art__frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  filter: saturate(0.9) contrast(1.03);
}

.workshop-art__wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 43, 32, 0.03), rgba(6, 43, 32, 0.2) 52%, rgba(6, 43, 32, 0.7) 100%);
}

.workshop-art__metric {
  position: absolute;
  left: 20px;
  bottom: 20px;
  max-width: 216px;
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(6, 43, 32, 0.72);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  color: #fff;
}

.workshop-art__metric strong {
  display: block;
  font-family: var(--condensed);
  font-size: 2.8rem;
  line-height: 0.8;
}

.workshop-art__metric span {
  display: block;
  margin-top: 8px;
  color: #d0ddd7;
  font-size: 0.77rem;
  line-height: 1.4;
}

.workshop-art__index {
  position: absolute;
  right: 23px;
  top: 18px;
  color: rgba(255, 255, 255, 0.56);
  font-family: var(--serif);
  font-size: 4.1rem;
  line-height: 1;
  font-style: italic;
}

.workshop-sequence {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 3px;
  border-top: 1px solid #cdd6cf;
  border-bottom: 1px solid #cdd6cf;
}

.workshop-sequence article {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 15px;
  padding: 22px 20px;
  border-right: 1px solid #cdd6cf;
}

.workshop-sequence article:last-child {
  border-right: 0;
}

.workshop-sequence article > span {
  color: var(--amber-dark);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-style: italic;
}

.workshop-sequence strong {
  display: block;
  color: var(--green-950);
  font-size: 0.96rem;
}

.workshop-sequence p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.52;
}

.workshop-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.77rem;
  text-align: right;
}

/* =========================================================
   07. EQUIPO DOCENTE
   ========================================================= */

.section-soft {
  background: #eef3ef;
}

.faculty {
  padding: var(--section-space) 0;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.75), transparent 22rem),
    linear-gradient(180deg, #edf3ef 0%, #e7eee9 100%);
}

.faculty-layout {
  display: grid;
  grid-template-columns: minmax(290px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(40px, 6.5vw, 84px);
  align-items: start;
}

.faculty-heading {
  position: sticky;
  top: calc(var(--header-h) + 28px);
}

.faculty-heading > p:last-of-type {
  max-width: 35rem;
  margin: 21px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.66;
}

.faculty-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 26px;
}

.faculty-summary div {
  padding: 14px 12px;
  border: 1px solid #c7d2ca;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.46);
}

.faculty-summary strong {
  display: block;
  color: var(--green-950);
  font-family: var(--serif);
  font-size: 1.78rem;
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.faculty-summary span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.35;
}

.faculty-board {
  border-top: 1px solid #bdcac1;
}

.faculty-board article {
  display: grid;
  grid-template-columns: 56px minmax(180px, 0.68fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #bdcac1;
}

.faculty-avatar {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--green-900);
  color: #fff;
  font-family: var(--condensed);
  font-size: 1.18rem;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(10, 63, 47, 0.13);
}

.faculty-main small {
  display: block;
  color: var(--amber-dark);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.faculty-main h3 {
  margin: 5px 0 0;
  color: var(--green-950);
  font-size: 0.98rem;
  line-height: 1.25;
}

.faculty-main p {
  margin: 4px 0 0;
  color: var(--green-700);
  font-size: 0.77rem;
  font-weight: 800;
}

.faculty-focus {
  padding-left: 18px;
  border-left: 1px solid #c3cec6;
}

.faculty-focus strong {
  display: block;
  color: var(--green-950);
  font-size: 0.88rem;
}

.faculty-focus span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.52;
}

/* =========================================================
   08. PÚBLICO
   ========================================================= */

.audience {
  padding: var(--section-space) 0;
  background: #fff;
}

.audience-layout {
  display: grid;
  grid-template-columns: minmax(310px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: start;
}

.audience-copy {
  position: sticky;
  top: calc(var(--header-h) + 28px);
}

.audience-copy > p:nth-of-type(2) {
  max-width: 34rem;
  margin: 21px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.66;
}

.audience-note {
  display: grid;
  gap: 6px;
  margin-top: 26px;
  padding: 17px 19px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: var(--paper);
}

.audience-note strong {
  color: var(--green-950);
  font-size: 0.85rem;
}

.audience-note span {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.54;
}

.audience-map {
  border-top: 1px solid var(--line);
}

.audience-map article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
}

.audience-map article > span {
  color: var(--amber-dark);
  font-family: var(--serif);
  font-size: 1.72rem;
  line-height: 1;
  font-style: italic;
}

.audience-map small {
  display: block;
  color: var(--green-700);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.audience-map h3 {
  max-width: 33rem;
  margin: 7px 0 0;
  color: var(--green-950);
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1.14;
}

.audience-map p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.56;
}

/* =========================================================
   09. FECHAS Y LUGAR
   ========================================================= */

.section-paper {
  background: var(--paper);
}

.practical {
  padding: var(--section-space) 0;
  background:
    radial-gradient(circle at 80% 6%, rgba(215, 149, 49, 0.06), transparent 20rem),
    var(--paper);
}

.practical-layout {
  display: grid;
  grid-template-columns: minmax(350px, 0.76fr) minmax(0, 1.24fr);
  column-gap: clamp(46px, 6vw, 88px);
  row-gap: 24px;
  align-items: start;
}

/*
 * Los hijos del encabezado participan en la retícula principal.
 * Así el calendario ocupa el espacio derecho mientras el titular
 * desarrolla su altura en la columna izquierda.
 */
.practical-heading {
  display: contents;
}

.practical-heading .kicker {
  grid-column: 1 / -1;
  grid-row: 1;
}

.practical-heading h2 {
  grid-column: 1;
  grid-row: 2 / span 2;
  max-width: 11ch;
  margin-top: 4px;
  font-size: clamp(3.55rem, 4.8vw, 5.1rem);
  line-height: 0.92;
}

.practical-heading > p:last-child {
  grid-column: 2;
  grid-row: 2;
  max-width: 45ch;
  margin: 4px 0 0;
  padding: 15px 0 15px 22px;
  border-left: 2px solid rgba(215, 149, 49, 0.72);
  color: var(--muted);
  font-size: 0.99rem;
  line-height: 1.66;
}

.calendar-groups {
  grid-column: 2;
  grid-row: 3;
  display: grid;
  gap: 18px;
  align-self: start;
}

.calendar-group {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 18px;
  align-items: stretch;
}

.calendar-group__month {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 15px 0;
  border-top: 2px solid var(--amber);
}

.calendar-group__month span {
  color: var(--amber-dark);
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.calendar-group__month strong {
  color: var(--green-950);
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 400;
  line-height: 1.05;
}

.calendar-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.calendar-line--short {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 50%;
}

.calendar-line article {
  position: relative;
  padding: 17px 15px 19px;
  border-right: 1px solid var(--line);
}

.calendar-line article:last-child {
  border-right: 0;
}

.calendar-line article::before {
  content: "";
  position: absolute;
  left: 15px;
  top: -5px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 5px var(--paper);
}

.calendar-line small {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.calendar-line strong {
  display: block;
  margin-top: 10px;
  color: var(--green-950);
  font-family: var(--serif);
  font-size: 1.82rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
}

.calendar-line span {
  display: block;
  margin-top: 10px;
  color: var(--green-700);
  font-size: 0.77rem;
  font-weight: 800;
}

.location-panel {
  grid-column: 1 / -1;
  grid-row: 4;
  position: relative;
  display: grid;
  grid-template-columns: minmax(270px, 0.82fr) minmax(0, 1fr) 138px;
  gap: 0;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--green-900), #0b4e3b);
  color: #fff;
  box-shadow: var(--shadow);
}

.location-panel__main {
  padding: 31px;
}

.location-label {
  color: #f2bc6b;
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.location-panel__main h3 {
  margin: 11px 0 0;
  color: #fff;
  font-family: var(--serif);
  font-size: 2.65rem;
  font-weight: 400;
}

.location-panel__main p {
  margin: 11px 0 20px;
  color: #c8d6cf;
}

.location-panel__main .button {
  min-height: 48px;
  padding-inline: 20px;
}

.location-panel__facts {
  padding: 21px 25px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.location-panel__facts div {
  display: grid;
  grid-template-columns: 98px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.location-panel__facts div:last-child {
  border-bottom: 0;
}

.location-panel__facts span {
  color: #f2bc6b;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.location-panel__facts strong {
  color: #fff;
  font-size: 0.84rem;
  line-height: 1.45;
}

.location-panel__visual {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient(circle at center, rgba(215, 149, 49, 0.2), transparent 60%);
}

.location-panel__visual span {
  color: #efb65f;
  font-family: var(--serif);
  font-size: 4.1rem;
  font-style: italic;
  line-height: 0.8;
}

.location-panel__visual small {
  color: #c9d6d0;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
}

.poster-details {
  grid-column: 1 / -1;
  grid-row: 5;
  padding-top: 3px;
}

.poster-details summary {
  cursor: pointer;
  color: var(--green-900);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.poster-details img {
  margin-top: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
}

/* =========================================================
   10. VALOR
   ========================================================= */

.value-section {
  position: relative;
  padding: var(--section-space) 0;
  overflow: hidden;
  overflow: clip;
  background: linear-gradient(135deg, #c88f39 0%, #d9aa5c 58%, #e8c481 100%);
}

.value-section::before {
  content: "";
  position: absolute;
  left: -12rem;
  bottom: -16rem;
  width: 38rem;
  aspect-ratio: 1;
  border: 1px solid rgba(6, 43, 32, 0.15);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(6, 43, 32, 0.045), 0 0 0 140px rgba(6, 43, 32, 0.025);
}

.value-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(40px, 6.5vw, 88px);
  align-items: center;
}

.value-copy .kicker,
.value-copy h2 {
  color: var(--green-950);
}

.value-copy .kicker::before {
  background: var(--green-950);
}

.value-copy > p:nth-of-type(2) {
  max-width: 35rem;
  margin: 21px 0 0;
  color: #4b3b20;
  font-size: 0.98rem;
  line-height: 1.66;
}

.value-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.value-proof span {
  padding: 8px 11px;
  border: 1px solid rgba(6, 43, 32, 0.18);
  border-radius: var(--pill);
  background: rgba(255, 255, 255, 0.19);
  color: var(--green-950);
  font-size: 0.73rem;
  font-weight: 800;
}

.value-comparison {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: 11px;
  padding: 13px;
  border: 1px solid rgba(6, 43, 32, 0.18);
  border-radius: 28px;
  background: rgba(255, 253, 248, 0.28);
  -webkit-backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.value-comparison__item {
  display: flex;
  flex-direction: column;
  min-height: 255px;
  padding: 24px 22px;
  border-radius: 20px;
  background: rgba(255, 253, 248, 0.52);
}

.value-comparison__item--zero {
  background: var(--green-950);
  color: #fff;
}

.value-comparison__item span {
  color: var(--green-950);
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.value-comparison__item--zero span {
  color: #f4c47d;
}

.value-comparison__item strong {
  display: block;
  margin-top: auto;
  color: var(--green-950);
  font-family: var(--serif);
  font-size: clamp(3.8rem, 5.7vw, 5.5rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.8;
  white-space: nowrap;
}

.value-comparison__item--zero strong {
  color: #fff;
}

.value-comparison__item small {
  display: block;
  margin-top: 17px;
  color: #4f5a54;
  font-size: 0.77rem;
  line-height: 1.45;
}

.value-comparison__item--zero small {
  color: #c2d0ca;
}

.value-comparison__arrow {
  display: grid;
  place-items: center;
  color: var(--green-950);
  font-family: var(--serif);
  font-size: 2.15rem;
}

.value-funding {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 132px minmax(250px, 0.7fr) 1fr;
  gap: 20px;
  align-items: center;
  padding-top: 23px;
  border-top: 1px solid rgba(6, 43, 32, 0.22);
}

.value-funding__label {
  color: var(--green-950);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.value-funding strong {
  color: var(--green-950);
  font-size: 0.88rem;
}

.value-funding p {
  margin: 0;
  color: #4b3b20;
  font-size: 0.83rem;
  line-height: 1.54;
}

/* =========================================================
   11. MODALIDADES
   ========================================================= */

.paths {
  padding: var(--section-space) 0;
  background:
    radial-gradient(circle at 8% 14%, rgba(10, 63, 47, 0.05), transparent 19rem),
    var(--paper);
}

.paths-layout {
  display: grid;
  gap: 41px;
}

.paths-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.6fr);
  gap: 28px 62px;
  align-items: end;
}

.paths-heading .kicker {
  grid-column: 1 / -1;
}

.paths-heading h2 {
  max-width: 12ch;
}

.paths-heading > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.66;
}

.path-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.path {
  display: flex;
  flex-direction: column;
  min-height: 450px;
  padding: 29px;
  border: 1px solid #c8d4cc;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 15px 42px rgba(10, 63, 47, 0.05);
}

.path--featured {
  border-color: var(--green-900);
  background: linear-gradient(180deg, #0a3f2f 0%, #073226 100%);
  color: #fff;
  box-shadow: 0 24px 66px rgba(10, 63, 47, 0.18);
}

.path-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.path-topline span {
  color: var(--amber-dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.path--featured .path-topline span {
  color: #f2bc6b;
}

.path-topline b {
  padding: 7px 10px;
  border: 1px solid #d2dbd5;
  border-radius: var(--pill);
  color: var(--green-900);
  font-size: 0.67rem;
}

.path--featured .path-topline b {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  color: #d8e4df;
}

.path h3 {
  margin: 18px 0 0;
  font-family: var(--serif);
  font-size: 3.25rem;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.path--featured h3 {
  color: #fff;
}

.path > p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.path--featured > p {
  color: #bfd0c8;
}

.path dl {
  margin: 24px 0 28px;
  border-top: 1px solid var(--line);
}

.path--featured dl {
  border-color: rgba(255, 255, 255, 0.14);
}

.path dl div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 18px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.path--featured dl div {
  border-color: rgba(255, 255, 255, 0.14);
}

.path dt {
  color: var(--amber-dark);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.path--featured dt {
  color: #f0b964;
}

.path dd {
  margin: 0;
  color: var(--green-950);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.45;
}

.path--featured dd {
  color: #fff;
}

.path .button {
  width: 100%;
  margin-top: auto;
}

.path--featured .button {
  background: var(--amber);
  color: var(--green-950);
}

.paths-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 18px;
  border: 1px solid #cad5cd;
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.48);
  color: var(--muted);
  font-size: 0.84rem;
}

.paths-note strong {
  color: var(--green-950);
}

/* =========================================================
   12. FAQ
   ========================================================= */

.faq {
  padding: var(--section-space) 0;
  background: #fff;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(290px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(44px, 7vw, 94px);
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: calc(var(--header-h) + 32px);
}

.faq-heading > p:nth-of-type(2) {
  max-width: 32rem;
  margin: 21px 0 20px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.66;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  list-style: none;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 34px;
  gap: 14px;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  color: var(--green-950);
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-number {
  color: var(--amber-dark);
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
}

.faq-list summary strong {
  font-size: 0.94rem;
  line-height: 1.36;
}

.faq-list summary i {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-style: normal;
  font-size: 1.05rem;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}

.faq-list details[open] summary i {
  transform: rotate(45deg);
  background: var(--green-900);
  color: #fff;
}

.faq-list details p {
  max-width: 700px;
  margin: 0;
  padding: 0 46px 21px 58px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.62;
}

/* =========================================================
   13. CTA Y FOOTER
   ========================================================= */

.final-cta {
  position: relative;
  padding: clamp(74px, 7.5vw, 108px) 0;
  overflow: hidden;
  overflow: clip;
  background: linear-gradient(135deg, #062b20 0%, #0a3f2f 62%, #11513d 100%);
}

.final-cta::before {
  content: "";
  position: absolute;
  right: -10rem;
  top: -14rem;
  width: 36rem;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.025), 0 0 0 140px rgba(215, 149, 49, 0.035);
}

.final-cta-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: clamp(44px, 7vw, 94px);
  align-items: center;
}

.final-cta-copy h2 {
  max-width: 12ch;
}

.final-cta-copy > p:last-child {
  max-width: 40rem;
  margin: 21px 0 0;
  color: #bfd0c8;
  font-size: 0.98rem;
  line-height: 1.66;
}

.final-cta-panel {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.19);
}

.final-cta-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.final-cta-facts div {
  padding: 13px 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.03);
}

.final-cta-facts strong {
  display: block;
  color: #fff;
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.final-cta-facts span {
  display: block;
  margin-top: 6px;
  color: #bdcdc6;
  font-size: 0.67rem;
  line-height: 1.35;
}

.final-cta-panel .button {
  width: 100%;
  margin-top: 18px;
}

.final-cta-panel > p {
  margin: 12px 0 0;
  color: #b8c8c1;
  font-size: 0.75rem;
  text-align: center;
  line-height: 1.48;
}

.site-footer {
  padding: 29px 0 calc(29px + env(safe-area-inset-bottom));
  background: #031f18;
  color: #aebfb7;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(270px, 0.62fr) minmax(260px, 1fr) auto;
  gap: 30px;
  align-items: center;
}

.footer-brand img {
  width: min(430px, 100%);
  padding: 10px;
  border-radius: 8px;
  background: #fff;
}

.footer-copy strong {
  display: block;
  color: #fff;
  font-size: 0.83rem;
}

.footer-copy p {
  margin: 7px 0 0;
  font-size: 0.77rem;
  line-height: 1.54;
}

.footer-links {
  display: grid;
  gap: 8px;
  justify-items: end;
}

.footer-links a {
  color: #fff;
  font-size: 0.77rem;
  font-weight: 800;
  text-decoration: none;
}

.footer-links a:hover {
  color: #f0b964;
}

.mobile-cta {
  display: none;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

:focus-visible {
  outline: 3px solid rgba(215, 149, 49, 0.72);
  outline-offset: 3px;
}

/* =========================================================
   RESPONSIVE — PORTÁTIL GRANDE / TABLET HORIZONTAL
   ========================================================= */

@media (max-width: 1180px) {
  :root {
    --shell: min(1120px, calc(100vw - 40px));
  }

  .desktop-nav {
    gap: 20px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
    gap: 36px;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 5vw, 4.8rem);
  }

  .hero-art__frame {
    height: min(62vh, 590px);
    min-height: 440px;
  }

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

  .program-layout,
  .faculty-layout,
  .audience-layout,
  .faq-layout {
    gap: 48px;
  }

  .workshop-layout {
    grid-template-columns: minmax(290px, 0.8fr) minmax(390px, 1.2fr);
    gap: 42px;
  }

  .location-panel {
    grid-template-columns: minmax(250px, 0.82fr) minmax(0, 1fr) 118px;
  }
}

/* =========================================================
   TABLET HORIZONTAL / TABLET GRANDE
   ========================================================= */

@media (max-width: 980px) {
  :root {
    --shell: min(920px, calc(100vw - 36px));
    --section-space: 78px;
  }

  .desktop-nav {
    display: none;
  }

  .brand {
    flex-basis: 430px;
  }

  .brand img {
    width: min(430px, 58vw);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 34px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero h1 {
    max-width: 780px;
    font-size: clamp(4.2rem, 9.2vw, 6.4rem);
  }

  .hero-lede {
    max-width: 680px;
  }

  .hero-art {
    width: 100%;
    max-width: 780px;
    margin-inline: auto;
  }

  .hero-art__frame {
    height: 520px;
    min-height: 0;
  }

  .hero-art__tag--top {
    left: 18px;
  }

  .hero-art__tag--bottom {
    right: 18px;
  }

  .section-heading,
  .practical-heading,
  .paths-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .practical-heading .kicker,
  .paths-heading .kicker {
    grid-column: auto;
  }

  .outcomes-grid,
  .hours-layout,
  .program-layout,
  .faculty-layout,
  .audience-layout,
  .faq-layout,
  .value-layout,
  .final-cta-layout {
    grid-template-columns: 1fr;
  }

  .program-intro,
  .faculty-heading,
  .audience-copy,
  .faq-heading {
    position: relative;
    top: auto;
  }

  .program-intro,
  .faculty-heading,
  .audience-copy,
  .faq-heading,
  .outcomes-intro,
  .hours-lead,
  .value-copy,
  .final-cta-copy {
    max-width: 760px;
  }

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

  .workshop-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .workshop-copy {
    max-width: 760px;
  }

  .workshop-art {
    max-width: 760px;
    width: 100%;
    margin-inline: auto;
  }

  .faculty-board article {
    grid-template-columns: 56px minmax(190px, 0.65fr) 1fr;
  }

  .value-comparison {
    max-width: 760px;
  }

  .value-funding {
    grid-template-columns: 130px minmax(220px, 0.7fr) 1fr;
  }

  .final-cta-panel {
    max-width: 720px;
  }
}

/* =========================================================
   TABLET VERTICAL
   ========================================================= */

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 32px, 760px);
    --header-h: 68px;
  }

  html {
    scroll-padding-top: 76px;
  }

  h2 {
    font-size: clamp(2.65rem, 8.8vw, 4.4rem);
  }

  .header-inner {
    gap: 16px;
  }

  .brand {
    flex-basis: auto;
    min-width: 0;
  }

  .brand img {
    width: min(395px, 62vw);
  }

  .header-cta {
    min-height: 40px;
    padding-inline: 15px;
    font-size: 0.78rem;
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    left: -38%;
    bottom: -22%;
    width: 120%;
    opacity: 0.72;
  }

  .hero::after {
    top: auto;
    right: -17rem;
    bottom: -12rem;
    width: 38rem;
    opacity: 0.42;
  }

  .hero-grid {
    gap: 24px;
    padding-block: 28px 58px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(3.35rem, 9.2vw, 4.5rem);
  }

  .hero h1 span,
  .hero h1 em {
    white-space: normal;
  }

  .hero-art__frame {
    height: 430px;
    border-radius: 30px 30px 86px 30px;
  }

  .hero-scroll {
    display: none;
  }

  .outcomes-panels {
    grid-template-columns: 1fr 1fr;
  }

  .workshop-sequence {
    grid-template-columns: 1fr;
  }

  .workshop-sequence article {
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid #cdd6cf;
  }

  .workshop-sequence article:last-child {
    border-bottom: 0;
  }

  .workshop-note {
    text-align: left;
  }

  .practical-layout {
    grid-template-columns: 1fr;
    row-gap: 30px;
  }

  .practical-heading {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .practical-heading .kicker,
  .practical-heading h2,
  .practical-heading > p:last-child,
  .calendar-groups,
  .location-panel,
  .poster-details {
    grid-column: 1;
    grid-row: auto;
  }

  .practical-heading h2 {
    max-width: 13ch;
    margin-top: 0;
    font-size: clamp(3.25rem, 7.5vw, 4.7rem);
  }

  .practical-heading > p:last-child {
    max-width: 52ch;
    margin-top: 0;
    padding: 15px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .calendar-group {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .calendar-group__month {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    padding: 14px 0;
  }

  .calendar-line,
  .calendar-line--short {
    grid-template-columns: repeat(2, 1fr);
    max-width: none;
  }

  .calendar-line article:nth-child(2n) {
    border-right: 0;
  }

  .calendar-line article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .calendar-line--short article {
    border-bottom: 0 !important;
  }

  .location-panel {
    grid-template-columns: 1fr;
  }

  .location-panel__facts {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
  }

  .location-panel__visual {
    display: none;
  }

  .path {
    min-height: 420px;
  }

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

  .footer-links {
    grid-column: 1 / -1;
    justify-items: start;
  }
}

/* =========================================================
   MÓVIL
   ========================================================= */

@media (max-width: 640px) {
  :root {
    --shell: min(100% - 28px, 600px);
    --header-h: 62px;
    --section-space: 66px;
  }

  html {
    scroll-padding-top: 68px;
  }

  body {
    padding-bottom: 88px;
  }

  h2 {
    font-size: clamp(2.45rem, 12vw, 3.8rem);
  }

  .section-heading {
    gap: 18px;
    margin-bottom: 32px;
  }

  .section-heading > p,
  .practical-heading > p:last-child,
  .paths-heading > p:last-child {
    font-size: 0.93rem;
  }

  .practical-heading h2 {
    max-width: 12ch;
    font-size: clamp(2.65rem, 12vw, 3.55rem);
  }

  .kicker {
    gap: 10px;
    font-size: 0.66rem;
    letter-spacing: 0.11em;
  }

  .kicker::before {
    width: 25px;
  }

  .button {
    min-height: 50px;
    padding-inline: 21px;
  }

  .site-header {
    background: rgba(252, 249, 242, 0.9);
  }

  .header-inner {
    gap: 12px;
  }

  .brand img {
    width: min(320px, 65vw);
  }

  .header-cta {
    min-height: 38px;
    padding-inline: 13px;
    font-size: 0.73rem;
  }

  .hero::before {
    left: -45%;
    bottom: -14%;
    width: 140%;
    opacity: 0.62;
  }

  .hero::after {
    right: -18rem;
    bottom: -14rem;
    width: 34rem;
    opacity: 0.32;
  }

  .hero-grid {
    gap: 22px;
    padding-block: 24px 44px;
  }

  .hero-copy::before {
    left: -18%;
    width: 70%;
  }

  .hero h1 {
    margin-top: 19px;
    font-size: clamp(3rem, 15vw, 4.3rem);
    line-height: 0.84;
  }

  .hero h1 span,
  .hero h1 em {
    white-space: normal;
  }

  .hero h1 em {
    margin-block: 9px 7px;
    font-size: 0.5em;
  }

  .hero-descriptor {
    margin-top: 18px;
    font-size: 0.93rem;
    line-height: 1.4;
  }

  .hero-lede {
    margin-top: 10px;
    font-size: 0.91rem;
    line-height: 1.58;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 13px;
    margin-top: 22px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .button-link {
    justify-content: center;
    min-height: 42px;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 20px;
    padding-top: 15px;
  }

  .hero-proof span {
    min-width: 0;
    padding-inline: 9px;
    font-size: 0.65rem;
    line-height: 1.35;
  }

  .hero-proof span:first-child {
    padding-left: 0;
  }

  .hero-proof span:last-child {
    padding-right: 0;
  }

  .hero-proof strong {
    font-size: 1.08rem;
  }

  .hero-art {
    padding: 0;
  }

  .hero-art::before {
    inset: -8% -8% -10%;
    filter: blur(14px);
  }

  .hero-art__frame {
    height: clamp(240px, 64vw, 340px);
    min-height: 0;
    border-radius: 24px 24px 64px 24px;
  }

  .hero-art__frame img {
    object-position: 52% 54%;
  }

  .hero-art__tag {
    max-width: calc(100% - 28px);
    padding: 9px 12px;
    font-size: 0.68rem;
    text-align: center;
    white-space: normal;
  }

  .hero-art__tag--top {
    top: 12px;
    left: 12px;
  }

  .hero-art__tag--bottom {
    right: 12px;
    bottom: 12px;
  }

  .hero-art__index {
    right: 14px;
    bottom: 9px;
    font-size: 2.8rem;
    opacity: 0.38;
  }



  .outcomes-panels {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .outcome-card {
    min-height: auto;
    padding: 21px 19px;
  }

  .outcomes-strip {
    grid-template-columns: 1fr 1fr;
  }

  .outcomes-strip div {
    padding: 15px 0;
    border-right: 0;
    border-bottom: 1px solid #d0d8d2;
  }

  .outcomes-strip div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .hours-visual {
    min-height: 330px;
    border-radius: 25px;
  }

  .hours-visual__ring {
    width: min(76%, 270px);
    box-shadow: 0 0 0 21px rgba(255, 255, 255, 0.018), 0 0 0 44px rgba(255, 255, 255, 0.011);
  }

  .hours-visual__core {
    width: 200px;
  }

  .hours-visual__core strong {
    font-size: 4.5rem;
  }

  .hours-floating {
    max-width: 145px;
    padding: 13px 13px 11px;
    border-radius: 17px;
  }

  .hours-floating strong {
    font-size: 2rem;
  }

  .hours-floating span {
    font-size: 0.7rem;
  }

  .hours-floating--left {
    left: 13px;
    bottom: 14px;
  }

  .hours-floating--right {
    right: 13px;
    top: 14px;
  }

  .hours-breakdown {
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .hours-card {
    min-height: auto;
    padding: 19px 17px;
  }

  .program-summary,
  .faculty-summary,
  .final-cta-facts {
    grid-template-columns: repeat(3, 1fr);
  }

  .program-summary div,
  .faculty-summary div,
  .final-cta-facts div {
    padding-inline: 9px;
  }

  .program-summary strong,
  .faculty-summary strong,
  .final-cta-facts strong {
    font-size: 1.45rem;
  }

  .module[open] {
    margin-inline: 0;
    padding-inline: 0;
    border-radius: 18px;
  }

  .module summary {
    grid-template-columns: 46px minmax(0, 1fr) 32px;
    gap: 11px;
    padding: 19px 3px 19px 0;
  }

  .module-number {
    font-size: 1.65rem;
  }

  .module-main strong {
    font-size: 0.9rem;
  }

  .module-main small {
    font-size: 0.6rem;
  }

  .module-main em {
    font-size: 0.72rem;
  }

  .module-meta {
    grid-column: 2;
    grid-row: 2;
    text-align: left;
  }

  .module-meta b,
  .module-meta small {
    display: inline;
  }

  .module-meta b {
    margin-right: 7px;
    font-size: 0.98rem;
  }

  .module-meta small {
    font-size: 0.67rem;
  }

  .module-icon {
    grid-column: 3;
    grid-row: 1 / 3;
    width: 31px;
    height: 31px;
  }

  .module-body {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 0 5px 21px 57px;
  }

  .module-body p {
    font-size: 0.84rem;
  }

  .module-body ul {
    justify-content: flex-start;
  }

  .workshop-art__frame {
    min-height: 370px;
    border-radius: 25px 25px 70px 25px;
  }

  .workshop-art__metric {
    left: 13px;
    bottom: 13px;
    padding: 13px 14px;
  }

  .workshop-art__metric strong {
    font-size: 2.2rem;
  }

  .workshop-art__index {
    right: 15px;
    top: 13px;
    font-size: 3.2rem;
  }

  .faculty-board article {
    grid-template-columns: 46px 1fr;
    gap: 13px;
    padding: 19px 0;
  }

  .faculty-avatar {
    width: 43px;
    height: 43px;
  }

  .faculty-focus {
    grid-column: 2;
    padding-left: 0;
    border-left: 0;
  }

  .faculty-focus span {
    font-size: 0.79rem;
  }

  .audience-map article {
    grid-template-columns: 43px 1fr;
    gap: 13px;
    padding: 21px 0;
  }

  .audience-map h3 {
    font-size: 1.38rem;
  }

  .audience-map p {
    font-size: 0.83rem;
  }

  .calendar-line article {
    padding: 18px 13px;
  }

  .calendar-line article::before {
    left: 13px;
  }

  .calendar-line strong {
    font-size: 1.62rem;
  }

  .location-panel__main {
    padding: 25px;
  }

  .location-panel__main h3 {
    font-size: 2.35rem;
  }

  .location-panel__facts {
    padding: 12px 25px 23px;
  }

  .location-panel__facts div {
    grid-template-columns: 88px 1fr;
    gap: 11px;
  }

  .value-comparison {
    grid-template-columns: 1fr;
    gap: 9px;
    padding: 11px;
    border-radius: 25px;
  }

  .value-comparison__arrow {
    height: 32px;
    transform: rotate(90deg);
  }

  .value-comparison__item {
    min-height: 215px;
    padding: 21px 19px;
  }

  .value-comparison__item strong {
    font-size: clamp(4rem, 20vw, 5.2rem);
  }

  .value-funding {
    grid-template-columns: 1fr;
    gap: 9px;
    padding-top: 21px;
  }

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

  .path {
    min-height: auto;
    padding: 26px;
  }

  .path h3 {
    font-size: 2.85rem;
  }

  .paths-note {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .faq-list summary {
    grid-template-columns: 38px minmax(0, 1fr) 31px;
    gap: 11px;
    padding: 19px 0;
  }

  .faq-list summary strong {
    font-size: 0.88rem;
  }

  .faq-list details p {
    padding: 0 0 21px 49px;
    font-size: 0.86rem;
  }

  .final-cta-panel {
    padding: 21px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 19px;
  }

  .footer-brand img {
    max-width: 390px;
  }

  .footer-links {
    grid-column: auto;
    justify-items: start;
  }

  .mobile-cta {
    position: fixed;
    z-index: 90;
    left: 9px;
    right: 9px;
    bottom: calc(9px + env(safe-area-inset-bottom));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 9px;
    padding: 8px 8px 8px 13px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 16px;
    background: rgba(6, 43, 32, 0.96);
    box-shadow: 0 15px 38px rgba(0, 0, 0, 0.24);
    color: #fff;
    transform: translateY(140%);
    transition: transform 0.35s var(--ease);
  }

  .mobile-cta.is-visible {
    transform: none;
  }

  .mobile-cta span {
    font-size: 0.64rem;
    line-height: 1.25;
    color: #bfd0c8;
  }

  .mobile-cta strong {
    display: block;
    color: #fff;
    font-size: 0.8rem;
  }

  .mobile-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 41px;
    padding: 0 13px;
    border-radius: var(--pill);
    background: var(--amber);
    color: var(--green-950);
    font-size: 0.73rem;
    font-weight: 800;
    text-decoration: none;
  }

  .mobile-cta[aria-hidden="true"] {
    visibility: hidden;
  }

  .mobile-cta[aria-hidden="false"] {
    visibility: visible;
  }
}


@media (max-width: 480px) {
  .header-inner {
    justify-content: flex-start;
  }

  .brand {
    width: 100%;
  }

  .brand img {
    width: min(100%, 340px);
  }

  .header-cta {
    display: none;
  }
}

/* =========================================================
   MÓVIL PEQUEÑO
   ========================================================= */

@media (max-width: 390px) {
  :root {
    --shell: calc(100vw - 24px);
  }

  .brand img {
    width: min(292px, 67vw);
  }

  .header-cta {
    padding-inline: 11px;
    font-size: 0.69rem;
  }

  .hero h1 {
    font-size: clamp(2.82rem, 15vw, 3.65rem);
  }

  .hero-descriptor {
    font-size: 0.87rem;
  }

  .hero-lede {
    font-size: 0.86rem;
  }

  .hero-proof span {
    padding-inline: 6px;
    font-size: 0.59rem;
  }

  .hero-proof strong {
    font-size: 0.98rem;
  }

  .hero-art__frame {
    height: 232px;
  }

  .outcomes-strip {
    grid-template-columns: 1fr;
  }

  .outcomes-strip div,
  .outcomes-strip div:nth-last-child(-n + 2) {
    border-bottom: 1px solid #d0d8d2;
  }

  .outcomes-strip div:last-child {
    border-bottom: 0;
  }

  .hours-visual {
    min-height: 305px;
  }

  .hours-visual__core {
    width: 176px;
  }

  .hours-visual__core strong {
    font-size: 3.95rem;
  }

  .hours-floating {
    max-width: 124px;
    padding: 11px 11px 9px;
  }

  .hours-floating strong {
    font-size: 1.72rem;
  }

  .hours-floating span {
    font-size: 0.62rem;
  }

  .program-summary span,
  .faculty-summary span,
  .final-cta-facts span {
    font-size: 0.61rem;
  }

  .program-summary strong,
  .faculty-summary strong,
  .final-cta-facts strong {
    font-size: 1.28rem;
  }

  .calendar-line article {
    padding: 17px 11px;
  }

  .calendar-line article::before {
    left: 11px;
  }

  .calendar-line strong {
    font-size: 1.48rem;
  }

  .location-panel__facts div {
    grid-template-columns: 78px 1fr;
  }

  .location-panel__facts strong {
    font-size: 0.78rem;
  }

  .path {
    padding: 23px;
  }

  .path h3 {
    font-size: 2.55rem;
  }

  .mobile-cta span {
    display: none;
  }

  .mobile-cta a {
    width: 100%;
  }
}

/* Pantallas bajas: evita que el hero fuerce una altura incómoda. */
@media (min-width: 981px) and (max-height: 760px) {
  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding-block: 28px 52px;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 5.8vw, 5.55rem);
  }

  .hero-art__frame {
    height: 570px;
    min-height: 430px;
  }
}

/* Dispositivos táctiles: no depender del hover. */
@media (hover: none) {
  .button:hover,
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media print {
  body {
    padding: 0;
    background: #fff;
    color: #000;
  }

  .site-header,
  .hero-scroll,
  .mobile-cta,
  .button {
    display: none !important;
  }

  .hero,
  .hours,
  .value-section,
  .final-cta {
    min-height: auto;
    background: #fff !important;
    color: #000 !important;
  }

  .section-dark h2,
  .section-ink h2,
  .final-cta h2,
  .hours-card h3,
  .final-cta-facts strong {
    color: #000 !important;
  }

  .hero-art,
  .workshop-art,
}

/* =========================================================
   07B. EQUIPO DOCENTE — ACORDEÓN VISUAL V6
   Escritorio: acordeón horizontal uniforme.
   Móvil: todas las fichas desplegadas.
   ========================================================= */

.faculty-showcase-head {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: end;
  margin-bottom: clamp(34px, 4.6vw, 58px);
}

.faculty-showcase-head h2 {
  max-width: 11.4ch;
}

.faculty-showcase-head > p {
  margin: 0 0 6px;
  color: #33443b;
  font-size: 1rem;
  line-height: 1.65;
}

.faculty-tiles {
  --tile-closed: clamp(56px, 4.7vw, 68px);
  position: relative;
  display: flex;
  align-items: stretch;
  width: 100%;
  min-height: clamp(560px, 45vw, 660px);
  overflow: hidden;
  border: 1px solid rgba(10, 63, 47, 0.14);
  border-radius: 32px;
  background: var(--green-950);
  box-shadow: 0 34px 86px rgba(6, 43, 32, 0.19);
  isolation: isolate;
}

.faculty-tiles::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  border-radius: inherit;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -90px 140px rgba(0, 0, 0, 0.18);
}

.faculty-tile {
  position: relative;
  flex: 0 0 var(--tile-closed);
  min-width: 0;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  background: #082f24;
  color: #fff;
  cursor: pointer;
  text-align: left;
  transition:
    flex-basis 0.62s var(--ease),
    filter 0.32s var(--ease),
    opacity 0.32s var(--ease);
}

.faculty-tile:last-child {
  border-right: 0;
}

.faculty-tile.is-active {
  flex-basis: calc(100% - (var(--tile-closed) * 6));
  cursor: default;
}

.faculty-tile__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--faculty-position, center);
  transform: scale(1.02);
  opacity: 0.56;
  filter: saturate(0.58) contrast(1.05) brightness(0.62);
  transition:
    transform 0.76s var(--ease),
    filter 0.45s var(--ease),
    opacity 0.45s var(--ease);
}

.faculty-tile.is-active .faculty-tile__image {
  transform: scale(1.01);
  opacity: 0.74;
  filter: saturate(0.88) contrast(1.04) brightness(0.78);
}

.faculty-tile__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
  linear-gradient(
    90deg,
    rgba(3, 31, 23, 0.54) 0%,
    rgba(3, 31, 23, 0.38) 38%,
    rgba(3, 31, 23, 0.18) 68%,
    rgba(3, 31, 23, 0.02) 100%
  ),
  linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.00),
    rgba(3, 31, 23, 0.16)
  );
  transition: background 0.42s var(--ease), opacity 0.42s var(--ease);
}

.faculty-tile:not(.is-active) .faculty-tile__shade {
  background:
    linear-gradient(180deg, rgba(3, 31, 23, 0.12), rgba(3, 31, 23, 0.84)),
    linear-gradient(90deg, rgba(3, 31, 23, 0.48), rgba(3, 31, 23, 0.22));
}

.faculty-tile__rail {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: clamp(34px, 5vw, 62px);
  display: grid;
  place-items: center;
  transform: translateX(-50%);
  pointer-events: none;
  transition: opacity 0.32s var(--ease), transform 0.45s var(--ease);
}

.faculty-tile__rail b {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: #fff;
  font-family: var(--condensed);
  font-size: clamp(1rem, 1.25vw, 1.25rem);
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.35);
}

.faculty-tile.is-active .faculty-tile__rail {
  opacity: 0;
  transform: translateX(-50%) translateY(20px);
}

.faculty-tile__topline {
  position: absolute;
  z-index: 3;
  top: clamp(28px, 3.4vw, 44px);
  left: clamp(30px, 5vw, 72px);
  display: inline-flex;
  align-items: flex-start;
  gap: 13px;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.36s var(--ease), transform 0.36s var(--ease);
}

.faculty-tile.is-active .faculty-tile__topline {
  opacity: 1;
  transform: none;
}

.faculty-tile__topline b {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.faculty-tile__topline span {
  display: grid;
  gap: 6px;
  justify-items: start;
}

.faculty-tile__topline small {
  color: var(--amber-light);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  line-height: 1;
  text-transform: uppercase;
}

.faculty-tile__topline i {
  width: max-content;
  max-width: min(320px, 44vw);
  padding: 7px 11px;
  border-radius: var(--pill);
  background: rgba(255, 255, 255, 0.13);
  color: #e8d5b8;
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.11em;
  line-height: 1;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.faculty-tile__content {
  position: absolute;
  z-index: 3;
  top: clamp(98px, 10vw, 132px);
  left: clamp(30px, 5vw, 72px);
  right: clamp(28px, 7vw, 116px);
  bottom: clamp(34px, 4.8vw, 66px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: min(690px, 66%);
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}

.faculty-tile.is-active .faculty-tile__content {
  opacity: 1;
  transform: none;
  transition-delay: 0.13s;
  pointer-events: auto;
}

.faculty-tile__content em {
  margin-bottom: 10px;
  color: var(--amber-light);
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.55vw, 1.52rem);
  font-style: italic;
  line-height: 1.08;
}

.faculty-tile__content strong {
  color: #fff;
  font-family: var(--condensed);
  font-size: clamp(3rem, 4.25vw, 4.8rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.88;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.26);
}

.faculty-tile__content small {
  margin-top: 12px;
  color: #b9ccc3;
  font-size: clamp(0.7rem, 0.82vw, 0.78rem);
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.faculty-tile__summary {
  max-width: 58ch;
  margin-top: clamp(16px, 2vw, 22px);
  color: #e2ebe7;
  font-family: var(--serif);
  font-size: clamp(1rem, 1.32vw, 1.28rem);
  font-style: italic;
  line-height: 1.42;
}

.faculty-tile__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: clamp(15px, 2vw, 22px);
}

.faculty-tile__tags i {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: var(--pill);
  background: rgba(255, 255, 255, 0.07);
  color: #cad9d2;
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faculty-tile__link {
  width: max-content;
  margin-top: clamp(16px, 2.2vw, 25px);
  color: #ffd28d;
  font-size: 0.82rem;
  font-weight: 900;
}

.faculty-tile:focus-visible {
  z-index: 10;
  outline: 3px solid rgba(239, 189, 114, 0.88);
  outline-offset: -5px;
}

.faculty-noscript {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.86rem;
}

@media (max-width: 1180px) {
  .faculty-tiles {
    --tile-closed: 58px;
    min-height: 590px;
  }

  .faculty-tile__content {
    max-width: 70%;
  }

  .faculty-tile__content strong {
    font-size: clamp(2.65rem, 4.8vw, 4.45rem);
  }
}

@media (max-width: 980px) {
  .faculty-showcase-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .faculty-showcase-head h2 {
    max-width: 12.5ch;
  }

  .faculty-tiles {
    --tile-closed: 50px;
    min-height: 560px;
    border-radius: 28px;
  }

  .faculty-tile__topline,
  .faculty-tile__content {
    left: 28px;
  }

  .faculty-tile__content {
    top: 116px;
    right: 24px;
    bottom: 34px;
    max-width: 78%;
  }

  .faculty-tile__content strong {
    font-size: clamp(2.42rem, 6.2vw, 4rem);
  }

  .faculty-tile__summary {
    max-width: 48ch;
    font-size: 1rem;
  }
}

@media (max-width: 760px) {
  .faculty-showcase-head {
    margin-bottom: 26px;
  }

  .faculty-showcase-head h2 {
    max-width: none;
  }

  .faculty-tiles {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    min-height: 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .faculty-tiles::before {
    display: none;
  }

  .faculty-tile,
  .faculty-tile.is-active,
  .faculty-tile:not(.is-active) {
    display: block;
    min-height: clamp(430px, 112vw, 560px);
    flex-basis: auto;
    border: 1px solid rgba(10, 63, 47, 0.14);
    border-radius: 24px;
    box-shadow: 0 16px 38px rgba(6, 43, 32, 0.08);
    cursor: default;
  }

  .faculty-tile__image,
  .faculty-tile.is-active .faculty-tile__image,
  .faculty-tile:not(.is-active) .faculty-tile__image {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: var(--faculty-position, center);
    transform: none;
    opacity: 0.7;
    filter: saturate(0.74) contrast(1.04) brightness(0.66);
  }

  .faculty-tile__shade,
  .faculty-tile:not(.is-active) .faculty-tile__shade {
    background:
      linear-gradient(180deg, rgba(3, 31, 23, 0.18) 0%, rgba(3, 31, 23, 0.78) 50%, rgba(3, 31, 23, 0.96) 100%),
      linear-gradient(90deg, rgba(3, 31, 23, 0.74), rgba(3, 31, 23, 0.42));
  }

  .faculty-tile__rail {
    display: none;
  }

  .faculty-tile__topline,
  .faculty-tile.is-active .faculty-tile__topline {
    top: 20px;
    left: 20px;
    right: 20px;
    opacity: 1;
    transform: none;
  }

  .faculty-tile__topline i {
    max-width: calc(100vw - 104px);
  }

  .faculty-tile__content,
  .faculty-tile.is-active .faculty-tile__content {
    top: 104px;
    left: 20px;
    right: 20px;
    bottom: 24px;
    max-width: none;
    justify-content: end;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .faculty-tile__content em {
    font-size: clamp(1.08rem, 5.2vw, 1.45rem);
  }

  .faculty-tile__content strong {
    font-size: clamp(2.45rem, 12.5vw, 4rem);
  }

  .faculty-tile__summary {
    max-width: none;
    margin-top: 16px;
    font-size: 1rem;
    line-height: 1.43;
  }

  .faculty-tile__tags {
    gap: 7px;
    margin-top: 16px;
  }

  .faculty-tile__tags i {
    font-size: 0.62rem;
  }

  .faculty-tile__link {
    margin-top: 18px;
  }
}

@media (max-width: 480px) {
  .faculty-tile,
  .faculty-tile.is-active,
  .faculty-tile:not(.is-active) {
    min-height: 500px;
  }

  .faculty-tile__content strong {
    font-size: clamp(2.16rem, 11.2vw, 3.25rem);
  }

  .faculty-tile__summary {
    font-size: 0.94rem;
  }
}

@media (max-width: 390px) {
  .faculty-tile,
  .faculty-tile.is-active,
  .faculty-tile:not(.is-active) {
    min-height: 540px;
  }

  .faculty-tile__content strong {
    font-size: clamp(2rem, 10.5vw, 3rem);
  }
}
