@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --ink: #090c0b;
  --ink-2: #111715;
  --ink-3: #1a2420;
  --paper: #f3f0e7;
  --paper-2: #e9e4d8;
  --white: #fffdf8;
  --orange: #f05a1a;
  --amber: #f6b83f;
  --green: #0b6048;
  --green-2: #123d32;
  --acid: #c9d86a;
  --muted: #8c958f;
  --line-dark: rgba(9, 12, 11, 0.14);
  --line-light: rgba(255, 255, 255, 0.16);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --pad: clamp(20px, 6vw, 92px);
  --section: clamp(56px, 6vw, 92px);
  --shadow: 0 32px 90px rgba(8, 13, 11, 0.2);
  font-family: "DM Sans", "Segoe UI", sans-serif;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--white);
  font-size: 16px;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: 0.04;
  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='.5'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

img,
video {
  display: block;
  width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

p {
  margin: 0;
  line-height: 1.75;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  letter-spacing: -0.055em;
}

h1 {
  font-size: clamp(2.4rem, 5.2vw, 5.4rem);
  font-weight: 600;
  line-height: 1;
}

h2 {
  font-size: clamp(1.75rem, 3.6vw, 3.8rem);
  font-weight: 600;
  line-height: 1.08;
}

h3 {
  font-size: clamp(1.05rem, 1.45vw, 1.45rem);
  line-height: 1.2;
}

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

.transition-screen {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  overflow: hidden;
  pointer-events: none;
background: #d8c4a5;
  transform: translateY(100%);
}

.transition-screen::before {
  content: "";
  position: absolute;
  width: 44vmax;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
}

.transition-screen span {
  position: relative;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 8vw, 8rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  color: var(--ink);
}

body.is-entering .transition-screen {
  animation: page-in 1s var(--ease) forwards;
}

body.is-leaving .transition-screen {
  pointer-events: all;
  animation: page-out 0.68s var(--ease) forwards;
}

#fx-canvas {
  position: fixed;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.58;
}

body[data-page="home"] {
  background: var(--white);
  color: var(--ink);
  color-scheme: light;
}

body[data-page="home"] #fx-canvas {
  display: none;
}

.nav-shell {
  position: fixed;
  top: 16px;
  left: var(--pad);
  right: var(--pad);
  z-index: 100;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px 0 18px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(9, 12, 11, 0.45);
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(22px);
  transition:
    top 0.35s var(--ease),
    background 0.35s,
    border-color 0.35s;
}

.nav-shell.scrolled {
  top: 8px;
  background: rgba(9, 12, 11, 0.9);
  border-color: rgba(255, 255, 255, 0.2);
}

body[data-page="home"] .nav-shell {
  color: var(--ink);
  border-color: rgba(240, 90, 26, 0.16);
  background: rgba(255, 253, 248, 0.82);
  box-shadow: 0 18px 55px rgba(79, 45, 25, 0.1);
}

body[data-page="home"] .nav-shell.scrolled {
  background: rgba(255, 253, 248, 0.96);
  border-color: rgba(240, 90, 26, 0.24);
}

.brand {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  height: 45px;
  min-width: 112px;
}

.brand-logo {
  width: auto;
  height: 43px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 30px);
}

.nav-links a {
  position: relative;
  padding: 8px 0;
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.25s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

body[data-page="home"] .nav-links a {
  color: rgba(9, 12, 11, 0.62);
}

body[data-page="home"] .nav-links a:hover,
body[data-page="home"] .nav-links a.active {
  color: var(--ink);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  position: relative;
  z-index: 3;
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.nav-toggle span {
  position: absolute;
  left: 12px;
  width: 20px;
  height: 1px;
  background: currentColor;
  transition: transform 0.35s var(--ease);
}

.nav-toggle span:first-child {
  transform: translateY(-4px);
}

.nav-toggle span:last-child {
  transform: translateY(4px);
}

.menu-open .nav-toggle span:first-child {
  transform: rotate(45deg);
}

.menu-open .nav-toggle span:last-child {
  transform: rotate(-45deg);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--amber);
}

.kicker::before {
  content: "";
  width: 38px;
  height: 1px;
  background: currentColor;
}

.kicker.dark {
  color: var(--green);
}

.button,
.contact-soft-button,
.catalog-link,
.contact-submit-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 58px;
  padding: 0 27px;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s,
    color 0.35s,
    background 0.35s;
}

.button::after,
.contact-submit-btn::after {
  content: "↗";
  font-size: 1rem;
  transition: transform 0.35s var(--ease);
}

.button:hover,
.contact-soft-button:hover,
.catalog-link:hover,
.contact-submit-btn:hover {
  transform: translateY(-4px);
}

.button:hover::after,
.contact-submit-btn:hover::after {
  transform: translate(3px, -3px);
}

.primary,
.contact-submit-btn {
  color: var(--ink);
  background: linear-gradient(115deg, var(--amber), var(--orange));
  box-shadow: 0 16px 38px rgba(240, 90, 26, 0.25);
}

.ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

body[data-page="home"] .ghost {
  color: var(--ink);
  border-color: rgba(240, 90, 26, 0.34);
  background: rgba(255, 255, 255, 0.68);
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 52px, 0);
  transition:
    opacity 0.9s var(--ease) var(--delay, 0ms),
    transform 0.9s var(--ease) var(--delay, 0ms),
    clip-path 1.1s var(--ease) var(--delay, 0ms);
  will-change: opacity, transform;
}

.reveal.from-left {
  transform: translate3d(-70px, 0, 0);
}

.reveal.from-right {
  transform: translate3d(70px, 0, 0);
}

.reveal.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.hero-char {
  display: inline-block;
  min-width: 0.04em;
  opacity: 0;
  transform: translate3d(var(--char-x), var(--char-y), 0) rotate(var(--char-r));
  filter: blur(8px);
}

.hero-word {
  display: inline-block;
  white-space: nowrap;
}

.hero-space {
  display: inline-block;
  width: 0.24em;
}

body.is-ready .hero-char {
  animation: char-arrive 1.05s var(--ease) forwards;
  animation-delay: calc(180ms + var(--char-i) * 24ms);
}

body[data-page="home"].is-ready .hero-char {
  animation-duration: 2.25s;
  animation-delay: calc(320ms + var(--char-i) * 58ms);
}

body[data-page="home"] .reveal {
  transform: translate3d(0, 86px, 0);
  transition:
    opacity 1.55s var(--ease) var(--delay, 0ms),
    transform 1.55s var(--ease) var(--delay, 0ms),
    clip-path 1.75s var(--ease) var(--delay, 0ms);
}

body[data-page="home"] .reveal.from-left {
  transform: translate3d(-108px, 0, 0);
}

body[data-page="home"] .reveal.from-right {
  transform: translate3d(108px, 0, 0);
}

body[data-page="home"] .reveal.visible {
  transform: translate3d(0, 0, 0);
}

.split-line {
  display: block;
  overflow: hidden;
}

.split-line > span {
  display: block;
}

/* HOME — cinematic, asymmetric, motion-led */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 120px var(--pad) 72px;
  overflow: hidden;
  isolation: isolate;
  color: var(--ink);
  background:
    linear-gradient(118deg, #fffdf8 0%, #fffaf2 52%, #ffe9d6 100%);
}

.hero::before {
  content: none;
}

.hero-video {
  position: absolute;
  z-index: -3;
  top: 96px;
  right: var(--pad);
  width: min(52vw, 740px);
  height: calc(100% - 210px);
  object-fit: cover;
  object-position: 55% center;
  opacity: 0.92;
  filter: saturate(0.92) contrast(1.04) brightness(1.08);
  border: 1px solid rgba(240, 90, 26, 0.18);
  border-radius: 0 0 0 110px;
  box-shadow: 0 32px 100px rgba(126, 67, 28, 0.18);
  clip-path: polygon(16% 0, 100% 0, 100% 100%, 0 100%, 7% 64%, 0 40%);
  animation:
    hero-shape 2.8s var(--ease) both,
    hero-panel-drift 18s ease-in-out 2.8s infinite alternate;
}

.hero-noise {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.99) 0%, rgba(255, 253, 248, 0.94) 42%, rgba(255, 253, 248, 0.2) 76%),
    linear-gradient(0deg, rgba(255, 253, 248, 0.96), rgba(255, 253, 248, 0) 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(790px, 66vw);
}

.hero-content::before {
  content: none;
}

.hero .kicker {
  color: var(--orange);
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(2rem, 4.1vw, 4.4rem);
  line-height: 1.02;
  text-wrap: balance;
}

.hero-line {
  max-width: 620px;
  margin-top: 22px;
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.65;
  color: rgba(9, 12, 11, 0.68);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.ticker {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  gap: 0;
  overflow: hidden;
  border-top: 1px solid rgba(240, 90, 26, 0.18);
  background: rgba(255, 253, 248, 0.78);
  backdrop-filter: blur(12px);
}

.ticker-track {
  display: flex;
  flex: none;
  min-width: max-content;
  animation: marquee 54s linear infinite;
}

.ticker span {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 20px 25px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(9, 12, 11, 0.68);
}

.ticker span::after {
  content: "";
  width: 28px;
  height: 1px;
  background: rgba(240, 90, 26, 0.5);
}

.home-showcase {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(48px, 8vw, 130px);
  align-items: center;
  padding: var(--section) var(--pad);
  color: var(--ink);
  background: var(--paper);
}

.home-showcase::before {
  content: "OPERATIONS";
  position: absolute;
  top: 22px;
  right: -10px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(4rem, 13vw, 13rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.08em;
  color: rgba(9, 12, 11, 0.035);
}

.showcase-copy {
  position: sticky;
  top: 130px;
  align-self: start;
}

.showcase-copy h2 {
  font-size: clamp(1.55rem, 3vw, 3rem);
  line-height: 1.1;
}

.showcase-copy > p:not(.kicker) {
  max-width: 540px;
  margin-top: 26px;
  font-size: 1.03rem;
  color: #525a55;
}

.showcase-points {
  display: grid;
  margin-top: 44px;
  border-top: 1px solid var(--line-dark);
}

.showcase-points span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 0;
  border-bottom: 1px solid var(--line-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.showcase-points span::after {
  content: "↗";
  color: var(--orange);
}

.showcase-gallery {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  grid-template-rows: repeat(2, minmax(200px, 24vw));
  gap: 14px;
}

.image-frame {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  border-radius: 4px 70px 4px 4px;
  box-shadow: var(--shadow);
  background: var(--ink);
}

.image-frame:nth-child(2) {
  border-radius: 70px 4px 4px 4px;
}

.image-frame:nth-child(3) {
  border-radius: 4px 4px 70px 4px;
}

.image-frame.tall {
  grid-row: 1 / 3;
}

.image-frame img {
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease), filter 0.6s;
}

.image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(9, 12, 11, 0.8), transparent 55%);
}

.image-frame span {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: white;
}

.image-frame span::after {
  content: "↗";
  color: var(--amber);
}

.image-frame:hover img {
  transform: scale(1.06);
  filter: saturate(1.12);
}

.image-frame.visible,
.pathway-card.visible,
.council-card.visible,
.contact-bento-card.visible,
.stat-card.visible {
  transform: perspective(1100px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
}

.premium-stats {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(55px, 8vw, 140px);
  align-items: center;
  padding: var(--section) var(--pad);
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(135deg, #fffdf8 0%, #fff7ec 58%, #ffe2c9 100%);
}

.premium-stats::before {
  content: "";
  position: absolute;
  left: 46%;
  top: 50%;
  width: min(46vw, 680px);
  aspect-ratio: 1;
  border: 1px solid rgba(240, 90, 26, 0.14);
  transform: translate(-50%, -50%) rotate(45deg);
}

.stats-intro {
  position: relative;
  z-index: 2;
}

.premium-stats .kicker.dark,
.final-cta .kicker {
  color: var(--orange);
}

.stats-intro h2 {
  font-size: clamp(2rem, 3.8vw, 4rem);
  line-height: 1.08;
}

.stats-intro h2 span {
  display: block;
}

.stats-intro h2 span:nth-child(2) {
  color: var(--orange);
}

.stat-summary {
  max-width: 560px;
  margin-top: 28px;
  color: rgba(9, 12, 11, 0.64);
}

.stat-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  padding: 1px;
  background: rgba(240, 90, 26, 0.18);
  transform: rotate(-3deg);
}

.stat-card {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  background: rgba(255, 253, 248, 0.92);
  transform: none;
  box-shadow: 0 24px 70px rgba(126, 67, 28, 0.08);
}

.stat-card:nth-child(2),
.stat-card:nth-child(3) {
  background: #fff2e5;
}

.stat-card strong {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.6rem, 5vw, 5.7rem);
  font-weight: 500;
  letter-spacing: -0.08em;
  color: var(--orange);
}

.stat-card span {
  max-width: 150px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.5;
  text-transform: uppercase;
  color: rgba(9, 12, 11, 0.58);
}

.final-cta {
  position: relative;
  min-height: 58svh;
  display: grid;
  align-items: end;
  padding: var(--section) var(--pad);
  overflow: hidden;
  isolation: isolate;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.97) 0%, rgba(255, 253, 248, 0.9) 52%, rgba(255, 232, 210, 0.66) 100%),
    url("assets/images/truck3.jpg") center 48% / cover no-repeat;
}

.final-cta::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(240, 90, 26, 0.12), rgba(240, 90, 26, 0) 58%);
}

.band-copy {
  max-width: 800px;
}

.final-cta .band-copy {
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(240, 90, 26, 0.16);
  background: rgba(255, 253, 248, 0.72);
  box-shadow: 0 32px 100px rgba(126, 67, 28, 0.13);
  backdrop-filter: blur(14px);
}

.band-copy h2 span {
  display: block;
}

.cta-summary {
  max-width: 580px;
  margin-top: 26px;
  color: rgba(9, 12, 11, 0.68);
}

.band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

/* SERVICES — technical catalogue, precise grids */
body[data-page="services"] {
  background: var(--paper);
}

.service-catalog-hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  gap: clamp(40px, 7vw, 110px);
  align-items: center;
  padding: 115px var(--pad) 56px;
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(rgba(9, 12, 11, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9, 12, 11, 0.06) 1px, transparent 1px),
    var(--paper);
  background-size: 48px 48px;
}

.service-catalog-hero::after {
  position: absolute;
  left: var(--pad);
  bottom: 28px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(9, 12, 11, 0.45);
}

.catalog-copy {
  position: relative;
  z-index: 2;
}

.catalog-copy h1 {
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 1.04;
}

.catalog-copy h1 > span {
  display: block;
}

.catalog-copy > p:not(.kicker) {
  max-width: 580px;
  margin-top: 24px;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #515954;
}

.catalog-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 36px;
}

.catalog-link {
  min-height: 48px;
  padding: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
}

.services-photo-mosaic {
  position: relative;
  min-height: clamp(420px, 58svh, 520px);
}

.mosaic-tile {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.mosaic-tile img {
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.mosaic-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(9, 12, 11, 0.78), transparent 55%);
}

.mosaic-tile figcaption {
  position: absolute;
  z-index: 2;
  left: 22px;
  bottom: 20px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: white;
}

.mosaic-large {
  inset: 0 21% 8% 0;
  clip-path: polygon(0 0, 86% 0, 100% 14%, 100% 100%, 0 100%);
}

.mosaic-small.top {
  top: 4%;
  right: 0;
  width: 34%;
  height: 38%;
  clip-path: polygon(17% 0, 100% 0, 100% 100%, 0 100%, 0 17%);
}

.mosaic-small.bottom {
  right: 0;
  bottom: 0;
  width: 40%;
  height: 43%;
  clip-path: polygon(0 0, 100% 0, 100% 82%, 82% 100%, 0 100%);
}

.mosaic-service-count {
  position: absolute;
  z-index: 4;
  right: 24%;
  bottom: 0;
  width: 155px;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  padding: 20px;
  text-align: center;
  color: var(--white);
  background: var(--orange);
  transform: rotate(7deg);
}

