/* ESCALEA editorial redesign preview — visual layer only. */
:root {
  --color-navy: #28211d;
  --color-navy-soft: #41362f;
  --color-blue-muted: #6b5a4f;
  --color-gold: #9a5f38;
  --color-gold-soft: #c18a62;
  --color-cream: #f3ede4;
  --color-warm-white: #fbf8f2;
  --color-text: #28211d;
  --color-text-soft: #5a4d45;
  --color-border: rgba(107, 90, 79, 0.24);
  --container-width: 1480px;
  --page-padding-desktop: clamp(32px, 5vw, 82px);
  --page-padding-tablet: 32px;
  --page-padding-mobile: 20px;
  --section-space-desktop: clamp(92px, 10vw, 150px);
  --section-space-tablet: 78px;
  --section-space-mobile: 58px;
  --line: #d8cfc3;
  --shadow: 0 28px 80px rgba(40, 33, 29, 0.11);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: var(--color-cream);
}

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

body {
  color: var(--color-text);
  background:
    linear-gradient(90deg, rgba(107, 90, 79, 0.035) 1px, transparent 1px) 0 0 / 25vw 100%,
    var(--color-cream);
  font-size: 17px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

::selection { color: #fff; background: var(--color-gold); }

.site-header {
  min-height: 76px;
  padding: 10px clamp(20px, 4.5vw, 72px);
  border-bottom: 1px solid rgba(216, 207, 195, 0.18);
  background: rgba(40, 33, 29, 0.97);
  box-shadow: none;
}

.brand-link { width: clamp(180px, 15vw, 244px); height: 48px; }

.site-nav {
  gap: clamp(18px, 2.5vw, 42px);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.site-nav a::after { bottom: 2px; height: 1px; background: var(--color-gold-soft); }
.site-nav a[aria-current] { color: #fff; }

body[data-current-page="home"] .site-header {
  background: linear-gradient(180deg, rgba(40, 33, 29, 0.84), rgba(40, 33, 29, 0));
}

body[data-current-page="home"] .site-header.is-scrolled,
body[data-current-page="home"].menu-open .site-header {
  border-bottom-color: rgba(216, 207, 195, 0.18);
  background: rgba(40, 33, 29, 0.97);
  box-shadow: none;
}

.menu-toggle {
  border: 0;
  border-radius: 0;
  background: transparent;
}

.home-hero {
  position: relative;
  min-height: 100svh;
  align-items: end;
  background: var(--color-navy);
}

.home-hero::before,
.home-hero::after { display: none; }

.home-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-hero-media::after {
  background:
    linear-gradient(90deg, rgba(40, 33, 29, 0.88) 0%, rgba(40, 33, 29, 0.5) 42%, rgba(40, 33, 29, 0.08) 78%),
    linear-gradient(0deg, rgba(40, 33, 29, 0.88) 0%, transparent 46%);
}

.home-hero-media img {
  filter: saturate(0.76) contrast(0.96);
  transform: scale(1.015);
  animation: editorialDrift 18s ease-out both;
}

.home-hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  grid-template-areas:
    "overline overline"
    "title capabilities"
    "pillars capabilities"
    "lead capabilities"
    "actions capabilities";
  gap: 12px clamp(56px, 8vw, 140px);
  width: min(var(--container-width), calc(100% - (var(--page-padding-x) * 2)));
  padding: 170px 0 clamp(52px, 7vh, 82px);
  color: #fff;
  text-align: left;
}

.home-hero-content > * { max-width: none; }
.home-hero-content .hero-overline { grid-area: overline; }
.home-hero-content h1 { grid-area: title; }
.hero-pillars { grid-area: pillars; }
.home-hero-content .hero-lead { grid-area: lead; }
.home-hero-content .hero-actions { grid-area: actions; }
.hero-capabilities { grid-area: capabilities; align-self: end; }

.home-hero-content .hero-overline,
.section-kicker {
  margin: 0 0 16px;
  color: var(--color-gold-soft);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.home-hero-content h1 {
  max-width: 820px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.8rem, 9vw, 9.6rem);
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: -0.065em;
}

.hero-pillars {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  font-weight: 500;
  letter-spacing: 0.08em;
}

.home-hero-content .hero-lead {
  max-width: 660px;
  margin: 20px 0 18px;
  color: rgba(255, 255, 255, 0.9);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2vw, 2.15rem);
  font-weight: 400;
  line-height: 1.34;
}

.hero-actions { justify-content: flex-start; gap: 12px; }

.primary-button,
.secondary-button,
.button-link,
.text-button {
  border-radius: 0;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-hero .primary-button {
  border: 1px solid #fff;
  background: #fff;
  color: var(--color-navy);
}

.home-hero .secondary-button {
  border-color: rgba(255, 255, 255, 0.56);
  color: #fff;
}

.hero-capabilities {
  margin: 0;
  padding: 0 0 0 34px;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  backdrop-filter: none;
}

.hero-capabilities-intro {
  max-width: 370px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.95rem;
}

.home-hero .hero-pillar-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.home-hero .hero-pillar-grid article {
  display: grid;
  grid-template-columns: 26px 105px 1fr;
  gap: 14px;
  align-items: baseline;
  min-height: 0;
  padding: 15px 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
}

.home-hero .hero-pillar-grid article:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.2); }
.home-hero .hero-pillar-grid h3 { margin: 0; font-size: 0.83rem; letter-spacing: 0.04em; }
.home-hero .hero-pillar-grid p { margin: 0; color: rgba(255, 255, 255, 0.68); font-size: 0.82rem; line-height: 1.4; }
.home-hero .hero-pillar-grid .pillar-icon { width: 20px; height: 20px; color: var(--color-gold-soft); }

.intro-band { padding: 0; background: var(--color-cream); }
.intro-band::before { display: none; }
.intro-band > .section-inner { gap: 0; }

.section-inner {
  width: min(var(--container-width), calc(100% - (var(--page-padding-x) * 2)));
}

.home-experience {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.4fr);
  gap: clamp(48px, 8vw, 140px);
  padding: var(--section-space) 0;
  border-bottom: 1px solid var(--line);
}

