:root {
  --bg: #FFFCF9;
  --navy: #1b365d;
  --gold: #987148;
  --ink: #030303;
  --muted: #404040;
  --soft: #fff9f2;
  --band: #e2e2e2;
  --line: #dadada;
  --max: 1216px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color: var(--ink);
  font-family: "Articulat CF", Arial, sans-serif;
  letter-spacing: 0;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.45;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.container,
.nav-shell {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  background: var(--bg);
  border-bottom: 1.4px solid var(--line);
}

.nav-shell {
  min-height: 114px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  flex: 0 0 auto;
  width: 182px;
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 33px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.site-nav a,
.language-switch button {
  color: var(--navy);
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a.active,
.language-switch button:hover,
.language-switch button.active {
  color: var(--gold);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--gold);
  white-space: nowrap;
}

.language-switch button {
  appearance: none;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  font-weight: 500;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--navy);
  transform-origin: center;
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.section {
  padding: 86px 0;
}

.hero-section {
  padding-top: 82px;
}

.hero-grid,
.about-grid,
.split-hero,
.contact-grid,
.band-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.93fr);
  gap: 100px;
  align-items: start;
}

.hero-copy {
  padding-top: 58px;
}

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

h1,
h2 {
  font-weight: 500;
  line-height: 1.1;
  color: var(--ink);
}

h1 {
  margin-bottom: 52px;
  font-size: clamp(42px, 4.1vw, 60px);
  max-width: 720px;
}

h2 {
  margin-bottom: 54px;
  font-size: clamp(34px, 3.3vw, 50px);
}

h3 {
  font-size: 20px;
  line-height: 1.1;
  font-weight: 500;
}

.lead {
  max-width: 620px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.35;
}

.lead.narrow {
  max-width: 500px;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 598 / 446;
  object-fit: cover;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  color: var(--bg);
  font-size: 14px;
  line-height: 1;
}

.hero-cta span:first-child {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border-radius: 999px;
  background: #231f20;
  padding: 0 22px;
  font-weight: 300;
}

.hero-cta-icon {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--bg);
  font-size: 14px;
  font-weight: 400;
}

.hero-cta-icon img {
  width: 36px;
  height: 36px;
  display: block;
  object-fit: contain;
}

.eyebrow {
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
  text-transform: uppercase;
}

.two-column-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 220px;
  max-width: 100%;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.35;
}

.two-column-copy p {
  margin-bottom: 46px;
}

.business-section {
  padding-top: 72px;
  padding-bottom: 126px;
}

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

.unit-card img {
  width: 100%;
  aspect-ratio: 359 / 212;
  object-fit: cover;
}

.unit-card h3 {
  margin: 26px 0 0 27px;
}

.about-hero {
  padding-top: 96px;
}

.about-grid {
  gap: 77px;
}

.about-copy h1 {
  margin-bottom: 38px;
}

.statement {
  margin-bottom: 28px;
  font-size: 21px;
  font-weight: 500;
}

.rich-copy {
  max-width: 620px;
  font-size: 18px;
  line-height: 1.5;
}

.rich-copy p {
  margin-bottom: 26px;
}

.about-intro .rich-copy p:first-child {
  font-weight: 500;
}

.rich-copy strong {
  font-weight: 700;
}

.about-image img {
  width: 100%;
  aspect-ratio: 598 / 704;
  object-fit: cover;
  object-position: center;
}

.stats-band {
  padding: 106px 0 92px;
  background: var(--band);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  text-align: center;
}

.stats-grid strong {
  display: block;
  color: var(--gold);
  font-size: clamp(52px, 5vw, 80px);
  line-height: 1;
  font-weight: 600;
}

.stats-grid span {
  display: block;
  margin-top: 16px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.values-section {
  padding-top: 94px;
  padding-bottom: 112px;
}

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

.value-grid h3 {
  margin-bottom: 31px;
  color: var(--gold);
  font-size: 29px;
  line-height: 1.15;
}

.value-grid p {
  font-size: 16px;
  line-height: 1.45;
}

.services-page h1,
.services-page h2 {
  margin-bottom: 34px;
}

.services-current-hero {
  padding-top: 80px;
  padding-bottom: 82px;
}

.services-current-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 598px);
  gap: 100px;
  align-items: start;
}

.services-current-copy {
  padding-top: 0;
}

.services-current-copy h1 {
  margin-top: 74px;
}

.services-lead {
  max-width: 620px;
  font-size: 20px;
  line-height: 1.5;
}

.services-hero-image {
  padding-top: 6px;
}

.services-hero-image img {
  width: 100%;
  aspect-ratio: 598 / 481;
  object-fit: cover;
}

.services-card-section {
  padding: 56px 0 110px;
}

.services-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 60px;
  justify-items: start;
}

.service-card {
  width: 100%;
  min-height: 191px;
  padding: 36px 36px 30px;
  background: var(--soft);
}

