/* 01 — Tokens */
:root {
  --ink: #2c272e;
  --purple: #753188;
  --orange: #e59934;
  --green: #9ae66e;
  --bg: #242025;
  --bg-deep: #1b181c;
  --paper: #2c272e;
  --paper-raised: #332d35;
  --text: #f3efe9;
  --text-soft: #c7bec4;
  --text-mute: #968c93;
  --line: rgba(243, 239, 233, 0.16);
  --line-strong: rgba(243, 239, 233, 0.32);
  --header: rgba(36, 32, 37, 0.96);
  --max: 1320px;
  --pad: clamp(22px, 4vw, 64px);
  --serif: "Exo 2", "Arial Narrow", Arial, sans-serif;
  --sans: "Source Sans 3", Arial, sans-serif;
  --mono: "Manrope", Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html[data-theme="light"] {
  --bg: #f2eee7;
  --bg-deep: #e7e0d6;
  --paper: #faf7f1;
  --paper-raised: #ede6dc;
  --text: #2c272e;
  --text-soft: #615960;
  --text-mute: #887e83;
  --line: rgba(44, 39, 46, 0.16);
  --line-strong: rgba(44, 39, 46, 0.34);
  --header: rgba(242, 238, 231, 0.96);
}

/* 02 — Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a {
  color: inherit;
  text-decoration: none;
}
[hidden] {
  display: none !important;
}
::selection {
  background: var(--green);
  color: var(--ink);
}

/* 03 — Typography */
h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}
h1,
h2,
h3,
h4 {
  color: var(--text);
  font-family: var(--serif);
  font-optical-sizing: auto;
  font-weight: 600;
  letter-spacing: -0.085em;
  line-height: 1.02;
}
h2 {
  font-size: clamp(2.8rem, 5vw, 5.9rem);
}
h3 {
  font-size: clamp(1.45rem, 2.2vw, 2.4rem);
}
.mono {
  font-family: var(--mono);
}
.grad-text {
  color: var(--purple);
}
.eyebrow,
.rn,
.tag,
.product-kicker,
.leader-role,
.news-date,
.num {
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  margin: 0 0 22px;
  color: var(--orange);
  font-family: var(--mono);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}
.eyebrow::before {
  width: 30px;
  height: 1px;
  background: currentColor;
  content: "";
}

/* 04 — Layout / grid */
.wrap,
.container {
  width: min(100%, var(--max));
  margin-inline: auto;
  padding-inline: var(--pad);
}
.hero-grid > *,
.about-grid > *,
.section-head > *,
.contact-grid > *,
.foot-grid > *,
.gallery-hero-grid > *,
.album-nav-bar > *,
.product-spot > *,
.program-card > *,
.case-card > * {
  min-width: 0;
}
h1,
h2,
h3,
h4 {
  max-width: 100%;
}
section {
  position: relative;
}
.alt {
  background: var(--paper);
}
.section-head {
  position: relative;
  max-width: 740px;
}
.section-head p:not(.eyebrow) {
  max-width: 600px;
  color: var(--text-soft);
}
.section-head-center {
  margin: 0;
  text-align: left;
}
.section-head-center .eyebrow {
  margin-inline: 0;
}
.section-head-split,
.section-head-right {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  max-width: none;
  gap: 24px;
}
.section-head-split .eyebrow,
.section-head-right .eyebrow {
  grid-column: 1 / 4;
}
.section-head-split h2,
.section-head-right h2 {
  grid-column: 4 / 10;
}
.section-head-split > p:last-child,
.section-head-right > p:last-child {
  grid-column: 10 / -1;
  padding-top: 8px;
}

/* 05 — Navigation */
header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: var(--header);
}
.nav {
  display: grid;
  grid-template-columns: 170px 1fr auto;
  align-items: center;
  width: min(100%, var(--max));
  min-height: 78px;
  margin-inline: auto;
  padding-inline: var(--pad);
}
.logo img {
  width: 120px;
  height: auto;
  filter: brightness(0) invert(1);
}

.footer-logo img {
  width: 120px;
  height: auto;
  filter: brightness(0) invert(1);
}

html[data-theme="light"] .logo img {
  filter: none;
}

nav.links {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.5vw, 38px);
}
nav.links a {
  position: relative;
  padding-block: 27px;
  color: var(--text-soft);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  white-space: nowrap;
}
nav.links a::after {
  position: absolute;
  right: 0;
  bottom: 21px;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}
nav.links a:hover,
nav.links a.active {
  color: var(--text);
}
nav.links a:hover::after,
nav.links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.theme-toggle,
.hamburger {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}
.theme-toggle:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.theme-toggle svg {
  width: 17px;
  height: 17px;
}
.theme-toggle .sun {
  display: none;
}
html[data-theme="light"] .theme-toggle .moon {
  display: none;
}
html[data-theme="light"] .theme-toggle .sun {
  display: block;
}
.hamburger {
  display: none;
  gap: 4px;
  align-content: center;
}
.hamburger span {
  display: block;
  width: 17px;
  height: 1px;
  background: currentColor;
  transition: 0.25s;
}
.hamburger.open span:first-child {
  transform: translateY(5px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:last-child {
  transform: translateY(-5px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 19px;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
  transition:
    transform 0.25s var(--ease),
    background 0.25s,
    color 0.25s,
    border-color 0.25s;
}
.btn:hover {
  transform: translateX(3px);
}
.btn-glow,
.btn-solid {
  border-color: var(--purple);
  background: var(--purple);
  color: #fff;
  box-shadow: none;
}
.btn-glow:hover,
.btn-solid:hover {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--ink);
}
.btn-ghost {
  border-width: 0 0 1px;
  padding-inline: 2px;
  background: transparent;
}
.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
}

/* 06 — Hero */
.hero {
  min-height: calc(100svh - 78px);
  background: var(--bg-deep);
}
.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 32%;
  height: 6px;
  background: linear-gradient(var(--purple) 100%, transparent 100%);
  content: "";
}
.hero-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  min-height: calc(100svh - 78px);
  align-items: center;
  gap: 0 24px;
  padding-top: clamp(40px, 15vh, 90px);
  padding-bottom: clamp(50px, 8vh, 100px);
}
.hero-grid > div:first-child {
  z-index: 2;
  grid-column: 1 / 8;
  grid-row: 1;
  padding-bottom: 3vh;
}
.hero .eyebrow {
  max-width: 420px;
  color: var(--orange);
}
.hero h1 {
  max-width: 960px;
  margin: 0 0 28px;
  font-size: clamp(4.2rem, 9.4vw, 10rem);
  line-height: 0.82;
  text-wrap: balance;
}
.hero h1 span {
  display: block;
  margin-left: clamp(20px, 7vw, 120px);
  font-style: italic;
}
.hero .lede {
  max-width: 480px;
  margin: 0 0 34px;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
}
.hero-ctas {
  display: flex;
  gap: 22px;
  align-items: center;
}
.hero-media {
  position: relative;
  grid-column: 7 / -1;
  grid-row: 1;
  align-self: stretch;
  margin-right: calc(var(--pad) * -1);
  margin-top: calc(clamp(40px, 7vh, 90px) * -1);
  margin-bottom: calc(clamp(50px, 8vh, 100px) * -1);
}
.hero-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--bg-deep) 0, transparent 38%),
    linear-gradient(0deg, rgba(27, 24, 28, 0.45), transparent 45%);
  content: "";
}
.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 650px;
  object-fit: cover;
  object-position: 55% center;
  filter: saturate(0.82) contrast(1.05);
  border-radius: 20px;
}
.hero-badge {
  position: absolute;
  z-index: 2;
  right: var(--pad);
  bottom: 30px;
  display: grid;
  color: #fff;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-align: right;
}
.hero-badge b {
  font-family: var(--serif);
  font-size: 3.2rem;
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1;
}

