:root {
  --warm-porcelain: #f6f2ea;
  --clinical-white: #fff;
  --deep-teal: #103e42;
  --deep-teal-2: #0b2e31;
  --harbor-blue: #245a73;
  --oxide-green: #5f7f72;
  --warm-brass: #b88a45;
  --ink: #142024;
  --graphite: #3e4a4e;
  --stone-line: #dad4c9;
  --soft-mist: #eaf1ef;
  --shadow: 0 24px 70px rgba(16, 62, 66, 0.14);
  --shell: min(1560px, calc(100vw - 96px));
  --serif: "Noto Serif Display", Georgia, serif;
  --sans: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--warm-porcelain);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--warm-brass);
  outline-offset: 4px;
}

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  padding: 10px 14px;
  background: var(--deep-teal);
  color: white;
  border-radius: 6px;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(16, 62, 66, 0.12);
  backdrop-filter: blur(18px);
}

.notice-bar {
  background: #f7f3ec;
  border-bottom: 1px solid rgba(218, 212, 201, 0.85);
  color: #24393d;
  font-size: 13px;
}

.notice-bar__inner,
.main-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.notice-bar__inner {
  min-height: 36px;
}

.notice-bar p {
  margin: 0;
  font-weight: 600;
}

.notice-bar__links,
.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.notice-bar__links a,
.footer-social a {
  display: inline-grid;
  min-width: 34px;
  min-height: 34px;
  place-items: center;
  color: var(--deep-teal);
  font-size: 12px;
  font-weight: 800;
  border: 1px solid rgba(16, 62, 66, 0.18);
  border-radius: 999px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.notice-bar__links a:first-child {
  width: auto;
  padding-inline: 12px;
  letter-spacing: 0;
}

.notice-bar__links a:hover,
.footer-social a:hover {
  transform: translateY(-1px);
  background: var(--deep-teal);
  color: white;
}

.main-nav__inner {
  min-height: 82px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--deep-teal);
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.4vw, 22px);
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav > a,
.nav-group > a {
  display: flex;
  align-items: center;
  min-height: 44px;
  color: #23373a;
  transition: color 180ms ease;
}

.desktop-nav > a:hover,
.nav-group:hover > a,
.nav-group:focus-within > a {
  color: var(--harbor-blue);
}

.nav-group {
  position: relative;
}

.mega {
  position: absolute;
  top: 100%;
  left: 0;
  width: 310px;
  display: grid;
  gap: 2px;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  background: white;
  border: 1px solid rgba(16, 62, 66, 0.12);
  box-shadow: var(--shadow);
  border-radius: 8px;
  transition: opacity 170ms ease, transform 170ms ease, visibility 170ms ease;
}

