:root {
  --ink: #071922;
  --ink-soft: #102b35;
  --sea: #0a3543;
  --foam: #eaf3f1;
  --paper: #f3f1ea;
  --white: #fbfcf8;
  --gold: #d6af54;
  --gold-light: #f0d486;
  --line: rgba(7, 25, 34, 0.16);
  --shell: min(1280px, calc(100vw - 96px));
  --header-h: 94px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

::selection { color: var(--ink); background: var(--gold-light); }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; }

.shell { width: var(--shell); margin-inline: auto; }

.noise {
  position: fixed;
  z-index: 99;
  inset: 0;
  pointer-events: none;
  opacity: 0.027;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  z-index: 90;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: height 0.4s var(--ease), background 0.4s, color 0.4s, border-color 0.4s;
}

.site-header.is-scrolled {
  height: 76px;
  color: var(--ink);
  background: rgba(243, 241, 234, 0.9);
  border-color: rgba(7, 25, 34, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  position: relative;
  width: 152px;
  height: 66px;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}
.brand-mark {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  object-fit: contain;
  filter: drop-shadow(0 5px 14px rgba(0,0,0,.25));
}
.brand-wordmark {
  display: flex;
  flex-direction: column;
  color: var(--white);
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: .88;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0,0,0,.32);
  transition: color .3s ease, text-shadow .3s ease;
}
.site-header.is-scrolled .brand-wordmark {
  color: #28438f;
  text-shadow: none;
}

.desktop-nav { display: flex; align-items: center; gap: 36px; }
.desktop-nav a {
  position: relative;
  padding: 9px 0;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}
.desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.header-cta { justify-self: end; display: flex; align-items: center; gap: 14px; font-size: 0.78rem; font-weight: 700; }
.header-cta svg { width: 29px; height: 29px; padding: 7px; border: 1px solid currentColor; border-radius: 50%; fill: none; stroke: currentColor; transition: transform 0.3s var(--ease), background 0.3s; }
.header-cta:hover svg { transform: translateX(4px); background: rgba(214, 175, 84, 0.22); }

.menu-toggle { display: none; justify-self: end; width: 46px; height: 46px; padding: 0; border: 1px solid currentColor; border-radius: 50%; background: none; color: inherit; }
.menu-toggle span { display: block; width: 17px; height: 1px; margin: 5px auto; background: currentColor; transition: transform 0.3s, opacity 0.3s; }
body.menu-open .menu-toggle span:first-child { transform: translateY(3px) rotate(45deg); }
body.menu-open .menu-toggle span:last-child { transform: translateY(-3px) rotate(-45deg); }

.mobile-menu { position: fixed; z-index: 80; inset: 0; display: none; padding: 130px 28px 40px; color: var(--white); background: var(--ink); transform: translateY(-100%); transition: transform 0.6s var(--ease); }
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu nav { display: flex; flex-direction: column; }
.mobile-menu nav a { display: flex; justify-content: space-between; align-items: baseline; padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.14); font-family: "Sora", sans-serif; font-size: clamp(2rem, 9vw, 4rem); line-height: 1.1; }
.mobile-menu nav span { font-family: "Manrope", sans-serif; color: var(--gold); font-size: 0.68rem; letter-spacing: .12em; }
.mobile-menu > p { margin-top: auto; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .18em; font-size: .7rem; }

.hero {
  position: relative;
  min-height: 760px;
  height: 100svh;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-photo {
  position: absolute;
  inset: 0;
  background: linear-gradient(118deg, rgba(2,15,22,.92) 0%, rgba(2,15,22,.62) 44%, rgba(2,15,22,.15) 82%), url("assets/images/operations.jpeg") center 42% / cover no-repeat;
  transform: scale(1.035);
  animation: heroBreath 18s ease-in-out infinite alternate;
}

@keyframes heroBreath { to { transform: scale(1.1) translate3d(-1.2%, -0.5%, 0); } }

.ocean-canvas {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 25%;
  opacity: 0.32;
  mix-blend-mode: screen;
  filter: saturate(.86) contrast(1.04);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.3) 28%, #000 62%);
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.3) 28%, #000 62%);
}

.hero-vignette { position: absolute; z-index: 1; inset: 0; background: linear-gradient(180deg, rgba(3,18,26,.22) 0%, transparent 44%, rgba(3,18,26,.42) 100%), radial-gradient(circle at 68% 46%, transparent 0%, rgba(3,18,26,.2) 62%, rgba(3,18,26,.42) 100%); }

.hero-content { position: relative; z-index: 3; height: 100%; padding-top: calc(var(--header-h) + 9vh); display: flex; flex-direction: column; }