.mosaic-service-count strong {
  font-family: "Manrope", sans-serif;
  font-size: 4rem;
  line-height: 0.9;
}

.mosaic-service-count span {
  margin-top: 8px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.service-pathway-section {
  position: relative;
  padding: var(--section) var(--pad);
  color: var(--white);
  background: var(--ink);
}

.service-pathway-section::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(255, 255, 255, 0.06);
}

.pathway-intro {
  max-width: 850px;
  margin-bottom: 75px;
}

.pathway-intro p:not(.kicker) {
  max-width: 620px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.58);
}

.service-pathway {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.pathway-card {
  position: relative;
  min-height: 390px;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  background: var(--ink-2);
}

.pathway-photo {
  min-height: 215px;
  margin: 0;
  overflow: hidden;
}

.pathway-photo img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.65);
  transition:
    transform 1s var(--ease),
    filter 0.5s;
}

.pathway-card > div:last-child {
  position: relative;
  z-index: 2;
  padding: 22px;
}

.pathway-card h3 {
  margin-bottom: 14px;
  font-size: clamp(1.3rem, 2.2vw, 2.2rem);
  line-height: 1.12;
}

.pathway-card p {
  max-width: 560px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.56);
}

.pathway-number {
  position: absolute;
  z-index: 3;
  top: 25px;
  left: 25px;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 800;
  background: var(--amber);
  color: var(--ink);
}

.pathway-card:hover .pathway-photo img {
  transform: scale(1.055);
  filter: saturate(1);
}

.service-request-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(45px, 8vw, 130px);
  align-items: center;
  padding: var(--section) var(--pad);
  color: var(--ink);
  background: var(--amber);
}

.request-note h2 {
  font-size: clamp(1.8rem, 3.5vw, 3.8rem);
  line-height: 1.08;
}

.request-note p:not(.kicker) {
  margin-top: 24px;
  color: rgba(9, 12, 11, 0.68);
}

.request-card {
  position: relative;
  min-height: 340px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: white;
  clip-path: polygon(0 0, 92% 0, 100% 12%, 100% 100%, 0 100%);
}

.request-card img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.request-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(9, 12, 11, 0.92), transparent 68%);
}

.request-card > div {
  position: relative;
  z-index: 2;
  padding: 26px;
}

.request-card span {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
}

.request-card strong {
  display: block;
  margin: 7px 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.35rem, 2.4vw, 2.5rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.request-card p {
  color: rgba(255, 255, 255, 0.65);
}

/* ABOUT — warm editorial, layered identity */
body[data-page="about"] {
  color: var(--ink);
  background: var(--paper);
}

.about-identity-hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(50px, 8vw, 130px);
  align-items: center;
  padding: 115px var(--pad) 56px;
  overflow: hidden;
  background: var(--paper);
}

.about-identity-hero::before {
  content: "J";
  position: absolute;
  left: -2vw;
  bottom: -16vw;
  font-family: Georgia, serif;
  font-size: 56vw;
  line-height: 1;
  color: rgba(9, 12, 11, 0.026);
}

.about-identity-copy {
  position: relative;
  z-index: 2;
}

.about-identity-title {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(2.6rem, 4.8vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -0.065em;
}

.about-identity-title > span {
  display: block;
}

.about-identity-copy > p:last-child {
  max-width: 590px;
  margin-top: 30px;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #545d57;
}

.about-identity-visual {
  position: relative;
  min-height: clamp(420px, 58svh, 520px);
}

.identity-main-photo {
  position: absolute;
  inset: 0 9% 8% 4%;
  overflow: hidden;
  border-radius: 48% 48% 4px 4px;
  box-shadow: var(--shadow);
}

.identity-main-photo img {
  height: 100%;
  object-fit: cover;
}

.identity-floating-card {
  position: absolute;
  z-index: 3;
  width: 38%;
  overflow: hidden;
  border: 8px solid var(--paper);
  box-shadow: 0 25px 70px rgba(9, 12, 11, 0.2);
}

.identity-floating-card img {
  height: 100%;
  object-fit: cover;
}

.identity-floating-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(9, 12, 11, 0.78), transparent 60%);
}

.identity-floating-card span {
  position: absolute;
  z-index: 2;
  left: 16px;
  bottom: 14px;
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: white;
}

.identity-card-one {
  top: 9%;
  right: 0;
  height: 28%;
  transform: rotate(3deg);
}

.identity-card-two {
  left: 0;
  bottom: 0;
  height: 36%;
  transform: rotate(-4deg);
}

.identity-caption {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 5%;
  width: 43%;
  padding: 22px;
  color: var(--white);
  background: var(--green);
}

.identity-caption span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--acid);
}

.identity-caption strong {
  font-family: "Manrope", sans-serif;
  font-size: 1.1rem;
  line-height: 1.35;
}

.about-mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  padding: 1px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
}

.about-statement-card {
  position: relative;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px, 5vw, 72px);
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
}

.about-statement-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(0deg, rgba(9, 12, 11, 0.96) 3%, rgba(9, 12, 11, 0.28) 72%);
}

.statement-photo {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.statement-photo img {
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.about-statement-card:hover .statement-photo img {
  transform: scale(1.05);
}

.about-statement-card .kicker {
  color: var(--amber);
}

.about-statement-card h2 {
  max-width: 760px;
  font-family: Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.9rem, 3.7vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.about-statement-card > p:last-child {
  max-width: 560px;
  margin-top: 25px;
  color: rgba(255, 255, 255, 0.63);
}

.about-values-triangle-section {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: clamp(60px, 8vw, 130px);
  align-items: center;
  padding: var(--section) var(--pad);
  background: var(--paper);
}

.values-triangle-copy {
  align-self: start;
}

.values-triangle-copy h2 {
  font-family: Georgia, serif;
  font-weight: 400;
  font-size: clamp(2rem, 3.5vw, 3.8rem);
  line-height: 1.08;
}

.values-triangle-copy > p:last-child {
  margin-top: 25px;
  color: #56605a;
}

.values-triangle-stage {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  min-height: 460px;
}

.triangle-value-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  color: var(--white);
  box-shadow: var(--shadow);
}

.triangle-value-card:nth-child(1) {
  transform: translate(8%, -4%) rotate(-5deg);
  clip-path: polygon(0 12%, 88% 0, 100% 100%, 0 100%);
}

.triangle-value-card:nth-child(2) {
  z-index: 2;
  min-height: 430px;
  transform: translateY(-8%);
  clip-path: polygon(50% 0, 100% 18%, 92% 100%, 8% 100%, 0 18%);
}

.triangle-value-card:nth-child(3) {
  transform: translate(-8%, -4%) rotate(5deg);
  clip-path: polygon(12% 0, 100% 12%, 100% 100%, 0 100%);
}

.triangle-value-image {
  position: absolute;
  inset: 0;
}

.triangle-value-image img {
  height: 100%;
  object-fit: cover;
}

.triangle-value-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(9, 12, 11, 0.94), transparent 70%);
}

.triangle-value-content {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 34px;
}

.triangle-value-content span {
  color: var(--amber);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.triangle-value-content h3 {
  margin: 8px 0;
  font-family: Georgia, serif;
  font-size: clamp(1.35rem, 2.4vw, 2.5rem);
  line-height: 1.08;
  font-weight: 400;
}

.triangle-value-content p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.63);
}

.mission-strip {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  min-height: 500px;
  color: var(--white);
  background: var(--green-2);
}

.mission-card {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%);
}

.mission-card img {
  height: 100%;
  object-fit: cover;
}

.mission-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(9, 12, 11, 0.7), transparent);
}

.mission-card span {
  position: absolute;
  z-index: 2;
  left: var(--pad);
  bottom: 45px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.mission-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px var(--pad) 70px 60px;
}

.mission-copy .kicker {
  color: var(--acid);
}

.mission-copy h2 {
  font-family: Georgia, serif;
  font-weight: 400;
  font-size: clamp(2rem, 3.6vw, 3.8rem);
  line-height: 1.08;
}

.mission-copy > p:last-child {
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.64);
}

/* SUSTAINABILITY — immersive green atlas */
body[data-page="sustainability"] {
  background: #07130f;
}

.sustain-field-hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: clamp(50px, 8vw, 130px);
  align-items: center;
  padding: 115px var(--pad) 56px;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 30%, rgba(201, 216, 106, 0.12), transparent 24%),
    radial-gradient(circle at 12% 92%, rgba(240, 90, 26, 0.12), transparent 24%),
    #081711;
}

.sustain-field-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    radial-gradient(circle at 50% 50%, transparent 0 24%, rgba(255, 255, 255, 0.08) 24.3% 24.5%, transparent 24.8%),
    radial-gradient(circle at 50% 50%, transparent 0 40%, rgba(255, 255, 255, 0.08) 40.3% 40.5%, transparent 40.8%);
}

.sustain-field-copy {
  position: relative;
  z-index: 2;
}

.sustain-field-copy .kicker {
  color: var(--acid);
}

.sustain-field-copy h1 {
  font-size: clamp(1.8rem, 3.5vw, 3.7rem);
  line-height: 1.08;
}

.sustain-field-copy h1 > span {
  display: block;
}

.sustain-field-copy h1 > span:last-child {
  color: var(--acid);
}

.sustain-field-copy > p:not(.kicker) {
  max-width: 620px;
  margin-top: 30px;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.64);
}

.sustain-field-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 35px;
}

.sustain-field-tags span {
  padding: 11px 17px;
  border: 1px solid rgba(201, 216, 106, 0.26);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--acid);
}

.sustain-photo-atlas {
  position: relative;
  min-height: clamp(420px, 58svh, 520px);
}

.atlas-photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.36);
}

.atlas-photo img {
  height: 100%;
  object-fit: cover;
}

.atlas-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 17, 13, 0.78), transparent 60%);
}

.atlas-photo figcaption {
  position: absolute;
  z-index: 2;
  left: 22px;
  bottom: 20px;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.atlas-main {
  inset: 0 10% 2% 6%;
  border-radius: 50% 50% 8% 8% / 42% 42% 8% 8%;
}

.atlas-small {
  width: 36%;
  height: 31%;
  border: 7px solid #081711;
  border-radius: 50%;
}

.atlas-people {
  left: 0;
  bottom: 5%;
}

.atlas-community {
  top: 8%;
  right: 0;
}

.atlas-note {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 5%;
  width: 220px;
  padding: 20px;
  color: var(--ink);
  background: var(--acid);
  transform: rotate(-3deg);
}

.atlas-note span {
  display: block;
  margin-bottom: 7px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.atlas-note strong {
  font-family: "Manrope", sans-serif;
  font-size: 1.25rem;
  line-height: 1.25;
}

.sustain-photo-framework {
  padding: var(--section) var(--pad);
  color: var(--ink);
  background: var(--paper);
}

.framework-heading {
  max-width: 900px;
  margin-bottom: 75px;
}

.framework-heading > p:last-child {
  max-width: 650px;
  margin-top: 26px;
  color: #535d57;
}

.framework-storyline {
  display: grid;
  gap: 18px;
}

.framework-row {
  min-height: 320px;
  display: grid;
  grid-template-columns: 1fr 120px 0.85fr;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background: var(--white);
}

.framework-row:nth-child(even) {
  grid-template-columns: 0.85fr 120px 1fr;
}

.framework-row:nth-child(even) .framework-image {
  order: 3;
}

.framework-row:nth-child(even) .framework-number {
  order: 2;
}

.framework-row:nth-child(even) .framework-copy {
  order: 1;
}

.framework-image {
  overflow: hidden;
}

.framework-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.framework-row:hover .framework-image img {
  transform: scale(1.04);
}

.framework-number {
  display: grid;
  place-items: center;
  font-family: "Manrope", sans-serif;
  font-size: 2rem;
  color: var(--orange);
  border-right: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
  writing-mode: vertical-rl;
}

.framework-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 3.5vw, 46px);
}

.framework-copy > span {
  margin-bottom: 17px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
}

.framework-copy h3 {
  font-size: clamp(1.45rem, 2.7vw, 2.8rem);
  line-height: 1.1;
}

.framework-copy p {
  margin-top: 20px;
  line-height: 1.6;
  color: #59625d;
}

.sustain-commitment-gallery {
  min-height: 500px;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  color: var(--white);
  background: var(--green-2);
}

.commitment-gallery-card {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  clip-path: ellipse(72% 74% at 39% 50%);
}

.commitment-gallery-card img {
  height: 100%;
  object-fit: cover;
}

.commitment-gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(9, 12, 11, 0.7), transparent 55%);
}

.commitment-gallery-card > div {
  position: absolute;
  z-index: 2;
  left: var(--pad);
  bottom: 70px;
}

.commitment-gallery-card span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--acid);
}

.commitment-gallery-card strong {
	color: #ffffff;
  max-width: 520px;
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.35rem, 2.4vw, 2.5rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.commitment-gallery-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px var(--pad) 80px 50px;
}

.commitment-gallery-copy .kicker {
  color: var(--acid);
}

.commitment-gallery-copy h2 span {
  display: block;
}

.commitment-gallery-copy > p:not(.kicker) {
  margin: 27px 0 35px;
  color: rgba(255, 255, 255, 0.64);
}

.commitment-gallery-copy .button {
  align-self: flex-start;
}

/* TEAM — portrait-led, dark burgundy gallery */
body[data-page="team"] {
  background: #130d0b;
}

.leadership-board-hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(50px, 8vw, 130px);
  align-items: center;
  padding: 115px var(--pad) 56px;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 12%, rgba(240, 90, 26, 0.18), transparent 24%),
    linear-gradient(135deg, #0b0908, #1a100d 64%, #0c0908);
}

.leadership-board-hero::before {
  content: "LEADERSHIP";
  position: absolute;
  left: 0;
  bottom: -0.14em;
  font-family: "Manrope", sans-serif;
  font-size: 12.5vw;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.08em;
  color: rgba(255, 255, 255, 0.028);
}

.leadership-board-copy {
  position: relative;
  z-index: 3;
}

.leadership-board-copy .kicker,
.leadership-closing-strip .kicker,
.contact-bento-intro .kicker {
  color: var(--amber);
}

.leadership-board-copy h1 {
  font-size: clamp(1.8rem, 3.4vw, 3.6rem);
  line-height: 1.08;
}

.leadership-board-copy h1 > span {
  display: block;
}

.leadership-board-copy > p:not(.kicker) {
  max-width: 610px;
  margin-top: 28px;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.62);
}

.leadership-hero-tags {
  display: flex;
  gap: 24px;
  margin-top: 35px;
  padding-top: 22px;
  border-top: 1px solid var(--line-light);
}

.leadership-hero-tags span {
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--amber);
}

.leadership-portrait-wall {
  position: relative;
  min-height: clamp(430px, 60svh, 540px);
  perspective: 1200px;
}

.portrait-panel {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
  background: #1c1512;
}

.portrait-panel img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.04);
  transition: transform 1s var(--ease), filter 0.5s;
}

.portrait-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(12, 9, 8, 0.88), transparent 52%);
}

.portrait-panel > div {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 22px;
}

.portrait-panel span {
  display: block;
  margin-bottom: 6px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--amber);
}

.portrait-panel strong {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.05rem, 1.6vw, 1.5rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.portrait-main {
  z-index: 2;
  inset: 0 26% 0 14%;
  border-radius: 48% 48% 4px 4px;
}

.portrait-top {
  z-index: 3;
  top: 3%;
  right: 0;
  width: 35%;
  height: 42%;
  transform: rotate(4deg);
  border-radius: 4px 45px 4px 4px;
}

.portrait-bottom {
  z-index: 3;
  right: 0;
  bottom: 2%;
  width: 37%;
  height: 43%;
  transform: rotate(-3deg);
  border-radius: 45px 4px 4px 4px;
}

.portrait-panel:hover img {
  transform: scale(1.055);
  filter: saturate(1);
}

.leadership-council-section {
  padding: var(--section) var(--pad);
  color: var(--ink);
  background: var(--paper);
}

.council-intro {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 80px;
}

.council-intro .kicker {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.council-intro > p:last-child {
  max-width: 560px;
  justify-self: end;
  color: #555f59;
}

.leadership-council-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 16px;
  align-items: end;
}

.council-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(9, 12, 11, 0.1);
}

