:root {
  --brand-primary: #0119ff;
  --nav-button: #1b99e8;
  --nav-button-strong: #157fc2;
  --hero-image-main: url("/assets/images/generated/backgrounds/home-hero-main.jpeg");
  --hero-image-inner: url("/assets/images/generated/backgrounds/inner-hero-default.jpeg");
  --brand-primary-strong: #0012b6;
  --brand-primary-soft: rgba(1, 25, 255, 0.1);
  --brand-dark: #0d0e1d;
  --brand-dark-2: #171b36;
  --brand-grey: #e7e7e8;
  --brand-grey-soft: #f5f6fb;
  --brand-white: #ffffff;
  --brand-border: rgba(13, 14, 29, 0.12);
  --brand-border-soft: rgba(13, 14, 29, 0.08);
  --brand-shadow: 0px 16px 50px 0px rgba(13, 14, 29, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(180deg, #ffffff 0%, #f7f8ff 45%, #ffffff 100%);
  color: var(--brand-dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--brand-dark);
}

a {
  color: inherit;
}

a:hover,
a:focus-visible {
  color: var(--brand-primary);
}

.text-colorBlue {
  color: #1b99e8;
}

.bg-colorBlue {
  background-color: var(--brand-primary);
}

.bg-colorGreyTwo {
  background-color: var(--brand-grey-soft);
}

.border-colorBlue {
  border-color: var(--brand-primary);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 240;
  transform: translateY(-220%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 160;
  border-bottom: 1px solid rgba(27, 153, 232, 0.35);
  background: #000;
  backdrop-filter: none;
  transition: background-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  box-shadow: none;
}

.site-header__top {
  display: none;
  background: #000;
  border-bottom: 1px solid rgba(27, 153, 232, 0.25);
}

.site-header__top-inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.site-header__meta {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-size: 0.92rem;
  line-height: 1.1rem;
  color: #598392;
}

.site-header__meta span,
.site-header__meta a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.site-header__meta a {
  color: #598392;
}

.site-header__meta a:hover,
.site-header__meta a:focus-visible {
  color: #598392;
}

.site-header__inner {
  min-height: 86px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

.site-logo img {
  width: auto;
  height: 52px;
}

.site-header .site-logo img {
  width: 150px;
  height: auto;
}

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

.desktop-nav > ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.75rem;
  padding: 0;
  margin: 0 0 0 auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.desktop-nav > ul > li {
  position: relative;
}

.desktop-nav li + li,
.mobile-panel nav li + li {
  margin-top: 0;
}

.desktop-nav > ul > li + li {
  margin-top: 0;
}

.nav-link {
  position: relative;
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--nav-button);
}

.desktop-nav .nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  padding: 0.35rem 0.35rem;
  white-space: nowrap;
  transition: background-color 180ms ease;
}

.desktop-nav .has-submenu > .nav-link {
  padding-right: 0.95rem;
}

.desktop-nav .has-submenu > .nav-link::after {
  content: "\ea4e";
  font-family: remixicon;
  font-size: 0.85rem;
  position: absolute;
  right: -0.05rem;
  top: 50%;
  transform: translateY(-46%);
  opacity: 0.85;
}

.desktop-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  width: min(92vw, 18rem);
  display: grid;
  gap: 0.2rem;
  padding: 0.5rem;
  margin: 0;
  border-radius: 0.75rem;
  border: 1px solid rgba(27, 153, 232, 0.35);
  background: #0d0f22;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.42);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  z-index: 230;
}

.desktop-submenu li {
  margin: 0;
}

.desktop-submenu .nav-link {
  justify-content: flex-start;
  width: 100%;
  padding: 0.52rem 0.62rem;
  border-radius: 0.45rem;
  font-size: 0.9rem;
  font-weight: 500;
  white-space: normal;
  color: rgba(255, 255, 255, 0.9);
}

.desktop-submenu .nav-link:hover,
.desktop-submenu .nav-link:focus-visible {
  background: #1b99e8;
  color: #fff;
}

.desktop-nav .has-submenu:hover > .desktop-submenu,
.desktop-nav .has-submenu:focus-within > .desktop-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.desktop-nav > ul > li > .nav-link:hover,
.desktop-nav > ul > li > .nav-link:focus-visible {
  background: #2a2a2a;
  color: var(--nav-button);
}

.site-header__actions {
  gap: 0.7rem !important;
}

.site-header__actions .nav-link {
  font-size: 0.92rem;
  color: var(--nav-button);
}

.site-header__actions .btn {
  min-height: 3rem;
  padding: 0.72rem 1.35rem;
  border-radius: 0;
  box-shadow: none;
  border: 0;
}

.site-header__actions .btn-primary {
  background: var(--nav-button);
  border-color: var(--nav-button);
  color: #fff;
}

.site-header__actions .btn-primary:hover,
.site-header__actions .btn-primary:focus-visible {
  background: var(--nav-button-strong);
  border-color: var(--nav-button-strong);
  color: #fff;
}

.mobile-nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(27, 153, 232, 0.45);
  border-radius: 999px;
  background: transparent;
  color: var(--nav-button);
}