/* 07 — Partner rail */
.trust {
  padding: 25px 0 35px;
  margin-top: 100px;
}
.trust-label {
  margin: 0 0 18px;
  color: var(--text-mute);
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.trust .wrap {
  position: relative;
  overflow: hidden;
}
.trust .wrap::before {
  position: absolute;
  z-index: 2;
  left: var(--pad);
  top: 50%;
  color: var(--text-mute);
  content: "";
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translateY(-50%);
}
.marquee {
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.partner-logo-row {
  display: flex;
  align-items: center;
  gap: 100px;
  padding-right: 100px;
}
.partner-logo-row img {
  width: auto;
  max-width: 180px;
  height: 80px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.72;
}
html[data-theme="dark"] .partner-logo-row img {
  filter: grayscale(1) brightness(1.3);
}
.partner-logo-row img:hover {
  filter: none;
  opacity: 1;
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* 08 — About */
.section-about {
  padding: clamp(100px, 14vw, 190px) 0;
}
.about-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: start;
  gap: 24px;
}
.about-grid .img-frame {
  grid-column: 1 / 7;
  height: clamp(500px, 65vw, 790px);
}
.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.84);
  border-radius: 20px;
}
.about-grid > div:last-child {
  grid-column: 8 / -1;
  padding-top: clamp(30px, 10vw, 145px);
}
.about-grid h2 {
  margin-bottom: 35px;
}
.about-grid > div:last-child > p:not(.eyebrow) {
  max-width: 520px;
  color: var(--text-soft) !important;
}
.about-list {
  margin: 50px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
  counter-reset: about;
}
.about-list li {
  position: relative;
  padding: 16px 0 16px 48px;
  border-bottom: 1px solid var(--line);
  color: var(--text-soft);
  counter-increment: about;
}
.about-list li::before {
  position: absolute;
  left: 0;
  color: var(--orange);
  content: "0" counter(about);
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
}
.text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-top: 34px;
  border-bottom: 1px solid var(--line-strong);
  color: var(--text);
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.text-link:hover {
  border-color: var(--orange);
  color: var(--orange);
}

/* 09 — Leadership */
.section-leadership {
  padding: clamp(90px, 11vw, 150px) 0;
  overflow: hidden;
}
.section-leadership .wrap {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.section-leadership .section-head {
  grid-column: 1 / 6;
  align-self: center;
}
.section-leadership .section-head h2 {
  font-size: clamp(3.5rem, 6.5vw, 7.2rem);
}
.leader-card {
  display: contents;
}
.leader-photo {
  grid-column: 7 / -1;
  grid-row: 1 / span 2;
  height: min(720px, 75vw);
}
.leader-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.7);
  border-radius: 20px;
}
.leader-card > div:last-child {
  grid-column: 2 / 7;
  grid-row: 2;
  z-index: 2;
  margin-top: -90px;
  padding: 38px 50px 8px 0;
  background: var(--paper);
}
.leader-role {
  color: var(--purple);
}
.leader-card h3 {
  max-width: 560px;
  margin-bottom: 25px;
  font-size: clamp(2.4rem, 4.8vw, 5rem) !important;
}
.leader-quote {
  max-width: 540px;
  color: var(--text-soft);
}

/* 10 — Ecosystem */
.section-ecosystem-full {
  padding: clamp(100px, 14vw, 190px) 0;
  background: var(--ink);
  color: #f5f1ed;
}
.section-ecosystem-full h2,
.section-ecosystem-full .cycle-step {
  color: #f5f1ed;
}
.section-ecosystem-full .section-head {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  max-width: none;
  gap: 24px;
}
.section-ecosystem-full .section-head .eyebrow {
  grid-column: 1 / 5;
  color: var(--green);
}
.section-ecosystem-full .section-head h2 {
  grid-column: 5 / -1;
  max-width: 880px;
  font-size: clamp(3.4rem, 6.5vw, 7rem);
}
.section-ecosystem-full .section-head > p:last-child {
  grid-column: 7 / -1;
  max-width: 580px;
  margin: 15px 0 70px;
  color: #c6bdc4;
}
.ecosystem-cycle {
  position: relative;
  margin-left: calc(25% + 6px);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}
.cycle-step {
  display: grid;
  grid-template-columns: 70px 1.1fr 1.5fr;
  gap: 22px;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition:
    padding 0.3s var(--ease),
    color 0.3s;
}
.cycle-step::after {
  position: absolute;
  left: 0;
  width: 0;
  height: 1px;
  margin-top: 53px;
  background: var(--orange);
  content: "";
  transition: width 0.45s var(--ease);
}
.cycle-step:hover {
  padding-left: 16px;
}
.cycle-step:hover::after {
  width: 100%;
}
.cycle-step span {
  color: var(--orange);
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
}
.cycle-step b {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.2vw, 2.25rem);
  font-weight: 500;
}
.cycle-step p {
  margin: 0;
  color: #bcb3ba;
  font-size: 0.94rem;
}

/* 11 — Vision / Mission / DNA */
.section-vision {
  padding: clamp(90px, 12vw, 170px) 0;
  background: var(--bg-deep);
}
.section-vision .section-head {
  margin-bottom: 60px;
}
.vm-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  border-top: 1px solid var(--line-strong);
}
.vm-card {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-column: 1 / 7;
  gap: 20px;
  padding: 45px 50px 70px 0;
  border-bottom: 1px solid var(--line);
}
.vm-card:nth-child(2) {
  grid-column: 7 / -1;
  padding-right: 0;
  padding-left: 50px;
  border-left: 1px solid var(--line);
}
.vm-card .num {
  grid-column: 1 / -1;
  color: var(--orange);
}
.vm-card h3 {
  grid-column: 1 / -1;
  font-size: clamp(2.4rem, 4vw, 4.4rem);
}
.vm-card p {
  grid-column: 2 / -1;
  margin: 20px 0 0;
  color: var(--text-soft);
}
.dna-band {
  margin-top: 90px;
}
.dna-band-head {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 45px;
}
.dna-band-head .num {
  grid-column: 1 / 4;
}
.dna-band-head h3 {
  grid-column: 4 / -1;
  font-size: clamp(2.8rem, 5vw, 5.7rem);
}
.dna-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 0;
  padding: 0;
  border-block: 1px solid var(--line-strong);
  list-style: none;
}
.dna-row li {
  min-height: 210px;
  padding: 24px 20px;
  border-right: 1px solid var(--line);
}
.dna-row li:last-child {
  border-right: 0;
}
.dna-row b {
  display: block;
  margin-bottom: 45px;
  color: var(--purple);
  font-family: var(--serif);
  font-size: clamp(4rem, 7vw, 7.5rem);
  font-weight: 500;
  line-height: 0.8;
}
.dna-row span {
  color: var(--text-soft);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
}

/* 12 — Capabilities */
.section-capabilities {
  padding: clamp(100px, 14vw, 180px) 0;
}
.section-capabilities .section-head {
  margin-bottom: 80px;
}
.process-strip {
  border-top: 1px solid var(--line-strong);
}
.process-step {
  display: grid;
  grid-template-columns: 100px minmax(230px, 1.2fr) 2fr;
  align-items: center;
  gap: 24px;
  min-height: 110px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition:
    padding 0.35s var(--ease),
    background 0.35s;
}
.process-step:hover,
.process-step.is-active {
  padding-inline: 20px;
  background: var(--paper);
}
.process-step .pn {
  color: var(--orange);
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
}
.process-step h4 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 2rem);
}
.process-step p {
  max-width: 630px;
  margin: 0;
  color: var(--text-soft);
}
.process-step:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