.council-card:nth-child(2) {
  transform: translateY(-45px);
}

.council-photo {
  height: 280px;
  overflow: hidden;
  background: #ddd6c8;
}

.ceo-card .council-photo {
  height: 340px;
}

.council-photo img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.council-card:hover .council-photo img {
  transform: scale(1.04);
}

.council-copy {
  padding: 22px;
}

.council-copy > span {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--orange);
}

.council-copy h3 {
  margin: 8px 0 12px;
  font-size: clamp(1.35rem, 2.1vw, 2.1rem);
  line-height: 1.12;
}

.council-copy p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #5b645f;
}

.leadership-closing-strip {
  min-height: 460px;
  display: grid;
  grid-template-columns: 0.58fr 1.42fr;
  gap: 70px;
  align-items: center;
  padding: var(--section) var(--pad);
  background:
    linear-gradient(90deg, rgba(9, 12, 11, 0.98), rgba(9, 12, 11, 0.6)),
    url("assets/images/operations-partnership.jpg") center / cover;
}

.closing-mark {
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.closing-mark span {
  font-family: "Manrope", sans-serif;
  font-size: clamp(3.6rem, 7vw, 7rem);
  font-weight: 500;
  line-height: 0.8;
  color: var(--amber);
}

.closing-mark p {
  margin-top: 18px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.closing-copy h2 span {
  display: block;
}

.closing-copy h2 span:nth-child(2) {
  color: var(--orange);
}

.closing-copy > p:last-child {
  max-width: 560px;
  margin-top: 22px;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.64);
}

.closing-copy h2 {
  font-size: clamp(1.9rem, 3.6vw, 3.8rem);
  line-height: 1.08;
}

/* CONTACT — architectural, clear, conversion-focused */
body[data-page="contact"] {
  color: var(--ink);
  background: var(--white);
}

.contact-light-hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: clamp(55px, 9vw, 150px);
  align-items: center;
  padding: 115px var(--pad) 56px;
  overflow: hidden;
  background: var(--white);
}

.contact-light-hero::before {
  content: "";
  position: absolute;
  top: -24vw;
  right: -15vw;
  width: 65vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--orange);
}

.contact-light-hero::after {
  position: absolute;
  left: var(--pad);
  bottom: 30px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: rgba(9, 12, 11, 0.45);
}

.contact-light-copy {
  position: relative;
  z-index: 2;
}

.contact-light-copy h1 {
  font-size: clamp(1.9rem, 3.6vw, 3.8rem);
  line-height: 1.06;
}

.contact-light-copy h1 > span {
  display: block;
}

.contact-light-copy h1 > span:last-child {
  color: var(--orange);
}

.contact-light-copy > p:not(.kicker) {
  max-width: 560px;
  margin-top: 24px;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #535c57;
}

.contact-light-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.contact-soft-button {
  color: var(--ink);
  border: 1px solid var(--line-dark);
  background: transparent;
}

.contact-office-card {
  position: relative;
  z-index: 2;
  align-self: stretch;
  min-height: clamp(400px, 58svh, 520px);
  display: grid;
  align-content: end;
  overflow: hidden;
  color: var(--white);
  border-radius: 48% 48% 4px 4px;
  box-shadow: var(--shadow);
}

.contact-office-photo {
  position: absolute;
  inset: 0;
}

.contact-office-photo img {
  height: 100%;
  object-fit: cover;
}

.contact-office-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(9, 12, 11, 0.92), transparent 62%);
}

.office-card-content {
  position: relative;
  z-index: 2;
  padding: 42px;
}

.office-card-content span {
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
}

.office-card-content h2 {
  margin: 8px 0 12px;
  font-size: clamp(1.5rem, 3vw, 3rem);
  line-height: 1.08;
}

.office-card-content p {
  color: rgba(255, 255, 255, 0.64);
}

.contact-bento-section {
  padding: var(--section) var(--pad);
  color: var(--white);
  background: var(--ink);
}

.contact-bento-intro {
  max-width: 780px;
  margin-bottom: 65px;
}

.contact-two-square-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-bento-card {
  position: relative;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(30px, 5vw, 65px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--ink-2);
}

.email-card {
  border-radius: 4px 100px 4px 4px;
  background: var(--green-2);
}

.services-card {
  border-radius: 100px 4px 4px 4px;
  background:
    linear-gradient(0deg, rgba(9, 12, 11, 0.88), rgba(9, 12, 11, 0.25)),
    url("assets/images/operations-supply.jpg") center / cover;
}

.contact-bento-card > span {
  margin-bottom: 15px;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
}

.contact-bento-card strong {
  max-width: 800px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.4rem, 2.8vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
  overflow-wrap: anywhere;
}

.contact-bento-card p {
  max-width: 560px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.62);
}

.contact-form-map-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  min-height: 560px;
  background: var(--paper);
}

.contact-form-wrap {
  padding: var(--section) var(--pad);
}

.form-heading {
  max-width: 620px;
  margin-bottom: 45px;
}

.form-heading h2 {
  font-size: clamp(1.8rem, 3.4vw, 3.6rem);
  line-height: 1.08;
}

.form-heading > p:last-child {
  margin-top: 22px;
  color: #58615c;
}

.jeva-contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 16px;
}

.form-field {
  display: grid;
  gap: 9px;
}

.form-field:nth-child(5) {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #434c47;
}

.form-field input,
.form-field textarea {
  width: 100%;
  margin: 0;
  border: 0;
  border-bottom: 1px solid rgba(9, 12, 11, 0.27);
  border-radius: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  transition: border-color 0.25s;
}

.form-field input {
  height: 56px;
}

.form-field textarea {
  min-height: 150px;
  padding-top: 16px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--orange);
}

.contact-submit-btn {
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: 14px;
}

.contact-map-wrap {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: #c9c7be;
}

.contact-map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 560px;
  border: 0;
  filter: grayscale(1) contrast(0.9);
}

.map-info-card {
  position: absolute;
  left: 30px;
  bottom: 30px;
  max-width: 360px;
  padding: 28px;
  color: var(--white);
  background: rgba(9, 12, 11, 0.9);
  backdrop-filter: blur(15px);
}

.map-info-card span {
  display: block;
  margin-bottom: 7px;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
}

.map-info-card strong {
  font-family: "Manrope", sans-serif;
  font-size: 1.55rem;
}

.map-info-card p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.6);
}

/* FOOTER */
.site-footer {
  position: relative;
  z-index: 10;
  padding: 70px var(--pad) 24px;
  color: var(--white);
  background: #070908;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 0.7fr;
  gap: 40px;
  padding-bottom: 55px;
}

.footer-brand strong {
  display: block;
  max-width: 360px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.6rem, 2.6vw, 3rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.footer-brand p {
  max-width: 390px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.46);
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-column > span {
  margin-bottom: 7px;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
}

.footer-column p,
.footer-column a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.58);
}

.footer-column a {
  transition: color 0.25s;
}

.footer-column a:hover {
  color: var(--orange);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.38);
}

body[data-page="home"] .site-footer {
  color: var(--ink);
  border-top: 1px solid rgba(240, 90, 26, 0.16);
  background:
    linear-gradient(180deg, #fff8ef 0%, #fffdf8 100%);
}

body[data-page="home"] .footer-brand p,
body[data-page="home"] .footer-column p,
body[data-page="home"] .footer-column a {
  color: rgba(9, 12, 11, 0.58);
}

body[data-page="home"] .footer-column > span {
  color: var(--orange);
}

body[data-page="home"] .footer-bottom {
  border-top-color: rgba(240, 90, 26, 0.16);
}

body[data-page="home"] .footer-bottom p {
  color: rgba(9, 12, 11, 0.45);
}

@keyframes page-in {
  0% { transform: translateY(0); }
  48% { transform: translateY(0); }
  100% { transform: translateY(-102%); }
}

@keyframes page-out {
  from { transform: translateY(102%); }
  to { transform: translateY(0); }
}

@keyframes char-arrive {
  to {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) rotate(0);
  }
}

@keyframes hero-shape {
  from {
    opacity: 0;
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%, 100% 64%, 100% 40%);
    transform: scale(1.06) translate3d(38px, 0, 0);
  }
}

@keyframes hero-panel-drift {
  0% {
    transform: scale(1) translate3d(0, 0, 0);
  }
  50% {
    transform: scale(1.025) translate3d(-14px, 0, 0);
  }
  100% {
    transform: scale(1.01) translate3d(8px, 0, 0);
  }
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@media (max-width: 1180px) {
  .service-catalog-hero,
  .about-identity-hero,
  .sustain-field-hero,
  .leadership-board-hero {
    grid-template-columns: 1fr 1fr;
  }

  .service-catalog-hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(450px, 1.05fr);
  }

  .services-photo-mosaic,
  .about-identity-visual,
  .sustain-photo-atlas,
  .leadership-portrait-wall {
    min-height: 600px;
  }

  .home-showcase {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 55px;
  }

  .showcase-gallery {
    grid-template-rows: repeat(2, 350px);
  }

  .about-values-triangle-section {
    grid-template-columns: 1fr;
  }

  .values-triangle-copy {
    max-width: 700px;
  }
}