.site-header__inner > .mobile-nav-toggle {
  grid-column: 3;
  justify-self: end;
}

.mobile-nav-toggle:hover,
.mobile-nav-toggle:focus-visible {
  border-color: rgba(1, 25, 255, 0.35);
  color: var(--brand-primary);
}

.mobile-panel {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 200;
}

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

.mobile-panel__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 14, 29, 0.72);
}

.mobile-panel__dialog {
  position: relative;
  margin-left: auto;
  width: min(100%, 24rem);
  min-height: 100dvh;
  background: linear-gradient(180deg, #fff 0%, #f8f9ff 100%);
  padding: 1.5rem;
  overflow-y: auto;
  box-shadow: -16px 0 44px rgba(13, 14, 29, 0.2);
}

.mobile-panel nav > ul {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2rem;
  margin-bottom: 0;
  padding-left: 0;
}

.mobile-panel nav li {
  list-style: none;
}

.mobile-nav__item {
  margin: 0;
  border-bottom: 1px solid rgba(13, 14, 29, 0.12);
}

.mobile-nav__trigger {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.mobile-nav__trigger > .nav-link {
  flex: 1 1 auto;
}

.mobile-submenu-toggle {
  flex: 0 0 auto;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 999px;
  border: 1px solid rgba(27, 153, 232, 0.34);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1b99e8;
  background: #fff;
}

.mobile-submenu-toggle i {
  transition: transform 180ms ease;
}

.mobile-submenu-toggle[aria-expanded="true"] i {
  transform: rotate(45deg);
}

.mobile-submenu {
  margin: 0 0 0.8rem;
  padding: 0.2rem 0 0.2rem 0.9rem;
  border-left: 1px solid rgba(13, 14, 29, 0.14);
  display: grid;
  gap: 0.15rem;
}

.mobile-submenu[hidden] {
  display: none;
}

.mobile-panel nav .mobile-submenu .nav-link {
  padding: 0.4rem 0;
  font-size: 0.94rem;
  color: rgba(13, 14, 29, 0.78);
}

.mobile-panel nav .nav-link {
  padding: 0.72rem 0;
  font-size: 1rem;
}

.hero-home {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(108deg, rgba(13, 14, 29, 0.94) 0%, rgba(13, 14, 29, 0.88) 42%, rgba(13, 14, 29, 0.58) 72%, rgba(13, 14, 29, 0.55) 100%),
    var(--hero-image-main);
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.hero-home::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.42), transparent 86%);
  pointer-events: none;
}

.hero-home::after,
.page-hero::after {
  content: "";
  position: absolute;
  right: -11rem;
  top: -9rem;
  width: 34rem;
  height: 34rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(1, 25, 255, 0.28), transparent 70%);
  pointer-events: none;
}

.hero-home .container,
.page-hero .container {
  position: relative;
  z-index: 1;
}

.hero-home__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.hero-metrics {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}