/* 13 — Research */
.section-research {
  padding: clamp(100px, 14vw, 190px) 0;
}
.section-research .section-head {
  margin: 0 0 75px 25%;
}
.innovation-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 70px 24px;
}
.research-card {
  display: grid;
  align-content: start;
}
.research-card:first-child {
  grid-column: 1 / 9;
  grid-template-columns: repeat(8, 1fr);
  gap: 18px 24px;
}
.research-card:nth-child(2) {
  grid-column: 8 / -1;
  margin-top: 180px;
}
.research-card:nth-child(3) {
  grid-column: 2 / 7;
  margin-top: -20px;
}
.research-card img {
  width: 100%;
  height: 410px;
  margin-bottom: 25px;
  object-fit: cover;
  transition:
    transform 0.7s var(--ease),
    filter 0.4s;
}
.research-card:first-child img {
  grid-column: 1 / -1;
  height: min(580px, 54vw);
}
.research-card:nth-child(2) img {
  height: 560px;
}
.research-card:nth-child(3) img {
  height: 430px;
  object-fit: contain;
  background: var(--paper-raised);
}
.research-card:hover img {
  filter: saturate(1.08);
  transform: scale(1.008);
}
.research-card:first-child .rn,
.research-card:first-child h3,
.research-card:first-child p {
  grid-column: 2 / 8;
}
.research-card .rn {
  margin-bottom: 6px;
  color: var(--orange) !important;
}
.research-card h3 {
  margin: 0 0 12px;
}
.research-card p {
  max-width: 620px;
  margin: 0;
  color: var(--text-soft);
}

/* 14 — Programs */
.section-programs {
  padding: clamp(90px, 11vw, 150px) 0 clamp(130px, 16vw, 220px);
}
.section-programs .section-head {
  margin-bottom: 90px;
}
.program-row {
  counter-reset: programs;
}
.program-card {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: center;
  gap: 24px;
  min-height: 480px;
  padding: 60px 0;
  border-top: 1px solid var(--line);
  counter-increment: programs;
}
.program-card:last-child {
  border-bottom: 1px solid var(--line);
}
.program-card::before {
  grid-column: 1 / 2;
  align-self: start;
  color: var(--orange);
  content: "0" counter(programs);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
}
.program-card .img {
  grid-column: 2 / 8;
  height: 430px;
  overflow: hidden;
  border-radius: 20px;
}
.program-card .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
  border-radius: 20px;
}
.program-card .body {
  grid-column: 9 / -1;
}
.program-card:nth-child(even) .img {
  grid-column: 7 / -1;
  grid-row: 1;
}
.program-card:nth-child(even) .body {
  grid-column: 2 / 6;
  grid-row: 1;
}
.program-card:hover img {
  transform: scale(1.025);
}
.program-card .tag {
  margin-bottom: 18px;
  color: var(--green);
}
.program-card h3 {
  font-size: clamp(2.2rem, 4vw, 4rem) !important;
}
.program-card p {
  font-size: 1rem !important;
  line-height: 1.6;
}
.capability-block.section-programs {
  padding: clamp(80px, 10vw, 125px) 0;
}
.capability-block .section-head {
  margin-bottom: 55px;
}
.capability-block .program-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line);
}
.capability-block .program-card,
.capability-block .program-card:nth-child(even) {
  display: block;
  min-height: 0;
  padding: 24px;
  border-top: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.capability-block .program-card::before {
  display: block;
  margin-bottom: 20px;
}
.capability-block .program-card .img,
.capability-block .program-card:nth-child(even) .img {
  width: 100%;
  height: 230px;
}
.capability-block .program-card .body,
.capability-block .program-card:nth-child(even) .body {
  margin-top: 25px;
}
.capability-block .program-card h3 {
  font-size: clamp(1.6rem, 2.5vw, 2.4rem) !important;
}
.capability-block .program-card p {
  font-size: 0.92rem !important;
}
/* 15 — Brands */
.section-brands {
  padding: clamp(100px, 14vw, 190px) 0;
  background: var(--paper);
}
.section-brands .section-head {
  margin-bottom: 80px;
}
.product-stack {
  border-top: 1px solid var(--line-strong);
}
.product-spot {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: center;
  gap: 24px;
  min-height: 420px;
  padding: 60px 0;
  border-bottom: 1px solid var(--line-strong);
}
.product-spot > div:first-child {
  grid-column: 1 / 5;
  height: 300px;
}
.product-spot > div:first-child img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-spot-copy {
  grid-column: 5 / 9;
}
.product-spot-copy h3 {
  margin-bottom: 22px;
  font-size: clamp(3rem, 5vw, 5.5rem);
}
.product-spot-copy > p:last-child {
  color: var(--text-soft);
}
.product-kicker {
  color: var(--orange);
}
.product-spot-meta {
  grid-column: 9 / 11;
  display: grid;
}
.product-spot-meta span {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--text-mute);
  font-family: var(--mono);
  font-size: 0.66rem;
}
.product-spot-link {
  grid-column: 11 / -1;
  justify-self: end;
}

