/* ============================================================
   Bridges for Dialogue — shared stylesheet
   Sistema base: claro unico · azul = accion · dorado = identidad
   ============================================================ */

:root {
  --bg: #FAFAF8;
  --bg-alt: #F2F2EF;
  --border: #E5E5E2;
  --text: #111111;
  --text-2: #3A4A4F;

  --blue: #1C2E4A;
  --blue-hover: #2C4A73;
  --gold: #B8965A;
  --gold-dark: #7A6A5A;
  --sand: #DEB992;
  --sand-text: #5C4326;
  --ink: #051622;
  --teal: #1BA098;
  --teal-dark: #0D7068;

  --fs-label: 0.8125rem;
  --fs-small: 0.9375rem;
  --fs-body: 1.0625rem;
  --fs-lead: 1.3125rem;
  --fs-h3: 1.75rem;
  --fs-h2: clamp(2.25rem, 4.5vw, 3.25rem);
  --fs-hero: clamp(3.25rem, 7.5vw, 5.625rem);

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", "Helvetica Neue", sans-serif;
  --jp: "Noto Serif JP", serif;

  --section-pad: 7rem;
  --container: 1140px;
  --measure: 620px;
}

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

html {
  scroll-behavior: smooth;
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.7;
}

section {
  scroll-margin-top: 90px;
}

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

a {
  color: var(--blue);
  text-decoration: none;
  transition: color 0.25s, background 0.25s, border-color 0.25s, transform 0.25s;
}

a:hover {
  color: var(--blue-hover);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

.narrow {
  max-width: 860px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 200;
  transform: translateY(-150%);
  background: var(--ink);
  color: #FFFFFF;
  padding: 0.65rem 0.9rem;
}

.skip-link:focus {
  transform: translateY(0);
}

/* ============================================================
   Piezas tipograficas
   ============================================================ */

.label,
.eyebrow,
.card-kicker {
  display: block;
  margin-bottom: 1.25rem;
  color: var(--gold-dark);
  font-size: var(--fs-label);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section-title {
  margin-bottom: 1.5rem;
  font-family: var(--serif);
  font-size: var(--fs-h2);
  font-weight: 400;
  line-height: 1.1;
}

.section-title em {
  color: var(--blue);
  font-style: italic;
}

.lead {
  max-width: var(--measure);
  color: var(--text-2);
  font-size: var(--fs-lead);
  font-weight: 300;
}

.small {
  color: var(--text-2);
  font-size: var(--fs-small);
}

.gold-rule {
  width: 64px;
  height: 1px;
  margin: 0 0 2.5rem;
  border: 0;
  background: var(--gold);
}

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

h3 {
  font-family: var(--serif);
  font-size: var(--fs-h3);
  font-weight: 500;
  line-height: 1.15;
}

.btn,
.button {
  display: inline-block;
  width: fit-content;
  padding: 0.95rem 2rem;
  border: 1px solid var(--blue);
  color: var(--blue);
  font-family: var(--sans);
  font-size: var(--fs-small);
  letter-spacing: 0.08em;
  line-height: 1.1;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.btn-primary {
  background: var(--blue);
  color: #FFFFFF;
}

.btn-primary:hover {
  background: var(--blue-hover);
  border-color: var(--blue-hover);
  color: #FFFFFF;
}

.btn-ghost,
.button-light,
.button-outline,
.button-dark {
  background: transparent;
  color: var(--blue);
}

.btn-ghost:hover,
.button:hover {
  background: var(--blue);
  color: #FFFFFF;
}

.btn-light {
  background: #FFFFFF;
  border-color: #FFFFFF;
  color: var(--blue);
}

.btn-light:hover {
  background: transparent;
  color: #FFFFFF;
}

.btn::after,
.button::after,
.text-link::after {
  content: "→";
  margin-left: 0.45rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--gold);
  color: var(--blue);
  font-size: var(--fs-small);
  letter-spacing: 0.04em;
}

/* ============================================================
   Navegacion
   ============================================================ */

#nav-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 248, 0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.nav-inner {
  max-width: var(--container);
  height: 72px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-logo {
  color: var(--text);
  font-family: var(--serif);
  font-size: var(--fs-h3);
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.nav-logo span {
  color: var(--gold-dark);
  font-style: italic;
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  list-style: none;
}

.nav-links > li {
  position: relative;
}

.nav-links a {
  display: inline-block;
  padding: 0.5rem 0;
  color: var(--text-2);
  font-size: var(--fs-small);
  letter-spacing: 0.06em;
}

.nav-links a:hover {
  color: var(--blue);
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  min-width: 220px;
  padding: 1.15rem 1.35rem;
  transform: translateX(-50%);
  background: var(--bg);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}

.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
}

.nav-dropdown a {
  display: block;
  padding: 0.35rem 0;
  color: var(--text);
  white-space: nowrap;
}

.nav-dropdown a:hover {
  padding-left: 0.35rem;
  color: var(--blue);
}

.nav-links a.nav-cta {
  padding: 0.45rem 1.1rem;
  background: var(--blue);
  color: #FFFFFF;
}

.nav-links a.nav-cta:hover {
  background: var(--blue-hover);
  color: #FFFFFF;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  cursor: pointer;
}

.nav-hamburger span {
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.25s, opacity 0.25s;
}

.nav-mobile {
  display: none;
}

/* ============================================================
   Hero
   ============================================================ */

.hero {
  position: relative;
  overflow: hidden;
  min-height: auto;
  padding: clamp(5rem, 10vw, 8rem) 0 clamp(4rem, 8vw, 6rem);
  background: var(--bg);
}

.hero-video,
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image {
  display: block;
  object-position: center;
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

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

.hero-media {
  position: relative;
  min-height: clamp(360px, 58vw, 620px);
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--gold);
  background: var(--ink);
}

.hero-tagline {
  margin-bottom: 2rem;
  color: var(--gold-dark);
  font-size: var(--fs-label);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-title {
  max-width: 980px;
  margin-bottom: 1.75rem;
  color: var(--text);
  font-family: var(--serif);
  font-size: clamp(4.2rem, 9vw, 8.8rem);
  font-weight: 400;
  line-height: 0.94;
}

.hero-text {
  max-width: var(--measure);
  margin-bottom: 3rem;
  color: var(--text-2);
  font-size: var(--fs-lead);
  font-weight: 300;
}

.hero-text-editorial {
  max-width: 620px;
  padding-top: 1.25rem;
  border-top: 1px solid var(--gold);
}

.hero-solid {
  min-height: min(760px, calc(100vh - 88px));
  display: grid;
  align-items: center;
  background: var(--blue);
  color: #FFFFFF;
}

.hero-solid .hero-content {
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
}

.hero-solid .hero-copy {
  max-width: 1060px;
}

.hero-solid .hero-tagline {
  color: var(--sand);
}

.hero-solid .hero-title {
  max-width: 1120px;
  color: #FFFFFF;
}

.hero-solid .hero-text {
  color: rgba(255, 255, 255, 0.78);
}

.hero-solid .hero-text-editorial {
  border-top-color: rgba(184, 150, 90, 0.72);
}

.hero-context {
  max-width: 900px;
  margin: 0 0 clamp(1.4rem, 3vw, 2.25rem);
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.98rem, 1.35vw, 1.14rem);
  line-height: 1.7;
}

.hero-solid .btn-ghost {
  border-color: rgba(255, 255, 255, 0.62);
  color: #FFFFFF;
}

.hero-solid .btn-ghost:hover {
  background: #FFFFFF;
  border-color: #FFFFFF;
  color: var(--blue);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.home-pathways {
  background: #FFFFFF;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pathway-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.pathway-list a {
  min-height: 180px;
  padding: 1.6rem 2rem 1.6rem 0;
  border-right: 1px solid var(--border);
  color: var(--blue);
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.4vw, 2.35rem);
  font-weight: 500;
  line-height: 1.12;
}

.pathway-list a + a {
  padding-left: 2rem;
}

.pathway-list a:last-child {
  border-right: 0;
}

.pathway-list span {
  display: block;
  margin-bottom: 1.8rem;
  color: var(--gold-dark);
  font-family: var(--sans);
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pathway-list a:hover {
  color: var(--gold-dark);
}

/* ============================================================
   Secciones home
   ============================================================ */

.section {
  position: relative;
  overflow: hidden;
  padding: var(--section-pad) 0;
}

.section-alt,
.belief-section,
.story-section,
.approach-section {
  background: var(--bg-alt);
}

.belief-section {
  padding: var(--section-pad) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.belief-context {
  max-width: var(--measure);
  margin-bottom: 2.5rem;
  color: var(--text-2);
  font-size: var(--fs-lead);
  font-weight: 300;
}

.belief-title {
  max-width: 980px;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  font-weight: 400;
  line-height: 1.1;
}

.belief-lines {
  max-width: var(--measure);
  margin-top: 2rem;
  color: var(--text-2);
  font-size: var(--fs-lead);
  font-weight: 300;
}

.belief-lines p + p {
  margin-top: 0.25rem;
}

.section-head {
  position: relative;
  z-index: 1;
  margin-bottom: 4rem;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 900px) 1fr;
  gap: 2rem;
}

.feature-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 3rem;
  align-items: start;
  border-top: 1px solid var(--gold);
  padding-top: 1.5rem;
}

.latest-section {
  background: var(--bg);
}

.latest-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.82fr 0.82fr;
  gap: 0;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--border);
}

.latest-item {
  min-height: 100%;
  border-right: 1px solid var(--border);
}

.latest-item:last-child {
  border-right: 0;
}

.latest-item a {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.5rem 1.5rem 1.5rem 0;
  color: var(--text);
}

.latest-item + .latest-item a {
  padding-left: 1.5rem;
}

.latest-item img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  margin-bottom: 1.5rem;
  filter: saturate(0.92);
}

.latest-item span {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--gold-dark);
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.latest-item h3 {
  margin-bottom: 0.75rem;
  color: var(--blue);
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.7vw, 2.7rem);
  font-weight: 500;
  line-height: 1.08;
}

.latest-item p {
  color: var(--text-2);
  font-size: var(--fs-small);
}

.latest-item a:hover h3 {
  color: var(--gold-dark);
}

.home-latest-section {
  background: var(--bg);
}

.home-latest-list {
  display: grid;
  border-top: 1px solid var(--gold);
}

.home-latest-item {
  display: grid;
  grid-template-columns: minmax(84px, 112px) minmax(0, 1fr) minmax(180px, 0.34fr);
  gap: clamp(1.25rem, 3vw, 2.25rem);
  align-items: start;
  padding: 1.45rem 0;
  border-bottom: 1px solid var(--border);
}

.home-latest-thumb {
  margin: 0;
}

.home-latest-thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 3px;
  filter: saturate(0.92);
}

.home-latest-thumb-top img {
  object-position: top;
}

.home-latest-copy {
  display: grid;
  gap: 0.65rem;
}

.home-latest-item h3 {
  margin: 0;
  color: var(--blue);
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.6vw, 2.35rem);
  font-weight: 500;
  line-height: 1.08;
}

.home-latest-item p {
  margin: 0;
  color: var(--text-2);
}

.home-latest-meta {
  color: var(--gold-dark) !important;
  font-size: var(--fs-small);
  letter-spacing: 0.02em;
}

.feature-card {
  display: grid;
  gap: 1.5rem;
}

.feature-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--gold);
  padding: 8px;
  background: var(--bg);
  box-sizing: border-box;
  filter: saturate(0.9);
}

.compact-card img {
  aspect-ratio: 4 / 3;
  object-position: center top;
}

.card-body,
.journal-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.card-body p,
.practice-card p,
.story-copy p,
.journal-copy p,
.approach-panel p {
  color: var(--text-2);
}

.card-body .text-link,
.practice-card .text-link {
  margin-top: auto;
}

.section-more-link {
  margin-top: 2rem;
}

.quote-section {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4rem;
}

.quote-grid blockquote {
  margin: 0;
  padding: 0 0 0 2rem;
  background: transparent;
  border-left: 2px solid var(--gold);
  border-radius: 0;
  box-shadow: none;
}

.quote-grid blockquote p {
  max-width: 32ch;
  color: var(--blue);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 400;
  line-height: 1.18;
}

.quote-grid blockquote footer {
  margin-top: 1.25rem;
  color: var(--text-2);
  font-family: var(--sans);
  font-size: var(--fs-small);
}

.practice-section {
  background: var(--bg);
}

.practice-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--gold);
}

.practice-card {
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 1.5rem 2rem 0 0;
  border-right: 1px solid var(--border);
}

.practice-card + .practice-card {
  padding-left: 2rem;
}

.practice-card:last-child {
  border-right: 0;
}

.practice-number {
  display: block;
  margin-bottom: 3rem;
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: var(--fs-h3);
  line-height: 1;
}

.story-section,
.approach-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: 5rem;
  align-items: start;
}

.story-media {
  overflow: hidden;
}

.story-media img {
  width: 100%;
  height: min(680px, 68vh);
  min-height: 420px;
  object-fit: cover;
  object-position: center 30%;
  border: 1px solid var(--gold);
  padding: 8px;
  background: var(--bg);
  filter: saturate(0.88);
}

.story-copy .lead {
  margin-bottom: 1.5rem;
  color: var(--text);
  font-family: var(--serif);
  font-size: var(--fs-h3);
  font-weight: 400;
  line-height: 1.2;
}

.journal-section {
  background: var(--bg);
}

.journal-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: 4rem;
  align-items: start;
}

.journal-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.85fr) minmax(0, 1.15fr);
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gold);
}

.journal-format {
  color: var(--gold-dark);
  font-size: var(--fs-small);
  letter-spacing: 0.06em;
}

.journal-card img {
  width: 100%;
  aspect-ratio: 686 / 762;
  object-fit: contain;
  border: 1px solid var(--gold);
  padding: 8px;
  background: var(--bg);
}

.approach-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 5rem;
  align-items: end;
}

.approach-panel .btn {
  align-self: end;
}

.founders-mention {
  background: var(--bg);
}

.founders-mention .container {
  max-width: 820px;
}

.founders-mention p {
  margin-bottom: 1.5rem;
  color: var(--text-2);
  font-family: var(--serif);
  font-size: var(--fs-h3);
  font-weight: 400;
  line-height: 1.25;
}

.about-bridges-section {
  background: var(--bg);
}

.about-bridges-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--gold);
}

.about-bridges-grid article {
  min-height: 360px;
  padding: 2.2rem 3rem 2.4rem 0;
  border-right: 1px solid var(--border);
}

.about-bridges-grid article + article {
  padding-left: 3rem;
}

.about-bridges-grid article:last-child {
  border-right: 0;
}

.about-bridges-grid h2 {
  margin-bottom: 1rem;
  color: var(--blue);
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 500;
  line-height: 1.08;
}

.about-bridges-grid p {
  max-width: 60ch;
  margin-bottom: 1.35rem;
  color: var(--text-2);
}

.collaborate-form-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.connect-opening {
  border-bottom: 1px solid var(--border);
}

.connect-context-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 2.5rem;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--border);
}

.connect-context-list article {
  min-height: 190px;
  padding: clamp(1.25rem, 3vw, 1.8rem);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #FFFFFF;
}

.connect-context-list article:nth-child(2n) {
  border-right: 0;
}

.connect-context-list article:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.connect-context-list h3 {
  margin: 0 0 0.85rem;
  color: var(--blue);
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  font-weight: 500;
  line-height: 1.12;
}

.connect-context-list p {
  margin: 0;
  color: var(--text-2);
  font-size: var(--fs-small);
  line-height: 1.65;
}

.connect-context-list-compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 1.75rem;
}

.connect-context-list-compact article,
.connect-context-list-compact article:nth-child(2n),
.connect-context-list-compact article:nth-last-child(-n + 2) {
  min-height: 0;
  border-right: 1px solid var(--border);
  border-bottom: 0;
}

.connect-context-list-compact article:last-child {
  border-right: 0;
}

.connect-context-list-compact h3 {
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
}

.collaborate-form-grid > div p {
  max-width: 58ch;
  color: var(--text-2);
}

.collaborate-form {
  display: grid;
  gap: 1.35rem;
  padding: clamp(1.75rem, 4vw, 3.25rem);
  background: #FFFFFF;
  border: 1px solid var(--border);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 1.75rem);
}

.collaborate-form label,
.collaborate-form legend {
  color: var(--blue);
  font-size: var(--fs-small);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.collaborate-form input,
.collaborate-form select,
.collaborate-form textarea {
  width: 100%;
  margin-top: 0.45rem;
  padding: 0.85rem 0;
  border: 0;
  border-bottom: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  font: inherit;
}

.collaborate-form select {
  border-radius: 0;
  appearance: none;
}

.collaborate-form textarea {
  min-height: 10rem;
  resize: vertical;
}

.collaborate-form input:focus,
.collaborate-form select:focus,
.collaborate-form textarea:focus {
  outline: 0;
  border-color: var(--blue);
}

.collaborate-form textarea::placeholder {
  color: rgba(58, 74, 79, 0.68);
}

.collaborate-form fieldset {
  display: grid;
  gap: 0.65rem;
  margin: 0.35rem 0 0;
  padding: 1rem 0 0;
  border: 0;
  border-top: 1px solid var(--gold);
}

.collaborate-form fieldset label {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  color: var(--text-2);
  font-weight: 400;
  letter-spacing: 0;
}

.collaborate-form input[type="radio"],
.collaborate-form input[type="checkbox"] {
  width: auto;
  margin-top: 0.2rem;
}

.collaborate-contact-intro {
  position: sticky;
  top: 104px;
}

.contact-card {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: 1.25rem;
  border-top: 1px solid var(--gold);
}

.contact-card p {
  margin: 0 0 0.8rem;
}

.press-page {
  background: var(--bg);
}

.press-intro-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
  margin-bottom: clamp(3rem, 7vw, 5.5rem);
}

.press-intro-grid h2 {
  max-width: 11ch;
  margin: 0 0 1.15rem;
  color: var(--blue);
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 500;
  line-height: 1.02;
}

.press-intro-grid p:not(.label),
.press-resource-panel p:not(.label) {
  max-width: 62ch;
  color: var(--text-2);
}

.press-resource-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--gold);
}

.press-resource-panel article {
  min-height: 260px;
  padding: 1.75rem 1.75rem 2rem 0;
  border-right: 1px solid var(--border);
}

.press-resource-panel article + article {
  padding-left: 1.75rem;
}

.press-resource-panel article:last-child {
  border-right: 0;
}

.press-resource-panel h3 {
  margin: 0 0 0.8rem;
  color: var(--text);
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 500;
  line-height: 1.08;
}

.press-resource-panel .text-link {
  display: inline-block;
  margin: 1rem 1rem 0 0;
}

.press-archive {
  display: grid;
  gap: clamp(2.75rem, 6vw, 4.5rem);
}

.press-year {
  border-top: 1px solid var(--gold);
}

.press-year summary {
  display: grid;
  grid-template-columns: minmax(90px, 0.22fr) minmax(0, 1fr) auto;
  gap: clamp(1rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(1.1rem, 3vw, 1.6rem) 0;
  color: var(--gold-dark);
  cursor: pointer;
  list-style: none;
}

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

.press-year summary span:first-child {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 4.75rem);
  font-weight: 500;
  line-height: 0.95;
}

.press-year-count {
  color: var(--text-2);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.press-year summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid var(--gold);
  color: var(--blue);
  font-family: var(--serif);
  font-size: 1.8rem;
  line-height: 1;
}

.press-year[open] summary::after {
  content: "−";
}

.press-list {
  display: grid;
  gap: 0;
}

.press-item {
  display: grid;
  gap: 0.65rem;
  padding: clamp(1.35rem, 3vw, 2rem) 0;
  border-bottom: 1px solid var(--border);
}

.press-meta {
  margin: 0;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
}

.press-item h3 {
  max-width: 760px;
  margin: 0;
  color: var(--blue);
  font-family: var(--serif);
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  font-weight: 500;
  line-height: 1.08;
}

.press-item p:not(.press-meta) {
  max-width: 760px;
  margin: 0;
  color: var(--text-2);
}

.press-item-with-media {
  grid-template-columns: minmax(0, 1fr) minmax(120px, 180px);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: start;
}

.press-item-media {
  display: block;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #FFFFFF;
}

.press-item-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.press-item-media-contain img {
  object-fit: contain;
  padding: 0.35rem;
}

.press-item-media:hover img {
  transform: scale(1.03);
}

.press-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  margin-top: 0.35rem;
}

