@font-face {
  font-family: "PermianSansTypeface";
  src: url("assets/PermianSansTypeface.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "PermianSansTypeface";
  src: url("assets/PermianSansTypeface-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --bg: #ffffff;
  --bg-soft: #f0f7ff;
  --bg-muted: #edf3f7;
  --surface: rgba(139, 139, 139, 0.82);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --surface-light: rgba(255, 255, 255, 0.88);
  --surface-cream: #f7fbff;
  --text: #000000;
  --text-soft: #3d4b55;
  --text-inverse: #ffffff;
  --line: rgba(255, 255, 255, 0.22);
  --line-dark: rgba(2, 77, 113, 0.16);
  --accent: #024d71;
  --accent-soft: #7887a3;
  --accent-warm: #f0f7ff;
  --shadow: 0 24px 56px rgba(2, 35, 52, 0.16);
  --shadow-soft: 0 14px 32px rgba(2, 35, 52, 0.08);
  --radius-xl: 2rem;
  --radius-lg: 1.5rem;
  --radius-md: 1rem;
  --container: min(1180px, calc(100% - 2rem));
  --section-rail-width: clamp(9.5rem, 11vw, 11.5rem);
  --section-rail-gutter: clamp(2.2rem, 3vw, 4rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "PermianSansTypeface", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(2, 77, 113, 0.09), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f0f7ff 28%, #ffffff 62%, #f9fcff 100%);
}

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

button,
input,
textarea {
  font: inherit;
}

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

button {
  border: 0;
  background: none;
  cursor: pointer;
}

.page-shell {
  position: relative;
  overflow: clip;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
  z-index: 0;
  border-radius: 999px;
  filter: blur(28px);
}

.page-shell::before {
  top: 8rem;
  right: -8rem;
  width: 24rem;
  height: 24rem;
  background: rgba(2, 77, 113, 0.1);
}

.page-shell::after {
  top: 52rem;
  left: -12rem;
  width: 28rem;
  height: 28rem;
  background: rgba(120, 135, 163, 0.08);
}

.container {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: clamp(4.5rem, 7vw, 7rem) 0;
}

.eyebrow,
.section-kicker,
.hero-panel-label,
.service-index,
.team-role,
.sidebar-title {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  color: rgba(255, 255, 255, 0.76);
}

.section-kicker,
.hero-panel-label,
.team-role,
.sidebar-title {
  color: rgba(0, 0, 0, 0.5);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 0 0 1.1rem;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-top: 6px solid #25181f;
  border-bottom: 1px solid rgba(7, 19, 27, 0.08);
  transition:
    padding 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    border-top-width 0.25s ease;
}

.site-header.is-scrolled {
  padding: 0 0 0.95rem;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 24px rgba(2, 35, 52, 0.08);
}

.home-page .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 0 0 0.8rem;
  background: rgba(222, 232, 242, 0.82);
  backdrop-filter: blur(12px);
  border-top-width: 2px;
  border-top-color: rgba(37, 24, 31, 0.6);
  border-bottom-color: rgba(63, 88, 109, 0.22);
  box-shadow: none;
}

.home-page .site-header.is-scrolled,
.home-page .site-header.nav-open {
  background: rgba(222, 232, 242, 0.95);
  backdrop-filter: blur(16px);
  border-bottom-color: rgba(63, 88, 109, 0.28);
  box-shadow: 0 10px 24px rgba(2, 35, 52, 0.08);
}

.site-header .container {
  width: min(1480px, calc(100% - 2.5rem));
}

.utility-bar {
  display: none;
}

.utility-pill {
  margin: 0;
  padding: 0.55rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.74rem;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-bar {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.2rem, 2vw, 2.8rem);
  padding-top: 1.15rem;
  padding-bottom: 0;
  border-bottom: 0;
}

.home-page .nav-bar {
  align-items: center;
  gap: clamp(0.95rem, 1.6vw, 2rem);
  padding-top: 0.72rem;
  transition: padding-top 0.25s ease, gap 0.25s ease;
}

.home-page .site-header.is-scrolled .nav-bar,
.home-page .site-header.nav-open .nav-bar {
  gap: clamp(0.85rem, 1.35vw, 1.7rem);
  padding-top: 0.42rem;
}

.brand {
  flex-shrink: 0;
  align-self: center;
}

.brand img {
  width: min(15rem, 17vw);
  transition: width 0.28s ease, transform 0.28s ease;
}

.home-page .brand img {
  width: min(13.25rem, 14.5vw);
}

.home-page .site-header.is-scrolled .brand img,
.home-page .site-header.nav-open .brand img {
  width: min(9.6rem, 10.5vw);
}

.footer-logo {
  display: block;
  width: min(15.5rem, 100%);
  height: auto;
  border-radius: 0.9rem;
}

.site-nav {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  gap: clamp(1rem, 1.55vw, 2.15rem);
  margin-left: 0;
  padding: 1.7rem 0 0.95rem;
  border-bottom: 2px solid #111111;
}

.home-page .site-nav {
  padding: 1.05rem 0 0.68rem;
  border-bottom-color: rgba(17, 17, 17, 0.6);
  transition: padding 0.25s ease, border-color 0.25s ease;
}

.home-page .site-header.is-scrolled .site-nav,
.home-page .site-header.nav-open .site-nav {
  padding: 0.82rem 0 0.54rem;
  border-bottom-color: rgba(17, 17, 17, 0.34);
}

.site-nav a {
  color: #111111;
  background: transparent;
  font-family: "PermianSansTypeface", sans-serif;
  font-size: clamp(0.94rem, 1.05vw, 1.05rem);
  font-weight: 400;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.site-nav .site-nav-cta {
  display: none;
}

.site-nav a:not(.site-nav-cta):hover,
.site-nav a:not(.site-nav-cta):focus-visible,
.site-nav a:not(.site-nav-cta)[aria-current="page"] {
  color: var(--accent);
  background: transparent;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0.55rem;
  margin-left: auto;
  border-radius: 0.85rem;
  border: 1px solid rgba(7, 19, 27, 0.18);
  background: #ffffff;
}

.menu-toggle span {
  width: 1.4rem;
  height: 2px;
  background: #111111;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, #035f8d, #024d71);
  box-shadow: 0 14px 28px rgba(2, 77, 113, 0.22);
}

.button-secondary {
  color: var(--accent);
  border-color: rgba(2, 77, 113, 0.22);
  background: rgba(255, 255, 255, 0.78);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(2, 77, 113, 0.42);
  background: #ffffff;
}

.button-tertiary {
  color: var(--accent);
  background: transparent;
  border-color: rgba(2, 77, 113, 0.3);
}

.button-tertiary:hover,
.button-tertiary:focus-visible {
  background: rgba(2, 77, 113, 0.06);
}

.hero {
  position: relative;
  min-height: calc(100vh - 8.25rem);
  display: flex;
  align-items: flex-end;
  padding: clamp(1rem, 1.8vw, 1.5rem) 0 clamp(1.4rem, 2.8vw, 2.5rem);
  color: var(--text-inverse);
  overflow: hidden;
}

.home-page .hero {
  min-height: 100vh;
}

.hero::before,
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
}

.hero::before {
  background:
    linear-gradient(180deg, rgba(232, 239, 248, 0.82) 0%, rgba(210, 223, 238, 0.44) 32%, rgba(9, 30, 45, 0.18) 58%, rgba(4, 13, 22, 0.78) 100%),
    linear-gradient(90deg, rgba(8, 18, 29, 0.14) 0%, rgba(8, 18, 29, 0.03) 46%, rgba(8, 18, 29, 0.26) 100%),
    url("assets/imgggg-1.webp") center center / cover no-repeat;
}

.home-page .hero::before {
  animation: hero-rise-in 1.9s cubic-bezier(0.16, 0.84, 0.2, 1) both;
  will-change: transform, opacity;
  transform-origin: 50% 100%;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 24%;
  background: linear-gradient(180deg, rgba(4, 13, 22, 0) 0%, rgba(4, 13, 22, 0.14) 30%, rgba(4, 13, 22, 0.58) 100%);
}

.home-page .hero::after {
  animation: hero-shadow-settle 1.75s cubic-bezier(0.16, 0.84, 0.2, 1) both;
}

@keyframes hero-rise-in {
  from {
    opacity: 0;
    transform: translate3d(0, 22%, 0) scale(1.14);
  }

  58% {
    opacity: 1;
  }

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

@keyframes hero-shadow-settle {
  from {
    opacity: 0;
    transform: translateY(9%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(20rem, 0.88fr);
  gap: clamp(1.5rem, 3vw, 4rem);
  align-items: end;
  min-height: clamp(28rem, calc(100vh - 17rem), 42rem);
}

.home-page .hero-layout {
  animation: hero-layout-settle 1.3s cubic-bezier(0.16, 0.84, 0.2, 1) 0.18s both;
  will-change: transform, opacity;
}

@media (min-width: 1500px) {
  .home-page .hero-layout {
    width: min(1360px, calc(100% - 4rem));
    grid-template-columns: minmax(0, 44rem) minmax(24rem, 31rem);
    justify-content: space-between;
    gap: clamp(2.4rem, 4vw, 5.2rem);
  }

  .home-page .hero-copy {
    max-width: 44rem;
  }

  .home-page .hero-title-top {
    font-size: clamp(3.8rem, 5.9vw, 6.15rem);
  }

  .home-page .hero-title-bottom span {
    font-size: clamp(2rem, 3.8vw, 2.9rem);
  }

  .home-page .hero-title-mark {
    width: clamp(7.1rem, 10vw, 10.4rem);
  }

  .home-page .hero-intro {
    justify-self: end;
    max-width: 31rem;
  }
}

@keyframes hero-layout-settle {
  from {
    opacity: 0;
    transform: translate3d(0, 4rem, 0);
  }

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

.who-title,
.section-rail h2,
.contact-copy h2,
.team-copy h2,
.media-copy h2,
.profile-modal-head h2 {
  margin: 0;
  font-family: "Radley", serif;
  line-height: 0.94;
}

.hero-title {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  line-height: 1;
  max-width: 100%;
  min-width: 0;
}

.hero-copy {
  max-width: min(44rem, 100%);
  min-width: 0;
  padding-bottom: clamp(0.45rem, 1vw, 1rem);
}

.home-page .hero-copy {
  opacity: 0;
  transform: translate3d(0, 5.5rem, 0);
  animation: hero-copy-settle 1.15s cubic-bezier(0.18, 0.86, 0.22, 1) 0.52s both;
  will-change: transform, opacity;
}

.hero-welcome {
  margin: 0 0 0.55rem;
  font-family: "PermianSansTypeface", sans-serif;
  color: rgba(255, 255, 255, 0.98);
  font-size: clamp(1.3rem, 2.2vw, 2.25rem);
  font-weight: 400;
  line-height: 0.84;
}

.hero-title-top {
  font-family: "Radley", serif;
  font-size: clamp(3.6rem, 7.7vw, 6.9rem);
  font-weight: 400;
  line-height: 0.91;
  letter-spacing: 0;
  text-transform: uppercase;
  max-width: 100%;
}

.hero-title-bottom {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: clamp(0.8rem, 1.8vw, 1.35rem);
  max-width: 100%;
  min-width: 0;
}

.hero-title-bottom span {
  font-family: "PermianSansTypeface", sans-serif;
  font-size: clamp(2rem, 4.2vw, 3.15rem);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  max-width: 100%;
  min-width: 0;
}

.hero-title-mark {
  flex: 0 0 auto;
  width: clamp(7.6rem, 14vw, 12rem);
  height: auto;
  transform: translateY(-0.28rem);
  filter: brightness(0) invert(1);
}

.hero-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.2rem;
  max-width: min(32rem, 100%);
  min-width: 0;
  margin-bottom: 1.1rem;
  padding-left: clamp(1.15rem, 1.8vw, 1.55rem);
  border-left: 4px solid rgba(255, 255, 255, 0.92);
}

.home-page .hero-intro {
  opacity: 0;
  transform: translate3d(0, 4.5rem, 0);
  animation: hero-intro-settle 1.08s cubic-bezier(0.18, 0.86, 0.22, 1) 0.72s both;
  will-change: transform, opacity;
}

@keyframes hero-copy-settle {
  from {
    opacity: 0;
    transform: translate3d(0, 5.5rem, 0);
  }

  60% {
    opacity: 1;
  }

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

@keyframes hero-intro-settle {
  from {
    opacity: 0;
    transform: translate3d(0, 4.5rem, 0);
  }

  60% {
    opacity: 1;
  }

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

.hero-summary {
  max-width: 28rem;
  margin: 0;
  font-family: "PermianSansTypeface", sans-serif;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(1rem, 1.55vw, 1.375rem);
  font-weight: 400;
  line-height: 1.46;
}

.hero-actions,
.hero-panel,
.hero-chip-grid {
  display: none;
}

.hero-panel,
.card,
.intro-logo-panel,
.intro-copy-panel,
.intro-heading-panel,
.mission-card,
.media-shell,
.service-card,
.team-card,
.profile-modal-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(2, 77, 113, 0.26);
  backdrop-filter: blur(14px);
}

.hero-chip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  list-style: none;
  padding: 1.1rem 0 1rem;
  margin: 0;
}

.hero-chip-grid li {
  padding: 0.85rem 0.95rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.94);
  font-weight: 600;
}

.hero-panel-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.88rem;
  line-height: 1.5;
}

.hero .hero-panel-label,
.team-card .team-role {
  color: rgba(255, 255, 255, 0.72);
}

.contact .button-primary {
  color: #ffffff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow: none;
}

.contact .button-primary:hover,
.contact .button-primary:focus-visible {
  color: var(--accent);
  background: #ffffff;
  border-color: #ffffff;
}

.hero .hero-cta {
  position: relative;
  justify-content: flex-start;
  min-width: min(21rem, 100%);
  margin-top: 0.2rem;
  padding: 1.15rem 5rem 1.15rem 1.85rem;
  color: #ffffff;
  background: #2b5f84;
  border-color: rgba(255, 255, 255, 0.82);
  box-shadow: none;
}

.hero .hero-cta:hover,
.hero .hero-cta:focus-visible {
  color: #ffffff;
  background: #234f6f;
  border-color: #ffffff;
}

.hero-cta-label {
  display: inline-flex;
  align-items: center;
}

.hero-cta-icon {
  position: absolute;
  top: 50%;
  right: -0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.1rem;
  height: 4.1rem;
  border-radius: 999px;
  background: #ffffff;
  color: #2b5f84;
  transform: translateY(-50%);
}

.hero-cta-icon svg {
  width: 1.65rem;
  height: 1.65rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header .header-cta {
  align-self: center;
  margin-top: 1.05rem;
  padding-inline: 1.55rem;
  color: #ffffff;
  background: #1f567b;
  border-color: #1f567b;
  box-shadow: none;
  white-space: nowrap;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    padding 0.25s ease,
    margin-top 0.25s ease,
    font-size 0.25s ease;
}

.site-header .header-cta:hover,
.site-header .header-cta:focus-visible {
  color: #ffffff;
  background: #184767;
  border-color: #184767;
}

.home-page .site-header .header-cta {
  margin-top: 0.72rem;
  padding-inline: 1.3rem;
  font-size: 0.9rem;
}

.home-page .site-header.is-scrolled .header-cta,
.home-page .site-header.nav-open .header-cta {
  margin-top: 0.48rem;
  padding-inline: 1.05rem;
  font-size: 0.84rem;
}

.page-banner {
  padding: clamp(7.4rem, 10vw, 9rem) 0 clamp(2.2rem, 4vw, 3rem);
  background: var(--accent);
}

.page-banner .section-kicker {
  margin-bottom: 0.55rem;
  color: rgba(255, 255, 255, 0.72);
}

.page-banner h1,
.about-overview-title,
.about-value-copy h2 {
  margin: 0;
  font-family: "Radley", serif;
  line-height: 0.94;
}

.page-banner h1 {
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  color: #ffffff;
}

.about-overview {
  background: linear-gradient(180deg, #ffffff 0%, #f5f9fd 100%);
}

.about-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
}

.about-overview-media {
  padding: 0;
  overflow: hidden;
}

.about-overview-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.about-overview-copy {
  display: grid;
  gap: 1rem;
}

.about-overview-copy .section-kicker,
.about-value-copy .section-kicker {
  color: rgba(15, 35, 48, 0.58);
}

.about-overview-title {
  font-size: clamp(3rem, 8vw, 7.4rem);
  letter-spacing: -0.05em;
  text-transform: lowercase;
  color: var(--accent);
}

.about-overview-title img {
  display: inline-block;
  width: clamp(2rem, 3vw, 2.8rem);
  margin-right: 0.25rem;
  vertical-align: middle;
}

.about-overview-copy p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.8;
}

.about-values {
  padding-top: 0;
}

.about-values-grid {
  display: grid;
  gap: 1.35rem;
}

.about-value {
  display: grid;
  grid-template-columns: minmax(16rem, 23rem) minmax(0, 1fr);
  gap: clamp(1.4rem, 3vw, 2.2rem);
  align-items: center;
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.92);
}

.about-value-reverse {
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 23rem);
}

.about-value-reverse .about-value-media {
  order: 2;
}

.about-value-reverse .about-value-copy {
  order: 1;
}

.about-value-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 1.2rem;
}

