:root {
  --navy: var(--gonmar-navy);
  --silver: var(--gonmar-silver);
  --gold: var(--gonmar-gold);
  --white: var(--gonmar-white);
  --paper: #f4f5f6;
  --paper-deep: #e8eaed;
  --muted: #4d5866;
  --line: #d3d7dc;
  --header-height: 104px;
  --shell: 1200px;
  --section-space: clamp(5rem, 8vw, 8rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--navy);
  font-family: var(--gonmar-font);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

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

h1,
h2,
h3 {
  letter-spacing: -0.035em;
  line-height: 1.1;
}

h1 {
  max-width: 880px;
  margin-bottom: 1.5rem;
  font-size: clamp(2.8rem, 6vw, 5.75rem);
  font-weight: 700;
}

h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  font-weight: 700;
}

h3 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
}

ul {
  padding: 0;
  margin-bottom: 0;
  list-style: none;
}

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

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

.section {
  padding-block: var(--section-space);
}

section[id] {
  scroll-margin-top: calc(var(--header-height) + 20px);
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  white-space: nowrap;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  transform: translateY(-160%);
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  transition: transform 160ms ease;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-align: center;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--gold {
  background: var(--gold);
  color: var(--navy);
}

.button--gold:hover {
  background: #ffc04a;
}

.button--outline-light {
  border-color: rgba(255, 255, 255, 0.55);
  background: transparent;
  color: var(--white);
}

.button--outline-light:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--navy);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.13em;
}

.eyebrow::before {
  width: 34px;
  height: 3px;
  background: var(--gold);
  content: "";
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.84);
}

.section-heading {
  max-width: 820px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-heading p {
  max-width: 730px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading--centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading--dark {
  color: var(--white);
}

.line-icon {
  display: grid;
  width: 58px;
  height: 58px;
  color: var(--gold);
  place-items: center;
}

.line-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(11, 20, 35, 0.12);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  display: grid;
  height: 100%;
  grid-template-columns: 142px 1fr auto;
  align-items: center;
  gap: 1.5rem;
}

.brand-link {
  display: inline-flex;
  width: 128px;
  align-items: center;
}

.brand-link img {
  width: 100%;
}

.desktop-nav {
  justify-self: end;
}

.desktop-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 2vw, 1.8rem);
}

.desktop-nav a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 600;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold);
  content: "";
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-action {
  min-width: 112px;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--navy);
}

.menu-toggle span + span {
  margin-top: 5px;
}

.mobile-menu-layer {
  position: fixed;
  z-index: 90;
  inset: var(--header-height) 0 0;
  background: rgba(5, 11, 20, 0.65);
}

.mobile-menu {
  width: min(100%, 520px);
  height: 100%;
  padding: clamp(2rem, 8vw, 4rem) 24px;
  margin-left: auto;
  overflow-y: auto;
  background: var(--white);
}

.mobile-menu ul {
  margin-bottom: 2rem;
}

.mobile-menu li + li {
  border-top: 1px solid var(--line);
}

.mobile-menu li a {
  display: flex;
  min-height: 62px;
  align-items: center;
  gap: 1rem;
  font-size: 1.05rem;
  font-weight: 600;
}

.mobile-menu li span {
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}

.mobile-menu .button {
  width: 100%;
}

.mobile-menu > p {
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.11em;
}

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

.hero__media,
.hero__media img,
.hero__overlay,
.hero__grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__media img {
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  background: linear-gradient(90deg, rgba(5, 11, 20, 0.94) 0%, rgba(5, 11, 20, 0.75) 48%, rgba(5, 11, 20, 0.24) 100%);
}

.hero__grid,
.process__grid,
.contact-section__grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: inherit;
  align-items: center;
  padding-block: 5rem;
}

.hero__copy {
  max-width: 900px;
}

.hero__lead {
  max-width: 690px;
  margin-bottom: 2.3rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-media {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--paper-deep);
}

.section-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pillar-card {
  position: relative;
  display: grid;
  min-height: 560px;
  grid-template-rows: auto auto 1fr auto;
  padding: clamp(2rem, 4vw, 3.5rem);
}

.pillar-card + .pillar-card {
  border-left: 1px solid var(--line);
}

.pillar-card::before {
  position: absolute;
  top: -1px;
  left: 0;
  width: 58px;
  height: 3px;
  background: var(--gold);
  content: "";
}

.pillar-card .line-icon {
  margin-bottom: 2rem;
  border: 1px solid var(--line);
  color: var(--navy);
}

.pillar-card p {
  max-width: 310px;
  margin-bottom: 0;
  color: var(--muted);
}

.pillar-card__media {
  width: 100%;
  margin-top: 2.25rem;
}

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