.press-source,
.press-action {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.32rem 0.72rem;
  border: 1px solid var(--border);
  color: var(--text-2);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.press-action.is-pending {
  border-color: rgba(184, 150, 90, 0.42);
  color: var(--gold-dark);
}

.press-back-link {
  margin-top: clamp(2.5rem, 6vw, 4rem);
  padding-top: 1.25rem;
  border-top: 1px solid var(--gold);
}

.home-evidence-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--border);
}

.home-evidence-grid article {
  min-height: 250px;
  padding: clamp(1.4rem, 3vw, 2.2rem) clamp(1rem, 2.5vw, 1.75rem);
  border-right: 1px solid var(--border);
}

.home-evidence-grid article:last-child {
  border-right: 0;
}

.home-evidence-grid strong {
  display: flex;
  align-items: flex-end;
  min-height: clamp(2.66rem, 5.7vw, 4.94rem);
  margin-bottom: 1rem;
  color: var(--blue);
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 500;
  line-height: 0.95;
}

.home-evidence-grid .evidence-word {
  font-size: clamp(2rem, 3.2vw, 3.15rem);
  line-height: 1;
  overflow-wrap: anywhere;
}

.home-evidence-grid .evidence-word-long {
  font-size: clamp(1.65rem, 2.55vw, 2.55rem);
  white-space: nowrap;
}

.home-evidence-grid span {
  display: block;
  color: var(--text-2);
  font-size: var(--fs-small);
  line-height: 1.55;
}

.home-now {
  border-bottom: 1px solid var(--border);
}

.home-now-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--border);
}

.now-card {
  display: grid;
  align-content: start;
  gap: 0.85rem;
  min-height: 430px;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border-right: 1px solid var(--border);
}

.now-card:last-child {
  border-right: 0;
}

.now-card-media {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin: 0 0 0.25rem;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--border);
}

.now-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.now-card-media-top img {
  object-position: center top;
}

.now-card-media-contain img {
  object-fit: contain;
  padding: 0.45rem;
  background: #ffffff;
}

.now-card-type {
  margin: 0;
  color: var(--gold-dark);
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.now-card h3 {
  margin: 0;
  color: var(--blue);
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.5vw, 2.25rem);
  font-weight: 500;
  line-height: 1.08;
}

.now-card p:not(.now-card-type) {
  margin: 0;
  color: var(--text-2);
  font-size: var(--fs-small);
  line-height: 1.55;
}

.now-card .text-link {
  align-self: end;
  margin-top: 0.5rem;
}

.home-editorial-section,
.home-difference-section,
.home-founders-section {
  border-bottom: 1px solid var(--border);
}

.home-difference-section,
.people-profile-alt {
  background: var(--bg-alt);
}

.home-editorial-grid,
.people-story-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: start;
}

.home-editorial-copy {
  max-width: 720px;
}

.home-editorial-copy > p {
  color: var(--text-2);
  font-size: clamp(1.05rem, 1.35vw, 1.18rem);
  line-height: 1.75;
}

.home-editorial-copy > p + p {
  margin-top: 1.15rem;
}

.home-editorial-copy blockquote {
  margin: 2rem 0 0;
}

.home-offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--border);
}

.home-offer-grid article {
  padding: clamp(1.5rem, 3vw, 2.4rem);
  border-right: 1px solid var(--border);
}

.home-offer-grid article:last-child {
  border-right: 0;
}

.home-offer-number {
  margin-bottom: 2rem;
  color: var(--gold-dark);
  font-size: var(--fs-label);
}

.home-offer-grid h3 {
  margin-bottom: 1rem;
  color: var(--blue);
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.5vw, 2.2rem);
  font-weight: 500;
  line-height: 1.12;
}

.home-offer-grid article > p:not(.home-offer-number) {
  color: var(--text-2);
  line-height: 1.65;
}

.home-offer-examples {
  margin-top: 1.5rem;
  color: var(--gold-dark) !important;
  font-size: var(--fs-small);
}

.home-section-link {
  margin-top: 1.75rem;
  text-align: right;
}

.people-intro {
  border-bottom: 1px solid var(--border);
}

.people-profile header {
  position: sticky;
  top: 110px;
}

.people-profile h2 {
  margin: 0.65rem 0 0.8rem;
  color: var(--blue);
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 400;
  line-height: 0.98;
}

.people-role {
  max-width: 30ch;
  color: var(--gold-dark);
  line-height: 1.5;
}

.people-portrait {
  width: min(100%, 310px);
  aspect-ratio: 4 / 5;
  margin: 0 0 1.75rem;
  overflow: hidden;
  border-top: 2px solid var(--gold);
  background: var(--paper);
}

.people-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.people-story-copy {
  max-width: 730px;
}

.people-story-copy p {
  color: var(--text-2);
  line-height: 1.75;
}

.people-story-copy p + p {
  margin-top: 1.2rem;
}

.people-story-copy .people-opening {
  color: var(--blue);
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.8vw, 2.35rem);
  line-height: 1.25;
}

@media (max-width: 860px) {
  .home-editorial-grid,
  .people-story-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .home-offer-grid {
    grid-template-columns: 1fr;
  }

  .home-offer-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .home-offer-grid article:last-child {
    border-bottom: 0;
  }

  .people-profile header {
    position: static;
  }
}

.live-feature-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.live-feature-media {
  margin: 0;
}

.live-feature-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--gold);
  padding: 8px;
  background: #FFFFFF;
}

.live-feature-copy {
  max-width: 620px;
}

.live-feature-copy p:not(.label):not(.small) {
  margin-bottom: 1.25rem;
  color: var(--text-2);
  font-size: var(--fs-lead);
  font-weight: 300;
}

.live-format-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--border);
}

.live-format-grid article {
  display: grid;
  gap: 0.85rem;
  padding: clamp(1.4rem, 3vw, 2rem);
  border-right: 1px solid var(--border);
  background: #FFFFFF;
}

.live-format-grid article:last-child {
  border-right: 0;
}

.live-format-grid span {
  color: var(--gold-dark);
  font-size: var(--fs-label);
  letter-spacing: 0.16em;
}

.live-format-grid p {
  color: var(--text-2);
  font-size: var(--fs-small);
}

.live-session-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.live-session-card {
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--border);
  background: #FFFFFF;
}

.live-session-card figure {
  margin: 0;
  overflow: hidden;
  background: var(--bg-alt);
}

.live-session-card figure img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.live-session-card figure img.image-position-top {
  object-position: center top;
}

.live-session-card figure img.live-session-photo-top {
  object-position: center top;
}

.live-session-card > div {
  display: grid;
  gap: 0.85rem;
  align-content: start;
  padding: 1.35rem;
}

.live-session-state {
  margin: 0;
  color: var(--gold-dark);
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.live-session-card h3 {
  margin: 0;
  color: var(--blue);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  font-weight: 500;
  line-height: 1.08;
}

.live-session-card p:not(.live-session-state) {
  margin: 0;
  color: var(--text-2);
  font-size: var(--fs-small);
  line-height: 1.55;
}

.live-session-cta {
  display: inline-flex;
  width: fit-content;
  min-height: 2.45rem;
  align-items: center;
  justify-content: center;
  margin-top: 0.35rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.live-session-cta:hover {
  background: transparent;
  color: var(--blue);
}

.live-register-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.live-archive-note {
  max-width: 780px;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gold);
}

.live-archive-note p {
  margin-bottom: 0.8rem;
  color: var(--text-2);
}

.collaborate-live-form select {
  width: 100%;
  min-height: 3rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--border);
  background: #FFFFFF;
  color: var(--text);
  font: inherit;
}

.knowledge-intro-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.knowledge-thread-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 3rem;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--border);
}

.knowledge-thread-grid article {
  position: relative;
  display: grid;
  align-content: start;
  gap: 0.75rem;
  min-height: 210px;
  padding: clamp(1.2rem, 2.4vw, 1.65rem);
  border-right: 1px solid var(--border);
  background: #FFFFFF;
}

.knowledge-thread-grid article:last-child {
  border-right: 0;
}

.knowledge-thread-grid article:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 1.35rem;
  right: -0.55rem;
  z-index: 1;
  display: grid;
  width: 1.1rem;
  height: 1.1rem;
  place-items: center;
  background: var(--bg-alt);
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1;
}

.knowledge-thread-grid span {
  color: var(--gold-dark);
  font-size: var(--fs-label);
  letter-spacing: 0.16em;
}

.knowledge-thread-grid strong {
  color: var(--blue);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.2vw, 1.9rem);
  font-weight: 500;
  line-height: 1.08;
}

.knowledge-thread-grid p {
  color: var(--text-2);
  font-size: var(--fs-small);
  line-height: 1.55;
}

.thinker-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.knowledge-group-heading {
  max-width: 860px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.thinker-grid-single {
  grid-template-columns: minmax(280px, 0.66fr);
}

.knowledge-links {
  margin-top: 1.5rem;
}

.thinker-card {
  border: 1px solid var(--border);
  border-top: 1px solid var(--gold);
  background: #FFFFFF;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.thinker-card[open] {
  border-color: rgba(184, 150, 90, 0.58);
  box-shadow: 0 18px 40px rgba(5, 22, 34, 0.06);
}

.thinker-card summary {
  display: grid;
  gap: 0.55rem;
  min-height: 190px;
  padding: 1.25rem;
  cursor: pointer;
  list-style: none;
}

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

.thinker-card summary::after {
  content: "+";
  align-self: end;
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}

.thinker-card[open] summary::after {
  content: "−";
}

.thinker-card span {
  color: var(--gold-dark);
  font-size: var(--fs-label);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.thinker-card strong {
  color: var(--blue);
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  font-weight: 500;
  line-height: 1.05;
}

.thinker-card small {
  color: var(--text-2);
  font-size: var(--fs-small);
  line-height: 1.45;
}

.thinker-card > div {
  display: grid;
  gap: 1rem;
  padding: 0 1.25rem 1.35rem;
}

.thinker-card p {
  color: var(--text-2);
  font-size: var(--fs-small);
  line-height: 1.58;
}

.thinker-card blockquote,
.thinker-essence {
  margin: 0;
  padding: 1rem;
  border-left: 1px solid var(--gold);
  background: var(--bg-alt);
}

.thinker-card blockquote p,
.thinker-essence {
  color: var(--blue);
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.2;
}

.thinker-essence em {
  font-style: italic;
}

.knowledge-synthesis {
  max-width: 920px;
}

.knowledge-synthesis-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 2rem 0 2.5rem;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--border);
}

.knowledge-synthesis-grid p {
  margin: 0;
  padding: 1.15rem 1.25rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  color: var(--text-2);
}

.knowledge-synthesis-grid p:nth-child(2n) {
  border-right: 0;
}

.knowledge-synthesis-grid p:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.knowledge-synthesis blockquote {
  max-width: 820px;
  margin: 1.25rem 0 1.5rem;
  padding: 0.9rem 0 0.9rem 1.35rem;
  border-left: 1px solid var(--gold);
  background: transparent;
}

.knowledge-synthesis blockquote p {
  color: var(--blue);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  line-height: 1.3;
}

.arti-opening-grid,
.arti-origin-grid,
.arti-practice-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.arti-opening-grid p:not(.label),
.arti-origin-copy p,
.arti-practice-list p {
  color: var(--text-2);
}

.arti-letter-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--border);
  background: #FFFFFF;
}

.arti-letter-panel span {
  display: grid;
  gap: 0.65rem;
  min-height: 170px;
  padding: 1.35rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  color: var(--blue);
  font-size: var(--fs-small);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.arti-letter-panel span:nth-child(2n) {
  border-right: 0;
}

.arti-letter-panel span:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.arti-letter-panel strong {
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: clamp(4rem, 8vw, 6.5rem);
  font-weight: 400;
  line-height: 0.82;
}

.arti-capacity-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--border);
}

.arti-capacity-card {
  display: grid;
  align-content: start;
  gap: 1rem;
  min-height: 320px;
  padding: clamp(1.25rem, 2.5vw, 1.8rem);
  border-right: 1px solid var(--border);
  background: #FFFFFF;
}

.arti-capacity-card:last-child {
  border-right: 0;
}

.arti-capacity-card span {
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: clamp(4.2rem, 8vw, 6.25rem);
  font-weight: 400;
  line-height: 0.85;
}

.arti-capacity-card h3 {
  color: var(--blue);
}

.arti-capacity-card p {
  color: var(--text-2);
  font-size: var(--fs-small);
}

.arti-origin-copy {
  display: grid;
  gap: 1.1rem;
}

.arti-origin-copy blockquote {
  margin: 0;
  padding: clamp(1.4rem, 3vw, 2rem);
  border-left: 4px solid var(--gold);
  background: var(--blue);
}

.arti-origin-copy blockquote p {
  color: #FFFFFF;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.7vw, 2.1rem);
  line-height: 1.18;
}

.arti-practice-media {
  margin: 2rem 0 0;
}

.arti-practice-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--gold);
  padding: 8px;
  background: #FFFFFF;
}

.arti-practice-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--gold);
}

.arti-practice-list article {
  display: grid;
  grid-template-columns: 3.5rem minmax(0, 1fr);
  gap: 1.25rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border);
}

.arti-practice-list span {
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}

.arti-practice-list p {
  margin: 0;
}

.pathways-intro-grid,
.pathway-map-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.74fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.pathways-offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.pathway-offer-card {
  display: grid;
  align-content: start;
  gap: 0.95rem;
  min-height: 100%;
  padding: clamp(1.25rem, 2.4vw, 1.75rem);
  border: 1px solid var(--border);
  border-top: 1px solid var(--gold);
  background: #FFFFFF;
}

.pathway-offer-card > span {
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 0.9;
}

.pathway-offer-card h3 {
  color: var(--blue);
}

.pathway-offer-card p {
  margin: 0;
  color: var(--text-2);
  font-size: var(--fs-small);
  line-height: 1.55;
}

.pathway-offer-card p em {
  color: var(--blue);
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.2;
}

.pathway-when {
  padding-top: 0.95rem;
  border-top: 1px solid var(--border);
}

.pathway-when::before {
  content: "When it works";
  display: block;
  margin-bottom: 0.35rem;
  color: var(--gold-dark);
  font-size: var(--fs-label);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pathway-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  align-self: end;
  margin-top: 0.4rem;
}

.pathway-map-copy {
  display: grid;
  gap: 1.15rem;
}

.pathway-map-copy p {
  color: var(--text-2);
}

.pathway-question {
  max-width: 900px;
}

.pathway-question blockquote {
  margin: 0 0 1.5rem;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-left: 4px solid var(--gold);
  background: var(--blue);
}

.pathway-question blockquote p {
  color: #FFFFFF;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.6vw, 2.75rem);
  line-height: 1.1;
}

.pathway-question > p:not(.label) {
  margin-bottom: 1.5rem;
  color: var(--text-2);
  font-size: var(--fs-lead);
}

.insights-intro-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.insight-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.insight-feature figure {
  margin: 0;
}

.insight-feature img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center top;
  border: 1px solid var(--gold);
  padding: 8px;
  background: #FFFFFF;
}

.insight-feature p:not(.label) {
  margin-bottom: 1.35rem;
  color: var(--text-2);
  font-size: var(--fs-lead);
  font-weight: 300;
}

.insight-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--border);
}

.insight-card {
  display: grid;
  align-content: start;
  gap: 0.9rem;
  min-height: 300px;
  padding: clamp(1.25rem, 2.4vw, 1.75rem);
  border-right: 1px solid var(--border);
  background: #FFFFFF;
}

.insight-card:last-child {
  border-right: 0;
}

.insight-number,
.insight-coming-grid span {
  margin: 0;
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: clamp(2.3rem, 4vw, 3.5rem);
  line-height: 0.9;
}

.insight-card h3,
.insight-coming-grid h3 {
  color: var(--blue);
}

.insight-card p:not(.insight-number),
.insight-coming-grid p {
  margin: 0;
  color: var(--text-2);
  font-size: var(--fs-small);
  line-height: 1.55;
}

.insight-card .text-link {
  align-self: end;
  margin-top: 0.5rem;
}

.insight-coming-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.insight-coming-grid article {
  display: grid;
  align-content: start;
  gap: 0.85rem;
  min-height: 250px;
  padding: clamp(1.15rem, 2.2vw, 1.5rem);
  border: 1px solid var(--border);
  border-top: 1px solid var(--gold);
  background: #FFFFFF;
}

.insights-apply {
  max-width: 820px;
}

@media (max-width: 900px) {
  .press-intro-grid {
    grid-template-columns: 1fr;
  }

  .knowledge-intro-grid,
  .live-register-grid,
  .live-feature-grid,
  .arti-opening-grid,
  .arti-origin-grid,
  .arti-practice-grid,
  .pathways-intro-grid,
  .pathway-map-grid,
  .insights-intro-grid,
  .insight-feature {
    grid-template-columns: 1fr;
  }

  .knowledge-thread-grid,
  .thinker-grid,
  .live-session-grid,
  .arti-capacity-grid,
  .pathways-offer-grid,
  .insight-coming-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .press-intro-grid h2 {
    max-width: 14ch;
  }

  .home-evidence-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-evidence-grid article:nth-child(2) {
    border-right: 0;
  }

  .home-now-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .knowledge-thread-grid article::after {
    display: none !important;
  }

  .now-card:nth-child(2) {
    border-right: 0;
  }

  .now-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }
}

@media (max-width: 640px) {
  .press-year summary {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .press-year-count {
    grid-column: 1 / -1;
    order: 3;
  }

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

  .press-resource-panel article,
  .press-resource-panel article + article {
    min-height: 0;
    padding: 1.5rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .press-resource-panel article:last-child {
    border-bottom: 0;
  }

  .press-source,
  .press-action {
    width: 100%;
    justify-content: center;
  }

  .press-item-with-media {
    grid-template-columns: 1fr;
  }

  .press-item-media {
    max-width: 220px;
  }

  .home-evidence-grid {
    grid-template-columns: 1fr;
  }

  .knowledge-thread-grid,
  .thinker-grid,
  .knowledge-synthesis-grid,
  .live-format-grid,
  .live-session-grid,
  .arti-letter-panel,
  .arti-capacity-grid,
  .pathways-offer-grid,
  .insight-card-grid,
  .insight-coming-grid {
    grid-template-columns: 1fr;
  }

  .knowledge-thread-grid article,
  .knowledge-synthesis-grid p,
  .live-format-grid article,
  .arti-capacity-card,
  .arti-letter-panel span,
  .insight-card {
    border-right: 0;
  }

  .arti-letter-panel span:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }

  .arti-letter-panel span:last-child {
    border-bottom: 0;
  }

  .knowledge-synthesis-grid p:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }

  .knowledge-synthesis-grid p:last-child {
    border-bottom: 0;
  }

  .home-evidence-grid article,
  .home-evidence-grid article:nth-child(2) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .home-evidence-grid article:last-child {
    border-bottom: 0;
  }

  .home-now-grid {
    grid-template-columns: 1fr;
  }

  .now-card,
  .now-card:nth-child(2) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .now-card:last-child {
    border-bottom: 0;
  }
}

.essays-hero {
  background: var(--bg-alt);
}

.essay-index-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--gold);
}

.essay-index-item {
  display: grid;
  grid-template-columns: minmax(140px, 0.25fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  padding: clamp(1.5rem, 4vw, 3rem) 0;
  border-bottom: 1px solid var(--border);
}

.essay-index-item h2 {
  margin: 0 0 0.7rem;
  color: var(--blue);
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 500;
  line-height: 1.05;
}

.essay-index-item p:not(.label) {
  max-width: 58ch;
  color: var(--text-2);
}

.essay-hero {
  padding: clamp(5rem, 12vw, 8rem) 0 clamp(3rem, 7vw, 5rem);
  background: var(--bg-alt);
}

.essay-hero-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: end;
}

.essay-hero-media {
  margin: 0;
}

.essay-hero-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid var(--gold);
  padding: 8px;
  background: #FFFFFF;
}

.essay-hero-media figcaption {
  margin-top: 0.75rem;
  color: var(--text-2);
  font-size: var(--fs-small);
}

.essay-body {
  max-width: 760px;
}

.essay-body p {
  margin-bottom: 1.45rem;
  color: var(--text);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  line-height: 1.68;
}

.essay-body h2 {
  margin: clamp(2.5rem, 6vw, 4rem) 0 1rem;
  color: var(--blue);
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1.08;
}

.essay-next {
  margin-top: clamp(2.5rem, 6vw, 4rem);
  padding-top: 1.2rem;
  border-top: 1px solid var(--gold);
}

.essay-next .label {
  margin-bottom: 0.75rem;
}

.collaborate-fit-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1fr);
  gap: 4rem;
  align-items: start;
}

.fit-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--gold);
}