@media (max-width: 900px) {
  :root {
    --pad: clamp(18px, 5vw, 48px);
  }

  .nav-shell {
    left: 16px;
    right: 16px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: -16px -16px auto;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    padding: 100px 34px 50px;
    color: var(--white);
    background: rgba(9, 12, 11, 0.98);
    transform: translateY(-105%);
    transition: transform 0.65s var(--ease);
  }

  body[data-page="home"] .nav-links {
    color: var(--ink);
    background: rgba(255, 253, 248, 0.98);
  }

  .nav-links.open {
    transform: translateY(0);
  }

  .nav-links a {
    font-family: "Manrope", sans-serif;
    font-size: clamp(2.1rem, 7vw, 4rem);
    letter-spacing: -0.04em;
    text-transform: none;
  }

  .hero {
    padding-top: 145px;
  }

  .hero-video {
    top: 92px;
    right: 18px;
    width: calc(100% - 36px);
    height: 42vh;
    opacity: 0.3;
    border-radius: 0 0 0 72px;
    clip-path: polygon(34% 0, 100% 0, 100% 100%, 0 100%, 8% 65%, 4% 49%, 10% 29%);
  }

  .hero-noise {
    background:
      linear-gradient(90deg, rgba(255, 253, 248, 0.98), rgba(255, 253, 248, 0.64)),
      linear-gradient(0deg, rgba(255, 253, 248, 0.98), rgba(255, 253, 248, 0.35));
  }

  .hero-content {
    width: min(720px, 92vw);
  }

  .home-showcase,
  .premium-stats,
  .service-catalog-hero,
  .service-request-panel,
  .about-identity-hero,
  .about-values-triangle-section,
  .mission-strip,
  .sustain-field-hero,
  .sustain-commitment-gallery,
  .leadership-board-hero,
  .leadership-closing-strip,
  .contact-light-hero,
  .contact-form-map-section {
    grid-template-columns: 1fr;
  }

  .showcase-copy {
    position: relative;
    top: auto;
  }

  .premium-stats::before {
    left: 50%;
    top: 70%;
    width: 70vw;
  }

  .services-photo-mosaic,
  .about-identity-visual,
  .sustain-photo-atlas,
  .leadership-portrait-wall {
    min-height: 650px;
  }

  .service-pathway {
    grid-template-columns: 1fr;
  }

  .service-pathway-section::before {
    display: none;
  }

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

  .about-statement-card {
    min-height: 680px;
  }

  .values-triangle-stage {
    min-height: 560px;
  }

  .mission-card {
    clip-path: polygon(0 0, 100% 0, 100% 90%, 50% 100%, 0 90%);
  }

  .mission-copy,
  .commitment-gallery-copy {
    padding: 80px var(--pad);
  }

  .framework-row,
  .framework-row:nth-child(even) {
    grid-template-columns: 1fr 72px 1fr;
  }

  .sustain-commitment-gallery,
  .leadership-closing-strip {
    min-height: auto;
  }

  .commitment-gallery-card {
    min-height: 650px;
    clip-path: ellipse(78% 72% at 50% 42%);
  }

  .council-intro {
    grid-template-columns: 1fr;
  }

  .council-intro > p:last-child {
    justify-self: start;
  }

  .leadership-council-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ceo-card {
    grid-column: 1 / -1;
  }

  .council-card:nth-child(2) {
    transform: none;
  }

  .closing-mark {
    width: min(420px, 80vw);
    justify-self: center;
  }

  .contact-light-hero::before {
    top: -18vw;
    right: -32vw;
    width: 85vw;
  }

  .contact-office-card {
    min-height: 620px;
  }

  .contact-map-wrap,
  .contact-map-wrap iframe {
    min-height: 600px;
  }

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

@media (max-width: 640px) {
  :root {
    --section: 88px;
  }

  h1 {
    font-size: clamp(3.45rem, 18vw, 5.7rem);
  }

  h2 {
    font-size: clamp(2.45rem, 12vw, 4rem);
  }

  .nav-shell {
    height: 60px;
    top: 10px;
  }

  .brand-logo {
    height: 37px;
  }

  .hero {
    min-height: 100svh;
    padding: 125px 18px 112px;
  }

  .hero::before {
    right: -60%;
    min-width: 480px;
  }

  .hero-content {
    width: 100%;
  }

  .hero-content::before {
    display: none;
  }

  .hero-line {
    font-size: 0.98rem;
  }

  .hero-actions,
  .catalog-actions,
  .band-actions,
  .contact-light-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .contact-soft-button {
    width: 100%;
  }

  .showcase-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .image-frame,
  .image-frame.tall {
    min-height: 390px;
    grid-row: auto;
  }

  .stat-grid {
    grid-template-columns: 1fr;
    transform: none;
  }

  .stat-card {
    min-height: 190px;
  }

  .final-cta {
    min-height: 720px;
    background-position: 62% center;
  }

  .service-catalog-hero,
  .about-identity-hero,
  .sustain-field-hero,
  .leadership-board-hero,
  .contact-light-hero {
    padding-top: 125px;
  }

  .services-photo-mosaic {
    min-height: 520px;
  }

  .mosaic-large {
    inset: 0 12% 16% 0;
  }

  .mosaic-small.top {
    width: 39%;
    height: 32%;
  }

  .mosaic-small.bottom {
    width: 48%;
    height: 35%;
  }

  .mosaic-service-count {
    right: 17%;
    width: 120px;
  }

  .pathway-card {
    min-height: 500px;
  }

  .service-request-panel {
    gap: 50px;
  }

  .request-card {
    min-height: 430px;
  }

  .about-identity-visual {
    min-height: 540px;
  }

  .identity-main-photo {
    inset: 0 3% 8% 3%;
  }

  .identity-floating-card {
    width: 43%;
  }

  .identity-caption {
    width: 52%;
  }

  .about-statement-card {
    min-height: 600px;
  }

  .values-triangle-stage {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: auto;
  }

  .triangle-value-card,
  .triangle-value-card:nth-child(1),
  .triangle-value-card:nth-child(2),
  .triangle-value-card:nth-child(3) {
    min-height: 430px;
    transform: none;
    clip-path: none;
    border-radius: 4px 50px 4px 4px;
  }

  .mission-card {
    min-height: 500px;
  }

  .sustain-photo-atlas {
    min-height: 540px;
  }

  .atlas-main {
    inset: 0 4% 4%;
  }

  .atlas-small {
    width: 40%;
    height: 28%;
  }

  .atlas-note {
    width: 175px;
  }

  .framework-row,
  .framework-row:nth-child(even) {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .framework-row:nth-child(even) .framework-image,
  .framework-row:nth-child(even) .framework-number,
  .framework-row:nth-child(even) .framework-copy {
    order: initial;
  }

  .framework-image {
    min-height: 320px;
  }

  .framework-number {
    min-height: 55px;
    border: 0;
    border-top: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
    writing-mode: initial;
  }

  .commitment-gallery-card {
    min-height: 550px;
    clip-path: ellipse(92% 68% at 50% 42%);
  }

  .leadership-portrait-wall {
    min-height: 540px;
  }

  .portrait-main {
    inset: 0 15% 0 4%;
  }

  .portrait-top,
  .portrait-bottom {
    width: 40%;
    height: 38%;
  }

  .leadership-council-grid {
    grid-template-columns: 1fr;
  }

  .ceo-card {
    grid-column: auto;
  }

  .council-photo,
  .ceo-card .council-photo {
    height: 420px;
  }

  .contact-office-card {
    min-height: 520px;
  }

  .contact-two-square-grid {
    grid-template-columns: 1fr;
  }

  .contact-bento-card {
    min-height: 350px;
  }

  .jeva-contact-form {
    grid-template-columns: 1fr;
  }

  .form-field:nth-child(5),
  .contact-submit-btn {
    grid-column: auto;
  }

  .contact-map-wrap,
  .contact-map-wrap iframe {
    min-height: 520px;
  }

  .map-info-card {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

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

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-char,
  .reveal {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }
}

/* PREMIUM AMENDMENT PASS — refined, architectural, slow-motion */
:root {
  --ivory: #f4eee3;
  --ivory-2: #ebe1d2;
  --cream-panel: #fff8ec;
  --burnt: #bd4319;
  --coal: #14110d;
  --soft-shadow: 0 30px 90px rgba(73, 46, 28, 0.16);
  --slow: cubic-bezier(0.16, 1, 0.3, 1);
}

#fx-canvas {
  display: none !important;
}

.transition-screen::before {
  width: min(52vw, 760px);
  height: 32vh;
  aspect-ratio: auto;
  border-radius: 0;
  border-color: rgba(255, 253, 248, 0.42);
  transform: skewX(-18deg);
}

body.is-entering .transition-screen {
  animation-duration: 1.35s;
}

body.is-leaving .transition-screen {
  animation-duration: 0.95s;
}

.reveal {
  transform: translate3d(0, 78px, 0);
  transition:
    opacity 1.65s var(--slow) var(--delay, 0ms),
    transform 1.65s var(--slow) var(--delay, 0ms),
    clip-path 1.9s var(--slow) var(--delay, 0ms);
}

.reveal.from-left {
  transform: translate3d(-110px, 0, 0);
}

.reveal.from-right {
  transform: translate3d(110px, 0, 0);
}

body.is-ready .hero-char,
body[data-page="home"].is-ready .hero-char {
  animation-duration: 2.45s;
  animation-delay: calc(360ms + var(--char-i) * 62ms);
}

body.is-ready .hero-content.reveal,
body.is-ready .catalog-copy.reveal,
body.is-ready .about-identity-copy.reveal,
body.is-ready .sustain-field-copy.reveal,
body.is-ready .leadership-board-copy.reveal,
body.is-ready .contact-light-copy.reveal {
  opacity: 1;
  transform: none;
}

.button,
.contact-soft-button,
.catalog-link,
.contact-submit-btn {
  transition:
    transform 0.8s var(--slow),
    box-shadow 0.8s var(--slow),
    color 0.8s var(--slow),
    background 0.8s var(--slow),
    border-color 0.8s var(--slow);
}

.button:hover,
.contact-soft-button:hover,
.catalog-link:hover,
.contact-submit-btn:hover {
  transform: translateY(-6px);
}

.button::after,
.contact-submit-btn::after,
.showcase-points span::after,
.image-frame span::after {
  content: "\2197";
}

body[data-page="home"] {
  background: var(--ivory);
}

body[data-page="home"] .nav-shell {
  background: rgba(244, 238, 227, 0.82);
  border-color: rgba(189, 67, 25, 0.18);
  box-shadow: 0 20px 70px rgba(66, 42, 24, 0.12);
}

body[data-page="home"] .nav-shell.scrolled {
  background: rgba(244, 238, 227, 0.96);
}

.hero {
  min-height: 92svh;
  align-items: center;
  padding: 124px var(--pad) 98px;
  background:
    linear-gradient(90deg, rgba(20, 17, 13, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(20, 17, 13, 0.035) 1px, transparent 1px),
    linear-gradient(122deg, #f5efe4 0%, #efe3d2 64%, #f7dcc1 100%);
  background-size: 74px 74px, 74px 74px, auto;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 96px var(--pad) 74px auto;
  width: min(55vw, 820px);
  background:
    linear-gradient(115deg, rgba(240, 90, 26, 0.17), rgba(255, 253, 248, 0.08) 42%, rgba(20, 17, 13, 0.08));
  clip-path: polygon(13% 0, 100% 0, 89% 100%, 0 100%);
  box-shadow: var(--soft-shadow);
}

.hero::after {
  content: "SUPPLY / LOGISTICS / AFRICA";
  position: absolute;
  left: var(--pad);
  bottom: 94px;
  width: min(35vw, 420px);
  padding-top: 14px;
  border-top: 2px solid rgba(240, 90, 26, 0.5);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: rgba(20, 17, 13, 0.46);
}

.hero-video {
  top: 104px;
  right: calc(var(--pad) + 10px);
  width: min(51vw, 760px);
  height: calc(100% - 220px);
  opacity: 0.98;
  border-radius: 0;
  border: 10px solid rgba(255, 248, 236, 0.86);
  outline: 1px solid rgba(189, 67, 25, 0.22);
  filter: saturate(0.9) contrast(1.04) brightness(1.03);
  clip-path: polygon(19% 0, 100% 0, 100% 88%, 88% 100%, 0 100%, 8% 63%, 0 42%);
  box-shadow: 0 42px 120px rgba(68, 45, 27, 0.24);
  animation:
    hero-shape 3.2s var(--slow) both,
    hero-panel-drift 22s ease-in-out 3.2s infinite alternate;
}

.hero-noise {
  background:
    linear-gradient(90deg, rgba(244, 238, 227, 0.98) 0%, rgba(244, 238, 227, 0.92) 38%, rgba(244, 238, 227, 0.12) 72%),
    linear-gradient(0deg, rgba(244, 238, 227, 0.95), rgba(244, 238, 227, 0) 56%);
}

.hero-content {
  width: min(650px, 52vw);
  padding: clamp(22px, 3vw, 38px) clamp(22px, 3vw, 42px);
  border-left: 4px solid var(--orange);
  background: linear-gradient(90deg, rgba(255, 248, 236, 0.78), rgba(255, 248, 236, 0.2));
  box-shadow: 28px 34px 90px rgba(73, 46, 28, 0.08);
  backdrop-filter: blur(10px);
}

.hero .kicker {
  color: var(--burnt);
}

.hero-line {
  color: rgba(20, 17, 13, 0.72);
}

.ticker {
  border-top-color: rgba(189, 67, 25, 0.2);
  background: rgba(244, 238, 227, 0.86);
}

.ticker-track {
  animation-duration: 70s;
}

.ticker span::after {
  width: 42px;
  height: 1px;
  border-radius: 0;
  background: rgba(189, 67, 25, 0.48);
}

.home-showcase {
  padding: clamp(66px, 8vw, 118px) var(--pad);
  background:
    linear-gradient(90deg, rgba(240, 90, 26, 0.08) 1px, transparent 1px),
    var(--ivory-2);
  background-size: 70px 70px;
}

.home-showcase::before {
  color: rgba(20, 17, 13, 0.042);
  transform: translateY(-12px);
}

.showcase-gallery {
  grid-template-rows: repeat(2, minmax(190px, 23vw));
  gap: 13px;
}

.image-frame {
  min-height: 220px;
  border-radius: 0;
  clip-path: polygon(0 0, 92% 0, 100% 12%, 100% 100%, 0 100%);
}

.image-frame:nth-child(2),
.image-frame:nth-child(3) {
  border-radius: 0;
}

.image-frame img,
.mosaic-tile img,
.pathway-photo img,
.framework-image img,
.portrait-panel img,
.council-photo img {
  transition:
    transform 2.2s var(--slow),
    filter 1.2s var(--slow);
}

.premium-stats {
  background:
    linear-gradient(135deg, #efe3d2 0%, #f7efe4 58%, #f3c9a7 100%);
}

.premium-stats::before {
  border-color: rgba(189, 67, 25, 0.18);
}

.stat-card {
  border: 1px solid rgba(189, 67, 25, 0.12);
  background: rgba(255, 248, 236, 0.82);
}

.final-cta {
  min-height: 68svh;
  align-items: center;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.9fr);
  gap: clamp(30px, 5vw, 78px);
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(239, 227, 210, 0.98), rgba(239, 227, 210, 0.9)),
    var(--ivory-2);
}

.final-cta::before {
  z-index: -2;
  inset: 0 50% 0 auto;
  width: 15vw;
  background: linear-gradient(180deg, var(--orange), #f7b047);
  clip-path: polygon(30% 0, 100% 0, 70% 100%, 0 100%);
}

.final-cta::after {
  content: "";
  position: relative;
  z-index: 1;
  min-height: clamp(360px, 48vw, 540px);
  align-self: stretch;
  background:
    linear-gradient(0deg, rgba(20, 17, 13, 0.32), rgba(20, 17, 13, 0.02)),
    url("assets/images/vessel.png") center / cover no-repeat;
  clip-path: polygon(11% 0, 100% 0, 100% 88%, 88% 100%, 0 100%, 0 12%);
  border: 10px solid rgba(255, 248, 236, 0.82);
  outline: 1px solid rgba(189, 67, 25, 0.22);
  box-shadow: var(--soft-shadow);
  animation: premium-float 18s ease-in-out infinite alternate;
}

.final-cta .band-copy {
  position: relative;
  z-index: 2;
  max-width: 650px;
  background: rgba(255, 248, 236, 0.9);
  border-left: 5px solid var(--orange);
  border-top: 1px solid rgba(189, 67, 25, 0.16);
  border-right: 1px solid rgba(189, 67, 25, 0.16);
  border-bottom: 1px solid rgba(189, 67, 25, 0.16);
  box-shadow: 34px 34px 100px rgba(73, 46, 28, 0.12);
}

.services-photo-mosaic.reveal,
.about-identity-visual.reveal,
.sustain-photo-atlas.reveal,
.leadership-portrait-wall.reveal,
.contact-office-card.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.services-photo-mosaic .mosaic-tile,
.services-photo-mosaic .mosaic-service-count,
.about-identity-visual > *,
.sustain-photo-atlas > *,
.leadership-portrait-wall .portrait-panel,
.contact-office-card .contact-office-photo,
.contact-office-card .office-card-content {
  opacity: 0;
  transform: translate3d(0, 72px, 0) scale(0.965);
  filter: blur(10px);
  transition:
    opacity 1.75s var(--slow),
    transform 1.75s var(--slow),
    filter 1.75s var(--slow);
}

.services-photo-mosaic.visible .mosaic-tile,
.services-photo-mosaic.visible .mosaic-service-count,
.about-identity-visual.visible > *,
.sustain-photo-atlas.visible > *,
.leadership-portrait-wall.visible .portrait-panel,
.contact-office-card.visible .contact-office-photo,
.contact-office-card.visible .office-card-content {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.services-photo-mosaic.visible .mosaic-small.top,
.about-identity-visual.visible .identity-card-one,
.sustain-photo-atlas.visible .atlas-people,
.leadership-portrait-wall.visible .portrait-top,
.contact-office-card.visible .office-card-content {
  transition-delay: 260ms;
}

.services-photo-mosaic.visible .mosaic-small.bottom,
.about-identity-visual.visible .identity-card-two,
.sustain-photo-atlas.visible .atlas-community,
.leadership-portrait-wall.visible .portrait-bottom {
  transition-delay: 520ms;
}

.services-photo-mosaic.visible .mosaic-service-count,
.about-identity-visual.visible .identity-caption,
.sustain-photo-atlas.visible .atlas-note {
  transition-delay: 760ms;
}

.service-catalog-hero {
  min-height: 86svh;
  background:
    linear-gradient(90deg, rgba(20, 17, 13, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(20, 17, 13, 0.045) 1px, transparent 1px),
    linear-gradient(135deg, #efe5d8, #f8f1e7 58%, #e8d5c0);
  background-size: 58px 58px, 58px 58px, auto;
}

.service-catalog-hero::after {
  bottom: 34px;
}

.services-photo-mosaic {
  min-height: clamp(380px, 52svh, 500px);
}

.mosaic-tile {
  border: 8px solid rgba(255, 248, 236, 0.86);
  box-shadow: 0 30px 80px rgba(73, 46, 28, 0.18);
}

.mosaic-large {
  inset: 2% 29% 6% 0;
}

.mosaic-small.top {
  width: 38%;
  height: 37%;
}

.mosaic-small.bottom {
  width: 44%;
  height: 44%;
}

.mosaic-service-count {
  right: 24%;
  width: 104px;
  background: linear-gradient(135deg, var(--coal), var(--orange));
}

.service-pathway-section {
  padding: clamp(62px, 7vw, 105px) var(--pad);
  background:
    linear-gradient(135deg, #14110d 0%, #201811 62%, #10100d 100%);
}

.pathway-intro {
  margin-bottom: 42px;
}

.service-pathway {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  background: transparent;
}

.pathway-card {
  min-height: 320px;
  grid-template-rows: 145px 1fr;
  border: 1px solid rgba(255, 248, 236, 0.13);
  background: linear-gradient(180deg, #1c1712, #100e0b);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.pathway-photo {
  min-height: 145px;
}

.pathway-card > div:last-child {
  padding: 22px;
}

.pathway-number {
  top: 118px;
  left: 18px;
  width: 44px;
  height: 44px;
  border-radius: 0;
  background: var(--orange);
  clip-path: polygon(0 0, 86% 0, 100% 25%, 100% 100%, 0 100%);
}

.service-request-panel {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  background:
    linear-gradient(90deg, rgba(240, 90, 26, 0.14) 1px, transparent 1px),
    #efe3d2;
  background-size: 64px 64px;
}

.request-card {
  min-height: 360px;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: stretch;
  clip-path: none;
  color: var(--ink);
  background: rgba(255, 248, 236, 0.88);
  border: 1px solid rgba(189, 67, 25, 0.18);
  box-shadow: var(--soft-shadow);
}

.request-card img {
  position: relative;
  inset: auto;
  height: 100%;
  min-height: 360px;
  clip-path: polygon(0 0, 100% 0, 84% 100%, 0 100%);
}

.request-card::after {
  display: none;
}

.request-card > div {
  display: grid;
  align-content: center;
  padding: clamp(28px, 4vw, 52px);
}

.request-card p {
  color: rgba(20, 17, 13, 0.64);
}

.about-mission-vision {
  gap: 18px;
  padding: clamp(62px, 7vw, 105px) var(--pad);
  background:
    linear-gradient(135deg, #e9ddcd 0%, #f7efe4 100%);
}

.about-statement-card {
  min-height: 430px;
  justify-content: space-between;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 248, 236, 0.94), rgba(239, 227, 210, 0.94));
  border: 1px solid rgba(189, 67, 25, 0.16);
  box-shadow: var(--soft-shadow);
}

.about-statement-card .statement-photo {
  display: none;
}

.about-statement-card::before {
  z-index: 0;
  inset: 22px;
  background:
    linear-gradient(90deg, rgba(189, 67, 25, 0.24) 1px, transparent 1px),
    linear-gradient(180deg, rgba(189, 67, 25, 0.16) 1px, transparent 1px);
  background-size: 46px 46px;
  opacity: 0.42;
}

.about-statement-card::after {
  position: absolute;
  right: clamp(24px, 4vw, 52px);
  bottom: clamp(20px, 3vw, 40px);
  font-family: "Manrope", sans-serif;
  font-size: clamp(4rem, 10vw, 10rem);
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: -0.08em;
  color: rgba(240, 90, 26, 0.08);
}

.vision-card::after {
  content: "VISION";
}

.mission-card-text::after {
  content: "MISSION";
}

.about-statement-card > * {
  position: relative;
  z-index: 1;
}

.about-statement-card .kicker {
  color: var(--burnt);
}

.about-statement-card > p:last-child {
  color: rgba(20, 17, 13, 0.65);
}

.mission-strip {
  min-height: 520px;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(22px, 4vw, 58px);
  padding: clamp(62px, 7vw, 105px) var(--pad);
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(20, 17, 13, 0.055) 1px, transparent 1px),
    var(--ivory);
  background-size: 74px 74px;
}

.mission-card {
  min-height: 360px;
  clip-path: polygon(0 0, 90% 0, 100% 16%, 100% 100%, 0 100%);
  border: 9px solid rgba(255, 248, 236, 0.9);
  box-shadow: var(--soft-shadow);
}

.mission-copy {
  padding: clamp(32px, 5vw, 70px);
  border-left: 5px solid var(--orange);
  background: rgba(255, 248, 236, 0.76);
  box-shadow: 0 24px 80px rgba(73, 46, 28, 0.09);
}

.mission-copy .kicker {
  color: var(--burnt);
}

.mission-copy > p:last-child {
  color: rgba(20, 17, 13, 0.66);
}

.sustain-field-hero {
  background:
    linear-gradient(105deg, #07130f 0%, #10261d 58%, #273019 100%);
}

.sustain-field-hero::before {
  opacity: 0.16;
  background-image:
    linear-gradient(90deg, rgba(201, 216, 106, 0.18) 1px, transparent 1px),
    linear-gradient(180deg, rgba(201, 216, 106, 0.12) 1px, transparent 1px);
  background-size: 70px 70px;
}

.sustain-commitment-gallery {
  min-height: 560px;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(22px, 4vw, 58px);
  padding: clamp(62px, 7vw, 105px) var(--pad);
  color: var(--ink);
  background:
    linear-gradient(135deg, #dfe6c2 0%, #f5efe4 62%, #e0dac0 100%);
}

.commitment-gallery-card {
  min-height: 380px;
  clip-path: polygon(0 0, 100% 0, 100% 84%, 84% 100%, 0 100%);
  border: 9px solid rgba(255, 248, 236, 0.86);
  box-shadow: var(--soft-shadow);
}

.commitment-gallery-copy {
  padding: clamp(34px, 5vw, 72px);
  color: var(--ink);
  border: 1px solid rgba(11, 96, 72, 0.18);
  background: rgba(255, 248, 236, 0.75);
  box-shadow: 0 26px 80px rgba(73, 46, 28, 0.1);
}

.commitment-gallery-copy .kicker {
  color: var(--green);
}

.commitment-gallery-copy > p:not(.kicker) {
  color: rgba(20, 17, 13, 0.66);
}

.leadership-board-hero {
  background:
    linear-gradient(90deg, rgba(240, 90, 26, 0.11) 1px, transparent 1px),
    linear-gradient(135deg, #120d0a 0%, #24170f 62%, #120d0a 100%);
  background-size: 68px 68px, auto;
}

.leadership-portrait-wall {
  min-height: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
  perspective: none;
}

.portrait-panel,
.portrait-main,
.portrait-top,
.portrait-bottom {
  position: relative;
  inset: auto;
  width: auto;
  height: clamp(320px, 42vw, 440px);
  transform: none;
  border-radius: 0;
  clip-path: polygon(0 0, 92% 0, 100% 12%, 100% 100%, 0 100%);
}

.portrait-panel:nth-child(2) {
  transform: translateY(34px);
}

.portrait-panel:nth-child(3) {
  transform: translateY(-26px);
}

.leadership-council-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.council-card,
.council-card:nth-child(2),
.ceo-card {
  transform: none;
  display: grid;
  grid-template-rows: 300px 1fr;
  min-height: 100%;
}

.council-photo,
.ceo-card .council-photo {
  height: 300px;
}

.council-card {
  border: 1px solid rgba(189, 67, 25, 0.13);
}

.leadership-closing-strip {
  min-height: 480px;
  grid-template-columns: 0.45fr 1.55fr;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(240, 90, 26, 0.12) 1px, transparent 1px),
    linear-gradient(135deg, #15100d 0%, #261910 100%);
  background-size: 58px 58px, auto;
}

.closing-mark {
  border-radius: 0;
  border-color: rgba(240, 90, 26, 0.35);
  background: rgba(240, 90, 26, 0.1);
  clip-path: polygon(0 0, 88% 0, 100% 18%, 100% 100%, 0 100%);
}

.closing-copy {
  padding: clamp(30px, 5vw, 70px);
  border-left: 5px solid var(--orange);
  background: rgba(255, 255, 255, 0.035);
}

.contact-light-hero::before {
  top: 110px;
  right: -8vw;
  width: 42vw;
  height: 70%;
  aspect-ratio: auto;
  border-radius: 0;
  clip-path: polygon(18% 0, 100% 0, 78% 100%, 0 100%);
  opacity: 0.92;
}

.contact-form-map-section {
  background:
    linear-gradient(90deg, rgba(189, 67, 25, 0.08) 1px, transparent 1px),
    #efe3d2;
  background-size: 68px 68px;
}

section[id] {
  scroll-margin-top: 120px;
}

.identity-main-photo,
.atlas-main,
.atlas-small,
.contact-office-card {
  border-radius: 0;
  clip-path: polygon(0 0, 92% 0, 100% 13%, 100% 100%, 0 100%);
}

.atlas-small {
  border-radius: 0;
}

@keyframes premium-float {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(-18px, 0, 0) scale(1.025);
  }
}

@media (max-width: 1180px) {
  .service-pathway {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .leadership-portrait-wall {
    grid-template-columns: repeat(3, minmax(160px, 1fr));
  }
}

@media (max-width: 900px) {
  .hero {
    align-items: end;
    padding-top: 125px;
  }

  .hero-content {
    width: min(680px, 92vw);
  }

  .hero-video {
    top: 92px;
    right: 18px;
    width: calc(100% - 36px);
    height: 44vh;
    opacity: 0.36;
  }

  .final-cta,
  .service-request-panel,
  .mission-strip,
  .sustain-commitment-gallery,
  .leadership-closing-strip {
    grid-template-columns: 1fr;
  }

  .final-cta::after {
    min-height: 360px;
  }

  .service-pathway,
  .leadership-council-grid,
  .leadership-portrait-wall {
    grid-template-columns: 1fr;
  }

  .portrait-panel,
  .portrait-main,
  .portrait-top,
  .portrait-bottom,
  .portrait-panel:nth-child(2),
  .portrait-panel:nth-child(3) {
    height: 430px;
    transform: none;
  }

  .request-card {
    grid-template-columns: 1fr;
  }

  .request-card img {
    min-height: 260px;
    clip-path: none;
  }

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

@media (max-width: 640px) {
  .hero {
    min-height: 96svh;
    padding: 120px 18px 108px;
  }

  .hero::after {
    display: none;
  }

  .hero-content {
    padding: 24px 20px;
  }

  .showcase-gallery {
    grid-template-columns: 1fr;
  }

  .pathway-card {
    min-height: 330px;
  }

  .about-statement-card {
    min-height: 380px;
  }

  .council-card,
  .council-card:nth-child(2),
  .ceo-card {
    grid-template-rows: 340px 1fr;
  }

  .council-photo,
  .ceo-card .council-photo {
    height: 340px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .services-photo-mosaic .mosaic-tile,
  .services-photo-mosaic .mosaic-service-count,
  .about-identity-visual > *,
  .sustain-photo-atlas > *,
  .leadership-portrait-wall .portrait-panel,
  .contact-office-card .contact-office-photo,
  .contact-office-card .office-card-content {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ALIGNMENT FIX PASS — equal cards, clean wrapping, no home ticker */
.ticker {
  display: none !important;
}

.hero {
  padding-bottom: 72px;
}

.hero::after {
  bottom: 52px;
}

.service-pathway {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.pathway-card {
  min-width: 0;
  min-height: 326px;
  grid-template-rows: 140px 1fr;
  overflow: hidden;
}

.pathway-photo {
  height: 140px;
  min-height: 140px;
}

.pathway-card > div:last-child {
  min-width: 0;
  padding: 24px 22px 25px;
}

.pathway-card h3 {
  max-width: 100%;
  margin-bottom: 14px;
  font-size: clamp(1.18rem, 1.55vw, 1.56rem);
  line-height: 1.12;
  letter-spacing: -0.045em;
  white-space: normal;
  overflow-wrap: anywhere;
}

.pathway-card p {
  max-width: 100%;
  font-size: 0.9rem;
  line-height: 1.58;
  overflow-wrap: break-word;
}

.pathway-number {
  top: 116px;
}

.about-values-triangle-section {
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(42px, 6vw, 90px);
  align-items: center;
}

.values-triangle-stage {
  min-height: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.triangle-value-card,
.triangle-value-card:nth-child(1),
.triangle-value-card:nth-child(2),
.triangle-value-card:nth-child(3) {
  min-width: 0;
  min-height: 390px;
  transform: none;
  clip-path: polygon(0 0, 92% 0, 100% 12%, 100% 100%, 0 100%);
}

.triangle-value-content {
  padding: 26px;
}

.triangle-value-content h3,
.triangle-value-content p {
  max-width: 100%;
  overflow-wrap: break-word;
}

.triangle-value-content p {
  font-size: 0.9rem;
}

.leadership-council-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.council-card,
.council-card:nth-child(2),
.ceo-card {
  min-width: 0;
  transform: none;
  display: grid;
  grid-template-rows: 300px 1fr;
  height: 100%;
  overflow: hidden;
}

.council-photo,
.ceo-card .council-photo {
  height: 300px;
}

.council-copy {
  min-width: 0;
  padding: 26px 24px 30px;
}

.council-copy h3 {
  max-width: 100%;
  font-size: clamp(1.35rem, 1.9vw, 1.95rem);
  overflow-wrap: anywhere;
}

.council-copy p {
  max-width: 100%;
  overflow-wrap: break-word;
}

.contact-light-hero {
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.9fr);
  gap: clamp(46px, 7vw, 110px);
}

.contact-light-hero::before {
  top: 126px;
  right: var(--pad);
  width: min(30vw, 420px);
  height: min(56vh, 440px);
  clip-path: polygon(16% 0, 100% 0, 86% 100%, 0 100%);
}

.contact-office-card {
  align-self: center;
  min-height: clamp(360px, 52svh, 470px);
  max-height: 520px;
}

.contact-office-photo,
.contact-office-photo img {
  height: 100%;
}

.contact-two-square-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.contact-bento-card {
  min-width: 0;
  min-height: 300px;
  border-radius: 0;
  clip-path: polygon(0 0, 94% 0, 100% 14%, 100% 100%, 0 100%);
}

.email-card {
  border-radius: 0;
}

.services-card {
  border-radius: 0;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 8% 100%, 0 84%);
}

.contact-bento-card strong,
.contact-bento-card p {
  max-width: 100%;
  overflow-wrap: anywhere;
}

@media (max-width: 1180px) {
  .service-pathway,
  .values-triangle-stage,
  .leadership-council-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-light-hero {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
  }
}

@media (max-width: 900px) {
  .service-pathway,
  .values-triangle-stage,
  .leadership-council-grid,
  .contact-two-square-grid {
    grid-template-columns: 1fr;
  }

  .about-values-triangle-section,
  .contact-light-hero {
    grid-template-columns: 1fr;
  }

  .triangle-value-card,
  .triangle-value-card:nth-child(1),
  .triangle-value-card:nth-child(2),
  .triangle-value-card:nth-child(3) {
    min-height: 360px;
  }
}

/* FIRST-SCREEN REVEAL SAFETY — keep premium slow motion without blank hero states */
body.is-ready .service-catalog-hero .catalog-copy.reveal,
body.is-ready .about-identity-hero .about-identity-copy.reveal,
body.is-ready .sustain-field-hero .sustain-field-copy.reveal,
body.is-ready .leadership-board-hero .leadership-board-copy.reveal,
body.is-ready .contact-light-hero .contact-light-copy.reveal,
body.is-ready .service-catalog-hero .services-photo-mosaic.reveal,
body.is-ready .about-identity-hero .about-identity-visual.reveal,
body.is-ready .sustain-field-hero .sustain-photo-atlas.reveal,
body.is-ready .leadership-board-hero .leadership-portrait-wall.reveal,
body.is-ready .contact-light-hero .contact-office-card.reveal {
  opacity: 1;
  transform: none;
}

body.is-ready .service-catalog-hero .mosaic-tile,
body.is-ready .service-catalog-hero .mosaic-service-count,
body.is-ready .about-identity-hero .about-identity-visual > *,
body.is-ready .sustain-field-hero .sustain-photo-atlas > *,
body.is-ready .leadership-board-hero .portrait-panel,
body.is-ready .contact-light-hero .contact-office-photo,
body.is-ready .contact-light-hero .office-card-content {
  opacity: 1;
  transform: none;
  filter: none;
}

/* GRID CARD GEOMETRY LOCK — reveal without shifting the layout out of line */
.service-pathway .pathway-card.reveal,
.values-triangle-stage .triangle-value-card.reveal,
.leadership-council-grid .council-card.reveal,
.contact-two-square-grid .contact-bento-card.reveal,
.service-pathway .pathway-card.visible,
.values-triangle-stage .triangle-value-card.visible,
.leadership-council-grid .council-card.visible,
.contact-two-square-grid .contact-bento-card.visible {
  opacity: 1;
  transform: perspective(1100px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
}

/* PREMIUM MOTION PASS — slow architectural fly-ins, refined card surfaces */
:root {
  --grand-slow: cubic-bezier(0.12, 0.84, 0.18, 1);
}

.reveal {
  will-change: opacity, transform, filter;
}

.reveal:not(.visible) {
  filter: blur(8px);
}

.reveal.visible {
  filter: blur(0);
}

.premium-motion.reveal {
  transition:
    opacity 2.05s var(--grand-slow) var(--motion-delay, var(--delay, 0ms)),
    transform 2.05s var(--grand-slow) var(--motion-delay, var(--delay, 0ms)),
    filter 1.85s var(--grand-slow) var(--motion-delay, var(--delay, 0ms)),
    box-shadow 1.35s var(--grand-slow);
}

.service-pathway .pathway-card.premium-motion.reveal:not(.visible),
.values-triangle-stage .triangle-value-card.premium-motion.reveal:not(.visible),
.leadership-council-grid .council-card.premium-motion.reveal:not(.visible),
.contact-two-square-grid .contact-bento-card.premium-motion.reveal:not(.visible),
.about-mission-vision .about-statement-card.premium-motion.reveal:not(.visible),
.service-request-panel .premium-motion.reveal:not(.visible),
.mission-strip .premium-motion.reveal:not(.visible),
.leadership-closing-strip .premium-motion.reveal:not(.visible),
.final-cta .premium-motion.reveal:not(.visible),
.contact-form-map-section .premium-motion.reveal:not(.visible) {
  opacity: 0;
  filter: blur(18px) saturate(0.78);
  transform:
    perspective(1300px)
    translate3d(var(--fly-x, 0), var(--fly-y, 90px), 0)
    rotateX(var(--fly-rx, 0deg))
    rotateY(var(--fly-ry, 0deg))
    rotate(var(--fly-r, 0deg))
    scale(0.9);
}

.service-pathway .pathway-card.premium-motion.visible,
.values-triangle-stage .triangle-value-card.premium-motion.visible,
.leadership-council-grid .council-card.premium-motion.visible,
.contact-two-square-grid .contact-bento-card.premium-motion.visible,
.about-mission-vision .about-statement-card.premium-motion.visible,
.service-request-panel .premium-motion.visible,
.mission-strip .premium-motion.visible,
.leadership-closing-strip .premium-motion.visible,
.final-cta .premium-motion.visible,
.contact-form-map-section .premium-motion.visible {
  opacity: 1;
  filter: none;
  transform:
    perspective(1300px)
    translate3d(0, 0, 0)
    rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg))
    rotate(0deg)
    scale(1);
}

.service-pathway .pathway-card:nth-child(1) { --fly-x: -170px; --fly-y: 115px; --fly-r: -7deg; --fly-ry: -10deg; }
.service-pathway .pathway-card:nth-child(2) { --fly-x: 0; --fly-y: 150px; --fly-r: 3deg; --fly-rx: 8deg; }
.service-pathway .pathway-card:nth-child(3) { --fly-x: 170px; --fly-y: 105px; --fly-r: 7deg; --fly-ry: 10deg; }
.service-pathway .pathway-card:nth-child(4) { --fly-x: -150px; --fly-y: -90px; --fly-r: 5deg; --fly-ry: 8deg; }
.service-pathway .pathway-card:nth-child(5) { --fly-x: 0; --fly-y: -120px; --fly-r: -3deg; --fly-rx: -8deg; }
.service-pathway .pathway-card:nth-child(6) { --fly-x: 150px; --fly-y: -90px; --fly-r: -6deg; --fly-ry: -8deg; }

.values-triangle-stage .triangle-value-card:nth-child(1) { --fly-x: -160px; --fly-y: -95px; --fly-r: -9deg; --fly-ry: -12deg; }
.values-triangle-stage .triangle-value-card:nth-child(2) { --fly-x: 0; --fly-y: 155px; --fly-r: 0deg; --fly-rx: 10deg; }
.values-triangle-stage .triangle-value-card:nth-child(3) { --fly-x: 160px; --fly-y: -95px; --fly-r: 9deg; --fly-ry: 12deg; }

.about-mission-vision .about-statement-card:nth-child(1) { --fly-x: -180px; --fly-y: 85px; --fly-r: -5deg; --fly-ry: -8deg; }
.about-mission-vision .about-statement-card:nth-child(2) { --fly-x: 180px; --fly-y: -85px; --fly-r: 5deg; --fly-ry: 8deg; }

.leadership-council-grid .council-card:nth-child(1) { --fly-x: -170px; --fly-y: 110px; --fly-r: -6deg; --fly-ry: -10deg; }
.leadership-council-grid .council-card:nth-child(2) { --fly-x: 0; --fly-y: -135px; --fly-r: 2deg; --fly-rx: -9deg; }
.leadership-council-grid .council-card:nth-child(3) { --fly-x: 170px; --fly-y: 110px; --fly-r: 6deg; --fly-ry: 10deg; }

.contact-two-square-grid .contact-bento-card:nth-child(1) { --fly-x: -160px; --fly-y: 95px; --fly-r: -5deg; }
.contact-two-square-grid .contact-bento-card:nth-child(2) { --fly-x: 160px; --fly-y: -95px; --fly-r: 5deg; }

.service-pathway .pathway-card::before,
.values-triangle-stage .triangle-value-card::before,
.leadership-council-grid .council-card::before,
.contact-two-square-grid .contact-bento-card::before {
  transition:
    opacity 1.2s var(--grand-slow),
    transform 1.8s var(--grand-slow);
}

.service-pathway .pathway-card.premium-motion.visible::before,
.values-triangle-stage .triangle-value-card.premium-motion.visible::before,
.leadership-council-grid .council-card.premium-motion.visible::before,
.contact-two-square-grid .contact-bento-card.premium-motion.visible::before {
  animation: premium-sheen 5.8s var(--grand-slow) calc(var(--motion-delay, 0ms) + 760ms) both;
}

@keyframes premium-sheen {
  0% {
    opacity: 0;
    transform: translate3d(-145%, 0, 0) rotate(15deg);
  }
  34% {
    opacity: 0.38;
  }
  72%,
  100% {
    opacity: 0;
    transform: translate3d(145%, 0, 0) rotate(15deg);
  }
}

/* Hero image pieces: fly individually, then settle into slow motion */
.services-photo-mosaic .premium-piece,
.about-identity-visual .premium-piece,
.sustain-photo-atlas .premium-piece,
.leadership-portrait-wall .premium-piece,
.contact-office-card .premium-piece {
  transition:
    opacity 2.15s var(--grand-slow) var(--piece-delay, 0ms),
    transform 2.15s var(--grand-slow) var(--piece-delay, 0ms),
    filter 2.1s var(--grand-slow) var(--piece-delay, 0ms);
  will-change: opacity, transform, filter;
}

.services-photo-mosaic:not(.visible) .mosaic-large,
.about-identity-visual:not(.visible) .identity-main-photo,
.sustain-photo-atlas:not(.visible) .atlas-main,
.leadership-portrait-wall:not(.visible) .portrait-main,
.contact-office-card:not(.visible) .contact-office-photo {
  opacity: 0;
  filter: blur(18px) saturate(0.75);
  transform: translate3d(-115px, 86px, 0) rotate(-7deg) scale(0.88);
}

.services-photo-mosaic:not(.visible) .mosaic-small.top,
.about-identity-visual:not(.visible) .identity-card-one,
.sustain-photo-atlas:not(.visible) .atlas-people,
.leadership-portrait-wall:not(.visible) .portrait-top {
  opacity: 0;
  filter: blur(16px) saturate(0.75);
  transform: translate3d(130px, -90px, 0) rotate(8deg) scale(0.86);
}

.services-photo-mosaic:not(.visible) .mosaic-small.bottom,
.about-identity-visual:not(.visible) .identity-card-two,
.sustain-photo-atlas:not(.visible) .atlas-community,
.leadership-portrait-wall:not(.visible) .portrait-bottom {
  opacity: 0;
  filter: blur(16px) saturate(0.75);
  transform: translate3d(145px, 100px, 0) rotate(-8deg) scale(0.88);
}

.services-photo-mosaic:not(.visible) .mosaic-service-count,
.about-identity-visual:not(.visible) .identity-caption,
.sustain-photo-atlas:not(.visible) .atlas-note,
.contact-office-card:not(.visible) .office-card-content {
  opacity: 0;
  filter: blur(14px);
  transform: translate3d(0, 95px, 0) scale(0.9);
}

.portrait-panel:nth-child(2) { --piece-rest: translateY(34px); }
.portrait-panel:nth-child(3) { --piece-rest: translateY(-26px); }

.services-photo-mosaic.visible .premium-piece,
.about-identity-visual.visible .premium-piece,
.sustain-photo-atlas.visible .premium-piece,
.contact-office-card.visible .premium-piece {
  opacity: 1;
  filter: none;
  transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
}

.leadership-portrait-wall.visible .premium-piece {
  opacity: 1;
  filter: none;
  transform: var(--piece-rest, translate3d(0, 0, 0)) rotate(0deg) scale(1);
}

.services-photo-mosaic.visible .mosaic-tile img,
.about-identity-visual.visible img,
.sustain-photo-atlas.visible img,
.leadership-portrait-wall.visible .portrait-panel img,
.contact-office-card.visible .contact-office-photo img,
.service-pathway .pathway-card.visible .pathway-photo img,
.values-triangle-stage .triangle-value-card.visible img,
.leadership-council-grid .council-card.visible .council-photo img {
  animation: premium-image-drift 15s ease-in-out calc(var(--piece-delay, 0ms) + 1s) infinite alternate;
}

@keyframes premium-image-drift {
  0% {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  100% {
    transform: scale(1.075) translate3d(0, -12px, 0);
  }
}

/* Executive council cards: stronger, more premium middle-section treatment */
.leadership-council-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 4%, rgba(240, 90, 26, 0.13), transparent 32%),
    linear-gradient(135deg, #f6efe4 0%, #eee5d7 48%, #f9f3ea 100%);
}

.leadership-council-section::before {
  content: "";
  position: absolute;
  inset: 7% var(--pad) auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240, 90, 26, 0.55), transparent);
}

.leadership-council-grid {
  gap: clamp(20px, 2.6vw, 34px);
  perspective: 1500px;
}

.council-card,
.council-card:nth-child(2),
.ceo-card {
  position: relative;
  isolation: isolate;
  grid-template-rows: 342px 1fr;
  border: 1px solid rgba(189, 67, 25, 0.2);
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.98), rgba(239, 227, 210, 0.92));
  box-shadow:
    0 26px 76px rgba(73, 46, 28, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  clip-path: polygon(0 0, 94% 0, 100% 8%, 100% 100%, 0 100%);
}

.council-card::before {
  content: "";
  position: absolute;
  z-index: 4;
  inset: -40% auto -40% -54%;
  width: 42%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.52), transparent);
  transform: translate3d(-145%, 0, 0) rotate(15deg);
}

.council-card::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 12px 12px auto;
  height: 5px;
  background: linear-gradient(90deg, var(--orange), rgba(246, 184, 63, 0.75), transparent);
}

.council-photo,
.ceo-card .council-photo {
  height: 318px;
  margin: 12px 12px 0;
  clip-path: polygon(0 0, 100% 0, 100% 91%, 0 100%);
  background: linear-gradient(135deg, rgba(240, 90, 26, 0.12), rgba(9, 12, 11, 0.08));
}

.council-photo img {
  filter: saturate(0.95) contrast(1.04);
}

.council-copy {
  padding: 28px 26px 32px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.12), rgba(255, 253, 248, 0.86));
}

.council-copy > span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.council-copy > span::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
}

.council-card.premium-motion.visible:hover {
  border-color: rgba(240, 90, 26, 0.36);
  box-shadow:
    0 36px 95px rgba(73, 46, 28, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  transform:
    perspective(1300px)
    translate3d(0, -10px, 0)
    rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg));
}

/* Services and values surfaces: motion-ready, still perfectly aligned */
.pathway-card {
  isolation: isolate;
  border-color: rgba(255, 248, 236, 0.18);
  box-shadow:
    0 26px 76px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.pathway-card::before {
  content: "";
  position: absolute;
  z-index: 4;
  inset: -55% auto -55% -55%;
  width: 46%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 248, 236, 0.32), transparent);
}

.triangle-value-card {
  isolation: isolate;
  border: 1px solid rgba(255, 248, 236, 0.18);
}

.triangle-value-card::before {
  content: "";
  position: absolute;
  z-index: 4;
  inset: -55% auto -55% -55%;
  width: 44%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(246, 184, 63, 0.28), transparent);
}

.triangle-value-content span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  color: var(--ink);
  background: linear-gradient(135deg, var(--amber), var(--orange));
}