.home-section-heading h2,
.page-heading h2,
.intelligence-home h2,
.intelligence-simple h2,
.home-cta h2 {
  color: var(--color-text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 5.6vw, 6.5rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.home-figures {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.home-figures strong {
  display: flex;
  min-height: 210px;
  padding: 26px 28px 20px 0;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--color-text-soft);
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.35;
}

.home-figures strong:last-child { border-right: 0; padding-left: 28px; }
.home-figures strong:nth-child(2) { padding-left: 28px; }
.home-figures span {
  color: var(--color-text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 4.4vw, 5.8rem);
  font-weight: 400;
  letter-spacing: -0.05em;
}

.home-partners {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 38px;
  justify-content: flex-start;
  padding-top: 38px;
}

.home-partners figure,
.partner-logo {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  filter: grayscale(1);
  opacity: 0.68;
}

.intelligence-home {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  gap: clamp(60px, 9vw, 150px);
  margin: 0;
  padding: var(--section-space) 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.intelligence-home-copy { padding: 0; }
.intelligence-home h2 { margin: 0 0 32px; font-size: clamp(3.1rem, 5vw, 5.8rem); }
.intelligence-home p:not(.section-kicker) { color: var(--color-text-soft); font-size: 1.08rem; }

.intelligence-mini-grid { display: block; margin: 42px 0 32px; }
.intelligence-mini-grid span,
.intelligence-tags span {
  display: block;
  padding: 12px 0;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--color-text);
  font-size: 0.84rem;
  letter-spacing: 0.04em;
}

.intelligence-mini-grid span:last-child { border-bottom: 1px solid var(--line); }
.text-button { color: var(--color-gold); }

.intelligence-home-visual,
.intelligence-visual {
  min-height: 560px;
  border: 1px solid rgba(193, 138, 98, 0.28);
  border-radius: 0;
  background:
    linear-gradient(rgba(193, 138, 98, 0.12) 1px, transparent 1px) 0 0 / 100% 25%,
    linear-gradient(90deg, rgba(193, 138, 98, 0.1) 1px, transparent 1px) 0 0 / 25% 100%,
    var(--color-navy);
  box-shadow: none;
}

.intelligence-home-visual img,
.intelligence-visual img { opacity: 0.08; filter: grayscale(1) sepia(0.4); }
.intelligence-home-visual::after,
.intelligence-visual::after { background: linear-gradient(135deg, transparent, rgba(154, 95, 56, 0.18)); }

.intelligence-data-card,
.intelligence-visual-card {
  min-width: 0;
  padding: 18px 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 0;
  background: transparent;
  color: #fff;
  box-shadow: none;
  backdrop-filter: none;
}

.intelligence-data-main { top: 18%; left: 10%; width: 54%; }
.intelligence-data-risk { right: 10%; bottom: 16%; width: 52%; }
.intelligence-data-card span,
.intelligence-visual-card span { color: var(--color-gold-soft); letter-spacing: 0.12em; text-transform: uppercase; }

.home-cta {
  min-height: 650px;
  margin: 0 0 var(--section-space);
  padding: clamp(60px, 9vw, 130px);
  border-radius: 0;
  box-shadow: none;
}

.home-cta::after { background: linear-gradient(90deg, rgba(40, 33, 29, 0.94), rgba(40, 33, 29, 0.46)); }
.home-cta-media img { filter: saturate(0.66); }
.home-cta-content { max-width: 820px; }
.home-cta h2 { color: #fff; }

.content-page {
  min-height: calc(100svh - 76px);
  padding: clamp(88px, 10vw, 148px) 0;
  background: transparent;
}

.page-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: 8vw;
  align-items: end;
  margin: 0 0 clamp(70px, 9vw, 130px);
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.page-heading h2 { margin: 0; }
.page-heading p { max-width: 620px; color: var(--color-text-soft); font-size: 1.08rem; }

.ecosystem-service-panel,
.specialization-grid { gap: 0; }

.reveal-card {
  overflow: hidden;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: background 350ms ease;
}

.reveal-card:last-child { border-bottom: 1px solid var(--line); }
.reveal-card:hover,
.reveal-card.is-open { transform: none; background: rgba(216, 207, 195, 0.24); box-shadow: none; }
.image-card::after { background: linear-gradient(90deg, rgba(40, 33, 29, 0.93), rgba(40, 33, 29, 0.72)); }
.reveal-card-bg { filter: grayscale(0.45) sepia(0.18) saturate(0.7); }

.ecosystem-card-trigger,
.specialization-trigger {
  grid-template-columns: 58px minmax(0, 1fr) auto;
  min-height: 200px;
  padding: 38px clamp(24px, 4vw, 62px);
}

.reveal-label { color: var(--color-gold-soft); font-size: 0.72rem; letter-spacing: 0.13em; }
.reveal-title {
  max-width: 900px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.3vw, 4.4rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.reveal-summary-text { margin-top: 12px; font-size: 0.92rem; }
.ecosystem-icon,
.finance-icon { border: 0; border-radius: 0; background: transparent; color: var(--color-gold-soft); }
.ecosystem-icon svg,
.finance-icon svg { width: 38px; height: 38px; }
.reveal-card-action { font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; }

.reveal-panel-inner { padding: 0 clamp(24px, 4vw, 62px) 58px 120px; }
.ecosystem-detail { grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr); gap: 48px; }
.ecosystem-detail-media { min-height: 360px; border-radius: 0; }
.ecosystem-detail h4 { font-family: Georgia, "Times New Roman", serif; font-size: 2rem; font-weight: 400; }
.ecosystem-detail li::before,
.specialization-detail li::before { background: var(--color-gold); }

.intelligence-hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(54px, 8vw, 120px);
  padding-bottom: var(--section-space);
  border-bottom: 1px solid var(--line);
}

.intelligence-simple-copy { padding: 0; }
.intelligence-subtitle { font-family: Georgia, "Times New Roman", serif; font-size: 1.5rem; color: var(--color-gold); }
.intelligence-tags { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 24px; margin-top: 40px; }
.intelligence-visual { min-height: 620px; }

.intelligence-method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: var(--section-space) 0;
}

.intelligence-method-grid article,
.reason-grid article {
  min-height: 260px;
  padding: 34px 36px;
  border: 0;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.intelligence-method-grid article:last-child { border-right: 0; }
.intelligence-method-grid h3,
.reason-grid h3 { font-family: Georgia, "Times New Roman", serif; font-size: 1.8rem; font-weight: 400; }
.intelligence-final { padding: clamp(54px, 7vw, 96px); border-radius: 0; background: var(--color-navy); }
.intelligence-final p { font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.8rem, 3vw, 3.6rem); font-weight: 400; line-height: 1.2; }

#porque .why-heading { grid-template-columns: 1fr; }
#porque .why-heading > div { display: grid; grid-template-columns: 0.8fr 1fr; gap: 8vw; align-items: end; }
.reason-grid { grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: var(--section-space); }
.reason-grid article:last-child { border-right: 0; }

.figures-strip {
  gap: 0;
  margin-top: 0;
  padding: 0;
  border: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.figures-strip strong {
  padding: 44px 24px;
  border-right: 1px solid var(--line);
  color: var(--color-text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.6vw, 4.6rem);
  font-weight: 400;
}
.figures-strip strong:last-child { border-right: 0; }

.locations-strip { justify-content: space-between; margin: 36px 0 80px; color: var(--color-text-soft); }
.locations-strip span { border: 0; background: transparent; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; }

.partners-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.6fr) 1.4fr;
  gap: 7vw;
  padding: 64px 0;
  border: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.partner-logo-grid { grid-template-columns: repeat(4, 1fr); }

.contact-layout { grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.7fr); gap: 10vw; }
.contact-layout .page-heading { display: block; margin: 0; border: 0; }
.cta-list { margin-top: 54px; }
.cta-list span { padding: 13px 0; border-top: 1px solid var(--line); }
.cta-list span:last-child { border-bottom: 1px solid var(--line); }

.contact-form {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.contact-form label { color: var(--color-text-soft); font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  border: 0;
  border-bottom: 1px solid var(--color-text);
  border-radius: 0;
  background: transparent;
  color: var(--color-text);
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--color-gold); box-shadow: none; }
.primary-button { border: 1px solid var(--color-navy); border-radius: 0; background: var(--color-navy); }
.contact-closing { margin-top: 100px; color: var(--color-gold); font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.8rem, 3.6vw, 4rem); }

.editorial-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 800ms cubic-bezier(.2,.7,.2,1), transform 800ms cubic-bezier(.2,.7,.2,1);
}
.editorial-reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes editorialDrift {
  from { transform: scale(1.04); }
  to { transform: scale(1.015); }
}

