:root {
  --ink: #0c2530;
  --muted: #607380;
  --blue: #0878bf;
  --deep-blue: #0e256f;
  --cyan: #28b9ca;
  --green: #2fa36f;
  --red: #d73a35;
  --amber: #f5b72e;
  --paper: #f3f8fa;
  --line: rgba(12, 37, 48, 0.14);
  --shadow: 0 24px 70px rgba(12, 37, 48, 0.18);
  --header-height: 96px;
  --footer-height: 0px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, "Segoe UI", Roboto, Arial, Helvetica, sans-serif;
  font-size: 17px;
  background: #fff;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  min-height: var(--header-height);
  grid-template-columns: 270px minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: 0 clamp(18px, 3vw, 56px);
  color: #080f14;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 2px 16px rgba(12, 37, 48, 0.08);
  backdrop-filter: blur(14px);
  transition: min-height 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  min-height: 76px;
  box-shadow: 0 12px 32px rgba(12, 37, 48, 0.14);
}

.brand {
  display: inline-flex;
  width: 220px;
  align-items: center;
  padding: 8px 0;
}

.brand img {
  width: 100%;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 1.45vw, 28px);
  white-space: nowrap;
  font-size: clamp(0.9rem, 0.95vw, 1.08rem);
}

.nav-links a {
  position: relative;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  font-weight: 700;
}

.nav-links a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 3px;
  background: var(--red);
  content: "";
  opacity: 0;
  transform: scaleX(0.5);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-links a:hover {
  color: var(--red);
}

.nav-links a.is-active {
  color: var(--red);
}

.nav-links a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-links a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-action,
.primary-btn,
.secondary-btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 2px solid transparent;
  font-weight: 800;
  letter-spacing: 0;
  text-align: center;
}

.header-action {
  color: #fff;
  background: var(--deep-blue);
}

.header-action:hover,
.primary-btn:hover {
  background: #0a1748;
}

.profile-menu {
  position: relative;
}

.profile-menu summary {
  list-style: none;
  cursor: pointer;
  user-select: none;
}

.profile-menu summary::-webkit-details-marker {
  display: none;
}

.profile-menu summary::after {
  margin-left: 8px;
  content: "\25BE";
  font-size: 0.72em;
  transition: transform 180ms ease;
}

.profile-menu[open] summary::after {
  transform: rotate(180deg);
}

.profile-menu-options {
  position: absolute;
  z-index: 30;
  top: calc(100% + 8px);
  right: 0;
  display: grid;
  width: 190px;
  padding: 7px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 16px 35px rgba(7, 31, 51, 0.2);
}

.profile-menu-options a {
  padding: 11px 12px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
}

.profile-menu-options a:hover,
.profile-menu-options a:focus-visible {
  color: #fff;
  background: var(--deep-blue);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 0;
  color: #fff;
  background: var(--deep-blue);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 3px;
  background: currentColor;
}

.primary-btn {
  color: #fff;
  background: var(--blue);
}

.secondary-btn {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--footer-height));
  display: grid;
  align-items: center;
  padding: 0;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.hero-slider,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slider {
  z-index: -3;
  background: #183746;
}

.hero-slide {
  opacity: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: opacity 1100ms ease, transform 7000ms ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1.12);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(8, 22, 31, 0.18) 0%, rgba(8, 22, 31, 0) 45%, rgba(8, 22, 31, 0.24) 100%),
    linear-gradient(90deg, rgba(8, 120, 191, 0.18), rgba(47, 163, 111, 0.12));
}

.slide-caption {
  position: absolute;
  left: clamp(20px, 5vw, 86px);
  bottom: calc(var(--footer-height) + 94px);
  width: min(720px, calc(100% - 40px));
  padding-left: 20px;
  border-left: 6px solid var(--amber);
  color: #fff;
  opacity: 0;
  transform: translateX(-34px);
  transition: opacity 700ms 260ms ease, transform 700ms 260ms ease;
}

.hero-slide.active .slide-caption {
  opacity: 1;
  transform: translateX(0);
}

.slide-caption span {
  display: block;
  margin-bottom: 10px;
  color: var(--amber);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.slide-caption strong {
  display: block;
  max-width: 820px;
  font-size: clamp(2.5rem, 6vw, 6.7rem);
  line-height: 0.94;
  text-shadow: 0 5px 22px rgba(0, 0, 0, 0.36);
  text-transform: uppercase;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(3rem, 8vw, 7.25rem);
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.38);
}

.page-view h1 {
  max-width: 980px;
  font-size: clamp(2.35rem, 4.6vw, 4.75rem);
  line-height: 1.04;
  text-transform: none;
  text-shadow: none;
}

h2 {
  font-size: clamp(1.8rem, 3.6vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
  line-height: 1.25;
}

.slider-controls {
  position: absolute;
  left: 50%;
  bottom: calc(var(--footer-height) + 44px);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 14px;
  transform: translateX(-50%);
}

.slider-dots {
  display: flex;
  gap: 10px;
}

.slider-dots button {
  position: relative;
  width: 52px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.48);
  overflow: hidden;
  cursor: pointer;
}

.slider-dots button::after {
  position: absolute;
  inset: 0;
  background: var(--amber);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
}

.slider-dots button.active::after {
  animation: sliderProgress 5s linear both;
}

section {
  padding: clamp(70px, 8vw, 112px) clamp(18px, 5vw, 70px);
}

.hero.is-hidden,
.page-view {
  display: none;
}

.page-view.is-active {
  display: block;
}

.proof.page-view.is-active,
.contact.page-view.is-active {
  display: grid;
}

.solution-strip.page-view.is-active {
  display: grid;
}

.page-view {
  min-height: calc(100vh - var(--footer-height));
  padding-top: calc(var(--header-height) + clamp(28px, 4vw, 54px));
  animation: pageIn 360ms ease both;
}

.page-view.is-active + .page-view.is-active {
  min-height: auto;
  padding-top: clamp(54px, 7vw, 90px);
}

.intro.page-view,
.services.page-view,
.projects.page-view,
.outcomes.page-view,
.gallery.page-view,
.careers.page-view,
.contact.page-view {
  position: relative;
  overflow: hidden;
}

.intro.page-view::before,
.services.page-view::before,
.projects.page-view::before,
.outcomes.page-view::before,
.gallery.page-view::before,
.careers.page-view::before,
.contact.page-view::before {
  position: absolute;
  top: calc(var(--header-height) + clamp(8px, 1vw, 18px));
  left: 50%;
  width: max-content;
  color: rgba(8, 120, 191, 0.075);
  font-size: clamp(5.2rem, 16vw, 13rem);
  font-weight: 900;
  line-height: 0.72;
  pointer-events: none;
  text-align: center;
  transform: translateX(-50%);
  z-index: 0;
}

.intro.page-view::before {
  content: "ABOUT";
}

.services.page-view::before {
  content: none;
}

.projects.page-view::before {
  content: "SITES";
}

.outcomes.page-view::before {
  content: "FINISH";
}

.gallery.page-view::before {
  content: "GALLERY";
}

.careers.page-view::before {
  content: none;
}

.contact.page-view::before {
  content: "TALK";
}

.reveal {
  opacity: 0;
  transform: translateX(-54px);
  transition: opacity 780ms ease, transform 780ms ease;
}

.reveal.from-right {
  transform: translateX(54px);
}

.reveal.from-bottom {
  transform: translateY(34px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.band {
  background:
    linear-gradient(90deg, rgba(8, 120, 191, 0.08), rgba(47, 163, 111, 0.08)),
    var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(180px, 0.55fr) minmax(280px, 0.85fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
  justify-content: end;
}

#about .intro-grid {
  position: relative;
  z-index: 2;
  grid-template-columns: minmax(280px, 0.72fr) minmax(420px, 1.28fr);
  gap: 0;
  align-items: center;
  max-width: 1380px;
  margin: clamp(24px, 4vw, 58px) auto 0;
}

#about {
  isolation: isolate;
  background:
    linear-gradient(90deg, transparent 0 7%, rgba(8, 120, 191, 0.045) 7% 7.15%, transparent 7.15%),
    linear-gradient(135deg, #f4fafb 0%, #eaf5f7 55%, #f9fbf7 100%);
}

#about.page-view::before {
  content: none;
}

#about::after {
  position: absolute;
  z-index: 0;
  right: clamp(-90px, -6vw, -45px);
  bottom: clamp(30px, 6vw, 90px);
  width: clamp(180px, 22vw, 340px);
  aspect-ratio: 1;
  border: clamp(24px, 3vw, 46px) solid rgba(8, 120, 191, 0.07);
  border-radius: 50%;
  content: "";
}

.intro-grid h2 {
  margin-bottom: 0;
}

.intro-grid p,
.proof-copy p,
.contact-copy {
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
}

.vision-portrait {
  position: relative;
  z-index: 3;
  grid-column: 1;
  width: min(100%, 470px);
  margin: 0 auto;
  border: 0;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 30px 75px rgba(7, 31, 51, 0.24);
  clip-path: polygon(0 0, 100% 0, 100% 91%, 88% 100%, 0 100%);
}

.vision-portrait img {
  display: block;
  width: 100%;
  height: auto;
}

.vision-copy {
  position: relative;
  z-index: 2;
  max-width: none;
  margin-left: clamp(-56px, -4vw, -30px);
  padding: clamp(46px, 6vw, 88px) clamp(34px, 6vw, 94px) clamp(46px, 6vw, 82px) clamp(65px, 7vw, 112px);
  color: #fff;
  background: linear-gradient(135deg, #071f33 0%, #0b3852 100%);
  box-shadow: 0 32px 80px rgba(7, 31, 51, 0.2);
}

.vision-copy::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: clamp(65px, 8vw, 120px);
  aspect-ratio: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  content: "";
}

.vision-copy::before {
  position: absolute;
  top: 0;
  left: clamp(65px, 7vw, 112px);
  width: clamp(70px, 8vw, 120px);
  height: 7px;
  background: var(--amber);
  content: "";
}

.vision-copy > span {
  display: block;
  margin-bottom: 16px;
  color: var(--amber);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.vision-copy h1 {
  max-width: 760px;
  margin: 0 0 clamp(20px, 3vw, 30px);
  font-size: clamp(2.35rem, 4.5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.intro-grid .vision-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.08rem, 1.45vw, 1.32rem);
  line-height: 1.75;
}

.section-heading {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: clamp(150px, 18vw, 220px);
  place-items: center;
  margin-bottom: clamp(26px, 4vw, 48px);
}

.section-heading h1,
.section-heading h2 {
  max-width: min(940px, 78vw);
  margin-bottom: 0;
  text-align: center;
}

.section-heading .section-kicker {
  position: absolute;
  left: 0;
  bottom: 12px;
  margin: 0;
  color: var(--amber);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}

.compact {
  gap: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-grid article {
  display: grid;
  grid-template-rows: 238px 1fr;
  min-height: 500px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-grid article:hover,
.project-grid article:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 50px rgba(16, 34, 47, 0.12);
}

.service-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-grid div {
  padding: 24px;
}

.service-grid h3::before {
  display: block;
  width: 44px;
  height: 4px;
  margin-bottom: 14px;
  background: var(--red);
  content: "";
}

.service-grid p,
.project-grid p {
  color: var(--muted);
}

.solution-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--deep-blue);
}

.solution-strip div {
  min-height: 150px;
  padding: 30px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(40, 185, 202, 0.18), rgba(245, 183, 46, 0.06)),
    var(--deep-blue);
}

.solution-strip strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.18rem;
}

.solution-strip span {
  color: rgba(255, 255, 255, 0.72);
}

.proof {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
}

.proof-copy h2 {
  margin-bottom: 22px;
}

.proof-stack {
  position: relative;
  min-height: 520px;
}

.proof-stack img {
  position: absolute;
  width: 70%;
  height: 330px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.proof-stack img:first-child {
  top: 0;
  right: 0;
}

.proof-stack img:last-child {
  left: 0;
  bottom: 0;
  border: 10px solid var(--paper);
}

.about-hero {
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent 0 8%, rgba(215, 58, 53, 0.11) 8% 8.18%, transparent 8.18%),
    linear-gradient(140deg, #f7fbfc 0%, #eef7f6 46%, #fff9e6 100%);
}

.about-hero::after {
  position: absolute;
  z-index: 0;
  right: clamp(-160px, -9vw, -80px);
  bottom: clamp(10px, 4vw, 70px);
  width: clamp(260px, 32vw, 560px);
  aspect-ratio: 1;
  border: clamp(28px, 4vw, 62px) solid rgba(40, 185, 202, 0.16);
  border-radius: 50%;
  content: "";
}

.about-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr);
  gap: clamp(30px, 5vw, 78px);
  align-items: center;
  max-width: 1320px;
  min-height: clamp(560px, 72vh, 760px);
  margin: 0 auto;
}

.about-hero-copy {
  max-width: 800px;
}