/* Contact office: blend the image into the orange architectural plate */
.contact-light-hero::before {
  opacity: 0.78;
  filter: saturate(1.15);
}

.contact-office-card {
  isolation: isolate;
  overflow: visible;
  clip-path: none;
  background: transparent;
}

.contact-office-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -24px -24px 28px 42px;
  background:
    linear-gradient(135deg, rgba(240, 90, 26, 0.98), rgba(246, 184, 63, 0.78));
  clip-path: polygon(13% 0, 100% 0, 88% 100%, 0 100%);
  box-shadow: 0 34px 90px rgba(240, 90, 26, 0.24);
}

.contact-office-photo {
  inset: 14px;
  overflow: hidden;
  clip-path: polygon(0 0, 92% 0, 100% 13%, 100% 100%, 0 100%);
  box-shadow:
    0 26px 80px rgba(9, 12, 11, 0.22),
    0 0 0 1px rgba(255, 248, 236, 0.32);
}

.contact-office-card::after {
  inset: 14px;
  clip-path: polygon(0 0, 92% 0, 100% 13%, 100% 100%, 0 100%);
  background:
    linear-gradient(0deg, rgba(9, 12, 11, 0.9) 0%, rgba(9, 12, 11, 0.18) 66%),
    linear-gradient(125deg, rgba(240, 90, 26, 0.24), transparent 45%);
}