@media (max-width: 1050px) {
  .home-hero-content {
    grid-template-columns: 1fr;
    grid-template-areas: "overline" "title" "pillars" "lead" "actions" "capabilities";
    padding-top: 150px;
  }
  .hero-capabilities { margin-top: 42px; padding: 0; border-left: 0; }
  .home-hero .hero-pillar-grid { grid-template-columns: repeat(2, 1fr); }
  .home-hero .hero-pillar-grid article { grid-template-columns: 26px 1fr; }
  .home-hero .hero-pillar-grid p { grid-column: 2; }
  .home-experience,
  .intelligence-home,
  .intelligence-hero-panel,
  .contact-layout { grid-template-columns: 1fr; }
  .home-partners { grid-column: 1; }
  .reason-grid { grid-template-columns: repeat(2, 1fr); }
  .reason-grid article:nth-child(2) { border-right: 0; }
  .partner-logo-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
  body { background: var(--color-cream); }
  .site-header { min-height: 68px; }
  .site-nav {
    top: 68px;
    padding: 36px 24px;
    background: rgba(40, 33, 29, 0.99);
    font-size: 0.9rem;
  }
  .home-hero-content { padding: 130px 0 48px; }
  .home-hero-content h1 { font-size: clamp(4rem, 17vw, 7rem); }
  .home-hero-media::after {
    background: linear-gradient(0deg, rgba(40, 33, 29, 0.95) 0%, rgba(40, 33, 29, 0.44) 72%, rgba(40, 33, 29, 0.28));
  }
  .home-hero .hero-pillar-grid { grid-template-columns: 1fr; }
  .home-experience { padding: 76px 0; }
  .home-figures { grid-template-columns: 1fr; }
  .home-figures strong,
  .home-figures strong:nth-child(2),
  .home-figures strong:last-child { min-height: 0; padding: 28px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .home-partners { padding-top: 12px; }
  .intelligence-home-visual,
  .intelligence-visual { min-height: 430px; }
  .home-cta { min-height: 560px; padding: 44px 28px; }
  .content-page { padding: 92px 0 70px; }
  .page-heading,
  #porque .why-heading > div { grid-template-columns: 1fr; gap: 28px; }
  .ecosystem-card-trigger,
  .specialization-trigger { grid-template-columns: 42px minmax(0, 1fr); min-height: 170px; padding: 28px 18px; }
  .reveal-card-action { grid-column: 2; justify-self: start; }
  .reveal-panel-inner { padding: 0 18px 40px 60px; }
  .ecosystem-detail { grid-template-columns: 1fr; }
  .intelligence-method-grid { grid-template-columns: 1fr; }
  .intelligence-method-grid article { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .figures-strip { grid-template-columns: 1fr; }
  .figures-strip strong { border-right: 0; border-bottom: 1px solid var(--line); }
  .partners-panel { grid-template-columns: 1fr; }
  .partner-logo-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .brand-link { width: 174px; }
  .home-hero-content .hero-lead { font-size: 1.3rem; }
  .hero-actions { display: grid; width: 100%; }
  .home-hero .hero-actions .button-link { width: 100%; }
  .home-hero .hero-pillar-grid article { grid-template-columns: 24px 88px 1fr; }
  .home-hero .hero-pillar-grid p { grid-column: 3; }
  .home-section-heading h2,
  .page-heading h2,
  .intelligence-home h2,
  .intelligence-simple h2,
  .home-cta h2 { font-size: clamp(2.6rem, 13vw, 4.2rem); }
  .reveal-title { font-size: 1.8rem; }
  .reason-grid { grid-template-columns: 1fr; }
  .reason-grid article { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .locations-strip { justify-content: flex-start; gap: 8px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

/* Version 2.1: clearer reading rhythm, image-led composition and reduced-stroke icon family. */
p { max-width: 66ch; }

.pillar-icon::before,
.pillar-icon::after { display: none !important; }

.pillar-icon svg,
.ecosystem-icon svg,
.finance-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pillar-icon svg circle,
.ecosystem-icon svg circle,
.finance-icon svg circle { fill: none; stroke: currentColor; }

.home-hero .secondary-button {
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: transparent;
  color: #fff;
}

.home-hero .secondary-button:hover,
.home-hero .secondary-button:focus-visible {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.home-editorial-spread {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.35fr);
  gap: clamp(18px, 3vw, 42px);
  align-items: end;
  padding: 0 0 var(--section-space);
  border-bottom: 1px solid var(--line);
}

.editorial-image {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: #d8cfc3;
}

.editorial-image-tall { height: clamp(380px, 48vw, 690px); }
.editorial-image-wide { height: clamp(300px, 35vw, 510px); }

.editorial-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.84) contrast(0.98);
  transition: transform 1.1s cubic-bezier(.2,.7,.2,1), filter 600ms ease;
}

.editorial-image-tall img { object-position: 56% center; }
.editorial-image-wide img { object-position: center; }
.editorial-image:hover img { transform: scale(1.018); filter: saturate(0.92) contrast(1); }

.image-card .reveal-icon,
.image-card .finance-icon {
  width: 42px;
  height: 42px;
  padding: 3px;
  border: 0;
  color: #d8a77f;
}

.reveal-state-more,
.reveal-state-less { color: rgba(255, 255, 255, 0.8); }

@media (max-width: 860px) {
  .home-hero { min-height: 100svh; }

  .home-hero-content {
    gap: 8px;
    padding-top: 112px;
    padding-bottom: 44px;
  }

  .home-hero-content h1 {
    max-width: 8ch;
    font-size: clamp(3.8rem, 13vw, 6rem);
    line-height: 0.88;
    letter-spacing: -0.055em;
  }

  .hero-pillars {
    margin-top: 22px;
    overflow-wrap: anywhere;
    font-size: 0.72rem;
    line-height: 1.55;
    letter-spacing: 0.035em;
  }

  .home-hero-content .hero-lead {
    max-width: 31ch;
    margin: 14px 0 16px;
    font-size: clamp(1.12rem, 3.4vw, 1.45rem);
    line-height: 1.42;
  }

  .home-hero-media img { object-position: 64% center; }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    width: auto;
  }

  .home-hero .hero-actions .button-link {
    width: auto;
    min-width: 190px;
    padding: 13px 18px;
  }

  .hero-capabilities { margin-top: 28px; }
  .hero-capabilities-intro { margin-bottom: 10px; font-size: 0.85rem; }

  .home-hero .hero-pillar-grid article {
    grid-template-columns: 25px 92px 1fr;
    gap: 10px;
    padding: 10px 0;
  }

  .home-hero .hero-pillar-grid p { grid-column: 3; }

  .home-editorial-spread {
    grid-template-columns: 0.82fr 1.18fr;
    gap: 14px;
    padding-bottom: 72px;
  }

  .editorial-image-tall { height: 460px; }
  .editorial-image-wide { height: 330px; }

  .ecosystem-card-trigger,
  .specialization-trigger { min-height: 154px; }

  .reveal-title { font-size: clamp(1.65rem, 5.4vw, 2.5rem); line-height: 1.08; }
}

@media (max-width: 560px) {
  .home-hero-content { padding-top: 104px; }

  .home-hero-content h1 {
    font-size: clamp(3.25rem, 16vw, 4.7rem);
    line-height: 0.9;
  }

  .home-hero-content .hero-overline { margin-bottom: 10px; font-size: 0.63rem; }

  .hero-actions { display: grid; width: 100%; }
  .home-hero .hero-actions .button-link { width: 100%; min-width: 0; }

  .home-hero .hero-pillar-grid article {
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 8px 12px;
  }

  .home-hero .hero-pillar-grid p { grid-column: 2; }

  .home-editorial-spread {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .editorial-image-tall,
  .editorial-image-wide { height: min(105vw, 480px); }

  .editorial-image-tall img { object-position: 62% center; }

  .page-heading p,
  .intelligence-home p:not(.section-kicker) { font-size: 1rem; }

  .ecosystem-card-trigger,
  .specialization-trigger {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 14px;
    padding: 24px 16px;
  }

  .image-card .reveal-icon,
  .image-card .finance-icon { width: 30px; height: 30px; }

  .reveal-panel-inner { padding-left: 16px; }
}

/* Version 3: brighter, contemporary consultancy direction with no navy UI. */
:root {
  --color-navy: #352b25;
  --color-navy-soft: #493d35;
  --color-blue-muted: #74665c;
  --color-cream: #f6f3ed;
  --color-warm-white: #fffdf8;
  --color-text: #2b2521;
  --color-text-soft: #62574f;
  --navy: #352b25;
  --ink: #2b2521;
  --blue: #74665c;
  --paper: #f6f3ed;
  --paper-soft: #fffdf8;
}

body {
  background:
    linear-gradient(90deg, rgba(98, 87, 79, 0.025) 1px, transparent 1px) 0 0 / 25vw 100%,
    #f6f3ed;
}

.brand-link img {
  filter: grayscale(1) brightness(2.7);
  opacity: 0.96;
}

.site-header,
body[data-current-page="home"] .site-header.is-scrolled,
body[data-current-page="home"].menu-open .site-header {
  background: rgba(53, 43, 37, 0.97);
}

body[data-current-page="home"] .site-header {
  background: linear-gradient(180deg, rgba(53, 43, 37, 0.72), rgba(53, 43, 37, 0));
}

.home-hero { background: #352b25; }

.home-hero-media::after {
  background:
    linear-gradient(90deg, rgba(53, 43, 37, 0.78) 0%, rgba(53, 43, 37, 0.43) 35%, rgba(53, 43, 37, 0.04) 70%),
    linear-gradient(0deg, rgba(53, 43, 37, 0.48) 0%, transparent 45%);
}

.home-hero-media img {
  filter: saturate(0.9) contrast(0.98) brightness(1.05);
  object-position: center;
}

.home-hero-content h1,
.home-section-heading h2,
.page-heading h2,
.intelligence-home h2,
.intelligence-simple h2,
.home-cta h2,
.reveal-title {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  letter-spacing: -0.055em;
}

.home-hero-content h1 {
  max-width: 780px;
  font-size: clamp(4.5rem, 8vw, 8.6rem);
  line-height: 0.86;
}

.home-hero-content .hero-lead {
  max-width: 610px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(1.15rem, 1.65vw, 1.65rem);
  font-weight: 400;
  line-height: 1.45;
}

.home-hero-content .hero-overline {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 18px rgba(53, 43, 37, 0.38);
}

.home-hero-content h1,
.home-hero-content .hero-lead,
.hero-pillars,
.hero-capabilities { text-shadow: 0 2px 22px rgba(53, 43, 37, 0.34); }

.hero-pillars {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
}

.home-hero .hero-pillar-grid article {
  border-color: rgba(255, 255, 255, 0.22);
  border-radius: 0;
  background: rgba(53, 43, 37, 0.22);
  box-shadow: none;
  backdrop-filter: blur(3px);
}

.home-hero .hero-pillar-grid .pillar-icon {
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #d1a37f;
}

.home-section-heading h2,
.page-heading h2,
.intelligence-home h2,
.intelligence-simple h2,
.home-cta h2 {
  font-size: clamp(2.7rem, 4.7vw, 5.4rem);
  line-height: 1.02;
}

.home-experience {
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
}

.home-figures strong { background: transparent !important; }

.intelligence-home-visual,
.intelligence-visual,
.intelligence-final {
  background-color: #352b25;
}

.intelligence-home-visual,
.intelligence-visual {
  background:
    linear-gradient(rgba(209, 163, 127, 0.12) 1px, transparent 1px) 0 0 / 100% 25%,
    linear-gradient(90deg, rgba(209, 163, 127, 0.1) 1px, transparent 1px) 0 0 / 25% 100%,
    #352b25;
}

.image-card::after {
  background: linear-gradient(90deg, rgba(53, 43, 37, 0.82), rgba(53, 43, 37, 0.42));
}

.image-card .reveal-icon,
.image-card .finance-icon {
  border: 0;
  border-radius: 0;
  background: rgba(255, 253, 248, 0.94);
  color: #8e5c3d;
  box-shadow: none;
}

.image-card .reveal-indicator {
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 0;
  background: transparent;
}

.image-card .reveal-indicator::before,
.image-card .reveal-indicator::after { background: #fff; }

.image-card .reveal-panel-inner {
  background: linear-gradient(180deg, rgba(53, 43, 37, 0.18), rgba(53, 43, 37, 0.55));
}

.reveal-title {
  max-width: 920px;
  font-size: clamp(1.9rem, 3vw, 3.8rem);
  line-height: 1.08;
}

.primary-button {
  border-color: #352b25;
  background: #352b25;
}

.contact-form input,
.contact-form select,
.contact-form textarea { border-bottom-color: #62574f; }

@media (max-width: 860px) {
  .home-hero-media::after {
    background:
      linear-gradient(90deg, rgba(53, 43, 37, 0.7), rgba(53, 43, 37, 0.12)),
      linear-gradient(0deg, rgba(53, 43, 37, 0.58), rgba(53, 43, 37, 0.05) 75%);
  }

  .home-hero-media img {
    object-position: 61% center;
    filter: saturate(0.9) brightness(1.08);
  }

  .home-hero-content h1 {
    max-width: 9ch;
    font-size: clamp(3.5rem, 11.5vw, 5.5rem);
    line-height: 0.9;
  }

  .home-hero-content .hero-lead {
    max-width: 34ch;
    font-size: clamp(1.04rem, 3.1vw, 1.32rem);
  }

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

@media (max-width: 560px) {
  .home-hero-media img { object-position: 66% center; }

  .home-hero-content h1 {
    font-size: clamp(3rem, 14.5vw, 4.25rem);
    letter-spacing: -0.06em;
  }

  .home-section-heading h2,
  .page-heading h2,
  .intelligence-home h2,
  .intelligence-simple h2,
  .home-cta h2 { font-size: clamp(2.35rem, 11vw, 3.55rem); }
}

/* Version 4: complete home hierarchy and responsive refinement. */
.home-hero {
  min-height: max(760px, 100svh);
  align-items: stretch;
}

.home-hero-content {
  grid-template-columns: minmax(0, 1.12fr) minmax(330px, 0.72fr);
  grid-template-areas:
    "overline overline"
    "title lead"
    "pillars lead"
    "actions lead"
    "capabilities capabilities";
  align-content: end;
  align-items: end;
  gap: 12px clamp(48px, 7vw, 120px);
  padding-top: 142px;
  padding-bottom: 34px;
}

.home-hero-content .hero-overline { align-self: end; }
.home-hero-content .hero-lead { align-self: center; margin: 0; }
.home-hero-content .hero-actions { align-self: start; }

.hero-capabilities {
  display: grid;
  grid-template-columns: minmax(210px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: stretch;
  margin-top: clamp(42px, 7vh, 76px);
  padding: 0;
  border: 0;
}

.hero-capabilities-intro {
  align-self: center;
  max-width: 25ch;
  margin: 0;
  color: #fff;
  font-size: clamp(1.15rem, 1.7vw, 1.6rem);
  font-weight: 400;
  line-height: 1.35;
}

.home-hero .hero-pillar-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.home-hero .hero-pillar-grid article {
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  gap: 8px;
  min-height: 172px;
  padding: 22px clamp(15px, 1.5vw, 24px);
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(53, 43, 37, 0.12);
}

.home-hero .hero-pillar-grid article:last-child { border-right: 0; border-bottom: 0; }

.home-hero .hero-pillar-grid .pillar-icon {
  width: 28px;
  height: 28px;
  margin-bottom: 6px;
}

.home-hero .hero-pillar-grid h3 {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-hero .hero-pillar-grid p {
  grid-column: auto;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  line-height: 1.45;
}

.capability-scroll-dots { display: none; }

.home-experience {
  grid-template-columns: minmax(270px, 0.65fr) minmax(0, 1.35fr);
  align-items: start;
}

.home-section-heading h2 {
  max-width: 9ch;
  text-wrap: balance;
}

.home-figures {
  align-self: start;
  border-bottom: 1px solid var(--line);
}

.home-partners figure,
.partner-logo {
  filter: none;
  opacity: 1;
}

.home-partners img,
.partner-logo img {
  filter: none;
  opacity: 1;
}

.home-partners figure {
  display: grid;
  min-height: 72px;
  place-items: center;
  padding: 8px 12px;
  background: rgba(255, 253, 248, 0.62);
}

.home-partners img { max-height: 42px; }

.intelligence-home {
  grid-template-columns: minmax(310px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
}

.intelligence-home h2 { max-width: 10.5ch; text-wrap: balance; }

.intelligence-home-visual,
.intelligence-visual {
  min-height: clamp(470px, 48vw, 690px);
  border: 0;
  background: #352b25;
}

.intelligence-home-visual img,
.intelligence-visual img {
  opacity: 1;
  filter: saturate(0.82) contrast(1.02);
  object-position: center;
}

.intelligence-home-visual::after,
.intelligence-visual::after {
  background:
    linear-gradient(0deg, rgba(53, 43, 37, 0.68), transparent 52%),
    linear-gradient(90deg, rgba(53, 43, 37, 0.16), transparent 42%);
}

.intelligence-data-card,
.intelligence-visual-card {
  padding: 14px 0;
  border-top-color: rgba(255, 255, 255, 0.56);
  text-shadow: 0 2px 14px rgba(53, 43, 37, 0.55);
}

.intelligence-data-main { top: auto; bottom: 18%; left: 8%; width: 42%; }
.intelligence-data-risk { right: 8%; bottom: 7%; width: 44%; }

.home-cta { min-height: 610px; }
.home-cta::after { background: linear-gradient(90deg, rgba(53, 43, 37, 0.82), rgba(53, 43, 37, 0.16)); }

@media (max-width: 1050px) {
  .home-hero { min-height: auto; }

  .home-hero-content {
    grid-template-columns: 1fr;
    grid-template-areas: "overline" "title" "pillars" "lead" "actions" "capabilities";
    padding-top: 132px;
    padding-bottom: 40px;
  }

  .home-hero-content .hero-lead { margin-top: 16px; }

  .hero-capabilities {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 46px;
  }

  .hero-capabilities-intro { max-width: 38ch; }

  .home-hero .hero-pillar-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-hero .hero-pillar-grid article:nth-child(2) { border-right: 0; }
  .home-hero .hero-pillar-grid article:nth-child(-n + 2) { border-bottom: 1px solid rgba(255, 255, 255, 0.28); }

  .intelligence-home { grid-template-columns: 1fr; }
  .intelligence-home h2 { max-width: 12ch; }
}

@media (max-width: 860px) {
  .home-hero-content { padding-top: 112px; }

  .hero-capabilities-intro {
    max-width: 32ch;
    font-size: 1.16rem;
  }

  .home-experience { grid-template-columns: 1fr; }
  .home-section-heading h2 { max-width: 11ch; }

  .home-partners {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .home-partners figure { min-height: 68px; margin: 0; }
  .home-partners img { max-width: 100%; max-height: 36px; }
}

@media (max-width: 560px) {
  .home-hero-content { padding-top: 104px; }

  .hero-capabilities { margin-top: 38px; }
  .hero-capabilities-intro { font-size: 1.04rem; }

  .home-hero .hero-pillar-grid {
    grid-template-columns: 1fr;
    border-bottom: 0;
  }

  .home-hero .hero-pillar-grid article,
  .home-hero .hero-pillar-grid article:nth-child(2) {
    grid-template-columns: 28px 92px minmax(0, 1fr);
    align-items: start;
    min-height: 0;
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
    background: transparent;
  }

  .home-hero .hero-pillar-grid .pillar-icon { margin: 0; }
  .home-hero .hero-pillar-grid h3 { padding-top: 3px; }
  .home-hero .hero-pillar-grid p { grid-column: 3; }

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

  .intelligence-home-visual,
  .intelligence-visual { min-height: 430px; }

  .intelligence-data-main { bottom: 20%; width: 54%; }
  .intelligence-data-risk { bottom: 6%; width: 58%; }
}

/* Version 5: stronger pacing, balanced experience logos and a four-part ecosystem. */
.home-hero-content {
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "overline overline"
    "title title"
    "pillars actions"
    "capabilities capabilities";
}

.home-hero-content .hero-actions {
  justify-self: end;
  align-self: center;
}

.home-positioning {
  display: grid;
  place-items: center;
  padding: clamp(58px, 7vw, 104px) clamp(12px, 5vw, 74px);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.home-positioning p {
  max-width: 29ch;
  margin: 0;
  color: var(--color-text);
  font-size: clamp(1.85rem, 3.15vw, 3.7rem);
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.home-experience {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(34px, 4.5vw, 62px);
  padding: clamp(64px, 7vw, 104px) 0;
}

.home-section-heading.compact {
  display: grid;
  grid-template-columns: minmax(150px, 0.35fr) minmax(0, 1.65fr);
  gap: clamp(28px, 6vw, 96px);
  align-items: start;
}

.home-section-heading.compact .section-kicker { margin-top: 10px; }
.home-section-heading h2 { max-width: 13ch; }

.home-figures {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
}

.home-figures strong {
  min-height: 158px;
  padding: 24px clamp(20px, 3vw, 42px) 18px 0;
}

.home-figures strong:nth-child(2),
.home-figures strong:last-child { padding-left: clamp(20px, 3vw, 42px); }

.home-partners {
  grid-column: auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  width: 100%;
  padding-top: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.home-partners figure {
  min-width: 0;
  min-height: 118px;
  margin: 0;
  padding: 20px clamp(14px, 2vw, 30px);
  border-right: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.44);
}

.home-partners figure:last-child { border-right: 0; }

.home-partners img {
  width: auto;
  max-width: min(100%, 188px);
  max-height: 62px;
  object-fit: contain;
}

.home-partners figure:last-child img { max-height: 78px; }

.ecosystem-page {
  padding-top: clamp(104px, 10vw, 140px);
  padding-bottom: clamp(64px, 7vw, 104px);
}

.ecosystem-page .page-heading {
  margin-bottom: clamp(42px, 5vw, 68px);
}

.ecosystem-service-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.ecosystem-accordion-card {
  min-width: 0;
  border: 0;
  min-height: clamp(310px, 27vw, 400px);
}

.ecosystem-accordion-card:last-child { border: 0; }

.ecosystem-accordion-card.image-card::after {
  background:
    linear-gradient(180deg, rgba(53, 43, 37, 0.16) 0%, rgba(53, 43, 37, 0.88) 100%);
}

.ecosystem-card-trigger {
  grid-template-columns: 1fr auto;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 18px 24px;
  min-height: clamp(310px, 27vw, 400px);
  padding: clamp(26px, 3vw, 42px);
}

.ecosystem-card-trigger .ecosystem-icon {
  grid-column: 1;
  grid-row: 1;
}

.ecosystem-card-trigger .reveal-summary-copy {
  grid-column: 1 / -1;
  grid-row: 2;
  align-self: end;
  max-width: 36rem;
}

.ecosystem-card-trigger .reveal-card-action {
  grid-column: 1 / -1;
  grid-row: 3;
  align-self: end;
  max-width: none;
}

.ecosystem-card-trigger .reveal-title {
  max-width: 18ch;
  font-size: clamp(1.85rem, 3.1vw, 3.55rem);
}

.ecosystem-accordion-card.is-open { grid-column: 1 / -1; }

.ecosystem-accordion-card.is-open .ecosystem-card-trigger {
  min-height: clamp(270px, 26vw, 380px);
}

.ecosystem-page .reveal-panel-inner {
  padding: clamp(30px, 4vw, 56px);
}

#porque .figures-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: 100%;
  margin-top: clamp(42px, 5vw, 72px);
  overflow: visible;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
}

#porque .figures-strip strong {
  display: grid;
  align-content: center;
  justify-content: start;
  gap: 8px;
  min-width: 0;
  min-height: 190px;
  padding: 30px clamp(22px, 3vw, 46px);
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--color-text);
  text-align: left;
}

#porque .figures-strip strong:first-child { padding-left: 0; }
#porque .figures-strip strong:last-child { border-right: 0; }

#porque .figures-strip strong span {
  display: block;
  font-size: clamp(3.1rem, 5.5vw, 6.4rem);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.065em;
  white-space: nowrap;
}

#porque .figures-strip strong small {
  display: block;
  color: var(--color-text-soft);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

#porque .locations-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 24px 0 60px;
  border-bottom: 1px solid var(--line);
}

#porque .locations-strip span {
  min-height: 54px;
  padding: 12px 8px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
}

#porque .locations-strip span:last-child { border-right: 0; }

@media (max-width: 1050px) {
  .home-hero-content {
    grid-template-columns: 1fr;
    grid-template-areas: "overline" "title" "pillars" "actions" "capabilities";
  }

  .home-hero-content .hero-actions {
    justify-self: start;
    margin-top: 10px;
  }

  .home-section-heading.compact {
    grid-template-columns: minmax(120px, 0.32fr) minmax(0, 1.68fr);
  }

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

  .home-partners figure:nth-child(3) { border-right: 0; }
  .home-partners figure:nth-child(-n + 3) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 760px) {
  .home-positioning { padding-block: 52px; }

  .home-section-heading.compact {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .home-section-heading.compact .section-kicker { margin-top: 0; }

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

  .home-figures strong,
  .home-figures strong:nth-child(2),
  .home-figures strong:last-child {
    min-height: 0;
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .home-partners { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-partners figure:nth-child(3) { border-right: 1px solid var(--line); }
  .home-partners figure:nth-child(2n) { border-right: 0; }
  .home-partners figure:nth-child(-n + 4) { border-bottom: 1px solid var(--line); }

  .ecosystem-service-panel { grid-template-columns: 1fr; }
  .ecosystem-accordion-card.is-open { grid-column: auto; }
  .ecosystem-card-trigger,
  .ecosystem-accordion-card { min-height: 300px; }

  #porque .figures-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  #porque .figures-strip strong {
    min-height: 150px;
    padding: 24px 16px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }
  #porque .figures-strip strong:first-child { padding-left: 0; }
  #porque .figures-strip strong span { font-size: clamp(2.2rem, 8.5vw, 4rem); }
}

@media (max-width: 560px) {
  .home-positioning p { font-size: clamp(1.55rem, 7.2vw, 2.05rem); }
  .home-experience { padding-block: 50px; }
  .home-partners figure { min-height: 94px; padding: 15px 12px; }
  .home-partners img { max-height: 46px; }
  .home-partners figure:last-child img { max-height: 60px; }

  .ecosystem-page .page-heading { margin-bottom: 32px; }
  .ecosystem-card-trigger,
  .ecosystem-accordion-card { min-height: 280px; }
  .ecosystem-card-trigger { padding: 24px 20px; }
  .ecosystem-card-trigger .reveal-title { font-size: clamp(1.65rem, 8vw, 2.35rem); }

  #porque .figures-strip { grid-template-columns: 1fr; }
  #porque .figures-strip strong,
  #porque .figures-strip strong:first-child {
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    min-height: 0;
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  #porque .figures-strip strong:last-child { border-bottom: 0; }
  #porque .figures-strip strong span { font-size: clamp(2.4rem, 11.8vw, 3.25rem); }

  #porque .locations-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 44px;
  }
  #porque .locations-strip span { border-bottom: 1px solid var(--line); }
  #porque .locations-strip span:nth-child(2n) { border-right: 0; }
}

/* Version 8: final editorial refinement for Home, Intelligence and Contact. */
.home-positioning {
  grid-template-columns: minmax(150px, 0.34fr) minmax(0, 1.66fr);
  gap: clamp(34px, 7vw, 112px);
  place-items: start;
  padding: clamp(50px, 6vw, 82px) 0;
  background: transparent;
  text-align: left;
}

.home-positioning-label {
  margin-top: 0.65em;
  color: var(--color-gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-positioning p {
  max-width: 25ch;
  font-size: clamp(1.8rem, 2.65vw, 3.25rem);
  line-height: 1.14;
}

.home-experience {
  gap: clamp(26px, 3.5vw, 46px);
  padding: clamp(52px, 6vw, 82px) 0;
}

.home-section-heading.compact {
  grid-template-columns: minmax(150px, 0.34fr) minmax(0, 1.66fr);
  gap: clamp(34px, 7vw, 112px);
}

.home-section-heading.compact h2 {
  max-width: 18ch;
  font-size: clamp(2.4rem, 3.65vw, 4.55rem);
  line-height: 1;
}

.home-figures strong,
.home-figures strong:nth-child(2),
.home-figures strong:last-child {
  display: grid;
  align-content: center;
  justify-content: start;
  gap: 8px;
  min-height: 126px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.home-figures strong span {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(2.15rem, 3.35vw, 4.15rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.home-figures strong small {
  color: var(--color-text-soft);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-partners figure { min-height: 98px; padding-block: 14px; }
.home-partners img { max-height: 54px; }
.home-partners figure:last-child img { max-height: 68px; }

.intelligence-page {
  padding-top: clamp(108px, 10vw, 144px);
  padding-bottom: clamp(64px, 7vw, 104px);
}

.intelligence-hero-panel {
  grid-template-columns: minmax(300px, 0.8fr) minmax(460px, 1.2fr);
  gap: clamp(46px, 7vw, 104px);
  align-items: center;
  padding-bottom: clamp(66px, 7vw, 100px);
}

.intelligence-simple h2 {
  max-width: 11ch;
  font-size: clamp(2.75rem, 4.5vw, 5.35rem);
}

.intelligence-subtitle {
  max-width: 27ch;
  margin-top: 24px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(1.15rem, 1.55vw, 1.55rem);
  font-weight: 500;
  line-height: 1.36;
}

.intelligence-tags {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 22px;
  margin-top: 34px;
}

.intelligence-tags span {
  min-height: 48px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.intelligence-tags span:nth-last-child(-n + 2) { border-bottom: 1px solid var(--line); }

.intelligence-method-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(58px, 7vw, 94px) 0;
}

.intelligence-method-grid article {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 16px;
  min-height: 248px;
  padding: clamp(26px, 3vw, 40px);
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.58);
}

.intelligence-method-grid article:last-child { border-right: 1px solid var(--line); }

.intelligence-method-grid .pillar-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--color-gold);
}

.intelligence-method-grid .pillar-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.intelligence-method-grid h3 {
  margin: 6px 0 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 450;
  letter-spacing: -0.035em;
}

.intelligence-method-grid p {
  margin: 0;
  color: var(--color-text-soft);
  font-size: 0.98rem;
  line-height: 1.55;
}

.intelligence-final {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(30px, 6vw, 90px);
  padding: clamp(46px, 6vw, 80px);
}

#contacto.content-page {
  padding-top: clamp(106px, 10vw, 142px);
  padding-bottom: clamp(48px, 6vw, 86px);
}

.contact-layout {
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.75fr);
  gap: clamp(54px, 8vw, 120px);
  align-items: start;
}

.contact-overview { min-width: 0; }

.contact-layout .page-heading {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  margin: 0;
  padding: 0 0 34px;
  border-bottom: 1px solid var(--line);
}

.contact-layout .page-heading h2 {
  font-size: clamp(3.6rem, 7vw, 8rem);
  line-height: 0.86;
}

.contact-layout .page-heading p {
  max-width: 42ch;
  margin: 0;
  font-size: clamp(1.05rem, 1.35vw, 1.25rem);
  line-height: 1.58;
}

.contact-layout .cta-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 30px;
  border-top: 1px solid var(--line);
}

.contact-layout .cta-list span {
  min-height: 82px;
  padding: 18px 22px 18px 0;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--color-text);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.4;
}

.contact-layout .cta-list span:nth-child(2n) {
  padding-left: 22px;
  border-right: 0;
}

.contact-visual {
  height: clamp(250px, 25vw, 380px);
  margin: 34px 0 0;
  overflow: hidden;
  background: #d8cfc3;
}

.contact-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) contrast(0.98);
  transition: transform 900ms cubic-bezier(.2,.7,.2,1);
}

.contact-visual:hover img { transform: scale(1.018); }

.contact-form {
  position: sticky;
  top: 104px;
  gap: 20px;
  padding: clamp(30px, 4vw, 52px);
  border: 1px solid var(--line);
  border-top: 3px solid var(--color-gold);
  background: rgba(255, 253, 248, 0.78);
}

.contact-form label {
  gap: 9px;
  color: var(--color-text-soft);
  font-size: 0.875rem;
  font-weight: 650;
  letter-spacing: 0.1em;
}

.contact-form input,
.contact-form select { min-height: 52px; }
.contact-form textarea { min-height: 144px; }

.contact-form .primary-button {
  min-height: 54px;
  margin-top: 4px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-form .form-note {
  margin: 0;
  color: var(--color-gold);
  font-size: 0.86rem;
  letter-spacing: 0.03em;
  text-align: center;
}

.contact-closing {
  max-width: none;
  margin: clamp(54px, 7vw, 96px) 0 0;
  padding: clamp(42px, 6vw, 82px);
  background: var(--color-navy);
  color: #fff;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(1.7rem, 3.2vw, 3.8rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.04em;
  text-align: left;
  text-align-last: left;
}

@media (max-width: 1050px) {
  .home-positioning,
  .home-section-heading.compact {
    grid-template-columns: minmax(120px, 0.28fr) minmax(0, 1.72fr);
    gap: 38px;
  }

  .intelligence-hero-panel {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .intelligence-simple h2 { max-width: 13ch; }
  .intelligence-visual { min-height: 560px; }

  .contact-layout {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.85fr);
    gap: 42px;
  }
}

@media (max-width: 760px) {
  .home-positioning,
  .home-section-heading.compact {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .home-positioning-label { margin-top: 0; }
  .home-positioning p { max-width: 28ch; }
  .home-section-heading.compact h2 { max-width: 14ch; }

  .home-figures strong,
  .home-figures strong:nth-child(2),
  .home-figures strong:last-child {
    grid-template-columns: minmax(126px, 0.62fr) minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    min-height: 78px;
    padding: 17px 0;
  }

  .home-figures strong span { font-size: clamp(2rem, 8.5vw, 3rem); }
  .home-partners figure { min-height: 84px; padding-block: 12px; }

  .intelligence-method-grid { grid-template-columns: 1fr; }
  .intelligence-method-grid article,
  .intelligence-method-grid article:last-child {
    grid-template-columns: 48px minmax(0, 1fr);
    grid-template-rows: auto auto;
    min-height: 0;
    gap: 8px 18px;
    border: 0;
    border-top: 1px solid var(--line);
    background: transparent;
  }
  .intelligence-method-grid article:last-child { border-bottom: 1px solid var(--line); }
  .intelligence-method-grid .pillar-icon { grid-row: 1 / 3; }
  .intelligence-method-grid h3 { margin: 0; }

  .intelligence-final { grid-template-columns: 1fr; }

  .contact-layout { grid-template-columns: 1fr; }
  .contact-form { position: static; }
}

@media (max-width: 560px) {
  .home-positioning { padding-block: 42px; }
  .home-positioning p { font-size: clamp(1.55rem, 6.8vw, 1.95rem); }
  .home-experience { gap: 22px; padding-block: 42px; }
  .home-section-heading.compact h2 { font-size: clamp(2.15rem, 9.8vw, 2.8rem); }
  .home-figures strong,
  .home-figures strong:nth-child(2),
  .home-figures strong:last-child { grid-template-columns: 138px minmax(0, 1fr); }
  .home-figures strong span { font-size: clamp(1.9rem, 8.5vw, 2.55rem); }

  .intelligence-page { padding-top: 98px; }
  .intelligence-simple h2 { font-size: clamp(2.45rem, 11vw, 3.4rem); }
  .intelligence-visual { min-height: 420px; }
  .intelligence-tags { gap: 0 14px; }
  .intelligence-method-grid article { padding: 22px 0; }

  #contacto.content-page { padding-top: 96px; }
  .contact-layout { gap: 36px; }
  .contact-layout .page-heading h2 { font-size: clamp(3.35rem, 16vw, 4.75rem); }
  .contact-layout .cta-list { grid-template-columns: 1fr; }
  .contact-layout .cta-list span,
  .contact-layout .cta-list span:nth-child(2n) {
    min-height: 0;
    padding: 14px 0;
    border-right: 0;
  }
  .contact-visual { height: 250px; margin-top: 26px; }
  .contact-form { padding: 26px 20px; }
  .contact-closing { padding: 34px 24px; font-size: clamp(1.55rem, 8vw, 2.3rem); }
}

/* Version 10: compact, one-glance Contact page. */
#contacto.content-page {
  min-height: 100svh;
  padding-top: clamp(96px, 8vw, 118px);
  padding-bottom: 28px;
}

#contacto .contact-layout {
  grid-template-columns: minmax(0, 1fr) minmax(400px, 0.82fr);
  gap: clamp(42px, 5vw, 76px);
  align-items: start;
}

#contacto .contact-layout .page-heading {
  gap: 14px;
  padding-bottom: 20px;
}

#contacto .contact-layout .page-heading h2 {
  font-size: clamp(3.6rem, 5.7vw, 6.5rem);
  line-height: 0.9;
}

#contacto .contact-layout .page-heading p {
  max-width: 48ch;
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  line-height: 1.48;
}

#contacto .contact-layout .cta-list {
  margin-top: 16px;
}

#contacto .contact-layout .cta-list span {
  min-height: 60px;
  padding-top: 12px;
  padding-bottom: 12px;
  font-size: 0.875rem;
  line-height: 1.3;
}