/* 16 — Proof register */
.section-proof {
  padding: 80px 0;
  background: var(--bg-deep);
}
.section-proof .section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  max-width: none;
  align-items: end;
  gap: 24px;
  margin-bottom: 45px;
}
.section-proof .section-head .eyebrow {
  grid-column: 1;
}
.section-proof .section-head h2 {
  grid-column: 2;
  font-size: clamp(2.8rem, 4.5vw, 5rem);
}
.section-proof .section-head > p:last-child {
  grid-column: 2;
  max-width: 600px;
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 70px;
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line);
}
.impact-grid article {
  min-height: 185px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.impact-grid span,
.milestone-label {
  color: var(--orange);
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.impact-grid b {
  display: block;
  margin: 28px 0 10px;
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.15;
}
.impact-grid p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.9rem;
}
.milestone-label {
  margin-bottom: 18px;
}
.cred-strip {
  border-top: 1px solid var(--line-strong);
}
.cred-item {
  display: grid;
  grid-template-columns: 25% 1fr;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  color: var(--text-soft);
}
.cred-item b {
  color: var(--orange);
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
}

/* 17 — Projects */
.section-cases {
  padding: clamp(110px, 15vw, 210px) 0;
}
.section-cases .section-head {
  margin-bottom: 100px;
}
.case-grid {
  counter-reset: cases;
}
.case-card {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px 24px;
  margin-bottom: clamp(100px, 14vw, 190px);
  counter-increment: cases;
}
.case-card::before {
  grid-column: 1 / 3;
  align-self: end;
  color: var(--orange);
  content: "PROJECT / 0" counter(cases);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
}
.case-card img {
  grid-column: 1 / 9;
  grid-row: 1;
  width: 100%;
  height: min(630px, 55vw);
  object-fit: cover;
}
.case-card .tag {
  grid-column: 9 / -1;
  align-self: end;
  margin: 0;
  color: var(--green);
}
.case-card h3 {
  grid-column: 7 / -1;
  z-index: 2;
  margin: -12px 0 20px;
  padding: 24px 0 10px 32px;
  background: var(--paper);
  font-size: clamp(2.5rem, 4.6vw, 5rem);
}
.case-card dl {
  grid-column: 8 / -1;
  margin: 0;
}
.case-card dl > div {
  display: grid;
  grid-template-columns: 120px 1fr;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}
.case-card dt {
  color: var(--text-mute);
  font-family: var(--mono);
  font-size: 0.65rem;
  text-transform: uppercase;
}
.case-card dd {
  margin: 0;
  color: var(--text-soft);
}
.case-card:nth-child(even) img {
  grid-column: 5 / -1;
}
.case-card:nth-child(even)::before {
  grid-column: 11 / -1;
}
.case-card:nth-child(even) .tag {
  grid-column: 1 / 5;
}
.case-card:nth-child(even) h3 {
  grid-column: 1 / 7;
  padding: 24px 32px 10px 0;
}
.case-card:nth-child(even) dl {
  grid-column: 1 / 6;
}
/* 18 — Testimonials */
.section-testimonials {
  padding: clamp(90px, 11vw, 150px) 0;
  background: var(--ink);
  color: #f5f1ed;
}
.section-testimonials h2 {
  color: #f5f1ed;
}
.testimonial-head {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}
.testimonial-head p:not(.eyebrow) {
  color: #bfb6bd;
}
.testimonial-controls {
  display: flex;
  gap: 8px;
}
.testimonial-arrow {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}
.testimonial-arrow:hover:not(:disabled) {
  border-color: var(--orange);
  color: var(--orange);
}
.testimonial-arrow:disabled {
  opacity: 0.3;
}
.testimonial-track {
  display: flex;
  gap: 0;
  margin-top: 60px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.testimonial-track::-webkit-scrollbar {
  display: none;
}
.testi-card {
  flex: 0 0 100%;
  min-width: 0;
  padding: 20px 10% 20px 8%;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  scroll-snap-align: start;
}
.testi-card .quote {
  max-width: 980px;
  margin: 0 0 50px;
  color: #f5f1ed;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.6vw, 5.3rem);
  font-style: italic;
  line-height: 1.13;
}
.testi-who {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}
.testi-avatar {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: var(--green);
  font-family: var(--mono);
  font-size: 0.65rem;
}
.testi-who b,
.testi-who span {
  display: block;
}
.testi-who b {
  color: #fff;
}
.testi-who span {
  color: #aaa1a8;
  font-size: 0.85rem;
}

/* 19 — Gallery preview */
.section-gallery {
  padding: clamp(70px, 9vw, 115px) 0;
}
.gallery-preview-head {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  max-width: none;
  margin-bottom: 38px;
}
.gallery-preview-head > div {
  display: contents;
}
.gallery-preview-head .eyebrow {
  grid-column: 1 / 5;
}
.gallery-preview-head p:last-child {
  grid-column: 7 / -1;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  line-height: 1.2;
}
.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
.gallery-preview-card {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--paper);
}
.gallery-preview-card:nth-child(n) {
  grid-column: auto;
  grid-row: auto;
  margin: 0;
}
.gallery-preview-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.gallery-preview-card:hover img {
  transform: scale(1.025);
}
.gallery-preview-card span {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 80%;
  padding: 12px 17px;
  background: var(--bg);
  color: var(--text);
  font-family: var(--mono);
  font-size: 0.68rem;
}

/* 20 — News */
.section-news {
  padding: clamp(90px, 11vw, 150px) 0;
}
.news-head {
  margin-bottom: 65px;
}
.news-card {
  display: grid;
  grid-template-columns: 25% 1fr;
  gap: 24px;
  padding: 32px 0 38px;
  border-top: 1px solid var(--line-strong);
}
.news-card:last-child {
  border-bottom: 1px solid var(--line-strong);
}
.news-date {
  margin: 5px 0 0;
  color: var(--orange);
}
.news-card h3 {
  max-width: 850px;
  margin-bottom: 17px;
  font-size: clamp(2rem, 3.5vw, 3.8rem);
}
.news-card p {
  max-width: 680px;
  margin: 0;
  color: var(--text-soft);
}
.section-action {
  margin-top: 42px;
}

/* Interior corporate pages */
.inner-page-header {
  min-height: 68svh;
  padding: 190px 0 90px;
  display: flex;
  align-items: end;
  border-bottom: 1px solid var(--line);
}
.inner-page-header h1 {
  max-width: 1000px;
  margin-bottom: 28px;
  font-size: clamp(3.8rem, 8vw, 8.5rem);
}
.inner-page-header .lede {
  max-width: 700px;
}
.company-profile {
  padding: clamp(90px, 12vw, 160px) 0;
}
.company-history,
.presence-section {
  padding: clamp(90px, 12vw, 160px) 0;
}
.company-history {
  background: var(--bg-deep);
}
.history-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 65px;
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line);
}
.history-timeline article {
  min-height: 260px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.history-timeline b {
  color: var(--orange);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}
.history-timeline h3 {
  margin: 65px 0 15px;
  font-size: 1.45rem;
}
.history-timeline p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.9rem;
}
.presence-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 60px;
  border-block: 1px solid var(--line-strong);
}
.presence-grid span {
  padding: 30px 20px;
  border-right: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 1.35rem;
}
.presence-grid span:last-child {
  border-right: 0;
}
.collaboration-section {
  padding: clamp(80px, 10vw, 130px) 0;
  background: var(--bg-deep);
}
.collaboration-logos {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  gap: 50px;
  margin-top: 55px;
  padding-block: 40px;
  border-block: 1px solid var(--line-strong);
}
.collaboration-logos img {
  width: 100%;
  height: 70px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.78;
}
.profile-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.profile-grid > h2 {
  grid-column: 1 / 6;
}
.profile-details {
  grid-column: 7 / -1;
  border-top: 1px solid var(--line-strong);
}
.profile-details div {
  display: grid;
  grid-template-columns: 34% 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.profile-details dt {
  color: var(--orange);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.profile-details dd {
  margin: 0;
  color: var(--text-soft);
}
.news-page .section-news {
  padding-top: clamp(80px, 10vw, 130px);
}
.innovation-header {
  min-height: 72svh;
  background:
    linear-gradient(
      90deg,
      #1b181c 0%,
      rgba(27, 24, 28, 0.96) 34%,
      rgba(27, 24, 28, 0.62) 67%,
      rgba(27, 24, 28, 0.2) 100%
    ),
    url("assets/rice-corn.jpg") center / cover;
}
.innovation-header .wrap {
  position: relative;
  z-index: 1;
}
.innovation-header h1 {
  max-width: 850px;
  font-size: clamp(4.2rem, 8vw, 8rem);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.18);
}
.innovation-header h1,
.innovation-header .lede {
  color: #f3efe9;
}
.innovation-header .lede {
  color: #ddd5da;
}
.innovation-header .eyebrow {
  color: #f0a33e;
}
.innovation-path-section {
  padding: 0 0 clamp(80px, 10vw, 130px);
  background: var(--bg-deep);
}
.innovation-path {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line);
}
.innovation-path > div {
  min-height: 190px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.innovation-path span {
  color: var(--orange);
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
}
.innovation-path b {
  display: block;
  margin: 34px 0 10px;
  font-family: var(--serif);
  font-size: 1.7rem;
}
.innovation-path p {
  max-width: 270px;
  margin: 0;
  color: var(--text-soft);
}
.innovation-page .section-research {
  padding-top: clamp(110px, 14vw, 180px);
}
.innovation-page .section-cases {
  background: var(--bg);
}
.project-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 45px 0;
  border-block: 1px solid var(--line-strong);
}
.project-contact p {
  max-width: 650px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.7vw, 2.8rem);
  line-height: 1.2;
}