.fit-list p {
  margin: 0;
  padding: 1rem 1rem 1rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--blue);
  font-family: var(--serif);
  font-size: var(--fs-lead);
  line-height: 1.25;
}

.how-begin-section .section-title {
  max-width: 880px;
}

.process-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 2rem 0;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--border);
}

.process-flow span {
  position: relative;
  display: block;
  padding: 1.4rem 2rem 1.4rem 0;
  border-right: 1px solid var(--border);
  color: var(--blue);
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.5vw, 2.35rem);
  line-height: 1.12;
}

.process-flow span + span {
  padding-left: 2rem;
}

.process-flow span:last-child {
  border-right: 0;
}

.process-flow span:not(:last-child)::after {
  content: "↓";
  position: absolute;
  right: 1.2rem;
  top: 50%;
  color: var(--gold-dark);
  font-family: var(--sans);
  font-size: 1.1rem;
  transform: translateY(-50%) rotate(-90deg);
}

.founder-quote {
  margin: 1.5rem 0;
  padding: 0 0 0 1.25rem;
  background: transparent;
  border-left: 2px solid var(--gold);
  border-radius: 0;
  box-shadow: none;
}

.founder-quote p {
  margin-bottom: 0;
  color: var(--blue);
  font-family: var(--serif);
  font-size: var(--fs-lead);
  line-height: 1.35;
}

.founder-quote footer {
  margin-top: 0.7rem;
  color: var(--text-2);
  font-family: var(--sans);
  font-size: var(--fs-small);
}

/* ============================================================
   Paginas interiores
   ============================================================ */

.page-header {
  position: relative;
  overflow: hidden;
  padding: 6rem 0 4.5rem;
  border-bottom: 1px solid var(--border);
}

.page-header-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.72fr);
  gap: 4rem;
  align-items: end;
}

.page-hero-media,
.about-wide-media,
.about-inline-media {
  margin: 0;
}

.page-hero-media img,
.about-wide-media img,
.about-inline-media img {
  width: 100%;
  object-fit: cover;
  border: 1px solid var(--gold);
  padding: 8px;
  background: var(--bg);
  box-sizing: border-box;
  filter: saturate(0.9);
}

.page-hero-media img {
  aspect-ratio: 4 / 5;
}

.page-hero-media figcaption,
.about-wide-media figcaption,
.about-inline-media figcaption {
  margin-top: 0.7rem;
  color: var(--text-2);
  font-size: var(--fs-label);
  letter-spacing: 0.04em;
}

.page-title {
  margin-bottom: 1.75rem;
  font-family: var(--serif);
  font-size: var(--fs-hero);
  font-weight: 400;
  line-height: 1.05;
}

.breadcrumb {
  margin-bottom: 1.75rem;
  color: var(--gold-dark);
  font-size: var(--fs-label);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.breadcrumb a {
  color: var(--gold-dark);
}

.breadcrumb a:hover {
  color: var(--blue);
}

.narrative {
  position: relative;
  z-index: 1;
  max-width: var(--measure);
}

.narrative p {
  margin-bottom: 1.4rem;
  color: var(--text-2);
}

.narrative p:last-child {
  margin-bottom: 0;
}

.about-stack {
  display: grid;
  gap: 0;
}

.about-intro {
  margin-bottom: 5rem;
}

.about-intro p {
  color: var(--text);
  font-family: var(--serif);
  font-size: var(--fs-h3);
  font-weight: 400;
  line-height: 1.25;
}

.about-intro p + p {
  margin-top: 1.2rem;
  color: var(--blue);
}

.about-belief-panel {
  margin-bottom: 5rem;
  padding: clamp(2rem, 4vw, 3.5rem);
  background: var(--blue);
  color: #FFFFFF;
}

.about-belief-panel .label {
  color: var(--gold);
}

.about-belief-list {
  display: grid;
  gap: 1rem;
  max-width: 900px;
}

.about-belief-list p {
  margin: 0;
  color: #FFFFFF;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 3vw, 2.6rem);
  font-weight: 400;
  line-height: 1.15;
}

.about-work-block {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(2rem, 5vw, 4rem);
  padding: 4rem 0;
  border-top: 1px solid var(--gold);
}

.about-work-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border);
}

.about-work-grid a {
  display: grid;
  grid-template-columns: minmax(120px, 0.35fr) minmax(0, 1fr);
  gap: 1.5rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--border);
}

.about-work-grid span {
  color: var(--blue);
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.15;
}

.about-work-grid p {
  margin: 0;
  color: var(--text-2);
}

.about-work-grid a:hover span,
.about-work-grid a:hover p {
  color: var(--gold-dark);
}

.about-difference {
  display: grid;
  grid-template-columns: minmax(180px, 0.45fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  margin: 0 0 5rem;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-difference-list {
  display: grid;
  gap: 0;
}

.about-difference-list p {
  margin: 0;
  padding: 0.85rem 0;
  border-top: 1px solid var(--border);
  color: var(--text);
  font-family: var(--serif);
  font-size: var(--fs-lead);
  line-height: 1.35;
}

.about-difference-list p:first-child {
  border-top: 0;
  padding-top: 0;
}

.about-origin-block {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  padding: 4rem 0;
  border-top: 1px solid var(--gold);
}

.about-origin-question {
  color: var(--blue) !important;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  line-height: 1.16;
}

.about-wide-media {
  margin: 0 0 5rem;
}

.about-wide-media img {
  aspect-ratio: 16 / 7;
}

.about-inline-media {
  margin-top: 2rem;
  max-width: 560px;
}

.about-inline-media img {
  aspect-ratio: 4 / 3;
}

.about-row {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(0, 1fr);
  gap: 4rem;
  padding: 3rem 0;
  border-top: 1px solid var(--border);
}

.about-row:last-child {
  border-bottom: 1px solid var(--border);
}

.about-founders-row {
  border-top-color: var(--gold);
}

.about-approach-row {
  align-items: center;
}

.mission-row {
  align-items: end;
}

.mission-row .section-title {
  max-width: 760px;
  margin-bottom: 0;
}

.mission-through {
  margin: 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--gold);
  color: var(--gold-dark);
  font-size: var(--fs-label);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ============================================================
   Approach
   ============================================================ */

.approach-hero {
  padding-bottom: 5.5rem;
}

.approach-thesis {
  margin-bottom: 1.5rem;
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  line-height: 1.06;
}

.approach-thesis strong {
  display: block;
  margin-bottom: 0.25rem;
}

.approach-hero-media img {
  aspect-ratio: 4 / 3;
  object-position: center center;
}

.approach-theory-section {
  padding: 3rem 0;
  text-align: center;
}

.approach-theory {
  display: grid;
  justify-items: center;
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(2.25rem, 4vw, 3.25rem) clamp(1.5rem, 4vw, 3rem);
}

.approach-theory .label {
  margin-right: auto;
  margin-bottom: 1.35rem;
  margin-left: auto;
}

.toc-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.toc-steps span:not(.arrow) {
  display: inline-flex;
  align-items: center;
  min-height: 2.4rem;
  padding: 0.35rem 0.85rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--blue);
  font-family: var(--serif);
  font-size: var(--fs-lead);
  line-height: 1.1;
}

.toc-steps .arrow {
  display: inline-flex;
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: var(--fs-lead);
  line-height: 1;
}

.approach-stack {
  display: grid;
  gap: 0;
  counter-reset: approach-logic;
}

.approach-foundation-head {
  max-width: 980px;
  margin-bottom: 2rem;
  padding-left: 1.5rem;
  border-left: 4px solid var(--gold);
}

.approach-row {
  display: grid;
  grid-template-columns: minmax(240px, 0.82fr) minmax(0, 1fr);
  gap: 4.5rem;
  padding: 3.4rem 0;
  border-top: 1px solid var(--border);
}

.approach-row:last-child {
  border-bottom: 1px solid var(--border);
}

.approach-row .section-title {
  max-width: 760px;
}

.approach-logic-section {
  background: linear-gradient(180deg, #FFFFFF 0%, var(--bg) 100%);
}

.logic-row {
  position: relative;
  counter-increment: approach-logic;
}

.logic-row::before {
  content: "0" counter(approach-logic);
  position: absolute;
  left: 0;
  top: 3.2rem;
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: 2.25rem;
  line-height: 1;
}

.approach-page .page-header-content {
  padding-right: clamp(0.5rem, 2vw, 1.5rem);
}

.approach-page .section-title,
.approach-page .case-narrative h2 {
  text-wrap: balance;
}

.approach-page .projects-reveal > div:first-child,
.approach-page .case-narrative > h2 {
  padding-top: 0.35rem;
  padding-right: clamp(1rem, 3vw, 2.5rem);
}

.approach-page .logic-row > div:first-child {
  padding-left: clamp(3.75rem, 6vw, 5.25rem);
}

.approach-page .logic-row::before {
  top: 3.55rem;
}

.approach-page .approach-row .section-title {
  margin-bottom: 0;
}

.logic-primary {
  margin-bottom: 1rem;
  padding: 2.6rem 2.6rem 2.6rem 5.4rem;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: 0 18px 18px 0;
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.045);
}

.logic-primary::before {
  left: 1.6rem;
  top: 2.7rem;
}

.logic-dialogue {
  margin-left: clamp(0rem, 6vw, 5rem);
  padding-left: 4.8rem;
}

.logic-research {
  max-width: 900px;
  margin-left: auto;
  padding: 2.4rem 0 2.4rem 4.8rem;
  border-bottom: 1px solid var(--border);
}

.logic-dialogue::after {
  content: "";
  position: absolute;
  left: 1.1rem;
  top: 6rem;
  bottom: -2rem;
  width: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.work-movement-section {
  background: var(--bg-alt);
}

.how-work-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 2rem;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--border);
}

.work-step-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 2rem 2rem 2.25rem;
  background: transparent;
  border-right: 1px solid var(--border);
}

.work-step-card:last-child {
  border-right: 0;
}

.work-step-number {
  display: block;
  margin-bottom: 0.85rem;
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: 2.4rem;
  line-height: 1;
}

.work-step-card h3 {
  margin-bottom: 0.75rem;
  color: var(--blue);
}

.work-step-card p {
  color: var(--text-2);
}

.work-step-card .small {
  margin-top: auto;
  padding-top: 1rem;
  color: var(--gold-dark);
}

.bridge-mapping {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.bridge-feature-section {
  background: var(--blue);
  color: #FFFFFF;
}

.bridge-feature-section .label,
.bridge-feature-section .lead,
.bridge-feature-section .narrative > p,
.bridge-feature-section .section-title,
.bridge-feature-section .section-title em {
  color: #FFFFFF;
}

.bridge-feature-section .bridge-mapping-grid {
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
}

.bridge-mapping-grid,
.in-practice-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.85fr);
  gap: 4.5rem;
  align-items: start;
}

.bridge-mapping-grid {
  padding-top: 0;
  border-top: 0;
}

.mapping-preview {
  margin-top: 2.2rem;
  padding: 2rem;
  background: #FFFFFF;
  border-left: 4px solid var(--gold);
  border-radius: 0 16px 16px 0;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.045);
}

.mapping-preview-head {
  max-width: 620px;
}

.mapping-preview-head .label {
  margin-bottom: 0.85rem;
}

.mapping-preview h3 {
  margin-bottom: 0.75rem;
  font-family: var(--serif);
  font-size: var(--fs-h3);
  font-weight: 400;
  line-height: 1.2;
}

.mapping-preview-head p:not(.label) {
  color: var(--text-2);
  font-size: var(--fs-small);
}

.mapping-preview ol {
  display: grid;
  gap: 1rem;
  margin: 1.75rem 0 0;
  padding: 0;
  list-style: none;
  counter-reset: mapping;
}

.mapping-preview li {
  position: relative;
  display: grid;
  grid-template-columns: 2.6rem minmax(0, 1fr);
  gap: 1.25rem;
  padding: 1.15rem 0 1.15rem 1rem;
  border-top: 1px solid var(--border);
  counter-increment: mapping;
}

.mapping-preview li::before {
  content: counter(mapping, decimal-leading-zero);
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: 1.6rem;
  line-height: 1.1;
}

.mapping-preview span,
.mapping-preview small {
  display: block;
}

.mapping-preview span {
  color: var(--blue);
  font-weight: 500;
}

.mapping-preview small {
  margin-top: 0.25rem;
  color: var(--text-2);
  font-size: var(--fs-small);
}

.mapping-preview-action {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.approach-practice-grid {
  margin-top: 1rem;
}

.in-practice-panel {
  padding-top: 1.5rem;
  border-top: 1px solid var(--gold);
}

.link-pair {
  display: flex;
  gap: 0.8rem 1.75rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}

/* ============================================================
   People
   ============================================================ */

.people-intro {
  max-width: 860px;
  margin-bottom: 5rem;
}

.people-intro p {
  color: var(--text);
  font-family: var(--serif);
  font-size: var(--fs-h3);
  font-weight: 400;
  line-height: 1.25;
}

.people-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--gold);
}

.person-row {
  display: grid;
  grid-template-columns: minmax(180px, 0.38fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: start;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}

.person-media {
  margin: 0;
}

.person-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border: 1px solid var(--gold);
  padding: 8px;
  background: var(--bg);
  box-sizing: border-box;
  filter: saturate(0.9);
}

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

.person-role {
  margin-bottom: 0.7rem;
  color: var(--gold-dark);
  font-size: var(--fs-small);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.person-copy h2 {
  margin-bottom: 1rem;
  font-family: var(--serif);
  font-size: var(--fs-h2);
  font-weight: 400;
  line-height: 1.1;
}

.person-copy p:not(.person-role) {
  margin-bottom: 1.5rem;
  color: var(--text-2);
}

.person-summary {
  color: var(--text) !important;
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.25;
}

.profile-hero-media img {
  aspect-ratio: 4 / 5;
  object-position: center top;
}

.profile-credentials {
  max-width: var(--measure);
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--gold);
  color: var(--text-2);
  font-size: var(--fs-small);
  line-height: 1.7;
}

.profile-stack {
  display: grid;
  gap: 0;
}

.profile-row {
  display: grid;
  grid-template-columns: minmax(240px, 0.78fr) minmax(0, 1fr);
  gap: 4rem;
  padding: 3rem 0;
  border-top: 1px solid var(--border);
}

.profile-row:last-child {
  border-bottom: 1px solid var(--border);
}

.profile-list,
.profile-link-list {
  max-width: var(--measure);
}

.profile-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--gold);
}

.profile-list p {
  margin: 0;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-family: var(--serif);
  font-size: var(--fs-h3);
  font-weight: 400;
  line-height: 1.2;
}

.profile-intro {
  max-width: 860px;
}

.profile-path-section {
  background: #FFFFFF;
}

.profile-moment .profile-list {
  max-width: none;
  margin-top: 1.6rem;
  padding-inline: 0;
}

.profile-moment .profile-list p {
  padding: 1rem 0;
  color: var(--text-2);
  font-family: var(--sans);
  font-size: var(--fs-body);
  line-height: 1.6;
}

.profile-moment .profile-list strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--blue);
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.4vw, 2.15rem);
  font-weight: 500;
  line-height: 1.12;
}

.profile-evidence .reveal-list,
.profile-biography .narrative {
  padding-top: 1rem;
  border-top: 1px solid var(--gold);
}

.validation-note {
  display: block;
  margin-top: 0.45rem;
  color: var(--gold-dark);
  font-family: var(--sans);
  font-size: var(--fs-small);
  line-height: 1.5;
}

.profile-link-list {
  display: grid;
  grid-template-columns: minmax(140px, max-content) minmax(0, 1fr);
  gap: 1rem 1.5rem;
  align-items: baseline;
}

.profile-link-list span {
  color: var(--text-2);
  font-size: var(--fs-small);
}

/* ============================================================
   Bridge Mapping page
   ============================================================ */

.bridge-hero-media img {
  aspect-ratio: 4 / 3;
  object-position: center center;
}

.bridge-intro {
  max-width: 900px;
  margin-bottom: 4rem;
}

.bridge-intro p {
  color: var(--blue);
  font-family: var(--serif);
  font-size: var(--fs-h3);
  font-weight: 400;
  line-height: 1.28;
}

.bridge-page-stack {
  display: grid;
  gap: 0;
}

.bridge-page-row {
  display: grid;
  grid-template-columns: minmax(240px, 0.82fr) minmax(0, 1fr);
  gap: 4rem;
  padding: 3rem 0;
  border-top: 1px solid var(--border);
}

.bridge-page-row:last-child {
  border-bottom: 1px solid var(--border);
}

.bridge-opening-row {
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) minmax(0, 1fr);
  gap: 5rem;
  padding: 3.5rem 0 4rem;
  border-top: 1px solid var(--gold);
}

.bridge-opening-row .section-title {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
}

.bridge-opening-row .narrative {
  padding-top: 0.5rem;
}

.bridge-opening-row .narrative p:first-child {
  color: var(--blue);
  font-family: var(--serif);
  font-size: var(--fs-h3);
  line-height: 1.2;
}

.bridge-why-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: start;
  margin-bottom: 1rem;
  padding: 2.2rem;
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.045);
}

.bridge-why-heading {
  padding-top: 0.25rem;
}

.bridge-why-heading h2 {
  margin: 0;
  color: var(--blue);
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  font-weight: 500;
  line-height: 1.15;
}

.bridge-why-copy {
  padding-left: 2rem;
  border-left: 2px solid var(--gold);
}

.bridge-why-copy p {
  margin-bottom: 1.25rem;
  color: var(--text-2);
}

.bridge-why-copy p:last-child {
  margin-bottom: 0;
}

.bridge-why-lead {
  color: var(--blue) !important;
  font-size: var(--fs-lead);
  font-weight: 300;
  line-height: 1.45;
}

.principle-grid,
.level-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.principle-card,
.level-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 2rem 1.8rem;
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.principle-card span {
  margin-bottom: 1.5rem;
  color: var(--gold);
  font-family: var(--serif);
  font-size: var(--fs-h3);
  line-height: 1;
  opacity: 0.6;
}

.principle-card h3,
.level-card h3 {
  margin-bottom: 0.8rem;
  color: var(--blue);
}

.principle-card p,
.level-card p:not(.label) {
  color: var(--text-2);
  font-size: var(--fs-small);
}

.stage-list {
  display: grid;
  gap: 0;
  margin: 1.5rem 0;
  padding: 0;
  list-style: none;
  counter-reset: bridge-stage;
  border-top: 1px solid var(--gold);
}

.stage-list li {
  display: grid;
  grid-template-columns: 2.4rem minmax(0, 1fr);
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--blue);
  counter-increment: bridge-stage;
}

.stage-list li::before {
  content: counter(bridge-stage, decimal-leading-zero);
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: var(--fs-lead);
  line-height: 1;
}

.methodology-infographic {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-template-areas:
    "start start context context factor factor"
    ". center center center center ."
    "action action action eval eval eval"
    ". learn learn learn learn .";
  gap: 1rem;
  margin: 2rem 0;
  padding: 1.4rem;
  list-style: none;
  background:
    radial-gradient(circle at 50% 42%, rgba(180, 139, 90, 0.16), transparent 34%),
    linear-gradient(170deg, #FFFFFF 0%, var(--bg-alt) 100%);
  border: 1px solid rgba(180, 139, 90, 0.24);
  border-radius: 22px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.05);
}

.methodology-infographic::before {
  content: "";
  position: absolute;
  inset: 4.4rem 2.6rem 4rem;
  border: 1px solid rgba(180, 139, 90, 0.24);
  border-radius: 999px;
  opacity: 0.65;
  pointer-events: none;
}

.methodology-infographic li {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  min-height: 190px;
  padding: 1rem;
  background: rgba(252, 251, 249, 0.84);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 14px;
}

.methodology-infographic .method-node::after {
  content: "";
  position: absolute;
  z-index: 2;
  background: var(--gold);
  opacity: 0.55;
}

.method-start { grid-area: start; }
.method-context { grid-area: context; }
.method-factor { grid-area: factor; }
.method-center { grid-area: center; }
.method-action { grid-area: action; }
.method-eval { grid-area: eval; }
.method-learn { grid-area: learn; }

.method-start,
.method-action {
  background: #FFFFFF;
}

.method-context,
.method-factor,
.method-eval,
.method-learn {
  background: rgba(252, 251, 249, 0.9);
}

.method-center {
  min-height: 230px;
  padding: 2rem;
  background: var(--blue);
  color: #FFFFFF;
  text-align: center;
}

.method-center .method-number {
  margin-left: auto;
  margin-right: auto;
  background: #FFFFFF;
  color: var(--blue);
}

.method-center .method-title,
.method-center .method-copy {
  color: #FFFFFF;
}