#contacto .contact-visual {
  height: clamp(150px, 14vw, 205px);
  margin-top: 18px;
}

#contacto .contact-closing {
  margin: 16px 0 0;
  padding: 16px 0 0 20px;
  border-left: 2px solid var(--color-gold);
  background: transparent;
  color: var(--color-text);
  font-size: clamp(1.15rem, 1.65vw, 1.7rem);
  line-height: 1.22;
}

#contacto .contact-form {
  position: static;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
  padding: clamp(24px, 3vw, 38px);
}

#contacto .contact-form label {
  gap: 6px;
  font-size: 0.875rem;
}

#contacto .contact-form label:nth-of-type(3),
#contacto .contact-form label:nth-of-type(4),
#contacto .contact-form .primary-button,
#contacto .contact-form .form-note {
  grid-column: 1 / -1;
}

#contacto .contact-form input,
#contacto .contact-form select {
  min-height: 44px;
}

#contacto .contact-form textarea { min-height: 100px; }

#contacto .contact-form .primary-button {
  min-height: 48px;
  margin-top: 0;
}

#contacto .contact-form .form-note { font-size: 0.8rem; }

@media (max-width: 1000px) {
  #contacto .contact-layout {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.92fr);
    gap: 32px;
  }

  #contacto .contact-layout .page-heading h2 { font-size: clamp(3.2rem, 7vw, 4.7rem); }
  #contacto .contact-layout .cta-list span { min-height: 56px; padding-inline-end: 12px; }
  #contacto .contact-visual { height: 150px; }

  #contacto .contact-form {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px;
  }

  #contacto .contact-form label:nth-of-type(3),
  #contacto .contact-form label:nth-of-type(4),
  #contacto .contact-form .primary-button,
  #contacto .contact-form .form-note { grid-column: auto; }

  #contacto .contact-form textarea { min-height: 90px; }
}