.mega--wide {
  width: 440px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.nav-group:hover .mega,
.nav-group:focus-within .mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega a {
  padding: 9px 10px;
  border-radius: 5px;
  color: var(--graphite);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}

.mega a:hover,
.mega a:focus-visible {
  background: var(--soft-mist);
  color: var(--deep-teal);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-social {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-social a {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(16, 62, 66, 0.18);
  border-radius: 50%;
  color: var(--deep-teal);
  font-size: 12px;
  font-weight: 900;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-social a:hover,
.nav-social a:focus-visible {
  transform: translateY(-1px);
  background: var(--deep-teal);
  color: white;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--solid {
  background: var(--deep-teal);
  color: white;
  border: 1px solid var(--deep-teal);
}

.btn--ghost {
  color: var(--deep-teal);
  border: 1px solid rgba(16, 62, 66, 0.28);
  background: rgba(255, 255, 255, 0.7);
}

.btn--ghost:hover {
  background: var(--deep-teal);
  color: white;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(16, 62, 66, 0.22);
  border-radius: 6px;
  background: white;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: var(--deep-teal);
}

.mobile-menu {
  display: none;
  max-height: calc(100vh - 82px);
  overflow: auto;
  border-top: 1px solid var(--stone-line);
  background: white;
}

.mobile-menu__inner {
  width: var(--shell);
  margin-inline: auto;
  padding: 18px 0 28px;
  display: grid;
  gap: 8px;
}

.mobile-menu a {
  min-height: 44px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(218, 212, 201, 0.75);
  font-weight: 700;
}

.mobile-menu__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}

.section-dark {
  color: white;
  background: var(--deep-teal);
}

.section-light {
  background: var(--warm-porcelain);
}

.section-mist {
  background: var(--soft-mist);
}

.section-white {
  background: var(--clinical-white);
}

.hero {
  position: relative;
  min-height: calc(100vh - 118px);
  overflow: hidden;
  display: grid;
  align-items: end;
}

.hero__media,
.hero__fallback,
.hero__wash {
  position: absolute;
  inset: 0;
}

.hero__media {
  z-index: 0;
  opacity: 1;
  filter: saturate(1.02) contrast(1.08);
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  transform: scale(1.03);
}

.hero__fallback {
  z-index: 1;
  background:
    radial-gradient(circle at 74% 20%, rgba(184, 138, 69, 0.24), transparent 28%),
    linear-gradient(90deg, rgba(16, 62, 66, 0.96), rgba(16, 62, 66, 0.64), rgba(16, 62, 66, 0.22));
}

.hero__wash {
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(6, 26, 28, 0.28), rgba(6, 26, 28, 0.62) 68%, rgba(246, 242, 234, 0.98) 100%),
    linear-gradient(90deg, rgba(10, 47, 51, 0.94), rgba(16, 62, 66, 0.52) 58%, rgba(16, 62, 66, 0.12));
}

.hero__inner {
  position: relative;
  z-index: 3;
  padding: clamp(70px, 9vh, 112px) 0 clamp(42px, 5vh, 64px);
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) 260px;
  gap: 40px;
  align-items: end;
}

.hero__content {
  max-width: 920px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--warm-brass);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.project h2,
.news-intro h2,
.news-header h2,
.footer-contact h2 {
  font-family: var(--serif);
  letter-spacing: 0;
}

.hero h1 {
  margin: 0;
  max-width: 980px;
  font-size: clamp(42px, 5.15vw, 74px);
  line-height: 0.98;
  font-weight: 700;
}

.hero__promise {
  margin: 22px 0 0;
  max-width: 620px;
  font-size: clamp(20px, 2.1vw, 30px);
  line-height: 1.22;
  color: rgba(255, 255, 255, 0.9);
}

.hero__proof {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-left: 2px solid var(--warm-brass);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.hero__proof span {
  font-weight: 800;
}

.hero__proof a {
  width: max-content;
  margin-top: 4px;
  color: #ffe1ad;
  font-size: 13px;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(255, 225, 173, 0.45);
  text-underline-offset: 5px;
}

.hero__proof a:hover,
.hero__proof a:focus-visible {
  color: white;
  text-decoration-color: white;
}

.source-transition {
  height: 36px;
  background: linear-gradient(180deg, var(--warm-porcelain), #f2eadf);
}

section:not(.hero) {
  padding: clamp(72px, 9vw, 128px) 0;
}

.section-heading {
  margin-bottom: clamp(32px, 5vw, 58px);
}

.section-heading--split {
  display: grid;
  grid-template-columns: 0.8fr auto 1fr;
  align-items: end;
  gap: 28px;
}

.section-heading h2,
.project h2,
.news-intro h2,
.news-header h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 0.98;
}

.section-rule {
  height: 1px;
  background: linear-gradient(90deg, var(--warm-brass), rgba(184, 138, 69, 0));
  align-self: center;
}

section.journey {
  padding-top: clamp(56px, 7vw, 94px);
}

.journey-wall {
  display: grid;
  grid-template-columns: minmax(310px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(20px, 3vw, 34px);
  align-items: start;
}

.journey-wall figure {
  margin: 0;
  position: relative;
  background: white;
  border: 1px solid rgba(16, 62, 66, 0.11);
  box-shadow: 0 18px 44px rgba(16, 62, 66, 0.08);
}

.journey-wall img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: white;
}

.journey-wall__feature {
  position: sticky;
  top: 142px;
  min-height: 660px;
  padding: 14px;
}

.journey-wall__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.journey-wall__grid figure {
  aspect-ratio: 0.8;
  padding: 8px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.journey-wall__grid figure:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 54px rgba(16, 62, 66, 0.14);
}

.journey-wall figcaption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  min-width: 32px;
  padding: 4px 7px;
  background: var(--deep-teal);
  color: white;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 800;
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.service-feature {
  position: sticky;
  top: 142px;
  overflow: hidden;
  min-height: 640px;
  background: var(--deep-teal);
  box-shadow: var(--shadow);
}

.service-feature img {
  width: 100%;
  height: 640px;
  object-fit: cover;
  transition: opacity 180ms ease, transform 400ms ease;
}

.service-feature__label {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 16px 18px;
  background: rgba(16, 62, 66, 0.9);
  color: white;
  border-left: 3px solid var(--warm-brass);
  font-size: 19px;
  font-weight: 800;
}

.service-groups {
  display: grid;
  gap: 18px;
}

.service-group,
.nszu-cta {
  background: white;
  border: 1px solid rgba(16, 62, 66, 0.11);
  box-shadow: 0 16px 40px rgba(16, 62, 66, 0.07);
}

.service-group {
  padding: 10px;
}

.service-group h3 {
  margin: 8px 10px 8px;
  color: var(--oxide-green);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.service-row {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 64px;
  padding: 12px 10px;
  border-top: 1px solid rgba(218, 212, 201, 0.82);
  color: var(--ink);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.service-row span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--harbor-blue);
  background: var(--soft-mist);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.service-row strong {
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.18;
}

.service-row:hover,
.service-row:focus-visible,
.service-row.is-active {
  background: #f6f9f7;
  color: var(--deep-teal);
  transform: translateX(2px);
}

.nszu-cta {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px;
  background: var(--deep-teal);
  color: white;
  transition: transform 180ms ease, background 180ms ease;
}

.nszu-cta:hover {
  transform: translateY(-2px);
  background: var(--deep-teal-2);
}

.nszu-cta span {
  display: inline-grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: var(--warm-brass);
  font-weight: 900;
}

.project {
  position: relative;
  overflow: hidden;
}

.project__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
}

.project__inner--reverse {
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
}

.project__copy {
  max-width: 650px;
}

.project__copy h2 {
  margin-bottom: 24px;
  max-width: 100%;
  overflow-wrap: normal;
  hyphens: auto;
}

.project--dark .project__copy h2 {
  font-size: clamp(40px, 4vw, 58px);
}

.project__lead {
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.3;
  font-weight: 700;
}

.project__copy h3 {
  margin: 28px 0 8px;
  color: var(--warm-brass);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.project__copy p {
  color: inherit;
}

.project--dark .project__copy p {
  color: rgba(255, 255, 255, 0.82);
}

.project-link {
  display: inline-flex;
  margin-top: 20px;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--warm-brass);
  font-weight: 800;
}

.doc-mosaic {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 150px;
  gap: 12px;
}

.doc-mosaic img,
.support-gallery img,
.news-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doc-mosaic img {
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.doc-mosaic img:nth-child(1) {
  grid-column: span 2;
  grid-row: span 3;
}

.doc-mosaic img:nth-child(2) {
  grid-column: span 4;
  grid-row: span 2;
}

.doc-mosaic img:nth-child(3),
.doc-mosaic img:nth-child(4),
.doc-mosaic img:nth-child(5),
.doc-mosaic img:nth-child(6) {
  grid-column: span 2;
  grid-row: span 2;
}

.support-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: 178px;
  gap: 12px;
}

.support-gallery img {
  background: white;
  box-shadow: 0 18px 44px rgba(16, 62, 66, 0.1);
}

.support-gallery__hero {
  grid-row: span 3;
}

.support-gallery img:nth-child(2),
.support-gallery img:nth-child(3) {
  grid-row: span 2;
}

.support-gallery img:nth-child(6) {
  grid-column: span 2;
}

section.news-intro {
  padding: 46px 0;
  background: var(--warm-porcelain);
  border-top: 1px solid var(--stone-line);
  border-bottom: 1px solid var(--stone-line);
}

.news-intro__inner {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 24px;
  align-items: center;
}

.news-intro h2 {
  font-size: clamp(36px, 4vw, 62px);
}

section.news {
  padding-top: clamp(64px, 8vw, 104px);
}

.news-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.text-action {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-bottom: 2px solid var(--warm-brass);
  color: var(--deep-teal);
  font-weight: 900;
}

.news-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.2fr 0.95fr;
  gap: 18px;
}

.news-card {
  background: white;
  border: 1px solid rgba(16, 62, 66, 0.1);
  box-shadow: 0 18px 42px rgba(16, 62, 66, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(16, 62, 66, 0.14);
}

.news-card a {
  display: grid;
  height: 100%;
}

.news-card img {
  aspect-ratio: 1.28 / 1;
  object-fit: cover;
}

.news-card h3 {
  margin: 0;
  padding: 20px;
  min-height: 140px;
  font-size: clamp(19px, 1.8vw, 27px);
  line-height: 1.18;
}

.news-card--feature img {
  aspect-ratio: 1.08 / 1;
}

.partners {
  padding-top: clamp(72px, 8vw, 112px);
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--stone-line);
  border-left: 1px solid var(--stone-line);
}

.partner-grid img {
  width: 100%;
  height: 138px;
  padding: 22px;
  object-fit: contain;
  border-right: 1px solid var(--stone-line);
  border-bottom: 1px solid var(--stone-line);
  background: white;
  filter: saturate(0.92);
  transition: filter 180ms ease, transform 180ms ease, background 180ms ease;
}

.partner-grid img:hover {
  filter: saturate(1.05);
  transform: scale(1.015);
  background: #fbfaf7;
}

.site-footer {
  background: var(--deep-teal-2);
  color: white;
  padding: clamp(64px, 8vw, 104px) 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1.1fr;
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
}

.footer-brand img {
  width: 92px;
  height: 92px;
  object-fit: contain;
  background: white;
  border-radius: 50%;
  padding: 8px;
}

.footer-brand p {
  max-width: 260px;
  font-weight: 800;
  line-height: 1.25;
}

.footer-contact,
.footer-addresses,
.footer-nav {
  display: grid;
  gap: 12px;
}

.footer-contact h2 {
  margin: 0 0 8px;
  font-size: 34px;
}

.footer-contact a,
.footer-nav a,
.footer-addresses span {
  color: rgba(255, 255, 255, 0.83);
  font-style: normal;
  font-weight: 600;
}

.footer-contact a:hover,
.footer-nav a:hover {
  color: white;
  text-decoration: underline;
  text-decoration-color: var(--warm-brass);
  text-underline-offset: 5px;
}

.footer-social {
  grid-column: 1 / -1;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-social a {
  color: white;
  border-color: rgba(255, 255, 255, 0.22);
}

@media (max-width: 1100px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu.is-open {
    display: block;
  }

  .hero__inner,
  .journey-wall,
  .services-layout,
  .project__inner,
  .project__inner--reverse,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero__proof,
  .service-feature,
  .journey-wall__feature {
    position: relative;
    top: auto;
  }

  .service-feature,
  .service-feature img {
    min-height: 420px;
    height: 420px;
  }

  .journey-wall__feature {
    min-height: auto;
  }

  .journey-wall__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-grid {
    grid-template-columns: 1fr 1fr;
  }

  .news-card--feature {
    grid-column: span 2;
  }

  .partner-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  :root {
    --shell: min(100vw - 28px, 720px);
  }

  body {
    font-size: 16px;
  }

  .notice-bar__inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 8px 0;
    gap: 8px;
  }

  .main-nav__inner {
    min-height: 70px;
  }

  .brand span {
    display: none;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .nav-actions .btn {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero__media img {
    object-position: 66% center;
    transform: scale(1.08);
  }

  .hero__inner {
    padding-top: 70px;
    gap: 24px;
  }

  .hero h1 {
    font-size: clamp(31px, 9.5vw, 48px);
    line-height: 1;
  }

  .hero__proof {
    max-width: 260px;
  }

  section:not(.hero) {
    padding: 62px 0;
  }

  .section-heading--split,
  .news-intro__inner {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .section-heading h2,
  .project h2,
  .news-header h2 {
    font-size: clamp(34px, 11vw, 50px);
  }

  .journey-wall__grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
  }

  .journey-wall__grid figure {
    flex: 0 0 76%;
    scroll-snap-align: start;
  }

  .service-feature,
  .service-feature img {
    height: 360px;
    min-height: 360px;
  }

  .service-row {
    grid-template-columns: 38px 1fr;
  }

  .service-row strong {
    font-size: 17px;
  }

  .nszu-cta {
    grid-template-columns: 1fr;
  }

  .doc-mosaic,
  .support-gallery {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 14px;
    scroll-snap-type: x mandatory;
  }

  .doc-mosaic img,
  .support-gallery img,
  .support-gallery__hero {
    flex: 0 0 72%;
    height: 390px;
    scroll-snap-align: start;
  }

  .news-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .news-grid,
  .news-card--feature {
    grid-template-columns: 1fr;
    grid-column: auto;
  }

  .news-card h3 {
    min-height: auto;
  }

  .partner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partner-grid img {
    height: 116px;
    padding: 16px;
  }

  .footer-grid {
    gap: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* Screen-led revision */
:root {
  --header-height: 78px;
  --panel-pad: clamp(24px, 3.2vh, 38px);
}

html {
  scroll-padding-top: var(--header-height);
  scroll-snap-type: y mandatory;
}

body {
  overflow-x: hidden;
}

.notice-bar {
  display: none;
}

.main-nav__inner {
  min-height: var(--header-height);
}

.brand img {
  width: 48px;
  height: 48px;
}

.snap-panel {
  min-height: calc(100svh - var(--header-height));
  scroll-snap-align: start;
  scroll-margin-top: var(--header-height);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: var(--panel-pad) 0 !important;
}

.snap-panel > .shell {
  width: var(--shell);
}

.section-heading,
.news-intro__inner {
  margin-bottom: clamp(16px, 2.5vh, 26px);
}

.section-heading h2,
.project h2,
.news-intro h2,
.news-header h2 {
  font-size: clamp(38px, 4.4vw, 64px);
  line-height: 0.98;
}

.section-kicker,
.eyebrow {
  margin-bottom: 10px;
}

.hero {
  min-height: calc(100svh - var(--header-height));
  background:
    radial-gradient(circle at 65% 18%, rgba(184, 138, 69, 0.2), transparent 25%),
    linear-gradient(135deg, #08393d 0%, #0d4a4e 48%, #143d43 100%);
}

.hero__media,
.hero__fallback {
  display: none;
}

.hero__wash {
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(5, 27, 30, 0.92), rgba(5, 27, 30, 0.42) 58%, rgba(5, 27, 30, 0.16)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.12));
}

.hero__inner {
  position: relative;
  z-index: 2;
  padding: 0;
  grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
  align-items: center;
  gap: clamp(30px, 5vw, 72px);
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(48px, 5.1vw, 78px);
  line-height: 0.95;
}

.hero__institution {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(15px, 1.1vw, 18px);
  font-weight: 650;
  line-height: 1.45;
}

.hero__promise {
  margin-top: 20px;
  font-size: clamp(19px, 1.75vw, 27px);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.btn--ghost-on-dark {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.btn--ghost-on-dark:hover {
  background: white;
  color: var(--deep-teal);
}

.hero__visual {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  height: min(68vh, 650px);
  min-height: 470px;
}

.hero-photo {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.26);
}

.hero-photo--large {
  grid-row: 1 / span 2;
}

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

.video-scene__inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.video-scene__copy h2 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(42px, 4.8vw, 72px);
  line-height: 0.98;
}

.video-scene__copy p:not(.section-kicker) {
  margin: 0;
  max-width: 430px;
  color: var(--graphite);
  font-weight: 700;
}

.video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--deep-teal);
  border: 1px solid rgba(16, 62, 66, 0.16);
  box-shadow: 0 30px 90px rgba(16, 62, 66, 0.18);
}

.video-frame::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  pointer-events: none;
  z-index: 1;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.journey-wall {
  grid-template-columns: minmax(480px, 0.44fr) minmax(0, 0.56fr);
  gap: clamp(18px, 2vw, 30px);
  align-items: stretch;
}

.journey-wall__feature {
  position: relative;
  top: auto;
  min-height: 0;
  height: min(64vh, 620px);
  padding: 12px;
}

.journey-wall__feature img {
  object-fit: contain;
}

.journey-wall__feature figcaption {
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  width: auto;
  background: rgba(16, 62, 66, 0.94);
}

.journey-wall__grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  align-content: start;
  max-height: min(64vh, 620px);
  overflow: visible;
  padding-right: 0;
}

.journey-wall__grid figure {
  aspect-ratio: 0.8;
  padding: 5px;
  cursor: zoom-in;
}

.journey-wall__grid figure.is-active,
.journey-wall__grid figure:focus-visible {
  outline: 3px solid var(--warm-brass);
  outline-offset: 2px;
}

.text-action--light {
  min-height: 34px;
  color: #ffe1ad;
  background: transparent;
  border: 0;
  border-bottom: 2px solid rgba(255, 225, 173, 0.65);
  padding: 0;
  cursor: pointer;
}

.services-layout {
  grid-template-columns: minmax(340px, 0.38fr) minmax(0, 0.62fr);
  gap: clamp(24px, 3vw, 48px);
}

.service-feature {
  position: relative;
  top: auto;
  min-height: 0;
  height: min(54vh, 510px);
}

.service-feature img {
  height: 100%;
}

.service-groups {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.service-group:first-child {
  grid-row: span 2;
}

.service-group {
  padding: 13px 15px;
}

.service-group h3 {
  margin-bottom: 9px;
}

.service-row {
  min-height: 46px;
  padding: 8px 9px;
}

.service-row strong {
  font-size: clamp(17px, 1.22vw, 22px);
}

.nszu-cta {
  grid-column: 1 / -1;
  min-height: 70px;
  margin-top: 6px;
  padding: 14px 18px;
}

.project__inner,
.project__inner--reverse {
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(24px, 3vw, 48px);
  align-items: center;
}

.project__inner--reverse {
  grid-template-columns: minmax(0, 0.56fr) minmax(0, 0.44fr);
}

.project__copy {
  max-width: none;
}

.project__copy h2,
.project--dark .project__copy h2,
.project--warm .project__copy h2 {
  font-size: clamp(38px, 3.7vw, 58px);
  line-height: 0.98;
  margin-bottom: 14px;
}

.project__lead {
  font-size: clamp(19px, 1.65vw, 25px);
  line-height: 1.24;
}

.project__copy h3 {
  margin-top: 20px;
}

.project__copy p {
  margin-block: 10px;
  font-size: 16px;
  line-height: 1.55;
}

.doc-mosaic,
.support-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 12px;
  height: min(68vh, 660px);
  overflow: hidden;
}

.doc-mosaic img,
.support-gallery img,
.support-gallery__hero,
.doc-mosaic img:nth-child(1),
.doc-mosaic img:nth-child(2),
.doc-mosaic img:nth-child(3),
.doc-mosaic img:nth-child(4),
.doc-mosaic img:nth-child(5),
.doc-mosaic img:nth-child(6),
.support-gallery img:nth-child(2),
.support-gallery img:nth-child(3),
.support-gallery img:nth-child(6) {
  grid-column: auto;
  grid-row: auto;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  cursor: zoom-in;
}

.news {
  padding-top: var(--panel-pad) !important;
}

.news-intro__inner {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: clamp(24px, 4vh, 42px);
}

.news-intro__inner h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(38px, 4.4vw, 64px);
  line-height: 0.98;
}

.news-header {
  margin-bottom: 18px;
}

.news-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.news-card img {
  height: min(34vh, 330px);
}

.news-card h3 {
  min-height: 0;
  padding: 20px;
  font-size: clamp(20px, 1.55vw, 28px);
}

.partners .section-heading {
  margin-bottom: clamp(18px, 3vh, 30px);
}

.partners-tools {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.partner-scroll-controls {
  display: flex;
  gap: 8px;
}

.carousel-button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(16, 62, 66, 0.18);
  border-radius: 50%;
  background: white;
  color: var(--deep-teal);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.carousel-button:hover,
.carousel-button:focus-visible {
  transform: translateY(-1px);
  background: var(--deep-teal);
  color: white;
}

.partner-grid {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(4, clamp(96px, 11.4vh, 118px));
  grid-auto-columns: clamp(220px, 13.6vw, 260px);
  grid-template-columns: none;
  overflow-x: auto;
  overflow-y: hidden;
  max-height: calc(clamp(96px, 11.4vh, 118px) * 4);
  border: 1px solid var(--stone-line);
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.partner-grid::-webkit-scrollbar {
  display: none;
}

.partner-grid img {
  height: clamp(96px, 11.4vh, 118px);
  padding: clamp(12px, 1.7vh, 18px);
  scroll-snap-align: start;
  border: 0;
  border-right: 1px solid var(--stone-line);
  border-bottom: 1px solid var(--stone-line);
}

.partner-grid.is-expanded {
  grid-auto-flow: row;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-template-rows: none;
  overflow-y: auto;
  overflow-x: hidden;
  max-height: min(58vh, 560px);
}

.site-footer {
  min-height: calc(100svh - var(--header-height));
  padding: var(--panel-pad) 0 !important;
}

.footer-grid {
  align-items: center;
  gap: clamp(24px, 4vw, 60px);
}

.section-rail {
  position: fixed;
  right: 18px;
  top: 50%;
  z-index: 80;
  display: grid;
  gap: 9px;
  transform: translateY(-50%);
}

.section-rail button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid rgba(16, 62, 66, 0.55);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
}

.section-rail button.is-active {
  height: 26px;
  border-radius: 999px;
  background: var(--warm-brass);
  border-color: var(--warm-brass);
}

.section-next {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 82;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(16, 62, 66, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 30px rgba(16, 62, 66, 0.14);
  cursor: pointer;
}

.section-next span {
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--deep-teal);
  border-bottom: 2px solid var(--deep-teal);
  transform: translateY(-3px) rotate(45deg);
  animation: nextPulse 4.4s ease-in-out infinite;
}

@keyframes nextPulse {
  0%, 100% { transform: translateY(-3px) rotate(45deg); opacity: 0.54; }
  50% { transform: translateY(1px) rotate(45deg); opacity: 1; }
}

.image-viewer {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 28px 72px;
  background: rgba(5, 27, 30, 0.92);
}

.image-viewer[hidden] {
  display: none;
}

.image-viewer figure {
  margin: 0;
  max-width: min(1120px, 88vw);
  max-height: 90vh;
  display: grid;
  gap: 12px;
}

.image-viewer img {
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
  background: white;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
}

.image-viewer figcaption {
  color: white;
  font-weight: 800;
  text-align: center;
}

.viewer-close,
.viewer-nav {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  cursor: pointer;
}

.viewer-close {
  top: 22px;
  right: 22px;
  width: 48px;
  height: 48px;
  font-size: 32px;
}

.viewer-nav {
  top: 50%;
  width: 54px;
  height: 54px;
  font-size: 40px;
  transform: translateY(-50%);
}

.viewer-nav--prev {
  left: 22px;
}

.viewer-nav--next {
  right: 22px;
}

@media (max-width: 1100px) {
  :root {
    --header-height: 70px;
  }

  .desktop-nav {
    display: none;
  }

  .hero__inner,
  .video-scene__inner,
  .journey-wall,
  .services-layout,
  .project__inner,
  .project__inner--reverse {
    grid-template-columns: 1fr;
  }

  .snap-panel {
    min-height: auto;
    overflow: visible;
    scroll-snap-align: none;
  }

  .hero__visual,
  .doc-mosaic,
  .support-gallery {
    height: auto;
  }

  .hero__visual {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 220px;
    min-height: 0;
  }

  .hero-photo--large {
    grid-row: auto;
  }

  .journey-wall__feature,
  .service-feature {
    height: 520px;
  }

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

  .service-group:first-child {
    grid-row: auto;
  }

  .doc-mosaic,
  .support-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: repeat(2, 220px);
  }

  .section-rail,
  .section-next {
    display: none;
  }
}

@media (max-width: 1480px) and (min-width: 1101px) {
  .nav-social {
    display: none;
  }
}

@media (max-width: 1280px) and (min-width: 1101px) {
  .nav-contact {
    display: none;
  }

  .desktop-nav {
    gap: 12px;
  }
}

@media (min-width: 1101px) and (max-height: 820px) {
  :root {
    --panel-pad: 22px;
  }

  .section-heading h2,
  .project h2,
  .news-intro h2,
  .news-header h2 {
    font-size: clamp(34px, 4.2vw, 56px);
  }

  .hero h1 {
    font-size: clamp(52px, 5.4vw, 72px);
  }

  .hero__visual {
    height: min(68vh, 524px);
    min-height: 0;
  }

  .hero__promise {
    margin: 22px 0;
    font-size: clamp(22px, 2vw, 28px);
  }

  .journey-wall__feature {
    height: min(64vh, 492px);
  }

  .service-feature {
    height: min(48vh, 350px);
  }

  .services-layout {
    gap: clamp(18px, 3vw, 40px);
  }

  .service-group {
    padding: 12px;
  }

  .service-row {
    min-height: 42px;
    padding-block: 5px;
  }

  .service-row strong {
    font-size: clamp(17px, 1.35vw, 20px);
  }

  .nszu-cta {
    min-height: 52px;
    margin-top: 0;
    padding: 8px 14px;
    grid-template-columns: 52px 1fr;
  }

  .nszu-cta span {
    width: 44px;
    height: 44px;
  }

  .project__inner,
  .project__inner--reverse {
    gap: clamp(22px, 3vw, 36px);
  }

  .project__copy h2,
  .project--dark .project__copy h2,
  .project--warm .project__copy h2 {
    font-size: clamp(36px, 3.5vw, 50px);
    margin-bottom: 10px;
  }

  .project__lead {
    font-size: clamp(17px, 1.55vw, 20px);
    line-height: 1.22;
  }

  .project__copy h3 {
    margin-top: 12px;
    font-size: 13px;
  }

  .project__copy p {
    margin-block: 7px;
    font-size: 14px;
    line-height: 1.42;
  }

  .doc-mosaic,
  .support-gallery {
    height: min(52vh, 400px);
    gap: 10px;
  }

  .news-card img {
    height: min(30vh, 240px);
  }

  .partner-grid {
    grid-template-rows: repeat(4, 96px);
    max-height: 384px;
  }

  .partner-grid img {
    height: 96px;
    padding: 12px;
  }

  .section-next {
    right: 4px;
    bottom: 10px;
    width: 42px;
    height: 42px;
  }
}

@media (min-width: 1101px) {
  html {
    scrollbar-width: none;
  }

  html::-webkit-scrollbar,
  body::-webkit-scrollbar {
    width: 0;
    height: 0;
  }
}

@media (max-width: 760px) {
  html {
    scroll-snap-type: none;
  }

  .main-nav__inner {
    min-height: 70px;
  }

  .hero {
    min-height: auto;
  }

  .hero__inner {
    gap: 24px;
  }

  .hero h1 {
    font-size: clamp(38px, 12vw, 50px);
  }

  .hero__visual {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 160px;
  }

  .hero-photo--large {
    grid-column: 1 / -1;
  }

  .video-scene__copy h2,
  .section-heading h2,
  .news-intro__inner h2,
  .project__copy h2,
  .project--dark .project__copy h2,
  .project--warm .project__copy h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .journey-wall__feature {
    height: 520px;
  }

  .journey-wall__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-height: 520px;
    overflow: auto;
  }

  .service-feature {
    height: 360px;
  }

  .doc-mosaic,
  .support-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(3, 180px);
  }

  .news-intro__inner {
    grid-template-columns: 1fr;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .partner-grid,
  .partner-grid.is-expanded {
    grid-auto-flow: row;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    max-height: 480px;
    overflow: auto;
  }

  .partner-grid img {
    height: 118px;
  }

  .image-viewer {
    padding: 20px;
  }

  .viewer-nav {
    width: 44px;
    height: 44px;
  }
}