.service-card h2,
.application-grid h3,
.service-subcards h3 {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.25;
  font-weight: 500;
}

.service-card p,
.application-grid p,
.service-subcards p {
  margin: 0;
  font-size: 16px;
  line-height: 1.35;
}

.services-banner {
  overflow: hidden;
}

.services-banner img,
.services-banner video {
  display: block;
  width: 100%;
  height: 550px;
  object-fit: cover;
  object-position: center;
}

.services-detail-intro {
  padding-top: 148px;
  padding-bottom: 96px;
}

.services-inline-image img,
.service-feature > img {
  width: 100%;
  aspect-ratio: 598 / 335;
  object-fit: cover;
}

.services-applications {
  padding: 0 0 126px;
}

.services-applications h2 {
  color: var(--navy);
  font-size: clamp(27px, 2.3vw, 32px);
  line-height: 1.25;
}

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

.application-grid article,
.service-subcards article {
  min-height: 191px;
  padding: 24px;
  background: var(--soft);
}

.application-grid h3,
.service-subcards h3 {
  color: var(--gold);
}

.services-feature-list {
  padding-top: 0;
  padding-bottom: 0;
}

.service-feature {
  display: grid;
  grid-template-columns: minmax(0, 618px) minmax(320px, 598px);
  gap: 100px;
  align-items: start;
  padding-bottom: 164px;
  width: min(1316px, calc(100% - 48px));
}

.service-feature h2 {
  font-size: clamp(34px, 3.3vw, 50px);
}

.service-subcards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-bottom: 164px;
}

.service-list {
  display: grid;
  gap: 16px;
  margin: 38px 0 0;
  padding: 0;
  color: var(--navy);
  font-size: 18px;
  list-style: none;
}

.service-list li::before {
  content: "-";
  margin-right: 12px;
}

.services-cta {
  padding: 100px 0;
  background: var(--navy);
  color: var(--bg);
  text-align: center;
}

.services-cta h2 {
  max-width: 1216px;
  margin: 0 auto 60px;
  color: #ffffff;
  font-size: clamp(34px, 3.3vw, 50px);
}

.services-cta p {
  max-width: 978px;
  margin: 0 auto 60px;
  color: var(--bg);
  font-size: 20px;
  line-height: 1.5;
}

.outline-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 1px solid #ffffff;
  border-radius: 4px;
  padding: 0 32px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
}

.page-hero {
  padding-top: 96px;
}

.split-hero {
  align-items: center;
}

.split-hero h1,
.contact-section h1 {
  margin-bottom: 34px;
}

.split-image img {
  width: 100%;
  aspect-ratio: 598 / 530;
  object-fit: cover;
}

.partnership-grid {
  margin-top: 4px;
}

.partnership-band {
  padding: 96px 0;
  background: var(--band);
}

.band-grid {
  align-items: start;
}

.band-grid h2 {
  margin-bottom: 0;
}

.band-copy {
  padding-top: 44px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
}

.band-copy p {
  margin-bottom: 28px;
}

.contact-section {
  padding-top: 96px;
  padding-bottom: 124px;
}

.contact-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  align-items: start;
}

.contact-points {
  display: grid;
  gap: 30px;
  margin-top: 76px;
}

.contact-points h2 {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 24px;
  line-height: 1.2;
}

.contact-points p {
  max-width: 560px;
  color: var(--muted);
  font-size: 17px;
}

.contact-form {
  display: grid;
  gap: 24px;
  padding: 40px;
  background: var(--soft);
  border: 1px solid rgba(152, 113, 72, 0.42);
}

.contact-form label {
  display: grid;
  gap: 10px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid rgba(27, 54, 93, 0.24);
  background: var(--bg);
  color: var(--ink);
  padding: 14px 15px;
  border-radius: 0;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--gold);
}

.button {
  justify-self: start;
  min-height: 48px;
  border: 0;
  background: var(--navy);
  color: var(--bg);
  padding: 0 24px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 126px;
  padding: 32px 24px;
  background: var(--navy);
  color: var(--bg);
  text-align: center;
}