.office-card-content {
  margin: 14px;
  padding: 42px;
}

@media (max-width: 900px) {
  .contact-office-card::before {
    inset: -18px -14px 24px 24px;
  }

  .portrait-panel:nth-child(2),
  .portrait-panel:nth-child(3) {
    --piece-rest: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .premium-motion.reveal,
  .premium-piece,
  .services-photo-mosaic.visible .mosaic-tile img,
  .about-identity-visual.visible img,
  .sustain-photo-atlas.visible img,
  .leadership-portrait-wall.visible .portrait-panel img,
  .contact-office-card.visible .contact-office-photo img,
  .service-pathway .pathway-card.visible .pathway-photo img,
  .values-triangle-stage .triangle-value-card.visible img,
  .leadership-council-grid .council-card.visible .council-photo img {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }
}

/* HOME TONE-DOWN PASS — same Jeva warmth, less glare */
body[data-page="home"] {
  --ivory: #e9ddca;
  --ivory-2: #dccdb7;
  --cream-panel: #f3e6d2;
  background: #e9ddca;
}

body[data-page="home"] .nav-shell {
  background: rgba(232, 218, 197, 0.88);
  border-color: rgba(189, 67, 25, 0.22);
  box-shadow: 0 20px 70px rgba(66, 42, 24, 0.16);
}

body[data-page="home"] .nav-shell.scrolled {
  background: rgba(232, 218, 197, 0.96);
}

body[data-page="home"] .hero {
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(20, 17, 13, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, #e7dac7 0%, #eadfce 58%, #dfd0ba 100%);
  background-size: 70px 70px, auto;
}

body[data-page="home"] .hero::before {
  z-index: 0;
  opacity: 0.58;
  filter: saturate(0.88) brightness(0.94);
  box-shadow:
    -26px 30px 80px rgba(73, 46, 28, 0.12),
    inset 0 0 0 10px rgba(232, 218, 197, 0.72);
}

body[data-page="home"] .hero-video {
  z-index: 1;
  opacity: 0.82;
  filter: saturate(0.86) contrast(0.96) brightness(0.86);
}

body[data-page="home"] .hero-content {
  z-index: 3;
  background: linear-gradient(90deg, rgba(243, 230, 210, 0.88), rgba(232, 218, 197, 0.42));
  box-shadow: 28px 34px 90px rgba(73, 46, 28, 0.13);
}

body[data-page="home"] .ghost {
  background: rgba(243, 230, 210, 0.68);
}

body[data-page="home"] .home-showcase {
  background:
    linear-gradient(90deg, rgba(240, 90, 26, 0.075) 1px, transparent 1px),
    #dccdb7;
}

body[data-page="home"] .premium-stats,
body[data-page="home"] .final-cta {
  background:
    linear-gradient(135deg, #e6d8c4 0%, #efe3d0 58%, #ddc6ad 100%);
}

body[data-page="home"] .site-footer {
  background: linear-gradient(180deg, #e7dac7 0%, #dfd0ba 100%);
}

body[data-page="home"] .hero::after {
  z-index: 3;
  color: rgba(20, 17, 13, 0.46);
}

/* Restore dramatic hero-piece choreography with safe first-screen visibility */
body.is-ready .service-catalog-hero .services-photo-mosaic:not(.visible) .mosaic-large,
body.is-ready .about-identity-hero .about-identity-visual:not(.visible) .identity-main-photo,
body.is-ready .sustain-field-hero .sustain-photo-atlas:not(.visible) .atlas-main,
body.is-ready .leadership-board-hero .leadership-portrait-wall:not(.visible) .portrait-main,
body.is-ready .contact-light-hero .contact-office-card:not(.visible) .contact-office-photo {
  opacity: 0;
  filter: blur(18px) saturate(0.75);
  transform: translate3d(-115px, 86px, 0) rotate(-7deg) scale(0.88);
}

body.is-ready .service-catalog-hero .services-photo-mosaic:not(.visible) .mosaic-small.top,
body.is-ready .about-identity-hero .about-identity-visual:not(.visible) .identity-card-one,
body.is-ready .sustain-field-hero .sustain-photo-atlas:not(.visible) .atlas-people,
body.is-ready .leadership-board-hero .leadership-portrait-wall:not(.visible) .portrait-top {
  opacity: 0;
  filter: blur(16px) saturate(0.75);
  transform: translate3d(130px, -90px, 0) rotate(8deg) scale(0.86);
}

body.is-ready .service-catalog-hero .services-photo-mosaic:not(.visible) .mosaic-small.bottom,
body.is-ready .about-identity-hero .about-identity-visual:not(.visible) .identity-card-two,
body.is-ready .sustain-field-hero .sustain-photo-atlas:not(.visible) .atlas-community,
body.is-ready .leadership-board-hero .leadership-portrait-wall:not(.visible) .portrait-bottom {
  opacity: 0;
  filter: blur(16px) saturate(0.75);
  transform: translate3d(145px, 100px, 0) rotate(-8deg) scale(0.88);
}

body.is-ready .service-catalog-hero .services-photo-mosaic:not(.visible) .mosaic-service-count,
body.is-ready .about-identity-hero .about-identity-visual:not(.visible) .identity-caption,
body.is-ready .sustain-field-hero .sustain-photo-atlas:not(.visible) .atlas-note,
body.is-ready .contact-light-hero .contact-office-card:not(.visible) .office-card-content {
  opacity: 0;
  filter: blur(14px);
  transform: translate3d(0, 95px, 0) scale(0.9);
}

/* WHOLE-SITE MOTION EXTENSION: home bands and sustainability framework */
.home-showcase .premium-motion.reveal:not(.visible),
.premium-stats .premium-motion.reveal:not(.visible),
.sustain-photo-framework .framework-row.premium-motion.reveal:not(.visible),
.sustain-commitment-gallery .premium-motion.reveal:not(.visible) {
  opacity: 0;
  filter: blur(16px) saturate(0.8);
  transform:
    perspective(1300px)
    translate3d(var(--fly-x, 0), var(--fly-y, 92px), 0)
    rotateX(var(--fly-rx, 0deg))
    rotateY(var(--fly-ry, 0deg))
    rotate(var(--fly-r, 0deg))
    scale(0.92);
}

.home-showcase .premium-motion.visible,
.premium-stats .premium-motion.visible,
.sustain-photo-framework .framework-row.premium-motion.visible,
.sustain-commitment-gallery .premium-motion.visible {
  opacity: 1;
  filter: none;
  transform:
    perspective(1300px)
    translate3d(0, 0, 0)
    rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg))
    rotate(0deg)
    scale(1);
}

.home-showcase .showcase-copy { --fly-x: -130px; --fly-y: 80px; --fly-r: -4deg; --fly-ry: -8deg; }
.home-showcase .showcase-gallery { --fly-x: 140px; --fly-y: 90px; --fly-r: 5deg; --fly-ry: 8deg; }
.premium-stats .stats-intro { --fly-x: -120px; --fly-y: 100px; --fly-r: -3deg; }
.premium-stats .stats-grid { --fly-x: 120px; --fly-y: -90px; --fly-r: 3deg; }

.sustain-photo-framework .framework-row:nth-child(1) { --fly-x: -170px; --fly-y: 95px; --fly-r: -4deg; --fly-ry: -8deg; }
.sustain-photo-framework .framework-row:nth-child(2) { --fly-x: 170px; --fly-y: 95px; --fly-r: 4deg; --fly-ry: 8deg; }
.sustain-photo-framework .framework-row:nth-child(3) { --fly-x: -170px; --fly-y: -95px; --fly-r: 4deg; --fly-ry: -8deg; }
.sustain-photo-framework .framework-row:nth-child(4) { --fly-x: 170px; --fly-y: -95px; --fly-r: -4deg; --fly-ry: 8deg; }

.sustain-commitment-gallery .commitment-gallery-card { --fly-x: -155px; --fly-y: 100px; --fly-r: -5deg; --fly-ry: -8deg; }
.sustain-commitment-gallery .commitment-gallery-copy { --fly-x: 155px; --fly-y: -100px; --fly-r: 5deg; --fly-ry: 8deg; }

.framework-row {
  position: relative;
  isolation: isolate;
  box-shadow: 0 28px 80px rgba(7, 19, 15, 0.09);
  transition:
    opacity 2.05s var(--grand-slow) var(--motion-delay, var(--delay, 0ms)),
    transform 2.05s var(--grand-slow) var(--motion-delay, var(--delay, 0ms)),
    filter 1.85s var(--grand-slow) var(--motion-delay, var(--delay, 0ms)),
    box-shadow 1.35s var(--grand-slow);
}

.framework-row::before {
  content: "";
  position: absolute;
  z-index: 5;
  inset: -55% auto -55% -52%;
  width: 38%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(201, 216, 106, 0.25), transparent);
  opacity: 0;
}

.framework-row.premium-motion.visible::before {
  animation: premium-sheen 6.2s var(--grand-slow) calc(var(--motion-delay, 0ms) + 700ms) both;
}

.framework-row.visible .framework-image img,
.commitment-gallery-card.visible img,
.home-showcase .image-frame.visible img {
  animation: premium-image-drift 15s ease-in-out calc(var(--motion-delay, 0ms) + 1s) infinite alternate;
}

.commitment-gallery-card,
.commitment-gallery-copy {
  transition:
    opacity 2.05s var(--grand-slow) var(--motion-delay, var(--delay, 0ms)),
    transform 2.05s var(--grand-slow) var(--motion-delay, var(--delay, 0ms)),
    filter 1.85s var(--grand-slow) var(--motion-delay, var(--delay, 0ms));
}

.hero-truck-visual {
  position: absolute;
  z-index: -3;
  right: var(--pad);
  top: 145px;
  width: min(56vw, 860px);
  height: calc(100% - 230px);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  overflow: hidden;
}

/* moving speed streaks behind the truck */
.hero-truck-visual::before,
.hero-truck-visual::after {
  content: "";
  position: absolute;
  left: -12%;
  right: -12%;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 153, 51, 0.08) 15%,
    rgba(255, 153, 51, 0.18) 40%,
    rgba(255, 153, 51, 0.08) 70%,
    transparent 100%
  );
  filter: blur(8px);
  animation: speedLines 1.8s linear infinite;
}