@media (max-width: 760px) {
  #contacto.content-page { padding-top: 88px; padding-bottom: 24px; }
  #contacto .contact-layout { grid-template-columns: 1fr; gap: 26px; }
  #contacto .contact-layout .page-heading { gap: 10px; padding-bottom: 16px; }
  #contacto .contact-layout .page-heading h2 { font-size: clamp(3rem, 14vw, 4.15rem); }
  #contacto .contact-layout .page-heading p { font-size: 1rem; line-height: 1.42; }
  #contacto .contact-layout .cta-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 12px;
  }
  #contacto .contact-layout .cta-list span,
  #contacto .contact-layout .cta-list span:nth-child(2n) {
    min-height: 62px;
    padding: 11px 10px 11px 0;
    border-right: 1px solid var(--line);
  }
  #contacto .contact-layout .cta-list span:nth-child(2n) {
    padding-left: 12px;
    border-right: 0;
  }
  #contacto .contact-visual { height: 160px; margin-top: 14px; }
  #contacto .contact-closing { margin-top: 12px; font-size: 1.15rem; }
  #contacto .contact-form { gap: 10px; padding: 20px; }
  #contacto .contact-form input,
  #contacto .contact-form select { min-height: 42px; }
  #contacto .contact-form textarea { min-height: 82px; }
}