.method-center .method-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.method-start::after,
.method-context::after {
  top: 2.55rem;
  right: -1rem;
  width: 1rem;
  height: 1px;
}

.method-factor::after,
.method-center::after,
.method-eval::after {
  left: 50%;
  bottom: -1rem;
  width: 1px;
  height: 1rem;
}

.method-action::after {
  top: 50%;
  right: -1rem;
  width: 1rem;
  height: 1px;
}

.method-number {
  width: 3.1rem;
  height: 3.1rem;
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
  background: var(--blue);
  border: 2px solid var(--gold);
  border-radius: 999px;
  color: #FFFFFF;
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1;
}

.method-title {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--blue);
  font-family: var(--serif);
  font-size: 1.32rem;
  font-weight: 500;
  line-height: 1.12;
}

.method-copy {
  display: block;
  color: var(--text-2);
  font-size: 0.9rem;
  line-height: 1.55;
}

.conversation-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.conversation-steps span {
  padding: 1rem;
  background: #FFFFFF;
  border-left: 4px solid var(--gold);
  border-radius: 10px;
  color: var(--blue);
  font-family: var(--serif);
  font-size: var(--fs-h3);
  line-height: 1.15;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.level-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.level-card.gated {
  background: var(--blue);
}

.level-card.gated h3,
.level-card.gated p:not(.label) {
  color: #FFFFFF;
}

.level-card.gated .label {
  color: var(--gold);
}

/* ============================================================
   Position Paper — Documento Fundacional
   ============================================================ */

.thesis-block {
  max-width: var(--measure);
  margin: 2rem 0 2.5rem;
  padding: 2rem 2.5rem;
  background: var(--bg-alt);
  border-left: 4px solid var(--gold);
  border-radius: 0 12px 12px 0;
  color: var(--blue);
  font-family: var(--serif);
  font-size: var(--fs-lead);
  line-height: 1.5;
}

.thesis-block strong {
  color: var(--text);
  font-weight: 600;
}

.definition-block {
  max-width: var(--measure);
  margin: 1.5rem 0 2rem;
  padding: 1.75rem 2.25rem;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  color: var(--text);
  font-family: var(--serif);
  font-size: var(--fs-lead);
  line-height: 1.6;
}

.definition-block .term {
  color: var(--blue);
  font-weight: 600;
}

.definition-block .definition {
  color: var(--text-2);
}

.theory-of-change {
  max-width: var(--measure);
  margin: 1.5rem 0 2rem;
  padding: 1.5rem 2rem;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  color: var(--text-2);
  font-family: var(--sans);
  font-size: var(--fs-body);
  line-height: 2.2;
  text-align: center;
}

.theory-of-change .arrow {
  display: block;
  color: var(--gold);
  font-size: var(--fs-lead);
  line-height: 1.8;
}

blockquote {
  max-width: calc(var(--measure) + 2rem);
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  background: var(--bg-alt);
  border-left: 3px solid var(--gold);
  border-radius: 0 12px 12px 0;
  color: var(--text);
  font-family: var(--serif);
  font-size: var(--fs-lead);
  line-height: 1.6;
}

blockquote p {
  margin-bottom: 0;
  color: var(--text);
  font-size: var(--fs-lead);
}

blockquote footer {
  margin-top: 0.75rem;
  color: var(--text-2);
  font-family: var(--sans);
  font-size: var(--fs-small);
}

.case-quote {
  margin-top: 0;
}

.case-quote cite {
  display: block;
  margin-top: 0.85rem;
  color: var(--text-2);
  font-family: var(--sans);
  font-size: var(--fs-small);
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.note {
  max-width: var(--measure);
  margin: 1.5rem 0;
  padding: 1rem 1.5rem;
  background: var(--bg-alt);
  border-radius: 8px;
  color: var(--text-2);
  font-family: var(--sans);
  font-size: var(--fs-small);
  line-height: 1.7;
}

.note strong {
  color: var(--text);
  font-weight: 600;
}

.section-number {
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0.1rem 0.7rem;
  background: var(--bg-alt);
  border-radius: 100px;
  color: var(--gold-dark);
  font-family: var(--sans);
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.document-meta {
  max-width: var(--measure);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  color: var(--text-2);
  font-family: var(--sans);
  font-size: var(--fs-small);
}

.document-meta .version {
  color: var(--text);
  font-weight: 500;
}

/* ============================================================
   Utilidades — Position Paper
   ============================================================ */

.text-center {
  text-align: center;
}

.text-muted {
  color: var(--text-2);
}

.mt-lg {
  margin-top: var(--space-lg, 2rem);
}

.mb-lg {
  margin-bottom: var(--space-lg, 2rem);
}

.highlight {
  padding: 0.1rem 0.3rem;
  background: var(--bg-alt);
  border-radius: 4px;
}

.separator {
  width: 60px;
  height: 2px;
  margin: 2rem 0;
  background: var(--gold);
}

.separator-center {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   Projects page
   ============================================================ */

.project-case-stack {
  display: grid;
  gap: 0;
}

.project-case {
  display: grid;
  grid-template-columns: minmax(240px, 0.52fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: start;
  margin-inline: -2rem;
  padding: 4rem 2rem;
  border-top: 1px solid var(--gold);
}

.project-case:nth-child(even) {
  background: var(--bg-alt);
}

.project-case-featured {
  grid-template-columns: minmax(320px, 0.7fr) minmax(0, 1fr);
}

.project-case-media {
  margin: 0;
  position: sticky;
  top: 96px;
}

.project-case-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.project-case-featured .project-case-media img {
  aspect-ratio: 16 / 10;
}

.project-case-copy h2 {
  margin: 0 0 0.4rem;
  color: var(--blue);
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 500;
  line-height: 1.05;
}

.project-type {
  margin-bottom: 1.5rem;
  color: var(--gold-dark);
  font-size: var(--fs-small);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-study-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin: 2rem 0 0;
  border-top: 0;
}

.case-study-grid section {
  display: block;
  min-width: 0;
  padding: 0;
  border-bottom: 0;
}

.case-study-grid h3 {
  color: var(--gold-dark);
  font-family: var(--sans);
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.case-study-grid p,
.project-note {
  color: var(--text-2);
  font-size: var(--fs-small);
}

.project-note {
  margin: 1.5rem 0 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-style: italic;
}

.case-index {
  background: var(--bg);
}

.case-index-intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

.case-index-intro > div:last-child > p {
  max-width: 720px;
  color: var(--text-2);
  line-height: 1.7;
}

.case-sdg-explainer {
  margin-top: 1.15rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--gold);
  font-size: var(--fs-small);
}

.case-sdg-explainer strong {
  color: var(--blue);
  font-weight: 600;
}

.case-filters {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
  padding: clamp(1.25rem, 3vw, 2rem) 0;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--border);
}

.filter-group {
  display: grid;
  gap: 0.55rem;
}

.filter-group label {
  margin: 0 0 0.25rem;
  color: var(--gold-dark);
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.filter-group select {
  width: 100%;
  min-height: 3rem;
  padding: 0.72rem 2.6rem 0.72rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 0;
  background:
    linear-gradient(45deg, transparent 50%, var(--gold-dark) 50%) calc(100% - 18px) 52% / 6px 6px no-repeat,
    linear-gradient(135deg, var(--gold-dark) 50%, transparent 50%) calc(100% - 12px) 52% / 6px 6px no-repeat,
    #FFFFFF;
  color: var(--blue);
  cursor: pointer;
  font: inherit;
  font-size: 0.95rem;
  appearance: none;
}

.filter-group select:focus {
  outline: 2px solid rgba(183, 139, 74, 0.28);
  outline-offset: 2px;
  border-color: var(--gold);
}

.case-filter-note {
  max-width: 760px;
  margin: -2.25rem 0 2rem;
  color: var(--text-2);
  font-size: var(--fs-small);
  line-height: 1.55;
}

.case-filter-note strong {
  color: var(--blue);
  font-weight: 500;
}

.filter-chip {
  min-height: 2.35rem;
  padding: 0.42rem 0.8rem;
  border: 1px solid var(--border);
  background: #FFFFFF;
  color: var(--text-2);
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.filter-chip:hover,
.filter-chip:focus-visible,
.filter-chip.is-active {
  border-color: var(--blue);
  background: var(--blue);
  color: #FFFFFF;
}

.case-index-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.case-index-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  border: 1px solid var(--border);
  background: #FFFFFF;
}

.case-index-card[hidden] {
  display: none;
}

.case-index-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: saturate(0.95);
}

.case-index-card img.image-position-top {
  object-position: center top;
}

.case-index-card > div {
  display: grid;
  gap: 0.9rem;
  align-content: start;
  padding: clamp(1.2rem, 3vw, 1.65rem);
}

.case-index-card h3 {
  margin: 0;
  color: var(--blue);
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  font-weight: 500;
  line-height: 1.05;
}

.case-index-card p {
  margin: 0;
  color: var(--text-2);
  font-size: var(--fs-small);
  line-height: 1.55;
}

.case-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.case-card-tags span {
  display: inline-flex;
  min-height: 1.75rem;
  align-items: center;
  padding: 0.24rem 0.56rem;
  border: 1px solid var(--border);
  color: var(--gold-dark);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.case-empty {
  margin: 0 0 2rem;
  color: var(--text-2);
  font-style: italic;
}

@media (max-width: 900px) {
  .case-index-intro {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .case-filters {
    grid-template-columns: 1fr;
  }

  .case-index-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .case-index-grid {
    grid-template-columns: 1fr;
  }

  .case-filter-note {
    margin-top: -1.25rem;
  }
}

.projects-reveal {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1fr);
  gap: 4rem;
}

.reveal-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--gold);
}

.reveal-list p {
  margin: 0;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-2);
}

.reveal-list strong {
  color: var(--blue);
  font-weight: 500;
}

.reveal-list .text-link {
  margin-top: 0;
  margin-left: 0.35rem;
}

.reveal-closing {
  color: var(--blue) !important;
  font-family: var(--serif);
  font-size: var(--fs-h3);
  line-height: 1.2;
}

/* ============================================================
   Case studies and journey pages
   ============================================================ */

.case-hero {
  padding: 5rem 0 3rem;
  background: #FFFFFF;
  border-bottom: 1px solid var(--border);
}

.case-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  gap: 4rem;
  align-items: end;
}

.case-hero .page-title {
  max-width: 10ch;
}

.case-hero .lead {
  max-width: 62ch;
}

.case-hero-media {
  margin: 0;
}

.case-hero-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.case-hero-media-wide img {
  aspect-ratio: 16 / 10;
}

.puentes-panama-hero-media img {
  object-position: left center;
}

.case-meta-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--border);
}

.case-meta-row div {
  padding: 1.35rem 1.5rem;
  border-right: 1px solid var(--border);
}

.case-meta-row div:last-child {
  border-right: 0;
}

.case-meta-row span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--gold-dark);
  font-size: var(--fs-label);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-meta-row strong {
  color: var(--blue);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.4vw, 2.3rem);
  font-weight: 500;
  line-height: 1;
}

.case-narrative {
  display: grid;
  grid-template-columns: minmax(220px, 0.52fr) minmax(0, 1fr);
  gap: 4rem;
  align-items: start;
}

.case-narrative + .case-narrative {
  padding-top: 4rem;
  border-top: 1px solid var(--border);
}

.case-narrative h2 {
  position: sticky;
  top: 7rem;
  color: var(--blue);
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 500;
  line-height: 1.12;
}

.case-narrative-copy p {
  max-width: 68ch;
  margin-bottom: 1.2rem;
  color: var(--text-2);
}

.case-narrative-copy p:first-child {
  color: var(--text);
  font-family: var(--serif);
  font-size: var(--fs-lead);
  line-height: 1.5;
}

.research-thesis-stack {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
}

.research-thesis-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--gold);
}

.research-thesis-card h2 {
  margin-bottom: 1rem;
  color: var(--blue);
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  font-weight: 500;
  line-height: 1.05;
}

.research-thesis-card .document-meta {
  margin-top: 1.2rem;
}

.research-thesis-card blockquote {
  margin-top: 1.5rem;
  margin-bottom: 0;
}

.research-question-grid,
.research-framework-grid {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: start;
}

.research-question-copy {
  max-width: 760px;
}

.research-question-copy blockquote {
  margin: 0 0 1.5rem;
  padding: 0.9rem 0 0.9rem 1.35rem;
  border-left: 1px solid var(--gold);
}

.research-question-copy blockquote p {
  color: var(--blue);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  line-height: 1.28;
}

.research-question-copy > p,
.research-thesis-card > div:last-child > p,
.research-framework-intro > p,
.research-position > p {
  color: var(--text-2);
  line-height: 1.7;
}

.research-question-copy > p + p,
.research-thesis-card > div:last-child > p + p,
.research-position > p + p {
  margin-top: 1rem;
}

.research-thesis-card > div:last-child blockquote {
  padding: 0.85rem 0 0.85rem 1.2rem;
  border-left: 1px solid var(--gold);
  background: transparent;
}

.research-thesis-card > div:last-child blockquote p {
  color: var(--blue);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.3;
}

.research-framework-flow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 0;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--border);
}

.research-framework-flow article {
  padding: clamp(1.35rem, 2.5vw, 2rem);
  background: #FFFFFF;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.research-framework-flow article:nth-of-type(2n) {
  border-right: 0;
}

.research-framework-flow article:nth-of-type(n + 3) {
  border-bottom: 0;
}

.research-framework-flow span,
.research-field-grid span {
  color: var(--gold-dark);
  font-size: var(--fs-label);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.research-framework-flow h3,
.research-field-grid h3,
.research-applied-grid h3 {
  margin: 0.65rem 0 0.85rem;
  color: var(--blue);
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 500;
  line-height: 1.1;
}

.research-framework-flow p,
.research-field-grid p,
.research-applied-grid p {
  color: var(--text-2);
  font-size: var(--fs-small);
  line-height: 1.6;
}

.research-framework-return {
  grid-column: 1 / -1;
  padding: 0.8rem 1.5rem;
  color: var(--gold-dark);
  font-size: var(--fs-label);
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
  border-top: 1px solid var(--border);
  background: rgba(173, 127, 54, 0.08);
}

.research-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 2.5rem;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--border);
}

.research-field-grid article {
  min-height: 260px;
  padding: clamp(1.35rem, 3vw, 2rem);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #FFFFFF;
}

.research-field-grid article:nth-child(2n) {
  border-right: 0;
}

.research-field-grid article:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.research-field-grid small {
  display: block;
  margin-top: 1.3rem;
  color: var(--gold-dark);
  line-height: 1.5;
}

.research-applied-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2.5rem;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--border);
}

.research-applied-grid article {
  padding: clamp(1.35rem, 3vw, 2rem);
  border-right: 1px solid var(--border);
}

.research-applied-grid article:last-child {
  border-right: 0;
}

.research-applied-grid .text-link {
  display: inline-block;
  margin-top: 1.2rem;
}

.research-position {
  max-width: 900px;
}

.research-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin-top: 1.75rem;
}

.research-lab-feature,
.lab-opening-grid,
.lab-two-column {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}

.research-lab-feature {
  padding: clamp(2rem, 5vw, 3.5rem);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  background: #fff;
}

.research-lab-feature p:not(.label),
.lab-page .narrative p,
.lab-two-column p,
.lab-closing p {
  color: var(--text-2);
  font-size: var(--fs-body);
  line-height: 1.75;
}

.research-lab-feature .text-link {
  display: inline-block;
  margin-top: 1.35rem;
}

.lab-two-column > article,
.lab-stage-grid article,
.lab-capacity-grid article,
.lab-collaborator-grid article {
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid var(--border);
  background: #fff;
}

.lab-two-column h2,
.lab-stage-grid h3,
.lab-capacity-grid h3,
.lab-collaborator-grid h3 {
  margin: 0.55rem 0 0.85rem;
  color: var(--blue);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 500;
  line-height: 1.12;
}

.lab-stage-grid,
.lab-collaborator-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 2rem;
}

.lab-stage-grid span {
  color: var(--gold-dark);
  font-size: var(--fs-label);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lab-capacity-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 2rem;
}

.lab-capacity-grid article {
  padding: 1.15rem;
}

.lab-capacity-grid h3 {
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
}

.lab-capacity-grid p,
.lab-stage-grid p,
.lab-collaborator-grid p,
.lab-question-list {
  color: var(--text-2);
  font-size: var(--fs-small);
  line-height: 1.65;
}

.lab-practice-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  justify-content: center;
  padding: clamp(1.25rem, 3vw, 2rem);
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--border);
  background: #fff;
}

.lab-practice-flow span {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--blue);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.1;
}

.lab-practice-flow span + span::before {
  content: "→";
  color: var(--gold-dark);
  font-family: var(--sans);
  font-size: 1rem;
}

.lab-question-list {
  display: grid;
  gap: 0.9rem;
  margin: 1rem 0 0;
  padding-left: 1.1rem;
}

.lab-note {
  margin-top: 1.5rem;
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.lab-closing {
  max-width: 920px;
}

.lab-closing .btn {
  margin-top: 1.4rem;
}

@media (max-width: 900px) {
  .research-question-grid,
  .research-framework-grid,
  .research-thesis-card,
  .research-lab-feature,
  .lab-opening-grid,
  .lab-two-column {
    grid-template-columns: 1fr;
  }

  .research-framework-flow {
    grid-template-columns: 1fr;
  }

  .research-framework-flow article,
  .research-framework-flow article:nth-of-type(2n),
  .research-framework-flow article:nth-of-type(n + 3) {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .research-framework-flow article:nth-of-type(4) {
    border-bottom: 0;
  }

  .research-lab-feature {
    padding: clamp(1.5rem, 7vw, 2.25rem);
    gap: 1rem;
  }

  .research-applied-grid {
    grid-template-columns: 1fr;
  }

  .lab-stage-grid,
  .lab-capacity-grid,
  .lab-collaborator-grid {
    grid-template-columns: 1fr;
  }

  .research-applied-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .research-applied-grid article:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 620px) {
  .research-field-grid {
    grid-template-columns: 1fr;
  }

  .research-field-grid article,
  .research-field-grid article:nth-child(2n),
  .research-field-grid article:nth-last-child(-n + 2) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .research-field-grid article:last-child {
    border-bottom: 0;
  }
}

.press-gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.press-gallery figure {
  margin: 0;
  background: #FFFFFF;
  border: 1px solid var(--border);
}

.press-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  display: block;
}

.press-gallery-feature {
  grid-row: span 3;
}

.press-gallery-feature img {
  aspect-ratio: 4 / 5;
  object-position: top;
}

.press-gallery figcaption {
  padding: 1rem 1rem 1.1rem;
  color: var(--text-2);
  font-size: var(--fs-small);
  line-height: 1.55;
}

.press-gallery figcaption span {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--blue);
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-image-band {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
}

.case-image-band figure {
  margin: 0;
}

.case-image-band img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.case-image-band figure:nth-child(2) img {
  min-height: 260px;
}

.case-image-band figure:only-child {
  grid-column: 1 / -1;
}

.peace-timeline {
  display: grid;
  gap: 0;
}

.peace-day {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(280px, 0.85fr);
  gap: clamp(1.5rem, 3vw, 2.4rem);
  padding: clamp(2rem, 4vw, 3rem) 0;
  border-top: 1px solid var(--gold);
}

.peace-day:first-child {
  padding-top: 0;
  border-top: 0;
}

.peace-day h2 {
  margin-bottom: 1rem;
  color: var(--blue);
  font-family: var(--serif);
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 500;
  line-height: 1.08;
}

.peace-day p {
  max-width: 68ch;
  color: var(--text-2);
}

.peace-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  align-content: start;
}

.peace-photo-grid figure {
  margin: 0;
  background: #FFFFFF;
}

.peace-photo-grid figure:nth-child(3) {
  grid-column: 1 / -1;
}

.peace-photo-grid-single {
  grid-template-columns: 1fr;
}

.peace-photo-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  max-height: 220px;
  object-fit: cover;
}

.peace-photo-grid figcaption {
  padding: 0.55rem 0 0;
  color: var(--text-2);
  font-size: 0.78rem;
  line-height: 1.45;
}

.peace-day-feature {
  grid-template-columns: 1fr;
  gap: clamp(1.4rem, 3vw, 2rem);
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}

.peace-day-feature > div:first-child {
  max-width: 820px;
}

.peace-photo-grid-feature {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.8rem, 2vw, 1rem);
}

.peace-photo-grid-feature figure:nth-child(1) {
  grid-column: span 2;
}

.peace-photo-grid-feature figure:nth-child(2) {
  grid-column: span 2;
}

.peace-photo-grid-feature figure:nth-child(3),
.peace-photo-grid-feature figure:nth-child(4) {
  grid-column: span 2;
}