.site-footer p {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

@media (max-width: 1100px) {
  .site-nav {
    gap: 20px;
  }

  .hero-grid,
  .about-grid,
  .services-current-grid,
  .service-feature,
  .split-hero,
  .contact-grid,
  .band-grid {
    gap: 56px;
  }

  .two-column-copy {
    gap: 80px;
  }

  .unit-grid,
  .value-grid,
  .services-card-grid {
    gap: 34px;
  }
}

@media (max-width: 860px) {
  .container,
  .nav-shell {
    width: min(100% - 32px, var(--max));
  }

  .nav-shell {
    min-height: 92px;
  }

  .brand {
    width: 158px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    z-index: 10;
    top: 92px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 18px 24px 22px;
    background: var(--bg);
    border-bottom: 1.4px solid var(--line);
    box-shadow: 0 18px 34px rgba(27, 54, 93, 0.08);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a,
  .language-switch {
    width: 100%;
    padding: 14px 0;
    font-size: 14px;
  }

  .section,
  .hero-section,
  .about-hero,
  .page-hero,
  .services-current-hero,
  .contact-section {
    padding: 64px 0;
  }

  .hero-grid,
  .about-grid,
  .services-current-grid,
  .service-feature,
  .split-hero,
  .contact-grid,
  .band-grid,
  .two-column-copy,
  .unit-grid,
  .value-grid,
  .stats-grid,
  .services-card-grid,
  .application-grid,
  .service-subcards {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .services-current-copy,
  .services-current-copy h1 {
    padding-top: 0;
    margin-top: 0;
  }

  h1 {
    margin-bottom: 30px;
    font-size: clamp(36px, 11vw, 54px);
  }

  h2 {
    margin-bottom: 32px;
    font-size: clamp(30px, 8vw, 44px);
  }

  .lead,
  .rich-copy,
  .two-column-copy,
  .band-copy {
    font-size: 17px;
  }

  .two-column-copy p {
    margin-bottom: 26px;
  }

  .business-section,
  .values-section {
    padding-bottom: 72px;
  }

  .unit-card h3 {
    margin-left: 0;
  }

  .stats-band {
    padding: 64px 0;
  }

  .services-card-section {
    padding: 16px 0 72px;
  }

  .service-card,
  .application-grid article,
  .service-subcards article {
    min-height: auto;
    padding: 28px;
  }

  .services-banner img,
  .services-banner video {
    height: 330px;
  }

  .services-detail-intro {
    padding: 72px 0;
  }

  .services-applications {
    padding-bottom: 72px;
  }

  .service-feature,
  .service-subcards {
    padding-bottom: 72px;
  }

  .services-cta {
    padding: 72px 0;
  }

  .services-cta h2,
  .services-cta p {
    margin-bottom: 36px;
  }

  .contact-form {
    padding: 28px 22px;
  }
}

@media (max-width: 520px) {
  .brand {
    width: 142px;
  }

  .hero-media img,
  .about-image img,
  .services-hero-image img,
  .services-inline-image img,
  .service-feature > img,
  .split-image img,
  .unit-card img {
    aspect-ratio: 4 / 3;
  }

  .stats-grid span {
    font-size: 14px;
  }

  .value-grid h3 {
    font-size: 24px;
  }

  .services-banner img,
  .services-banner video {
    height: 260px;
  }

  .site-footer p {
    font-size: 13px;
    line-height: 1.5;
  }
}

/* Homepage revision from the latest Figma frame */
:root {
  --max: 1416px;
  --footer: #0d1a2c;
}

.site-header {
  position: relative;
  z-index: 5;
  background: var(--bg);
}

.nav-shell {
  min-height: 131px;
}

.brand,
.footer-brand {
  display: block;
  width: 239px;
  height: 69px;
  overflow: hidden;
}

.brand img,
.footer-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-nav {
  gap: 36px;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.home-page .section {
  padding: 0;
}

.home-visual-hero {
  height: 783px;
  overflow: hidden;
  background: #252525;
}

.home-visual-hero video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.home-intro {
  padding: 100px 0 114px;
}

.home-intro-grid,
.section-split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.93fr);
  gap: 140px;
  align-items: start;
}

.home-intro-copy h1 {
  margin: 63px 0 35px;
  max-width: 700px;
  font-size: clamp(42px, 3.7vw, 56px);
  line-height: 1.18;
}

.home-intro-media img {
  width: 100%;
  aspect-ratio: 698 / 521;
  object-fit: cover;
}

.home-page .lead {
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0.04em;
}

.hero-cta {
  margin-top: 18px;
  gap: 5px;
}

.hero-cta span:first-child {
  min-height: 30px;
  padding: 0 24px;
  border-radius: 20px;
  background: #231f20;
  font-size: 14px;
}

.hero-cta-icon {
  width: 30px;
  height: 30px;
  background: var(--gold);
}

.hero-cta-icon img {
  width: 36px;
  height: 36px;
}

.approach-section {
  padding: 0 0 210px;
}

.home-page .eyebrow {
  margin-bottom: 46px;
  color: var(--gold);
  font-size: 16px;
  font-weight: 500;
}

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

.numbered-item {
  min-height: 360px;
  border-left: 1.4px solid #dadada;
  padding-left: 20px;
}

.numbered-item strong {
  display: block;
  margin-bottom: 4px;
  color: #979797;
  font-size: 60px;
  line-height: 1.1;
  font-weight: 600;
}

.numbered-item h2 {
  margin: 0 0 78px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.35;
}

.numbered-item p {
  max-width: 390px;
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.value-chain-section {
  padding: 0 0 260px;
}

.section-split-heading {
  gap: 140px;
  margin-bottom: 80px;
}

.section-split-heading h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-split-heading p {
  max-width: 578px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
  letter-spacing: 0.02em;
}

.stone-flow {
  position: relative;
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  align-items: center;
  min-height: 663px;
}

.stone-flow-note {
  position: relative;
  z-index: 2;
  border-top: 1.4px solid #dadada;
  padding-top: 36px;
}

.stone-flow-note h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.3;
}

.stone-flow-note p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.stone-flow > img {
  width: 100%;
  max-height: 663px;
  object-fit: contain;
}

.stone-flow-labels {
  position: absolute;
  right: 5.5%;
  top: 0;
  width: 44%;
  height: 100%;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.15;
}

.stone-flow-labels span {
  position: absolute;
  width: 31%;
}

.stone-flow-labels span:nth-child(1),
.stone-flow-labels span:nth-child(2),
.stone-flow-labels span:nth-child(3) {
  top: 43%;
}

.stone-flow-labels span:nth-child(4),
.stone-flow-labels span:nth-child(5),
.stone-flow-labels span:nth-child(6) {
  top: 82%;
}

.stone-flow-labels span:nth-child(1),
.stone-flow-labels span:nth-child(4) {
  left: 0;
}

.stone-flow-labels span:nth-child(2),
.stone-flow-labels span:nth-child(5) {
  left: 34%;
}

.stone-flow-labels span:nth-child(3),
.stone-flow-labels span:nth-child(6) {
  left: 68%;
}

.home-value-map {
  overflow: hidden;
}

.home-value-map img {
  width: 100%;
  max-width: none;
  height: auto;
}

.business-section {
  padding: 142px 0 135px;
  background: #ededed;
}

.business-section .section-split-heading {
  margin-bottom: 80px;
}

.business-section .section-split-heading > div:last-child {
  padding-top: 69px;
}

.business-section .hero-cta {
  margin-top: 24px;
}

.unit-grid {
  gap: 47px;
}

.unit-card {
  position: relative;
  padding-left: 20px;
}

.unit-card::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1.4px;
  background: #dadada;
}

.unit-card img {
  aspect-ratio: 432 / 276;
}

.unit-card h3 {
  margin: 20px 0 0;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 500;
}

.site-footer {
  min-height: 240px;
  padding: 0;
  background: var(--footer);
  color: #f5f3f1;
  text-align: left;
}

.footer-grid {
  display: grid;
  grid-template-columns: 240px 1fr 160px;
  gap: 32px;
  align-items: start;
  padding-top: 86px;
}

.footer-brand {
  grid-column: 1;
  filter: invert(1);
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 42px;
  padding-top: 24px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-social {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  padding-top: 20px;
  font-size: 22px;
  line-height: 1;
}

.footer-social img {
  display: block;
  width: 35px;
  height: 34px;
}

.footer-grid p {
  margin: 28px 0 0;
  color: #f5f3f1;
  font-size: 14px;
  line-height: 1.35;
  letter-spacing: 0.04em;
}

.footer-grid p:nth-of-type(2) {
  justify-self: center;
}

.footer-grid p:nth-of-type(3) {
  justify-self: end;
}

@media (max-width: 1100px) {
  .home-intro-grid,
  .section-split-heading {
    gap: 72px;
  }

  .approach-grid,
  .unit-grid {
    gap: 28px;
  }

  .stone-flow-labels {
    gap: 150px 24px;
    right: 3%;
    width: 47%;
    font-size: 12px;
  }

  .footer-nav {
    gap: 24px;
  }
}

@media (max-width: 860px) {
  .nav-shell {
    min-height: 92px;
  }

  .brand {
    width: 178px;
    height: 52px;
  }

  .site-nav {
    top: 92px;
  }

  .home-visual-hero {
    height: 56vw;
    min-height: 280px;
    max-height: 560px;
  }

  .home-intro,
  .approach-section,
  .value-chain-section,
  .business-section {
    padding: 64px 0;
  }

  .home-intro-grid,
  .section-split-heading,
  .approach-grid,
  .stone-flow,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .business-section .section-split-heading > div:last-child {
    padding-top: 0;
  }

  .home-intro-copy h1 {
    margin-top: 0;
  }

  .numbered-item {
    min-height: auto;
  }

  .numbered-item h2 {
    margin-bottom: 28px;
  }

  .stone-flow {
    gap: 24px;
    min-height: 0;
  }

  .stone-flow > img {
    max-height: none;
  }

  .stone-flow-labels {
    position: static;
    display: grid;
    width: auto;
    height: auto;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 20px;
    margin-top: 6px;
  }

  .stone-flow-labels span,
  .stone-flow-labels span:nth-child(n) {
    position: static;
    width: auto;
  }

  .unit-card {
    padding-left: 14px;
  }

  .footer-grid {
    gap: 20px;
    padding: 52px 0;
  }

  .footer-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
    padding-top: 0;
  }

  .footer-social {
    justify-content: flex-start;
    padding-top: 0;
  }

  .footer-grid p,
  .footer-grid p:nth-of-type(2),
  .footer-grid p:nth-of-type(3) {
    justify-self: start;
    margin-top: 0;
  }
}

@media (max-width: 520px) {
  .home-intro-copy h1 {
    font-size: 38px;
  }

  .home-page .lead,
  .numbered-item p,
  .section-split-heading p {
    font-size: 16px;
  }

  .section-split-heading h2 {
    font-size: 25px;
  }

  .numbered-item strong {
    font-size: 48px;
  }
}

@media (max-width: 860px) {
  .site-footer {
    min-height: 240px;
    height: 240px;
    padding: 0;
    background: #0d1a2c;
    overflow: hidden;
  }

  .site-footer .footer-grid {
    position: relative;
    display: block;
    width: min(342px, calc(100% - 48px));
    height: 240px;
    padding: 0;
    margin: 0 auto;
  }

  .site-footer .footer-brand {
    position: absolute;
    left: 0;
    top: 35px;
    width: 163px;
    height: 47px;
    filter: invert(1) brightness(0.87);
  }

  .site-footer .footer-social {
    position: absolute;
    right: 0;
    top: 53px;
    display: flex;
    gap: 13px;
    padding: 0;
    align-items: center;
    justify-content: flex-end;
  }

  .site-footer .footer-social img {
    width: 16px;
    height: 16px;
  }

  .site-footer .footer-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 137px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 0;
    color: #ffffff;
    font-size: 9px;
    font-weight: 300;
    line-height: 12px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .site-footer .footer-nav a {
    flex: 0 1 auto;
    min-width: 0;
  }

  .site-footer .footer-grid p {
    position: absolute;
    top: 217px;
    margin: 0;
    color: #f5f3f1;
    font-size: 8px;
    font-weight: 400;
    line-height: 10px;
    letter-spacing: 0.04em;
    white-space: nowrap;
  }

  .site-footer .footer-grid p:nth-of-type(1) {
    left: 0;
    width: 79px;
    text-align: left;
  }

  .site-footer .footer-grid p:nth-of-type(2) {
    left: 50%;
    width: 120px;
    transform: translateX(-50%);
    text-align: center;
  }

  .site-footer .footer-grid p:nth-of-type(3) {
    right: 0;
    width: 53px;
    text-align: right;
  }
}

/* Shared Figma page system */
.figma-page .figma-section {
  padding: 100px 0;
}

.figma-page h1 {
  margin: 0 0 52px;
  max-width: 700px;
  font-size: clamp(42px, 3.35vw, 50px);
  line-height: 1.32;
}

.figma-page h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.2;
  text-transform: uppercase;
}