.hero-kicker { display: flex; align-items: center; gap: 12px; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.19em; text-transform: uppercase; }
.pulse { position: relative; width: 7px; height: 7px; border-radius: 50%; background: var(--gold-light); box-shadow: 0 0 0 5px rgba(240,212,134,.12); }
.pulse::after { content: ""; position: absolute; inset: -6px; border: 1px solid var(--gold); border-radius: 50%; animation: ping 2.5s ease-out infinite; }
@keyframes ping { 0% { transform: scale(.4); opacity: 0; } 20% { opacity: .65; } 100% { transform: scale(1.4); opacity: 0; } }

.hero h1 { margin: 5vh 0 0; max-width: 880px; font-family: "Sora", "Segoe UI", sans-serif; font-size: clamp(5rem, 10.2vw, 10.8rem); font-weight: 400; letter-spacing: -0.065em; line-height: 0.79; }
.hero-line-accent { color: var(--gold-light); font-style: italic; font-weight: 400; }

.hero-bottom { margin-top: auto; padding: 0 0 7vh; display: grid; grid-template-columns: minmax(260px, 430px) 1fr auto; align-items: end; gap: 60px; }
.hero-intro { margin: 0; max-width: 410px; color: rgba(255,255,255,.76); font-size: clamp(.98rem, 1.25vw, 1.17rem); line-height: 1.75; }
.circle-link { justify-self: center; display: flex; width: 112px; height: 112px; flex-direction: column; justify-content: center; align-items: center; gap: 11px; border: 1px solid rgba(255,255,255,.54); border-radius: 50%; font-size: .66rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; transition: color .4s, background .4s, border-color .4s, transform .4s var(--ease); }
.circle-link svg { width: 21px; fill: none; stroke: currentColor; stroke-width: 1.4; }
.circle-link:hover { color: var(--ink); background: var(--gold-light); border-color: var(--gold-light); transform: translateY(5px); }

.hero-stat { display: flex; align-items: center; gap: 15px; min-width: 190px; padding-left: 25px; border-left: 1px solid rgba(255,255,255,.35); }
.stat-value { font-family: "Sora", sans-serif; font-size: 2.3rem; line-height: 1; }
.stat-label { color: rgba(255,255,255,.64); font-size: .66rem; letter-spacing: .1em; line-height: 1.5; text-transform: uppercase; }
.hero-side-label { position: absolute; z-index: 3; right: 18px; top: 50%; color: rgba(255,255,255,.5); font-size: .58rem; letter-spacing: .28em; writing-mode: vertical-rl; transform: translateY(-50%); }

.section { padding: 150px 0; }
.section-label { display: flex; align-items: center; gap: 16px; padding-bottom: 24px; border-bottom: 1px solid var(--line); color: rgba(7,25,34,.56); font-size: .66rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.section-label span { color: var(--gold); }
.section-label.light { color: rgba(255,255,255,.5); border-color: rgba(255,255,255,.14); }

.eyebrow { margin: 0 0 20px; color: rgba(7,25,34,.5); font-size: .67rem; font-weight: 700; letter-spacing: .19em; text-transform: uppercase; }
.eyebrow.gold { color: var(--gold-light); }

.intro-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 11vw; padding: 95px 0 110px; }
.intro-heading h2, .value-header h2, .expertise-header h2, .contact-inner h2 { margin: 0; font-family: "Sora", sans-serif; font-size: clamp(3.1rem, 6vw, 6rem); font-weight: 400; letter-spacing: -.055em; line-height: .98; }
.intro-heading h2 em, .value-header h2 em, .contact-inner h2 em { color: var(--gold); font-family: Georgia, serif; font-weight: 400; }
.intro-copy { padding-top: 48px; }
.intro-copy p { color: rgba(7,25,34,.63); font-size: .98rem; }
.intro-copy .lead { margin-top: 0; color: var(--ink); font-size: clamp(1.25rem, 1.9vw, 1.65rem); line-height: 1.55; }
.text-link { display: inline-flex; gap: 32px; align-items: center; margin-top: 22px; padding-bottom: 7px; border-bottom: 1px solid var(--ink); font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.text-link span { transition: transform .3s var(--ease); }
.text-link:hover span { transform: translate(4px, -4px); }

.story-visual { position: relative; }
.story-image-wrap { height: min(55vw, 650px); overflow: hidden; }
.story-image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center 58%; transition: transform 1.2s var(--ease); }
.story-visual:hover img { transform: scale(1.025); }
.story-stamp { position: absolute; top: -67px; right: 7%; width: 134px; height: 134px; display: grid; place-items: center; color: var(--paper); background: var(--ink); border-radius: 50%; }
.story-stamp svg { position: absolute; inset: 8px; width: calc(100% - 16px); height: calc(100% - 16px); animation: rotate 22s linear infinite; }
.story-stamp text { fill: rgba(255,255,255,.7); font-family: "Manrope", sans-serif; font-size: 8px; letter-spacing: 1.45px; }
.story-stamp span { color: var(--gold-light); font-family: "Sora", sans-serif; font-size: 1.8rem; }
@keyframes rotate { to { transform: rotate(360deg); } }
.story-caption { position: absolute; right: 0; bottom: 0; display: flex; align-items: center; gap: 15px; padding: 18px 24px; color: var(--white); background: rgba(7,25,34,.9); backdrop-filter: blur(10px); font-size: .6rem; letter-spacing: .14em; text-transform: uppercase; }
.story-caption i { width: 42px; height: 1px; background: var(--gold); }