.peace-photo-grid-feature img {
  aspect-ratio: 4 / 3;
  max-height: 360px;
}

.huellas-experience {
  display: grid;
  gap: 2rem;
}

.huellas-experience-head {
  max-width: 860px;
}

.huellas-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(220px, 0.85fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.huellas-gallery figure {
  display: grid;
  margin: 0;
  background: #FFFFFF;
}

.huellas-gallery-feature {
  grid-row: 1 / span 2;
}

.huellas-gallery img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.huellas-gallery-feature img {
  min-height: 560px;
}

.huellas-gallery figcaption {
  padding: 0.85rem 1rem 1rem;
  color: var(--text-2);
  font-size: 0.86rem;
  line-height: 1.5;
}

.huellas-gallery figcaption span {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--gold-dark);
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-video-panel {
  width: min(100%, 760px);
  margin: 2rem auto 0;
}

.case-video-panel > img {
  display: block;
  width: 100%;
  max-height: 430px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.case-video-panel > img.image-position-top {
  object-position: center top;
}

.case-study-grid .case-video-panel {
  width: 100%;
  margin: 0;
}

.case-study-grid .case-video-panel > img {
  max-height: 360px;
  aspect-ratio: 4 / 3;
}

.case-video-panel video,
.case-video-panel iframe,
.case-video-link {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--ink);
  border: 1px solid var(--gold);
  padding: 8px;
  box-sizing: border-box;
}

.case-video-panel iframe {
  border: 1px solid var(--gold);
}

.case-video-link {
  position: relative;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
}

.case-video-link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  transition: transform 180ms ease, opacity 180ms ease;
}

.case-video-link span {
  position: absolute;
  left: 50%;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(220px, calc(100% - 2rem));
  min-height: 54px;
  padding: 0.85rem 1.4rem;
  background: rgba(5, 22, 34, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  font-size: var(--fs-small);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
}

.case-video-link:hover img {
  opacity: 0.95;
  transform: scale(1.025);
}

.case-video-panel figcaption {
  margin-top: 0.85rem;
  color: var(--text-2);
  font-size: var(--fs-small);
  line-height: 1.5;
}

.case-video-panel figcaption span {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--gold-dark);
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.residency-structure {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.residency-panel {
  display: grid;
  gap: 2rem;
}

.residency-structure article {
  padding: 1.5rem;
  background: #FFFFFF;
  border-top: 3px solid var(--gold);
}

.residency-structure h3 {
  margin-bottom: 0.7rem;
  color: var(--blue);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.4vw, 2.1rem);
  font-weight: 500;
  line-height: 1.15;
}

.residency-structure p {
  color: var(--text-2);
}

.pull-statement {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 2.5rem;
  align-items: end;
}

.pull-statement p {
  max-width: none;
  color: var(--blue);
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  font-weight: 500;
  line-height: 1;
}

.pull-statement span {
  display: block;
  padding-top: 1.25rem;
  border-top: 2px solid var(--gold);
  color: var(--text-2);
  font-size: var(--fs-lead);
  line-height: 1.45;
}

.relationship-cycle-panel {
  display: grid;
  gap: 2rem;
}

.relationship-cycle {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  list-style: none;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--border);
}

.relationship-cycle li {
  position: relative;
  min-height: 150px;
  padding: 1.25rem 1rem 1.5rem;
  color: var(--blue);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.05;
}

.relationship-cycle li + li {
  border-left: 1px solid var(--border);
}

.relationship-cycle li + li::before {
  content: "→";
  position: absolute;
  top: 1rem;
  left: -0.65rem;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 1rem;
}

.relationship-cycle span {
  display: block;
  margin-bottom: 3rem;
  color: var(--gold-dark);
  font-family: var(--sans);
  font-size: var(--fs-label);
  letter-spacing: 0.12em;
}

.sea-evidence {
  display: grid;
  gap: 2rem;
}

.sea-evidence-head {
  max-width: 880px;
}

.sea-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.sea-gallery figure {
  margin: 0;
  background: #FFFFFF;
}

.sea-gallery-feature {
  grid-column: span 2;
  grid-row: span 2;
}

.sea-gallery-portrait {
  grid-row: span 2;
}

.sea-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.sea-gallery-portrait img {
  height: 100%;
  min-height: 520px;
  aspect-ratio: auto;
}

.sea-gallery img.image-position-top {
  object-position: center top;
}

.sea-gallery-feature img {
  height: 100%;
  min-height: 520px;
}

.sea-gallery figcaption {
  padding: 0.75rem 0.85rem 0.9rem;
  color: var(--text-2);
  font-size: 0.84rem;
  line-height: 1.45;
}

.sea-gallery figcaption span {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--blue);
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sea-gallery-expanded {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 0.85rem;
  margin-top: 2rem;
}

.sea-gallery-expanded figure {
  overflow: hidden;
  border: 1px solid var(--border);
}

.sea-gallery-expanded img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.sea-gallery-expanded .sea-gallery-feature {
  grid-column: span 2;
  grid-row: span 2;
}

.sea-gallery-expanded .sea-gallery-feature img {
  min-height: 460px;
}

.sea-gallery-expanded .sea-gallery-wide {
  grid-column: span 2;
}

.sea-gallery-expanded .sea-gallery-tall {
  grid-row: span 2;
}

.sea-gallery-expanded .sea-gallery-tall img {
  aspect-ratio: auto;
  min-height: 390px;
}

.huellas-mosaic {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 0.85rem;
  margin-top: 0;
}

.huellas-frame-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  align-items: stretch;
}

.huellas-frame-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(173, 127, 54, 0.42);
  background: var(--warm);
}

.huellas-frame-grid img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.huellas-movement + .huellas-movement {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--gold);
}

.huellas-movement-head {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: end;
  margin-bottom: 1.15rem;
}

.huellas-movement-head h3 {
  margin: 0;
  color: var(--blue);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  font-weight: 500;
  line-height: 1.08;
}

.huellas-mosaic figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
}

.huellas-mosaic img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.huellas-mosaic-feature {
  grid-column: span 2;
  grid-row: span 2;
}

.huellas-mosaic-feature img {
  min-height: 460px;
}

.huellas-mosaic-wide {
  grid-column: span 2;
}

.huellas-mosaic-tall {
  grid-row: span 2;
}

.huellas-mosaic-tall img {
  aspect-ratio: auto;
  min-height: 390px;
}

@media (max-width: 760px) {
  .huellas-frame-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .huellas-movement-head {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
}

@media (max-width: 520px) {
  .huellas-frame-grid {
    grid-template-columns: 1fr;
  }
}

.journey-hero-visual {
  position: relative;
  min-height: auto;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--blue);
}

.journey-hero-media {
  position: absolute;
  inset: 0;
  margin: 0;
}

.journey-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(28, 46, 74, 0.94), rgba(28, 46, 74, 0.82) 54%, rgba(28, 46, 74, 0.62));
}

.journey-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) contrast(0.95);
  opacity: 0.42;
}

.journey-hero-content {
  position: relative;
  z-index: 1;
  padding-top: clamp(6rem, 12vw, 9rem);
  padding-bottom: clamp(4rem, 8vw, 6rem);
  color: #FFFFFF;
}

.journey-hero-content .breadcrumb,
.journey-hero-content .label {
  color: rgba(255, 255, 255, 0.72);
}

.journey-hero-content h1 {
  max-width: 850px;
  margin: 1rem 0 1.5rem;
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1;
}

.journey-hero-content p:not(.breadcrumb):not(.label) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.84);
  font-size: var(--fs-lead);
  line-height: 1.55;
}

.journey-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.journey-snapshot-section {
  padding: 0;
  background: var(--bg);
}

.journey-snapshot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--border);
}

.journey-snapshot-grid article {
  min-height: 132px;
  padding: 2rem;
  border-right: 1px solid var(--border);
  color: var(--blue);
}

.journey-snapshot-grid article:last-child {
  border-right: 0;
}

.journey-snapshot-grid span {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  line-height: 0.9;
}

.journey-snapshot-grid .journey-snapshot-word {
  min-height: 2.3em;
  display: flex;
  align-items: flex-end;
  font-size: clamp(1.55rem, 2.5vw, 2.35rem);
  line-height: 1;
}

.journey-snapshot-grid p {
  color: var(--text-2);
  font-size: var(--fs-small);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.journey-intro-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1fr);
  gap: 4rem;
  align-items: start;
}

.journey-intro-grid .section-title {
  color: var(--blue);
}

.journey-feature-quote {
  margin-top: 2rem;
  padding: 1.4rem 1.6rem;
  border-left: 3px solid var(--gold);
  background: #FFFFFF;
}

.journey-feature-quote p {
  color: var(--blue);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.4vw, 2.1rem);
  line-height: 1.15;
}

.journey-accordion {
  position: relative;
  display: grid;
  gap: 1.15rem;
  padding-left: 2.25rem;
  margin-top: 2.5rem;
}

.journey-accordion::before {
  content: "";
  position: absolute;
  top: 0.75rem;
  bottom: 0.75rem;
  left: 0.55rem;
  width: 1px;
  background: linear-gradient(var(--gold), var(--blue), var(--teal), var(--gold));
}

.journey-moment::before {
  content: "";
  position: absolute;
  top: 2.15rem;
  left: -2.25rem;
  width: 0.72rem;
  height: 0.72rem;
  border: 2px solid var(--bg);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}

.journey-moment {
  position: relative;
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  background: #FFFFFF;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.journey-moment:nth-child(4n + 1) {
  border-left-color: var(--gold);
}

.journey-moment:nth-child(4n + 1) .journey-number,
.journey-moment:nth-child(4n + 1) .journey-year {
  color: var(--gold-dark);
}

.journey-moment:nth-child(4n + 2) {
  border-left-color: var(--blue);
  background: linear-gradient(90deg, rgba(28, 46, 74, 0.055), #FFFFFF 32%);
}

.journey-moment:nth-child(4n + 2) .journey-number,
.journey-moment:nth-child(4n + 2) .journey-year,
.journey-moment:nth-child(4n + 2) summary strong {
  color: var(--blue);
}

.journey-moment:nth-child(4n + 3) {
  border-left-color: var(--teal);
  background: linear-gradient(90deg, rgba(27, 160, 152, 0.07), #FFFFFF 32%);
}

.journey-moment:nth-child(4n + 3) .journey-number,
.journey-moment:nth-child(4n + 3) .journey-year {
  color: var(--teal-dark);
}

.journey-moment:nth-child(4n + 4) {
  border-left-color: var(--sand);
  background: linear-gradient(90deg, rgba(222, 185, 146, 0.16), #FFFFFF 32%);
}

.journey-moment:nth-child(4n + 4) .journey-number,
.journey-moment:nth-child(4n + 4) .journey-year {
  color: var(--sand-text);
}

.journey-moment:hover {
  border-color: rgba(184, 150, 90, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(5, 22, 34, 0.08);
}

.journey-moment summary {
  display: grid;
  grid-template-columns: 4rem 8rem minmax(160px, 0.3fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: center;
  padding: 1.2rem 1.4rem;
  cursor: pointer;
  list-style: none;
}

.journey-moment-no-thumb summary {
  grid-template-columns: 4rem 8rem minmax(0, 1fr);
}

.journey-moment-no-thumb summary::after {
  grid-column: 3;
}

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

.journey-number {
  color: var(--gold-dark);
  font-size: var(--fs-label);
  letter-spacing: 0.16em;
}

.journey-year {
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: 1.8rem;
  line-height: 1;
}

.journey-thumb {
  display: block;
}

.journey-thumb img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid var(--border);
}

.journey-moment summary strong {
  display: block;
  margin: 0.25rem 0 0.35rem;
  color: var(--blue);
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 500;
  line-height: 1.12;
}

.journey-moment summary em {
  display: block;
  max-width: 60ch;
  color: var(--text-2);
  font-style: normal;
}

.journey-moment summary::after {
  content: "+";
  grid-column: 4;
  justify-self: end;
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}

.journey-moment[open] summary::after {
  content: "−";
}

.journey-pull-quote {
  max-width: 760px;
  margin: clamp(0.75rem, 2vw, 1.25rem) 0 clamp(0.75rem, 2vw, 1.25rem) clamp(1rem, 3vw, 2.5rem);
  padding: 0.8rem 0 0.8rem clamp(1rem, 2vw, 1.4rem);
  border: 0;
  border-left: 1px solid var(--gold);
  background: transparent;
}

.journey-pull-quote p {
  max-width: 680px;
  color: var(--text-2);
  font-family: var(--serif);
  font-size: clamp(1.18rem, 1.8vw, 1.55rem);
  font-style: italic;
  line-height: 1.35;
}

.journey-detail {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: 2rem;
  padding: 0 1.4rem 1.8rem 15rem;
}

.journey-detail figure {
  margin: 0;
}

.journey-detail img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--gold);
  padding: 6px;
  background: var(--bg);
}

.journey-detail figcaption {
  padding-top: 0.65rem;
  color: var(--gold-dark);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  line-height: 1.45;
  text-transform: uppercase;
}

.journey-detail p {
  max-width: 68ch;
  color: var(--text-2);
}

.journey-detail p + p {
  margin-top: 1rem;
}

.journey-detail-text {
  grid-template-columns: minmax(0, 1fr);
}

.journey-detail-text > div {
  max-width: 820px;
}

.journey-detail blockquote {
  margin: 1.4rem 0;
  padding: 1rem 1.25rem;
  border-left: 2px solid var(--gold);
  background: var(--bg-alt);
}

.journey-detail blockquote p {
  color: var(--text);
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.2;
}

.journey-route {
  display: grid;
  grid-template-columns: minmax(150px, 0.35fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
  margin-top: 2.5rem;
  padding: 1.15rem 0;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--border);
}

.journey-route > p {
  color: var(--gold-dark);
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.journey-route > div {
  display: flex;
  gap: clamp(0.55rem, 2vw, 1.4rem);
  align-items: center;
  justify-content: flex-end;
  color: var(--blue);
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.55rem);
}

.journey-route i {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-style: normal;
}

.journey-cta-secondary {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.75rem;
  justify-content: center;
  margin-top: 1.35rem;
}

.journey-cta-secondary a {
  color: rgba(255, 255, 255, 0.82);
  font-size: var(--fs-small);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 5px;
}

@media (max-width: 700px) {
  .journey-accordion {
    padding-left: 1.35rem;
  }

  .journey-accordion::before {
    left: 0.2rem;
  }

  .journey-moment::before {
    left: -1.48rem;
  }

  .journey-route {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .journey-route > div {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .journey-snapshot-grid .journey-snapshot-word {
    min-height: 0;
  }
}

.archive-feature-list {
  gap: 1rem;
}

.archive-feature-thumb {
  position: relative;
  display: block;
  margin-bottom: 0.5rem;
  overflow: hidden;
  border-bottom: 0;
  background: var(--bg-alt);
}

.archive-feature-thumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.archive-feature-thumb span,
.archive-episode-thumb span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #FFFFFF;
  font-size: 2rem;
  background: rgba(28, 46, 74, 0.28);
  transition: background 0.25s ease;
}

.archive-feature-thumb:hover img,
.archive-episode-card:hover img {
  transform: scale(1.04);
}

.archive-feature-thumb:hover span,
.archive-episode-thumb:hover span {
  background: rgba(28, 46, 74, 0.42);
}

.archive-episode-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}

.archive-season {
  margin-top: 3rem;
}

.archive-season + .archive-season {
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.archive-season-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.15rem;
}

.archive-season-head h3 {
  color: var(--blue);
  font-size: clamp(1.65rem, 2.4vw, 2.2rem);
}

.archive-season-head span {
  color: var(--gold-dark);
  font-size: var(--fs-label);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.archive-episode-card {
  display: grid;
  grid-template-rows: auto 1fr;
  border-top: 1px solid var(--gold);
  background: #FFFFFF;
}

.archive-episode-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  border-bottom: 0;
  background: var(--bg-alt);
}

.archive-episode-thumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--bg-alt);
  transition: transform 0.35s ease;
}

.archive-episode-copy {
  padding: 0.85rem 0.85rem 1rem;
}

.archive-episode-copy h3 {
  margin-bottom: 0.15rem;
  color: var(--blue);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.6vw, 1.45rem);
  font-weight: 500;
  line-height: 1.1;
}

.archive-country {
  margin-bottom: 0.7rem !important;
  color: var(--gold-dark) !important;
  font-size: var(--fs-label) !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.archive-episode-copy p {
  margin-bottom: 0.85rem;
  color: var(--text-2);
  font-size: 0.86rem;
  line-height: 1.55;
}

.archive-channel-link {
  margin-top: 2rem;
}

/* ============================================================
   Area pages
   ============================================================ */

.cultural-hero-media img {
  aspect-ratio: 4 / 3;
  object-position: center;
}

.area-intro {
  max-width: 960px;
  margin-bottom: 4rem;
}

.area-intro p {
  color: var(--blue);
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
}

.area-intro .area-family-line {
  max-width: 520px;
  margin-bottom: 1.35rem;
  color: var(--gold-dark);
  font-family: var(--sans);
  font-size: var(--fs-small);
  font-weight: 400;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.cultural-case-stack {
  display: grid;
  gap: 0;
}

.cultural-case {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1fr);
  gap: 4rem;
  padding: 3rem 0;
  border-top: 1px solid var(--border);
}

.cultural-case:last-child {
  border-bottom: 1px solid var(--border);
}

.cultural-case-panel {
  margin: 1rem 0;
  padding: 2.2rem;
  background: #FFFFFF;
  border: 0;
  border-left: 4px solid var(--gold);
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.045);
}

.encounter-banner {
  overflow: hidden;
  margin: 1.5rem 0;
  background: transparent;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  box-shadow: none;
}

.encounter-banner-copy {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(0, 1fr);
  gap: 3rem;
  max-width: none;
  padding: 2.4rem 0 2rem;
}

.encounter-banner-copy .section-title {
  max-width: 760px;
}

.encounter-banner-copy p:not(.label) {
  color: var(--text-2);
}

.encounter-banner-copy .link-pair {
  grid-column: 2;
  margin-top: 1rem;
}

.encounter-banner-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 0 18px 18px 0;
}

.encounter-banner-media img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  object-position: center 52%;
  filter: saturate(0.96) contrast(1.02);
}

.cultural-principle {
  max-width: 880px;
}

.cultural-principle p {
  color: var(--blue);
  font-family: var(--serif);
  font-size: var(--fs-h3);
  line-height: 1.25;
}

.cultural-principle p + p {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gold);
}

.educational-hero-media img {
  object-position: center 58%;
}

.organizational-hero-media img {
  object-position: center 55%;
}

.area-opening-section,
.educational-opening-section {
  padding-bottom: 2rem;
}

.area-path-section,
.educational-path-section {
  background: #FFFFFF;
}

.area-path,
.educational-path {
  display: grid;
  grid-template-columns: minmax(240px, 0.56fr) minmax(0, 1fr);
  gap: 4rem;
  align-items: start;
}

.area-path-head,
.educational-path-head {
  position: sticky;
  top: 100px;
  padding-top: 0.5rem;
}

.area-moments,
.educational-moments {
  display: grid;
  gap: 2rem;
}

.area-moment,
.educational-moment {
  position: relative;
  padding: 2.2rem 0 2.2rem 5.2rem;
  border-top: 1px solid var(--border);
}

.area-moment:last-child,
.educational-moment:last-child {
  border-bottom: 1px solid var(--border);
}

.area-moment-featured,
.educational-moment-featured {
  margin-left: clamp(0rem, 5vw, 4rem);
  padding: 2.2rem 2.2rem 2.2rem 5.2rem;
  background: var(--bg-alt);
  border: 0;
  border-left: 4px solid var(--gold);
  border-radius: 0 16px 16px 0;
}

.area-step,
.education-step {
  position: absolute;
  left: 0;
  top: 2.2rem;
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: 2.2rem;
  line-height: 1;
}

.area-moment-featured .area-step,
.educational-moment-featured .education-step {
  left: 1.6rem;
}

