/* Outernorm — professional site system */
:root {
  --ink: #0b1220;
  --navy: #13233f;
  --navy-deep: #0a1528;
  --maroon: #b0124a;
  --maroon-dark: #8c0e3a;
  --maroon-soft: #f8e8ef;
  --muted: #5a6577;
  --line: #dce2ec;
  --bg: #f2f4f7;
  --surface: #ffffff;
  --hero-overlay: linear-gradient(
    115deg,
    rgba(10, 21, 40, 0.92) 0%,
    rgba(10, 21, 40, 0.72) 42%,
    rgba(10, 21, 40, 0.35) 100%
  );
  --radius: 2px;
  --shadow: 0 1px 2px rgba(11, 18, 32, 0.05);
  --shadow-md: 0 12px 32px rgba(11, 18, 32, 0.08);
  --max: 1140px;
  --header-h: 78px;
  --font-display: "Archivo", system-ui, sans-serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

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

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

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: rgba(176, 18, 74, 0.18);
  color: var(--ink);
}

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

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

ul {
  list-style: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--maroon);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 200;
  background: var(--maroon);
  color: #fff;
  padding: 0.7rem 1rem;
  font-weight: 600;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(12px);
  transition:
    background 0.3s var(--ease),
    border-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow);
}

body.has-hero .site-header:not(.is-scrolled):not(.is-open) {
  background: transparent;
  backdrop-filter: none;
}

body.has-hero .site-header:not(.is-scrolled):not(.is-open) .nav a {
  color: rgba(255, 255, 255, 0.88);
}

body.has-hero .site-header:not(.is-scrolled):not(.is-open) .nav a:hover,
body.has-hero .site-header:not(.is-scrolled):not(.is-open) .nav a.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

body.has-hero .site-header:not(.is-scrolled):not(.is-open) .header-cta {
  background: #fff;
  color: var(--navy);
}

body.has-hero .site-header:not(.is-scrolled):not(.is-open) .header-cta:hover {
  background: var(--maroon-soft);
  color: var(--maroon-dark);
}

body.has-hero .site-header:not(.is-scrolled):not(.is-open) .nav-toggle {
  background: rgba(255, 255, 255, 0.92);
}

.site-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  background: #fff;
  padding: 0.2rem 0.45rem;
  border-radius: var(--radius);
  line-height: 0;
}

.logo img {
  height: 42px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav a {
  padding: 0.55rem 0.85rem;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--muted);
  border-radius: var(--radius);
  transition: color 0.2s ease, background 0.2s ease;
}

.nav a:hover {
  color: var(--navy);
  background: rgba(19, 35, 63, 0.05);
}

.nav a.is-active {
  color: var(--maroon);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 1.15rem;
  background: var(--maroon);
  color: #fff;
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: var(--radius);
  transition: background 0.2s ease, color 0.2s ease;
}

.header-cta:hover {
  background: var(--maroon-dark);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  transition: transform 0.25s var(--ease), opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.5rem;
  font-weight: 600;
  font-size: 0.98rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.btn--primary {
  background: var(--maroon);
  color: #fff;
}

.btn--primary:hover {
  background: var(--maroon-dark);
}

.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--line);
}

.btn--outline:hover {
  border-color: var(--navy);
  background: rgba(19, 35, 63, 0.03);
}

.btn--light {
  background: #fff;
  color: var(--navy);
}

.btn--light:hover {
  background: var(--maroon-soft);
  color: var(--maroon-dark);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + 3rem) 0 5rem;
  color: #fff;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.06);
  animation: heroZoom 20s var(--ease) forwards;
}

@keyframes heroZoom {
  to {
    transform: scale(1);
  }
}

.hero__shade {
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.brand-mark {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 7.5vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.92;
  margin-bottom: 1.35rem;
  opacity: 0;
  animation: riseIn 0.9s var(--ease) 0.08s forwards;
}

.brand-mark span {
  color: #f0a8c0;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3.2vw, 2.15rem);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -0.02em;
  max-width: 20ch;
  margin-bottom: 1rem;
  opacity: 0;
  animation: riseIn 0.9s var(--ease) 0.22s forwards;
}

.hero__lead {
  font-size: 1.12rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.86);
  max-width: 40ch;
  margin-bottom: 1.85rem;
  opacity: 0;
  animation: riseIn 0.9s var(--ease) 0.36s forwards;
}

.hero .btn-row {
  opacity: 0;
  animation: riseIn 0.9s var(--ease) 0.5s forwards;
}

.hero__meta {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  opacity: 0;
  animation: riseIn 0.9s var(--ease) 0.62s forwards;
}