.about-value-copy {
  display: grid;
  gap: 0.85rem;
}

.about-value-copy h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 400;
}

.about-value-copy p:last-child {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.about-video {
  padding-top: 0;
}

.about-video-frame {
  padding: 0;
  overflow: hidden;
  background: #07131b;
}

.about-video-frame video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #07131b;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(7.8rem, 10vw, 9.4rem) 0 clamp(3.2rem, 6vw, 5rem);
  color: #ffffff;
}

.detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
}

.detail-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(180deg, rgba(7, 19, 27, 0), rgba(7, 19, 27, 0.78));
}

.detail-hero-media-training::before {
  background:
    linear-gradient(90deg, rgba(5, 24, 35, 0.84) 0%, rgba(5, 24, 35, 0.54) 42%, rgba(5, 24, 35, 0.28) 100%),
    linear-gradient(180deg, rgba(232, 239, 248, 0.22), rgba(7, 19, 27, 0.24)),
    url("assets/image-8-2.webp") center center / cover no-repeat;
}

.detail-hero-crisis::before {
  background:
    linear-gradient(90deg, rgba(6, 18, 29, 0.84) 0%, rgba(6, 18, 29, 0.55) 42%, rgba(6, 18, 29, 0.24) 100%),
    linear-gradient(180deg, rgba(210, 223, 238, 0.18), rgba(7, 19, 27, 0.22)),
    url("assets/image-9-1.webp") center center / cover no-repeat;
}

.detail-hero-content::before {
  background:
    linear-gradient(90deg, rgba(5, 24, 35, 0.86) 0%, rgba(5, 24, 35, 0.56) 44%, rgba(5, 24, 35, 0.25) 100%),
    linear-gradient(180deg, rgba(213, 230, 240, 0.18), rgba(7, 19, 27, 0.26)),
    url("assets/image-10.webp") center center / cover no-repeat;
}