.hero-metric {
  padding: 1rem 1.1rem;
  border-radius: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.hero-metric strong {
  display: block;
  margin-bottom: 0.25rem;
  color: #1b99e8;
  font-size: 1rem;
}

.hero-metric span {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
  line-height: 18px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 0.42rem 0.76rem;
  border-radius: 999px;
  color: #fff;
  border: 1px solid #1b99e8;
  background: #1b99e8;
}

.section-kicker--light {
  color: #fff;
  border-color: #1b99e8;
  background: #1b99e8;
}

.section-kicker--dark {
  color: #fff;
  border-color: #1b99e8;
  background: #1b99e8;
}

.btn {
  border-radius: 0.75rem;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.96rem;
  box-shadow: 0px 10px 26px rgba(13, 14, 29, 0.1);
}

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

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--brand-primary-strong);
  border-color: var(--brand-primary-strong);
  color: #fff;
}

.btn-white {
  background: #fff;
  border-color: #fff;
  color: var(--brand-dark);
}

.btn-white:hover,
.btn-white:focus-visible {
  background: transparent;
  border-color: #fff;
  color: #fff;
}

.btn-outline-white {
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover,
.btn-outline-white:focus-visible {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.hero-card,
.info-card,
.metric-card,
.project-card,
.location-card,
.contact-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--brand-border-soft);
  background: var(--brand-white);
  box-shadow: var(--brand-shadow);
  border-radius: 1rem;
}

.hero-card::before,
.info-card::before,
.project-card::before,
.location-card::before,
.contact-card::before,
.pillar-card::before,
.value-card::before,
.stat-card::before {
  content: "";
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  top: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-primary), rgba(1, 25, 255, 0));
}

.hero-card {
  padding: 1.75rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9ff 100%);
}

.hero-list,
.service-bullets,
.check-list,
.contact-list,
.timeline-list,
.project-meta {
  display: grid;
  gap: 0.9rem;
}

.hero-list li,
.service-bullets li,
.check-list li,
.contact-list li,
.project-meta li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.hero-list i,
.service-bullets i,
.check-list i,
.contact-list i,
.project-meta i,
.value-card i,
.stat-card i {
  color: var(--brand-primary);
}

.pillar-card,
.value-card,
.stat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 1rem;
  border: 1px solid var(--brand-border-soft);
  background: #fff;
  padding: 2rem;
  box-shadow: 0px 12px 34px rgba(13, 14, 29, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.pillar-card:hover,
.pillar-card:focus-within,
.value-card:hover,
.value-card:focus-within,
.project-card:hover,
.project-card:focus-within,
.location-card:hover,
.location-card:focus-within,
.info-card:hover,
.info-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0px 22px 54px rgba(13, 14, 29, 0.14);
  border-color: rgba(1, 25, 255, 0.24);
}

.pillar-card__icon,
.value-card__icon,
.stat-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 999px;
  background: rgba(1, 25, 255, 0.1);
  margin-bottom: 1.25rem;
  font-size: 1.45rem;
}

.pillars-grid,
.values-grid,
.stats-grid,
.projects-grid,
.locations-grid,
.faq-grid,
.footer-grid,
.info-grid,
.contact-grid,
.story-grid,
.client-grid {
  display: grid;
  gap: 1.5rem;
}

.contact-info-grid {
  grid-template-columns: minmax(0, 1fr);
}

.layout-home-core > article:first-child,
.layout-home-evidence > article:first-child,
.layout-proof-grid > article:first-child {
  position: relative;
}

.layout-home-core > article:first-child::after,
.layout-home-evidence > article:first-child::after,
.layout-proof-grid > article:first-child::after {
  content: "Featured";
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(13, 14, 29, 0.74);
  display: none;
}

.badge-list,
.client-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.badge,
.client-badge {
  display: inline-flex;
  align-items: center;
  min-height: 2.8rem;
  padding: 0.62rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 14px;
}

.client-badge {
  border-color: rgba(1, 25, 255, 0.18);
  background: rgba(1, 25, 255, 0.06);
  color: var(--brand-dark);
}