.hero-truck-visual::before {
  top: 38%;
}

.hero-truck-visual::after {
  top: 58%;
  animation-delay: 0.9s;
}

.hero-truck-visual img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  object-position: center right;
  filter: drop-shadow(0 34px 46px rgba(0, 0, 0, 0.28));
  transform: translateX(80px);
  opacity: 0;
  animation:
    truckEnter 1.2s ease-out forwards,
    truckCruise 3.6s ease-in-out 1.2s infinite;
}

/* subtle moving shadow / ground motion */
.hero-truck-visual .truck-ground,
.hero-truck-visual::marker {
  display: none;
}

@keyframes truckEnter {
  0% {
    transform: translateX(110px) scale(0.98);
    opacity: 0;
  }
  60% {
    transform: translateX(-8px) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(0) scale(1);
    opacity: 1;
  }
}

@keyframes truckCruise {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(10px);
  }
  50% {
    transform: translateX(18px);
  }
  75% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes speedLines {
  0% {
    transform: translateX(0);
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  100% {
    transform: translateX(-140px);
    opacity: 0;
  }
}


/* HOME HERO — MOBILE TRUCK FINAL FIX */
@media (max-width: 700px) {
  body[data-page="home"] .hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 88px 20px 38px;
    overflow: hidden;
    background:
      linear-gradient(rgba(9, 12, 11, 0.045) 1px, transparent 1px),
      linear-gradient(90deg, rgba(9, 12, 11, 0.045) 1px, transparent 1px),
      linear-gradient(135deg, #fffdf8 0%, #f3eadb 100%);
    background-size: 34px 34px, 34px 34px, auto;
  }

  body[data-page="home"] .hero-video,
  body[data-page="home"] .hero-noise {
    display: none !important;
  }

  body[data-page="home"] .hero-truck-visual {
    position: relative !important;
    order: 1;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    width: 100% !important;
    height: 185px !important;
    min-height: 185px;
    margin: 0;
    padding: 12px 0;
    z-index: 10 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    pointer-events: none;
    border: 1px solid rgba(240, 90, 26, 0.14);
    border-radius: 24px 58px 24px 24px;
    background: rgba(255, 253, 248, 0.88);
    box-shadow: 0 18px 45px rgba(126, 67, 28, 0.12);
  }

  body[data-page="home"] .hero-truck-visual::before {
    content: "";
    position: absolute;
    left: 9%;
    right: 9%;
    bottom: 32px;
    height: 9px;
    border-radius: 999px;
    background: rgba(9, 12, 11, 0.16);
    filter: blur(6px);
    z-index: 1;
  }

  body[data-page="home"] .hero-truck-visual::after {
    content: "";
    position: absolute;
    left: -30%;
    right: -30%;
    top: 52%;
    height: 3px;
    z-index: 1;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(240, 90, 26, 0.16),
      rgba(246, 184, 63, 0.32),
      transparent
    );
    filter: blur(2px);
    animation: mobileSpeedLine 1.7s linear infinite;
  }

  body[data-page="home"] .hero-truck-visual img {
    position: relative !important;
    z-index: 3 !important;
    display: block !important;
    width: 138% !important;
    max-width: none !important;
    height: auto !important;
    max-height: 170px !important;
    object-fit: contain !important;
    object-position: center !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none;
    filter: drop-shadow(0 16px 20px rgba(0, 0, 0, 0.22));
    animation: mobileTruckForward 4s ease-in-out infinite;
  }

  body[data-page="home"] .hero-content {
    position: relative;
    order: 2;
    z-index: 5;
    width: 100% !important;
    max-width: 100% !important;
    padding: 26px 18px 24px;
    border-left: 3px solid var(--orange);
    border-bottom: 1px solid rgba(240, 90, 26, 0.34);
    background: rgba(255, 253, 248, 0.88);
    box-shadow: 0 20px 55px rgba(126, 67, 28, 0.12);
    backdrop-filter: blur(10px);
  }

  body[data-page="home"] .hero-content::before {
    display: none;
  }

  body[data-page="home"] .hero .kicker {
    gap: 8px;
    margin-bottom: 13px;
    font-size: 0.56rem;
    letter-spacing: 0.15em;
  }

  body[data-page="home"] .hero .kicker::before {
    width: 28px;
  }

  body[data-page="home"] .hero h1 {
    max-width: 100%;
    font-size: clamp(1.85rem, 9vw, 2.55rem);
    line-height: 1.05;
    letter-spacing: -0.055em;
  }

  body[data-page="home"] .hero-line {
    max-width: 100%;
    margin-top: 14px;
    font-size: 0.86rem;
    line-height: 1.6;
  }

  body[data-page="home"] .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 24px;
  }

  body[data-page="home"] .hero-actions .button {
    width: 100%;
    min-height: 48px;
    padding: 0 18px;
    font-size: 0.64rem;
  }
}

@keyframes mobileTruckForward {
  0%,
  100% {
    transform: translateX(-10px);
  }

  50% {
    transform: translateX(14px);
  }
}

@keyframes mobileSpeedLine {
  0% {
    transform: translateX(90px);
    opacity: 0;
  }

  30% {
    opacity: 1;
  }

  100% {
    transform: translateX(-100px);
    opacity: 0;
  }
}

/* CONTACT HERO — remove orange vertical shape on mobile only */
@media (max-width: 700px) {
  body[data-page="contact"] .contact-light-hero::before {
    display: none !important;
    content: none !important;
  }
}

/* MOBILE PERFORMANCE PATCH — keep animation, remove slow settling */
@media (max-width: 700px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  /* Navbar should form correctly immediately */
  .nav-shell {
    top: 12px !important;
    left: 20px !important;
    right: 20px !important;
    height: 64px !important;
    transform: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    transition:
      background 0.22s ease,
      border-color 0.22s ease,
      box-shadow 0.22s ease !important;
  }

  .nav-shell.scrolled {
    top: 12px !important;
  }

  .nav-toggle {
    transition: none !important;
  }

  .nav-toggle span {
    transition: transform 0.22s ease !important;
  }

  .nav-links {
    transition: transform 0.32s ease !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  /* Keep reveal animation, but remove heavy blur on mobile */
  .reveal,
  body[data-page="home"] .reveal,
  .premium-motion.reveal {
    transition:
      opacity 0.75s var(--ease) var(--delay, 0ms),
      transform 0.75s var(--ease) var(--delay, 0ms) !important;
  }

  .reveal:not(.visible),
  .premium-motion.reveal:not(.visible) {
    filter: none !important;
  }

  .reveal.from-left {
    transform: translate3d(-32px, 0, 0);
  }

  .reveal.from-right {
    transform: translate3d(32px, 0, 0);
  }

  body[data-page="home"] .reveal {
    transform: translate3d(0, 34px, 0);
  }

  body[data-page="home"] .reveal.from-left {
    transform: translate3d(-34px, 0, 0);
  }

  body[data-page="home"] .reveal.from-right {
    transform: translate3d(34px, 0, 0);
  }

  .reveal.visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) !important;
    filter: none !important;
  }

  /* Keep hero title stable on mobile */
  .hero-char,
  .hero-word,
  .hero-space {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }

  body.is-ready .hero-char,
  body[data-page="home"].is-ready .hero-char {
    animation-duration: 0.45s !important;
    animation-delay: 0ms !important;
  }

  /* Prevent first-screen sections from loading shifted sideways */
  .service-catalog-hero,
  .about-identity-hero,
  .sustain-field-hero,
  .leadership-board-hero,
  .contact-light-hero {
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    grid-template-columns: 1fr !important;
  }

  /* Stop mobile sections from holding huge desktop heights */
  .services-photo-mosaic,
  .about-identity-visual,
  .sustain-photo-atlas,
  .leadership-portrait-wall,
  .contact-office-card {
    min-height: auto !important;
  }

  /* Keep truck animation but make it lighter */
  body[data-page="home"] .hero-truck-visual img {
    animation: mobileTruckForward 3.2s ease-in-out infinite !important;
    will-change: transform;
  }

  body[data-page="home"] .hero-truck-visual::after {
    animation: mobileSpeedLine 1.4s linear infinite !important;
  }
}

/* MOBILE IMAGE VISUAL FIX — restore hero pictures */
@media (max-width: 700px) {
  .services-photo-mosaic {
    position: relative !important;
    min-height: 430px !important;
    width: 100% !important;
    display: block !important;
    margin-top: 28px;
  }

  .about-identity-visual {
    position: relative !important;
    min-height: 470px !important;
    width: 100% !important;
    display: block !important;
    margin-top: 34px;
  }

  .sustain-photo-atlas {
    position: relative !important;
    min-height: 470px !important;
    width: 100% !important;
    display: block !important;
    margin-top: 34px;
  }

  .services-photo-mosaic .mosaic-tile,
  .about-identity-visual .identity-main-photo,
  .about-identity-visual .identity-floating-card,
  .about-identity-visual .identity-caption,
  .sustain-photo-atlas .atlas-photo,
  .sustain-photo-atlas .atlas-note {
    opacity: 1 !important;
    visibility: visible !important;
    filter: none !important;
  }

  .services-photo-mosaic .mosaic-large {
    inset: 0 10% 18% 0 !important;
  }

  .services-photo-mosaic .mosaic-small.top {
    top: 4% !important;
    right: 0 !important;
    width: 42% !important;
    height: 32% !important;
  }

  .services-photo-mosaic .mosaic-small.bottom {
    right: 0 !important;
    bottom: 0 !important;
    width: 50% !important;
    height: 36% !important;
  }

  .services-photo-mosaic .mosaic-service-count {
    right: 18% !important;
    bottom: 12% !important;
    width: 105px !important;
  }

  .about-identity-visual .identity-main-photo {
    inset: 0 4% 12% 4% !important;
  }

  .about-identity-visual .identity-card-one {
    top: 14% !important;
    right: 0 !important;
    width: 44% !important;
    height: 27% !important;
  }

  .about-identity-visual .identity-card-two {
    left: 0 !important;
    bottom: 0 !important;
    width: 46% !important;
    height: 30% !important;
  }

  .about-identity-visual .identity-caption {
    right: 0 !important;
    bottom: 3% !important;
    width: 54% !important;
  }

  .sustain-photo-atlas .atlas-main {
    inset: 0 4% 7% 4% !important;
  }

  .sustain-photo-atlas .atlas-people {
    left: 0 !important;
    bottom: 3% !important;
    width: 42% !important;
    height: 29% !important;
  }

  .sustain-photo-atlas .atlas-community {
    top: 10% !important;
    right: 0 !important;
    width: 42% !important;
    height: 29% !important;
  }

  .sustain-photo-atlas .atlas-note {
    right: 0 !important;
    bottom: 4% !important;
    width: 170px !important;
  }
}