.area-moment .section-title,
.educational-moment .section-title {
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.area-moment p:not(.label),
.educational-moment p:not(.label) {
  color: var(--text-2);
}

.area-proof,
.educational-proof {
  display: flex;
  gap: 0.75rem 1.25rem;
  align-items: baseline;
  flex-wrap: wrap;
  margin-top: 1.6rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.area-proof span,
.educational-proof span {
  color: var(--gold-dark);
  font-size: var(--fs-label);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.area-moment-with-media {
  padding: 0;
}

.area-moment-with-media .area-step {
  left: 1.6rem;
  top: 2.35rem;
  z-index: 1;
}

.area-moment-with-media .encounter-banner-copy {
  padding: 2.4rem 2.4rem 2rem 5.2rem;
}

.area-principle-section,
.educational-principle-section {
  background: var(--blue);
}

.area-principle,
.educational-principle {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1fr);
  gap: 3rem;
  max-width: 1040px;
  align-items: start;
}

.area-principle p,
.educational-principle p {
  color: #FFFFFF;
}

.area-principle p + p,
.educational-principle p + p {
  margin-top: 0;
  padding-top: 0;
  padding-left: 3rem;
  border-top: 0;
  border-left: 1px solid var(--gold);
}

.not-sure-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1fr);
  gap: 4rem;
  align-items: end;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gold);
}

/* ============================================================
   CTA y footer
   ============================================================ */

.cta-band {
  position: relative;
  overflow: hidden;
  padding: var(--section-pad) 0;
  background: var(--blue);
  color: #FFFFFF;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
}

.cta-inner .gold-rule {
  margin-left: auto;
  margin-right: auto;
}