.detail-hero-about::before {
  background:
    linear-gradient(90deg, rgba(6, 20, 32, 0.88) 0%, rgba(6, 20, 32, 0.58) 42%, rgba(6, 20, 32, 0.24) 100%),
    linear-gradient(180deg, rgba(214, 227, 240, 0.16), rgba(7, 19, 27, 0.24)),
    url("assets/Untitled-Youtube-Banner.webp") center 10% / cover no-repeat;
}

.detail-hero-strategic::before {
  background:
    linear-gradient(90deg, rgba(6, 22, 34, 0.86) 0%, rgba(6, 22, 34, 0.54) 44%, rgba(6, 22, 34, 0.24) 100%),
    linear-gradient(180deg, rgba(220, 231, 241, 0.18), rgba(7, 19, 27, 0.22)),
    url("assets/image-11.webp") center center / cover no-repeat;
}

.detail-hero-contact::before {
  background:
    linear-gradient(90deg, rgba(8, 19, 30, 0.84) 0%, rgba(8, 19, 30, 0.54) 42%, rgba(8, 19, 30, 0.24) 100%),
    linear-gradient(180deg, rgba(228, 236, 244, 0.24), rgba(7, 19, 27, 0.18)),
    url("assets/imgggg-1.webp") center center / cover no-repeat;
}

.detail-hero-conditions::before {
  background:
    linear-gradient(90deg, rgba(7, 22, 34, 0.88) 0%, rgba(7, 22, 34, 0.58) 42%, rgba(7, 22, 34, 0.24) 100%),
    linear-gradient(180deg, rgba(213, 225, 239, 0.18), rgba(7, 19, 27, 0.22)),
    url("assets/image-16.webp") center center / cover no-repeat;
}

.detail-hero-privacy::before {
  background:
    linear-gradient(90deg, rgba(7, 21, 33, 0.88) 0%, rgba(7, 21, 33, 0.58) 42%, rgba(7, 21, 33, 0.24) 100%),
    linear-gradient(180deg, rgba(214, 229, 241, 0.2), rgba(7, 19, 27, 0.22)),
    url("assets/imgggg-1.webp") center center / cover no-repeat;
}

.detail-hero-not-found::before {
  background:
    linear-gradient(90deg, rgba(6, 21, 33, 0.88) 0%, rgba(6, 21, 33, 0.58) 42%, rgba(6, 21, 33, 0.24) 100%),
    linear-gradient(180deg, rgba(217, 229, 241, 0.18), rgba(7, 19, 27, 0.22)),
    url("assets/imgggg-1.webp") center center / cover no-repeat;
}

.detail-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
  max-width: 48rem;
}

.detail-hero .section-kicker {
  color: rgba(255, 255, 255, 0.72);
}

.detail-hero h1,
.detail-section-head h2,
.contact-page-intro-copy h2 {
  margin: 0;
  font-family: "Radley", serif;
  font-weight: 400;
}

.detail-hero h1 {
  font-size: clamp(3.3rem, 7vw, 6rem);
  line-height: 0.94;
}

.detail-hero-summary {
  margin: 0;
  max-width: 38rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.1rem, 1.9vw, 1.45rem);
  line-height: 1.72;
}

.detail-story {
  background: linear-gradient(180deg, #ffffff 0%, #f5f9fd 100%);
}

.detail-story-grid,
.detail-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.92fr);
  gap: clamp(1.5rem, 3vw, 2.6rem);
  align-items: center;
}

.detail-story-copy,
.contact-page-intro-copy {
  display: grid;
  gap: 1rem;
  min-width: 0;
}

.detail-story-copy p,
.detail-card p,
.detail-showcase-copy p,
.contact-page-intro-copy p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.78;
}

.detail-story-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 0.55rem;
}

.detail-story-media,
.detail-showcase-media {
  padding: 0;
  overflow: hidden;
}