/* Version 13: remove the redundant hero copy and replace the brown cards with light editorial glass. */
.hero-capabilities {
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}

.hero-capabilities-intro {
  display: none;
}

.home-hero .hero-pillar-grid article {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Version 13: simplify the image-led hero on compact mobile screens. */
@media (max-width: 560px) {
  .home-hero-media::after {
    background:
      linear-gradient(180deg, rgba(53, 43, 37, 0.48) 0%, rgba(53, 43, 37, 0.12) 36%, rgba(53, 43, 37, 0.7) 100%),
      linear-gradient(90deg, rgba(53, 43, 37, 0.54), rgba(53, 43, 37, 0.08));
  }

  .home-hero-content {
    grid-template-areas: "overline" "title" "actions" "capabilities";
    gap: 10px;
    padding-top: 98px;
    padding-bottom: 24px;
  }

  .hero-pillars,
  .hero-capabilities-intro {
    display: none;
  }

  .hero-capabilities { margin-top: 22px; }

  .home-positioning {
    gap: 10px;
    padding-block: 34px 38px;
  }

  .home-positioning-label {
    margin-top: 0;
  }

  .home-positioning p {
    max-width: 31ch;
    font-size: clamp(1.34rem, 5.6vw, 1.58rem);
    line-height: 1.2;
    letter-spacing: -0.032em;
    text-wrap: pretty;
  }

  .home-hero .hero-pillar-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  }

  .home-hero .hero-pillar-grid article,
  .home-hero .hero-pillar-grid article:nth-child(2) {
    grid-template-columns: 32px minmax(0, 1fr);
    grid-template-rows: auto;
    align-items: center;
    column-gap: 12px;
    min-height: 70px;
    padding: 14px 10px;
    border-right: 0;
    border-bottom: 0;
  }

  .home-hero .hero-pillar-grid article:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.28);
  }

  .home-hero .hero-pillar-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  }

  .home-hero .hero-pillar-grid h3 {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
    padding: 0;
    font-size: 0.76rem;
    letter-spacing: 0.025em;
    white-space: nowrap;
  }

  .home-hero .hero-pillar-grid .pillar-icon {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    padding: 5px;
    border: 1px solid rgba(224, 184, 151, 0.8);
    border-radius: 50%;
    background: rgba(53, 43, 37, 0.18);
    color: #e0b897;
  }

  .home-hero .hero-pillar-grid .pillar-icon svg {
    stroke-width: 1.7;
  }

  .home-hero .hero-pillar-grid p {
    display: none;
  }
}