.about-hero-copy .section-kicker,
.about-overview-copy .section-kicker,
.about-method-heading .section-kicker,
.about-director-copy .section-kicker,
.about-trusted-copy .section-kicker {
  color: var(--red);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-hero-copy h1 {
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(2.55rem, 5vw, 5.65rem);
  line-height: 0.98;
}

.about-hero-copy > p,
.about-overview-copy p,
.about-method-heading p,
.about-director-copy p,
.about-trusted-copy p {
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.about-hero-visual {
  position: relative;
  width: min(100%, 520px);
  min-height: 560px;
  margin: 0 auto;
  background: transparent;
}

.about-hero-visual::before {
  position: absolute;
  inset: 42px 32px 58px 70px;
  z-index: -1;
  background: var(--deep-blue);
  box-shadow: 0 28px 80px rgba(12, 37, 48, 0.22);
  content: "";
}

.about-main-image {
  position: absolute;
  top: 28px;
  right: 0;
  width: min(92%, 470px);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: 0 28px 70px rgba(12, 37, 48, 0.2);
}

.about-floating-image {
  position: absolute;
  left: 0;
  bottom: 38px;
  width: min(58%, 300px);
  aspect-ratio: 1 / 1.08;
  border: 10px solid #fff;
  object-fit: cover;
  box-shadow: 0 24px 55px rgba(12, 37, 48, 0.2);
}

.about-hero-note {
  position: absolute;
  right: clamp(0px, 2vw, 28px);
  bottom: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  max-width: 330px;
  padding: 18px 20px;
  color: #fff;
  background: #0c2530;
  box-shadow: 0 20px 48px rgba(12, 37, 48, 0.24);
}

.about-hero-note strong {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  color: var(--ink);
  background: var(--amber);
  font-size: 0.9rem;
  font-weight: 950;
}

.about-hero-note span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.35;
}

.about-overview {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  background:
    linear-gradient(90deg, rgba(40, 185, 202, 0.08), transparent 42%),
    #fff;
}

.about-overview-copy {
  max-width: 580px;
}

.about-feature-list {
  display: grid;
  gap: 1px;
  background: rgba(12, 37, 48, 0.1);
  box-shadow: 0 24px 70px rgba(12, 37, 48, 0.1);
}

.about-feature-list article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  column-gap: 20px;
  padding: clamp(24px, 3vw, 34px);
  background:
    linear-gradient(135deg, #fff 0%, #fff 68%, rgba(245, 183, 46, 0.12) 100%);
  transition: transform 180ms ease, background 180ms ease;
}

.about-feature-list article:hover {
  transform: translateX(-8px);
  background:
    linear-gradient(135deg, #fff 0%, #f5fbfc 58%, rgba(40, 185, 202, 0.14) 100%);
}

.about-feature-list span {
  color: var(--blue);
  font-weight: 900;
}

.about-feature-list h3 {
  margin-bottom: 8px;
}

.about-feature-list p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding-top: clamp(22px, 3vw, 34px);
  padding-bottom: clamp(22px, 3vw, 34px);
  background: #071f33;
}

.about-stats div {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 118px;
  padding: clamp(20px, 3vw, 30px);
  color: #fff;
  background:
    linear-gradient(145deg, rgba(8, 120, 191, 0.18), rgba(47, 163, 111, 0.08)),
    #071f33;
  overflow: hidden;
}

.about-stats .stat-icon {
  position: absolute;
  right: clamp(18px, 2vw, 28px);
  bottom: clamp(16px, 2vw, 24px);
  z-index: 0;
  display: grid;
  place-items: center;
  width: clamp(64px, 6vw, 92px);
  height: clamp(64px, 6vw, 92px);
  border: 0;
  border-radius: 0;
  color: rgba(255, 255, 255, 0.13);
  background: transparent;
  pointer-events: none;
}

.about-stats .stat-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-stats strong {
  position: relative;
  z-index: 1;
  display: block;
  min-width: max-content;
  color: var(--amber);
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  line-height: 0.95;
}

.about-stats div > span:not(.stat-icon) {
  position: relative;
  z-index: 1;
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
  line-height: 1.35;
}

.about-method {
  display: grid;
  gap: clamp(28px, 4vw, 52px);
  background: #fff;
}

.about-method-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 68px);
  align-items: end;
}

.about-method-heading h2 {
  max-width: 760px;
  margin: 0;
}

.method-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.method-track::before {
  position: absolute;
  top: 50px;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--amber), var(--green));
  content: "";
}

.method-track article {
  position: relative;
  min-height: 310px;
  padding: 92px clamp(22px, 3vw, 36px) 34px;
  border-right: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #f7fbfc);
}

.method-track article:first-child {
  border-left: 1px solid var(--line);
}

.method-track span {
  position: absolute;
  top: 22px;
  left: clamp(22px, 3vw, 36px);
  display: inline-grid;
  min-width: 78px;
  min-height: 56px;
  place-items: center;
  color: #fff;
  background: var(--ink);
  font-weight: 950;
  text-transform: uppercase;
}

.method-track article:nth-child(2) span {
  background: var(--blue);
}

.method-track article:nth-child(3) span {
  color: var(--ink);
  background: var(--amber);
}

.method-track p {
  margin: 0;
  color: var(--muted);
}

.about-director {
  display: grid;
  grid-template-columns: minmax(170px, 260px) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  background:
    linear-gradient(90deg, #071f33 0 24%, #fff 24% 100%);
}

.vision-portrait.about-director-photo {
  width: min(100%, 240px);
  justify-self: center;
  box-shadow: 0 22px 48px rgba(7, 31, 51, 0.22);
}

.vision-portrait.about-director-photo img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.about-director-copy {
  max-width: 880px;
  padding: clamp(24px, 4vw, 42px);
  border-left: 5px solid var(--amber);
  background:
    linear-gradient(135deg, #fff, #f6fbfc);
  box-shadow: 0 22px 60px rgba(12, 37, 48, 0.08);
}

.about-director-copy h2 {
  margin-bottom: 22px;
}

.about-trusted {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  min-height: auto;
}

.about-trusted-copy {
  max-width: 480px;
}

.about-trusted-copy h2 {
  margin-bottom: 18px;
}

.trusted-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  margin: 0 auto;
  background: var(--line);
  box-shadow: 0 24px 70px rgba(12, 37, 48, 0.1);
}

.trusted-grid span {
  display: grid;
  min-height: 92px;
  place-items: center;
  padding: 14px 12px;
  color: var(--ink);
  background:
    linear-gradient(145deg, #fff, #f7fbfc);
  font-size: clamp(0.78rem, 0.9vw, 0.95rem);
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.filter {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: #fff;
  font-weight: 800;
  cursor: pointer;
}

.filter.active,
.filter:hover {
  border-color: var(--blue);
  color: #fff;
  background: var(--blue);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.project-grid article {
  display: grid;
  grid-template-rows: 210px 1fr;
  min-height: 390px;
  padding: 0;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(8, 120, 191, 0.08), rgba(47, 163, 111, 0.1)),
    #fff;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.project-grid article.is-hidden {
  display: none;
}

.project-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.project-grid article:hover img {
  transform: scale(1.06);
}

.project-grid article > div {
  padding: 24px;
}

.project-grid span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 250px;
  gap: 14px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 245px;
  gap: 14px;
}

.gallery-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.gallery-open {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.gallery-grid .wide {
  grid-column: span 2;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.07);
}

.gallery-grid figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 12px;
  color: #fff;
  background: rgba(16, 34, 47, 0.84);
  font-weight: 800;
}

.lightbox[hidden] {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 16px;
  place-items: center;
  padding: clamp(18px, 4vw, 54px);
  background: rgba(5, 18, 26, 0.88);
  backdrop-filter: blur(10px);
}

.lightbox img {
  max-width: min(1100px, 94vw);
  max-height: 78vh;
  object-fit: contain;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

.lightbox p {
  margin: 0;
  color: #fff;
  font-weight: 800;
  text-align: center;
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border: 0;
  color: #071f33;
  background: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.is-lightbox-open {
  overflow: hidden;
}

.career-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 390px);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
}

.career-hero p {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.08rem;
}

.career-hero img {
  width: 100%;
  height: min(560px, 65vh);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.career-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 48px;
}

.career-card {
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(8, 120, 191, 0.08), rgba(47, 163, 111, 0.1)),
    #fff;
}

.career-card span {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.career-card h2 {
  font-size: 1.45rem;
}

.career-card p {
  color: var(--muted);
}

.job-apply {
  min-height: 42px;
  margin-top: 18px;
  padding: 0 18px;
  border: 0;
  color: #fff;
  background: var(--deep-blue);
  font-weight: 900;
  cursor: pointer;
}

.job-apply:hover {
  background: var(--blue);
}

.application-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 0.95fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  margin-top: 28px;
  padding: clamp(24px, 4vw, 42px);
  background:
    linear-gradient(135deg, rgba(8, 120, 191, 0.08), rgba(47, 163, 111, 0.12)),
    var(--paper);
}

.application-panel h2 {
  font-size: clamp(1.8rem, 3.2vw, 3.2rem);
}

.application-panel p {
  color: var(--muted);
}

.application-form {
  display: grid;
  gap: 14px;
  padding: 26px;
  background: #fff;
  box-shadow: var(--shadow);
}

.application-form label {
  display: grid;
  gap: 7px;
}

.application-form span {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.application-form input,
.application-form select,
.application-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
}

.application-form input:focus,
.application-form select:focus,
.application-form textarea:focus {
  outline: 2px solid rgba(8, 120, 191, 0.22);
  border-color: var(--blue);
}

.outcome-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.outcome-grid .wide {
  grid-column: span 2;
}

.outcome-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.outcome-grid figure:hover img {
  transform: scale(1.06);
}

.outcome-grid figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 12px;
  color: #fff;
  background: rgba(16, 34, 47, 0.82);
  font-weight: 800;
}