.page-hero {
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(108deg, rgba(13, 14, 29, 0.93) 0%, rgba(13, 14, 29, 0.85) 46%, rgba(13, 14, 29, 0.6) 74%, rgba(13, 14, 29, 0.58) 100%),
    var(--hero-image-inner);
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.breadcrumb {
  align-items: center;
  margin-bottom: 0;
  padding-left: 0;
  font-size: 14px;
}

.breadcrumb-item {
  font-size: inherit;
  line-height: 1.3;
}

.breadcrumb .breadcrumb-item + .breadcrumb-item {
  margin-top: 0;
}

.page-hero .breadcrumb {
  justify-content: flex-start;
}

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

.page-hero__grid {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.hero-side-image {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0px 20px 50px rgba(0, 0, 0, 0.2);
  aspect-ratio: 16 / 11;
}

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

.page-hero h1 {
  font-size: clamp(2rem, 4.4vw, 3.25rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.page-hero-copy > p {
  font-size: clamp(1.02rem, 2.2vw, 1.2rem);
}

.page-hero-media,
.hero-card-media {
  margin: 0;
}

.page-hero-media__caption {
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.85rem;
  margin: 0;
  padding: 0.52rem 0.72rem;
  border-radius: 0.68rem;
  font-size: 0.78rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.94);
  background: rgba(13, 14, 29, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(5px);
}

.hero-card-media {
  border-color: rgba(13, 14, 29, 0.08);
  box-shadow: 0px 14px 34px rgba(13, 14, 29, 0.12);
  aspect-ratio: 16 / 10;
}

.hero-card-media .page-hero-media__caption {
  background: rgba(13, 14, 29, 0.8);
}

@media (max-width: 640px) {
  .page-hero-media__caption {
    left: 0.65rem;
    right: 0.65rem;
    bottom: 0.65rem;
    font-size: 0.72rem;
    padding: 0.48rem 0.6rem;
  }

  .hero-home .btn,
  .page-hero .btn,
  .cta-band .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-card,
  .pillar-card,
  .project-card,
  .info-card,
  .contact-card,
  .location-card,
  .value-card,
  .metric-card {
    padding: 1.35rem;
  }
}

.info-card,
.contact-card,
.project-card,
.location-card {
  padding: 1.75rem;
}

.contact-map-card {
  padding: 1.1rem;
}

.contact-map-embed {
  overflow: hidden;
  border-radius: 0.8rem;
  border: 1px solid var(--brand-border-soft);
}

.contact-map-embed iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

.metric-card {
  padding: 1.45rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.metric-card h3,
.metric-card p {
  color: #fff;
}

.metric-card span {
  color: #8ea2ff;
}

.faq-item {
  border-radius: 0.95rem;
  border: 1px solid var(--brand-border-soft);
  background: #fff;
  overflow: hidden;
  box-shadow: 0px 10px 28px rgba(13, 14, 29, 0.06);
}

.faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
}

.faq-item button i {
  color: var(--brand-primary);
  font-size: 1.2rem;
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
}

.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: 1.1rem;
  background: linear-gradient(130deg, rgba(1, 25, 255, 0.24), rgba(13, 14, 29, 1) 58%);
  color: #fff;
  padding: 2rem;
  box-shadow: 0px 24px 70px rgba(13, 14, 29, 0.2);
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: inherit;
  pointer-events: none;
}

.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--brand-dark);
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.5;
}

.site-footer ul li,
.site-footer ol li {
  line-height: 1.4;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 95% 5%, rgba(1, 25, 255, 0.24), transparent 34%),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: auto, 72px 72px, 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.36), transparent 96%);
  pointer-events: none;
}

.site-footer > .container {
  position: relative;
  z-index: 1;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.88);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #fff;
}

.footer-title {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1.28rem;
}

.footer-grid > :first-child {
  padding-right: 0.25rem;
}

.footer-nav {
  display: grid;
  gap: 0.72rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-nav a {
  position: relative;
  display: inline-flex;
  width: fit-content;
  padding-bottom: 0.12rem;
}

.footer-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.95);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.footer-contact p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
}