.detail-story-media img,
.detail-showcase-media img,
.detail-story-media video,
.detail-showcase-media video {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.detail-story-media video,
.detail-showcase-media video {
  display: block;
  background: #07131b;
}

.detail-showcase-media-banner {
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.detail-showcase-media-banner img {
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: 0;
}

.detail-card-band {
  background: #ffffff;
}

.detail-card-band-soft {
  background: linear-gradient(180deg, #f6fbff 0%, #ffffff 100%);
}

.detail-section-head {
  display: grid;
  gap: 0.7rem;
  max-width: 48rem;
  margin-bottom: 1.8rem;
}

.detail-section-head h2,
.contact-page-intro-copy h2 {
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 0.98;
  color: #000000;
}

.detail-card-grid,
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1.2rem;
  min-width: 0;
}

.detail-card,
.contact-info-card {
  padding: 1.4rem;
  border: 1px solid rgba(6, 31, 42, 0.08);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.detail-card h3,
.contact-info-card h3,
.detail-showcase-copy h2 {
  margin: 0 0 0.7rem;
  font-family: "Radley", serif;
  font-size: clamp(1.65rem, 2.4vw, 2.45rem);
  font-weight: 400;
  line-height: 1.04;
  color: #000000;
}

.detail-card-list {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.detail-card-list li {
  padding-left: 1.15rem;
  position: relative;
  color: var(--text-soft);
  line-height: 1.68;
}

.detail-card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--accent);
  transform: translateY(-50%);
}

.detail-showcase-copy {
  display: grid;
  gap: 1rem;
}

.detail-showcase-copy .button {
  justify-self: flex-start;
}

.contact-page-intro {
  background: linear-gradient(180deg, #ffffff 0%, #f4f8fd 100%);
}

.contact-page-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.9fr);
  gap: clamp(1.5rem, 3vw, 2.6rem);
  align-items: start;
}

.contact-page-intro-copy .section-kicker {
  color: rgba(15, 35, 48, 0.58);
}

.contact-info-card {
  min-width: 0;
  min-height: 100%;
}

.contact-info-card p,
.contact-info-card a {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.72;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-info-card a {
  font-weight: 600;
}

.contact-location-card {
  padding: 0;
  overflow: hidden;
}

.contact-location-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.contact-location-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-location-copy {
  display: grid;
  gap: 0.55rem;
  padding: 1.2rem 1.4rem 1.4rem;
}

.contact-location-copy h3 {
  margin: 0;
}

.contact-location-copy p {
  margin: 0;
}

.contact-location-copy a {
  justify-self: flex-start;
}

.about-team {
  background: #ffffff;
}

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

.about-team-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #0c1d29;
  color: #ffffff;
  box-shadow: var(--shadow-soft);
}

.about-team-media {
  position: relative;
  aspect-ratio: 251 / 370;
  overflow: hidden;
}

.about-team-media img,
.about-team-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-team-media img {
  transition: opacity 0.45s ease, transform 0.65s ease;
}

.about-team-media video {
  opacity: 0;
  transition: opacity 0.45s ease;
}

.about-team-card:hover .about-team-media img,
.about-team-card:focus-within .about-team-media img {
  opacity: 0;
  transform: scale(1.04);
}

.about-team-card:hover .about-team-media video,
.about-team-card:focus-within .about-team-media video {
  opacity: 1;
}

.about-team-content {
  display: grid;
  gap: 0.65rem;
  justify-items: center;
  padding: 1rem 1rem 1.25rem;
  text-align: center;
}

.about-team-content h3 {
  margin: 0;
  font-family: "Radley", serif;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.04;
}

.about-team-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.about-team-card .button-secondary {
  width: 100%;
  color: #ffffff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.32);
}

.about-team-card .button-secondary:hover,
.about-team-card .button-secondary:focus-visible {
  color: var(--accent);
  background: #ffffff;
  border-color: #ffffff;
}

.intro {
  padding-top: clamp(4.5rem, 6vw, 6rem);
  margin-top: 0;
  position: relative;
  z-index: 2;
  border-radius: 0;
  background: #ffffff;
}

.intro-grid {
  --intro-media-width: 100%;
  display: flex;
  flex-direction: column;
  gap: clamp(1.8rem, 3vw, 3rem);
  overflow: hidden;
}

.intro-stage {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
  transition: gap 0.5s ease-in-out;
}

.intro-grid.show-elements .intro-stage {
  gap: clamp(2rem, 4vw, 4rem);
}

.intro-media-column {
  flex: 0 0 var(--intro-media-width);
  width: var(--intro-media-width);
  max-width: var(--intro-media-width);
  transition:
    width 0.3s ease-out,
    max-width 0.3s ease-out,
    min-height 0.45s ease,
    box-shadow 0.35s ease,
    transform 0.35s ease;
}

.intro-logo-panel {
  position: relative;
  overflow: hidden;
  min-height: clamp(18rem, 36vw, 32rem);
  padding: 1.6rem;
  max-width: none;
  border-radius: 2rem;
  background:
    radial-gradient(circle at 20% 20%, rgba(195, 217, 255, 0.82), transparent 40%),
    radial-gradient(circle at 86% 18%, rgba(231, 244, 236, 0.9), transparent 36%),
    linear-gradient(180deg, #eef8f5 0%, #dcecff 100%);
  box-shadow: 0 22px 36px rgba(98, 130, 178, 0.14);
}

.intro-grid.shrink-video .intro-logo-panel {
  min-height: clamp(16rem, 24vw, 22rem);
}

.intro-video-trigger {
  width: 100%;
  border: 0;
  appearance: none;
  cursor: pointer;
  text-align: left;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.intro-video-trigger:hover,
.intro-video-trigger:focus-visible {
  transform: translateY(-0.2rem);
  box-shadow: 0 28px 42px rgba(98, 130, 178, 0.18);
}

.intro-video-trigger:focus-visible {
  outline: 2px solid rgba(31, 86, 123, 0.45);
  outline-offset: 4px;
}

.intro-logo-panel::before {
  content: "";
  position: absolute;
  inset: 12% 22%;
  border-radius: 999px;
  border: 2px solid rgba(31, 86, 123, 0.2);
}

.intro-logo-panel::after {
  content: "";
  position: absolute;
  inset: 14% 18%;
  background:
    radial-gradient(circle, rgba(31, 86, 123, 0.36) 0 1px, transparent 1.8px) center / 30px 30px;
  opacity: 0.28;
  pointer-events: none;
}

.intro-logo-orbit {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  width: 100%;
  aspect-ratio: 16 / 10;
  margin: auto;
  overflow: hidden;
  border-radius: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 28px rgba(98, 130, 178, 0.16);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.intro-logo-orbit img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.intro-video-poster img {
  object-fit: cover;
  object-position: center;
}

.intro-video-trigger:hover .intro-logo-orbit,
.intro-video-trigger:focus-visible .intro-logo-orbit {
  transform: scale(1.03);
  box-shadow: 0 22px 34px rgba(98, 130, 178, 0.22);
}

.intro-grid.shrink-video .intro-logo-orbit {
  width: 100%;
}

.intro-video-badge {
  position: absolute;
  right: 1.35rem;
  bottom: 1.35rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 0.95rem 0.7rem 0.75rem;
  border-radius: 999px;
  background: rgba(31, 86, 123, 0.96);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(31, 86, 123, 0.26);
}

.intro-video-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  background: #ffffff;
  color: #1f567b;
}

.intro-video-play svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.intro-video-label {
  font-family: "Montserrat", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.intro-heading-panel,
.intro-copy-panel {
  transition:
    transform 0.65s ease,
    opacity 0.65s ease;
}

.intro-heading-panel {
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
  padding: 0;
  color: var(--text);
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
}

.intro-content-column,
.intro-copy-column {
  will-change: transform, opacity;
}

.js .intro-grid[data-intro-reveal] .intro-content-column {
  transform: translateX(100%);
  opacity: 0;
}

.js .intro-grid[data-intro-reveal] .intro-copy-column {
  transform: translateX(-100%);
  opacity: 0;
}

.js .intro-grid[data-intro-reveal].show-elements .intro-content-column,
.js .intro-grid[data-intro-reveal].show-elements .intro-copy-column {
  transform: translateX(0);
  opacity: 1;
}

.who-title {
  display: grid;
  gap: 1rem;
  font-size: clamp(4.8rem, 10vw, 8.6rem);
  line-height: 0.88;
  letter-spacing: -0.05em;
  text-transform: none;
  color: var(--accent);
}

.who-title-line,
.who-title-lockup {
  display: block;
}

.who-title-lockup {
  display: flex;
  align-items: flex-end;
  gap: clamp(1rem, 2vw, 2rem);
}

.who-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(4.5rem, 10vw, 7rem);
  color: var(--accent);
  transform: translateY(-0.18rem);
}

.who-arrow svg {
  width: 100%;
  height: auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.intro-copy-panel {
  display: grid;
  justify-items: flex-start;
  gap: 1.6rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.intro-copy-panel p {
  margin: 0;
  color: #111111;
  font-size: clamp(1.18rem, 1.95vw, 1.55rem);
  line-height: 1.78;
}

.intro-about-link {
  min-width: 11.5rem;
}

.mission-band {
  position: relative;
  color: var(--text);
  overflow: hidden;
  padding-bottom: clamp(4.75rem, 7vw, 6.5rem);
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border-top: 1px solid rgba(87, 118, 160, 0.42);
  border-bottom: 0;
}

.mission-band::before {
  content: "";
  position: absolute;
  left: max(1rem, calc((100vw - 1180px) / 2));
  right: 0;
  bottom: 0;
  height: clamp(8rem, 13vw, 11rem);
  background: #edf4ff;
  clip-path: polygon(0 0, 100% 0, 72% 100%, 16% 70%);
  opacity: 0.9;
  pointer-events: none;
}

.mission-band::after {
  content: none;
}

.mission-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.mission-grid::before {
  content: none;
}

.mission-grid > .mission-card:first-child {
  grid-column: auto;
}

.mission-grid > .mission-card:last-child {
  grid-column: auto;
}

.mission-card {
  position: relative;
  z-index: 1;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.mission-card h2 {
  margin: 0 0 2rem;
  font-family: "PermianSansTypeface", sans-serif;
  font-size: clamp(3rem, 5vw, 4.2rem);
  font-weight: 400;
  line-height: 1;
  color: #000000;
}

.mission-card h2 strong {
  font-weight: 700;
}

.mission-card-body {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.6rem;
  align-items: center;
}

.mission-card-body img {
  width: clamp(5.5rem, 8vw, 8rem);
  animation: none;
}

.mission-card-body p {
  margin: 0;
  max-width: 28rem;
  font-size: clamp(1.15rem, 1.9vw, 1.5rem);
  line-height: 1.82;
  color: #111111;
}

.services {
  position: relative;
  color: var(--text);
  padding-top: 0;
  background: #ffffff;
  overflow: hidden;
}

.services-layout {
  position: relative;
  display: grid;
  grid-template-columns: var(--section-rail-width) 1fr;
  gap: 0;
}

.services-layout::before {
  content: "";
  position: absolute;
  top: 0;
  left: var(--section-rail-width);
  right: 0;
  height: 5.5rem;
  background: #edf4ff;
  clip-path: polygon(0 0, 100% 0, 100% 72%, 46% 100%);
  opacity: 0.95;
  pointer-events: none;
}

.section-rail {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  align-self: stretch;
  justify-content: flex-end;
  min-height: 100%;
  padding: 3.4rem 1.35rem 3.8rem;
  border-radius: 0 0 5rem 0;
  background: var(--accent);
}

.section-rail .section-kicker {
  width: auto;
  color: rgba(255, 255, 255, 0.78);
  font-family: "Montserrat", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-align: center;
  color: rgba(255, 255, 255, 0.72);
}

.section-rail h2 {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  margin-top: auto;
  font-family: "Radley", serif;
  font-size: clamp(4rem, 6vw, 6.8rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 0.85;
  color: #ffffff;
}

.services-grid {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  padding-left: var(--section-rail-gutter);
}

.service-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(18rem, 31vw, 27rem);
  align-items: stretch;
  gap: clamp(1.75rem, 3vw, 4.5rem);
  min-height: 0;
  padding: clamp(2.4rem, 3vw, 3.4rem) 0;
  border: 0;
  border-bottom: 1px solid rgba(7, 19, 27, 0.14);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  perspective: 1400px;
}

.service-card:hover,
.service-card:focus-within {
  transform: none;
  box-shadow: none;
}

.service-card:last-child {
  border-bottom: 0;
}

.service-copy {
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  gap: 1.15rem;
  max-width: none;
  min-height: 100%;
  padding-right: 0;
  align-content: start;
  align-self: stretch;
}

.service-card:nth-child(even) {
  grid-template-columns: clamp(18rem, 31vw, 27rem) minmax(0, 1fr);
}

.service-card:nth-child(even) .service-copy {
  grid-column: 2;
  grid-row: 1;
}

.service-card:nth-child(even) .service-media {
  grid-column: 1;
  grid-row: 1;
  margin-left: 0;
  margin-right: auto;
}

.service-copy h3 {
  margin: 0;
  font-family: "Radley", serif;
  font-weight: 400;
  font-size: clamp(2.3rem, 3.2vw, 3.25rem);
  line-height: 1.04;
  color: #000000;
}

.service-copy p:last-of-type {
  margin: 0;
  max-width: 53rem;
  color: #111111;
  font-size: clamp(1.05rem, 1.35vw, 1.24rem);
  line-height: 1.62;
}

.service-index {
  display: none;
}

.service-action {
  display: inline-flex;
  align-self: flex-start;
  margin-top: auto;
  border-color: rgba(2, 77, 113, 0.18);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: none;
}

.service-media {
  position: relative;
  right: auto;
  bottom: auto;
  width: 100%;
  max-width: 27rem;
  margin-left: auto;
  aspect-ratio: 1.56 / 1;
  overflow: hidden;
  border-radius: 2rem;
  background: linear-gradient(180deg, #eef4fb 0%, #d6e3ef 100%);
  box-shadow: 0 22px 46px rgba(8, 27, 41, 0.16);
  isolation: isolate;
  transition:
    transform 0.68s cubic-bezier(0.2, 0.82, 0.2, 1),
    box-shadow 0.45s ease,
    border-radius 0.45s ease;
}

.service-media::before,
.service-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.service-media::before {
  inset: -18% auto -18% -58%;
  width: 52%;
  background: linear-gradient(112deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.15) 42%, rgba(255, 255, 255, 0.72) 50%, rgba(255, 255, 255, 0) 58%);
  opacity: 0;
  transform: translateX(-140%) skewX(-16deg);
  transition: transform 0.82s cubic-bezier(0.18, 0.82, 0.24, 1), opacity 0.35s ease;
  z-index: 2;
}

.service-media::after {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0) 36%, rgba(2, 77, 113, 0.08) 100%);
  z-index: 1;
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: transform 0.82s cubic-bezier(0.18, 0.82, 0.24, 1), filter 0.45s ease;
}

.service-card:nth-child(3) .service-media {
  border-radius: 2rem;
  aspect-ratio: 1.56 / 1;
}

.service-card:nth-child(even) .service-media {
  border-radius: 2.4rem 1.45rem 2rem 1.3rem;
}

.service-card:nth-child(odd) .service-media {
  border-radius: 1.45rem 2.35rem 1.5rem 2rem;
}

.service-card:hover .service-media,
.service-card:focus-within .service-media {
  box-shadow: 0 32px 58px rgba(8, 27, 41, 0.22);
}

.service-card:nth-child(odd):hover .service-media,
.service-card:nth-child(odd):focus-within .service-media {
  transform: translate3d(0, -0.35rem, 0) rotate(-1.25deg) scale(1.012);
}

.service-card:nth-child(even):hover .service-media,
.service-card:nth-child(even):focus-within .service-media {
  transform: translate3d(0, -0.35rem, 0) rotate(1.25deg) scale(1.012);
}

.service-card:hover .service-media img,
.service-card:focus-within .service-media img {
  transform: scale(1.085);
  filter: saturate(1.06) contrast(1.03);
}

.service-card:hover .service-media::before,
.service-card:focus-within .service-media::before {
  opacity: 0.95;
  transform: translateX(255%) skewX(-16deg);
}

html.js .service-card[data-animate] {
  opacity: 1;
  transform: none;
}

html.js .service-card[data-animate] .service-copy {
  opacity: 0;
  transform: translate3d(-2.3rem, 0.9rem, 0);
  transition:
    opacity 0.75s ease,
    transform 0.9s cubic-bezier(0.18, 0.82, 0.24, 1);
}

html.js .service-card[data-animate]:nth-child(even) .service-copy {
  transform: translate3d(2.3rem, 0.9rem, 0);
}

html.js .service-card[data-animate] .service-action {
  opacity: 0;
  transform: translate3d(-1.4rem, 0, 0);
  transition:
    opacity 0.55s ease 0.12s,
    transform 0.7s cubic-bezier(0.18, 0.82, 0.24, 1) 0.12s,
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease;
}

html.js .service-card[data-animate]:nth-child(even) .service-action {
  transform: translate3d(1.4rem, 0, 0);
}

html.js .service-card[data-animate].is-visible .service-copy,
html.js .service-card[data-animate].is-visible .service-action {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

html.js .service-card[data-animate] .service-media {
  opacity: 0;
  clip-path: inset(0 0 100% 0 round 2rem);
  transition:
    opacity 0.55s ease,
    transform 0.95s cubic-bezier(0.18, 0.82, 0.24, 1),
    clip-path 0.95s cubic-bezier(0.18, 0.82, 0.24, 1),
    box-shadow 0.45s ease,
    border-radius 0.45s ease;
}

html.js .service-card[data-animate]:nth-child(odd) .service-media {
  transform: translate3d(2.8rem, 1rem, 0) rotate(-4deg) scale(0.92);
}

html.js .service-card[data-animate]:nth-child(even) .service-media {
  transform: translate3d(-2.8rem, 1rem, 0) rotate(4deg) scale(0.92);
}

html.js .service-card[data-animate].is-visible .service-media {
  opacity: 1;
  clip-path: inset(0 0 0 0 round 2rem);
  transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
}

.marquee-band {
  overflow: hidden;
  padding: 1rem 0;
  background: #fff;
  border-block: 1px solid rgba(120, 135, 163, 0.28);
}

.marquee-track,
.logo-track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.marquee-track {
  gap: 3rem;
  animation: marquee 26s linear infinite;
}

.marquee-item {
  position: relative;
  padding-left: 2rem;
  font-size: clamp(2.2rem, 6vw, 4.8rem);
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(2, 77, 113, 0.9);
}

.marquee-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 999px;
  background: #d7d7d7;
  transform: translateY(-42%);
}

.media-band {
  padding-top: clamp(4rem, 6vw, 5rem);
  color: var(--text);
}

.media-shell {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.media-copy {
  max-width: 36rem;
}

.media-copy h2,
.team-copy h2,
.contact-copy h2 {
  font-size: clamp(2.5rem, 4.8vw, 4.5rem);
}

.media-copy p:last-child,
.team-copy p:last-child {
  margin: 1rem 0 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.logo-marquee {
  margin-top: 2rem;
  overflow: hidden;
}

.logo-track {
  gap: 1rem;
  animation: marquee 34s linear infinite;
}

.logo-marquee:hover .logo-track,
.marquee-band:hover .marquee-track {
  animation-play-state: paused;
}

.logo-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 10.5rem;
  min-height: 4.75rem;
  padding: 1rem 1.35rem;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #d9d9d9;
}

.logo-chip img {
  max-width: 8rem;
  max-height: 2.2rem;
  object-fit: contain;
  filter: none;
}

.team-shell {
  display: grid;
  gap: 2rem;
}

.team {
  color: var(--text);
  background: #ffffff;
}

.team-deck {
  display: flex;
  gap: 1rem;
  min-height: 31rem;
}

.team-card {
  position: relative;
  flex: 1 1 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: rgba(12, 29, 41, 0.9);
  transition: flex 0.55s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.35s ease;
}

.team-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 19, 27, 0.06), rgba(7, 19, 27, 0.92)),
    linear-gradient(135deg, rgba(10, 99, 133, 0.22), transparent 42%);
}

.team-card:hover,
.team-card:focus-within {
  flex: 1.55 1 0;
  transform: translateY(-0.3rem);
}

.team-card-media {
  position: absolute;
  inset: 0;
}

.team-card-media img,
.team-card-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card-media img {
  transition: opacity 0.45s ease, transform 0.7s ease;
}

.team-card-media video {
  opacity: 0;
  transition: opacity 0.45s ease;
}

.team-card:hover .team-card-media img,
.team-card:focus-within .team-card-media img {
  opacity: 0;
  transform: scale(1.06);
}

.team-card:hover .team-card-media video,
.team-card:focus-within .team-card-media video {
  opacity: 1;
}

.team-card-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  gap: 0.85rem;
  padding: 1.4rem;
}

.team-card-content h3 {
  margin: 0;
  font-family: "Radley", serif;
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 1.05;
}

.team-home {
  background: #ffffff;
}

.team-home .team-shell {
  gap: 3rem;
}

.team-home .team-copy {
  max-width: 76rem;
  margin: 0 auto;
  text-align: center;
}

.team-home .team-copy .section-kicker {
  display: none;
}

.team-home .team-copy h2 {
  font-size: clamp(4.25rem, 8vw, 6.2rem);
  color: #000000;
}

.team-home .team-copy p:last-child {
  max-width: 72rem;
  margin: 1.25rem auto 0;
  color: #111111;
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  line-height: 1.55;
}

.team-home .team-deck {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(1.1rem, 2vw, 2rem);
  min-height: 0;
  align-items: start;
}

.team-home .team-card {
  --team-video-position: 50% 16%;
  min-height: 0;
  flex: none;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
}

.team-home .team-card::after {
  display: none;
}

.team-home .team-card:hover,
.team-home .team-card:focus-within,
.team-home .team-card:focus-visible {
  transform: translateY(-0.4rem);
}

.team-home .team-card:nth-child(1) {
  --team-video-position: 50% 16%;
}

.team-home .team-card:nth-child(2) {
  --team-video-position: 52% 14%;
}

.team-home .team-card:nth-child(3) {
  --team-video-position: 50% 15%;
}

.team-home .team-card:nth-child(4) {
  --team-video-position: 52% 13%;
}

.team-home .team-card:nth-child(5) {
  --team-video-position: 50% 14%;
}

.team-home .team-card-media {
  position: relative;
  inset: auto;
  aspect-ratio: 251 / 370;
  overflow: hidden;
  border-radius: 1.3rem;
  background: linear-gradient(180deg, #f6f7f8 0%, #e9edf1 100%);
  isolation: isolate;
  transform: translateZ(0);
}

.team-home .team-card-media img,
.team-home .team-card-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  border-radius: inherit;
  backface-visibility: hidden;
  clip-path: inset(0 round 1.3rem);
  transform-origin: center top;
}

.team-home .team-card-media img {
  transition: opacity 0.38s ease, transform 0.72s cubic-bezier(0.18, 0.82, 0.24, 1);
}

.team-home .team-card-media video {
  inset: auto 0;
  top: 50%;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-position: center center;
  border-radius: 1rem;
  box-shadow: 0 16px 28px rgba(10, 31, 45, 0.12);
  transform: translateY(-50%) scale(0.94);
  transition:
    opacity 0.38s ease,
    transform 0.6s cubic-bezier(0.18, 0.82, 0.24, 1);
}

.team-home .team-card:hover .team-card-media img,
.team-home .team-card:focus-within .team-card-media img {
  opacity: 0;
  transform: scale(1.035);
}

.team-home .team-card:hover .team-card-media video,
.team-home .team-card:focus-within .team-card-media video {
  opacity: 1;
  transform: translateY(-50%) scale(0.985);
}

.team-home .team-card-content {
  display: grid;
  gap: 0.45rem;
  height: auto;
  padding: 1.2rem 0.35rem 0;
  text-align: center;
  justify-items: center;
}

.team-home .team-card-content h3 {
  font-size: clamp(2rem, 2vw, 2.4rem);
  line-height: 1.05;
  color: #000000;
}

.team-home .team-card .team-role {
  margin: 0;
  color: #111111;
  font-family: "PermianSansTypeface", sans-serif;
  font-size: clamp(1.05rem, 1.18vw, 1.3rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: none;
}

.contact {
  position: relative;
  color: var(--text);
  background: url("assets/image-16.webp") center center / cover no-repeat;
}

.contact::before {
  background: linear-gradient(180deg, rgba(5, 26, 38, 0.28), rgba(5, 26, 38, 0.68));
}

.contact-grid {
  position: relative;
  z-index: 1;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.15fr) minmax(18rem, 0.78fr);
  gap: 1.35rem;
  align-items: start;
}

.contact-copy,
.contact-form,
.contact-sidebar {
  min-width: 0;
}

.contact-grid-no-sidebar {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.card {
  padding: 1.6rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(6, 31, 42, 0.08);
  color: var(--text);
  box-shadow: var(--shadow-soft);
}

.contact-copy .section-kicker,
.contact-form .section-kicker,
.profile-modal-head .section-kicker {
  color: rgba(15, 35, 48, 0.5);
}

.contact .card {
  background: rgba(139, 139, 139, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  box-shadow: none;
  backdrop-filter: blur(15px);
}

.contact-copy .section-kicker,
.contact-form .section-kicker,
.contact .sidebar-title {
  color: rgba(255, 255, 255, 0.72);
}

.contact-copy p:last-of-type {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
}

.contact:not(.contact-home) .contact-copy {
  max-width: 34rem;
}

.contact:not(.contact-home) .contact-copy h2 {
  max-width: 14ch;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.02;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-inline,
.footer-links,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.contact-inline {
  margin-top: 1.4rem;
  align-items: flex-start;
}

.contact-inline a,
.footer-links a {
  color: var(--text);
  font-weight: 600;
}

.contact-address-text {
  display: inline-block;
  line-height: 1.55;
}

.contact-inline a {
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact .contact-inline a,
.contact .footer-links a,
.contact .social-link,
.contact .site-footer a {
  color: #ffffff;
}

.contact-sidebar .footer-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

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

.form-field {
  display: grid;
  gap: 0.5rem;
}

.form-field span {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(15, 35, 48, 0.58);
}

.contact .form-field span {
  color: rgba(255, 255, 255, 0.72);
}

.form-field-wide {
  grid-column: 1 / -1;
}

.input {
  width: 100%;
  border: 1px solid rgba(10, 38, 52, 0.12);
  border-radius: 999px;
  background: #fff;
  padding: 0.95rem 1rem;
  color: var(--text);
  outline: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.textarea {
  min-height: 10rem;
  border-radius: 1.3rem;
  resize: vertical;
}

.input:focus {
  border-color: rgba(10, 99, 133, 0.46);
  box-shadow: 0 0 0 4px rgba(10, 99, 133, 0.12);
}

.contact .input {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.56);
  color: #ffffff;
}

.contact .input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.contact .input:focus {
  border-color: rgba(255, 255, 255, 0.88);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.14);
}

.form-status {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-soft);
}

.recaptcha-slot {
  min-height: 78px;
}

.form-status.is-error {
  color: #8e2f2f;
}

.form-status.is-success {
  color: #0a6385;
}

.contact .form-status {
  color: rgba(255, 255, 255, 0.82);
}

.contact .form-status.is-success {
  color: #ffffff;
}

.contact-home {
  min-height: clamp(42rem, 72vw, 56rem);
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(4, 18, 29, 0.78) 0%, rgba(4, 18, 29, 0.62) 38%, rgba(4, 18, 29, 0.52) 100%),
    url("assets/image-16.webp") center center / cover no-repeat;
}

.contact-home::before {
  background:
    linear-gradient(180deg, rgba(5, 26, 38, 0.36), rgba(5, 26, 38, 0.62)),
    linear-gradient(90deg, rgba(2, 22, 33, 0.28), transparent 52%);
}

.contact-home .contact-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4.6rem);
  align-items: start;
}