.figma-page .numbered-item h2,
.figma-page .lined-grid h3,
.figma-page .contact-points h2 {
  text-transform: none;
}

.figma-page h2.title-case {
  text-transform: none;
}

.figma-page .lead,
.figma-page .rich-copy,
.figma-page .figma-split > p,
.figma-page .emery-copy p,
.figma-page .figma-split > div > p:not(.eyebrow):not(.statement) {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.products-page .lead strong {
  font-weight: 500;
}

.products-page .lead,
.products-page .figma-split > p,
.products-page .emery-copy p,
.products-page .figma-split > div > p:not(.eyebrow):not(.statement),
.products-page .numbered-item p {
  font-size: 18px;
}

.products-page .emery-copy p {
  margin: 0;
}

.products-page .emery-copy p + p {
  margin-top: 24px;
}

.products-page .emery-copy strong {
  font-weight: 500;
}

.page-media-hero {
  height: 783px;
  overflow: hidden;
  background: #d9d9d9;
}

.page-media-hero img,
.wide-image-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-page .page-media-hero img {
  object-position: center 42%;
}

.products-page .page-media-hero img,
.partnerships-page .page-media-hero img,
.contact-page .page-media-hero img {
  object-position: center;
}

.figma-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.93fr);
  gap: 140px;
  align-items: start;
}