.footer-contact p + p {
  margin-top: 0.72rem;
}

.footer-contact a {
  position: relative;
  display: inline-flex;
  width: fit-content;
  padding-bottom: 0.12rem;
}

.footer-contact a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.95);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.footer-legal {
  font-size: 12px;
}

.lead-text {
  font-size: 1.06rem;
  line-height: 1.62;
  color: rgba(13, 14, 29, 0.76);
}

.section-intro {
  position: relative;
  padding-bottom: 1.35rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--brand-border-soft);
}

.section-intro::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 5.25rem;
  height: 3px;
  border-radius: 999px;
  background: var(--brand-primary);
}

.text-on-dark,
.text-on-dark p,
.text-on-dark li {
  color: rgba(255, 255, 255, 0.84);
}

.section-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.table-lite {
  width: 100%;
  border-collapse: collapse;
}

.table-lite th,
.table-lite td {
  padding: 1rem;
  border-bottom: 1px solid var(--brand-border-soft);
  text-align: left;
  vertical-align: top;
}

.table-lite th {
  font-size: 1rem;
  font-weight: 700;
}

.contact-card input,
.contact-card select,
.contact-card textarea {
  border-color: rgba(13, 14, 29, 0.16);
  background: #fff;
}

.contact-card input:focus,
.contact-card select:focus,
.contact-card textarea:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(1, 25, 255, 0.14);
}

@media (min-width: 992px) {
  .site-header__top {
    display: block;
  }

  .desktop-nav {
    display: block;
  }

  .mobile-nav-toggle {
    display: none;
  }

  .hero-home__grid,
  .page-hero__grid,
  .story-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
  }

  .page-hero__grid {
    gap: 2rem;
  }

  .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 54rem;
  }

  .pillars-grid,
  .values-grid,
  .projects-grid,
  .locations-grid,
  .faq-grid,
  .client-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .info-grid,
  .footer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .contact-map-embed iframe {
    height: 520px;
  }

  .layout-home-core {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  }

  .layout-home-core > article:first-child::after,
  .layout-home-evidence > article:first-child::after,
  .layout-proof-grid > article:first-child::after {
    display: inline-flex;
  }

  .layout-home-core > article:first-child {
    grid-row: span 2;
  }

  .layout-home-evidence {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }

  .layout-home-evidence > article:first-child {
    grid-row: span 2;
  }

  .layout-service-core {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .layout-service-core > article:nth-child(1),
  .layout-service-core > article:nth-child(2) {
    grid-column: span 2;
  }

  .layout-service-core > article:nth-child(n + 3) {
    grid-column: span 1;
  }

  .layout-proof-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  }

  .layout-proof-grid > article:first-child {
    grid-row: span 2;
  }
}

/* Supplemental utilities used by the implementation */
.rounded-2xl {
  border-radius: 1rem;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.min-h-40 {
  min-height: 10rem;
}

.uppercase {
  text-transform: uppercase;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.3rem;
}

.text-\[1\.25rem\] {
  font-size: 1.2rem;
}

.text-\[1\.5rem\] {
  font-size: 1.4rem;
}

.text-\[1\.6rem\] {
  font-size: 1.5rem;
}

.text-\[1\.65rem\] {
  font-size: 1.56rem;
}

.text-\[1\.75rem\] {
  font-size: 1.62rem;
}

.text-\[1\.8rem\] {
  font-size: 1.68rem;
}

.text-\[1\.9rem\] {
  font-size: 1.76rem;
}

.tracking-\[0\.18em\] {
  letter-spacing: 0.18em;
}

:is(.pillar-card,.project-card,.info-card,.contact-card,.location-card,.hero-card,.metric-card,.value-card) .text-sm.font-semibold.uppercase.tracking-\[0\.18em\].text-colorBlue {
  font-size: 12px;
  letter-spacing: 0;
  line-height: 1.3;
}

.text-colorDark\/70 {
  color: rgba(13, 14, 29, 0.7);
}

.text-white\/80 {
  color: rgba(255, 255, 255, 0.8);
}

.hover\:text-colorDark:hover {
  color: var(--brand-dark);
}

.focus\:outline-none:focus {
  outline: 2px solid transparent;
}

.focus\:border-colorBlue:focus {
  border-color: var(--brand-primary);
}

.focus\:ring-2:focus {
  outline: 2px solid var(--tw-ring-color, rgba(1, 25, 255, 0.35));
}

.focus\:ring-colorBlue:focus {
  --tw-ring-color: rgba(1, 25, 255, 0.35);
}

.focus\:ring-white:focus {
  --tw-ring-color: rgba(255, 255, 255, 0.75);
}

.focus\:ring-offset-2:focus {
  outline-offset: 2px;
}

.focus\:ring-offset-colorDark:focus {
  background-clip: padding-box;
}

@media (min-width: 992px) {
  .lg\:items-center {
    align-items: center;
  }
}

/* Enforce heading scale to match fewandfar.co.uk rhythm */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500 !important;
  letter-spacing: -0.01em !important;
}