.contact-home .contact-sidebar {
  display: none;
}

.contact-home .card {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.contact-home .contact-copy {
  max-width: 40rem;
  padding-top: 1.2rem;
}

.contact-home .contact-copy h2 {
  font-size: clamp(4rem, 8vw, 6.2rem);
  color: #ffffff;
}

.contact-home-quote {
  max-width: 34rem;
  margin-top: 3rem;
  padding-left: 1.8rem;
  border-left: 5px solid rgba(255, 255, 255, 0.96);
}

.contact-home-quote p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.1rem, 2vw, 1.32rem);
  line-height: 1.78;
}

.contact-home .contact-inline,
.contact-home .section-kicker {
  display: none;
}

.contact-home .contact-form {
  max-width: 100%;
}

.contact-home .form-grid {
  gap: 1.55rem;
}

.contact-home .form-field span {
  display: none;
}

.contact-home .input {
  min-height: 5.2rem;
  padding: 1.35rem 1.6rem;
  border: 2px solid rgba(255, 255, 255, 0.88);
  border-radius: 1.35rem;
  background: transparent;
  color: #ffffff;
}

.contact-home .textarea {
  min-height: 10.2rem;
  padding-top: 1.25rem;
  border-radius: 1.5rem;
}

.contact-home .input::placeholder {
  color: rgba(255, 255, 255, 0.82);
}