.expertise-section { color: var(--white); background: var(--ink); }
.expertise-header { display: grid; grid-template-columns: 1.1fr .9fr; align-items: end; gap: 11vw; padding: 95px 0 105px; }
.expertise-header h2 { color: var(--white); }
.expertise-lead { max-width: 420px; margin: 0 0 8px; color: rgba(255,255,255,.56); font-size: 1.12rem; }
.principles { border-top: 1px solid rgba(255,255,255,.14); }
.principle { position: relative; display: grid; grid-template-columns: 90px 1fr auto; gap: 34px; align-items: start; padding: 48px 0; border-bottom: 1px solid rgba(255,255,255,.14); overflow: hidden; }
.principle::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(38,113,131,.12), transparent); transform: translateX(-110%); transition: transform .8s var(--ease); }
.principle:hover::before { transform: translateX(110%); }
.principle-number { padding-top: 8px; color: var(--gold-light); font-size: .64rem; letter-spacing: .14em; }
.principle h3 { margin: 0 0 11px; font-family: "Sora", sans-serif; font-size: clamp(1.7rem, 3vw, 2.8rem); font-weight: 400; letter-spacing: -.035em; }
.principle p { max-width: 690px; margin: 0; color: rgba(255,255,255,.53); }
.principle-icon { width: 72px; height: 72px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; transition: color .4s, border-color .4s, transform .5s var(--ease); }
.principle-icon svg { width: 37px; fill: none; stroke: currentColor; stroke-width: 1.15; }
.principle:hover .principle-icon { color: var(--gold-light); border-color: var(--gold); transform: rotate(8deg); }

.value-section { background: var(--paper); }
.value-header { display: grid; grid-template-columns: 1.2fr .6fr; align-items: end; gap: 9vw; padding: 95px 0 90px; }
.value-header > p { max-width: 380px; margin: 0 0 8px; color: rgba(7,25,34,.58); }
.company-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 410px; gap: 2px; background: rgba(7,25,34,.15); }
.company-card { position: relative; min-width: 0; overflow: hidden; color: var(--white); background: var(--ink); }
.company-card--feature { grid-column: span 2; }
.company-card img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.68) contrast(1.06); transition: transform .9s var(--ease), filter .7s; }
.company-card--feature img { object-position: center; }
.company-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(4,17,23,.18) 20%, rgba(4,17,23,.9) 100%), linear-gradient(90deg, rgba(4,17,23,.28), transparent); }
.company-index { position: absolute; top: 25px; right: 25px; width: 35px; height: 35px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; font-size: .58rem; letter-spacing: .08em; }
.company-content { position: absolute; left: 30px; right: 30px; bottom: 30px; transition: transform .5s var(--ease); }
.company-content span { display: block; margin-bottom: 10px; color: var(--gold-light); font-size: .61rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.company-content h3 { margin: 0; font-family: "Sora", sans-serif; font-size: clamp(1.32rem, 2.2vw, 2.25rem); font-weight: 400; letter-spacing: -.03em; line-height: 1.12; }
.company-detail { position: absolute; left: 30px; right: 55px; bottom: 24px; margin: 0; color: rgba(255,255,255,.64); font-size: .78rem; transform: translateY(125%); opacity: 0; transition: transform .5s var(--ease), opacity .4s; }
.company-card:hover img { transform: scale(1.065); filter: saturate(.9) contrast(1.08); }
.company-card:hover .company-content { transform: translateY(-78px); }
.company-card--feature:hover .company-content { transform: translateY(-68px); }
.company-card:hover .company-detail { transform: translateY(0); opacity: 1; }
.company-card--feature .company-content p { max-width: 460px; margin: 18px 0 0; color: rgba(255,255,255,.62); font-size: .83rem; }

.numbers-section { position: relative; min-height: 730px; padding: 130px 0; display: flex; align-items: center; overflow: hidden; color: var(--white); background: var(--sea); }
.numbers-bg { position: absolute; inset: -10%; background: linear-gradient(90deg, rgba(4,21,28,.95), rgba(4,21,28,.48)), url("assets/images/trans-energy.jpeg") center / cover no-repeat; filter: saturate(.6); }
.numbers-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,25,34,.82), transparent 55%); }
.numbers-inner { position: relative; z-index: 1; }
.numbers-quote { max-width: 940px; margin: 85px 0 90px; font-family: "Sora", sans-serif; font-size: clamp(2.25rem, 4.7vw, 5rem); font-weight: 400; letter-spacing: -.05em; line-height: 1.12; }
.numbers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; border-top: 1px solid rgba(255,255,255,.2); }
.number-item { padding: 35px 35px 0 0; display: grid; grid-template-columns: auto 1fr; align-items: end; gap: 2px 20px; }
.number-item + .number-item { padding-left: 35px; border-left: 1px solid rgba(255,255,255,.2); }
.number-item strong { font-family: "Sora", sans-serif; font-size: clamp(3.1rem, 6vw, 6rem); font-weight: 400; line-height: .85; letter-spacing: -.07em; }
.number-item sup { align-self: start; color: var(--gold-light); font-size: 1.3rem; }
.number-item span { grid-column: 2; align-self: center; color: rgba(255,255,255,.58); font-size: .64rem; letter-spacing: .12em; line-height: 1.6; text-transform: uppercase; }
.number-item:not(:has(sup)) span { grid-column: 2; }