.products-list .figma-split > p strong {
  font-weight: 600;
}

.products-list .figma-split h2 {
  font-size: 22px;
  line-height: 26px;
}

.products-list .figma-split > p {
  padding-top: 39px;
}

.split-media {
  width: 100%;
  aspect-ratio: 698 / 521;
  object-fit: cover;
}

.about-intro {
  min-height: 794px;
}

.about-intro .statement {
  margin: 44px 0 58px;
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
}

.about-intro .rich-copy p {
  margin-bottom: 26px;
}

.wide-image-band {
  height: 520px;
  overflow: hidden;
}

.wide-image-band img {
  object-position: center bottom;
}

.glance-section {
  padding-bottom: 132px;
}

.approach-grid.compact .numbered-item {
  min-height: 279px;
}

.approach-grid.compact .numbered-item h2 {
  margin-bottom: 72px;
}

.gray-panel {
  background: #ededed;
}

.gray-panel .section-split-heading {
  margin-bottom: 96px;
}

.lined-grid article {
  border-left: 1.4px solid #dadada;
  padding-left: 20px;
}

.lined-grid h3 {
  margin: 0 0 64px;
  color: var(--gold);
  font-size: 24px;
  line-height: 1.25;
  font-weight: 500;
}

.lined-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

.about-values {
  margin-top: 23px;
}