.hero__meta strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f0a8c0;
  margin-bottom: 0.25rem;
}

.hero__meta span {
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.88);
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Page hero */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 4.75rem) 0 3.75rem;
  background: var(--navy-deep);
  color: #fff;
  overflow: hidden;
}

.page-hero--media {
  min-height: 42vh;
  display: flex;
  align-items: flex-end;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
}

.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10, 21, 40, 0.92) 0%,
    rgba(10, 21, 40, 0.7) 55%,
    rgba(10, 21, 40, 0.45) 100%
  );
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 70% at 88% 15%, rgba(176, 18, 74, 0.32), transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.page-hero--media::before {
  display: none;
}

.page-hero__inner {
  position: relative;
  z-index: 2;
}

.page-hero__label {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 3.9rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 0.7rem;
}

.page-hero p {
  max-width: 44ch;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.12rem;
}

.breadcrumb {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1rem;
}

.breadcrumb a:hover {
  color: #fff;
}

.breadcrumb span[aria-hidden="true"] {
  opacity: 0.5;
}

/* Sections */
.section {
  padding: 5.25rem 0;
}

.section--surface {
  background: var(--surface);
}

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

.section--tight {
  padding: 3.5rem 0;
}

.section-head {
  max-width: 580px;
  margin-bottom: 2.85rem;
}

.section-head--row {
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

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

.eyebrow {
  display: block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--maroon);
  margin-bottom: 0.75rem;
}

.section--navy .eyebrow {
  color: #f0a8c0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.2vw, 2.55rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: 0.85rem;
}

.section--navy .section-title {
  color: #fff;
}

.section-lead {
  color: var(--muted);
  font-size: 1.06rem;
}

.section--navy .section-lead {
  color: rgba(255, 255, 255, 0.75);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--maroon);
  white-space: nowrap;
}

.text-link:hover {
  text-decoration: underline;
}

.text-link svg {
  width: 15px;
  height: 15px;
}

/* Trust strip */
.trust {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding: 1.85rem 0;
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.trust__item {
  padding-left: 1rem;
  border-left: 2px solid var(--maroon);
}

.trust__item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.trust__item span {
  font-size: 0.92rem;
  color: var(--muted);
}

/* Process */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}

.process__item {
  position: relative;
  padding-top: 1.25rem;
  border-top: 2px solid var(--maroon);
}

.process__item h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0.65rem 0 0.45rem;
}

.process__item p {
  color: var(--muted);
  font-size: 0.96rem;
}

.process__num {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--maroon);
}

/* Services list */
.services-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: 4.5rem 1fr auto;
  gap: 1.25rem;
  align-items: start;
  padding: 1.7rem 0.35rem;
  margin: 0 -0.35rem;
  border-bottom: 1px solid var(--line);
  transition: background 0.2s ease;
}

.service-row:hover {
  background: rgba(19, 35, 63, 0.025);
}

.service-row__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--maroon);
  padding-top: 0.2rem;
}

.service-row h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--ink);
}

.service-row p {
  color: var(--muted);
  max-width: 54ch;
  font-size: 1rem;
}

.service-row__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--maroon);
  padding-top: 0.25rem;
  white-space: nowrap;
}

.service-row__link:hover {
  text-decoration: underline;
}

/* Capability grid */
.capability-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 1rem;
  min-height: 440px;
}

.capability-feature,
.capability-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--navy);
}

.capability-feature {
  min-height: 440px;
}

.capability-tile {
  min-height: 214px;
}

.capability-feature img,
.capability-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.capability-feature:hover img,
.capability-tile:hover img {
  transform: scale(1.04);
}

.capability-feature__copy,
.capability-tile__copy {
  position: absolute;
  inset: auto 0 0;
  padding: 1.75rem;
  background: linear-gradient(transparent, rgba(10, 21, 40, 0.9));
  color: #fff;
}

.capability-tile__copy {
  padding: 1.25rem 1.4rem;
}

.capability-feature__copy h3,
.capability-tile__copy h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 0.35rem;
}

.capability-tile__copy h3 {
  font-size: 1.12rem;
  margin-bottom: 0;
}

.capability-feature__copy p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.98rem;
  max-width: 36ch;
}

.capability-stack {
  display: grid;
  gap: 1rem;
}