.contact {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(520px, 1.28fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: start;
  padding-top: calc(var(--header-height) + clamp(110px, 12vw, 165px));
  padding-bottom: clamp(70px, 8vw, 112px);
  background:
    radial-gradient(circle at 95% 8%, rgba(40, 185, 202, 0.13), transparent 25%),
    linear-gradient(135deg, #edf7f9 0%, #f8fbfb 60%, #eef8f3 100%);
  isolation: isolate;
}

.contact.page-view::before {
  top: calc(var(--header-height) + 12px);
  left: clamp(22px, 5vw, 82px);
  color: rgba(8, 120, 191, 0.11);
  font-size: clamp(7rem, 18vw, 15rem);
  line-height: 0.78;
  letter-spacing: -0.08em;
  text-align: left;
  transform: none;
}

.contact-intro {
  position: sticky;
  z-index: 2;
  top: calc(var(--header-height) + 28px);
  padding: clamp(34px, 4vw, 58px);
  color: #fff;
  background: linear-gradient(145deg, #071f33, #0b3d57);
  box-shadow: 0 30px 80px rgba(7, 31, 51, 0.22);
  overflow: hidden;
}

.contact-intro::after {
  position: absolute;
  right: -74px;
  bottom: -74px;
  width: 190px;
  aspect-ratio: 1;
  border: 30px solid rgba(255, 255, 255, 0.055);
  border-radius: 50%;
  content: "";
}

.contact-intro .section-kicker {
  color: var(--amber);
}

.contact-intro h1 {
  margin: 18px 0 28px;
  font-size: clamp(2.8rem, 5vw, 5.8rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.contact-copy {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.contact-highlights {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
  margin-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-highlights span {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-card {
  position: relative;
  z-index: 2;
  padding: clamp(26px, 4vw, 48px);
  background: #fff;
  box-shadow: 0 32px 90px rgba(12, 37, 48, 0.16);
}

.contact-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 110px;
  height: 7px;
  background: var(--amber);
  content: "";
}

.contact-card-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line);
}

.contact-card-heading img {
  width: 190px;
  margin: 0;
}

.contact-card-heading > div {
  text-align: right;
}

.contact-card-heading span {
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact-card-heading h2 {
  margin: 4px 0 0;
  font-size: clamp(1.55rem, 2.5vw, 2.4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.contact-card .primary-btn {
  width: 100%;
  margin-top: 4px;
  cursor: pointer;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-form label:nth-of-type(n + 5),
.contact-form .primary-btn,
.contact-form .form-status,
.contact-form .secondary-link {
  grid-column: 1 / -1;
}

.contact-form label {
  display: grid;
  gap: 7px;
}

.contact-form span {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 13px 14px;
  color: var(--ink);
  background: #f8fbfc;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(8, 120, 191, 0.22);
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 8px 24px rgba(8, 120, 191, 0.08);
}

.contact-form textarea {
  resize: vertical;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 800;
}

.form-status.is-error {
  color: var(--red);
}

.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-delivery-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
  text-align: center;
}

.application-toast {
  position: fixed;
  z-index: 150;
  right: 22px;
  bottom: 22px;
  display: flex;
  min-width: min(390px, calc(100vw - 36px));
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  color: #fff;
  background: #071f33;
  box-shadow: 0 20px 60px rgba(3, 18, 29, 0.34);
  opacity: 0;
  pointer-events: none;
  transform: translateY(24px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.application-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.application-toast-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--deep-blue);
  background: var(--amber);
  font-size: 1.3rem;
  font-weight: 900;
}

.application-toast div {
  display: grid;
  line-height: 1.35;
}

.application-toast strong {
  font-size: 0.92rem;
}

.application-toast small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
}

.success-page {
  min-height: 100vh;
  background: linear-gradient(145deg, #eef8fa, #fff 55%, #edf7f2);
}

.application-success {
  display: flex;
  min-height: calc(100vh - 72px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-height) + 50px) 20px 70px;
  text-align: center;
}

.success-mark {
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  box-shadow: 0 16px 38px rgba(47, 163, 111, 0.3);
  font-size: 2.5rem;
  font-weight: 900;
}

.application-success h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(2.8rem, 7vw, 6.5rem);
  line-height: 0.95;
  text-transform: none;
  text-shadow: none;
}

.application-success > p:not(.section-kicker) {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.05rem;
}

.application-success .success-greeting {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: clamp(1.12rem, 2vw, 1.45rem);
  font-weight: 900;
}

.application-success .success-role {
  margin-top: 0;
  color: var(--blue);
  font-weight: 900;
}

.success-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
}

.success-back-btn {
  cursor: pointer;
}

.success-home-link {
  margin-left: 8px;
  padding: 10px 0;
  border-bottom: 2px solid var(--ink);
  font-weight: 900;
}

@media (max-width: 520px) {
  .success-actions {
    flex-direction: column;
    gap: 12px;
  }

  .success-home-link {
    margin-left: 0;
  }

  .application-toast {
    right: 12px;
    bottom: 12px;
    left: 12px;
    min-width: 0;
  }
}

.secondary-link {
  display: inline-flex;
  justify-content: center;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  width: 46px;
  height: 46px;
  border: 0;
  color: #fff;
  background: var(--red);
  font-size: 1.25rem;
  font-weight: 900;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.site-footer {
  display: flex;
  position: relative;
  min-height: 72px;
  justify-content: center;
  align-items: center;
  padding: 18px clamp(18px, 5vw, 70px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(8, 120, 191, 0.28), rgba(47, 163, 111, 0.16)),
    #071f33;
  font-size: 0.92rem;
  font-weight: 700;
  overflow: hidden;
}

.site-footer::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  color: rgba(255, 255, 255, 0.06);
  content: "PLUMBPRO";
  font-size: clamp(2.7rem, 5.4vw, 4rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0.03em;
  text-align: center;
  white-space: nowrap;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.footer-brand,
.footer-meta {
  position: relative;
  z-index: 1;
}

.footer-brand {
  display: flex;
  gap: 18px;
  align-items: center;
}

.footer-brand img {
  width: 150px;
  padding: 8px 10px;
  background: #fff;
}

.footer-brand span {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
}

.footer-meta {
  display: grid;
  gap: 8px;
  justify-items: end;
  text-align: right;
}

.footer-meta a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 14px;
  color: #071f33;
  background: var(--amber);
  font-weight: 900;
}

.footer-social {
  position: absolute;
  z-index: 1;
  right: clamp(18px, 5vw, 70px);
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer-social a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: #fff;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  border-color: var(--amber);
  color: #071f33;
  background: var(--amber);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

/* Services — editorial showcase */
.services-showcase {
  padding-bottom: clamp(60px, 8vw, 110px);
  background: linear-gradient(180deg, #eef7fa 0, #fff 42%);
}

.services-intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: clamp(40px, 7vw, 110px);
  min-height: 610px;
}

.services-intro-copy { padding-left: clamp(0px, 3vw, 44px); }
.services-intro-copy h1,
.career-banner h1 { margin: 14px 0 24px; font-size: clamp(3rem, 6.5vw, 6.8rem); line-height: 0.93; letter-spacing: -0.065em; }
.services-intro-copy h1 em,
.career-banner h1 em { color: var(--blue); font-family: Georgia, serif; font-weight: 400; }
.services-intro-copy > p:not(.section-kicker) { max-width: 590px; color: var(--muted); font-size: 1.08rem; }
.service-cta { display: inline-flex; align-items: center; gap: 30px; margin-top: 22px; padding: 14px 0; border-bottom: 2px solid var(--ink); font-weight: 900; }
.service-cta span { color: var(--red); font-size: 1.35rem; }
.services-intro-visual { position: relative; height: min(570px, 67vh); overflow: hidden; }
.services-intro-visual img { width: 100%; height: 100%; object-fit: cover; }
.service-proof { position: absolute; left: 0; bottom: 0; display: flex; align-items: center; gap: 18px; padding: 20px 26px; color: #fff; background: var(--deep-blue); }
.service-proof strong { color: var(--amber); font-size: 2.4rem; line-height: 1; }
.service-proof span { font-size: 0.78rem; font-weight: 800; line-height: 1.35; text-transform: uppercase; }

.service-bento { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; margin-top: 50px; }
.service-feature { position: relative; min-height: 420px; overflow: hidden; border-radius: 2px; background: #f1f6f7; }
.service-feature-wide { grid-column: span 8; display: grid; grid-template-columns: 1fr 0.82fr; padding: clamp(28px, 4vw, 56px); }
.service-feature-wide > img { position: absolute; right: 0; bottom: 0; width: 43%; height: 100%; object-fit: cover; }
.service-feature-wide > .service-number,
.service-feature-wide > .service-feature-copy { grid-column: 1; max-width: 90%; }
.service-number { display: block; color: var(--red); font-size: 0.72rem; font-weight: 900; letter-spacing: 0.12em; }
.service-feature-copy { position: relative; z-index: 2; align-self: end; }
.service-feature-copy h2 { max-width: 570px; margin: 14px 0; font-size: clamp(2rem, 3.7vw, 4.2rem); line-height: 1; letter-spacing: -0.045em; }
.service-feature-copy p { max-width: 550px; color: var(--muted); }
.service-feature-copy ul { display: flex; flex-wrap: wrap; gap: 8px; padding: 0; list-style: none; }
.service-feature-copy li { padding: 6px 10px; border: 1px solid var(--line); font-size: 0.72rem; font-weight: 800; }
.service-feature-dark { grid-column: span 4; color: #fff; background: #071f33; }
.service-feature-dark > img { width: 100%; height: 52%; object-fit: cover; opacity: 0.72; }
.service-feature-dark .service-number { position: absolute; z-index: 2; top: 24px; left: 24px; color: var(--amber); }
.service-feature-dark .service-feature-copy { padding: 26px; }
.service-feature-dark .service-feature-copy h2 { font-size: clamp(1.8rem, 2.8vw, 3rem); }
.service-feature-dark .service-feature-copy p { color: rgba(255,255,255,.7); }
.service-feature-blue { grid-column: span 5; padding: clamp(28px, 4vw, 48px); color: #fff; background: var(--blue); }
.service-feature-blue .service-number { color: #fff; opacity: .65; }
.service-feature-blue .service-feature-copy p { color: rgba(255,255,255,.78); }
.service-line-art { position: absolute; right: -80px; top: 20px; width: 280px; height: 280px; border: 32px solid rgba(255,255,255,.09); border-radius: 50%; }
.service-line-art::after { position: absolute; inset: 38px; border: 2px solid rgba(255,255,255,.2); border-radius: 50%; content: ""; }
.service-feature-photo { grid-column: span 7; display: grid; grid-template-columns: .8fr 1.2fr; color: #fff; background: #102a35; }
.service-feature-photo > img { width: 100%; height: 100%; object-fit: cover; }
.service-feature-photo .service-feature-copy { padding: clamp(28px, 4vw, 48px); }
.service-feature-photo .service-feature-copy h2 { font-size: clamp(2rem, 3.3vw, 3.6rem); }
.service-feature-photo .service-feature-copy p { color: rgba(255,255,255,.7); }
.service-sectors { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 56px; padding: 28px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.service-sectors p { margin: 0; color: var(--muted); font-size: .75rem; font-weight: 900; text-transform: uppercase; }
.service-sectors span { font-size: clamp(1rem, 1.7vw, 1.35rem); font-weight: 800; }

/* About — leadership profile */
.leadership {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(38px, 7vw, 110px);
  align-items: center;
  color: #fff;
  background: #071f33;
}

.leadership-portrait {
  position: relative;
  max-width: 480px;
  min-height: 560px;
  overflow: hidden;
  background: #e9eff1;
}

.leadership-portrait img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center top;
}

.leadership-portrait > span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 8px 12px;
  color: var(--deep-blue);
  background: var(--amber);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.leadership-copy h2 {
  max-width: 750px;
  margin: 15px 0 24px;
  font-size: clamp(2.5rem, 5vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.leadership-copy > p:not(.section-kicker) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.06rem;
}

.leadership-values {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 30px;
}

.leadership-values span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.74rem;
  font-weight: 800;
}

.leadership.is-image-missing {
  display: none;
}

/* Careers — role studio and application modal */
.careers-studio { padding-bottom: clamp(70px, 9vw, 120px); background: #fbfcfc; }
.career-banner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.2fr .8fr; min-height: 610px; color: #fff; background: #071f33; }
.career-banner > div:first-child { display: flex; flex-direction: column; justify-content: center; padding: clamp(36px, 6vw, 90px); }
.career-banner h1 { max-width: 850px; }
.career-banner h1 em { color: var(--amber); }
.career-banner p:not(.section-kicker) { max-width: 650px; color: rgba(255,255,255,.68); }
.career-banner-image { position: relative; min-height: 480px; overflow: hidden; }
.career-banner-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.72); }
.career-banner-image::after { position: absolute; inset: 0; background: linear-gradient(90deg, #071f33 0, transparent 35%); content: ""; }
.career-banner-image span { position: absolute; z-index: 2; right: 24px; bottom: 22px; color: var(--amber); font-size: clamp(3rem, 6vw, 6rem); font-weight: 900; line-height: .78; letter-spacing: -.07em; text-align: right; text-transform: uppercase; }
.open-roles-heading { display: grid; grid-template-columns: 1fr auto; align-items: end; margin: clamp(65px, 8vw, 110px) 0 28px; }
.open-roles-heading .section-kicker { grid-column: 1 / -1; }
.open-roles-heading h2 { margin: 8px 0 0; font-size: clamp(2.2rem, 5vw, 5rem); letter-spacing: -.055em; }
.open-roles-heading > span { color: var(--muted); font-size: .78rem; font-weight: 800; text-transform: uppercase; }
.career-grid.career-role-list { display: grid; grid-template-columns: 1fr; gap: 0; margin-top: 0; border-top: 1px solid var(--line); }
.career-role-list .career-card { display: grid; grid-template-columns: 72px minmax(0, 1fr) auto; align-items: center; gap: 30px; min-height: 220px; padding: 34px 20px; border: 0; border-bottom: 1px solid var(--line); background: transparent; transition: color .25s ease, background .25s ease, padding .25s ease; }
.career-role-list .career-card:hover { padding-left: 34px; color: #fff; background: var(--deep-blue); }
.career-role-list .role-index { margin: 0; color: var(--blue); font-size: 1.8rem; font-weight: 300; }
.career-role-list .career-card:hover .role-index,
.career-role-list .career-card:hover p { color: rgba(255,255,255,.65); }
.career-role-list .career-card > div > span { margin: 0; color: var(--red); }
.career-role-list h2 { margin: 7px 0; font-size: clamp(1.7rem, 3.2vw, 3.1rem); letter-spacing: -.04em; }
.career-role-list p { max-width: 680px; margin: 0; }
.role-tags { display: flex; gap: 8px; margin-top: 15px; }
.role-tags b { padding: 4px 9px; border: 1px solid currentColor; font-size: .67rem; opacity: .65; }
.career-role-list .job-apply { display: inline-flex; align-items: center; gap: 28px; min-height: 52px; margin: 0; padding: 0 22px; background: var(--ink); }
.career-role-list .job-apply span { margin: 0; color: var(--amber); font-size: 1.1rem; }

.career-modal[hidden] { display: none; }
.career-modal { position: fixed; z-index: 100; inset: 0; display: grid; place-items: center; padding: 20px; }
.career-modal-backdrop { position: absolute; inset: 0; background: rgba(3,18,29,.78); backdrop-filter: blur(8px); }
.career-modal-panel { position: relative; display: grid; grid-template-columns: minmax(280px, .72fr) minmax(390px, 1fr); width: min(1000px, 96vw); max-height: 92vh; overflow: auto; background: #fff; box-shadow: 0 30px 100px rgba(0,0,0,.4); animation: modalIn .28s ease both; }
.career-modal-intro { position: sticky; top: 0; display: flex; min-height: 100%; flex-direction: column; justify-content: center; padding: clamp(32px, 5vw, 62px); color: #fff; background: linear-gradient(145deg, #0878bf, #0e256f); overflow: hidden; }
.career-modal-intro::after { position: absolute; right: -90px; bottom: -90px; width: 250px; height: 250px; border: 38px solid rgba(255,255,255,.08); border-radius: 50%; content: ""; }
.career-modal-intro > span { align-self: flex-start; padding: 6px 10px; color: var(--deep-blue); background: var(--amber); font-size: .7rem; font-weight: 900; text-transform: uppercase; }
.career-modal-intro p { margin: 45px 0 5px; color: rgba(255,255,255,.65); }
.career-modal-intro h2 { margin: 0 0 24px; font-size: clamp(2.3rem, 4.2vw, 4.6rem); line-height: .95; letter-spacing: -.055em; }
.career-modal-intro small { font-weight: 800; }
.career-modal-panel .application-form { padding: clamp(30px, 4vw, 48px); box-shadow: none; }
.career-modal-panel .application-form label:first-child { display: none; }
.career-modal-close { position: absolute; z-index: 4; top: 14px; right: 14px; width: 42px; height: 42px; border: 0; border-radius: 50%; color: var(--ink); background: #eef4f5; font-size: 1.7rem; cursor: pointer; }
.career-modal-panel .primary-btn { gap: 20px; cursor: pointer; }
.is-modal-open { overflow: hidden; }
@keyframes modalIn { from { opacity: 0; transform: translateY(24px) scale(.98); } to { opacity: 1; transform: none; } }

@media (max-width: 900px) {
  .services-intro { grid-template-columns: 1fr; padding-top: 30px; }
  .services-intro-visual { height: 430px; }
  .service-feature-wide, .service-feature-dark, .service-feature-blue, .service-feature-photo { grid-column: 1 / -1; }
  .career-banner { grid-template-columns: 1fr; }
  .career-banner-image { height: 430px; }
  .career-modal-panel { grid-template-columns: 1fr; }
  .career-modal-intro { position: static; min-height: 240px; }
  .career-modal-intro p { margin-top: 24px; }
  .career-modal-intro h2 { margin-bottom: 10px; }
  .leadership { grid-template-columns: 1fr; }
  .leadership-portrait { width: min(100%, 460px); min-height: 0; }
  .leadership-portrait img { min-height: 0; aspect-ratio: 3 / 4; }
  .about-hero-grid,
  .about-overview,
  .about-method-heading,
  .about-trusted {
    grid-template-columns: 1fr;
  }
  .about-hero-grid {
    min-height: auto;
  }
  .about-hero-visual {
    width: min(100%, 520px);
    min-height: 500px;
  }
  .about-stats,
  .trusted-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .about-director {
    grid-template-columns: minmax(150px, 220px) minmax(0, 1fr);
    gap: 24px;
  }
  .vision-portrait.about-director-photo {
    width: min(100%, 200px);
  }
  .about-director-copy {
    padding: 26px;
  }
  .method-track {
    grid-template-columns: 1fr;
  }
  .method-track::before {
    top: 0;
    bottom: 0;
    left: 40px;
    width: 2px;
    height: auto;
  }
  .method-track article,
  .method-track article:first-child {
    min-height: auto;
    padding: 28px 24px 28px 106px;
    border: 1px solid var(--line);
    border-bottom: 0;
  }
  .method-track article:last-child {
    border-bottom: 1px solid var(--line);
  }
  .method-track span {
    top: 24px;
    left: 22px;
    min-width: 58px;
    min-height: 48px;
    font-size: 0.72rem;
  }
}

@media (max-width: 620px) {
  .services-intro-copy h1, .career-banner h1 { font-size: clamp(2.8rem, 14vw, 4.4rem); }
  .service-feature-wide { display: block; padding-bottom: 260px; }
  .service-feature-wide > img { width: 100%; height: 235px; }
  .service-feature-photo { grid-template-columns: 1fr; }
  .service-feature-photo > img { height: 260px; }
  .service-sectors { align-items: flex-start; flex-direction: column; }
  .open-roles-heading { grid-template-columns: 1fr; }
  .open-roles-heading > span { margin-top: 10px; }
  .career-role-list .career-card { grid-template-columns: 44px 1fr; gap: 14px; }
  .career-role-list .job-apply { grid-column: 2; justify-self: start; }
  .career-modal { padding: 8px; }
  .career-modal-panel { max-height: 96vh; }
  .career-modal-intro { min-height: 220px; padding: 28px; }
  .career-modal-close { color: #fff; background: rgba(255,255,255,.15); }
  .about-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .about-feature-list article {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .about-feature-list p {
    grid-column: 1;
  }
  .about-hero-visual {
    min-height: 390px;
  }
  .about-hero-visual::before {
    inset: 28px 12px 46px 32px;
  }
  .about-main-image {
    width: 88%;
  }
  .about-floating-image {
    width: 52%;
    border-width: 7px;
  }
  .about-hero-note {
    right: 0;
    left: 20px;
    max-width: none;
  }
  .about-stats,
  .trusted-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .about-stats div {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: 118px;
  }
  .trusted-grid span {
    min-height: 82px;
    font-size: 0.78rem;
  }
  .about-director {
    grid-template-columns: 1fr;
    background: linear-gradient(180deg, #071f33 0 145px, #fff 145px 100%);
  }
  .vision-portrait.about-director-photo {
    width: min(100%, 190px);
  }
  .about-director-copy {
    border-left: 0;
    border-top: 5px solid var(--amber);
  }
}

@keyframes heroTextIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pageIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes sliderProgress {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 220px minmax(0, 1fr) auto;
  }

  .brand {
    width: 190px;
  }

  .nav-links {
    gap: 16px;
  }

  .service-grid,
  .project-grid,
  .solution-strip,
  .gallery-grid,
  .career-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 820px) {
  :root {
    --header-height: 78px;
    --footer-height: 0px;
  }

  .site-header {
    grid-template-columns: 1fr auto auto;
    gap: 12px;
  }

  .brand {
    width: 166px;
  }

  .nav-links {
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    background: #fff;
    box-shadow: 0 18px 30px rgba(12, 37, 48, 0.16);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    min-height: 48px;
    padding: 0 22px;
    border-top: 1px solid var(--line);
  }

  .nav-links a::after {
    display: none;
  }

  .header-action {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.78rem;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    min-height: calc(100vh - var(--footer-height));
  }

  h1 {
    font-size: clamp(3.2rem, 15vw, 5rem);
  }

  .slider-controls {
    bottom: calc(var(--footer-height) + 28px);
  }

  .slide-caption {
    bottom: calc(var(--footer-height) + 82px);
  }

  .slide-caption strong {
    font-size: clamp(2.25rem, 12vw, 4.25rem);
  }

  .intro-grid,
  .proof,
  .career-hero,
  .application-panel,
  .contact {
    grid-template-columns: 1fr;
  }

  .vision-portrait {
    grid-column: 1;
    width: min(100%, 380px);
  }

  .vision-copy {
    margin-left: 0;
    padding: 26px 24px;
  }

  #about .intro-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 20px;
  }

  .section-heading {
    display: block;
  }

  .service-grid,
  .project-grid,
  .solution-strip,
  .outcome-grid,
  .gallery-grid,
  .career-grid {
    grid-template-columns: 1fr;
  }

  .service-grid article {
    min-height: auto;
    grid-template-rows: 220px auto;
  }

  .proof-stack {
    min-height: auto;
    display: grid;
    gap: 14px;
  }

  .proof-stack img {
    position: static;
    width: 100%;
    height: 250px;
  }

  .proof-stack img:last-child {
    border: 0;
  }

  .outcome-grid .wide {
    grid-column: span 1;
  }

  .gallery-grid .wide {
    grid-column: span 1;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
    font-size: 0.78rem;
  }

  .footer-brand {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-brand img {
    width: 132px;
  }

  .footer-meta {
    justify-items: start;
    text-align: left;
  }
}

/* Final small-screen layout overrides */
@media (max-width: 820px) {
  :root {
    --header-height: 68px;
  }

  body {
    font-size: 16px;
    overflow-x: hidden;
  }

  .site-header,
  .site-header.is-scrolled {
    min-height: var(--header-height);
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 8px;
    padding: 0 10px;
  }

  .brand {
    width: clamp(120px, 40vw, 150px);
    min-width: 0;
    padding: 4px 0;
  }

  .header-action {
    width: 82px;
    min-height: 46px;
    padding: 4px 7px;
    font-size: 0.7rem;
    line-height: 1.15;
  }

  .menu-toggle {
    width: 44px;
    height: 46px;
  }

  .nav-links {
    top: var(--header-height);
    max-height: calc(100svh - var(--header-height));
    overflow-y: auto;
  }

  .nav-links a {
    min-height: 46px;
    padding: 0 18px;
    font-size: 0.9rem;
  }

  section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .page-view {
    min-height: auto;
    padding-top: calc(var(--header-height) + 28px);
    padding-bottom: 58px;
  }

  .section-heading {
    min-height: 0;
    margin-bottom: 24px;
  }

  .section-heading .section-kicker {
    position: static;
    margin: 0 0 12px;
  }

  .section-heading h1,
  .section-heading h2,
  .page-view h1 {
    max-width: 100%;
    font-size: clamp(2.2rem, 10.5vw, 3.35rem);
    line-height: 1.02;
    text-align: left;
    overflow-wrap: anywhere;
  }

  .intro.page-view::before,
  .services.page-view::before,
  .projects.page-view::before,
  .outcomes.page-view::before,
  .gallery.page-view::before,
  .careers.page-view::before,
  .contact.page-view::before {
    top: calc(var(--header-height) + 18px);
    font-size: clamp(4rem, 24vw, 7rem);
  }

  .contact {
    gap: 34px;
    align-items: start;
  }

  .contact-copy {
    font-size: 1rem;
    line-height: 1.65;
  }

  .contact-card {
    width: 100%;
    padding: 20px 16px;
    box-shadow: 0 16px 44px rgba(12, 37, 48, 0.14);
  }

  .contact-card img {
    width: min(220px, 78%);
    margin: 0 auto 24px;
  }

  .contact-form {
    gap: 16px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea,
  .application-form input,
  .application-form select,
  .application-form textarea {
    min-height: 50px;
    padding: 12px;
    font-size: 16px;
  }

  .contact-form textarea,
  .application-form textarea {
    min-height: 104px;
  }

  .hero {
    min-height: calc(100svh - 64px);
  }

  .hero-slide {
    background-position: 54% center;
  }

  .slide-caption {
    left: 18px;
    right: 18px;
    bottom: 92px;
    width: auto;
    padding-left: 14px;
    border-left-width: 4px;
  }

  .slide-caption span {
    margin-bottom: 7px;
    font-size: 0.72rem;
    line-height: 1.35;
  }

  .slide-caption strong {
    max-width: 92%;
    font-size: clamp(2rem, 10.5vw, 3.15rem);
    line-height: 0.98;
  }

  .slider-controls {
    bottom: 34px;
    width: calc(100% - 36px);
    justify-content: center;
  }

  .slider-dots {
    width: 100%;
    max-width: 300px;
    gap: 8px;
  }

  .slider-dots button {
    width: auto;
    height: 5px;
    flex: 1;
  }

  .services-showcase,
  .careers-studio {
    padding-top: calc(var(--header-height) + 22px);
  }

  .services-intro {
    min-height: 0;
    gap: 30px;
    padding-top: 0;
  }

  .services-intro-copy {
    padding-left: 0;
  }

  .services-intro-visual {
    height: 330px;
  }

  .service-bento {
    margin-top: 28px;
  }

  .service-feature {
    min-height: 360px;
  }

  .career-banner {
    min-height: 0;
  }

  .career-banner > div:first-child {
    padding: 38px 22px;
  }

  .career-banner-image {
    min-height: 340px;
    height: 340px;
  }

  .career-grid.career-role-list {
    grid-template-columns: 1fr;
  }

  .career-modal-panel .application-form {
    padding: 26px 18px;
  }

  .site-footer {
    min-height: 64px;
    justify-content: center;
    padding: 14px 12px;
    text-align: center;
  }

}

@media (max-width: 380px) {
  .brand {
    width: 118px;
  }

  .header-action {
    width: 76px;
    font-size: 0.64rem;
  }

  .menu-toggle {
    width: 40px;
  }

  .career-role-list .career-card {
    padding-right: 8px;
    padding-left: 8px;
  }
}

@media (max-width: 820px) {
  .contact {
    grid-template-columns: 1fr;
    padding-top: calc(var(--header-height) + 105px);
  }

  .contact.page-view::before {
    top: calc(var(--header-height) + 16px);
    left: 20px;
    font-size: clamp(5rem, 23vw, 8rem);
    text-align: left;
    transform: none;
  }

  .contact-intro {
    position: relative;
    top: auto;
  }
}

@media (max-width: 620px) {
  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-form label {
    grid-column: 1;
  }

  .contact-card-heading {
    display: grid;
    gap: 18px;
  }

  .contact-card-heading > div {
    text-align: left;
  }

  .contact-card-heading img {
    margin: 0;
  }
}

/* Keep the header logo identical across every page. */
.site-header .brand {
  width: 220px;
  aspect-ratio: 449 / 151;
  flex: 0 0 auto;
  padding: 0;
}

.site-header .brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

@media (max-width: 1180px) {
  .site-header .brand {
    width: 190px;
  }
}

@media (max-width: 820px) {
  .site-header .brand {
    width: 166px;
  }
}

@media (max-width: 620px) {
  .site-header .brand {
    width: clamp(120px, 40vw, 150px);
  }
}

@media (max-width: 380px) {
  .site-header .brand {
    width: 118px;
  }
}

/* Projects: show the complete photo instead of cropping mixed aspect ratios. */
.project-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 26px);
}

.project-grid article {
  grid-template-rows: auto 1fr;
  min-height: 0;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(12, 37, 48, 0.09);
}

.project-grid img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  padding: clamp(8px, 1vw, 14px);
  object-fit: contain;
  object-position: center;
  background:
    radial-gradient(circle at 82% 16%, rgba(40, 185, 202, 0.14), transparent 34%),
    linear-gradient(145deg, #edf4f5, #f8fbfb);
}

.project-grid article:hover img {
  transform: none;
}

@media (max-width: 1180px) {
  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .project-grid {
    grid-template-columns: 1fr;
  }

  .project-grid img {
    padding: 8px;
  }
}

/* Premium homepage image slider */
.hero {
  min-height: 100svh;
  background: #061d2a;
}

.hero-slide {
  opacity: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: none;
  transition: opacity 900ms ease;
}

.hero-slide.active {
  opacity: 1;
  transform: none;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 18, 28, 0.92) 0%, rgba(3, 18, 28, 0.72) 38%, rgba(3, 18, 28, 0.12) 72%),
    linear-gradient(180deg, rgba(3, 18, 28, 0.1) 45%, rgba(3, 18, 28, 0.68) 100%);
}

.slide-caption {
  left: clamp(22px, 6vw, 96px);
  bottom: clamp(126px, 16vh, 180px);
  width: min(780px, calc(100% - 44px));
  padding: 0;
  border: 0;
}

.slide-caption span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #55d8db;
  font-size: 0.76rem;
  letter-spacing: 0.15em;
}

.slide-caption strong {
  max-width: 760px;
  font-size: clamp(3.2rem, 6.3vw, 7rem);
  line-height: 0.9;
  letter-spacing: -0.055em;
  text-transform: none;
  text-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
}

.slide-caption p {
  max-width: 610px;
  margin: 25px 0 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.98rem, 1.3vw, 1.14rem);
  line-height: 1.65;
}

.slide-caption a {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  gap: 34px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  font-weight: 900;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.slide-caption a:hover,
.slide-caption a:focus-visible {
  border-color: var(--amber);
  color: #071f33;
  background: var(--amber);
  transform: translateY(-2px);
}

.slider-controls {
  right: auto;
  bottom: 42px;
  left: clamp(22px, 6vw, 96px);
  gap: 12px;
  transform: none;
}

.slider-arrow {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  color: #fff;
  background: rgba(4, 25, 36, 0.34);
  font-size: 1.1rem;
  cursor: pointer;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.slider-arrow:hover,
.slider-arrow:focus-visible {
  border-color: #55d8db;
  color: #062434;
  background: #55d8db;
}

.slider-dots {
  gap: 7px;
}

.slider-dots button {
  width: 34px;
  height: 4px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.3);
}

.slider-dots button::after {
  border-radius: inherit;
  background: #55d8db;
}

.slider-count {
  min-width: 62px;
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.slider-count b {
  color: #fff;
  font-size: 0.9rem;
}

@media (max-width: 820px) {
  .hero-slide {
    background-position: 64% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(3, 18, 28, 0.05) 12%, rgba(3, 18, 28, 0.34) 43%, rgba(3, 18, 28, 0.94) 82%),
      linear-gradient(90deg, rgba(3, 18, 28, 0.36), transparent 75%);
  }

  .slide-caption {
    right: 18px;
    bottom: 116px;
    left: 18px;
    width: auto;
  }

  .slide-caption span {
    margin-bottom: 12px;
    font-size: 0.66rem;
  }

  .slide-caption strong {
    max-width: 560px;
    font-size: clamp(2.65rem, 12vw, 4.6rem);
    line-height: 0.92;
  }

  .slide-caption p {
    display: none;
  }

  .slide-caption a {
    min-height: 44px;
    margin-top: 22px;
  }

  .slider-controls {
    right: 18px;
    bottom: 28px;
    left: 18px;
    width: auto;
    justify-content: flex-start;
  }

  .slider-dots {
    width: auto;
  }

  .slider-dots button {
    width: 24px;
    flex: none;
  }
}

@media (max-width: 480px) {
  .slider-arrow {
    width: 40px;
    height: 40px;
  }

  .slider-count {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide,
  .slide-caption {
    transition: none;
  }

  .slider-dots button.active::after {
    animation: none;
    transform: scaleX(1);
  }
}

/* Final caption layer: the shade stays behind the copy on every slide. */
.hero .hero-slide::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(2, 19, 29, 0.96) 0%, rgba(2, 19, 29, 0.78) 43%, rgba(2, 19, 29, 0.08) 76%),
    linear-gradient(180deg, transparent 48%, rgba(2, 19, 29, 0.72) 100%);
  content: "";
  pointer-events: none;
}

.hero .slide-caption {
  z-index: 3;
  display: flex;
  width: min(700px, calc(100% - 44px));
  height: clamp(390px, 46vh, 420px);
  box-sizing: border-box;
  flex-direction: column;
  padding: clamp(26px, 3vw, 40px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 5px solid #55d8db;
  border-radius: 20px;
  color: #fff;
  background: rgba(3, 27, 39, 0.76);
  box-shadow: 0 26px 76px rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.12);
  backdrop-filter: blur(16px) saturate(1.12);
}

.hero .slide-caption span {
  color: #62e4e7;
}

.hero .slide-caption strong {
  max-width: 620px;
  color: #fff;
  font-size: clamp(2.65rem, 4.8vw, 5.15rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
  text-shadow: 0 5px 24px rgba(0, 0, 0, 0.42);
}

.hero .slide-caption p {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
}

.hero .slide-caption a {
  align-self: flex-start;
  margin-top: auto;
}

@media (max-width: 820px) {
  .hero .hero-slide::before {
    background:
      linear-gradient(180deg, rgba(2, 19, 29, 0.04) 8%, rgba(2, 19, 29, 0.44) 42%, rgba(2, 19, 29, 0.98) 84%),
      linear-gradient(90deg, rgba(2, 19, 29, 0.48), transparent 86%);
  }

  .hero .slide-caption {
    right: 18px;
    bottom: 92px;
    left: 18px;
    width: auto;
    height: 320px;
    padding: 20px 18px;
    border-left-width: 4px;
    border-radius: 16px;
  }

  .hero .slide-caption span {
    margin-bottom: 10px;
    font-size: 0.64rem;
  }

  .hero .slide-caption strong {
    font-size: clamp(2rem, 9.2vw, 3.3rem);
    line-height: 0.97;
  }

  .hero .slide-caption p {
    display: none;
  }

  .hero .slide-caption a {
    min-height: 42px;
    margin-top: auto;
  }
}

@media (max-width: 420px) {
  .hero .slide-caption {
    height: 300px;
    padding: 17px 15px;
  }

  .hero .slide-caption strong {
    font-size: clamp(1.8rem, 8.6vw, 2.5rem);
  }
}

/* Mobile experience polish */
@media (max-width: 820px) {
  :root {
    --header-height: 72px;
  }

  body {
    background: #f6fafb;
  }

  .site-header,
  .site-header.is-scrolled {
    min-height: var(--header-height);
    grid-template-columns: minmax(0, 1fr) 78px 42px;
    gap: 7px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(12, 37, 48, 0.08);
    box-shadow: 0 14px 38px rgba(12, 37, 48, 0.12);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
  }

  .site-header .brand {
    grid-column: 1;
    width: clamp(126px, 38vw, 156px);
  }

  .header-action {
    width: 100%;
    min-height: 42px;
    padding: 7px 10px;
    border-radius: 12px;
    font-size: 0.66rem;
    line-height: 1.12;
    box-shadow: 0 10px 22px rgba(14, 37, 111, 0.22);
    overflow: hidden;
  }

  .profile-menu {
    position: absolute;
    grid-column: 2;
    top: 15px;
    right: 58px;
    width: 100%;
    max-width: 72px;
    min-width: 0;
  }

  .profile-menu-options {
    right: -49px;
    width: 168px;
    border-radius: 14px;
    box-shadow: 0 20px 42px rgba(7, 31, 51, 0.2);
  }

  .menu-toggle {
    position: absolute;
    grid-column: 3;
    top: 15px;
    right: 10px;
    display: flex;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    box-shadow: 0 10px 22px rgba(14, 37, 111, 0.2);
  }

  .menu-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 999px;
  }

  .nav-links {
    grid-column: 1 / -1;
    top: calc(var(--header-height) + 8px);
    right: 12px;
    left: 12px;
    display: grid;
    gap: 5px;
    max-height: calc(100svh - var(--header-height) - 24px);
    padding: 10px;
    border: 1px solid rgba(12, 37, 48, 0.1);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 24px 52px rgba(12, 37, 48, 0.18);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
  }

  .nav-links.is-open {
    display: grid;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    min-height: 46px;
    padding: 0 14px;
    border: 0;
    border-radius: 12px;
    color: #14303b;
    font-size: 0.94rem;
  }

  .nav-links a.is-active,
  .nav-links a:hover,
  .nav-links a:focus-visible {
    color: #fff;
    background: linear-gradient(135deg, var(--deep-blue), var(--blue));
  }

  section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .page-view {
    padding-top: calc(var(--header-height) + 24px);
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .section-heading,
  .intro-grid,
  .service-grid,
  .project-grid,
  .solution-strip,
  .outcome-grid,
  .gallery-grid,
  .career-grid {
    gap: 18px;
  }

  .service-grid article,
  .project-grid article,
  .career-card,
  .contact-card,
  .application-panel {
    border-radius: 16px;
    box-shadow: 0 18px 44px rgba(12, 37, 48, 0.1);
  }

  .hero {
    min-height: 100svh;
    padding-top: var(--header-height);
    background: #071d27;
  }

  .hero-slide {
    background-position: 58% center;
  }

  .hero-slide:nth-child(2) {
    background-position: 48% center;
  }

  .hero-slide:nth-child(3) {
    background-position: 60% center;
  }

  .hero-slide:nth-child(4) {
    background-position: 42% center;
  }

  .hero .hero-slide::before {
    background:
      linear-gradient(180deg, rgba(2, 19, 29, 0.08) 0%, rgba(2, 19, 29, 0.24) 32%, rgba(2, 19, 29, 0.9) 76%, rgba(2, 19, 29, 0.98) 100%),
      linear-gradient(120deg, rgba(8, 120, 191, 0.24), rgba(47, 163, 111, 0.12) 42%, transparent 72%);
  }

  .hero .slide-caption {
    right: 14px;
    bottom: 96px;
    left: 14px;
    width: auto;
    height: auto;
    min-height: 0;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-top: 4px solid #55d8db;
    border-left: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 18px;
    background: rgba(3, 27, 39, 0.78);
    box-shadow: 0 26px 58px rgba(0, 0, 0, 0.34);
  }

  .hero .slide-caption span {
    margin-bottom: 9px;
    font-size: 0.62rem;
    letter-spacing: 0.12em;
  }

  .hero .slide-caption strong {
    max-width: 100%;
    font-size: clamp(2rem, 10.6vw, 3.35rem);
    line-height: 0.98;
    letter-spacing: 0;
  }

  .hero .slide-caption p {
    display: block;
    margin: 13px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.9rem;
    line-height: 1.48;
  }

  .slider-controls {
    right: 14px;
    bottom: 28px;
    left: 14px;
    width: auto;
    justify-content: space-between;
    gap: 8px;
  }

  .slider-arrow {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.12);
  }

  .slider-dots {
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
    max-width: none;
    padding: 0 2px;
  }

  .slider-dots button {
    width: auto;
    height: 5px;
    flex: 1 1 0;
  }

  .slider-count {
    display: none;
  }

  .site-footer {
    min-height: 58px;
    padding: 12px;
    background: #061d2a;
  }

  .services-showcase {
    padding-top: calc(var(--header-height) + 22px);
    overflow: hidden;
  }

  .services-intro {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
    overflow: hidden;
  }

  .services-intro-copy,
  .services-intro-visual,
  .service-feature,
  .service-feature-copy {
    min-width: 0;
  }

  .services-intro-copy {
    width: min(100%, calc(100vw - 32px));
    max-width: calc(100vw - 32px);
  }

  .services-intro-copy h1,
  .career-banner h1 {
    max-width: 100%;
    font-size: clamp(2rem, 9.5vw, 2.9rem);
    line-height: 1;
    letter-spacing: 0;
    overflow-wrap: break-word;
  }

  .services-intro-copy > p:not(.section-kicker) {
    width: 100%;
    max-width: 100%;
    font-size: 1rem;
    overflow-wrap: break-word;
  }

  .service-bento {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .service-feature,
  .service-feature-wide,
  .service-feature-dark,
  .service-feature-blue,
  .service-feature-photo {
    grid-column: 1;
    min-height: 0;
    border-radius: 16px;
  }

  .service-feature-wide,
  .service-feature-photo {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    padding: 24px 18px;
  }

  .service-feature-wide > img,
  .service-feature-photo > img {
    position: static;
    width: 100%;
    height: 220px;
    margin-top: 20px;
    border-radius: 12px;
    object-fit: cover;
  }

  .service-feature-wide > .service-number,
  .service-feature-wide > .service-feature-copy {
    max-width: 100%;
  }

  .service-feature-dark .service-feature-copy,
  .service-feature-photo .service-feature-copy,
  .service-feature-blue {
    padding: 24px 18px;
  }

  .service-feature-copy h2,
  .service-feature-dark .service-feature-copy h2,
  .service-feature-photo .service-feature-copy h2 {
    font-size: clamp(1.7rem, 8vw, 2.35rem);
    line-height: 1.05;
    letter-spacing: 0;
  }

  .service-sectors {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px 16px;
  }

  .contact {
    grid-template-columns: minmax(0, 1fr);
    padding-top: calc(var(--header-height) + 36px);
    overflow: hidden;
  }

  .contact-intro {
    width: 100%;
    min-width: 0;
    padding: 28px 20px;
    border-radius: 18px;
  }

  .contact-intro h1 {
    margin: 14px 0 20px;
    font-size: clamp(2.05rem, 9.8vw, 2.85rem);
    line-height: 1.03;
    letter-spacing: 0;
    overflow-wrap: break-word;
  }

  .contact-copy {
    max-width: 100%;
  }

  .contact-highlights {
    margin-top: 24px;
  }

  .contact-card {
    width: 100%;
    min-width: 0;
    padding: 22px 16px;
  }
}

@media (max-width: 420px) {
  .site-header,
  .site-header.is-scrolled {
    grid-template-columns: minmax(0, 1fr) 72px 38px;
    gap: 6px;
    padding-right: 9px;
    padding-left: 9px;
  }

  .site-header .brand {
    width: clamp(116px, 34vw, 132px);
  }

  .profile-menu {
    right: 53px;
    max-width: 70px;
  }

  .menu-toggle {
    right: 8px;
  }

  .header-action {
    padding-right: 7px;
    padding-left: 7px;
    font-size: 0.61rem;
  }

  .hero .slide-caption {
    right: 10px;
    bottom: 88px;
    left: 10px;
    padding: 15px;
    border-radius: 16px;
  }

  .hero .slide-caption strong {
    font-size: clamp(1.78rem, 9.7vw, 2.52rem);
  }

  .hero .slide-caption p {
    font-size: 0.84rem;
    line-height: 1.42;
  }

  .slider-controls {
    right: 10px;
    bottom: 24px;
    left: 10px;
  }

  .slider-arrow {
    width: 38px;
    height: 38px;
  }
}

/* Mobile header and careers form fix */
@media (max-width: 820px) {
  .site-header,
  .site-header.is-scrolled {
    grid-template-columns: minmax(0, 1fr) 44px;
    gap: 10px;
    overflow: visible;
  }

  .site-header .brand {
    width: clamp(118px, 42vw, 154px);
  }

  .profile-menu {
    display: none;
  }

  .menu-toggle {
    position: fixed;
    top: 14px;
    right: 12px;
    z-index: 100;
    grid-column: 2;
    justify-self: end;
    display: flex !important;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 13px;
    color: #fff;
    background: var(--deep-blue);
    box-shadow: 0 12px 26px rgba(14, 37, 111, 0.26);
    opacity: 1;
    visibility: visible;
  }

  .nav-links {
    position: fixed;
    top: calc(var(--header-height) + 8px);
    right: 12px;
    left: 12px;
    z-index: 75;
    display: none;
    max-height: calc(100svh - var(--header-height) - 24px);
    overflow-y: auto;
  }

  .nav-links.is-open {
    display: grid;
  }

  .careers-studio {
    overflow: hidden;
  }

  .career-banner,
  .open-roles-heading,
  .career-grid.career-role-list {
    width: 100%;
    max-width: min(430px, calc(100vw - 32px));
    margin-right: auto;
    margin-left: auto;
  }

  .career-banner {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
    border-radius: 18px;
    overflow: hidden;
  }

  .career-banner > div:first-child {
    padding: 34px 22px;
  }

  .career-banner h1 {
    max-width: 100%;
    font-size: clamp(2rem, 9.8vw, 2.85rem);
    line-height: 1.02;
    letter-spacing: 0;
    overflow-wrap: break-word;
  }

  .career-banner h1 em {
    display: block;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .career-banner p:not(.section-kicker) {
    max-width: 100%;
    font-size: 0.98rem;
    line-height: 1.65;
    overflow-wrap: break-word;
  }

  .career-banner-image {
    height: 300px;
    min-height: 300px;
  }

  .career-banner-image span {
    right: 14px;
    bottom: 12px;
    font-size: clamp(2.5rem, 14vw, 4rem);
  }

  .open-roles-heading {
    display: block;
    margin-top: 34px;
  }

  .career-role-list .career-card {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    min-height: 0;
    padding: 22px 0;
  }

  .career-role-list h2 {
    font-size: clamp(1.55rem, 8vw, 2.25rem);
    letter-spacing: 0;
  }

  .career-role-list .job-apply {
    grid-column: 2;
    justify-self: start;
    min-height: 46px;
    margin-top: 14px;
    border: 0;
    border-radius: 12px;
  }

  .career-modal {
    padding: 10px;
  }

  .career-modal-panel {
    grid-template-columns: minmax(0, 1fr);
    width: min(100%, 430px);
    max-height: 94svh;
    border-radius: 18px;
    overflow: auto;
  }

  .career-modal-intro {
    position: relative;
    min-height: 0;
    padding: 28px 20px;
  }

  .career-modal-intro h2 {
    font-size: clamp(1.9rem, 9vw, 2.8rem);
    line-height: 1;
    letter-spacing: 0;
  }

  .career-modal-panel .application-form {
    grid-template-columns: minmax(0, 1fr);
    padding: 22px 16px 26px;
  }

  .career-modal-panel .application-form label:first-child {
    display: grid;
  }

  .application-form input,
  .application-form select,
  .application-form textarea {
    min-height: 52px;
    border-radius: 12px;
    font-size: 16px;
  }

  .application-form select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 42px;
    background-color: #f8fbfc;
    background-image:
      linear-gradient(45deg, transparent 50%, var(--deep-blue) 50%),
      linear-gradient(135deg, var(--deep-blue) 50%, transparent 50%);
    background-position:
      calc(100% - 22px) 50%,
      calc(100% - 15px) 50%;
    background-repeat: no-repeat;
    background-size: 7px 7px, 7px 7px;
  }
}

/* About page row refinements */
section.about-overview.page-view.is-active,
section.about-method.page-view.is-active,
section.about-director.page-view.is-active,
section.about-trusted.page-view.is-active {
  min-height: auto;
}

section.about-overview.page-view.is-active {
  display: grid !important;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  padding-top: clamp(44px, 5vw, 68px);
  padding-bottom: clamp(44px, 5vw, 68px);
}

section.about-overview .about-overview-copy {
  max-width: 620px;
}

section.about-overview .about-overview-copy h2 {
  font-size: clamp(2rem, 3.7vw, 4.25rem);
  line-height: 1.02;
}

section.about-overview .about-feature-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  background: transparent;
  box-shadow: none;
}

section.about-overview .about-feature-list article {
  grid-template-columns: 1fr;
  gap: 10px;
  min-height: 210px;
  padding: clamp(20px, 2.5vw, 28px);
  border: 1px solid rgba(12, 37, 48, 0.1);
  box-shadow: 0 18px 42px rgba(12, 37, 48, 0.08);
}

section.about-overview .about-feature-list p {
  grid-column: 1;
}

section.about-hero.page-view.is-active {
  position: relative;
  opacity: 1;
  min-height: auto;
  padding-top: calc(var(--header-height) + clamp(28px, 4vw, 58px));
  padding-bottom: clamp(42px, 5vw, 72px);
  color: #fff;
  background:
    linear-gradient(120deg, #071f33 0%, #0b3343 55%, #f3f8fa 55.2%, #f3f8fa 100%);
  transform: none;
}

section.about-hero.page-view.is-active::before,
section.about-hero.page-view.is-active::after {
  content: none;
}

section.about-hero .about-hero-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.88fr);
  min-height: clamp(460px, 56vh, 610px);
  gap: clamp(34px, 5vw, 86px);
  align-items: center;
}

section.about-hero .about-hero-copy {
  max-width: 680px;
}

section.about-hero .about-hero-copy .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--amber);
}

section.about-hero .about-hero-copy .section-kicker::before {
  display: inline-block;
  width: 34px;
  height: 2px;
  background: var(--amber);
  content: "";
}

section.about-hero .about-hero-copy h1 {
  max-width: 660px;
  margin-bottom: 24px;
  color: #fff;
  font-size: clamp(2.6rem, 4.65vw, 5.25rem);
  line-height: 0.98;
  text-wrap: balance;
}

section.about-hero .about-hero-copy > p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.05vw, 1.12rem);
  line-height: 1.78;
}

section.about-hero .about-actions {
  gap: 14px;
  margin-top: 34px;
}

section.about-hero .about-actions .primary-btn {
  color: #071f33;
  background: var(--amber);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

section.about-hero .about-actions .primary-btn:hover {
  background: #ffd15f;
}

section.about-hero .about-actions .secondary-btn {
  border-color: rgba(255, 255, 255, 0.36);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

section.about-hero .about-actions .secondary-btn:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

section.about-hero .about-hero-visual {
  isolation: isolate;
  width: min(100%, 560px);
  min-height: 440px;
  justify-self: end;
}

section.about-hero .about-hero-visual::before {
  position: absolute;
  inset: 28px 0 0 76px;
  z-index: 0;
  border: 1px solid rgba(12, 37, 48, 0.08);
  background:
    linear-gradient(135deg, rgba(8, 120, 191, 0.18), rgba(47, 163, 111, 0.1)),
    #fff;
  box-shadow: 0 30px 80px rgba(12, 37, 48, 0.18);
  content: "";
}

section.about-hero .about-main-image {
  top: 0;
  right: 22px;
  z-index: 1;
  width: min(82%, 460px);
  aspect-ratio: 1.22 / 1;
  object-position: center;
  border: 10px solid #fff;
  box-shadow: 0 24px 70px rgba(12, 37, 48, 0.22);
}

section.about-hero .about-floating-image {
  bottom: 0;
  left: 0;
  z-index: 2;
  width: min(56%, 285px);
  aspect-ratio: 1 / 1.04;
  border-width: 10px;
  object-position: center;
  box-shadow: 0 22px 56px rgba(12, 37, 48, 0.2);
}

section.about-hero .about-hero-note {
  display: none;
}

section.about-hero .about-hero-note strong {
  width: 48px;
  height: 48px;
}

section.about-stats.page-view.is-active {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 22px);
  min-height: auto;
  padding: clamp(34px, 4.5vw, 60px) clamp(18px, 5vw, 70px);
  background:
    radial-gradient(circle at 12% 18%, rgba(40, 185, 202, 0.14), transparent 32%),
    linear-gradient(90deg, rgba(245, 183, 46, 0.08), transparent 38%),
    #061d2e;
}

section.about-stats.page-view.is-active > div {
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(0, 1fr);
  gap: clamp(14px, 1.7vw, 24px);
  align-items: center;
  min-height: clamp(126px, 10vw, 156px);
  padding: clamp(24px, 2.7vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(8, 120, 191, 0.28), rgba(40, 185, 202, 0.07)),
    #0a3a50;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
}

section.about-stats.page-view.is-active .stat-icon {
  top: 50%;
  right: clamp(16px, 1.8vw, 26px);
  bottom: auto;
  width: clamp(72px, 6vw, 105px);
  height: clamp(72px, 6vw, 105px);
  color: rgba(255, 255, 255, 0.12);
  transform: translateY(-50%);
}

section.about-stats.page-view.is-active strong {
  min-width: 0;
  font-size: clamp(2.45rem, 3.8vw, 4.55rem);
  letter-spacing: 0;
  white-space: nowrap;
}

section.about-stats.page-view.is-active div > span:not(.stat-icon) {
  max-width: 180px;
  padding-right: clamp(28px, 3vw, 56px);
  font-size: clamp(0.95rem, 1.15vw, 1.22rem);
  line-height: 1.28;
  overflow-wrap: normal;
  word-break: normal;
}

section.about-stats.page-view.is-active > div:nth-child(3) {
  grid-template-columns: 1fr;
  align-content: center;
  gap: 10px;
}

section.about-stats.page-view.is-active > div:nth-child(3) strong {
  font-size: clamp(2.35rem, 3.25vw, 4rem);
}

section.about-stats.page-view.is-active > div:nth-child(3) > span:not(.stat-icon) {
  max-width: none;
  padding-right: clamp(82px, 7vw, 124px);
}

@media (max-width: 1440px) {
  section.about-stats.page-view.is-active {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  section.about-stats.page-view.is-active div > span:not(.stat-icon) {
    max-width: 240px;
  }

  section.about-stats.page-view.is-active > div:nth-child(3) {
    grid-template-columns: minmax(0, auto) minmax(0, 1fr);
    gap: clamp(14px, 1.7vw, 24px);
  }

  section.about-stats.page-view.is-active > div:nth-child(3) > span:not(.stat-icon) {
    max-width: 240px;
    padding-right: clamp(28px, 3vw, 56px);
  }
}

@media (max-width: 1180px) {
  section.about-stats.page-view.is-active {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  section.about-stats.page-view.is-active {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 28px 16px;
  }

  section.about-stats.page-view.is-active > div {
    min-height: 108px;
    grid-template-columns: minmax(92px, auto) minmax(0, 1fr);
    padding: 22px 20px;
  }

  section.about-stats.page-view.is-active strong {
    font-size: clamp(2.25rem, 12vw, 3.3rem);
  }

  section.about-stats.page-view.is-active div > span:not(.stat-icon) {
    max-width: none;
    padding-right: 54px;
    font-size: 1rem;
  }

  section.about-stats.page-view.is-active .stat-icon {
    width: 74px;
    height: 74px;
    right: 14px;
  }

  section.about-stats.page-view.is-active > div:nth-child(3) {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  section.about-stats.page-view.is-active > div:nth-child(3) > span:not(.stat-icon) {
    max-width: none;
    padding-right: 70px;
  }
}

@media (max-width: 380px) {
  section.about-stats.page-view.is-active > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  section.about-stats.page-view.is-active div > span:not(.stat-icon) {
    padding-right: 70px;
  }
}

section.about-method.page-view.is-active {
  display: grid !important;
  gap: clamp(22px, 3vw, 38px);
  padding-top: clamp(44px, 5vw, 66px);
  padding-bottom: clamp(44px, 5vw, 66px);
}

section.about-method .method-track article {
  min-height: 230px;
}

section.about-sectors.page-view.is-active {
  display: grid !important;
  gap: clamp(24px, 4vw, 40px);
  min-height: auto;
  padding-top: clamp(46px, 5vw, 72px);
  padding-bottom: clamp(50px, 6vw, 82px);
  background:
    linear-gradient(135deg, rgba(245, 183, 46, 0.08) 0 20%, transparent 20% 100%),
    linear-gradient(180deg, #fff 0%, #f7fbfc 100%);
}

section.about-sectors .section-heading {
  display: grid;
  grid-template-columns: minmax(160px, 0.22fr) minmax(0, 0.78fr);
  gap: clamp(20px, 4vw, 56px);
  align-items: center;
  width: 100%;
  max-width: 1180px;
  min-height: auto;
  margin: 0;
  text-align: left;
}

section.about-sectors .section-heading .section-kicker {
  position: static;
  margin: 0 0 8px;
  color: var(--red);
}

section.about-sectors .section-heading h2 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(2rem, 3vw, 3.35rem);
  line-height: 1.04;
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
}

.sector-grid article {
  position: relative;
  min-height: clamp(260px, 27vw, 380px);
  overflow: hidden;
  border: 1px solid rgba(12, 37, 48, 0.12);
  border-radius: 8px;
  background: #071f33;
  box-shadow: 0 24px 62px rgba(12, 37, 48, 0.12);
  isolation: isolate;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.sector-grid article::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7, 31, 51, 0.05) 0%, rgba(7, 31, 51, 0.22) 42%, rgba(7, 31, 51, 0.86) 100%),
    linear-gradient(90deg, rgba(8, 120, 191, 0.24), transparent 52%);
  content: "";
}

.sector-grid img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease, filter 420ms ease;
}

.sector-grid article:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 76px rgba(12, 37, 48, 0.18);
}

.sector-grid article:hover img {
  filter: saturate(1.08);
  transform: scale(1.045);
}

.sector-grid article > div {
  position: absolute;
  z-index: 2;
  right: clamp(18px, 2vw, 28px);
  bottom: clamp(18px, 2vw, 28px);
  left: clamp(18px, 2vw, 28px);
  display: grid;
  gap: 8px;
}

.sector-grid span {
  width: fit-content;
  padding: 6px 9px;
  color: #071f33;
  background: var(--amber);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.sector-grid h3 {
  max-width: 340px;
  margin: 0;
  color: #fff;
  font-size: clamp(1.35rem, 2vw, 2.15rem);
  line-height: 1.02;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.32);
}

section.about-director.page-view.is-active {
  display: grid !important;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: center;
  min-height: auto;
  padding: clamp(38px, 4.5vw, 62px) clamp(18px, 5vw, 70px);
  background:
    linear-gradient(90deg, #071f33 0 22%, transparent 22% 100%),
    linear-gradient(135deg, #f7fbfc 0%, #fff 62%, #eef8f7 100%);
}

section.about-director .vision-portrait.about-director-photo {
  position: relative;
  align-self: center;
  display: grid;
  align-content: start;
  width: min(100%, 285px);
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 30px 76px rgba(12, 37, 48, 0.2);
  clip-path: none;
  overflow: hidden;
}

section.about-director .vision-portrait.about-director-photo::before {
  position: absolute;
  inset: 0;
  border-top: 5px solid var(--amber);
  content: "";
  pointer-events: none;
}

section.about-director .about-director-copy {
  position: relative;
  display: grid;
  align-content: center;
  max-width: none;
  min-height: 330px;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(12, 37, 48, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 26px 74px rgba(12, 37, 48, 0.08);
  overflow: hidden;
}

section.about-director .about-director-copy::before {
  position: absolute;
  top: clamp(22px, 3vw, 34px);
  right: clamp(24px, 4vw, 56px);
  color: rgba(245, 183, 46, 0.22);
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 0.7;
  content: "\201C";
}

section.about-director .vision-portrait.about-director-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(12, 37, 48, 0.16);
  object-fit: cover;
}

section.about-director .vision-portrait.about-director-photo figcaption {
  display: grid;
  gap: 4px;
  padding: 14px 14px 12px;
  border-left: 4px solid var(--amber);
  background: #071f33;
}

section.about-director .vision-portrait.about-director-photo figcaption strong {
  color: #fff;
  font-size: 1.08rem;
  line-height: 1.2;
}

section.about-director .vision-portrait.about-director-photo figcaption span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.35;
}

section.about-director .about-director-copy h2 {
  position: relative;
  max-width: 900px;
  margin-bottom: clamp(14px, 1.7vw, 20px);
  font-size: clamp(1.85rem, 3vw, 3.35rem);
  line-height: 1.04;
}

section.about-director .about-director-copy p:not(.section-kicker) {
  position: relative;
  max-width: 1040px;
  margin-bottom: 12px;
  color: #486677;
  font-size: clamp(1rem, 1.1vw, 1.12rem);
  line-height: 1.72;
}

section.about-trusted.page-view.is-active {
  display: grid !important;
  grid-template-columns: minmax(250px, 390px) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
  min-height: auto;
  padding-top: clamp(38px, 5vw, 58px);
  padding-bottom: clamp(38px, 5vw, 58px);
  background:
    linear-gradient(90deg, rgba(8, 120, 191, 0.08), rgba(47, 163, 111, 0.08)),
    #eef8f7;
  overflow: hidden;
}

section.about-trusted .about-trusted-copy h2 {
  margin-bottom: 0;
  font-size: clamp(1.65rem, 2.9vw, 3.05rem);
  line-height: 1.02;
}

section.about-trusted .trusted-marquee {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: 16px 0;
}

section.about-trusted .trusted-marquee::before,
section.about-trusted .trusted-marquee::after {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: 72px;
  content: "";
  pointer-events: none;
}

section.about-trusted .trusted-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #eef8f7, rgba(238, 248, 247, 0));
}

section.about-trusted .trusted-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #eef8f7, rgba(238, 248, 247, 0));
}

section.about-trusted .trusted-grid {
  display: flex;
  width: max-content;
  gap: 12px;
  background: transparent;
  box-shadow: none;
  animation: trustedMarquee 24s linear infinite;
  will-change: transform;
}

section.about-trusted .trusted-grid span {
  flex: 0 0 clamp(150px, 12vw, 210px);
  min-height: 76px;
  border: 1px solid rgba(12, 37, 48, 0.1);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 34px rgba(12, 37, 48, 0.08);
}

section.about-trusted .trusted-grid:hover {
  animation-play-state: paused;
}

@keyframes trustedMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 36px));
  }
}

@media (max-width: 980px) {
  section.about-hero.page-view.is-active {
    background:
      linear-gradient(180deg, #071f33 0 68%, #f3f8fa 68.2% 100%);
  }

  section.about-hero .about-hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  section.about-hero .about-hero-copy {
    max-width: 760px;
  }

  section.about-overview.page-view.is-active {
    grid-template-columns: 1fr;
  }

  section.about-overview .about-feature-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  section.about-stats.page-view.is-active {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  section.about-director.page-view.is-active,
  section.about-trusted.page-view.is-active {
    grid-template-columns: 1fr;
  }

  .sector-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sector-grid article {
    min-height: 300px;
  }

  section.about-sectors .section-heading {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  section.about-director.page-view.is-active {
    grid-template-columns: 1fr;
    background:
      linear-gradient(180deg, #071f33 0 180px, transparent 180px 100%),
      linear-gradient(135deg, #f7fbfc 0%, #fff 62%, #eef8f7 100%);
  }

  section.about-director .vision-portrait.about-director-photo {
    width: min(100%, 320px);
    justify-self: center;
  }

  section.about-hero .about-hero-visual {
    justify-self: center;
    min-height: 400px;
  }

  section.about-trusted .trusted-grid span {
    flex-basis: 180px;
  }
}

@media (max-width: 620px) {
  section.about-hero.page-view.is-active {
    padding-top: calc(var(--header-height) + 22px);
    padding-bottom: 34px;
    background:
      linear-gradient(180deg, #071f33 0 74%, #f3f8fa 74.2% 100%);
  }

  section.about-hero .about-hero-grid {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    gap: 18px;
    align-items: stretch;
  }

  section.about-hero .about-hero-copy {
    order: 1;
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  section.about-hero .about-hero-copy .section-kicker {
    margin-bottom: 14px;
    font-size: 0.78rem;
  }

  section.about-hero .about-hero-copy h1 {
    max-width: 100%;
    margin-bottom: 16px;
    font-size: clamp(2.25rem, 11vw, 3.35rem);
    line-height: 1;
  }

  section.about-hero .about-hero-copy > p {
    max-width: 100%;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.98rem;
    line-height: 1.62;
    overflow-wrap: break-word;
  }

  section.about-hero .about-actions {
    margin-top: 24px;
  }

  section.about-hero .about-hero-visual {
    order: 2;
    width: min(100%, 390px);
    min-height: 300px;
    margin: 0 auto;
  }

  section.about-hero .about-hero-visual::before {
    inset: 24px 0 0 42px;
  }

  section.about-hero .about-main-image {
    right: 0;
    width: min(86%, 330px);
    border-width: 7px;
  }

  section.about-hero .about-floating-image {
    width: min(52%, 205px);
    border-width: 7px;
  }

  section.about-overview.page-view.is-active,
  section.about-method.page-view.is-active {
    padding-top: 38px;
    padding-bottom: 38px;
  }

  section.about-overview .about-feature-list {
    grid-template-columns: 1fr;
  }

  section.about-overview .about-feature-list article {
    min-height: 0;
  }

  section.about-stats.page-view.is-active {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  section.about-sectors.page-view.is-active {
    padding-top: 38px;
    padding-bottom: 38px;
  }

  section.about-sectors .section-heading h2 {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .sector-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .sector-grid article {
    min-height: 270px;
  }

  section.about-director .about-director-copy {
    min-height: auto;
    padding: 30px 20px;
    border-left: 1px solid rgba(12, 37, 48, 0.08);
    border-top: 0;
  }

  section.about-director .about-director-copy h2 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  section.about-hero .about-hero-grid {
    min-height: auto;
  }

  section.about-hero .about-hero-visual {
    min-height: 230px;
  }

  section.about-trusted .trusted-grid span {
    flex-basis: 155px;
    min-height: 74px;
  }

  section.about-trusted .trusted-marquee::before,
  section.about-trusted .trusted-marquee::after {
    width: 32px;
  }
}

@media (prefers-reduced-motion: reduce) {
  section.about-trusted .trusted-grid {
    animation: none;
  }
}

section.intro.band.about-hero.page-view.is-active {
  opacity: 1 !important;
  background:
    linear-gradient(120deg, #071f33 0%, #0b3343 55%, #f3f8fa 55.2%, #f3f8fa 100%) !important;
  transform: none !important;
}

section.intro.band.about-hero.page-view.is-active::before,
section.intro.band.about-hero.page-view.is-active::after {
  display: none !important;
  content: none !important;
}

@media (max-width: 980px) {
  section.intro.band.about-hero.page-view.is-active {
    background:
      linear-gradient(180deg, #071f33 0 68%, #f3f8fa 68.2% 100%) !important;
  }
}

@media (max-width: 620px) {
  section.intro.band.about-hero.page-view.is-active {
    width: 100%;
    max-width: 100vw;
    padding-right: 16px !important;
    padding-left: 16px !important;
    overflow: hidden;
    background:
      linear-gradient(180deg, #071f33 0 74%, #f3f8fa 74.2% 100%) !important;
  }

  section.intro.band.about-hero .about-hero-grid,
  section.intro.band.about-hero .about-hero-copy,
  section.intro.band.about-hero .about-hero-copy > p {
    width: 100% !important;
    min-width: 0 !important;
    max-width: calc(100vw - 32px) !important;
  }

  section.intro.band.about-hero .about-hero-copy > p {
    white-space: normal !important;
    overflow-wrap: anywhere;
  }
}

/* Leadership message, reference-style editorial layout */
section.about-director.page-view.is-active {
  grid-template-columns: minmax(230px, 320px) minmax(0, 1fr);
  gap: clamp(30px, 4.5vw, 70px);
  align-items: center;
  padding: clamp(34px, 4.5vw, 58px) clamp(22px, 6vw, 76px);
  background: #fff;
}

section.about-director.page-view.is-active::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: min(32vw, 460px);
  background:
    linear-gradient(90deg, rgba(8, 120, 191, 0.07), rgba(8, 120, 191, 0)),
    #f7fbfc;
  content: "";
}

section.about-director .vision-portrait.about-director-photo {
  z-index: 1;
  width: min(100%, 292px);
  padding: 10px;
  border: 1px solid rgba(12, 37, 48, 0.18);
  border-radius: 0;
  background: #fff;
  box-shadow: 0 18px 36px rgba(12, 37, 48, 0.22);
}

section.about-director .vision-portrait.about-director-photo::before {
  border-top: 0;
}

section.about-director .vision-portrait.about-director-photo img {
  aspect-ratio: 3 / 4;
  border: 0;
  object-fit: contain;
  object-position: center top;
  background: #f4f6f3;
}

section.about-director .vision-portrait.about-director-photo figcaption {
  display: none;
}

section.about-director .about-director-copy {
  max-width: 1180px;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

section.about-director .about-director-copy::before {
  position: static;
  display: block;
  margin: 0 0 8px;
  color: var(--deep-blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.5rem, 5vw, 5.4rem);
  font-weight: 900;
  line-height: 0.58;
  content: "\201C";
}

section.about-director .about-director-copy .section-kicker {
  margin-bottom: 6px;
  color: var(--red);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
}

section.about-director .about-director-copy h2 {
  max-width: 1080px;
  margin: 0 0 14px;
  color: #071f33;
  font-size: clamp(1.15rem, 1.5vw, 1.65rem);
  font-weight: 800;
  line-height: 1.42;
  letter-spacing: 0;
}

section.about-director .about-director-copy p:not(.section-kicker) {
  max-width: 1180px;
  margin: 0 0 10px;
  color: #111b22;
  font-size: clamp(1rem, 1.08vw, 1.16rem);
  line-height: 1.5;
}

.leader-signature {
  display: grid;
  gap: 2px;
  margin-top: clamp(16px, 2vw, 24px);
}

.leader-signature strong {
  color: var(--deep-blue);
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  font-weight: 700;
  line-height: 1.1;
}

.leader-signature span {
  color: #071f33;
  font-size: clamp(1rem, 1.08vw, 1.14rem);
  font-weight: 700;
}

@media (max-width: 980px) {
  section.about-director.page-view.is-active {
    grid-template-columns: 1fr;
    gap: 24px;
    background: #fff;
  }

  section.about-director.page-view.is-active::before {
    width: 100%;
    height: 180px;
  }

  section.about-director .vision-portrait.about-director-photo {
    justify-self: center;
    width: min(100%, 280px);
  }

  section.about-director .about-director-copy {
    padding: 0;
  }
}

@media (max-width: 620px) {
  section.about-director.page-view.is-active {
    padding: 30px 16px;
  }

  section.about-director.page-view.is-active::before {
    height: 150px;
  }

  section.about-director .vision-portrait.about-director-photo {
    width: min(100%, 235px);
  }

  section.about-director .about-director-copy::before {
    margin-bottom: 4px;
    font-size: 3.6rem;
  }

  section.about-director .about-director-copy h2 {
    font-size: clamp(1.08rem, 5.2vw, 1.45rem);
    line-height: 1.35;
  }

  section.about-director .about-director-copy p:not(.section-kicker) {
    font-size: 0.98rem;
    line-height: 1.5;
  }
}

/* About hero poster visual */
section.about-hero .about-poster-frame {
  display: grid;
  width: min(100%, 500px);
  min-height: 0;
  justify-self: center;
  place-items: center;
  margin: 0;
  padding: clamp(10px, 1.4vw, 16px);
  border: 1px solid rgba(12, 37, 48, 0.1);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 28px 76px rgba(12, 37, 48, 0.2);
}

section.about-hero .about-poster-frame::before {
  display: none;
  content: none;
}

section.about-hero .about-poster-image {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: min(68vh, 680px);
  border: 1px solid rgba(196, 132, 11, 0.3);
  object-fit: contain;
  box-shadow: 0 18px 45px rgba(7, 31, 51, 0.15);
}

@media (max-width: 980px) {
  section.about-hero .about-poster-frame {
    width: min(100%, 440px);
    justify-self: center;
  }

  section.about-hero .about-poster-image {
    max-height: none;
  }
}

@media (max-width: 620px) {
  section.about-hero .about-poster-frame {
    width: min(100%, 330px);
    padding: 8px;
  }
}

/* Compact About hero with poster */
section.intro.band.about-hero.page-view.is-active {
  padding-top: calc(var(--header-height) + clamp(20px, 3vw, 36px)) !important;
  padding-bottom: clamp(28px, 4vw, 48px);
}

section.about-hero .about-hero-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(330px, 0.72fr);
  min-height: clamp(420px, 50vh, 560px);
  gap: clamp(28px, 4vw, 58px);
}

section.about-hero .about-hero-copy {
  max-width: 620px;
}

section.about-hero .about-hero-copy .section-kicker {
  margin-bottom: 12px;
}

section.about-hero .about-hero-copy h1 {
  max-width: 580px;
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 4vw, 4.65rem);
  line-height: 1;
}

section.about-hero .about-hero-copy > p {
  max-width: 590px;
  margin-bottom: 18px;
  font-size: clamp(0.98rem, 1vw, 1.08rem);
  line-height: 1.62;
}

section.about-hero .about-actions {
  margin-top: 24px;
}

section.about-hero .about-poster-frame {
  width: min(100%, 430px);
  padding: 12px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 58px rgba(12, 37, 48, 0.18);
}

section.about-hero .about-poster-image {
  max-height: min(62vh, 590px);
}

@media (max-width: 980px) {
  section.about-hero .about-hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 28px;
  }

  section.about-hero .about-poster-frame {
    width: min(100%, 380px);
  }

  section.about-hero .about-poster-image {
    max-height: 540px;
  }
}

@media (max-width: 620px) {
  section.intro.band.about-hero.page-view.is-active {
    padding-top: calc(var(--header-height) + 18px) !important;
    padding-bottom: 30px;
  }

  section.about-hero .about-hero-copy h1 {
    font-size: clamp(2.15rem, 10vw, 3.15rem);
  }

  section.about-hero .about-hero-copy > p {
    margin-bottom: 14px;
    line-height: 1.55;
  }

  section.about-hero .about-actions {
    margin-top: 18px;
  }

  section.about-hero .about-poster-frame {
    width: min(100%, 300px);
  }

  section.about-hero .about-poster-image {
    max-height: none;
  }
}

/* About hero 70/30 editorial split */
section.about-hero .about-hero-grid {
  grid-template-columns: minmax(0, 7fr) minmax(260px, 3fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
}

section.about-hero .about-hero-copy {
  position: relative;
  max-width: 820px;
  padding: clamp(22px, 3vw, 34px) clamp(20px, 3vw, 34px);
  border-left: 4px solid var(--amber);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0)),
    rgba(255, 255, 255, 0.025);
}

section.about-hero .about-hero-copy::after {
  position: absolute;
  right: clamp(18px, 3vw, 36px);
  bottom: clamp(16px, 2vw, 28px);
  color: rgba(255, 255, 255, 0.06);
  font-size: clamp(5rem, 9vw, 9rem);
  font-weight: 900;
  line-height: 0.75;
  content: "PHE";
  pointer-events: none;
}

section.about-hero .about-hero-copy h1,
section.about-hero .about-hero-copy p,
section.about-hero .about-actions {
  position: relative;
  z-index: 1;
}

section.about-hero .about-hero-copy h1 {
  max-width: 760px;
  font-size: clamp(2.8rem, 4.35vw, 5rem);
}

section.about-hero .about-hero-copy > p {
  max-width: 760px;
}

section.about-hero .about-poster-frame {
  width: min(100%, 330px);
  justify-self: center;
  padding: 10px;
  transform: rotate(0.6deg);
}

section.about-hero .about-poster-image {
  max-height: min(58vh, 520px);
}

@media (max-width: 980px) {
  section.about-hero .about-hero-grid {
    grid-template-columns: 1fr;
  }

  section.about-hero .about-hero-copy {
    max-width: none;
  }

  section.about-hero .about-poster-frame {
    width: min(100%, 340px);
    transform: none;
  }
}

@media (max-width: 620px) {
  section.about-hero .about-hero-copy {
    padding: 20px 16px;
  }

  section.about-hero .about-hero-copy::after {
    content: none;
  }

  section.about-hero .about-poster-frame {
    width: min(100%, 290px);
  }
}

/* About hero clean split layout */
section.intro.band.about-hero.page-view.is-active {
  padding-top: calc(var(--header-height) + clamp(14px, 2vw, 26px)) !important;
  padding-bottom: clamp(22px, 3vw, 36px);
  background:
    linear-gradient(180deg, rgba(7, 31, 51, 0.98), rgba(7, 31, 51, 0.98)),
    #071f33 !important;
}

section.about-hero .about-hero-grid {
  grid-template-columns: minmax(0, 7fr) minmax(280px, 3fr);
  max-width: 1480px;
  min-height: auto;
  gap: clamp(22px, 3vw, 46px);
  margin: 0 auto;
}

section.about-hero .about-hero-copy {
  max-width: none;
  padding: clamp(22px, 3vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 6px solid var(--amber);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    #0b3343;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.22);
}

section.about-hero .about-hero-copy::after {
  content: none;
}

section.about-hero .about-hero-copy h1 {
  max-width: none;
  margin-bottom: 16px;
  font-size: clamp(2.45rem, 3.3vw, 4rem);
  white-space: nowrap;
}

section.about-hero .about-hero-copy > p {
  max-width: 940px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.05vw, 1.12rem);
  line-height: 1.55;
}

section.about-hero .about-actions {
  margin-top: 18px;
}

section.about-hero .about-poster-frame {
  position: relative;
  width: min(100%, 340px);
  justify-self: center;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  transform: none;
}

section.about-hero .about-poster-frame::after {
  position: absolute;
  inset: 18px -18px -18px 18px;
  z-index: -1;
  border: 1px solid rgba(245, 183, 46, 0.24);
  background: rgba(40, 185, 202, 0.09);
  content: "";
}

section.about-hero .about-poster-image {
  display: block;
  max-height: min(54vh, 510px);
  background: #fff;
}

@media (max-width: 980px) {
  section.about-hero .about-hero-grid {
    grid-template-columns: 1fr;
  }

  section.about-hero .about-hero-copy {
    padding: clamp(22px, 4vw, 32px);
  }

  section.about-hero .about-poster-frame {
    width: min(100%, 320px);
  }
}

@media (max-width: 620px) {
  section.about-hero .about-hero-copy {
    padding: 20px 16px;
  }

  section.about-hero .about-hero-copy h1 {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
    white-space: normal;
  }

  section.about-hero .about-hero-copy > p {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  section.about-hero .about-poster-frame {
    width: min(100%, 270px);
  }

  section.about-hero .about-poster-frame::after {
    inset: 12px -10px -10px 12px;
  }
}