.cta-inner > p,
.cta-inner > .label,
.cta-inner > .cta-title {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.cta-band .label {
  color: var(--gold);
  opacity: 0.85;
}

.cta-band .cta-title {
  color: #FFFFFF;
  font-weight: 400;
}

.cta-band .btn-light {
  background: #FFFFFF;
  color: var(--blue);
}

.cta-band .btn-light:hover {
  background: rgba(255, 255, 255, 0.85);
}

.cta-title {
  margin-bottom: 2.5rem;
  color: #FFFFFF;
  font-family: var(--serif);
  font-size: var(--fs-h2);
  font-weight: 400;
  line-height: 1.15;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.site-footer {
  padding: 4.5rem 0 2.5rem;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
  color: var(--text-2);
  font-size: var(--fs-small);
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 900px) {
  :root {
    --section-pad: 5rem;
  }

  .nav-links {
    display: none;
  }

  .site-map {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-mobile {
    display: block;
    max-height: 0;
    overflow: hidden;
    background: var(--bg);
    border-bottom: 0 solid var(--border);
    transition: max-height 0.35s ease;
  }

  #nav-toggle:checked ~ .nav-mobile {
    max-height: calc(100vh - 72px);
    overflow: auto;
    border-bottom-width: 1px;
  }

  #nav-toggle:checked ~ .nav-inner .nav-hamburger span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }

  #nav-toggle:checked ~ .nav-inner .nav-hamburger span:nth-child(2) {
    opacity: 0;
  }

  #nav-toggle:checked ~ .nav-inner .nav-hamburger span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }

  .nav-mobile ul {
    list-style: none;
    padding: 1rem 2rem 1.5rem;
  }

  .nav-mobile a {
    display: block;
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    font-size: var(--fs-body);
  }

  .nav-mobile .mobile-group {
    padding: 1rem 0 0.25rem;
    color: var(--gold-dark);
    font-size: var(--fs-label);
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }

  .nav-mobile .mobile-sub a {
    padding-left: 1rem;
    color: var(--text-2);
  }

  .pathway-list,
  .latest-grid,
  .about-bridges-grid {
    grid-template-columns: 1fr;
  }

  .pathway-list a,
  .pathway-list a + a,
  .latest-item a,
  .latest-item + .latest-item a,
  .about-bridges-grid article,
  .about-bridges-grid article + article {
    padding-left: 0;
    padding-right: 0;
  }

  .pathway-list a,
  .latest-item,
  .about-bridges-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .pathway-list a:last-child,
  .latest-item:last-child,
  .about-bridges-grid article:last-child {
    border-bottom: 0;
  }

  .pathway-list a,
  .about-bridges-grid article {
    min-height: 0;
  }

  .hero {
    padding: 5.5rem 0 5rem;
  }

  .feature-grid,
  .story-layout,
  .journal-layout,
  .journal-card,
  .approach-panel,
  .approach-row,
  .how-work-grid,
  .area-path,
  .educational-path,
  .bridge-mapping-grid,
  .bridge-page-row,
  .bridge-opening-row,
  .bridge-why-panel,
  .project-case,
  .project-case-featured,
  .projects-reveal,
  .case-hero-grid,
  .case-narrative,
  .case-image-band,
  .case-study-grid,
  .peace-day,
  .peace-photo-grid,
  .huellas-gallery,
  .residency-structure,
  .pull-statement,
  .relationship-cycle,
  .sea-gallery,
  .cultural-case,
  .area-principle,
  .educational-principle,
  .not-sure-panel,
  .in-practice-panel,
  .person-row,
  .profile-row,
  .about-work-block,
  .about-work-grid a,
  .about-difference,
  .about-origin-block,
  .about-row,
  .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .peace-photo-grid-feature figure,
  .peace-photo-grid-feature figure:nth-child(1),
  .peace-photo-grid-feature figure:nth-child(2),
  .peace-photo-grid-feature figure:nth-child(3),
  .peace-photo-grid-feature figure:nth-child(4) {
    grid-column: auto;
  }

  .about-row,
  .about-work-block,
  .about-difference,
  .about-origin-block,
  .approach-row,
  .bridge-mapping-grid,
  .in-practice-panel {
    gap: 1.5rem;
  }

  .approach-row {
    padding: 2.6rem 0;
  }

  .approach-foundation-head,
  .logic-primary,
  .logic-dialogue,
  .logic-research {
    margin-left: 0;
  }

  .logic-primary,
  .logic-dialogue,
  .logic-research {
    padding-left: 4.2rem;
  }

  .logic-primary {
    padding-top: 2rem;
    padding-right: 1.5rem;
    padding-bottom: 2rem;
  }

  .logic-row::before,
  .logic-primary::before {
    left: 0;
    top: 2.4rem;
  }

  .logic-primary::before {
    left: 1.1rem;
    top: 2.1rem;
  }

  .logic-dialogue::after {
    display: none;
  }

  .approach-theory {
    padding: 1.5rem;
  }

  .toc-steps {
    align-items: stretch;
    flex-direction: column;
  }

  .toc-steps span:not(.arrow) {
    justify-content: center;
  }

  .toc-steps .arrow {
    justify-content: center;
    transform: rotate(90deg);
  }

  .how-work-grid {
    gap: 0;
    border-bottom: 0;
  }

  .work-step-card {
    padding: 1.5rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .person-media {
    max-width: 320px;
  }

  .profile-row {
    gap: 1.5rem;
  }

  .bridge-opening-row {
    gap: 1.5rem;
    padding: 2.6rem 0 3rem;
  }

  .bridge-why-panel {
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .bridge-why-copy {
    padding-left: 0;
    padding-top: 1.25rem;
    border-left: 0;
    border-top: 2px solid var(--gold);
  }

  .project-case-media {
    position: static;
    max-width: 520px;
  }

  .case-study-grid section {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .archive-episode-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-meta-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-meta-row div:nth-child(2) {
    border-right: 0;
  }

  .case-meta-row div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }

  .case-narrative h2 {
    position: static;
  }

  .huellas-gallery-feature {
    grid-row: auto;
  }

  .huellas-gallery img,
  .huellas-gallery-feature img {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .sea-gallery-feature {
    grid-column: auto;
    grid-row: auto;
  }

  .sea-gallery-feature img {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .relationship-cycle li,
  .relationship-cycle li + li {
    min-height: 0;
    border-left: 0;
    border-top: 1px solid var(--border);
  }

  .relationship-cycle li:first-child {
    border-top: 0;
  }

  .relationship-cycle li + li::before {
    top: -0.8rem;
    left: 1rem;
    transform: rotate(90deg);
  }

  .relationship-cycle span {
    margin-bottom: 1.5rem;
  }

  .journey-item {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .journey-intro-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .journey-snapshot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .journey-moment summary {
    grid-template-columns: 3.5rem minmax(0, 1fr);
  }

  .journey-year,
  .journey-thumb,
  .journey-summary-copy {
    grid-column: 2;
  }

  .journey-detail {
    grid-template-columns: 1fr;
    padding: 0 1.2rem 1.5rem;
  }

  .journey-moment summary::after {
    grid-column: 2;
    justify-self: end;
    margin-top: 0;
  }

  .cultural-case,
  .not-sure-panel,
  .area-principle,
  .educational-principle {
    gap: 1.5rem;
  }

  .area-principle p + p,
  .educational-principle p + p {
    padding-left: 0;
    padding-top: 1.5rem;
    border-left: 0;
    border-top: 1px solid var(--gold);
  }

  .area-path-head,
  .educational-path-head {
    position: static;
  }

  .area-moment,
  .area-moment-featured,
  .educational-moment,
  .educational-moment-featured {
    margin-left: 0;
    padding-left: 4rem;
  }

  .area-moment-featured,
  .educational-moment-featured {
    padding-right: 1.4rem;
  }

  .area-moment-featured .area-step,
  .educational-moment-featured .education-step {
    left: 1.2rem;
  }

  .cultural-case-panel {
    padding: 1.5rem;
  }

  .encounter-banner-copy {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 1.5rem;
  }

  .encounter-banner-copy .link-pair {
    grid-column: auto;
  }

  .encounter-banner-media img {
    aspect-ratio: 4 / 3;
  }

  .principle-grid,
  .level-grid,
  .conversation-steps {
    grid-template-columns: 1fr;
  }

  .compact-card {
    grid-template-columns: minmax(180px, 0.5fr) minmax(0, 1fr);
  }

  .compact-card img {
    aspect-ratio: 4 / 3;
  }

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

  .practice-card,
  .practice-card + .practice-card {
    min-height: 0;
    padding: 1.5rem 0 2rem;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .practice-card:last-child {
    border-bottom: 0;
  }

  .practice-number {
    margin-bottom: 1.25rem;
  }
}

@media (max-width: 480px) {
  :root {
    --section-pad: 4rem;
  }

  .container,
  .nav-inner,
  .hero-content {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .nav-logo {
    font-size: var(--fs-lead);
  }

  .hero {
    padding: 4rem 0;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .archive-episode-grid {
    grid-template-columns: 1fr;
  }

  .belief-title {
    font-size: clamp(2rem, 11vw, 3.35rem);
  }

  .compact-card,
  .journal-card {
    grid-template-columns: 1fr;
  }

  .feature-card img {
    aspect-ratio: 16 / 11;
  }

  .journal-card img {
    aspect-ratio: 686 / 762;
  }

  .story-media img {
    height: 420px;
    min-height: 0;
  }

  .page-hero-media img,
  .about-wide-media img,
  .about-inline-media img {
    aspect-ratio: 4 / 3;
  }

  .footer-inner {
    display: grid;
  }
}

/* ============================================================
   Refined calm theme
   Applied from the Bridges for Dialogue visual direction.
   ============================================================ */

:root {
  --bg: #FCFBF9;
  --bg-alt: #F5F1EC;
  --border: rgba(0, 0, 0, 0.06);
  --text: #1A1A1A;
  --text-2: #3A4A4F;
  --blue: #1E2B2E;
  --blue-hover: #2D3E42;
  --gold: #B48B5A;
  --gold-dark: #7A6A5A;
  --ink: #141E20;
  --section-pad: 4.5rem;
  --container: 1240px;
  --measure: 680px;
}

html {
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--bg);
  color: var(--text);
}

.container {
  width: 90%;
  max-width: var(--container);
  padding-left: 0;
  padding-right: 0;
}

.site-nav {
  background: rgba(252, 251, 249, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.nav-inner {
  max-width: var(--container);
  padding: 0.75rem 1.5rem;
}

.nav-logo {
  color: var(--blue);
  font-weight: 500;
  letter-spacing: 0;
}

.nav-logo span {
  color: var(--gold-dark);
  font-weight: 300;
}

.nav-links {
  gap: 1.8rem;
  font-size: 0.9rem;
  font-weight: 400;
}

.nav-links a {
  color: var(--text);
  padding: 0.4rem 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  color: var(--blue);
  border-bottom-color: var(--gold);
}

.nav-cta {
  padding: 0.4rem 1.2rem !important;
  background: var(--blue);
  border-radius: 40px;
  color: #FFFFFF !important;
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: #FFFFFF !important;
}

.nav-dropdown {
  min-width: 180px;
  padding: 0.6rem 0;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.nav-dropdown a {
  color: var(--text);
  padding: 0.4rem 1.2rem;
}

.nav-dropdown a:hover {
  background: var(--bg-alt);
}

.site-map {
  display: none;
  border-top: 1px solid var(--border);
  background: #FFFFFF;
}

.site-map-inner {
  display: grid;
  grid-template-columns: 1.05fr 1.4fr 1.05fr 1.05fr 0.8fr;
  gap: 1.75rem;
  padding-top: 1.1rem;
  padding-bottom: 1.15rem;
}

.site-map section {
  min-width: 0;
}

.site-map p {
  margin-bottom: 0.5rem;
  color: var(--gold-dark);
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.site-map a {
  display: block;
  width: fit-content;
  margin-top: 0.25rem;
  color: var(--text);
  font-size: var(--fs-small);
  line-height: 1.35;
}

.site-map a:hover {
  color: var(--blue);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 4px;
}

.label,
.eyebrow,
.card-kicker {
  margin-bottom: 0.55rem;
  color: var(--gold-dark);
  font-weight: 500;
  letter-spacing: 0.12em;
}

.section-title {
  margin-bottom: 0.85rem;
  color: var(--blue);
  font-weight: 500;
  line-height: 1.2;
}

.section-title em,
.hero-title em,
.belief-title em,
.practice-card em,
.story-copy .lead em,
.approach-panel p em {
  color: var(--gold);
}

.lead,
.hero-text,
.belief-lines,
.narrative p,
.person-copy p:not(.person-role),
.profile-link-list span {
  color: var(--text-2);
}

p,
.lead,
.narrative p,
.belief-lines,
.hero-text {
  max-width: 65ch;
}

.hero-title,
.belief-title,
.section-title {
  max-width: none;
}

.btn,
.button {
  padding: 0.8rem 2rem;
  border: 1.5px solid var(--blue);
  border-radius: 40px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.btn-primary {
  background: var(--blue);
  color: #FFFFFF;
}

.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.btn-ghost,
.button-light,
.button-outline,
.button-dark {
  color: var(--blue);
}

.btn-ghost:hover,
.button:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #FFFFFF;
}

.btn-light {
  background: #FFFFFF;
  border-color: #FFFFFF;
  color: var(--blue);
}

.btn-light:hover {
  background: var(--bg-alt);
  border-color: var(--bg-alt);
  color: var(--blue);
}

.cta-band .label {
  color: var(--gold);
  opacity: 0.85;
}

.cta-band .cta-title {
  color: #FFFFFF;
  font-weight: 400;
}

.cta-band .btn-light {
  background: #FFFFFF;
  border-color: #FFFFFF;
  color: var(--blue);
}

.cta-band .btn-light:hover {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.85);
  color: var(--blue);
}

.text-link {
  display: inline-block;
  padding-bottom: 0;
  border-bottom: 1.5px solid transparent;
  color: var(--gold-dark);
  font-weight: 500;
  letter-spacing: 0.03em;
}

.text-link:hover {
  border-bottom-color: var(--gold);
  color: var(--gold);
}

.hero {
  padding: 4rem 1.5rem 5rem;
  background: linear-gradient(170deg, var(--bg-alt) 0%, var(--bg) 80%);
  text-align: center;
}

.hero-content {
  max-width: 820px;
  margin: 0 auto;
}

.hero-title {
  margin-bottom: 1rem;
  color: var(--blue);
  font-size: clamp(2.6rem, 6vw, 4.7rem);
  font-weight: 500;
  line-height: 1.12;
}

.hero-text {
  max-width: 65ch;
  margin: 0 auto 2rem;
  font-weight: 300;
  line-height: 1.6;
}

.hero-actions {
  justify-content: center;
}

.belief-section {
  background: #FFFFFF;
  text-align: center;
}

.belief-context {
  margin: 0 auto 0.5rem;
}

.belief-title {
  max-width: none;
  margin: 0 auto 1.5rem;
  color: var(--blue);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.2;
}

.belief-lines {
  margin-left: auto;
  margin-right: auto;
}

.section {
  padding: var(--section-pad) 0;
  border-top: 1px solid var(--border);
}

.section-head {
  margin-bottom: 2.5rem;
}

.feature-grid {
  gap: 1.5rem;
  border-top: 0;
  padding-top: 0;
}

.feature-card,
.journal-card,
.practice-card {
  overflow: hidden;
  background: #FFFFFF;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover,
.practice-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.feature-card img,
.journal-card img,
.story-media img,
.page-hero-media img,
.about-wide-media img,
.about-inline-media img,
.person-media img {
  border: 0;
  border-radius: 12px;
  padding: 0;
  background: transparent;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.feature-card img {
  height: 220px;
  aspect-ratio: auto;
}

.large-card img {
  height: 280px;
}

.card-body {
  padding: 1.5rem 1.5rem 2rem;
}

.practice-grid {
  gap: 2rem;
  border-top: 0;
}

.practice-card {
  min-height: 0;
  padding: 2rem 1.8rem;
  border-left: 4px solid var(--gold);
}

.practice-card + .practice-card {
  padding-left: 1.8rem;
}

.practice-number {
  margin-bottom: 0.25rem;
  color: var(--gold);
  opacity: 0.55;
}

.story-section,
.approach-section,
.bridge-mapping {
  border-color: var(--border);
}

.story-layout {
  gap: 2.5rem;
  align-items: center;
}

.story-media img {
  max-height: 420px;
  min-height: 0;
}

.journal-card {
  gap: 2rem;
}

.journal-copy {
  padding: 1.8rem 2rem 2rem 0;
  justify-content: center;
}

.approach-panel {
  display: flex;
  gap: 2rem;
  align-items: center;
  background: var(--bg-alt);
  border-radius: 16px;
  padding: 2.5rem 3rem;
}

.page-header {
  padding: 5rem 0 4rem;
  background: linear-gradient(170deg, var(--bg-alt) 0%, var(--bg) 80%);
  border-bottom: 1px solid var(--border);
}

.page-title {
  color: var(--blue);
  font-weight: 500;
  line-height: 1.12;
}

.breadcrumb,
.breadcrumb a {
  color: var(--gold-dark);
}

.about-row,
.approach-row,
.profile-row,
.people-list,
.person-row,
.bridge-mapping-grid,
.in-practice-panel {
  border-color: var(--border);
}

.bridge-mapping-grid,
.in-practice-panel,
.people-list,
.profile-list {
  border-top-color: var(--gold);
}

.person-row {
  gap: 2.5rem;
}

.person-media img,
.profile-hero-media img {
  border-radius: 12px;
}

.person-role,
.profile-credentials,
.validation-note {
  color: var(--gold-dark);
}

.profile-list p {
  color: var(--text-2);
  font-weight: 400;
}

.profile-list strong {
  color: var(--blue);
  font-weight: 500;
}

.cta-band {
  margin-top: 2rem;
  background: var(--blue);
  color: #FFFFFF;
  text-align: center;
}

.cta-inner {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.gold-rule {
  width: 60px;
  height: 2px;
  margin: 0.75rem auto 1.5rem;
  background: var(--gold);
}

.cta-title {
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

.cta-actions {
  justify-content: center;
}

.site-footer {
  background: var(--ink);
  color: #BCC7CA;
  text-align: center;
}

.footer-inner {
  display: block;
  border-top: 0;
  padding-top: 0;
}

.site-footer p:first-child {
  color: #FFFFFF;
  font-family: var(--serif);
  font-size: 1.3rem;
}

.site-footer p:last-child {
  margin-top: 0.25rem;
  color: #BCC7CA;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

@media (max-width: 900px) {
  .nav-mobile {
    background: var(--bg);
  }

  .nav-mobile a {
    color: var(--blue);
  }
}

@media (max-width: 740px) {
  .journal-copy {
    padding: 1.5rem;
  }
}

@media (max-width: 640px) {
  .container,
  .nav-inner,
  .hero-content {
    width: 90%;
    padding-left: 0;
    padding-right: 0;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .section-title,
  .cta-title {
    font-size: 1.8rem;
  }

  .belief-title {
    font-size: 2rem;
  }

  .btn {
    padding: 0.65rem 1.5rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 900px) {
  .methodology-infographic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "start context"
      "factor factor"
      "center center"
      "action eval"
      "learn learn";
  }
}

@media (max-width: 640px) {
  .thesis-block,
  .definition-block,
  .theory-of-change,
  blockquote {
    padding: 1.25rem 1.35rem;
  }

  .section-number {
    max-width: 100%;
    white-space: normal;
  }

  .methodology-infographic {
    grid-template-columns: 1fr;
    grid-template-areas:
      "start"
      "context"
      "factor"
      "center"
      "action"
      "eval"
      "learn";
    padding: 1rem;
  }

  .methodology-infographic::before,
  .methodology-infographic li::after {
    display: none;
  }

  .methodology-infographic li {
    min-height: 0;
  }
}

/* ============================================================
   Homepage v2 — IDEO-informed editorial row
   ============================================================ */

.section-evidence .feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  border-top: 1px solid var(--gold);
  padding-top: 1.5rem;
}

.section-evidence .feature-card {
  overflow: visible;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  transition: none;
}

.section-evidence .feature-card:hover {
  transform: none;
  box-shadow: none;
}

.section-evidence .feature-card img,
.section-evidence .large-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

.section-evidence .card-body {
  padding: 1.35rem clamp(1rem, 2vw, 1.35rem) 1.5rem;
}

.section-evidence .card-body h3 {
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
  line-height: 1.12;
}

.quote-section blockquote,
.about-bridges-section blockquote {
  max-width: none;
}

@media (max-width: 1100px) {
  .section-evidence .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .collaborate-form-grid,
  .collaborate-fit-grid,
  .essay-hero-grid,
  .essay-index-item,
  .process-flow {
    grid-template-columns: 1fr;
  }

  .collaborate-contact-intro {
    position: static;
  }

  .fit-list {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .collaborate-contact-intro {
    position: static;
  }

  .process-flow span,
  .process-flow span + span {
    padding-left: 0;
    padding-right: 0;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .process-flow span:last-child {
    border-bottom: 0;
  }

  .process-flow span:not(:last-child)::after {
    right: auto;
    left: 0;
    top: auto;
    bottom: -0.75rem;
    transform: none;
  }
}

@media (max-width: 640px) {
  .section-evidence .feature-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Bridges editorial system — unifying layer
   ============================================================ */

:root {
  --bg: #FCFBF9;
  --bg-alt: #F4F1EC;
  --border: rgba(28, 46, 74, 0.14);
  --text: #1F1F1D;
  --text-2: #3A4A4F;
  --blue: #1C2E4A;
  --blue-hover: #263E61;
  --gold: #B8965A;
  --gold-dark: #7A6A5A;
  --ink: #101A1D;
  --container: 1180px;
  --measure: 680px;
  --section-pad: 6.25rem;
}

body {
  background: var(--bg);
  color: var(--text);
}

.container,
.nav-inner,
.hero-content {
  max-width: var(--container);
}

.site-nav {
  background: rgba(252, 251, 249, 0.96);
  border-bottom: 1px solid var(--border);
  box-shadow: none;
}

.nav-inner {
  height: 72px;
  padding-left: 2rem;
  padding-right: 2rem;
}

.site-map {
  display: none;
}

.nav-logo {
  color: var(--blue);
}

.nav-links a {
  color: var(--text);
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  color: var(--blue);
  border-bottom-color: var(--gold);
}

.nav-dropdown {
  border: 1px solid var(--border);
  border-radius: 0;
  box-shadow: none;
}

.nav-dropdown a:hover {
  background: var(--bg-alt);
}

.section,
.section-alt,
.page-header,
.case-hero,
.hero {
  border-top: 1px solid var(--border);
}

.section {
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
}

.section-alt,
.quote-section,
.about-bridges-section,
.belief-section {
  background: var(--bg-alt);
}

.page-header,
.case-hero,
.hero {
  background: var(--bg);
}

.page-header,
.case-hero {
  padding-top: 5.75rem;
  padding-bottom: 5.75rem;
}

.hero {
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
  text-align: left;
}

.hero-content {
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.hero-title,
.page-title,
.section-title,
.cta-title {
  color: var(--blue);
  font-weight: 500;
  letter-spacing: 0;
}

.page-title .jp-title {
  display: block;
  white-space: nowrap;
  font-family: var(--jp);
  font-size: 0.68em;
  line-height: 1.05;
}

.hero-text,
.lead,
.narrative p,
.case-narrative-copy p,
.reveal-list p,
.project-case-copy p,
.profile-list p,
.about-row p,
.area-intro p,
.area-principle p,
.educational-principle p {
  color: var(--text-2);
}

.label,
.eyebrow,
.card-kicker,
.breadcrumb,
.breadcrumb a,
.project-type,
.person-role,
.profile-credentials {
  color: var(--gold-dark);
}

.text-link {
  color: var(--blue);
  border-bottom: 1px solid var(--gold);
}

.text-link:hover {
  color: var(--gold-dark);
  border-bottom-color: var(--blue);
}

.btn,
.button,
.nav-cta {
  border-radius: 0;
  box-shadow: none;
}

.btn-primary,
.nav-cta,
.nav-links a.nav-cta {
  background: var(--blue);
  color: #FFFFFF;
}

.btn-primary:hover,
.nav-cta:hover,
.nav-links a.nav-cta:hover {
  background: var(--gold-dark);
  color: #FFFFFF;
}

.btn-light {
  background: #FFFFFF;
  color: var(--blue);
}

.feature-card,
.compact-card,
.journal-card,
.practice-card,
.principle-card,
.level-card,
.work-step-card,
.method-node,
.area-moment,
.educational-moment,
.area-moment-featured,
.educational-moment-featured,
.cultural-case-panel,
.not-sure-panel,
.definition-block,
.theory-of-change,
.residency-structure article,
.archive-episode-card {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.feature-card:hover,
.practice-card:hover,
.archive-episode-card:hover {
  transform: none;
  box-shadow: none;
}

.feature-card,
.compact-card,
.journal-card,
.practice-card,
.principle-card,
.level-card,
.work-step-card,
.method-node,
.cultural-case-panel,
.not-sure-panel,
.residency-structure article,
.archive-episode-card {
  border-top: 1px solid var(--gold);
}

.thesis-block,
.approach-thesis {
  max-width: var(--measure);
  padding: 1.5rem 0 1.5rem 1.6rem;
  background: transparent;
  border: 0;
  border-left: 3px solid var(--gold);
  border-radius: 0;
  box-shadow: none;
}

.approach-thesis strong {
  color: var(--blue);
  font-weight: 500;
}

.practice-card,
.practice-card + .practice-card,
.work-step-card,
.residency-structure article {
  padding: 2rem clamp(1.25rem, 2.4vw, 1.8rem) 2.25rem;
}

.card-body,
.journal-copy {
  padding: 0.35rem clamp(1rem, 2vw, 1.35rem) 1.35rem;
}

.feature-card {
  padding-bottom: 0.35rem;
}

.quote-grid blockquote,
.founder-quote {
  padding: 1.15rem 1.4rem 1.2rem 1.6rem;
}

.about-bridges-grid article,
.story-copy,
.case-narrative-copy,
.reveal-list,
.project-case-copy,
.profile-list {
  padding-inline: clamp(0.75rem, 1.8vw, 1.25rem);
}

.journal-copy,
.story-copy {
  padding-top: clamp(1rem, 2vw, 1.35rem);
  padding-bottom: clamp(1rem, 2vw, 1.35rem);
}

img,
.feature-card img,
.journal-card img,
.story-media img,
.page-hero-media img,
.about-wide-media img,
.about-inline-media img,
.person-media img,
.profile-hero-media img,
.case-hero-media img,
.project-case-media img,
.cultural-hero-media img,
.educational-hero-media img,
.organizational-hero-media img,
.sea-gallery img,
.huellas-gallery img,
.peace-photo-grid img,
.archive-episode-thumb img {
  border-radius: 0;
  box-shadow: none;
}

.profile-hero-media img {
  aspect-ratio: 4 / 5;
  object-fit: contain;
  object-position: center bottom;
  background: #FFFFFF;
}

.feature-card img,
.project-case-media img,
.case-hero-media img,
.page-hero-media img,
.cultural-hero-media img,
.educational-hero-media img,
.organizational-hero-media img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.profile-hero-media img {
  aspect-ratio: 4 / 5;
  object-fit: contain;
  object-position: center bottom;
  background: #FFFFFF;
}

.case-hero-grid,
.page-hero-grid,
.project-case,
.projects-reveal,
.case-narrative,
.about-row,
.profile-row,
.person-row,
.area-path,
.educational-path,
.bridge-page-row,
.bridge-opening-row {
  gap: clamp(2rem, 5vw, 4rem);
}

.case-meta-row {
  background: transparent;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--border);
}

.case-meta-row div {
  padding: 1.15rem 1rem;
  border-color: var(--border);
}

.case-meta-row strong {
  font-size: clamp(1.15rem, 1.8vw, 1.65rem);
  line-height: 1.18;
}

.project-case-stack {
  gap: 0;
}

.project-case,
.project-case-featured {
  align-items: start;
  width: 100%;
  margin-inline: 0;
  padding-top: 4.5rem;
  padding-right: 0;
  padding-bottom: 4.5rem;
  padding-left: 0;
  background: transparent;
  border-top: 1px solid var(--border);
}

.project-case:nth-child(even) {
  background: transparent;
}

.project-case:first-child {
  border-top: 0;
  padding-top: 0;
}

.project-case-media {
  max-width: none;
}

.case-study-grid {
  border-top: 0;
}

.case-study-grid section {
  padding-top: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.mapping-preview {
  padding: 0;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--gold);
  border-radius: 0;
  box-shadow: none;
}

.mapping-preview ol {
  grid-template-columns: 1fr;
}

.mapping-preview li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.mapping-preview li::before {
  display: none;
}

.mapping-preview span,
.mapping-preview small {
  max-width: none;
}

.projects-reveal,
.case-narrative,
.bridge-mapping-grid,
.in-practice-panel,
.people-list,
.profile-list,
.journey-timeline {
  border-top-color: var(--gold);
}

.case-narrative h2,
.projects-reveal .section-title {
  color: var(--blue);
}

.pull-statement p,
.belief-title {
  color: var(--blue);
}

.pull-statement span,
.relationship-cycle,
.process-flow,
.toc-steps {
  border-color: var(--border);
}

.relationship-cycle {
  border-top-color: var(--gold);
}

.relationship-cycle li + li {
  border-left-color: var(--border);
}

.sea-gallery figure,
.huellas-gallery figure,
.peace-photo-grid figure,
.case-image-band figure {
  background: transparent;
}

.sea-gallery figcaption,
.huellas-gallery figcaption,
.peace-photo-grid figcaption {
  padding-left: 0;
  padding-right: 0;
}

.cta-band {
  margin-top: 0;
  background: var(--blue);
}

.cta-band .cta-title {
  color: #FFFFFF;
}

.area-principle-section .area-principle p,
.area-principle-section .cultural-principle p,
.educational-principle-section .educational-principle p {
  color: #FFFFFF;
}

.area-principle-section .area-principle p + p,
.area-principle-section .cultural-principle p + p,
.educational-principle-section .educational-principle p + p {
  color: #E4EBED;
  border-top-color: var(--gold);
  border-left-color: var(--gold);
}

.site-footer {
  background: var(--ink);
  padding: 0;
  text-align: center;
}

.footer-map {
  padding: 3.25rem 0 2.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  text-align: left;
}

.footer-map-inner {
  display: grid;
  grid-template-columns: 1.05fr 1.35fr 1.05fr 1.05fr 0.8fr;
  gap: 2rem;
}

.footer-map section {
  min-width: 0;
}

.footer-map p {
  margin-bottom: 0.75rem;
  color: var(--gold);
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.footer-map a {
  display: block;
  width: fit-content;
  margin-top: 0.4rem;
  color: #FFFFFF;
  font-size: var(--fs-small);
  line-height: 1.45;
}

.footer-map a:hover {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.site-footer .footer-inner {
  display: flex;
  width: 100%;
  max-width: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin-right: auto;
  margin-left: auto;
  background: var(--blue);
  padding-right: 2rem;
  padding-left: 2rem;
  padding-top: 2.15rem;
  padding-bottom: 2.5rem;
  text-align: center;
  box-sizing: border-box;
}

.site-footer .footer-inner p {
  margin: 0;
  width: 100%;
  max-width: 34rem;
  text-align: center;
}

.site-footer .footer-inner p:first-child {
  color: #FFFFFF;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  font-weight: 500;
  line-height: 1.15;
}

.site-footer .footer-inner p:nth-child(2) {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.45;
}

.site-footer .footer-inner .footer-locations {
  margin-top: 0.5rem;
  color: rgba(218, 190, 132, 0.95);
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  :root {
    --section-pad: 4.5rem;
  }

  .nav-inner {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .page-header,
  .case-hero,
  .hero {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .project-case,
  .project-case-featured {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .footer-map-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .archive-episode-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .archive-season-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
  }

  .section-evidence .card-body,
  .journal-copy,
  .story-copy,
  .about-bridges-grid article,
  .about-bridges-grid article + article,
  .case-narrative-copy,
  .reveal-list,
  .project-case-copy,
  .profile-list {
    padding-left: 1.15rem;
    padding-right: 1.15rem;
  }

  .about-bridges-grid article,
  .about-bridges-grid article + article {
    padding-top: 2rem;
    padding-bottom: 2.25rem;
  }

  .home-latest-item {
    grid-template-columns: minmax(76px, 92px) minmax(0, 1fr);
    gap: 0.75rem;
    padding: 1.6rem 0;
  }

  .home-latest-meta {
    grid-column: 2;
  }

  .bridge-mapping-grid,
  .approach-row,
  .projects-reveal,
  .case-narrative,
  .press-gallery {
    grid-template-columns: 1fr !important;
  }

  .press-gallery-feature {
    grid-row: auto;
  }

  .press-gallery-feature img,
  .press-gallery img {
    aspect-ratio: 4 / 3;
  }

  .bridge-mapping-grid > *,
  .mapping-preview,
  .narrative {
    min-width: 0;
  }
}

@media (max-width: 560px) {
  .approach-page .projects-reveal > div:first-child,
  .approach-page .case-narrative > h2 {
    padding-right: 0;
  }

  .approach-page .logic-row > div:first-child {
    padding-left: 3.25rem;
  }

  .approach-page .logic-row::before {
    top: 2.85rem;
    font-size: 1.85rem;
  }

  .footer-map {
    padding-top: 2.35rem;
    padding-bottom: 2.1rem;
  }

  .footer-map-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ============================================================
   Impresión — Versión PDF
   ============================================================ */

@media print {
  body {
    background: #FFFFFF;
    padding: 0.5in;
    color: #000000;
    font-size: 11pt;
    line-height: 1.6;
  }

  .site-nav,
  .cta-band,
  .site-footer,
  .nav-mobile,
  .nav-hamburger {
    display: none !important;
  }

  .container,
  .narrow {
    max-width: 100%;
    padding: 0;
  }

  .hero {
    padding: 1rem 0 2rem;
    background: #FFFFFF;
    text-align: left;
  }

  .hero-content {
    max-width: 100%;
    padding: 0;
  }

  .hero-title {
    color: #000000;
    font-size: 24pt;
  }

  .section {
    padding: 1.5rem 0;
    border-top: 1px solid #CCCCCC;
  }

  .belief-section {
    background: #FFFFFF;
  }

  .feature-card,
  .practice-card,
  .journal-card {
    border: 1px solid #DDDDDD;
    border-radius: 0;
    box-shadow: none;
    transform: none !important;
  }

  .thesis-block {
    padding: 0.25in;
    background: #F5F0EB;
    border-left-color: #666666;
  }

  blockquote {
    background: #F5F0EB;
    border-left-color: #999999;
  }

  .note {
    background: #F5F0EB;
  }

  .definition-block,
  .theory-of-change {
    border: 1px solid #CCCCCC;
    box-shadow: none;
  }

  a {
    color: #000000;
    border-bottom: 1px dotted #999999;
  }

  a::after {
    content: " (" attr(href) ")";
    color: #666666;
    font-size: 9pt;
  }

  h1,
  h2,
  h3,
  h4 {
    page-break-after: avoid;
  }

  p,
  ul,
  ol,
  blockquote,
  .thesis-block,
  .definition-block {
    page-break-inside: avoid;
  }

  .page-header {
    padding: 1rem 0;
    background: #FFFFFF;
    border-bottom: 1px solid #CCCCCC;
  }

  .person-media img,
  .story-media img {
    border: 1px solid #CCCCCC;
    box-shadow: none;
  }

  .bridge-mapping-grid,
  .in-practice-panel {
    border-top-color: #CCCCCC;
  }

  .gold-rule {
    background: #999999;
  }

  .document-meta {
    border-top-color: #CCCCCC;
  }

  .section-number {
    background: #EEEEEE;
    color: #444444;
  }

  table {
    border: 1px solid #CCCCCC;
    font-size: 10pt;
  }

  th,
  td {
    padding: 0.25rem 0.5rem;
    border: 1px solid #CCCCCC;
  }

  thead {
    background: #F0ECE6;
  }
}

@media screen and (max-width: 900px) {
  .site-map {
    display: none;
  }
}

/* ============================================================
   Generated content pages from the new page copy
   ============================================================ */

.content-page {
  max-width: 900px;
}

.content-page h2 {
  margin: 4rem 0 1.25rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.1;
}

.content-page h2:first-child {
  margin-top: 0;
}

.content-page h3 {
  margin: 2.25rem 0 0.85rem;
  color: var(--blue);
}

.content-page p,
.content-page li {
  max-width: 760px;
  color: var(--text-2);
}

.content-page p + p {
  margin-top: 1rem;
}

.content-page blockquote {
  margin: 2rem 0;
  padding: 1.5rem 1.75rem;
  border-left: 3px solid var(--gold);
  background: var(--bg-alt);
}

.content-page blockquote p {
  color: var(--text);
  font-family: var(--serif);
  font-size: 1.6rem;
  line-height: 1.25;
}

.tag {
  display: inline-block;
  margin: 0.15rem 0.25rem 0.15rem 0;
  padding: 0.28rem 0.55rem;
  border: 1px solid var(--border);
  color: var(--gold-dark);
  font-size: 0.82rem;
  line-height: 1.2;
}

.table-wrap {
  max-width: 100%;
  margin: 1.5rem 0;
  overflow-x: auto;
}

.content-page table {
  width: 100%;
  border-collapse: collapse;
  background: #FFFFFF;
}

.content-page th,
.content-page td {
  padding: 1rem;
  border: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

.content-page th {
  color: var(--blue);
  font-weight: 500;
}

.service-accordion {
  display: grid;
  gap: 1rem;
  margin: 2.25rem 0 2rem;
}

.service-panel {
  border: 1px solid var(--border);
  background: #FFFFFF;
}

.service-panel summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1.2rem 1.35rem;
  color: var(--blue);
  cursor: pointer;
  list-style: none;
}

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

.service-panel summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  font-size: 1.25rem;
  line-height: 1;
}

.service-panel[open] summary::after {
  content: "–";
}

.service-panel summary span {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.05;
}

.service-panel summary small {
  grid-column: 1 / -1;
  max-width: 620px;
  color: var(--text-2);
  font-size: 0.96rem;
  line-height: 1.5;
}

.service-panel-body {
  padding: 0 1.35rem 1.35rem;
  border-top: 1px solid var(--border);
}

.service-panel-body > p:first-child {
  margin-top: 1.25rem;
}

.service-work-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.35rem;
}

.service-work-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 1rem;
  align-items: stretch;
  padding: 1rem;
  border: 1px solid rgba(30, 45, 68, 0.12);
  background: var(--bg-alt);
}

.service-thumb {
  min-height: 132px;
  margin: 0;
  overflow: hidden;
  background: var(--blue);
}

.service-thumb img {
  width: 100%;
  height: 100%;
  min-height: 132px;
  object-fit: cover;
  display: block;
}

.service-thumb-contain img {
  object-fit: contain;
  background: #FFFFFF;
}

.service-thumb-text {
  display: grid;
  place-items: center;
  padding: 1rem;
  color: #FFFFFF;
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.05;
  text-align: center;
  background: linear-gradient(135deg, var(--blue), var(--terracotta));
}

.service-work-card h3 {
  margin-top: 0;
}

.service-work-card p {
  margin-top: 0.45rem;
}

.check-list {
  display: grid;
  gap: 0.6rem;
  margin: 1rem 0 2rem;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.8rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.75rem;
  height: 0.75rem;
  border: 1px solid var(--gold);
}

.hero-quote {
  max-width: 720px;
  margin: 0 0 2rem;
  color: #FFFFFF;
}

.hero-quote p {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  line-height: 1.2;
}

.hero-quote footer {
  margin-top: 0.8rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--fs-small);
}

.collaborate-live-form {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}

.collaborate-live-form .form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.collaborate-live-form label {
  display: grid;
  gap: 0.4rem;
  color: var(--blue);
  font-size: var(--fs-small);
}

.collaborate-live-form input,
.collaborate-live-form select,
.collaborate-live-form textarea {
  width: 100%;
  padding: 0.85rem 0.9rem;
  border: 1px solid var(--border);
  background: #FFFFFF;
  color: var(--text);
  font: inherit;
}

.collaborate-live-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--blue) 50%), linear-gradient(135deg, var(--blue) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%;
  background-repeat: no-repeat;
  background-size: 6px 6px, 6px 6px;
}

.collaborate-live-form textarea {
  min-height: 160px;
  resize: vertical;
}

.collaborate-live-form fieldset {
  display: grid;
  gap: 1rem;
  padding: 0;
  border: 0;
}

.collaborate-live-form legend {
  margin-bottom: 0.55rem;
  color: var(--blue);
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.8vw, 2.2rem);
  line-height: 1.12;
}

.collaborate-live-form .interest-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.collaborate-live-form .interest-option {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
  min-height: 132px;
  padding: 1rem 1rem 1.05rem;
  border: 1px solid var(--border);
  border-top: 1px solid var(--gold);
  background: #FFFFFF;
  color: var(--text-2);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.collaborate-live-form .interest-option:hover {
  border-color: rgba(184, 150, 90, 0.58);
  background: var(--bg-alt);
}

.collaborate-live-form .interest-option input {
  width: 1rem;
  height: 1rem;
  margin-top: 0.18rem;
  accent-color: var(--blue);
}

.collaborate-live-form .interest-option span {
  display: grid;
  gap: 0.35rem;
}

.collaborate-live-form .interest-option strong {
  color: var(--blue);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.08;
}

.collaborate-live-form .interest-option small {
  color: var(--text-2);
  font-size: 0.9rem;
  line-height: 1.45;
}

/* The Bridge That Changed You */
.bridge-story-hero .hero-actions {
  margin-top: 2rem;
}

.bridge-story-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.bridge-story-copy {
  max-width: 720px;
  color: var(--text-2);
  font-size: var(--fs-lead);
  font-weight: 300;
}

.bridge-story-copy p + p,
.bridge-story-copy p + .bridge-story-list,
.bridge-story-list + p {
  margin-top: 1.35rem;
}

.bridge-story-list {
  display: grid;
  gap: 0.85rem;
  padding: 1.25rem 0 0;
  list-style: none;
  border-top: 1px solid var(--gold);
}

.bridge-story-list li {
  position: relative;
  padding-left: 1.25rem;
}

.bridge-story-list li::before {
  content: "";
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  background: var(--gold);
  border-radius: 999px;
}

.bridge-story-belief-inner {
  max-width: 920px;
}

.bridge-story-belief h2 {
  max-width: 820px;
  margin-bottom: 2rem;
  color: var(--blue);
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4.5vw, 4rem);
  font-weight: 400;
  line-height: 1.08;
}

.bridge-story-belief blockquote {
  margin: 0 0 1.75rem;
  padding-left: clamp(1.25rem, 3vw, 2rem);
  border-left: 2px solid var(--gold);
}

.bridge-story-belief blockquote p {
  max-width: 760px;
  color: var(--text);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.18;
}

.bridge-story-belief-inner > p:last-child {
  color: var(--text-2);
  font-size: var(--fs-lead);
}

.bridge-story-page input[type="file"] {
  padding: 0.7rem;
  background: #FFFFFF;
}

.bridge-consent-fieldset {
  gap: 0.85rem;
  margin-top: 0.25rem;
}

.bridge-consent-fieldset legend {
  margin-bottom: 0.1rem;
  font-family: var(--sans);
  font-size: var(--fs-small);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.bridge-consent-option {
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.75rem !important;
  align-items: start;
  padding: 0.95rem 1rem;
  border: 1px solid var(--border);
  background: #FFFFFF;
  color: var(--text-2) !important;
  line-height: 1.45;
}

.bridge-consent-option input {
  width: 1rem !important;
  height: 1rem;
  margin-top: 0.22rem;
  accent-color: var(--blue);
}

.bridge-story-cta .cta-inner > p:last-child {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.76);
  font-size: var(--fs-lead);
}

@media (max-width: 1000px) {
  .connect-context-list-compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .connect-context-list-compact article:nth-child(2n) {
    border-right: 0;
  }

  .connect-context-list-compact article:nth-last-child(-n + 2) {
    border-top: 1px solid var(--border);
  }
}

@media (max-width: 760px) {
  .bridge-story-grid {
    grid-template-columns: 1fr;
  }

  .bridge-story-copy {
    font-size: var(--fs-body);
  }

  .collaborate-live-form .form-grid,
  .collaborate-live-form .interest-grid {
    grid-template-columns: 1fr;
  }

  .connect-context-list {
    grid-template-columns: 1fr;
  }

  .connect-context-list-compact {
    grid-template-columns: 1fr;
  }

  .connect-context-list article,
  .connect-context-list article:nth-child(2n),
  .connect-context-list article:nth-last-child(-n + 2) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .connect-context-list article:last-child {
    border-bottom: 0;
  }

  .service-work-card {
    grid-template-columns: 1fr;
  }

  .service-thumb,
  .service-thumb img {
    min-height: 190px;
  }
}

@media (max-width: 620px) {
  .journey-hero-visual {
    min-height: auto;
  }

  .journey-hero-content h1 {
    font-size: clamp(2.8rem, 15vw, 4rem);
  }

  .journey-snapshot-grid {
    grid-template-columns: 1fr;
  }

  .journey-snapshot-grid article {
    min-height: auto;
    padding: 1.5rem;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .journey-snapshot-grid article:last-child {
    border-bottom: 0;
  }
}

/* Homepage split hero: keeps the video as a visual asset without sacrificing readability. */
body:has(.hero-media) .hero {
  background: var(--bg);
  color: var(--text);
}

body:has(.hero-media) .hero-content {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  max-width: var(--container);
}

body:has(.hero-media) .hero-title {
  color: var(--text);
}

body:has(.hero-media) .hero-text {
  color: var(--text-2);
}

@media (max-width: 900px) {
  body:has(.hero-media) .hero-content {
    grid-template-columns: 1fr;
    align-items: start;
  }

  body:has(.hero-media) .hero-media {
    min-height: 360px;
  }
}

@media (max-width: 560px) {
  body:has(.hero-media) .hero-media {
    min-height: 280px;
  }
}

.hero.hero-solid {
  background: var(--blue);
  color: #FFFFFF;
}

.hero.hero-solid .hero-title {
  color: #FFFFFF;
}

.hero.hero-solid .hero-text {
  color: rgba(255, 255, 255, 0.78);
}

.hero.hero-solid .hero-tagline {
  color: var(--sand);
}

.hero.hero-solid .hero-text-editorial {
  border-top-color: rgba(184, 150, 90, 0.72);
}

.hero.hero-solid .btn-ghost {
  border-color: rgba(255, 255, 255, 0.62);
  color: #FFFFFF;
}

.hero.hero-solid .btn-ghost:hover {
  background: #FFFFFF;
  border-color: #FFFFFF;
  color: var(--blue);
}

/* Global hero treatment: every page opens on the same dark-blue editorial field. */
.page-header,
.case-hero,
.hero {
  background: var(--blue);
  color: #FFFFFF;
  border-top-color: rgba(255, 255, 255, 0.14);
  border-bottom-color: rgba(255, 255, 255, 0.18);
}

.page-header .page-title,
.case-hero .page-title,
.hero .hero-title,
.hero-title {
  color: #FFFFFF;
}

.page-header .lead,
.case-hero .lead,
.hero .hero-text,
.hero-text {
  color: rgba(255, 255, 255, 0.78);
}

.page-header .breadcrumb,
.case-hero .breadcrumb,
.hero .breadcrumb,
.page-header .breadcrumb a,
.case-hero .breadcrumb a,
.hero .breadcrumb a,
.page-header .label,
.case-hero .label,
.hero .label,
.hero-tagline {
  color: var(--sand);
}

.page-header .breadcrumb a:hover,
.case-hero .breadcrumb a:hover,
.hero .breadcrumb a:hover {
  color: #FFFFFF;
}

.page-header .btn-ghost,
.case-hero .btn-ghost,
.hero .btn-ghost {
  border-color: rgba(255, 255, 255, 0.62);
  color: #FFFFFF;
}

.page-header .btn-ghost:hover,
.case-hero .btn-ghost:hover,
.hero .btn-ghost:hover {
  background: #FFFFFF;
  border-color: #FFFFFF;
  color: var(--blue);
}

.page-header .page-hero-media img,
.case-hero .case-hero-media img {
  border-color: rgba(184, 150, 90, 0.74);
  background: rgba(255, 255, 255, 0.08);
}

/* Publication pages */
.publication-hero {
  padding: clamp(5rem, 9vw, 7.5rem) 0 clamp(3.5rem, 7vw, 5.5rem);
  background: var(--blue);
  color: #FFFFFF;
}

.publication-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.72fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: end;
}

.publication-kicker {
  margin-bottom: 1.2rem;
  color: var(--sand);
  font-size: var(--fs-label);
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.publication-title {
  max-width: 980px;
  margin: 0;
  color: #FFFFFF;
  font-family: var(--serif);
  font-size: clamp(3rem, 6.8vw, 5.4rem);
  font-weight: 500;
  line-height: 0.98;
}

.publication-deck {
  max-width: 700px;
  margin: 1.45rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: var(--fs-lead);
  font-weight: 300;
  line-height: 1.55;
}

.publication-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  max-width: 720px;
  margin-top: 2.2rem;
  border-top: 1px solid rgba(184, 150, 90, 0.74);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.publication-meta div {
  padding: 1rem 1.1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.publication-meta span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--sand);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.publication-meta strong {
  color: #FFFFFF;
  font-size: var(--fs-small);
  font-weight: 400;
  line-height: 1.4;
}

.publication-cover {
  margin: 0;
}

.publication-cover img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border: 1px solid rgba(184, 150, 90, 0.74);
  padding: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.publication-cover.publication-scan img {
  object-fit: contain;
  background: rgba(255, 255, 255, 0.92);
}

.publication-cover figcaption,
.publication-photo figcaption {
  margin-top: 0.75rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--fs-label);
  line-height: 1.45;
}

.publication-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(300px, 0.28fr);
  gap: clamp(2.5rem, 6vw, 4.5rem);
  align-items: start;
}

.publication-body {
  max-width: 780px;
}

.publication-note {
  margin-bottom: 2.5rem;
  padding: 1.2rem 1.45rem;
  border-left: 3px solid var(--gold);
  background: var(--bg-alt);
  color: var(--text-2);
  font-size: var(--fs-small);
  line-height: 1.65;
}

.publication-body h2 {
  margin: 3rem 0 1rem;
  color: var(--blue);
  font-family: var(--serif);
  font-size: clamp(2rem, 3.4vw, 2.85rem);
  font-weight: 500;
  line-height: 1.08;
}

.publication-body h2:first-of-type {
  margin-top: 0;
}

.publication-body p {
  color: var(--text-2);
  font-size: 1.05rem;
  line-height: 1.82;
}

.publication-body p + p {
  margin-top: 1.2rem;
}

.publication-quote {
  margin: 2.4rem 0;
  padding: 1.4rem 0 1.4rem 1.6rem;
  border-left: 3px solid var(--gold);
}

.publication-quote p {
  margin: 0;
  color: var(--blue);
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  line-height: 1.2;
}

.publication-quote cite {
  display: block;
  margin-top: 0.85rem;
  color: var(--gold-dark);
  font-size: var(--fs-label);
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.publication-aside {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 1.2rem;
}

.publication-aside-card {
  padding: 1.25rem;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--border);
}

.publication-aside-card h3 {
  margin-bottom: 0.7rem;
  color: var(--blue);
  font-size: 1.5rem;
}

.publication-aside-card p {
  margin: 0;
  color: var(--text-2);
  font-size: var(--fs-small);
  line-height: 1.55;
}

.publication-photo {
  margin: 0;
}

.publication-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 62%;
}

.publication-photo figcaption {
  color: var(--text-2);
}

.publication-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 3.25rem;
}

.publication-grace .publication-gallery {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.publication-gallery figure {
  margin: 0;
}

.publication-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.publication-gallery .publication-scan img {
  aspect-ratio: 4 / 5.4;
  object-fit: contain;
  background: #FFFFFF;
  border: 1px solid var(--border);
}

.publication-gallery figcaption {
  margin-top: 0.55rem;
  color: var(--text-2);
  font-size: var(--fs-label);
  line-height: 1.4;
}

.publication-related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.publication-related-grid .publication-aside-card {
  display: flex;
  flex-direction: column;
  min-height: 230px;
  margin: 0;
  background: var(--bg);
}

.publication-related-grid .text-link {
  margin-top: auto;
}

@media (max-width: 900px) {
  .publication-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .publication-hero-grid,
  .publication-layout {
    grid-template-columns: 1fr;
  }

  .publication-cover img {
    aspect-ratio: 16 / 10;
  }

  .publication-aside {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .publication-gallery {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .publication-related-grid {
    grid-template-columns: 1fr;
  }

  .publication-related-grid .publication-aside-card {
    min-height: 0;
  }
}

@media (max-width: 620px) {
  .publication-meta,
  .publication-aside,
  .publication-gallery {
    grid-template-columns: 1fr;
  }
}

/* Final page-specific spacing: Puentes y Dialogos archive */
.dialogue-series-page .page-header {
  padding-bottom: 5.25rem;
}

.dialogue-series-page .section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.dialogue-series-page .section-alt:first-of-type {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.dialogue-series-page #archive {
  padding-top: 5.5rem;
}

.dialogue-series-page .section-kicker {
  margin-bottom: 2.4rem;
}

.dialogue-series-page .dialogue-feature-grid {
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
  padding-right: clamp(1.5rem, 4vw, 3.5rem);
  padding-left: clamp(1.5rem, 4vw, 3.5rem);
}

.dialogue-series-page .dialogue-feature-grid .content-page {
  max-width: 560px;
  padding-right: clamp(0.5rem, 2vw, 1.25rem);
  padding-left: clamp(0.5rem, 2vw, 1.25rem);
}

.dialogue-series-page .archive-season {
  margin-top: 0;
}

.dialogue-series-page .archive-season + .archive-season {
  margin-top: 3rem;
  padding-top: 2rem;
}

.dialogue-series-page .archive-season-head {
  margin-bottom: 0.95rem;
}

.dialogue-series-page .archive-episode-grid {
  gap: 1.15rem;
  margin-top: 0;
}

.dialogue-series-page .archive-episode-copy {
  padding: 0.95rem 0.95rem 1.05rem;
}

.dialogue-series-page .archive-episode-copy p:last-child {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .dialogue-series-page .page-header,
  .dialogue-series-page .section,
  .dialogue-series-page #archive {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .dialogue-series-page .section-alt:first-of-type {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .dialogue-series-page .dialogue-feature-grid {
    padding-right: 1.75rem;
    padding-left: 1.75rem;
  }

  .dialogue-series-page .archive-season + .archive-season {
    margin-top: 2.5rem;
    padding-top: 1.75rem;
  }
}

@media (max-width: 560px) {
  .dialogue-series-page .page-header,
  .dialogue-series-page .section,
  .dialogue-series-page #archive {
    padding-top: 3.25rem;
    padding-bottom: 3.25rem;
  }

  .dialogue-series-page .archive-episode-copy {
    padding: 0.9rem 0.9rem 1rem;
  }

  .dialogue-series-page .dialogue-feature-grid {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}

.america-multicolor-page .case-narrative > div:first-child {
  padding-left: clamp(1rem, 2vw, 1.35rem);
  border-left: 1px solid var(--gold);
}

.america-multicolor-page .case-narrative .label {
  margin-bottom: 0.75rem;
}

.america-multicolor-page .case-study-grid section {
  padding: clamp(1.1rem, 2vw, 1.35rem);
  background: #fff;
  border: 1px solid var(--border);
  border-left: 1px solid var(--gold);
}

.america-multicolor-page .case-study-grid h3 {
  margin-bottom: 0.65rem;
}

.america-multicolor-page .case-study-grid p {
  line-height: 1.65;
}

.america-multicolor-page .case-meta-row strong {
  font-family: var(--sans);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.35;
}

.america-multicolor-page .case-video-panel,
.america-multicolor-page .case-image-band figure {
  background: #fff;
}

.america-multicolor-page .case-video-panel {
  width: min(100%, 920px);
}

.america-multicolor-page .case-video-panel > img {
  max-height: 520px;
}

.america-multicolor-page .case-image-band {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.america-multicolor-page .case-video-panel figcaption,
.america-multicolor-page .case-image-band figcaption {
  margin-top: 0;
  padding: 1rem 1.1rem 1.1rem;
  color: var(--text-2);
  font-size: var(--fs-small);
  line-height: 1.55;
  border-left: 1px solid var(--gold);
}

.america-multicolor-page .case-video-panel figcaption span {
  margin-bottom: 0.35rem;
}

.america-multicolor-page .case-image-band img {
  display: block;
  height: 300px;
  min-height: 0;
}

@media (max-width: 900px) {
  .america-multicolor-page .case-narrative > div:first-child,
  .america-multicolor-page .case-study-grid section {
    padding: 1rem;
  }

  .america-multicolor-page .case-image-band {
    grid-template-columns: 1fr;
  }

  .america-multicolor-page .case-video-panel figcaption,
  .america-multicolor-page .case-image-band figcaption {
    padding: 0.85rem 0.9rem 0.95rem;
  }

  .america-multicolor-page .case-image-band img {
    height: auto;
    min-height: 260px;
  }
}

.caf-case-page .case-narrative > div:first-child {
  padding-left: clamp(1rem, 2vw, 1.35rem);
  border-left: 1px solid var(--gold);
}

.caf-case-page .case-study-grid section {
  padding: clamp(1rem, 2vw, 1.25rem) clamp(1.1rem, 2.5vw, 1.45rem);
  background: #fff;
  border: 1px solid var(--border);
  border-left: 1px solid var(--gold);
}

.caf-case-page .case-video-panel,
.caf-case-page .case-image-band figure {
  background: #fff;
}

.caf-case-page .case-video-panel figcaption,
.caf-case-page .case-image-band figcaption {
  margin-top: 0;
  padding: 0.9rem 1rem 1rem;
  color: var(--text-2);
  font-size: var(--fs-small);
  line-height: 1.55;
  border-left: 1px solid var(--gold);
}

.caf-case-page .case-image-band img {
  display: block;
  height: 360px;
  min-height: 0;
}

.caf-case-page .score-archive {
  max-width: 540px;
  margin: 1.5rem 0 1.65rem;
  background: #fff;
  border: 1px solid var(--border);
}

.caf-case-page .score-archive img {
  display: block;
  width: 100%;
  max-height: 460px;
  object-fit: contain;
  background: #fff;
}

.caf-case-page .score-archive figcaption {
  margin: 0;
  padding: 0.85rem 1rem 0.95rem;
  color: var(--text-2);
  font-size: var(--fs-small);
  line-height: 1.55;
  border-left: 1px solid var(--gold);
  border-top: 1px solid var(--border);
}

.caf-case-page .score-archive figcaption span {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--gold-dark);
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vaishnav-recognition {
  max-width: 520px;
  margin: 2rem auto 0;
  background: #fff;
  border: 1px solid var(--border);
}

.vaishnav-recognition img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.vaishnav-recognition figcaption {
  margin: 0;
  padding: 0.9rem 1rem 1rem;
  color: var(--text-2);
  font-size: var(--fs-small);
  line-height: 1.55;
  border-left: 1px solid var(--gold);
}

.vaishnav-recognition figcaption span {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--gold-dark);
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vaishnav-final-work {
  width: 100%;
  margin-top: 0;
}

.vaishnav-final-work > img {
  aspect-ratio: 1 / 1;
  max-height: 560px;
}

.vaishnav-final-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  width: min(100%, 960px);
  margin: 2rem auto 0;
}

@media (max-width: 760px) {
  .vaishnav-final-grid {
    grid-template-columns: 1fr;
  }
}

.embassy-film {
  width: 100%;
  margin: 2rem 0 0;
}

.embassy-film video {
  padding: 0;
  border-color: var(--border);
  background: #000;
}

@media (max-width: 900px) {
  .caf-case-page .case-narrative > div:first-child,
  .caf-case-page .case-study-grid section {
    padding: 1rem;
  }

  .caf-case-page .case-video-panel figcaption,
  .caf-case-page .case-image-band figcaption {
    padding: 0.85rem 0.9rem 0.95rem;
  }

  .caf-case-page .case-image-band img {
    height: auto;
    min-height: 260px;
  }

  .caf-case-page .score-archive img {
    max-height: 380px;
  }
}