/* Corporate detail pages */
.corporate-hero {
  min-height: 70svh;
  background:
    linear-gradient(90deg, rgba(27, 24, 28, 0.94) 0 40%, rgba(27, 24, 28, 0.48) 72%, rgba(27, 24, 28, 0.18)),
    var(--hero-image) center / cover;
}
.corporate-hero h1,
.corporate-hero .lede {
  color: #f3efe9;
}
.capabilities-header {
  --hero-image: url("assets/farm-plan.png");
}
.programs-header {
  --hero-image: url("assets/yovel.jpg");
}
.contact-header {
  --hero-image: url("assets/story.jpg");
}
.capability-overview {
  padding: clamp(90px, 12vw, 160px) 0;
}
.capability-page-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.capability-page-intro {
  grid-column: 1 / 5;
  position: sticky;
  top: 120px;
  align-self: start;
}
.capability-page-intro p:last-child {
  color: var(--text-soft);
}
.capability-detail-list {
  grid-column: 6 / -1;
  border-top: 1px solid var(--line-strong);
  counter-reset: capability;
}
.capability-detail {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  counter-increment: capability;
}
.capability-detail::before {
  color: var(--orange);
  content: "0" counter(capability);
  font-family: var(--mono);
  font-size: 0.68rem;
}
.capability-detail h2 {
  margin-bottom: 15px;
  font-size: clamp(1.7rem, 3vw, 3.2rem);
}
.capability-detail p {
  max-width: 680px;
  margin: 0;
  color: var(--text-soft);
}
.program-development {
  padding: clamp(80px, 10vw, 130px) 0;
  background: var(--bg-deep);
}
.program-development-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: end;
}
.program-development-inner h2 {
  margin: 0;
}
.program-development-copy p {
  max-width: 620px;
  color: var(--text-soft);
}
.contact-page-main {
  padding: clamp(90px, 12vw, 160px) 0;
}
.contact-page-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.contact-direct {
  grid-column: 1 / 5;
}
.contact-direct h2 {
  margin-bottom: 28px;
  font-size: clamp(2.8rem, 5vw, 5.5rem);
}
.contact-direct > p {
  color: var(--text-soft);
}
.contact-page-grid .contact-cards {
  margin-top: 45px;
}
.contact-page-grid .contact-card {
  grid-template-columns: 1fr;
}
.inquiry-panel {
  grid-column: 7 / -1;
  padding-top: 8px;
}
.inquiry-panel h2 {
  margin-bottom: 35px;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
}
.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.inquiry-field {
  display: grid;
  gap: 8px;
}
.inquiry-field-full {
  grid-column: 1 / -1;
}
.inquiry-field label {
  color: var(--text-mute);
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.inquiry-field input,
.inquiry-field select,
.inquiry-field textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  background: var(--bg-deep);
  color: var(--text);
  padding: 13px 14px;
  outline: 0;
}
.inquiry-field textarea {
  min-height: 150px;
  resize: vertical;
}
.inquiry-field input:focus,
.inquiry-field select:focus,
.inquiry-field textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 2px rgba(229, 153, 52, 0.16);
}
.inquiry-form .btn {
  grid-column: 1 / -1;
  justify-self: start;
}
.inquiry-form .btn:disabled {
  cursor: wait;
  opacity: 0.62;
}
.inquiry-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.inquiry-status {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: var(--text-soft);
  font-size: 0.9rem;
}
.inquiry-status.is-success {
  color: var(--green);
}
.inquiry-status.is-error {
  color: #e66f73;
}
.locations-section {
  padding: clamp(90px, 12vw, 160px) 0;
  background: var(--bg-deep);
}
.office-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 60px;
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line);
}
.office-card {
  min-height: 240px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.office-card span {
  color: var(--orange);
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.office-card h3 {
  margin: 45px 0 15px;
  font-size: 1.6rem;
}
.office-card p {
  margin: 0;
  color: var(--text-soft);
}
.contact-map-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 60px;
}
.contact-map-grid .location-map {
  height: 460px;
}
.contact-map-grid-single {
  grid-template-columns: 1fr;
}

/* 21 — FAQ */
.section-faq {
  padding: clamp(80px, 10vw, 130px) 0;
}
.section-faq .wrap {
  max-width: var(--max) !important;
}
.section-faq .section-head {
  display: grid;
  grid-template-columns: 25% 1fr;
  max-width: none;
  align-items: end;
  margin-bottom: 55px;
}
.section-faq .section-head .eyebrow {
  grid-column: 1;
}
.section-faq .section-head h2 {
  grid-column: 2;
}
.faq-item {
  margin-left: 25%;
  border-top: 1px solid var(--line-strong);
}
.faq-item:last-child {
  border-bottom: 1px solid var(--line-strong);
}
.faq-item summary {
  position: relative;
  min-height: 72px;
  padding: 23px 55px 20px 50px;
  color: var(--text);
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  list-style: none;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::before {
  position: absolute;
  left: 0;
  color: var(--orange);
  content: counter(list-item, decimal-leading-zero);
  font-family: var(--mono);
  font-size: 0.62rem;
}
.faq-item summary::after {
  position: absolute;
  right: 8px;
  content: "+";
  font-family: var(--mono);
}
.faq-item[open] summary::after {
  content: "−";
}
.faq-item p {
  max-width: 700px;
  margin: 0 0 28px 50px;
  color: var(--text-soft);
}

/* 22 — Contact */
.home-contact-cta {
  padding: clamp(100px, 14vw, 180px) 0;
  background: var(--ink);
  color: #f3efe9;
}
.home-contact-inner {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.home-contact-inner .eyebrow {
  grid-column: 1 / 4;
  color: var(--green);
}
.home-contact-inner h2 {
  grid-column: 4 / -1;
  max-width: 980px;
  color: #f3efe9;
}
.home-contact-inner > p:not(.eyebrow):not(.home-location-line) {
  grid-column: 6 / 11;
  margin: 20px 0 0;
  color: #c7bec4;
  font-size: 1.05rem;
}
.home-contact-actions {
  grid-column: 6 / -1;
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 24px;
}
.home-contact-actions .text-link {
  margin-top: 0;
  color: #f3efe9;
}
.home-location-line {
  grid-column: 4 / -1;
  margin: 70px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(243, 239, 233, 0.22);
  color: #c7bec4;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.section-contact {
  padding: clamp(110px, 15vw, 210px) 0 0;
  background: var(--bg-deep);
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.contact-info-panel {
  grid-column: 1 / 6;
  padding-bottom: 100px;
}
.contact-info-panel h2 {
  margin-bottom: 30px;
  font-size: clamp(4rem, 8vw, 9rem);
}
.contact-info-panel > p:not(.eyebrow) {
  max-width: 420px;
}
.contact-cards {
  margin-top: 60px;
  border-top: 1px solid var(--line-strong);
}
.contact-card {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 15px;
  min-height: 76px;
  border-bottom: 1px solid var(--line);
  transition:
    padding 0.3s var(--ease),
    color 0.3s;
}
.contact-card:hover {
  padding-left: 10px;
  color: var(--orange);
}
.contact-card-icon {
  width: 22px;
  height: 22px;
  color: var(--orange);
}
.contact-card-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}
.contact-card strong,
.contact-card span span {
  display: block;
}
.contact-card strong {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.contact-card span span {
  color: var(--text-soft);
  font-size: 0.9rem;
}
.map-panel {
  grid-column: 7 / -1;
  align-self: end;
}
.map-copy {
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line);
}
.map-copy > span,
.map-locations > span {
  color: var(--orange);
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.location-maps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.location-map {
  position: relative;
  height: 430px;
  filter: saturate(0.45);
}
.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.location-map-label {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 9px 13px;
  background: var(--ink);
  color: #fff;
  font-family: var(--mono);
  font-size: 0.66rem;
  text-transform: uppercase;
}
.map-locations {
  padding: 22px 0 30px;
}
.map-locations p {
  margin: 7px 0 0;
  color: var(--text-soft);
}

/* 23 — Footer */
footer {
  padding: 80px 0 28px;
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: #c9c0c6;
}
footer .foot-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 50px;
  padding-bottom: 70px;
}
.footer-logo {
  display: block;
  margin-bottom: 25px;
}
.foot-grid h4 {
  margin-bottom: 22px;
  color: #fff;
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.foot-grid a:not(.footer-logo) {
  display: block;
  width: fit-content;
  margin-bottom: 9px;
  font-size: 0.9rem;
}
.foot-grid a:hover {
  color: var(--orange);
}
.foot-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #918990;
  font-family: var(--mono);
  font-size: 0.62rem;
}

/* 24 — Gallery archive */
.gallery-page-header {
  min-height: 68svh;
  padding: clamp(90px, 13vw, 170px) 0 60px;
  border-bottom: 1px solid var(--line-strong);
}
.gallery-hero-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: end;
  min-height: 420px;
  gap: 24px;
}
.gallery-hero-grid > div:first-child {
  grid-column: 1 / 9;
}
.gallery-hero-grid h1 {
  margin: 0;
  font-size: clamp(7rem, 17vw, 16rem);
  line-height: 0.72;
}
.gallery-hero-copy {
  grid-column: 9 / -1;
  padding-bottom: 8px;
}
.gallery-hero-copy .mono {
  color: var(--orange);
  font-size: 0.67rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.gallery-hero-copy p {
  margin: 22px 0 35px;
  color: var(--text-soft);
}
.gallery-hero-copy a {
  padding-bottom: 7px;
  border-bottom: 1px solid var(--line-strong);
  font-family: var(--mono);
  font-size: 0.72rem;
}
.gallery-full {
  min-height: 60vh;
  padding: 55px 0 clamp(110px, 14vw, 190px);
}
.gallery-tabs {
  display: flex;
  gap: 40px;
  margin-bottom: 70px;
  border-bottom: 1px solid var(--line);
}
.gallery-tab {
  position: relative;
  min-height: 52px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text-mute);
  cursor: pointer;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.gallery-tab svg {
  display: none;
}
.gallery-tab::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
}
.gallery-tab.active {
  color: var(--text);
}
.gallery-tab.active::after {
  transform: scaleX(1);
}
.albums-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-flow: dense;
  gap: 70px 24px;
}
.album-card {
  grid-column: span 7;
}
.album-card:nth-child(3n + 2) {
  grid-column: span 5;
  margin-top: 130px;
}
.album-card:nth-child(3n) {
  grid-column: 2 / span 5;
}
.album-card-btn {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  cursor: pointer;
}
.album-cover-wrap {
  position: relative;
  height: 470px;
  overflow: hidden;
  background: var(--paper);
}
.album-card:nth-child(3n + 2) .album-cover-wrap {
  height: 560px;
}
.album-cover-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.album-card:hover img {
  transform: scale(1.025);
}
.album-badge {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 9px 13px;
  background: var(--bg);
  color: var(--text);
  font-family: var(--mono);
  font-size: 0.62rem;
}
.album-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line-strong);
}
.album-info h3 {
  margin: 0;
  font-size: clamp(1.5rem, 2.5vw, 2.6rem);
}
.album-meta {
  margin: 0;
  color: var(--text-soft);
}
.album-nav-bar {
  display: grid;
  grid-template-columns: 25% 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 60px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line-strong);
}
.back-btn {
  width: fit-content;
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-family: var(--mono);
  font-size: 0.7rem;
}
.back-btn svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
}
.album-detail-header h2 {
  font-size: clamp(3rem, 6vw, 7rem);
}
.album-detail-header p {
  max-width: 600px;
  color: var(--text-soft);
}
.image-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-flow: dense;
  gap: 14px;
}
.image-card {
  grid-column: span 4;
  height: 360px;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--paper);
  cursor: zoom-in;
}
.image-card:nth-child(7n + 1) {
  grid-column: span 8;
  height: 550px;
}
.image-card:nth-child(7n + 4) {
  grid-column: span 5;
  height: 500px;
}
.image-card:nth-child(7n + 5) {
  grid-column: span 7;
  height: 500px;
}
.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.image-card:hover img {
  transform: scale(1.025);
}
.video-embed-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 70px 24px;
}
.video-frame {
  grid-column: span 7;
}
.video-frame:nth-child(even) {
  grid-column: span 5;
  margin-top: 120px;
}
.video-embed {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--paper);
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-frame-short {
  grid-column: span 4;
}
.video-frame-short .video-embed {
  aspect-ratio: 9/16;
}
.video-body {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.video-body p {
  color: var(--text-soft);
}

/* 25 — Lightbox */
#lightbox,
.lightbox {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 40px;
  background: rgba(15, 13, 15, 0.96);
}
#lightbox > div,
.lightbox-figure {
  display: grid;
  max-width: min(92vw, 1500px);
  max-height: 90vh;
  place-items: center;
  margin: 0;
}
#lightbox img,
.lightbox-figure img {
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
}
#lightboxClose,
.lightbox-close {
  position: absolute;
  z-index: 2;
  top: 24px;
  right: 28px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}
.lightbox-close svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
}
.lb-cap,
.lightbox-figure figcaption {
  margin: 12px 0 0;
  color: #bdb5bb;
  font-size: 0.85rem;
  text-align: center;
}
.scroll-to-top {
  position: fixed;
  z-index: 50;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  background: var(--bg);
  color: var(--text);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: 0.25s;
}
.scroll-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.scroll-to-top svg {
  width: 16px;
  fill: currentColor;
}