.contact-home .input:focus {
  background: rgba(255, 255, 255, 0.04);
  border-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.12);
}

.contact-home .form-status {
  color: rgba(255, 255, 255, 0.88);
}

.contact-home .button-primary {
  color: #ffffff;
  background: #2b5f84;
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: none;
}

.contact-home .button-primary:hover,
.contact-home .button-primary:focus-visible {
  color: #ffffff;
  background: #234f6f;
  border-color: #ffffff;
}

.contact-home-submit {
  position: relative;
  justify-content: flex-start;
  min-width: min(22rem, 100%);
  margin-top: 1.6rem;
  padding: 1.35rem 5.7rem 1.35rem 2.4rem;
  font-size: 1.05rem;
}

.contact-home-submit-label {
  display: inline-flex;
  align-items: center;
}

.contact-home-submit-icon {
  position: absolute;
  top: 50%;
  right: -0.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 999px;
  background: #ffffff;
  color: #2b5f84;
  transform: translateY(-50%);
}

.contact-home-submit-icon svg {
  width: 1.7rem;
  height: 1.7rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.sidebar-block + .sidebar-block {
  margin-top: 1.5rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(10, 99, 133, 0.08);
  border: 1px solid rgba(10, 99, 133, 0.12);
  font-weight: 700;
}

.contact .social-link {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
}

.site-footer {
  padding: 0 0 1.9rem;
  background:
    linear-gradient(180deg, rgba(5, 26, 38, 0.88), rgba(5, 26, 38, 0.94)),
    url("assets/image-16.webp") center center / cover no-repeat;
  color: #ffffff;
}

.site-footer a {
  color: #ffffff;
}

.site-footer-panel {
  padding: clamp(2rem, 4vw, 3.4rem);
  border-radius: clamp(2rem, 3.4vw, 3rem);
  background: rgba(139, 139, 139, 0.86);
  backdrop-filter: blur(16px);
}

.site-footer-grid {
  display: flex;
  gap: clamp(1.6rem, 3vw, 2.8rem);
  align-items: stretch;
}

.site-footer-brand,
.site-footer-links,
.site-footer-contact {
  min-width: 0;
}

.site-footer-brand {
  flex: 1.05;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  text-align: center;
}

.site-footer-logo {
  display: block;
  width: clamp(10.5rem, 14vw, 13rem);
  aspect-ratio: 1 / 1;
  padding: clamp(1rem, 1.6vw, 1.3rem);
  border-radius: 999px;
  background: rgba(222, 232, 242, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 14px 28px rgba(2, 35, 52, 0.14);
  object-fit: contain;
}

.site-footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
}

.site-footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 0.7rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.site-footer-social svg,
.site-footer-contact-icon svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: currentColor;
}

.site-footer-links,
.site-footer-contact {
  flex: 1;
  padding-left: clamp(1.5rem, 2.3vw, 3rem);
  border-left: 2px solid rgba(255, 255, 255, 0.72);
}

.site-footer-links {
  flex: 0.9;
}

.site-footer-contact {
  flex: 1.12;
  padding-left: clamp(1rem, 1.6vw, 2rem);
}

.site-footer-links h2,
.site-footer-contact h2 {
  margin: 0;
  font-family: "Radley", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400;
  color: #ffffff;
}

.site-footer-link-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  margin-top: 2rem;
}

.site-footer-link-grid a,
.site-footer-link-grid span {
  color: rgba(255, 255, 255, 0.96);
  font-size: 1.1rem;
  line-height: 1.5;
}

.site-footer-contact-list {
  display: grid;
  gap: 1.8rem;
  margin-top: 2rem;
}

.site-footer-contact-item {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0.7rem;
  align-items: start;
  min-width: 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: 1.08rem;
  line-height: 1.45;
}

.site-footer-contact-item > span:last-child {
  display: block;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.site-footer-contact-item .contact-address-text {
  overflow-wrap: normal;
  word-break: normal;
}

.site-footer-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-top: 0.08rem;
  color: rgba(255, 255, 255, 0.92);
}

.site-footer-meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: clamp(2rem, 4vw, 4rem);
  font-size: 0.92rem;
}

.site-footer-meta p {
  margin: 0;
}

.developer-credit {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  max-width: 28rem;
}

.developer-credit-link {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  color: inherit;
  text-decoration: none;
}

.developer-credit-link:hover,
.developer-credit-link:focus-visible {
  opacity: 0.92;
}

.developer-credit-link p {
  margin: 0;
}

.developer-credit-logo {
  width: min(10.5rem, 32vw);
  height: auto;
  flex: 0 0 auto;
  object-fit: contain;
}

.profile-modal {
  width: min(66rem, calc(100% - 1.5rem));
  max-width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
}

.profile-modal::backdrop {
  background: rgba(4, 10, 14, 0.78);
  backdrop-filter: blur(12px);
}

.profile-modal-card {
  border-radius: calc(var(--radius-xl) + 0.25rem);
  overflow: hidden;
  border-color: rgba(6, 31, 42, 0.08);
  background: #f5f1e9;
}

.profile-modal-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 1.4rem 0;
}