.figma-page .about-values {
  padding: 128px 0;
}

.about-values .section-split-heading {
  grid-template-columns: 578px 698px;
  gap: 140px;
  margin-bottom: 127px;
}

.about-values .section-split-heading .eyebrow {
  margin: 0 0 20px;
  color: var(--gold);
  font-size: 13px;
  line-height: 17px;
  font-weight: 500;
  text-transform: uppercase;
}

.about-values .section-split-heading h2 {
  max-width: 516px;
  font-size: 30px;
  line-height: 40px;
  font-weight: 500;
}

.about-values .section-split-heading > p {
  align-self: start;
  margin: 42px 0 0;
  padding-top: 0;
  max-width: 698px;
  color: var(--muted);
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0.02em;
}

.about-values .value-grid {
  grid-template-columns: 417px 417px minmax(0, 1fr);
  gap: 90px;
}

.about-values .lined-grid article {
  position: relative;
  min-height: 217px;
  border-left: 0;
  padding-left: 11px;
}

.about-values .lined-grid article::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1.4px;
  background: #dadada;
}

.about-values .lined-grid h3 {
  margin: 0 0 40px;
  font-size: 24px;
  line-height: 30px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.about-values .lined-grid p {
  max-width: 390px;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0.02em;
}

.partnerships-page .eyebrow {
  margin: 0 0 20px;
  color: var(--gold);
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  text-transform: none;
}

.partnerships-page h2 {
  font-weight: 500;
  text-transform: none;
}

.partnerships-page .partnership-intro {
  padding: 72px 0 141px;
}

.partnership-intro .figma-split {
  grid-template-columns: minmax(0, 578px) minmax(0, 698px);
  gap: 140px;
}

.partnership-intro .split-media {
  margin-top: 27px;
  aspect-ratio: 698 / 521;
}

.partnership-intro h1 {
  margin-bottom: 40px;
  max-width: 578px;
  font-size: 50px;
  line-height: 66px;
  font-weight: 500;
}

.partnership-intro .lead {
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0;
}

.partnership-intro .hero-cta {
  margin-top: 45px;
}

.partnerships-page .partnership-framework {
  padding: 0 0 100px;
}

.partnership-framework h2 {
  max-width: 826px;
  font-size: 30px;
  line-height: 40px;
}

.partnerships-page .framework-grid {
  margin-top: 100px;
}

.partnerships-page .framework-grid article {
  min-height: 217px;
}

.partnerships-page .framework-grid h3 {
  margin-bottom: 78px;
  font-size: 24px;
  line-height: 30px;
  font-weight: 500;
}

.partnerships-page .framework-grid p {
  font-size: 20px;
  line-height: 26px;
}

.partnerships-page .partnership-model {
  padding: 60px 0 62px;
}

.partnership-model .figma-split {
  grid-template-columns: minmax(0, 635px) minmax(0, 578px);
  gap: 82px;
}

.partnership-model .eyebrow {
  line-height: 18px;
}

.partnership-model h2 {
  max-width: 635px;
  font-size: 30px;
  line-height: 36px;
}

.partnership-model .figma-split > div:last-child {
  padding-top: 38px;
}

.partnership-model .figma-split > div > p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0;
}

.solution-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 58px 56px;
}

.solution-grid .numbered-item {
  min-height: 246px;
}

.solution-grid .numbered-item strong {
  color: var(--gold);
}

.solution-grid .numbered-item h2 {
  margin-bottom: 64px;
  font-size: 20px;
  line-height: 26px;
}

.solution-grid .numbered-item p {
  font-size: 18px;
}

.products-page #solutions .structure-copy {
  padding-top: 40px;
}

.products-page #solutions .structure-copy p + p {
  margin-top: 24px;
}

.products-page #solutions .structure-copy strong {
  font-weight: 500;
}

.products-page #solutions .section-split-heading .eyebrow {
  margin: 0 0 20px;
  color: #987148;
  font-size: 13px;
  line-height: 17px;
  font-weight: 500;
  text-transform: uppercase;
}

.products-page #solutions .section-split-heading h2 {
  font-size: 30px;
  line-height: 1.2;
  font-weight: 500;
}

.products-flow {
  padding-top: 0;
  padding-bottom: 84px;
  overflow: hidden;
}

.product-value-wrap {
  width: min(var(--max), calc(100% - 96px));
  margin: 0 auto;
}