/* Split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.75rem;
  align-items: center;
}

.split--reverse .split__media {
  order: 2;
}

.split__media {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--navy);
  box-shadow: var(--shadow-md);
}

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

.split__media:hover img {
  transform: scale(1.03);
}

.split__copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  letter-spacing: -0.025em;
  line-height: 1.12;
  margin-bottom: 1rem;
}

.split__copy p + p {
  margin-top: 1rem;
}

.split__copy p {
  color: var(--muted);
}

.split__actions {
  margin-top: 1.75rem;
}

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.value {
  padding-top: 1rem;
  border-top: 2px solid var(--maroon);
}

.value h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.value p {
  font-size: 0.95rem;
  color: var(--muted);
}

/* Sectors */
.sectors {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.sector {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1rem;
  border: 1px solid var(--line);
  background: var(--surface);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--navy);
  border-radius: var(--radius);
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 380px));
  gap: 2rem;
  justify-content: start;
}

.team-member {
  background: var(--surface);
}

.team-member__photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--navy);
  margin-bottom: 1.1rem;
}

.team-member__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.7s var(--ease);
}

.team-member:hover .team-member__photo img {
  transform: scale(1.03);
}

.team-member h3 {
  font-family: var(--font-display);
  font-size: 1.28rem;
  margin-bottom: 0.2rem;
}

.team-member p {
  color: var(--muted);
  font-size: 0.98rem;
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2.75rem;
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 1.35rem;
}

.contact-detail {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}

.contact-detail:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-detail h3 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--maroon);
  margin-bottom: 0.4rem;
}

.contact-detail a,
.contact-detail p {
  font-size: 1.12rem;
  color: var(--ink);
  font-weight: 600;
}

.contact-detail a:hover {
  color: var(--maroon);
}

.contact-aside {
  margin-top: 1.75rem;
  padding: 1.25rem;
  background: var(--maroon-soft);
  border-left: 3px solid var(--maroon);
}

.contact-aside p {
  font-size: 0.98rem;
  color: var(--navy);
  line-height: 1.5;
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 1.85rem;
  box-shadow: var(--shadow);
}

.contact-form__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}

.contact-form__lead {
  color: var(--muted);
  font-size: 0.96rem;
  margin-bottom: 1.35rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.4rem;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:hover,
.field textarea:hover,
.field select:hover {
  border-color: #c5cedb;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--maroon);
  box-shadow: 0 0 0 3px rgba(176, 18, 74, 0.15);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-note {
  font-size: 0.88rem;
  color: var(--muted);
}

.form-status {
  display: none;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
}

.form-status.is-success {
  display: block;
  background: #e8f6ee;
  color: #146c43;
}

.form-status.is-error {
  display: block;
  background: #fdecee;
  color: #b42318;
}

.map-wrap {
  margin-top: 2.75rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
  filter: grayscale(0.25) contrast(1.05);
}

/* CTA band */
.cta-band {
  padding: 5rem 0;
  background:
    linear-gradient(120deg, rgba(10, 21, 40, 0.94), rgba(176, 18, 74, 0.72)),
    url("../img/bg/hero-bg-1.jpg") center / cover;
  color: #fff;
}

.cta-band__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.4vw, 2.7rem);
  letter-spacing: -0.025em;
  max-width: 15ch;
  line-height: 1.08;
  margin-bottom: 0.7rem;
}

.cta-band p {
  max-width: 40ch;
  color: rgba(255, 255, 255, 0.82);
}

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.78);
  padding: 4.25rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr 1.15fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand .logo {
  display: inline-flex;
  margin-bottom: 1.1rem;
}

.footer-brand p {
  max-width: 34ch;
  font-size: 0.98rem;
  line-height: 1.6;
}

.footer-col h3 {
  font-family: var(--font-display);
  color: #fff;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  padding: 0.3rem 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.96rem;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

.reveal-delay-3 {
  transition-delay: 0.24s;
}

/* Responsive */
@media (max-width: 960px) {
  .trust__grid,
  .process {
    grid-template-columns: repeat(2, 1fr);
  }

  .capability-grid,
  .split,
  .split--reverse .split__media,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .split--reverse .split__media {
    order: 0;
  }

  .split__media {
    aspect-ratio: 16 / 10;
  }

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

  .service-row {
    grid-template-columns: 3rem 1fr;
  }

  .service-row__link {
    grid-column: 2;
  }

  .header-cta {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem;
    gap: 0.15rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
    box-shadow: var(--shadow-md);
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 0.85rem 1rem;
    color: var(--muted) !important;
  }

  .nav a.is-active {
    color: var(--maroon) !important;
  }

  .hero {
    min-height: 92svh;
    padding-bottom: 3.25rem;
  }

  .form-grid,
  .trust__grid,
  .process {
    grid-template-columns: 1fr;
  }

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

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