.profile-modal-head > div {
  min-width: 0;
}

.modal-close {
  flex: 0 0 auto;
  padding: 0.62rem 0.88rem;
  border-radius: 999px;
  background: rgba(10, 99, 133, 0.08);
  border: 1px solid rgba(10, 99, 133, 0.12);
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.profile-modal-grid {
  display: grid;
  grid-template-columns: minmax(18rem, 0.85fr) minmax(0, 1.15fr);
}

.profile-modal-media {
  padding: 1.4rem;
  background: #081822;
}

.profile-modal-media video {
  width: 100%;
  min-height: 22rem;
  border-radius: 1.3rem;
  background: #02090d;
}

.profile-modal-copy {
  padding: 1.4rem 1.5rem 1.7rem;
}

.profile-modal-copy p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.78;
}

.profile-modal-copy p + p {
  margin-top: 1rem;
}

.intro-video-modal {
  width: min(72rem, calc(100% - 1.5rem));
}

.intro-video-modal-card {
  background: #081822;
  color: #ffffff;
}

.intro-video-modal .profile-modal-head {
  padding: 1.4rem 1.4rem 0.95rem;
}

.intro-video-modal .section-kicker {
  color: rgba(255, 255, 255, 0.68);
}

.intro-video-modal .profile-modal-head h2 {
  color: #ffffff;
}