.sector-card {
  position: relative;
  display: flex;
  min-height: 0;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.sector-card__media {
  width: 100%;
  flex: none;
}

.sector-card__content {
  display: grid;
  min-height: 165px;
  padding: 1.35rem;
  grid-template-columns: 1fr auto;
  align-content: start;
  align-items: center;
  gap: 0.9rem 1rem;
}

.sector-card__index {
  position: static;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.sector-card .line-icon {
  margin-bottom: 0;
  border: 1px solid var(--paper-deep);
  background: var(--paper);
  color: var(--navy);
}

.sector-card h3 {
  grid-column: 1 / -1;
  max-width: 290px;
  margin-bottom: 0;
  font-size: 1.15rem;
  line-height: 1.3;
}

.sectors__also {
  padding: 1.5rem 0 0;
  margin-bottom: 0;
  color: var(--muted);
}

.sectors__also strong {
  color: var(--navy);
}

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

.process__grid,
.contact-section__grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.process__content {
  position: relative;
  z-index: 1;
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.process-step {
  position: relative;
  min-height: 570px;
  padding: 2.2rem 1.6rem 0 0;
}

.process-step + .process-step {
  padding-left: 1.6rem;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.process-step__top {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.process-step__number {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.process-step .line-icon {
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.process-step__media {
  width: 100%;
  margin-bottom: 1.5rem;
}

.process-step h3 {
  min-height: 3.2em;
  color: var(--white);
  font-size: 1.2rem;
}

.process-step p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.capabilities__inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.45fr) minmax(0, 1.55fr);
  align-items: start;
  gap: clamp(2.5rem, 7vw, 6rem);
}

.capabilities .section-heading {
  margin-bottom: 0;
}

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

.capabilities__list li {
  position: relative;
  display: flex;
  min-height: 112px;
  align-items: center;
  padding: 1.25rem 1rem 1.25rem 1.35rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-weight: 600;
  line-height: 1.35;
}

.capabilities__list li::before {
  width: 4px;
  height: 28px;
  margin-right: 0.8rem;
  background: var(--gold);
  content: "";
  flex: none;
}

.projects__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.project-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.project-card picture {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--paper-deep);
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms var(--ease);
}

.project-card:hover {
  border-color: var(--silver);
  box-shadow: 0 12px 30px rgba(11, 20, 35, 0.07);
}

.project-card:hover img {
  transform: scale(1.025);
}

.project-card__body {
  min-height: 205px;
  padding: 1.5rem;
}

.project-card h3 {
  margin-bottom: 1.4rem;
  font-size: 1.2rem;
  line-height: 1.25;
}

.project-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.project-card p span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about__inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1.58fr);
  gap: 0 clamp(2.5rem, 7vw, 6rem);
}

.about .section-heading {
  grid-row: 1 / 5;
}

.about__lead {
  max-width: 860px;
  margin-bottom: 2.7rem;
  font-size: clamp(1.2rem, 2.2vw, 1.75rem);
  font-weight: 500;
  line-height: 1.5;
}

.about__statements {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.about__statements article {
  padding: 1.8rem;
  border-top: 3px solid var(--gold);
  background: var(--paper);
}

.about__statements h3 {
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.about__statements p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.values {
  padding-block: 2.2rem;
  border-bottom: 1px solid var(--line);
}

.values h3 {
  margin-bottom: 1.2rem;
  font-size: 1rem;
}

.values ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.values li {
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 600;
}

.about__closing {
  padding-top: 2rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 500;
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4.5rem, 7vw, 7rem);
  background: var(--navy);
  color: var(--white);
}

.contact-section__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
  align-items: end;
  gap: clamp(2.5rem, 7vw, 6rem);
}

.contact-section h2 {
  max-width: 820px;
}

.contact-section p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 0.8rem;
  color: rgba(255, 255, 255, 0.77);
  font-size: 1.05rem;
}

.contact-section__email {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--white);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 5px;
}

.contact-section__actions {
  display: grid;
  gap: 0.75rem;
}

.contact-section__actions .button {
  width: 100%;
}

.site-footer {
  padding-top: clamp(2.75rem, 5vw, 4.5rem);
  background: var(--paper);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
}

.footer-logo {
  display: block;
  width: 132px;
}

.site-footer__slogan {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 1rem 0 0.35rem;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.09em;
}

.site-footer__slogan::before {
  width: 28px;
  height: 2px;
  background: var(--gold);
  content: "";
  flex: none;
}

.site-footer__descriptor {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.11em;
}

.site-footer h2 {
  margin-bottom: 0.8rem;
  font-size: 0.76rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.site-footer__nav ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.1rem 0.8rem;
}

.site-footer__nav a,
.site-footer__contact > a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 500;
}