/* ALL MOBILE HEROES — VISIBLE PREMIUM WORD REVEAL */
@media (max-width: 700px) {
  /* Make mobile page entrance faster so hero animation is visible */
  body[data-page="home"].is-entering .transition-screen,
  body[data-page="services"].is-entering .transition-screen,
  body[data-page="about"].is-entering .transition-screen,
  body[data-page="sustainability"].is-entering .transition-screen,
  body[data-page="team"].is-entering .transition-screen,
  body[data-page="contact"].is-entering .transition-screen {
    animation-duration: 0.45s !important;
  }

  /* Kicker animation */
  body[data-page="home"] .hero-content .kicker,
  body[data-page="services"] .catalog-copy .kicker,
  body[data-page="about"] .about-identity-copy .kicker,
  body[data-page="sustainability"] .sustain-field-copy .kicker,
  body[data-page="team"] .leadership-board-copy .kicker,
  body[data-page="contact"] .contact-light-copy .kicker {
    opacity: 0;
    transform: translate3d(-18px, 0, 0);
    animation: mobileHeroKickerSlide 0.45s ease-out 0.42s forwards !important;
  }

  /* Hero heading lines */
  body[data-page="home"] .hero-content h1 .mobile-hero-line,
  body[data-page="services"] .catalog-copy h1 .mobile-hero-line,
  body[data-page="about"] .about-identity-title .mobile-hero-line,
  body[data-page="sustainability"] .sustain-field-copy h1 .mobile-hero-line,
  body[data-page="team"] .leadership-board-copy h1 .mobile-hero-line,
  body[data-page="contact"] .contact-light-copy h1 .mobile-hero-line {
    display: block;
    overflow: hidden;
  }

  /* Hero heading words */
  body[data-page="home"] .hero-content h1 .mobile-hero-word,
  body[data-page="services"] .catalog-copy h1 .mobile-hero-word,
  body[data-page="about"] .about-identity-title .mobile-hero-word,
  body[data-page="sustainability"] .sustain-field-copy h1 .mobile-hero-word,
  body[data-page="team"] .leadership-board-copy h1 .mobile-hero-word,
  body[data-page="contact"] .contact-light-copy h1 .mobile-hero-word {
    display: inline-block !important;
    opacity: 0;
    transform: translate3d(0, 34px, 0) scale(0.96);
    animation: mobileHeroWordReveal 0.68s cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
    animation-delay: calc(0.48s + var(--word-i) * 0.075s) !important;
    will-change: opacity, transform;
  }

  /* Second line gets a slightly more dramatic entrance */
  body[data-page="home"] .hero-content h1 .mobile-hero-line:nth-child(2) .mobile-hero-word,
  body[data-page="services"] .catalog-copy h1 .mobile-hero-line:nth-child(2) .mobile-hero-word,
  body[data-page="about"] .about-identity-title .mobile-hero-line:nth-child(2) .mobile-hero-word,
  body[data-page="sustainability"] .sustain-field-copy h1 .mobile-hero-line:nth-child(2) .mobile-hero-word,
  body[data-page="team"] .leadership-board-copy h1 .mobile-hero-line:nth-child(2) .mobile-hero-word,
  body[data-page="contact"] .contact-light-copy h1 .mobile-hero-line:nth-child(2) .mobile-hero-word {
    animation-delay: calc(0.62s + var(--word-i) * 0.075s) !important;
  }

  /* Hero paragraph animation */
  body[data-page="home"] .hero-content .hero-line,
  body[data-page="services"] .catalog-copy > p:not(.kicker),
  body[data-page="about"] .about-identity-copy > p:last-child,
  body[data-page="sustainability"] .sustain-field-copy > p:not(.kicker),
  body[data-page="team"] .leadership-board-copy > p:not(.kicker),
  body[data-page="contact"] .contact-light-copy > p:not(.kicker) {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
    animation: mobileHeroFadeUp 0.5s ease-out 1.05s forwards !important;
  }

  /* Buttons / tags animation */
  body[data-page="home"] .hero-content .hero-actions,
  body[data-page="services"] .catalog-actions,
  body[data-page="sustainability"] .sustain-field-tags,
  body[data-page="team"] .leadership-hero-tags,
  body[data-page="contact"] .contact-light-actions {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
    animation: mobileHeroFadeUp 0.5s ease-out 1.18s forwards !important;
  }
}

@keyframes mobileHeroWordReveal {
  0% {
    opacity: 0;
    transform: translate3d(0, 34px, 0) scale(0.96);
  }

  65% {
    opacity: 1;
    transform: translate3d(0, -2px, 0) scale(1);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes mobileHeroKickerSlide {
  from {
    opacity: 0;
    transform: translate3d(-18px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes mobileHeroFadeUp {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* PHONE NUMBER STYLING */
.footer-phone {
  display: inline-block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.58);
}

.footer-phone:hover {
  color: var(--orange);
}

body[data-page="home"] .footer-phone {
  color: rgba(9, 12, 11, 0.58);
}

body[data-page="home"] .footer-phone:hover {
  color: var(--orange);
}

.green-card-email {
  color: inherit;
}

.green-card-email:hover {
  color: var(--amber);
}

.green-card-phone {
  display: inline-flex;
  width: fit-content;
  margin-top: 12px;
  margin-bottom: 8px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.25rem, 2vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--white);
}

.green-card-phone:hover {
  color: var(--amber);
}

@media (max-width: 700px) {
  .green-card-phone {
    font-size: 1.35rem;
    line-height: 1.2;
  }
}

/* SMOOTH CONTACT FORM */
.hidden-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 24px;
  margin-top: 4px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #58615c;
}

.form-status.success {
  color: var(--green);
}

.form-status.error {
  color: var(--orange);
}

.contact-submit-btn.is-sending {
  opacity: 0.72;
  pointer-events: none;
  transform: none !important;
}

@media (max-width: 700px) {
  .form-field.full,
  .form-status,
  .contact-submit-btn {
    grid-column: auto;
  }
}

/* TEAM MOBILE — hide hero standalone pictures only */
@media (max-width: 700px) {
  body[data-page="team"] .leadership-board-hero {
    display: block !important;
    min-height: auto !important;
    padding-top: 125px !important;
    padding-bottom: 55px !important;
  }

  body[data-page="team"] .leadership-portrait-wall {
    display: none !important;
  }

  body[data-page="team"] .leadership-board-copy {
    max-width: 100% !important;
  }
}

/* =========================================================
   PAGE TRANSITION REDESIGN
   Softer cream background, no surrounding shape,
   smaller Georgia italic text
   ========================================================= */

.transition-screen {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  overflow: hidden;
  pointer-events: none;

  /* Soft, dim cream background */
  background:
    background:
     linear-gradient(
      135deg,
      #c3ad8d 0%,
      #d2bea0 50%,
      #b59c79 100%
    );

  transform: translateY(100%);
}

/* Remove the shape or box surrounding the transition text */
.transition-screen::before {
  content: none !important;
  display: none !important;
  border: 0 !important;
  background: none !important;
  width: 0 !important;
  height: 0 !important;
  transform: none !important;
}

/* Transition wording: Who We Are, Leadership, Let's Connect, etc. */
.transition-screen span {
  position: relative;
  display: block;
  max-width: min(90vw, 900px);
  padding: 0 24px;
  text-align: center;

  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: clamp(2rem, 5vw, 4.8rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.035em;

  color: #2f261e;
  text-shadow: 0 10px 30px rgba(73, 46, 28, 0.08);
}

/* Slightly smaller on tablets */
@media (max-width: 900px) {
  .transition-screen span {
    font-size: clamp(1.9rem, 7vw, 3.5rem);
  }
}

/* Smaller and cleaner on mobile */
@media (max-width: 700px) {
  .transition-screen span {
    max-width: 92vw;
    padding: 0 18px;
    font-size: clamp(1.75rem, 9vw, 2.8rem);
    line-height: 1.12;
  }
}

/* HOME PAGE FONT SIZE REDUCTION */

/* 1. Jeva Oil Company Limited */
body[data-page="home"] .hero h1 {
  font-size: clamp(2rem, 3.3vw, 3.6rem) !important;
  line-height: 1.02;
}

/* 2. Reliable supply. Practical support. Strong partnerships. */
body[data-page="home"] .stats-intro h2 {
  font-size: clamp(1.9rem, 3vw, 3.25rem) !important;
  line-height: 1.08;
}

/* 3. Energy supply and logistics made simple. */
body[data-page="home"] .final-cta .band-copy h2 {
  font-size: clamp(1.9rem, 3vw, 3.3rem) !important;
  line-height: 1.08;
}

@media (max-width: 700px) {
  body[data-page="home"] .hero h1 {
    font-size: clamp(1.8rem, 8vw, 2.4rem) !important;
  }

  body[data-page="home"] .stats-intro h2 {
    font-size: clamp(1.8rem, 8vw, 2.5rem) !important;
  }

  body[data-page="home"] .final-cta .band-copy h2 {
    font-size: clamp(1.8rem, 8vw, 2.5rem) !important;
  }
}

/* SERVICES PAGE — REDUCE LARGE HEADINGS */

/* Energy solutions, structured for growth. */
body[data-page="services"] .catalog-copy h1 {
  font-size: clamp(1.9rem, 3.2vw, 3.4rem) !important;
  line-height: 1.06;
}

/* Five connected services, one dependable operating standard. */
body[data-page="services"] .pathway-intro h2 {
  font-size: clamp(1.8rem, 3vw, 3.2rem) !important;
  line-height: 1.08;
}

/* Let’s support your next energy requirement. */
body[data-page="services"] .request-note h2 {
  font-size: clamp(1.8rem, 3vw, 3.2rem) !important;
  line-height: 1.08;
}

@media (max-width: 700px) {
  body[data-page="services"] .catalog-copy h1 {
    font-size: clamp(1.8rem, 8vw, 2.35rem) !important;
  }

  body[data-page="services"] .pathway-intro h2 {
    font-size: clamp(1.7rem, 7.5vw, 2.25rem) !important;
  }

  body[data-page="services"] .request-note h2 {
    font-size: clamp(1.7rem, 7.5vw, 2.25rem) !important;
  }
}

/* ABOUT PAGE — REDUCE LARGE HEADINGS */

/* Built on reliability, trust, and execution. */
body[data-page="about"] .about-identity-title {
  font-size: clamp(2rem, 3.6vw, 3.9rem) !important;
  line-height: 1.04;
}

/* Values that shape how we work and serve. */
body[data-page="about"] .values-triangle-copy h2 {
  font-size: clamp(1.8rem, 3vw, 3.2rem) !important;
  line-height: 1.08;
}

/* Petroleum support made reliable, responsible, and business-focused. */
body[data-page="about"] .mission-copy h2 {
  font-size: clamp(1.8rem, 3vw, 3.2rem) !important;
  line-height: 1.08;
}

@media (max-width: 700px) {
  body[data-page="about"] .about-identity-title {
    font-size: clamp(1.85rem, 8vw, 2.55rem) !important;
  }

  body[data-page="about"] .values-triangle-copy h2 {
    font-size: clamp(1.7rem, 7.5vw, 2.3rem) !important;
  }

  body[data-page="about"] .mission-copy h2 {
    font-size: clamp(1.7rem, 7.5vw, 2.3rem) !important;
  }
}

/* SUSTAINABILITY PAGE — REDUCE LARGE HEADINGS */

/* Responsible petroleum support for the future. */
body[data-page="sustainability"] .commitment-gallery-copy h2 {
  font-size: clamp(1.8rem, 3vw, 3.2rem) !important;
  line-height: 1.08;
}

/* Four practical areas guide how we operate, serve, and grow. */
body[data-page="sustainability"] .framework-heading h2 {
  font-size: clamp(1.9rem, 3.1vw, 3.3rem) !important;
  line-height: 1.08;
}

/* Jeva Oil Company Limited in every footer */
.site-footer .footer-brand strong {
  font-size: clamp(1.25rem, 2vw, 2.1rem) !important;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

@media (max-width: 700px) {
  body[data-page="sustainability"] .commitment-gallery-copy h2 {
    font-size: clamp(1.7rem, 7.5vw, 2.25rem) !important;
  }

  body[data-page="sustainability"] .framework-heading h2 {
    font-size: clamp(1.75rem, 7.7vw, 2.3rem) !important;
  }

  .site-footer .footer-brand strong {
    font-size: 1.45rem !important;
    line-height: 1.12;
  }
}

body[data-page="team"] .council-intro h2 {
  font-size: clamp(1.8rem, 3vw, 3.2rem) !important;
  line-height: 1.08;
}

body[data-page="team"] .closing-copy h2 {
  font-size: clamp(1.7rem, 2.8vw, 3rem) !important;
  line-height: 1.08;
}

@media (max-width: 700px) {
  body[data-page="team"] .council-intro h2 {
    font-size: clamp(1.7rem, 7.5vw, 2.3rem) !important;
  }
}

@media (max-width: 700px) {
  body[data-page="team"] .closing-copy h2 {
    font-size: clamp(1.55rem, 7vw, 2.15rem) !important;
    line-height: 1.1;
  }
}


/* =========================================================
   CONTACT HERO TEXT — KEEP ANIMATION, REMOVE CONFLICTS
   ========================================================= */

/* Stop the parent reveal from competing with the child animations */
body[data-page="contact"] .contact-light-copy.reveal {
  opacity: 1 !important;
  visibility: visible !important;
  filter: none !important;
  transform: none !important;
  transition: none !important;
}

/* Kicker */
body[data-page="contact"] .contact-light-copy .kicker {
  opacity: 0;
  filter: none !important;
  transform: translate3d(-18px, 0, 0);
  animation: contactKickerIn 0.45s ease-out 0.12s forwards !important;
}

/* Heading lines */
body[data-page="contact"] .contact-light-copy h1 .mobile-hero-line {
  display: block;
  overflow: hidden;
}

/* Heading words */
body[data-page="contact"] .contact-light-copy h1 .mobile-hero-word {
  display: inline-block !important;
  opacity: 0;
  filter: none !important;
  transform: translate3d(0, 24px, 0);
  animation: contactWordIn 0.58s cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
  animation-delay: calc(0.2s + var(--word-i) * 0.055s) !important;
  will-change: opacity, transform;
}

/* Second heading line */
body[data-page="contact"]
  .contact-light-copy
  h1
  .mobile-hero-line:nth-child(2)
  .mobile-hero-word {
  animation-delay: calc(0.3s + var(--word-i) * 0.055s) !important;
}

/* Paragraph */
body[data-page="contact"] .contact-light-copy > p:not(.kicker) {
  opacity: 0;
  filter: none !important;
  transform: translate3d(0, 14px, 0);
  animation: contactFadeUp 0.48s ease-out 0.58s forwards !important;
}

/* Buttons */
body[data-page="contact"] .contact-light-actions {
  opacity: 0;
  filter: none !important;
  transform: translate3d(0, 14px, 0);
  animation: contactFadeUp 0.48s ease-out 0.7s forwards !important;
}

/* Lightweight animations */
@keyframes contactKickerIn {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes contactWordIn {
  0% {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes contactFadeUp {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 700px) {
  body[data-page="contact"] .contact-light-copy .kicker {
    animation-duration: 0.35s !important;
    animation-delay: 0.08s !important;
  }

  body[data-page="contact"] .contact-light-copy h1 .mobile-hero-word {
    transform: translate3d(0, 20px, 0);
    animation-duration: 0.5s !important;
    animation-delay: calc(0.16s + var(--word-i) * 0.045s) !important;
  }

  body[data-page="contact"]
    .contact-light-copy
    h1
    .mobile-hero-line:nth-child(2)
    .mobile-hero-word {
    animation-delay: calc(0.24s + var(--word-i) * 0.045s) !important;
  }

  body[data-page="contact"] .contact-light-copy > p:not(.kicker) {
    animation-delay: 0.48s !important;
  }

  body[data-page="contact"] .contact-light-actions {
    animation-delay: 0.58s !important;
  }
}