/* 26 — Motion / accessibility */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 4px;
}

/* 27 — Responsive */
@media (max-width: 1080px) {
  .nav {
    grid-template-columns: 145px 1fr auto;
  }
  nav.links {
    gap: 17px;
  }
  nav.links a {
    font-size: 0.66rem;
  }
  .hero-grid > div:first-child {
    grid-column: 1 / 9;
  }
  .hero-media {
    grid-column: 7 / -1;
  }
  .product-spot-meta {
    display: none;
  }
  .product-spot-copy {
    grid-column: 5 / 10;
  }
  .product-spot-link {
    grid-column: 10 / -1;
  }
}

@media (max-width: 960px) {
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .profile-grid > h2,
  .profile-details {
    grid-column: 1 / -1;
  }
  .inner-page-header {
    min-height: 58svh;
    padding-top: 150px;
  }
  .innovation-path {
    grid-template-columns: 1fr;
  }
  .innovation-path > div {
    min-height: 0;
  }
  .capability-page-intro,
  .capability-detail-list,
  .contact-direct,
  .inquiry-panel {
    grid-column: 1 / -1;
  }
  .capability-page-intro {
    position: static;
    margin-bottom: 40px;
  }
  .inquiry-panel {
    margin-top: 70px;
  }
  .office-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .history-timeline,
  .presence-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .collaboration-logos {
    grid-template-columns: repeat(3, 1fr);
  }
  :root {
    --pad: clamp(20px, 5vw, 42px);
  }
  h2 {
    font-size: clamp(2.7rem, 8vw, 5rem);
  }
  .nav {
    display: flex;
    min-height: 70px;
    justify-content: space-between;
  }
  .hamburger {
    display: grid;
  }
  .nav-right .btn {
    display: none;
  }
  nav.links {
    position: absolute;
    top: 70px;
    right: 0;
    left: 0;
    display: grid;
    max-height: 0;
    overflow: hidden;
    gap: 0;
    padding-inline: var(--pad);
    background: var(--bg);
    opacity: 0;
    pointer-events: none;
    transition:
      max-height 0.4s var(--ease),
      opacity 0.3s;
  }
  .menu-open nav.links {
    max-height: calc(100svh - 70px);
    overflow-y: auto;
    padding-block: 12px 25px;
    border-bottom: 1px solid var(--line);
    opacity: 1;
    pointer-events: auto;
  }
  nav.links a {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.75rem;
  }
  nav.links a::after {
    display: none;
  }
  .section-head-split,
  .section-head-right {
    display: block;
  }
  .section-head-split h2,
  .section-head-right h2 {
    max-width: 700px;
  }
  .hero {
    min-height: auto;
  }
  .hero-grid {
    min-height: 760px;
    padding-top: 70px;
  }
  .hero-grid > div:first-child {
    grid-column: 1 / -1;
    align-self: end;
    padding-bottom: 0;
  }
  .hero-media {
    grid-column: 5 / -1;
    opacity: 0.62;
  }
  .hero-media::after {
    background:
      linear-gradient(90deg, var(--bg-deep) 0, transparent 80%),
      linear-gradient(0deg, var(--bg-deep), transparent 75%);
  }
  .hero h1 {
    font-size: clamp(4rem, 14vw, 8rem);
  }
  .about-grid .img-frame {
    grid-column: 1 / 8;
    height: 600px;
  }
  .about-grid > div:last-child {
    grid-column: 7 / -1;
    padding-top: 110px;
  }
  .section-leadership .section-head {
    grid-column: 1 / 7;
  }
  .leader-photo {
    grid-column: 6 / -1;
  }
  .leader-card > div:last-child {
    grid-column: 2 / 8;
  }
  .ecosystem-cycle {
    margin-left: 0;
  }
  .section-ecosystem-full .section-head .eyebrow {
    grid-column: 1 / 5;
  }
  .section-ecosystem-full .section-head h2 {
    grid-column: 4 / -1;
  }
  .vm-card p {
    grid-column: 1 / -1;
  }
  .research-card:first-child {
    grid-column: 1 / 10;
  }
  .research-card:nth-child(2) {
    grid-column: 7 / -1;
  }
  .research-card:nth-child(3) {
    grid-column: 2 / 7;
  }
  .program-card .img {
    grid-column: 2 / 9;
  }
  .program-card .body {
    grid-column: 9 / -1;
  }
  .case-card h3 {
    grid-column: 6 / -1;
  }
  .contact-info-panel {
    grid-column: 1 / 7;
  }
  .map-panel {
    grid-column: 7 / -1;
  }
  .location-maps {
    grid-template-columns: 1fr;
  }
  .location-map {
    height: 310px;
  }
  footer .foot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  footer .foot-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .impact-grid {
    grid-template-columns: 1fr;
  }
  .impact-grid article {
    min-height: 0;
  }
  .inner-page-header h1 {
    font-size: 3.6rem;
  }
  .innovation-header {
    min-height: 65svh;
    background-position: 62% center;
  }
  .project-contact {
    align-items: flex-start;
    flex-direction: column;
  }
  .corporate-hero {
    min-height: 64svh;
    background-position: 60% center;
  }
  .capability-detail {
    grid-template-columns: 45px 1fr;
  }
  .program-development-inner,
  .contact-page-grid {
    display: block;
  }
  .program-development-copy {
    margin-top: 30px;
  }
  .inquiry-form {
    grid-template-columns: 1fr;
  }
  .inquiry-field-full,
  .inquiry-form .btn {
    grid-column: 1;
  }
  .office-grid,
  .contact-map-grid {
    grid-template-columns: 1fr;
  }
  .office-card {
    min-height: 0;
  }
  .contact-map-grid .location-map {
    height: 360px;
  }
  .history-timeline,
  .presence-grid {
    grid-template-columns: 1fr;
  }
  .history-timeline article {
    min-height: 0;
  }
  .presence-grid span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .collaboration-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  body {
    font-size: 15.5px;
  }
  .eyebrow {
    margin-bottom: 17px;
  }
  .hero-grid {
    display: flex;
    min-height: calc(100svh - 70px);
    flex-direction: column;
    justify-content: flex-end;
    padding-top: 0;
  }
  .hero-grid > div:first-child {
    order: 2;
    width: 100%;
    margin-top: -150px;
  }
  .hero-media {
    position: relative;
    order: 1;
    width: calc(100% + var(--pad) * 2);
    height: 58svh;
    min-height: 430px;
    margin: 0 calc(var(--pad) * -1);
  }
  .hero-media img {
    min-height: 0;
  }
  .hero-media::after {
    background: linear-gradient(0deg, var(--bg-deep) 0, transparent 65%);
  }
  .hero h1 {
    font-size: clamp(3.25rem, 17vw, 5.6rem);
  }
  .hero h1 span {
    margin-left: 8vw;
  }
  .hero .lede {
    max-width: 90%;
  }
  .hero-badge {
    top: 24px;
    right: var(--pad);
    bottom: auto;
  }
  .hero-badge b {
    font-size: 2.5rem;
  }
  .trust .wrap {
    padding-left: var(--pad);
  }
  .trust .wrap::before {
    left: 20px;
    max-width: 105px;
  }
  .partner-logo-row {
    gap: 45px;
    padding-right: 45px;
  }
  .partner-logo-row img {
    height: 32px;
  }
  .about-grid {
    display: flex;
    flex-direction: column;
  }
  .about-grid .img-frame {
    width: calc(100% - 34px);
    height: 68svh;
    max-height: 620px;
  }
  .about-grid > div:last-child {
    width: calc(100% - 18px);
    align-self: flex-end;
    margin-top: -80px;
    padding: 36px 0 0 30px;
    background: var(--bg);
  }
  .section-leadership .wrap {
    display: flex;
    flex-direction: column;
  }
  .section-leadership .section-head {
    order: 1;
  }
  .leader-photo {
    order: 2;
    width: calc(100% + var(--pad));
    height: 66svh;
    margin-right: calc(var(--pad) * -1);
    align-self: flex-end;
  }
  .leader-card > div:last-child {
    order: 3;
    width: calc(100% - 20px);
    margin: -80px 0 0;
    padding: 30px 25px 0 0;
    background: var(--paper);
  }
  .section-ecosystem-full .section-head {
    display: block;
  }
  .section-ecosystem-full .section-head h2 {
    font-size: clamp(2.5rem, 12vw, 3.2rem);
  }
  .section-ecosystem-full .section-head > p:last-child {
    margin-bottom: 45px;
  }
  .cycle-step {
    grid-template-columns: 42px 1fr;
    gap: 7px 13px;
    padding: 17px 0;
  }
  .cycle-step p {
    grid-column: 2;
  }
  .section-vision .section-head {
    margin-bottom: 35px;
  }
  .vm-grid {
    display: block;
  }
  .vm-card,
  .vm-card:nth-child(2) {
    display: block;
    padding: 38px 0 55px;
    border-left: 0;
  }
  .vm-card p {
    margin-top: 18px;
  }
  .dna-band {
    margin-top: 65px;
  }
  .dna-band-head {
    display: block;
  }
  .dna-row {
    grid-template-columns: 1fr;
  }
  .dna-row li {
    display: grid;
    grid-template-columns: 90px 1fr;
    min-height: 0;
    align-items: center;
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .dna-row b {
    margin: 0;
    font-size: 4rem;
  }
  .process-step {
    grid-template-columns: 42px 1fr;
    min-height: 0;
    padding: 20px 0;
  }
  .process-step p {
    grid-column: 2;
  }
  .process-step:hover,
  .process-step.is-active {
    padding-inline: 8px;
  }
  .section-research .section-head {
    margin-left: 0;
  }
  .innovation-grid {
    display: block;
  }
  .research-card,
  .research-card:first-child,
  .research-card:nth-child(2),
  .research-card:nth-child(3) {
    display: block;
    margin: 0 0 80px;
  }
  .research-card img,
  .research-card:first-child img,
  .research-card:nth-child(2) img,
  .research-card:nth-child(3) img {
    height: 58svh;
    max-height: 520px;
  }
  .research-card:nth-child(2) {
    margin-left: 15%;
  }
  .research-card:nth-child(3) {
    margin-right: 12%;
  }
  .program-card,
  .program-card:nth-child(even) {
    display: flex;
    min-height: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 45px 0;
  }
  .program-card::before {
    order: 1;
  }
  .program-card .img,
  .program-card:nth-child(even) .img {
    order: 2;
    width: calc(100% + var(--pad));
    height: 50svh;
    max-height: 470px;
    margin-right: calc(var(--pad) * -1);
  }
  .program-card:nth-child(even) .img {
    width: calc(100% + var(--pad));
    margin-right: 0;
    margin-left: calc(var(--pad) * -1);
  }
  .program-card .body,
  .program-card:nth-child(even) .body {
    order: 3;
    max-width: 90%;
    margin-top: 10px;
  }
  .section-cases .section-head {
    margin-bottom: 65px;
  }
  .case-card,
  .case-card:nth-child(even) {
    display: flex;
    flex-direction: column;
    margin-bottom: 110px;
  }
  .case-card::before,
  .case-card:nth-child(even)::before {
    order: 1;
  }
  .case-card img,
  .case-card:nth-child(even) img {
    order: 2;
    width: calc(100% + var(--pad));
    height: 56svh;
    max-height: 520px;
    margin-right: calc(var(--pad) * -1);
  }
  .case-card:nth-child(even) img {
    margin-right: 0;
    margin-left: calc(var(--pad) * -1);
  }
  .case-card .tag,
  .case-card:nth-child(even) .tag {
    order: 3;
    margin-top: 8px;
  }
  .case-card h3,
  .case-card:nth-child(even) h3 {
    order: 4;
    margin: 0;
    padding: 0;
    background: transparent;
  }
  .case-card dl,
  .case-card:nth-child(even) dl {
    order: 5;
  }
  .case-card dl > div {
    grid-template-columns: 92px 1fr;
  }
  .product-spot {
    display: flex;
    flex-wrap: wrap;
    min-height: 0;
    padding-block: 44px;
  }
  .product-spot > div:first-child {
    width: 100%;
    height: 260px;
  }
  .product-spot-copy {
    width: 100%;
  }
  .product-spot-copy h3 {
    font-size: clamp(2.4rem, 13vw, 4rem);
  }
  .product-spot-link {
    margin-top: 10px;
  }
  .section-proof .section-head {
    display: block;
  }
  .cred-item {
    grid-template-columns: 75px 1fr;
  }
  .testi-card {
    padding-inline: 24px 5px;
  }
  .testimonial-head {
    display: block;
  }
  .testimonial-controls {
    margin-top: 28px;
  }
  .testi-card .quote {
    margin-bottom: 34px;
    font-size: clamp(1.7rem, 9vw, 3rem);
  }
  .gallery-preview-head {
    display: block;
  }
  .gallery-preview-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .gallery-preview-card:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
    margin: 0;
  }
  .gallery-preview-card:first-child {
    grid-column: auto;
    grid-row: auto;
  }
  .news-card {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .news-card h3 {
    font-size: clamp(1.8rem, 9vw, 3rem);
  }
  .section-faq .section-head {
    display: block;
  }
  .faq-item {
    margin-left: 0;
  }
  .faq-item summary {
    padding-left: 40px;
  }
  .faq-item p {
    margin-left: 40px;
  }
  .contact-grid {
    display: block;
  }
  .home-contact-inner {
    display: block;
  }
  .home-contact-inner h2 {
    font-size: clamp(3rem, 15vw, 5rem);
  }
  .home-contact-inner > p:not(.eyebrow):not(.home-location-line) {
    margin-top: 28px;
  }
  .home-contact-actions {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 32px;
  }
  .home-location-line {
    margin-top: 55px;
  }
  .contact-info-panel {
    padding-bottom: 70px;
  }
  .contact-info-panel h2 {
    font-size: clamp(3.4rem, 18vw, 6rem);
  }
  .map-panel {
    width: calc(100% + var(--pad) * 2);
    margin-left: calc(var(--pad) * -1);
  }
  .map-copy,
  .map-locations {
    padding-inline: var(--pad);
  }
  footer .foot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  footer .foot-grid > div:first-child {
    grid-column: 1 / -1;
  }
  .foot-bottom {
    display: block;
  }
  .gallery-page-header {
    min-height: auto;
    padding-top: 90px;
  }
  .gallery-hero-grid {
    display: block;
    min-height: 390px;
  }
  .gallery-hero-grid h1 {
    margin: 100px 0 55px;
    font-size: clamp(4.8rem, 23vw, 8.5rem);
  }
  .albums-grid {
    display: block;
  }
  .album-card,
  .album-card:nth-child(3n + 2),
  .album-card:nth-child(3n) {
    margin: 0 0 75px;
  }
  .album-cover-wrap,
  .album-card:nth-child(3n + 2) .album-cover-wrap {
    height: min(60svh, 540px);
    min-height: 320px;
    max-height: 540px;
  }
  .album-info {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .album-nav-bar {
    grid-template-columns: 1fr;
  }
  .image-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 7px;
  }
  .image-card,
  .image-card:nth-child(7n + 1),
  .image-card:nth-child(7n + 4),
  .image-card:nth-child(7n + 5) {
    grid-column: span 1;
    height: 260px;
  }
  .image-card:nth-child(5n + 1) {
    grid-column: 1 / -1;
    height: 430px;
  }
  .video-embed-grid {
    display: block;
  }
  .video-frame,
  .video-frame:nth-child(even),
  .video-frame-short {
    margin: 0 0 60px;
  }
  #lightbox,
  .lightbox {
    padding: 18px;
  }
  #lightboxClose,
  .lightbox-close {
    top: 12px;
    right: 12px;
  }
}

@media (max-width: 430px) {
  :root {
    --pad: 18px;
  }
  h1,
  h2,
  h3,
  h4 {
    overflow-wrap: anywhere;
  }
  .nav {
    min-height: 64px;
  }
  nav.links {
    top: 64px;
  }
  .menu-open nav.links {
    max-height: calc(100svh - 64px);
  }
  .logo img {
    width: 104px;
  }
  .theme-toggle,
  .hamburger {
    width: 42px;
    height: 42px;
  }
  .hero-ctas {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
  }
  .hero h1 {
    font-size: 15.5vw;
  }
  .hero h1 span {
    margin-left: 4vw;
  }
  .hero-media {
    height: 52svh;
    min-height: 360px;
  }
  .eyebrow,
  .rn,
  .tag,
  .product-kicker,
  .leader-role,
  .news-date,
  .num {
    gap: 8px;
    font-size: 0.62rem;
    letter-spacing: 0.11em;
  }
  .eyebrow::before {
    width: 20px;
    flex: 0 0 20px;
  }
  .contact-card {
    grid-template-columns: 32px minmax(0, 1fr) auto;
    gap: 9px;
  }
  .contact-card span span,
  .contact-card-note {
    overflow-wrap: anywhere;
  }
  .location-map {
    height: 270px;
  }
  .location-maps {
    grid-template-columns: 1fr;
  }
  footer .foot-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  footer .foot-grid > div:first-child {
    grid-column: auto;
  }
  .gallery-tabs {
    gap: 24px;
    overflow-x: auto;
  }
  .gallery-hero-grid h1 {
    font-size: 21vw;
  }
  .image-grid {
    grid-template-columns: 1fr;
  }
  .image-card,
  .image-card:nth-child(7n + 1),
  .image-card:nth-child(7n + 4),
  .image-card:nth-child(7n + 5),
  .image-card:nth-child(5n + 1) {
    grid-column: 1;
    height: auto;
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 960px) {
  .capability-block .program-row {
    grid-template-columns: 1fr;
  }
  .capability-block .program-card,
  .capability-block .program-card:nth-child(even) {
    display: grid;
    grid-template-columns: 52px minmax(0, 0.9fr) minmax(0, 1fr);
    gap: 20px;
    align-items: center;
  }
  .capability-block .program-card::before {
    margin: 0;
  }
  .capability-block .program-card .img,
  .capability-block .program-card:nth-child(even) .img {
    height: 230px;
  }
  .capability-block .program-card .body,
  .capability-block .program-card:nth-child(even) .body {
    margin: 0;
  }
}

@media (max-width: 700px) {
  .capability-block .program-card,
  .capability-block .program-card:nth-child(even) {
    display: block;
  }
  .capability-block .program-card::before {
    margin-bottom: 18px;
  }
  .capability-block .program-card .img,
  .capability-block .program-card:nth-child(even) .img {
    height: 220px;
  }
  .capability-block .program-card .body,
  .capability-block .program-card:nth-child(even) .body {
    margin-top: 22px;
  }
}

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