.intro-video-modal .modal-close {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.intro-video-modal-media {
  padding-top: 0;
  background: transparent;
}

.intro-video-modal-media video {
  min-height: 0;
  aspect-ratio: 16 / 9;
  border-radius: 1.4rem;
}

html.js [data-animate] {
  opacity: 0;
  transform: translateY(1.4rem);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

html.js [data-animate].is-visible {
  opacity: 1;
  transform: none;
}

html.js.dialog-open,
html.js.dialog-open body {
  overflow: hidden;
}

[data-delay="1"] {
  transition-delay: 0.12s;
}

[data-delay="2"] {
  transition-delay: 0.22s;
}

.site-nav a:focus-visible,
.button:focus-visible,
.social-link:focus-visible,
.modal-close:focus-visible,
.menu-toggle:focus-visible {
  outline: 2px solid rgba(143, 169, 182, 0.72);
  outline-offset: 3px;
}

@keyframes drift {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-0.35rem);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

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

@media (max-width: 1100px) {
  .hero-layout,
  .contact-grid,
  .about-overview-grid,
  .about-value,
  .about-value-reverse,
  .detail-story-grid,
  .detail-showcase,
  .contact-page-intro-grid {
    grid-template-columns: 1fr;
  }

  .header-cta {
    display: inline-flex;
  }

  .contact-sidebar {
    display: none;
  }

  .intro-grid {
    gap: clamp(1.8rem, 3vw, 3rem);
  }

  .intro-stage {
    flex-direction: column;
    gap: clamp(1.8rem, 3vw, 2.4rem);
    align-items: stretch;
  }

  .intro-grid.show-elements .intro-stage {
    gap: clamp(1.8rem, 3vw, 2.4rem);
  }

  .intro-media-column,
  .intro-heading-panel {
    width: 100%;
    max-width: 100%;
    flex-basis: auto;
  }

  .intro-logo-panel {
    min-height: 15rem;
    max-width: 38rem;
    margin: 0 auto;
  }

  .intro-heading-panel {
    text-align: center;
    overflow: visible;
  }

  .who-title-lockup {
    justify-content: center;
  }

  .js .intro-grid[data-intro-reveal] .intro-content-column,
  .js .intro-grid[data-intro-reveal] .intro-copy-column {
    transform: none;
    opacity: 1;
  }

  .mission-grid {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 2.4rem;
    padding-bottom: 0;
  }

  .mission-grid::before {
    left: 0;
    bottom: 0;
    width: 8.75rem;
    height: 8.75rem;
  }

  .mission-grid > .mission-card:first-child,
  .mission-grid > .mission-card:last-child {
    grid-column: auto;
  }

  .mission-band::before {
    left: 14%;
    right: 0;
    bottom: -9%;
    height: 24%;
  }

  .mission-card-body p {
    max-width: none;
  }

  .services-layout {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .services {
    padding-top: clamp(2rem, 4vw, 3rem);
  }

  .hero-layout {
    gap: 1.75rem;
    min-height: clamp(24rem, calc(100vh - 15rem), 34rem);
  }

  .hero-intro {
    width: min(100%, 34rem);
    max-width: 34rem;
    margin-bottom: 0.35rem;
    padding-top: 1.05rem;
    padding-left: 0;
    border-top: 3px solid rgba(255, 255, 255, 0.92);
    border-left: 0;
  }

  .hero-summary {
    max-width: none;
  }

  .services-layout::before {
    top: -0.8rem;
    left: 0;
    height: 4.8rem;
    clip-path: polygon(0 0, 100% 0, 100% 74%, 34% 100%);
  }

  .section-rail {
    min-height: 0;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.6rem 1.8rem;
    border-radius: 0 0 3.8rem 0;
  }

  .section-rail h2 {
    margin-top: 0;
    writing-mode: initial;
    transform: none;
  }

  .service-card {
    grid-template-columns: minmax(0, 1fr) minmax(14rem, 19rem);
    min-height: 0;
    padding: 2rem 0;
  }

  .service-card:nth-child(even) {
    grid-template-columns: minmax(14rem, 19rem) minmax(0, 1fr);
  }

  .service-copy {
    max-width: none;
    min-height: min(18rem, 100%);
  }

  .services-grid {
    padding-left: 0;
  }

  .team-deck {
    flex-direction: column;
  }

  .team-card,
  .team-card:hover,
  .team-card:focus-within {
    min-height: 22rem;
    flex: 1 1 auto;
  }

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

  .team-home .team-card,
  .team-home .team-card:hover,
  .team-home .team-card:focus-within {
    min-height: 0;
    flex: none;
  }

  .about-value-reverse .about-value-media,
  .about-value-reverse .about-value-copy {
    order: initial;
  }

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

  .contact-home {
    min-height: auto;
    align-items: stretch;
  }

  .contact-home .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }

  .contact-home .contact-copy,
  .contact-home .contact-form {
    max-width: none;
  }

  .contact-home .contact-copy {
    padding-top: 0;
  }

  .contact-home-quote {
    max-width: none;
  }

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

  .contact-home .input,
  .contact-home .textarea {
    width: 100%;
    min-width: 0;
  }

  .contact-home-submit {
    width: 100%;
    min-width: 0;
    padding-left: 1.35rem;
    padding-right: 4.9rem;
  }

  .contact-home-submit-label {
    max-width: 100%;
    white-space: normal;
    line-height: 1.2;
  }

  .contact-home-submit-icon {
    right: 0.2rem;
    width: 3.55rem;
    height: 3.55rem;
  }

  .detail-hero {
    padding: 4rem 0 3.2rem;
  }

  .detail-hero-inner,
  .detail-section-head {
    max-width: none;
  }

  .profile-modal-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 840px) {
  .utility-bar {
    justify-content: flex-start;
  }

  .nav-bar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.8rem;
  }

  .nav-bar,
  .site-header.is-scrolled .nav-bar,
  .site-header.nav-open .nav-bar {
    gap: 0.8rem;
    padding-top: 0.48rem;
  }

  .brand {
    min-width: 0;
  }

  .menu-toggle {
    display: inline-flex;
    grid-column: 2;
    justify-self: end;
    margin-left: 0;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    margin: 0.15rem 0 0;
    padding: 1rem 1.15rem 1.05rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
    border: 1px solid rgba(88, 113, 136, 0.24);
    border-radius: 1.5rem;
    border-bottom-width: 1px;
    background: rgba(244, 249, 255, 0.96);
    box-shadow: 0 18px 40px rgba(8, 27, 41, 0.12);
  }

  .site-header.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    width: 100%;
  }

  .site-nav .site-nav-cta {
    display: inline-flex;
    width: 100%;
    margin-top: 0.35rem;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    background: linear-gradient(135deg, #035f8d, #024d71);
    border-color: rgba(2, 77, 113, 0.2);
    box-shadow: none;
  }

  .site-nav .site-nav-cta:hover,
  .site-nav .site-nav-cta:focus-visible {
    color: #ffffff;
  }

  .site-header.nav-open .menu-toggle span:nth-child(1) {
    transform: translateY(0.44rem) rotate(45deg);
  }

  .site-header.nav-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.nav-open .menu-toggle span:nth-child(3) {
    transform: translateY(-0.44rem) rotate(-45deg);
  }

  .hero-welcome {
    font-size: clamp(1.35rem, 5vw, 2rem);
  }

  .hero-title-top {
    font-size: clamp(2.8rem, 10vw, 4.8rem);
  }

  .hero-title-bottom span {
    font-size: clamp(1.95rem, 6.6vw, 3.2rem);
  }

  .hero-title-mark {
    width: clamp(6rem, 20vw, 8.7rem);
  }

  .brand img {
    width: min(11.4rem, 42vw);
  }

  .brand img {
    width: min(10.9rem, 40vw);
  }

  .site-header.is-scrolled .brand img,
  .site-header.nav-open .brand img {
    width: min(9.4rem, 35vw);
  }

  .header-cta,
  .site-header.nav-open .header-cta {
    display: none;
  }

  .contact-home-submit {
    min-width: 18rem;
  }

  .hero-intro {
    gap: 1rem;
    padding-top: 0.95rem;
  }

  .hero-summary {
    font-size: 1rem;
    line-height: 1.58;
  }

  .hero .hero-cta {
    min-width: 17rem;
    padding: 1rem 4.35rem 1rem 1.35rem;
  }

  .hero-cta-icon {
    right: -0.4rem;
    width: 3.45rem;
    height: 3.45rem;
  }

  .hero-cta-icon svg {
    width: 1.4rem;
    height: 1.4rem;
  }

  .detail-hero h1 {
    font-size: clamp(2.7rem, 11vw, 4.3rem);
  }

  .detail-hero-summary {
    font-size: 1rem;
    line-height: 1.68;
  }

  .detail-card,
  .contact-info-card {
    padding: 1.2rem;
  }

  .detail-card h3,
  .contact-info-card h3,
  .detail-showcase-copy h2 {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .who-title,
  .media-copy h2,
  .team-copy h2,
  .contact-copy h2,
  .section-rail h2 {
    font-size: clamp(2.3rem, 9vw, 3.8rem);
  }

  .intro-copy-panel p {
    font-size: 1.06rem;
  }

  .intro-about-link {
    min-width: 10.5rem;
  }

  .team-home .team-deck {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem 0.95rem;
  }

  .team-home .team-copy p:last-child {
    font-size: 1.12rem;
  }

  .team-home .team-card {
    transform: none;
  }

  .team-home .team-card:hover,
  .team-home .team-card:focus-within,
  .team-home .team-card:focus-visible {
    transform: none;
  }

  .team-home .team-card-media {
    aspect-ratio: 0.82;
    border-radius: 1.1rem;
  }

  .team-home .team-card-content {
    gap: 0.35rem;
    padding: 0.95rem 0.2rem 0;
  }

  .team-home .team-card-content h3 {
    font-size: clamp(1.4rem, 4vw, 1.9rem);
  }

  .team-home .team-card .team-role {
    font-size: 0.98rem;
    line-height: 1.35;
  }

  .team-home .team-card-media video {
    display: none;
  }

  .team-home .team-card:hover .team-card-media img,
  .team-home .team-card:focus-within .team-card-media img,
  .team-home .team-card:hover .team-card-media video,
  .team-home .team-card:focus-within .team-card-media video {
    opacity: 1;
    transform: none;
  }

  .service-card {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    min-height: 0;
    padding: 1.5rem 0;
  }

  .service-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .service-card:nth-child(even) .service-copy,
  .service-card:nth-child(even) .service-media {
    grid-column: auto;
    grid-row: auto;
  }

  .service-copy {
    max-width: 100%;
    min-height: 0;
    grid-template-rows: auto auto auto auto;
    padding-right: 0;
    gap: 0.9rem;
  }

  .service-copy h3 {
    font-size: clamp(1.95rem, 7vw, 2.45rem);
  }

  .service-copy p:last-of-type {
    font-size: 1rem;
  }

  .services-layout::before {
    top: -0.4rem;
    height: 3.5rem;
  }

  .service-media {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 20rem);
    margin: 0 0 0 auto;
    max-width: 100%;
  }

  .service-card:nth-child(3) .service-media {
    margin-right: 0;
  }

  .mission-card h2 {
    margin-bottom: 1.35rem;
    font-size: clamp(2.5rem, 10vw, 3.5rem);
  }

  .mission-card-body {
    gap: 1.2rem;
  }

  .mission-card-body img {
    width: 4.8rem;
  }

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

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

  .site-footer-grid,
  .site-footer-meta {
    flex-direction: column;
  }

  .site-footer-meta {
    align-items: center;
    text-align: center;
  }

  .site-footer-meta > p {
    width: 100%;
    text-align: center;
  }

  .developer-credit {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .developer-credit-link {
    justify-content: center;
  }

  .site-footer-links,
  .site-footer-contact {
    width: 100%;
    padding-left: 0;
    padding-top: 1.4rem;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.52);
  }
}

@media (max-width: 560px) {
  .section {
    padding: 4rem 0;
  }

  .utility-pill,
  .site-nav a,
  .button {
    font-size: 0.88rem;
  }

  .nav-bar {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.65rem;
  }

  .brand img {
    width: min(10.2rem, 41vw);
  }

  .brand img {
    width: min(9.7rem, 39vw);
  }

  .site-header.is-scrolled .brand img,
  .site-header.nav-open .brand img {
    width: min(8.7rem, 34vw);
  }

  .menu-toggle {
    padding: 0.48rem;
  }

  .hero-panel,
  .card,
  .mission-card,
  .media-shell,
  .team-card,
  .intro-logo-panel,
  .intro-heading-panel,
  .intro-copy-panel,
  .profile-modal-card {
    border-radius: 1.35rem;
  }

  .logo-chip {
    min-width: 8.8rem;
    min-height: 4.2rem;
  }

  .logo-chip img {
    max-width: 7rem;
  }

  .page-banner h1 {
    font-size: clamp(2.2rem, 11vw, 3rem);
  }

  .hero {
    min-height: calc(100vh - 5.5rem);
    padding-bottom: 1.25rem;
  }

  .hero-layout {
    min-height: clamp(20rem, calc(100vh - 10rem), 26rem);
    gap: 0.9rem;
  }

  .hero-welcome {
    margin-bottom: 0.35rem;
    font-size: 1rem;
  }

  .hero-title-top {
    font-size: clamp(2.55rem, 14vw, 4.2rem);
  }

  .hero-title-bottom {
    gap: 0.55rem;
  }

  .hero-title-bottom span {
    font-size: clamp(1.7rem, 9vw, 2.7rem);
  }

  .hero-title-mark {
    width: 5.3rem;
    transform: none;
  }

  .hero-intro {
    gap: 0.8rem;
    margin-bottom: 0;
    width: 100%;
    padding-top: 0.8rem;
  }

  .hero-summary {
    font-size: 0.92rem;
    line-height: 1.58;
  }

  .hero .hero-cta {
    width: calc(100% - 0.2rem);
    min-width: 0;
    padding: 0.88rem 3.7rem 0.88rem 1rem;
    font-size: 0.9rem;
  }

  .hero-cta-icon {
    width: 3rem;
    height: 3rem;
    right: -0.25rem;
  }

  .detail-hero {
    padding: 6rem 0 2.5rem;
  }

  .page-banner {
    padding: 6rem 0 2.15rem;
  }

  .detail-hero h1 {
    font-size: clamp(2.25rem, 12vw, 3.3rem);
  }

  .detail-section-head h2,
  .contact-page-intro-copy h2 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .detail-story-actions .button,
  .detail-showcase-copy .button {
    width: 100%;
    justify-content: center;
  }

  .team-home .team-copy h2 {
    font-size: clamp(3.1rem, 16vw, 4.25rem);
  }

  .team-home .team-deck {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem 0.85rem;
    align-items: start;
  }

  .team-home .team-card-media {
    aspect-ratio: 0.8;
    border-radius: 1rem;
  }

  .team-home .team-card-content {
    gap: 0.28rem;
    padding-top: 0.82rem;
  }

  .team-home .team-card-content h3 {
    font-size: clamp(1.16rem, 4.9vw, 1.55rem);
    line-height: 1.08;
  }

  .team-home .team-card .team-role {
    font-size: 0.88rem;
    line-height: 1.28;
  }

  .mission-band::before {
    left: 0;
    right: 0;
    bottom: -10%;
    height: 18%;
  }

  .mission-grid::before {
    width: 7.5rem;
    height: 7.5rem;
  }

  .mission-grid {
    padding-bottom: 0;
  }

  .mission-card-body {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .mission-card-body img {
    width: 4rem;
  }

  .mission-card-body p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .section-rail {
    padding: 1.25rem 1.2rem 1.35rem;
    border-radius: 0 0 2.6rem 0;
  }

  .services-layout::before {
    top: 0;
    height: 2.75rem;
  }

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

  .service-media,
  .service-card:nth-child(3) .service-media {
    border-radius: 1.35rem;
  }

  .about-overview-title {
    font-size: clamp(2.4rem, 13vw, 4rem);
    letter-spacing: -0.02em;
  }

  .who-title {
    gap: 0.65rem;
    font-size: clamp(3rem, 16vw, 4.8rem);
  }

  .who-title-lockup {
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
  }

  .who-arrow {
    width: 3.6rem;
    transform: none;
  }

  .intro-copy-panel p {
    font-size: 1rem;
    line-height: 1.72;
  }

  .intro-about-link {
    width: 100%;
    justify-content: center;
  }

  .about-overview-title img {
    width: 1.8rem;
  }

  .about-value {
    padding: 1rem;
  }

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

  .contact-home-quote {
    margin-top: 2rem;
    padding-left: 1.2rem;
  }

  .contact-home .input {
    min-height: 4.6rem;
    padding-inline: 1.2rem;
  }

  .contact-home-submit {
    width: 100%;
    min-width: 0;
    padding-left: 1.15rem;
    padding-right: 4.5rem;
    font-size: 0.96rem;
  }

  .contact-home-submit-label {
    text-align: left;
  }

  .contact-home-submit-icon {
    right: 0.15rem;
    width: 3.2rem;
    height: 3.2rem;
  }

  .contact-home-submit-icon svg {
    width: 1.35rem;
    height: 1.35rem;
  }

  .site-footer-panel {
    padding: 1.35rem;
    border-radius: 1.5rem;
  }

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

  .developer-credit {
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
  }

  .developer-credit-link {
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
  }

  .developer-credit-logo {
    width: min(9.5rem, 46vw);
  }

  .profile-modal-head,
  .profile-modal-copy,
  .profile-modal-media {
    padding-inline: 1rem;
  }

  .profile-modal-head {
    gap: 0.65rem;
    padding-top: 1rem;
  }

  .modal-close {
    padding: 0.48rem 0.7rem;
    font-size: 0.76rem;
  }
}

@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;
    scroll-behavior: auto !important;
  }
}