.product-value-map {
  width: 100%;
  margin: 0 auto;
}

.product-value-image {
  width: 100%;
  max-width: none;
  height: auto;
}

.product-applications,
.machinery-grid {
  margin-top: 84px;
}

.application-grid.lined-grid article {
  min-height: 279px;
  background: transparent;
  padding: 0 0 0 20px;
}

.application-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  object-fit: contain;
}

.application-grid.lined-grid h3 {
  margin-bottom: 58px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.35;
  font-weight: 500;
}

.application-grid.lined-grid p {
  max-width: 390px;
  font-size: 20px;
  line-height: 1.2;
}

.products-page .application-grid.lined-grid h3 {
  font-size: 20px;
}

.products-page .product-applications.application-grid.lined-grid h3 {
  margin-bottom: 76px;
}

.products-page .application-grid.lined-grid p {
  font-size: 18px;
}

.product-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 88px;
}

.product-spec-card {
  display: grid;
  grid-template-rows: auto 43px 97px 68px;
  min-width: 0;
  border: 1px solid #231f20;
  background: transparent;
}

.product-spec-image {
  width: 100%;
  aspect-ratio: 457 / 357;
  object-fit: cover;
}

.product-spec-card h3 {
  display: flex;
  align-items: center;
  margin: 0;
  border-top: 1px solid #231f20;
  border-bottom: 1px solid #231f20;
  padding: 0 12px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.25;
  font-weight: 500;
  text-transform: uppercase;
}

.product-spec-summary,
.product-spec-meta {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 22px;
  align-items: start;
  padding: 20px 12px 16px;
}

.product-spec-summary {
  border-bottom: 1px solid #231f20;
}

.product-spec-summary p,
.product-spec-meta p {
  margin: 0;
  color: var(--ink);
}

.product-spec-summary p:first-child {
  font-size: 14px;
  line-height: 20px;
}

.product-spec-summary p:last-child {
  font-size: 12px;
  line-height: 16px;
}

.product-spec-meta {
  grid-template-columns: 1fr 1.35fr;
  align-items: center;
  padding-top: 17px;
}

.product-spec-meta p {
  display: flex;
  align-items: baseline;
  gap: 13px;
  font-size: 12px;
  line-height: 20px;
}

.product-spec-card strong {
  color: var(--ink);
  font-weight: 600;
  text-transform: uppercase;
}

.product-spec-summary strong {
  font-weight: 500;
  text-transform: none;
}

.stacked-details {
  display: grid;
  gap: 76px;
}

.consultancy-block {
  margin-top: 96px;
}

.consultancy-block h2 {
  font-size: 22px;
  line-height: 26px;
}

.consultancy-block .hero-cta {
  margin-top: 240px;
}

.consultancy-copy {
  padding-top: 39px;
}

.consultancy-copy p {
  margin: 0;
}

.consultancy-copy p + p {
  margin-top: 30px;
}

.consultancy-copy strong {
  font-weight: 500;
}

.compact-band {
  padding: 96px 0;
}

.contact-main {
  padding-bottom: 194px;
}

.contact-main .contact-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 595px);
  gap: 140px;
}

.contact-main .contact-points {
  gap: 45px;
  margin-top: 180px;
}

.contact-main .contact-points h2 {
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 20px;
  line-height: 1.4;
  text-transform: none;
}

.contact-main .contact-points p {
  max-width: 560px;
  color: var(--ink);
  font-size: 16px;
}

.contact-main .contact-form {
  gap: 28px;
  padding: 48px;
  border: 0;
  background: #ededed;
}

.contact-main .contact-form label {
  gap: 14px;
  font-size: 16px;
  letter-spacing: 0.04em;
}

.contact-main .contact-form input,
.contact-main .contact-form textarea {
  border: 0;
  background: #fff;
  min-height: 58px;
}

.contact-main .contact-form textarea {
  min-height: 190px;
}

.contact-main .button {
  min-height: 56px;
  background: #231f20;
  padding: 0 24px;
}

@media (max-width: 1100px) {
  .figma-split,
  .contact-main .contact-grid {
    gap: 72px;
  }

  .solution-grid,
  .product-card-grid {
    gap: 28px;
  }
}