/* Version 14: mobile-only editorial hierarchy for Enfoque and Experiencia. */
.mobile-section-icon,
.home-figures .figure-icon {
  display: none;
}

@media (max-width: 560px) {
  .home-hero-content {
    grid-template-areas: "actions" "capabilities";
    padding-top: 148px;
  }

  .home-hero-content .hero-overline,
  .home-hero-content h1 {
    display: none;
  }

  .home-positioning {
    gap: 18px;
    padding-block: 34px 42px;
  }

  .home-positioning-label {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-top: 0;
    font-size: 0.68rem;
    letter-spacing: 0.16em;
  }

  .home-positioning p {
    max-width: none;
    letter-spacing: -0.035em;
    text-wrap: pretty;
  }

  .mobile-section-icon {
    display: grid;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    place-items: center;
    border: 1px solid rgba(167, 121, 82, 0.52);
    border-radius: 50%;
    color: var(--color-gold);
  }

  .mobile-section-icon svg,
  .home-figures .figure-icon svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 1.45;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .positioning-lead,
  .positioning-detail {
    display: block;
  }

  .positioning-lead {
    max-width: none;
    font-size: clamp(1.18rem, 5.35vw, 1.36rem);
    line-height: 1.15;
    letter-spacing: -0.025em;
    white-space: nowrap;
  }

  .positioning-detail {
    max-width: 34ch;
    margin-top: 13px;
    color: var(--color-text-soft);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 0.96rem;
    font-weight: 400;
    line-height: 1.48;
    letter-spacing: -0.012em;
  }

  .home-experience {
    gap: 27px;
    padding-block: 40px 44px;
  }

  .home-section-heading.compact {
    gap: 17px;
  }

  .home-section-heading.compact .section-kicker {
    display: flex;
    align-items: center;
    gap: 11px;
    margin: 0;
    font-size: 0.68rem;
    letter-spacing: 0.16em;
  }

  .home-section-heading.compact h2 {
    max-width: none;
    font-size: clamp(1.62rem, 7.3vw, 1.82rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
    white-space: nowrap;
  }

  .home-figures {
    border-top: 1px solid var(--line);
  }

  .home-figures strong,
  .home-figures strong:nth-child(2),
  .home-figures strong:last-child {
    grid-template-columns: 42px minmax(92px, 0.68fr) minmax(0, 1fr);
    gap: 12px;
    min-height: 82px;
    padding: 15px 0;
  }

  .home-figures .figure-icon {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border: 1px solid rgba(167, 121, 82, 0.48);
    border-radius: 50%;
    color: var(--color-gold);
  }

  .home-figures strong .figure-value {
    font-size: clamp(1.75rem, 7.5vw, 2.12rem);
    line-height: 0.94;
  }

  .home-figures strong:last-child .figure-value {
    max-width: 7ch;
    font-size: clamp(1.22rem, 5.4vw, 1.52rem);
    line-height: 0.94;
  }

  .home-figures strong small {
    font-size: 0.65rem;
    line-height: 1.3;
    letter-spacing: 0.075em;
  }
}

/* Version 16: calmer desktop hierarchy for the Home statement and experience heading. */
@media (min-width: 761px) {
  .home-positioning {
    grid-template-columns: minmax(170px, 0.3fr) minmax(0, 1.7fr);
    gap: clamp(48px, 6vw, 96px);
    align-items: start;
    padding-block: clamp(52px, 5.4vw, 74px);
  }

  .home-positioning-label {
    margin-top: 0.55rem;
  }

  .home-positioning p {
    max-width: none;
    letter-spacing: 0;
    text-align: left;
  }

  .positioning-lead {
    display: block;
    max-width: none;
    font-size: clamp(1.9rem, 2.35vw, 3rem);
    line-height: 1.16;
    letter-spacing: -0.035em;
    text-wrap: balance;
  }

  .positioning-detail {
    display: block;
    max-width: 46ch;
    margin-top: clamp(18px, 2vw, 26px);
    color: var(--color-text-soft);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: clamp(1rem, 1.15vw, 1.2rem);
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.012em;
  }

  .home-experience {
    gap: clamp(30px, 3.5vw, 46px);
    padding-block: clamp(52px, 5.4vw, 74px);
  }

  .home-section-heading.compact {
    grid-template-columns: minmax(170px, 0.3fr) minmax(0, 1.7fr);
    gap: clamp(48px, 6vw, 96px);
  }

  .home-section-heading.compact .section-kicker {
    margin-top: 0.55rem;
  }

  .home-section-heading.compact h2 {
    max-width: none;
    font-size: clamp(2.15rem, 2.85vw, 3.45rem);
    line-height: 1.08;
    letter-spacing: -0.045em;
    text-wrap: balance;
  }

  .home-figures strong,
  .home-figures strong:nth-child(2),
  .home-figures strong:last-child {
    grid-template-columns: 48px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: clamp(14px, 1.4vw, 22px);
    align-content: center;
  }

  .home-figures .figure-icon {
    display: grid;
    grid-column: 1;
    grid-row: 1 / 3;
    width: 44px;
    height: 44px;
    place-items: center;
    align-self: center;
    border: 1px solid rgba(167, 121, 82, 0.48);
    border-radius: 50%;
    color: var(--color-gold);
  }

  .home-figures .figure-icon svg {
    width: 23px;
    height: 23px;
    stroke: currentColor;
    stroke-width: 1.45;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .home-figures strong .figure-value,
  .home-figures strong small {
    grid-column: 2;
  }

  .home-figures strong .figure-value {
    font-size: clamp(2rem, 2.7vw, 3.35rem);
  }

  .home-figures strong:last-child .figure-value {
    font-size: clamp(1.65rem, 2.25vw, 2.85rem);
  }
}

@media (min-width: 1100px) {
  .positioning-lead,
  .positioning-detail,
  .home-section-heading.compact h2 {
    white-space: nowrap;
  }
}

/* Version 19: mobile Home with a clean image first and controls on the light canvas. */
@media (max-width: 560px) {
  .home-hero {
    display: block;
    min-height: 0;
    color: var(--color-text);
    background: var(--color-cream);
  }

  .home-hero-media {
    position: relative;
    inset: auto;
    width: 100%;
    height: clamp(400px, 49svh, 440px);
    min-height: 0;
    overflow: hidden;
  }

  .home-hero-media::after {
    background:
      linear-gradient(180deg, rgba(40, 33, 29, 0.48) 0%, rgba(40, 33, 29, 0.08) 30%, rgba(40, 33, 29, 0) 55%),
      linear-gradient(90deg, rgba(40, 33, 29, 0.12), transparent 58%);
  }

  .home-hero-content {
    position: relative;
    display: grid;
    grid-template-areas:
      "actions"
      "capabilities";
    gap: 18px;
    width: min(calc(100% - (2 * var(--page-padding-mobile))), var(--container-width));
    padding: 22px 0 30px;
    color: var(--color-text);
  }

  .home-hero-content .hero-actions {
    gap: 10px;
    margin: 0;
  }

  .home-hero .hero-actions .button-link {
    min-height: 52px;
    font-size: 0.72rem;
    letter-spacing: 0.105em;
  }

  .home-hero .hero-actions .primary-button {
    border-color: var(--color-navy);
    background: var(--color-navy);
    color: #fff;
  }

  .home-hero .hero-actions .secondary-button {
    border-color: rgba(40, 33, 29, 0.42);
    background: transparent;
    color: var(--color-text);
  }

  .hero-capabilities {
    margin-top: 0;
    text-shadow: none;
  }

  .home-hero .hero-pillar-grid {
    overflow: hidden;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.2);
  }

  .home-hero .hero-pillar-grid article,
  .home-hero .hero-pillar-grid article:nth-child(2) {
    min-height: 72px;
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.34);
    color: var(--color-text);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .home-hero .hero-pillar-grid article:nth-child(odd) {
    border-right-color: var(--line);
  }

  .home-hero .hero-pillar-grid article:nth-child(-n + 2) {
    border-bottom-color: var(--line);
  }

  .home-hero .hero-pillar-grid h3 {
    color: var(--color-text);
  }

  .home-hero .hero-pillar-grid .pillar-icon {
    border-color: rgba(154, 95, 56, 0.52);
    background: rgba(255, 255, 255, 0.42);
    color: var(--color-gold);
  }

  .intro-band {
    border-top: 1px solid var(--line);
  }
}

/* Version 20: simplify only the mobile Home; Intelligence remains in navigation and desktop. */
@media (max-width: 560px) {
  #home .intelligence-home {
    display: none;
  }
}
