:root {
  --ivory: #f5f1e8;
  --paper: #fffdf8;
  --ink: #20211f;
  --muted: #6f716c;
  --green: #0f4b2c;
  --green-deep: #082f1c;
  --green-soft: #dce9df;
  --gold: #c9993a;
  --gold-bright: #e1b457;
  --line: #dbd5c9;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

.site-header {
  align-items: center;
  background: rgba(255, 253, 248, 0.95);
  border-bottom: 1px solid rgba(219, 213, 201, 0.8);
  display: flex;
  height: 88px;
  justify-content: space-between;
  left: 0;
  padding: 0 4vw;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand-lockup {
  align-items: center;
  display: flex;
  gap: 14px;
}

.brand-lockup img {
  height: 76px;
  object-fit: contain;
  width: 78px;
}

.brand-lockup span {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-lockup strong {
  color: var(--green);
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-lockup small {
  color: #77736c;
  font-size: 9px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.desktop-nav {
  align-items: center;
  display: flex;
  gap: 1.25vw;
}

.desktop-nav a {
  color: #41423f;
  font-size: 11px;
  font-weight: 700;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > summary {
  color: #41423f;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  list-style: none;
  padding: 18px 0;
}

.nav-dropdown > summary::-webkit-details-marker,
.mobile-about > summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown > summary::after {
  color: var(--gold);
  content: "⌄";
  font-size: 12px;
  margin-left: 7px;
}

.nav-dropdown[open] > summary,
.nav-dropdown > summary:hover {
  color: var(--green);
}

.nav-dropdown > div {
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 18px 34px rgba(8, 47, 28, 0.12);
  display: flex;
  flex-direction: column;
  left: -18px;
  min-width: 245px;
  padding: 8px;
  position: absolute;
  top: 48px;
}

.desktop-nav .nav-dropdown > div a {
  border-bottom: 1px solid var(--line);
  padding: 12px 14px;
}

.desktop-nav .nav-dropdown > div a:last-child {
  border-bottom: 0;
}

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

.desktop-nav .nav-cta {
  background: var(--green);
  color: white;
  padding: 13px 18px;
}

.desktop-nav .nav-cta:hover {
  background: var(--green-deep);
  color: white;
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  color: var(--green);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  list-style: none;
  text-transform: uppercase;
}

.mobile-menu nav {
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-width: 220px;
  padding: 10px;
  position: absolute;
  right: 0;
  top: 34px;
}

.mobile-menu nav a {
  border-bottom: 1px solid var(--line);
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  padding: 14px;
}

.mobile-about {
  border-bottom: 1px solid var(--line);
}

.mobile-about > summary {
  color: var(--green);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  list-style: none;
  padding: 14px;
}

.mobile-about > summary::after {
  color: var(--gold);
  content: "+";
  float: right;
}

.mobile-about[open] > summary::after {
  content: "−";
}

.mobile-about > div {
  background: var(--ivory);
  display: flex;
  flex-direction: column;
  padding: 0 8px 8px;
}

.mobile-menu nav .mobile-about a {
  font-size: 11px;
  padding: 11px 14px;
}

.hero {
  background: var(--paper);
  color: var(--ink);
  overflow: hidden;
  padding-top: 88px;
  position: relative;
}

.hero-visual {
  height: clamp(500px, 53vw, 640px);
  overflow: hidden;
  position: relative;
}

.hero-carousel {
  inset: 0;
  overflow: hidden;
  position: absolute;
}

 .hero-pan {
  animation: hero-boardroom-pan 22s ease-in-out infinite alternate;
  background-image: url("/brand/boardroom-tv-restored-v16-v62.png");
  background-position: 2% center;
  background-repeat: no-repeat;
  background-size: 118% auto;
  inset: 0;
  position: absolute;
  transform: scale(1.025);
  transform-origin: center;
  will-change: background-position, transform;
}

@keyframes hero-boardroom-pan {
  0%,
  8% {
    background-position: 2% center;
    transform: scale(1.025);
  }

  46%,
  54% {
    background-position: 52% center;
    transform: scale(1.055);
  }

  92%,
  100% {
    background-position: 98% center;
    transform: scale(1.025);
  }
}

.hero-carousel-controls {
  align-items: center;
  bottom: 24px;
  display: flex;
  gap: 7px;
  position: absolute;
  right: 4vw;
  z-index: 5;
}

.hero-carousel-controls button {
  align-items: center;
  background: rgba(255, 253, 248, 0.88);
  border: 1px solid rgba(15, 75, 44, 0.22);
  color: var(--green);
  cursor: pointer;
  display: inline-flex;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 9px;
  height: 32px;
  justify-content: center;
  padding: 0;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
  width: 32px;
}

.hero-carousel-controls button:hover,
.hero-carousel-controls button:focus-visible,
.hero-carousel-controls button.is-active {
  background: var(--green);
  border-color: var(--green);
  color: white;
}

.hero-carousel-controls .carousel-pause {
  margin-left: 4px;
}

.hero-content {
  align-items: center;
  border-top: 3px solid var(--gold);
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin: 0;
  max-width: none;
  padding: 22px 5vw 30px;
  position: relative;
  text-align: center;
}

.hero-identity {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hero-identity p {
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  margin: 0;
  text-transform: uppercase;
}

.hero-identity img {
  height: 88px;
  object-fit: contain;
  width: 92px;
}

.eyebrow {
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.21em;
  margin: 0 0 24px;
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--gold);
}

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

.hero h1 {
  color: var(--green-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 4.1vw, 60px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
  margin: 0;
  max-width: 1120px;
}

h1 em,
h2 em {
  color: var(--gold-bright);
  font-weight: 400;
}

.hero-copy {
  color: var(--muted);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  margin: 0;
  max-width: 790px;
}

.hero .eyebrow {
  margin: 0;
}

.button {
  align-items: center;
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  gap: 28px;
  justify-content: space-between;
  min-width: 220px;
  padding: 17px 20px;
}

.button-gold {
  background: var(--gold);
  color: #171810;
}

.button-gold:hover {
  background: var(--gold-bright);
}

.text-link {
  align-items: center;
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  gap: 12px;
}

.light-link {
  color: var(--green);
}

.sr-only {
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.section {
  display: grid;
  grid-template-columns: minmax(150px, 0.24fr) minmax(0, 1fr);
  margin: 0 auto;
  max-width: 1500px;
  padding-left: 5vw;
  padding-right: 5vw;
}

.capabilities,
.footprint {
  padding-bottom: 120px;
  padding-top: 120px;
}

.intro {
  display: block;
  padding-bottom: 96px;
  padding-top: 44px;
}

.intro-kicker {
  margin-bottom: 34px;
}

.intro .section-label {
  gap: 18px;
  margin-bottom: 14px;
  padding-top: 0;
}

.intro .section-label span {
  font-size: 18px;
  font-weight: 700;
}

.intro .section-label p {
  color: #4f514e;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.intro-eyebrow {
  color: var(--green);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.18em;
  margin: 0;
  text-transform: uppercase;
}

.intro-eyebrow span {
  color: var(--gold);
  padding: 0 0.32em;
}

.section-label {
  align-items: center;
  align-self: start;
  display: flex;
  gap: 15px;
  padding-top: 4px;
}

.section-label span {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
}

.section-label p {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin: 0;
  text-transform: uppercase;
}

.section-label-light p {
  color: var(--muted);
}

.intro-main h2,
.capabilities-main > h2,
.models-main > h2,
.footprint h2 {
  color: var(--green-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 4.2vw, 66px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.04;
  margin-bottom: 42px;
}

.intro-main h2 {
  margin-bottom: 30px;
  max-width: 1120px;
}

.intro-main h2 em,
.capabilities-main > h2 em,
.footprint h2 em {
  color: var(--gold);
}

.intro-copy {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 820px;
}

.intro-copy p {
  color: #5e605b;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 0;
}

.company-structure {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  margin-top: 56px;
  max-width: none;
  padding: 34px 0 30px;
  width: 100%;
}

.company-structure-grid {
  align-items: stretch;
  display: grid;
  gap: clamp(12px, 1.7vw, 28px);
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.company-structure-company {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 196px;
  padding: 10px 4px;
  text-align: center;
}

.company-structure-company img {
  height: 168px;
  max-height: none;
  max-width: none;
  object-fit: contain;
  width: min(100%, 190px);
}

.company-structure-company img.tall-logo {
  height: 168px;
  max-height: none;
  max-width: none;
  width: min(100%, 190px);
}

.company-structure-company img.integrated-logo {
  transform: scale(1.22);
}

.company-composed-logo {
  align-items: center;
  color: var(--green-deep);
  display: inline-flex;
  flex-direction: column;
  width: 205px;
}

.company-composed-mark {
  display: block;
  height: 85px;
  overflow: hidden;
  position: relative;
  width: 205px;
}

.company-composed-mark img {
  height: auto;
  left: 0;
  max-height: none;
  max-width: none;
  position: absolute;
  top: -98px;
  width: 205px;
}

.company-composed-logo b {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.24em;
  margin-top: 7px;
  text-transform: uppercase;
}

.company-structure-company > span:not(.company-composed-logo) {
  color: var(--green);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
  margin-top: 14px;
  opacity: 0;
  text-transform: uppercase;
  transform: translateY(5px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.company-structure-company:hover > span:not(.company-composed-logo),
.company-structure-company:focus-visible > span:not(.company-composed-logo) {
  opacity: 1;
  transform: translateY(0);
}

.emporium-platform {
  align-items: center;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 34px;
  grid-template-columns: 180px minmax(0, 1fr);
  margin-top: 28px;
  padding: 28px 0 0;
}

.emporium-platform > img {
  height: 128px;
  object-fit: contain;
  width: 170px;
}

.emporium-platform > span {
  display: flex;
  flex-direction: column;
}

.emporium-platform small {
  color: var(--gold);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.emporium-platform strong {
  color: var(--green-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 400;
  margin-top: 5px;
}

.emporium-platform p {
  color: #666861;
  font-size: 14px;
  line-height: 1.6;
  margin: 6px 0 0;
  max-width: 720px;
}

.zoey-section {
  background: var(--green-deep);
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(360px, 0.65fr);
  min-height: clamp(650px, calc(100svh - 88px), 860px);
}

.zoey-image {
  margin: 0;
  min-height: clamp(650px, calc(100svh - 88px), 860px);
  overflow: hidden;
}

.zoey-image img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.zoey-copy {
  align-items: flex-start;
  align-self: center;
  color: white;
  display: flex;
  flex-direction: column;
  padding: clamp(56px, 7vw, 110px);
}

.zoey-copy > p:first-child {
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.2em;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.zoey-copy h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 5.5vw, 82px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.98;
  margin-bottom: 34px;
}

.zoey-copy h2 em {
  color: var(--gold-bright);
  font-weight: 700;
}

.zoey-copy > p:not(:first-child) {
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}

.zoey-copy > a {
  border-bottom: 1px solid var(--gold);
  color: white;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  padding-bottom: 9px;
  text-transform: uppercase;
}

.zoey-copy > a span {
  color: var(--gold-bright);
  margin-left: 8px;
}

.strategy-section {
  background:
    radial-gradient(circle at 88% 8%, rgba(201, 153, 58, 0.11), transparent 28%),
    var(--paper);
  border-top: 1px solid var(--line);
  padding: 120px 0;
}

.strategy-head {
  align-items: start;
  padding-bottom: 58px;
}

.strategy-intro h2 {
  color: var(--green-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 4.6vw, 70px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.02;
  margin-bottom: 30px;
}

.strategy-intro h2 em {
  color: var(--gold);
}

.strategy-intro > p:last-child {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  max-width: 820px;
}

.blueprint-shell {
  display: grid;
  grid-template-columns: minmax(270px, 0.34fr) minmax(0, 1fr);
  margin: 0 auto;
  max-width: 1340px;
  padding: 0 5vw;
}

.blueprint-purpose {
  background:
    linear-gradient(145deg, rgba(201, 153, 58, 0.14), transparent 42%),
    var(--green-deep);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 620px;
  overflow: hidden;
}

.purpose-sequence {
  padding: 42px 38px 34px;
}

.purpose-sequence > p {
  color: var(--gold-bright);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.blueprint-purpose h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 3.5vw, 52px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.08;
  margin: 0 0 30px;
}

.purpose-sequence > span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 9px;
  letter-spacing: 0.12em;
  line-height: 1.7;
  text-transform: uppercase;
}

.zoey-purpose {
  height: 245px;
  margin: 0;
  overflow: hidden;
  position: relative;
}

.zoey-purpose::after {
  background: linear-gradient(0deg, rgba(8, 47, 28, 0.88), transparent 58%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.zoey-purpose img {
  height: 100%;
  object-fit: cover;
  object-position: 54% 30%;
  width: 100%;
}

.zoey-purpose figcaption {
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  left: 0;
  padding: 22px 28px;
  position: absolute;
  right: 0;
  z-index: 1;
}

.zoey-purpose small {
  color: var(--gold-bright);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.zoey-purpose strong {
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.3;
}

.blueprint-architecture {
  background: var(--ivory);
  border: 1px solid var(--line);
  min-width: 0;
  padding: 36px;
}

.architecture-mark {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 22px;
  padding: 0 0 30px;
}

.architecture-mark img {
  height: 92px;
  object-fit: contain;
  width: 104px;
}

.architecture-mark div {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.architecture-mark small {
  color: var(--gold);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.architecture-mark strong {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  font-weight: 400;
}

.engine-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.engine-grid article {
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  min-height: 173px;
  padding: 24px 20px;
}

.engine-grid article:nth-child(3n) {
  border-right: 0;
}

.engine-grid article:nth-child(n + 4) {
  border-bottom: 0;
}

.engine-grid article > span {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
}

.engine-grid h3 {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.15;
  margin: 24px 0 9px;
}

.engine-grid p {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
  margin: 0;
}

.pillar-band {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 26px auto 0;
  max-width: 1340px;
  padding: 0 5vw;
}

.pillar-band div {
  align-items: center;
  background: white;
  border-bottom: 2px solid var(--gold);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-height: 105px;
  justify-content: center;
}

.pillar-band div:last-child {
  border-right: 0;
}

.pillar-band span {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 11px;
}

.pillar-band strong {
  color: var(--green);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.value-chain {
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(245px, 0.34fr) minmax(0, 1fr);
  margin: 80px auto 0;
  max-width: 1340px;
  padding: 0 5vw;
}

.value-chain h3 {
  color: var(--green-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.15;
  margin: 0;
}

.value-chain ol {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(7, 1fr);
  list-style: none;
  margin: 0;
  padding: 0;
}

.value-chain li {
  align-items: center;
  background: var(--green);
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
  min-height: 112px;
  padding: 16px;
  position: relative;
  text-align: center;
}

.value-chain li span {
  color: var(--gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
}

.value-chain li strong {
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.value-chain li:not(:last-child)::after {
  color: var(--gold-bright);
  content: "→";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  position: absolute;
  right: -19px;
  top: 50%;
  transform: translateY(-50%);
}

.vision-unlock {
  margin: 0 auto;
  max-width: 1440px;
  padding: 0 5vw;
}

.vision-unlock > summary {
  align-items: center;
  background:
    linear-gradient(115deg, rgba(201, 153, 58, 0.16), transparent 32%),
    linear-gradient(145deg, var(--green-deep), #061f13);
  border: 1px solid rgba(225, 180, 87, 0.36);
  color: white;
  cursor: pointer;
  display: grid;
  gap: clamp(24px, 4vw, 64px);
  grid-template-columns: 170px minmax(0, 1fr) auto;
  list-style: none;
  min-height: 310px;
  overflow: hidden;
  padding: 42px clamp(28px, 5vw, 76px);
  position: relative;
}

.vision-unlock > summary::-webkit-details-marker {
  display: none;
}

.vision-unlock > summary::after {
  border: 1px solid rgba(225, 180, 87, 0.22);
  border-radius: 50%;
  content: "";
  height: 400px;
  position: absolute;
  right: -170px;
  top: -220px;
  width: 400px;
}

.seal-mark {
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(225, 180, 87, 0.42);
  border-radius: 50%;
  display: flex;
  height: 152px;
  justify-content: center;
  position: relative;
  transition: transform 450ms ease;
  width: 152px;
}

.seal-mark::before,
.seal-mark::after {
  border: 1px solid rgba(225, 180, 87, 0.34);
  border-radius: 50%;
  content: "";
  inset: 8px;
  position: absolute;
}

.seal-mark::after {
  inset: 15px;
}

.seal-mark img {
  height: 92px;
  object-fit: contain;
  position: relative;
  width: 98px;
  z-index: 1;
}

.seal-copy {
  display: flex;
  flex-direction: column;
}

.seal-copy small {
  color: var(--gold-bright);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.2em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.seal-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 5.5vw, 78px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.seal-copy em {
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  font-style: normal;
  letter-spacing: 0.12em;
  margin-top: 24px;
  text-transform: uppercase;
}

.seal-action {
  align-items: center;
  border-bottom: 1px solid rgba(225, 180, 87, 0.6);
  color: var(--gold-bright);
  display: flex;
  font-size: 10px;
  font-weight: 800;
  gap: 18px;
  letter-spacing: 0.12em;
  padding: 13px 0;
  position: relative;
  text-transform: uppercase;
  z-index: 1;
}

.seal-action b {
  font-size: 18px;
  transition: transform 300ms ease;
}

.vision-unlock > summary:hover .seal-mark,
.vision-unlock > summary:focus-visible .seal-mark {
  transform: rotate(-4deg) scale(1.04);
}

.vision-unlock[open] > summary .seal-mark {
  transform: rotate(-12deg) scale(0.94);
}

.vision-unlock[open] > summary .seal-action b {
  transform: rotate(180deg);
}

.vision-reveal {
  animation: blueprint-reveal 620ms ease both;
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 0;
}

@keyframes blueprint-reveal {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.vision-manifesto {
  background: var(--green-deep);
  color: white;
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(260px, 0.8fr) minmax(300px, 1fr);
  min-height: 500px;
}

.vision-manifesto > div {
  padding: clamp(42px, 5vw, 72px);
}

.vision-manifesto > div:first-child {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.vision-manifesto h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 4.7vw, 68px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1.02;
  margin: 0;
}

.manifesto-copy {
  align-self: center;
}

.manifesto-copy p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.8;
  margin: 0 0 24px;
}

.vision-manifesto figure {
  margin: 0;
  min-height: 500px;
  overflow: hidden;
  position: relative;
}

.vision-manifesto figure::after {
  background: linear-gradient(0deg, rgba(8, 47, 28, 0.92), transparent 62%);
  content: "";
  inset: 0;
  position: absolute;
}

.vision-manifesto figure img {
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
  width: 100%;
}

.vision-manifesto figcaption {
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  left: 0;
  padding: 38px;
  position: absolute;
  right: 0;
  z-index: 1;
}

.vision-manifesto figcaption small {
  color: var(--gold-bright);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.vision-manifesto figcaption strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.25;
}

.vision-foundations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.vision-foundations article {
  border-right: 1px solid var(--line);
  min-height: 280px;
  padding: clamp(36px, 4vw, 58px);
}

.vision-foundations article:last-child {
  border-right: 0;
}

.vision-foundations small,
.vision-value small {
  color: var(--gold);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.vision-foundations h4 {
  color: var(--green-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.2vw, 33px);
  font-weight: 400;
  line-height: 1.22;
  margin: 26px 0 0;
}

.vision-journey {
  background: var(--ivory);
  display: grid;
  gap: 60px;
  grid-template-columns: minmax(260px, 0.66fr) minmax(0, 1fr);
  padding: clamp(60px, 7vw, 100px);
}

.vision-journey h3,
.echo-chain h3,
.vision-value h3 {
  color: var(--green-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 3.5vw, 52px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin: 0;
}

.vision-journey ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

.vision-journey li {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 28px;
  grid-template-columns: 74px minmax(0, 1fr);
  padding: 24px 0;
}

.vision-journey li:last-child {
  border-bottom: 1px solid var(--line);
}

.vision-journey li > span {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

.vision-journey li strong {
  color: var(--green);
  font-size: 11px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.vision-journey li p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
  margin: 9px 0 0;
}

.ecosystem-section {
  background:
    radial-gradient(circle at 50% 22%, rgba(201, 153, 58, 0.14), transparent 26%),
    var(--green-deep);
  color: white;
  padding: clamp(60px, 7vw, 100px);
}

.ecosystem-section > header {
  align-items: end;
  display: grid;
  gap: 50px;
  grid-template-columns: minmax(280px, 1fr) minmax(260px, 0.7fr);
  margin-bottom: 54px;
}

.ecosystem-section > header h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 4.3vw, 64px);
  font-weight: 400;
  letter-spacing: -0.045em;
  margin: 0;
}

.ecosystem-section > header > p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.75;
  margin: 0;
}

.command-centre {
  align-items: center;
  background: var(--paper);
  color: var(--green-deep);
  display: grid;
  gap: 28px;
  grid-template-columns: 120px minmax(0, 1fr);
  margin: 0 auto 22px;
  max-width: 730px;
  padding: 25px 32px;
  position: relative;
}

.command-centre::after {
  background: var(--gold);
  bottom: -23px;
  content: "";
  height: 23px;
  left: 50%;
  position: absolute;
  width: 1px;
}

.command-centre img {
  height: 92px;
  object-fit: contain;
  width: 105px;
}

.command-centre div {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.command-centre small {
  color: var(--gold);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.command-centre strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 400;
}

.command-centre span {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ecosystem-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
}

.ecosystem-grid article {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.13);
  min-height: 285px;
  padding: 30px;
}

.ecosystem-grid article > div {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.ecosystem-grid article > div span {
  color: var(--gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
}

.ecosystem-grid article > div small {
  border: 1px solid rgba(225, 180, 87, 0.34);
  color: var(--gold-bright);
  font-size: 8px;
  letter-spacing: 0.12em;
  padding: 7px 9px;
  text-transform: uppercase;
}

.ecosystem-grid h4 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 400;
  margin: 38px 0 9px;
}

.ecosystem-grid article > strong {
  color: var(--gold-bright);
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.ecosystem-grid article > p {
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  line-height: 1.7;
  margin: 20px 0 0;
}

.echo-chain {
  padding: clamp(60px, 7vw, 100px);
}

.echo-chain header {
  display: grid;
  gap: 35px;
  grid-template-columns: minmax(230px, 0.52fr) minmax(0, 1fr);
  margin-bottom: 48px;
}

.echo-chain ol {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  list-style: none;
  margin: 0;
  padding: 0;
}

.echo-chain li {
  align-items: center;
  background: var(--green);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  gap: 17px;
  justify-content: center;
  min-height: 138px;
  padding: 18px;
  position: relative;
  text-align: center;
}

.echo-chain li:last-child {
  border-right: 0;
}

.echo-chain li:not(:last-child)::after {
  color: var(--gold-bright);
  content: "→";
  font-size: 20px;
  position: absolute;
  right: -8px;
  z-index: 1;
}

.echo-chain li span {
  color: var(--gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
}

.echo-chain li strong {
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  font-style: italic;
}

.control-tower-section {
  background: #111a15;
  color: white;
  display: grid;
  gap: 70px;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1fr);
  padding: clamp(60px, 7vw, 100px);
}

.control-heading h3,
.vision-roadmap h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 3.8vw, 56px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.06;
  margin: 0;
}

.control-heading > p:last-child {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.75;
  margin-top: 28px;
}

.control-layers {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.control-layers div {
  align-items: center;
  background: rgba(255, 255, 255, 0.055);
  border-left: 3px solid var(--gold);
  display: grid;
  gap: 16px;
  grid-template-columns: 34px 0.65fr 1fr;
  min-height: 74px;
  padding: 16px 20px;
}

.control-layers div:nth-child(2) {
  margin-left: 4%;
}

.control-layers div:nth-child(3) {
  margin-left: 8%;
}

.control-layers div:nth-child(4) {
  margin-left: 12%;
}

.control-layers div:nth-child(5) {
  background: var(--green);
  margin-left: 16%;
}

.control-layers span {
  color: var(--gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
}

.control-layers strong {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.control-layers small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
  letter-spacing: 0.06em;
  line-height: 1.5;
  text-transform: uppercase;
}

.vision-value {
  background: var(--ivory);
  padding: clamp(60px, 7vw, 100px);
}

.vision-value header {
  display: grid;
  gap: 35px;
  grid-template-columns: minmax(220px, 0.46fr) minmax(0, 1fr);
  margin-bottom: 48px;
}

.vision-value > div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.vision-value article {
  background: var(--paper);
  border-right: 1px solid var(--line);
  min-height: 230px;
  padding: 34px;
}

.vision-value article:last-child {
  border-right: 0;
}

.vision-value article p {
  color: var(--green-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  line-height: 1.3;
  margin: 34px 0 0;
}

.vision-roadmap {
  background: var(--green-deep);
  color: white;
  padding: clamp(60px, 7vw, 100px);
}

.vision-roadmap header {
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(220px, 0.48fr) minmax(0, 1fr);
  margin-bottom: 55px;
}

.vision-roadmap ol {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  list-style: none;
  margin: 0;
  padding: 0;
}

.vision-roadmap li {
  border-left: 1px solid rgba(255, 255, 255, 0.17);
  min-height: 300px;
  padding: 28px 22px;
}

.vision-roadmap li:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.17);
}

.vision-roadmap li > span {
  color: var(--gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
}

.vision-roadmap li strong {
  display: block;
  font-size: 10px;
  letter-spacing: 0.12em;
  margin-top: 55px;
  text-transform: uppercase;
}

.vision-roadmap li p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  line-height: 1.7;
  margin: 20px 0 0;
}

.vision-close {
  background:
    radial-gradient(circle at 50% 0%, rgba(201, 153, 58, 0.16), transparent 34%),
    #111a15;
  color: white;
  padding: clamp(70px, 8vw, 120px);
  text-align: center;
}

.vision-close p {
  color: var(--gold-bright);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.vision-close h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4.7vw, 68px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.06;
  margin: 28px auto 48px;
  max-width: 1020px;
}

.vision-close span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.strategy-teaser {
  background:
    radial-gradient(circle at 76% 18%, rgba(201, 153, 58, 0.12), transparent 30%),
    var(--paper);
  overflow: hidden;
}

.strategy-teaser-head {
  align-items: start;
  padding-bottom: 62px;
}

.strategy-teaser-copy h2 {
  color: var(--green-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 4.8vw, 72px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1.02;
  margin: 0 0 30px;
}

.strategy-teaser-copy h2 em {
  color: var(--gold);
  font-weight: 400;
}

.strategy-teaser-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
  max-width: 760px;
}

.strategy-teaser-status {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 18px;
  margin-top: 35px;
  max-width: 760px;
  padding-top: 22px;
}

.strategy-teaser-status > span {
  color: var(--gold);
  font-size: 14px;
}

.strategy-teaser-status div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.strategy-teaser-status small {
  color: var(--gold);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.strategy-teaser-status strong {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-weight: 400;
}

.blueprint-book {
  background: #080a09;
  border: 1px solid #292a27;
  border-radius: 18px;
  box-shadow:
    0 42px 85px rgba(8, 47, 28, 0.2),
    0 18px 34px rgba(0, 0, 0, 0.3);
  margin: 0 auto;
  max-width: 1340px;
  overflow: hidden;
  position: relative;
}

.blueprint-book::before {
  border: 1px solid rgba(201, 153, 58, 0.38);
  content: "";
  inset: 14px;
  pointer-events: none;
  position: absolute;
  z-index: 4;
}

.blueprint-book::after {
  content: none;
}

.blueprint-book-image {
  aspect-ratio: 1851 / 850;
  overflow: hidden;
  position: relative;
}

.blueprint-book-image > img {
  height: 100%;
  object-fit: cover;
  transition: transform 900ms ease;
  width: 100%;
}

.blueprint-book:hover .blueprint-book-image > img {
  transform: scale(1.012);
}

.blueprint-book figcaption {
  align-items: center;
  background: #0d0f0e;
  border-bottom: 7px solid #080908;
  border-top: 1px solid rgba(201, 153, 58, 0.38);
  color: white;
  display: flex;
  justify-content: space-between;
  padding: 25px 34px;
  position: relative;
}

.blueprint-book figcaption div {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.blueprint-book figcaption small,
.blueprint-book figcaption > span {
  color: var(--gold-bright);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.blueprint-book figcaption strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 400;
}

.blueprint-book figcaption > span {
  border-bottom: 1px solid rgba(225, 180, 87, 0.42);
  padding-bottom: 7px;
}

.portfolio-section {
  background: var(--ivory);
  color: var(--ink);
  padding: 110px 0 120px;
}

.portfolio-head {
  align-items: end;
  padding-bottom: 55px;
}

.portfolio-head h2,
.models-main > h2 {
  color: var(--green-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 3.7vw, 58px);
  font-weight: 400;
  letter-spacing: -0.04em;
  margin: 0;
}

.portfolio-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 0 auto;
  max-width: 1340px;
  padding: 0 5vw;
}

.company-card {
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink);
  display: grid;
  gap: clamp(32px, 5vw, 74px);
  grid-template-columns: minmax(210px, 0.28fr) minmax(0, 1fr);
  min-height: 330px;
  padding: 42px;
  position: relative;
  transition: transform 180ms ease, background 180ms ease;
}

.company-card:hover {
  background: white;
  transform: translateY(-4px);
}

.company-logo {
  align-items: center;
  display: flex;
  min-height: 230px;
  justify-content: center;
}

.company-logo img {
  height: auto;
  max-width: 230px;
  object-fit: contain;
  width: 100%;
}

.company-logo img.tall-logo {
  height: auto;
}

.company-card h3 {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 400;
  margin-bottom: 28px;
}

.company-card p {
  color: #777873;
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.company-profile-copy {
  align-self: center;
}

.company-card .company-role {
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.company-story {
  display: grid;
  gap: 38px;
  grid-template-columns: repeat(2, 1fr);
}

.company-story small {
  color: var(--green);
  display: block;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.company-back-link {
  bottom: 20px;
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  position: absolute;
  right: 24px;
  text-transform: uppercase;
}

.company-page {
  background: var(--paper);
  min-height: 100vh;
}

.company-detail-hero {
  display: grid;
  gap: clamp(50px, 8vw, 130px);
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 1fr);
  margin: 0 auto;
  max-width: 1500px;
  padding: 175px 5vw 105px;
}

.company-detail-mark {
  display: flex;
  flex-direction: column;
  gap: 54px;
}

.company-detail-mark > a {
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.company-detail-mark img {
  height: 310px;
  max-height: none;
  max-width: 100%;
  object-fit: contain;
  width: 320px;
}

.company-detail-mark .company-composed-logo {
  width: 285px;
}

.company-detail-mark .company-composed-mark {
  height: 118px;
  width: 285px;
}

.company-detail-mark .company-composed-mark img {
  top: -137px;
  width: 285px;
}

.company-detail-mark .company-composed-logo b {
  font-size: 18px;
}

.company-detail-intro {
  align-self: end;
}

.company-detail-intro .eyebrow {
  color: var(--gold);
  margin-bottom: 22px;
}

.company-detail-intro h1 {
  color: var(--green-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 7vw, 100px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.96;
  margin: 0 0 34px;
}

.company-detail-lead {
  color: var(--muted);
  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.7;
  margin: 0;
  max-width: 900px;
}

.company-detail-value {
  background:
    radial-gradient(circle at 85% 15%, rgba(201, 153, 58, 0.16), transparent 32%),
    var(--green-deep);
  color: white;
  display: grid;
  gap: clamp(55px, 9vw, 150px);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.34fr);
  padding: 105px 8vw;
}

.company-detail-value small,
.company-page-nav > p {
  color: var(--gold-bright);
  display: block;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.company-detail-value h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4.2vw, 66px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin: 0;
  max-width: 950px;
}

.company-detail-value aside {
  align-self: center;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 38px;
}

.company-detail-value aside p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.75;
  margin: 0;
}

.company-partner-link {
  align-items: center;
  border-bottom: 1px solid rgba(234, 178, 69, 0.48);
  color: var(--gold-bright);
  display: inline-flex;
  font-size: 11px;
  font-weight: 900;
  gap: 10px;
  letter-spacing: 0.12em;
  margin-top: 24px;
  padding-bottom: 7px;
  text-transform: uppercase;
}

.company-partner-link:hover,
.company-partner-link:focus-visible {
  border-bottom-color: var(--gold-bright);
  color: white;
}

.company-page-nav {
  background: var(--ivory);
  padding: 78px 8vw 88px;
}

.company-page-nav > p {
  color: var(--green);
}

.company-page-nav > div {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.company-page-nav a {
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: var(--green-deep);
  display: flex;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  justify-content: space-between;
  padding: 24px 22px 24px 0;
}

.company-page-nav a:nth-child(odd) {
  border-right: 1px solid var(--line);
  padding-right: 30px;
}

.company-page-nav a:nth-child(even) {
  padding-left: 30px;
}

.company-page-nav a:hover {
  color: var(--gold);
}

.company-page-nav span {
  color: var(--gold);
}

.company-detail-cta {
  padding: 100px 5vw 110px;
  text-align: center;
}

.company-detail-cta h2 {
  color: var(--green-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 400;
  letter-spacing: -0.045em;
  margin: 0 auto 38px;
  max-width: 900px;
}

.company-detail-cta .button {
  margin: 0 auto;
}

.capabilities-main {
  min-width: 0;
}

.capability-grid {
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.capability-grid article {
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  min-height: 255px;
  padding: 28px;
}

.capability-grid article > span {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
}

.capability-grid h3 {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 400;
  margin: 38px 0 14px;
}

.capability-grid p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.72;
  margin: 0;
}

.models-section {
  background: #edf3ee;
  color: var(--ink);
  padding: 110px 0;
}

.models-inner {
  align-items: start;
}

.models-main > h2 {
  margin-bottom: 50px;
}

.model-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
}

.model-grid article {
  background: rgba(255, 255, 255, 0.82);
  border-top: 2px solid var(--gold);
  min-height: 315px;
  padding: 28px;
}

.model-top {
  align-items: center;
  display: flex;
  justify-content: flex-end;
}

.model-top small {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.model-grid h3 {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 400;
  margin: 70px 0 18px;
}

.model-grid p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
  margin: 0;
}

.footprint-main {
  display: grid;
  gap: 8vw;
  grid-template-columns: 1.1fr 0.9fr;
}

.footprint-copy {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  max-width: 660px;
}

.country-list {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 38px;
}

.country-list span {
  border-bottom: 1px solid var(--line);
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  padding: 15px 10px 15px 0;
}

.country-list small {
  color: var(--gold);
  display: inline-block;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  width: 34px;
}

.doctrine-card {
  align-self: center;
  background: var(--green);
  color: white;
  padding: 48px;
}

.doctrine-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 39px;
  font-weight: 400;
  margin-bottom: 38px;
}

.doctrine-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.doctrine-card li {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  line-height: 1.5;
  padding: 17px 0;
}

.doctrine-card li span {
  color: var(--gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  margin-right: 18px;
}

.contact-section {
  background:
    radial-gradient(circle at 85% 15%, rgba(201, 153, 58, 0.18), transparent 34%),
    var(--ivory);
  color: var(--ink);
  padding: 110px 5vw;
  text-align: center;
}

.contact-inner {
  margin: auto;
  max-width: 940px;
}

.contact-inner > img {
  height: 188px;
  margin: 0 auto 30px;
  object-fit: contain;
  width: 195px;
}

.contact-inner h2 {
  color: var(--green-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(45px, 5vw, 72px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.02;
  margin-bottom: 25px;
}

.contact-inner > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.contact-actions {
  align-items: center;
  display: flex;
  gap: 28px;
  justify-content: center;
  margin-top: 38px;
}

.phone-link {
  border-bottom: 1px solid rgba(15, 75, 44, 0.32);
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
  padding-bottom: 4px;
}

.phone-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

footer {
  align-items: center;
  background: #101713;
  color: white;
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr 1fr auto;
  padding: 38px 5vw;
}

.site-footer {
  align-items: start;
  gap: 24px 38px;
  grid-template-columns: 1.15fr 2fr 1fr;
}

.footer-legal {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  justify-content: center;
}

.footer-legal a {
  color: #d5d0c6;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-legal a:hover {
  color: var(--gold-bright);
}

.site-footer > p {
  grid-column: 1 / -1;
}

.legal-page {
  background: var(--paper);
  min-height: 100vh;
}

.legal-page .site-header {
  position: relative;
}

.legal-hero {
  background: var(--green-deep);
  color: white;
  padding: 92px max(6vw, 28px) 84px;
}

.legal-hero > a {
  color: var(--gold-bright);
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 58px;
  text-transform: uppercase;
}

.legal-hero .eyebrow {
  color: var(--gold-bright);
}

.legal-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 6.2vw, 94px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
  margin: 20px 0 28px;
  max-width: 970px;
}

.legal-hero > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.7;
  max-width: 760px;
}

.legal-hero small {
  color: rgba(255, 255, 255, 0.55);
  display: block;
  font-size: 11px;
  letter-spacing: 0.08em;
  margin-top: 34px;
  text-transform: uppercase;
}

.legal-layout {
  display: grid;
  gap: 80px;
  grid-template-columns: 240px minmax(0, 820px);
  padding: 84px max(6vw, 28px) 110px;
}

.legal-layout > aside {
  align-self: start;
  border-top: 2px solid var(--gold);
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 24px;
}

.legal-layout > aside p {
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin: 0;
  padding: 18px 0;
  text-transform: uppercase;
}

.legal-layout > aside a {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  padding: 14px 0;
}

.legal-layout > aside a:hover {
  color: var(--green);
}

.legal-document section {
  border-top: 1px solid var(--line);
  padding: 0 0 48px;
}

.legal-document h2 {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  font-weight: 400;
  margin: 28px 0 18px;
}

.legal-document p,
.legal-document li {
  color: #555751;
  font-size: 15px;
  line-height: 1.85;
}

.legal-document ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.legal-document a {
  color: var(--green);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

footer > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

footer strong {
  font-size: 13px;
}

footer span,
footer a,
footer p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
  letter-spacing: 0.08em;
  margin: 0;
  text-transform: uppercase;
}

.footer-contact {
  justify-self: center;
}

footer > p {
  text-align: right;
}

@media (max-width: 1050px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero-content {
    margin-left: 0;
  }

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

  .footprint-main {
    gap: 50px;
    grid-template-columns: 1fr;
  }

  .vision-manifesto {
    grid-template-columns: 1fr 1fr;
  }

  .vision-manifesto figure {
    grid-column: 1 / -1;
    min-height: 420px;
  }

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

  .vision-roadmap ol {
    grid-template-columns: repeat(3, 1fr);
  }

  .vision-roadmap li:nth-child(4) {
    border-left: 1px solid rgba(255, 255, 255, 0.17);
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 74px;
    padding: 0 22px;
  }

  .brand-lockup img {
    height: 62px;
    width: 64px;
  }

  .brand-lockup strong {
    font-size: 12px;
  }

  .brand-lockup small {
    display: none;
  }

  .hero {
    min-height: 0;
    padding-top: 74px;
  }

  .hero-visual {
    height: 520px;
  }

  .hero-carousel {
    inset: 0;
  }

  .hero-pan {
    animation-name: hero-boardroom-pan-mobile;
    animation-duration: 18s;
    background-size: auto 100%;
  }

  .hero-carousel-controls {
    bottom: 20px;
    right: 22px;
  }

  .hero-content {
    gap: 10px;
    margin: 0;
    max-width: none;
    padding: 22px 24px 28px;
  }

  .hero-identity img {
    height: 72px;
    width: 76px;
  }

  .hero h1 {
    font-size: 44px;
    line-height: 1;
  }

  .hero-copy {
    font-size: 15px;
  }

  .section {
    display: block;
    padding-left: 24px;
    padding-right: 24px;
  }

  .strategy-section,
  .capabilities,
  .footprint {
    padding-bottom: 78px;
    padding-top: 78px;
  }

  .strategy-teaser-head {
    padding-bottom: 38px;
  }

  .strategy-teaser-copy h2 {
    font-size: 42px;
  }

  .strategy-teaser-copy > p:not(.eyebrow) {
    font-size: 14px;
  }

  .strategy-teaser-status {
    align-items: flex-start;
  }

  .strategy-teaser-status strong {
    font-size: 14px;
    line-height: 1.45;
  }

  .blueprint-book {
    border-radius: 12px;
    margin-left: 24px;
    margin-right: 24px;
  }

  .blueprint-book::before {
    inset: 6px;
  }

  .blueprint-book-image {
    aspect-ratio: 1851 / 850;
  }

  .blueprint-book-image > img {
    object-position: center;
  }

  .blueprint-book figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    padding: 22px 20px;
  }

  .blueprint-book figcaption strong {
    font-size: 15px;
    line-height: 1.4;
  }

  .intro {
    padding-bottom: 68px;
    padding-top: 36px;
  }

  .intro-kicker {
    margin-bottom: 28px;
  }

  .intro .section-label {
    margin-bottom: 12px;
  }

  .intro .section-label span {
    font-size: 16px;
  }

  .intro .section-label p,
  .intro-eyebrow {
    font-size: 13px;
  }

  .intro-eyebrow {
    line-height: 1.5;
  }

  .section-label {
    margin-bottom: 24px;
  }

  .intro-main h2,
  .capabilities-main > h2,
  .footprint h2 {
    font-size: 42px;
  }

  .intro-copy,
  .portfolio-grid,
  .capability-grid,
  .model-grid {
    grid-template-columns: 1fr;
  }

  .company-structure {
    margin-top: 38px;
    padding: 22px 0;
  }

  .company-structure-grid {
    gap: 20px 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .company-structure-company {
    min-height: 154px;
    padding: 6px 0;
  }

  .company-structure-company img,
  .company-structure-company img.tall-logo {
    height: 142px;
    max-height: none;
    max-width: none;
    width: min(100%, 158px);
  }

  .company-structure-company img.integrated-logo {
    transform: scale(1.22);
  }

  .company-structure-company .company-composed-logo {
    width: 165px;
  }

  .company-structure-company .company-composed-mark {
    height: 68px;
    width: 165px;
  }

  .company-structure-company .company-composed-mark img {
    top: -79px;
    width: 165px;
  }

  .company-structure-company .company-composed-logo b {
    font-size: 11px;
  }

  .company-structure-company > span:not(.company-composed-logo) {
    display: none;
  }

  .emporium-platform {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 24px;
    text-align: center;
  }

  .emporium-platform > img {
    height: 118px;
    width: 160px;
  }

  .emporium-platform strong {
    font-size: 24px;
  }

  .zoey-section {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .zoey-image {
    min-height: 0;
  }

  .zoey-image img {
    aspect-ratio: 1 / 1;
    object-position: center;
  }

  .zoey-copy {
    padding: 64px 24px 70px;
  }

  .zoey-copy h2 {
    font-size: 52px;
  }

  .vision-unlock {
    padding: 0 24px;
  }

  .vision-unlock > summary {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 42px 28px;
    text-align: center;
  }

  .seal-mark {
    height: 124px;
    width: 124px;
  }

  .seal-mark img {
    height: 78px;
    width: 82px;
  }

  .seal-copy strong {
    font-size: 48px;
  }

  .seal-copy em {
    font-size: 9px;
    line-height: 1.7;
  }

  .seal-action {
    margin-top: 8px;
  }

  .vision-manifesto {
    display: block;
  }

  .vision-manifesto > div {
    padding: 42px 28px;
  }

  .vision-manifesto > div:first-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    border-right: 0;
  }

  .vision-manifesto figure {
    min-height: 430px;
  }

  .vision-manifesto figcaption {
    padding: 28px;
  }

  .vision-foundations {
    grid-template-columns: 1fr;
  }

  .vision-foundations article {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    min-height: 0;
    padding: 42px 28px;
  }

  .vision-foundations article:last-child {
    border-bottom: 0;
  }

  .vision-journey,
  .control-tower-section {
    display: block;
    padding: 65px 28px;
  }

  .vision-journey header,
  .control-heading {
    margin-bottom: 45px;
  }

  .vision-journey li {
    gap: 18px;
    grid-template-columns: 60px minmax(0, 1fr);
  }

  .ecosystem-section {
    padding: 65px 28px;
  }

  .ecosystem-section > header,
  .echo-chain header,
  .vision-value header,
  .vision-roadmap header {
    display: block;
  }

  .ecosystem-section > header > p {
    margin-top: 24px;
  }

  .command-centre {
    grid-template-columns: 82px minmax(0, 1fr);
    padding: 22px 18px;
  }

  .command-centre img {
    height: 70px;
    width: 76px;
  }

  .command-centre strong {
    font-size: 18px;
  }

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

  .ecosystem-grid article {
    min-height: 245px;
  }

  .echo-chain,
  .vision-value,
  .vision-roadmap {
    padding: 65px 28px;
  }

  .echo-chain header h3,
  .vision-value header h3,
  .vision-roadmap header h3 {
    margin-top: 18px;
  }

  .echo-chain ol {
    gap: 12px;
    grid-template-columns: 1fr;
  }

  .echo-chain li {
    min-height: 78px;
  }

  .echo-chain li:not(:last-child)::after {
    bottom: -18px;
    content: "↓";
    right: auto;
  }

  .control-layers div,
  .control-layers div:nth-child(2),
  .control-layers div:nth-child(3),
  .control-layers div:nth-child(4),
  .control-layers div:nth-child(5) {
    display: flex;
    flex-wrap: wrap;
    margin-left: 0;
  }

  .control-layers div small {
    flex-basis: 100%;
    padding-left: 50px;
  }

  .vision-value > div {
    grid-template-columns: 1fr;
  }

  .vision-value article {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    min-height: 0;
  }

  .vision-roadmap ol {
    grid-template-columns: 1fr;
  }

  .vision-roadmap li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.17);
    border-left: 0;
    display: grid;
    gap: 22px;
    grid-template-columns: 62px minmax(0, 1fr);
    min-height: 0;
    padding: 25px 0;
  }

  .vision-roadmap li:last-child {
    border-right: 0;
  }

  .vision-roadmap li strong {
    margin-top: 0;
  }

  .vision-roadmap li p {
    margin-top: 10px;
  }

  .vision-close {
    padding: 72px 28px;
  }

  .strategy-head {
    padding-bottom: 40px;
  }

  .strategy-intro h2 {
    font-size: 42px;
  }

  .blueprint-shell {
    display: block;
    padding: 0 24px;
  }

  .blueprint-purpose {
    min-height: 600px;
  }

  .purpose-sequence {
    padding: 36px 30px 30px;
  }

  .zoey-purpose {
    height: 245px;
  }

  .blueprint-architecture {
    padding: 26px 20px;
  }

  .architecture-mark img {
    height: 74px;
    width: 84px;
  }

  .architecture-mark strong {
    font-size: 24px;
  }

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

  .engine-grid article,
  .engine-grid article:nth-child(3n),
  .engine-grid article:nth-child(n + 4) {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    min-height: 145px;
  }

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

  .pillar-band {
    grid-template-columns: 1fr;
    padding: 0 24px;
  }

  .pillar-band div {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    flex-direction: row;
    justify-content: flex-start;
    min-height: 70px;
    padding: 0 24px;
  }

  .pillar-band div:last-child {
    border-bottom: 2px solid var(--gold);
  }

  .value-chain {
    display: block;
    margin-top: 65px;
    padding: 0 24px;
  }

  .value-chain > div {
    margin-bottom: 30px;
  }

  .value-chain ol {
    gap: 24px;
    grid-template-columns: repeat(7, minmax(156px, 1fr));
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding: 0 12px 12px 0;
    scroll-snap-type: inline proximity;
  }

  .value-chain li {
    min-height: 112px;
    scroll-snap-align: start;
  }

  .value-chain li:not(:last-child)::after {
    content: "→";
  }

  .portfolio-section,
  .models-section {
    padding: 75px 0 82px;
  }

  .portfolio-head {
    padding-bottom: 38px;
  }

  .portfolio-head h2,
  .models-main > h2 {
    font-size: 39px;
  }

  .portfolio-grid {
    padding: 0 24px;
  }

  .company-card {
    display: block;
    min-height: 0;
    padding: 30px 24px 58px;
  }

  .company-logo {
    min-height: 170px;
  }

  .company-logo img {
    max-width: 190px;
  }

  .company-card h3 {
    font-size: 34px;
  }

  .company-story {
    gap: 22px;
    grid-template-columns: 1fr;
  }

  .company-detail-hero {
    display: block;
    padding: 125px 24px 70px;
  }

  .company-detail-mark {
    gap: 32px;
    margin-bottom: 55px;
  }

  .company-detail-mark img {
    height: 225px;
    max-width: 100%;
    width: 235px;
  }

  .company-detail-mark .company-composed-logo {
    width: 205px;
  }

  .company-detail-mark .company-composed-mark {
    height: 85px;
    width: 205px;
  }

  .company-detail-mark .company-composed-mark img {
    top: -98px;
    width: 205px;
  }

  .company-detail-mark .company-composed-logo b {
    font-size: 13px;
  }

  .company-detail-intro h1 {
    font-size: 52px;
  }

  .company-detail-lead {
    font-size: 17px;
  }

  .company-detail-value {
    display: block;
    padding: 72px 24px;
  }

  .company-detail-value h2 {
    font-size: 38px;
  }

  .company-detail-value aside {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 48px;
    padding: 36px 0 0;
  }

  .company-page-nav {
    padding: 65px 24px 72px;
  }

  .company-page-nav > div {
    grid-template-columns: 1fr;
  }

  .company-page-nav a,
  .company-page-nav a:nth-child(odd),
  .company-page-nav a:nth-child(even) {
    border-right: 0;
    font-size: 21px;
    padding: 20px 0;
  }

  .company-detail-cta {
    padding: 75px 24px 85px;
  }

  .capability-grid article {
    min-height: 220px;
  }

  .models-main > h2 {
    margin-bottom: 35px;
  }

  .model-grid article {
    min-height: 270px;
  }

  .model-grid h3 {
    margin-top: 48px;
  }

  .country-list {
    grid-template-columns: 1fr;
  }

  .doctrine-card {
    padding: 34px 26px;
  }

  .contact-section {
    padding: 80px 24px;
  }

  .contact-inner h2 {
    font-size: 46px;
  }

  .contact-actions {
    flex-direction: column;
  }

  footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .site-footer > p {
    grid-column: auto;
  }

  .footer-legal {
    justify-content: center;
  }

  .footer-contact {
    justify-self: stretch;
  }

  footer > p {
    text-align: center;
  }

  .legal-hero {
    padding: 64px 24px;
  }

  .legal-hero > a {
    margin-bottom: 40px;
  }

  .legal-hero > p:not(.eyebrow) {
    font-size: 16px;
  }

  .legal-layout {
    display: block;
    padding: 60px 24px 80px;
  }

  .legal-layout > aside {
    margin-bottom: 60px;
    position: static;
  }
}

@keyframes hero-boardroom-pan-mobile {
  0%,
  8% {
    background-position: 4% center;
    transform: scale(1.01);
  }

  46%,
  54% {
    background-position: 56% center;
    transform: scale(1.035);
  }

  92%,
  100% {
    background-position: 98% center;
    transform: scale(1.01);
  }
}

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

  .company-card {
    transition: none;
  }

  .hero-pan {
    animation: none;
    background-position: 62% center;
    transform: none;
  }
}