h1 {
  font-size: 24px !important;
  line-height: 1.1 !important;
  margin-bottom: 0.75em !important;
}

h2 {
  font-size: 20px !important;
  line-height: 1.1 !important;
  margin-bottom: 1em !important;
}

h3 {
  font-size: 16px !important;
  line-height: 1.455 !important;
  margin-bottom: 1em !important;
}

h4 {
  font-size: 14px !important;
  line-height: 1.45 !important;
  margin-bottom: 1em !important;
}

h5 {
  font-size: 12px !important;
  line-height: 1.45 !important;
  margin-bottom: 1em !important;
}

h6 {
  font-size: 10px !important;
  line-height: 1.4 !important;
  margin-bottom: 1em !important;
}

@media (min-width: 768px) {
  h1 { font-size: 32px !important; }
  h2 { font-size: 28px !important; }
  h3 { font-size: 20px !important; }
  h4 { font-size: 18px !important; }
  h5 { font-size: 16px !important; }
  h6 { font-size: 14px !important; }
}

@media (min-width: 1024px) {
  h1 { font-size: 40px !important; }
  h2 { font-size: 36px !important; }
  h3 { font-size: 26px !important; }
  h4 { font-size: 22px !important; }
  h5 { font-size: 18px !important; }
  h6 { font-size: 16px !important; }
}


/* Card content typography normalization */
:is(.pillar-card,.project-card,.info-card,.contact-card,.location-card,.hero-card,.metric-card,.value-card) :is(h2,h3,h4,h5,h6) {
  font-size: 22px !important;
  line-height: 1.2 !important;
  margin-bottom: 0.65em;
}

@media (min-width: 992px) {
  :is(.pillar-card,.project-card,.info-card,.contact-card,.location-card,.hero-card,.metric-card,.value-card) :is(h2,h3,h4,h5,h6) {
    font-size: 26px !important;
  }
}

:is(.pillar-card,.project-card,.info-card,.contact-card,.location-card,.hero-card,.metric-card,.value-card) p:not(.section-kicker),
:is(.pillar-card,.project-card,.info-card,.contact-card,.location-card,.hero-card,.metric-card,.value-card) li,
:is(.pillar-card,.project-card,.info-card,.contact-card,.location-card,.hero-card,.metric-card,.value-card) :is(.contact-list span,.hero-list span,.service-bullets span,.check-list span,.project-meta span,.faq-answer p) {
  font-size: 16px;
  line-height: 1.6;
}

:is(.pillar-card,.project-card,.info-card,.contact-card,.location-card,.hero-card,.metric-card,.value-card) a {
  font-size: 16px;
  line-height: 1.5;
}

:is(.pillar-card,.project-card,.info-card,.contact-card,.location-card,.hero-card,.metric-card,.value-card) .section-kicker,
.badge,
.client-badge {
  font-size: 14px !important;
  line-height: 1.3;
}