.site-footer__nav a:hover,
.site-footer__contact > a:hover {
  color: var(--navy);
}

.site-footer__contact > a {
  display: flex;
  overflow-wrap: anywhere;
}

.social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.social-list a {
  display: grid;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  color: var(--navy);
  place-items: center;
}

.social-list svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.social-list a:hover {
  border-color: var(--gold);
  background: var(--white);
}

.privacy-link {
  margin-top: 0.65rem;
}

.site-footer__bottom {
  padding-block: 1rem;
  margin-top: clamp(2rem, 4vw, 3.25rem);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.site-footer__bottom p {
  margin-bottom: 0;
}

.noscript-message {
  position: fixed;
  z-index: 1000;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  padding: 1rem;
  margin: 0;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  text-align: center;
}

.error-page {
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    var(--navy);
  background-size: 72px 72px;
  color: var(--white);
}

.error-page__main {
  display: flex;
  width: min(calc(100% - 48px), 760px);
  min-height: 100svh;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin-inline: auto;
}

.error-page__brand {
  width: 126px;
  padding: 0.75rem;
  margin-bottom: 3rem;
  background: var(--white);
}

.error-page h1 {
  margin-bottom: 1rem;
}

.error-page__main > p:not(.eyebrow) {
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 1100px) {
  .site-header__inner {
    grid-template-columns: 132px 1fr auto;
    gap: 1rem;
  }

  .brand-link {
    width: 120px;
  }

  .desktop-nav ul {
    gap: 0.8rem;
  }

  .desktop-nav a {
    font-size: 0.82rem;
  }

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

@media (max-width: 900px) {
  :root {
    --header-height: 88px;
  }

  .site-header__inner {
    grid-template-columns: 104px 1fr 48px;
  }

  .brand-link {
    width: 96px;
  }

  .desktop-nav,
  .header-action {
    display: none;
  }

  .menu-toggle {
    display: block;
    grid-column: 3;
  }

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

  .pillar-card {
    min-height: 0;
  }

  .pillar-card + .pillar-card {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

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

  .process-step:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .process-step:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .capabilities__inner,
  .about__inner {
    grid-template-columns: 1fr;
  }

  .capabilities .section-heading,
  .about .section-heading {
    grid-row: auto;
    margin-bottom: 2.5rem;
  }

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

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

  .section {
    padding-block: clamp(4.25rem, 15vw, 6rem);
  }

  .hero {
    min-height: max(680px, calc(100svh - var(--header-height)));
  }

  .hero__media img {
    object-position: 70% center;
  }

  .hero__overlay {
    background: linear-gradient(0deg, rgba(5, 11, 20, 0.95) 0%, rgba(5, 11, 20, 0.76) 64%, rgba(5, 11, 20, 0.3) 100%);
  }

  .hero__content {
    align-items: flex-end;
    padding-block: 4.5rem;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero__actions .button {
    width: 100%;
  }

  .sector-card {
    min-height: 0;
  }

  .sector-card__content {
    min-height: 155px;
    padding: 1.1rem;
  }

  .process__steps {
    grid-template-columns: 1fr;
    border-top: 0;
  }

  .process-step,
  .process-step + .process-step,
  .process-step:nth-child(3) {
    min-height: 0;
    padding: 1.8rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 0;
  }

  .process-step h3 {
    min-height: 0;
  }

  .process-step__top {
    min-height: 0;
    margin-bottom: 1.2rem;
  }

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

  .project-card__body {
    min-height: 0;
  }

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

  .contact-section__inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 479px) {
  :root {
    --header-height: 78px;
  }

  .site-header__inner {
    grid-template-columns: 82px 1fr 46px;
  }

  .brand-link {
    width: 72px;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
  }

  h1 {
    font-size: clamp(2.35rem, 12vw, 3.25rem);
  }

  h2 {
    font-size: clamp(1.95rem, 9vw, 2.65rem);
  }

  .hero {
    min-height: max(720px, calc(100svh - var(--header-height)));
  }

  .eyebrow {
    align-items: flex-start;
    font-size: 0.7rem;
  }

  .eyebrow::before {
    margin-top: 0.55em;
  }

  .pillar-card {
    padding: 2rem 1.5rem;
  }

  .sector-card {
    min-height: 0;
  }

  .sector-card h3 {
    font-size: 1rem;
  }

  .sector-card .line-icon {
    width: 46px;
    height: 46px;
  }

  .capabilities__list li {
    min-height: 96px;
    padding: 1rem 0.8rem;
    font-size: 0.88rem;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__brand {
    grid-column: auto;
  }

  .site-footer__nav {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 360px) {
  .sectors__grid {
    grid-template-columns: 1fr;
  }
}

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

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