@media (max-width: 860px) {
  .container,
  .nav-shell {
    width: min(100% - 48px, var(--max));
  }

  .figma-page .figma-section,
  .contact-main,
  .compact-band {
    padding: 64px 0;
  }

  .figma-split,
  .contact-main .contact-grid,
  .solution-grid,
  .product-card-grid {
    grid-template-columns: 1fr;
  }

  .products-list .figma-split > p {
    padding-top: 0;
  }

  .consultancy-copy {
    padding-top: 0;
  }

  .consultancy-block .hero-cta {
    margin-top: 32px;
  }

  .page-media-hero {
    height: 56vw;
    min-height: 300px;
    max-height: 560px;
  }

  .wide-image-band {
    height: 300px;
  }

  .figma-page h1 {
    margin-bottom: 30px;
    font-size: 38px;
    line-height: 1.16;
  }

  .figma-page h2 {
    font-size: 25px;
  }

  .figma-page .lead,
  .figma-page .rich-copy,
  .figma-page .figma-split > p,
  .figma-page .emery-copy p,
  .figma-page .figma-split > div > p:not(.eyebrow):not(.statement),
  .lined-grid p {
    font-size: 16px;
  }

  .about-intro {
    min-height: 0;
  }

  .about-intro .statement {
    margin: 0 0 34px;
  }

  .about-values {
    margin-top: 0;
  }

  .figma-page .about-values {
    padding: 64px 0;
  }

  .about-values .section-split-heading {
    grid-template-columns: 1fr;
    gap: 38px;
    margin-bottom: 48px;
  }

  .about-values .section-split-heading > p {
    margin-top: 0;
    padding-top: 0;
    font-size: 16px;
    line-height: 1.5;
  }

  .products-page #solutions .structure-copy {
    padding-top: 0;
  }

  .about-values .value-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .about-values .lined-grid h3 {
    margin-bottom: 24px;
  }

  .lined-grid h3,
  .solution-grid .numbered-item h2,
  .approach-grid.compact .numbered-item h2 {
    margin-bottom: 24px;
  }

  .products-flow {
    padding: 12px 0 56px;
  }

  .product-value-map {
    width: 100%;
  }

  .product-value-wrap {
    width: min(100% - 40px, var(--max));
  }

  .partnerships-page .figma-section {
    padding: 48px 0;
  }

  .partnerships-page .figma-section:first-of-type {
    padding-bottom: 36px;
  }

  .partnerships-page .figma-section:first-of-type + .figma-section {
    padding-top: 36px;
  }

  .partnership-intro .figma-split,
  .partnership-model .figma-split {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .partnership-intro h1 {
    margin-bottom: 30px;
    font-size: 38px;
    line-height: 1.16;
  }

  .partnership-intro .lead {
    font-size: 16px;
    line-height: 1.5;
  }

  .partnership-intro .hero-cta {
    margin-top: 18px;
  }

  .partnerships-page .split-media {
    margin-top: 0;
    aspect-ratio: 16 / 7;
  }

  .partnerships-page .value-grid {
    gap: 38px;
  }

  .partnerships-page .framework-grid {
    margin-top: 32px;
  }

  .partnership-model .figma-split > div:last-child {
    padding-top: 0;
  }

  .partnerships-page .lined-grid article {
    padding-left: 18px;
  }

  .partnerships-page .lined-grid h3 {
    margin-bottom: 24px;
    font-size: 28px;
    line-height: 1.08;
  }

  .partnerships-page .lined-grid p {
    font-size: 18px;
    line-height: 1.28;
  }

  .partnerships-page h2 {
    max-width: 100%;
    font-size: 30px;
    line-height: 1.16;
  }

  .contact-main .contact-points {
    margin-top: 56px;
  }

  .contact-main .contact-form {
    padding: 28px 22px;
  }
}

@media (max-width: 520px) {
  .container,
  .nav-shell {
    width: min(100% - 40px, var(--max));
  }
}

/* Homepage spacing corrections: keep these after shared rules for specificity. */
.home-page .home-intro {
  padding: 100px 0 114px;
}

.home-page .approach-section {
  padding: 0 0 210px;
}

.home-page .value-chain-section {
  padding: 0 0 260px;
}

.home-page .business-section {
  padding: 142px 0 135px;
}

@media (max-width: 860px) {
  .home-page .home-intro,
  .home-page .approach-section,
  .home-page .value-chain-section,
  .home-page .business-section {
    padding: 64px 0;
  }

  .home-page .value-chain-section {
    padding: 64px 0 48px;
  }

  .home-page .value-chain-section .section-split-heading {
    margin-bottom: 128px;
  }

  .home-page .value-chain-section .section-split-heading > h2 {
    display: none;
  }

  .home-page .value-chain-section .section-split-heading > div {
    max-width: none;
  }

  .home-page .value-chain-section .section-split-heading p {
    max-width: none;
    font-size: 26px;
    line-height: 1.4;
    letter-spacing: 0;
  }

  .home-page .value-chain-section .hero-cta {
    margin-top: 28px;
  }

  .home-page .home-value-map {
    width: min(100%, 306px);
    margin: 0 auto;
    overflow: visible;
  }

  .home-page .home-value-map img {
    display: block;
    width: 100%;
  }
}

@media (max-width: 520px) {
  .home-page .value-chain-section .section-split-heading {
    margin-bottom: 118px;
  }

  .home-page .value-chain-section .section-split-heading p {
    font-size: 24px;
    line-height: 1.42;
  }
}