.contact-section { position: relative; overflow: hidden; padding: 145px 0 110px; background: var(--gold-light); }
.contact-inner { position: relative; z-index: 1; text-align: center; }
.contact-inner .section-label { text-align: left; }
.contact-inner > .eyebrow { margin-top: 95px; }
.contact-inner h2 { font-size: clamp(4.4rem, 10vw, 10rem); line-height: .82; }
.contact-inner h2 em { color: rgba(7,25,34,.82); }
.contact-button { width: min(620px, 100%); margin: 75px auto 95px; padding: 22px 8px 22px 28px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--ink); text-align: left; font-size: clamp(.88rem, 1.35vw, 1.15rem); }
.contact-button svg { width: 52px; height: 52px; padding: 14px; fill: none; stroke: currentColor; stroke-width: 1.15; border: 1px solid currentColor; border-radius: 50%; transition: color .35s, background .35s, transform .35s var(--ease); }
.contact-button:hover svg { color: var(--gold-light); background: var(--ink); transform: rotate(45deg); }
.contact-meta { display: grid; grid-template-columns: repeat(2, minmax(220px, 320px)); justify-content: center; gap: 100px; text-align: left; }
.contact-meta > div { padding-top: 18px; border-top: 1px solid rgba(7,25,34,.35); }
.contact-meta span { display: block; margin-bottom: 13px; font-size: .62rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.contact-meta p { margin: 0; color: rgba(7,25,34,.67); font-size: .83rem; line-height: 1.75; }
.contact-orbit { position: absolute; border: 1px solid rgba(7,25,34,.12); border-radius: 50%; }
.orbit-one { width: 680px; height: 680px; top: 20%; left: -340px; }
.orbit-two { width: 940px; height: 940px; right: -520px; bottom: -520px; }

footer { color: rgba(255,255,255,.55); background: var(--ink); }
.footer-inner { min-height: 170px; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 30px; font-size: .66rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-inner > p { justify-self: start; color: var(--gold-light); }
.footer-inner > div { justify-self: end; display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
.footer-inner a:hover { color: var(--white); }

.reveal { opacity: 0; transform: translateY(35px); transition: opacity .9s var(--ease), transform .9s var(--ease); transition-delay: calc(var(--delay, 0) * 100ms); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
[data-delay="1"] { --delay: 1; }
[data-delay="2"] { --delay: 2; }
[data-delay="3"] { --delay: 3; }
[data-delay="4"] { --delay: 4; }

@media (max-width: 980px) {
  :root { --shell: min(100% - 48px, 760px); --header-h: 80px; }
  .site-header { padding: 0 24px; grid-template-columns: 1fr auto; }
  .desktop-nav, .header-cta { display: none; }
  .menu-toggle, .mobile-menu { display: flex; }
  .mobile-menu { flex-direction: column; }
  .site-header.is-scrolled.menu-state { color: var(--white); background: transparent; border-color: rgba(255,255,255,.15); }
  .hero { min-height: 720px; }
  .hero-content { padding-top: calc(var(--header-h) + 10vh); }
  .hero h1 { font-size: clamp(5rem, 15vw, 8.5rem); }
  .hero-bottom { grid-template-columns: 1fr auto; gap: 30px; }
  .circle-link { display: none; }
  .section { padding: 110px 0; }
  .intro-grid, .expertise-header, .value-header { grid-template-columns: 1fr; gap: 45px; padding: 70px 0 80px; }
  .intro-copy { padding-top: 0; max-width: 610px; }
  .company-grid { grid-template-columns: repeat(2, 1fr); }
  .company-card--feature { grid-column: span 2; }
  .numbers-section { min-height: auto; padding: 110px 0; }
  .numbers-grid { grid-template-columns: 1fr; }
  .number-item, .number-item + .number-item { padding: 28px 0; border-left: 0; border-bottom: 1px solid rgba(255,255,255,.2); }
  .number-item { grid-template-columns: auto auto 1fr; }
  .number-item span, .number-item:not(:has(sup)) span { grid-column: 3; }
  .contact-inner > .eyebrow { margin-top: 70px; }
  .footer-inner { grid-template-columns: 1fr 1fr; padding: 40px 0; }
  .footer-inner > p { justify-self: start; }
  .footer-inner > div { grid-column: 1 / -1; justify-self: stretch; flex-direction: row; justify-content: space-between; align-items: center; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.12); }
}

@media (max-width: 640px) {
  :root { --shell: calc(100% - 36px); --header-h: 72px; }
  .site-header { padding: 0 18px; }
  .brand { width: 138px; height: 59px; padding: 0; gap: 7px; }
  .brand-mark { width: 43px; height: 43px; flex-basis: 43px; }
  .brand-wordmark { font-size: .91rem; }
  .hero { min-height: 690px; }
  .hero-photo { background-position: 62% 50%; }
  .hero-content { padding-top: calc(var(--header-h) + 11vh); }
  .hero-kicker { max-width: 270px; line-height: 1.5; }
  .hero h1 { margin-top: 5vh; font-size: clamp(4.15rem, 20vw, 6.5rem); line-height: .84; }
  .hero-bottom { grid-template-columns: 1fr; padding-bottom: 35px; }
  .hero-intro { max-width: 320px; font-size: .89rem; }
  .hero-stat { display: none; }
  .hero-side-label { display: none; }
  .ocean-canvas { height: 21%; }
  .section { padding: 85px 0; }
  .section-label { padding-bottom: 18px; }
  .intro-grid, .expertise-header, .value-header { padding: 55px 0 65px; gap: 36px; }
  .intro-heading h2, .value-header h2, .expertise-header h2 { font-size: clamp(2.7rem, 13vw, 4.2rem); }
  .intro-copy .lead { font-size: 1.15rem; }
  .story-image-wrap { height: 112vw; max-height: 610px; }
  .story-image-wrap img { object-position: 43% center; }
  .story-stamp { top: -45px; right: 18px; width: 98px; height: 98px; }
  .story-stamp span { font-size: 1.25rem; }
  .story-caption { display: none; }
  .principle { grid-template-columns: 42px 1fr; gap: 15px; padding: 34px 0; }
  .principle-icon { display: none; }
  .principle p { font-size: .87rem; }
  .company-grid { grid-template-columns: 1fr; grid-auto-rows: 390px; gap: 1px; }
  .company-card--feature { grid-column: auto; }
  .company-card--feature .company-content p { display: none; }
  .company-card--feature:hover .company-content { transform: translateY(-50px); }
  .company-card:hover .company-content { transform: translateY(-64px); }
  .numbers-quote { margin: 60px 0 70px; }
  .number-item strong { font-size: 3.4rem; }
  .number-item span { font-size: .58rem; }
  .contact-section { padding: 95px 0 75px; }
  .contact-inner > .eyebrow { margin-top: 55px; }
  .contact-inner h2 { font-size: clamp(4rem, 21vw, 6.5rem); }
  .contact-button { margin: 55px auto 70px; padding-left: 0; }
  .contact-button svg { width: 45px; height: 45px; }
  .contact-meta { grid-template-columns: 1fr; gap: 35px; }
  .footer-inner { grid-template-columns: 1fr; gap: 20px; text-align: left; }
  .footer-inner > p { justify-self: start; }
  .footer-inner > div { grid-column: auto; flex-direction: column; align-items: flex-start; gap: 8px; }
}

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