@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("assets/fonts/manrope-latin-400-800.woff2") format("woff2");
}

:root {
  --font-sans: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --ink: #123a63;
  --ink-2: #174f80;
  --panel: #edf4f7;
  --paper: #f7fbf6;
  --white: #ffffff;
  --muted: #5f7080;
  --line: #d4e3e8;
  --cyan: #2c6fa3;
  --cyan-dark: #123a63;
  --green: #5faf31;
  --lime: #78c843;
  --hazard: #78c843;
  --danger: #e1513d;
  --shadow: 0 28px 80px rgba(18, 58, 99, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--ink);
  scroll-behavior: auto;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

h1,
h2,
h3,
h4 {
  letter-spacing: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: 68px;
  line-height: 0.98;
  font-weight: 800;
}

h2 {
  margin-bottom: 18px;
  font-size: 52px;
  line-height: 1;
  font-weight: 800;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.18;
}

h4 {
  margin-bottom: 8px;
  font-size: 17px;
}

.shell {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 18px;
  top: 12px;
  z-index: 30;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  border-radius: 6px;
  transform: translateY(-140%);
}

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

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--cyan-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 8px;
  height: 8px;
  background: var(--hazard);
  border-radius: 2px;
  content: "";
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 7px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(9, 24, 32, 0.16);
}

.button--primary {
  color: var(--ink);
  background: var(--hazard);
  border-color: var(--hazard);
}

.button--dark {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.button--outline {
  color: var(--ink);
  background: transparent;
  border-color: rgba(16, 24, 32, 0.28);
}

.button--light {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.26);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  color: var(--ink);
  background: rgba(248, 250, 249, 0.92);
  border-bottom: 1px solid rgba(16, 24, 32, 0.1);
  backdrop-filter: blur(18px);
}

.utility-bar {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
}

.utility-bar__inner {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.utility-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.nav-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  min-height: 82px;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 204px;
  height: auto;
}

.brand__tag {
  display: none;
  padding: 4px 8px;
  color: var(--cyan-dark);
  background: rgba(16, 167, 213, 0.1);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.site-nav a {
  padding: 10px 12px;
  color: var(--ink-2);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--ink);
  background: rgba(16, 167, 213, 0.1);
}

.nav-actions {
  display: flex;
  justify-content: flex-end;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  justify-self: end;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 7px;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(18, 58, 99, 0.96) 0%, rgba(18, 58, 99, 0.78) 44%, rgba(18, 58, 99, 0.28) 100%),
    radial-gradient(circle at 14% 18%, rgba(95, 175, 49, 0.32), transparent 34%);
  content: "";
  z-index: 1;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  gap: 48px;
  min-height: 610px;
  align-items: center;
  padding: 56px 0 92px;
}

.hero__copy {
  max-width: 760px;
}

.hero .eyebrow {
  color: var(--cyan);
}

.hero__copy p:not(.eyebrow) {
  max-width: 700px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

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

.hero-console {
  display: grid;
  gap: 14px;
}

.console-panel,
.metric-panel,
.route-panel {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

.console-panel {
  padding: 24px;
}

.console-panel__top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 700;
}

.status-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--lime);
}

.status-dot::before {
  width: 9px;
  height: 9px;
  background: var(--lime);
  border-radius: 99px;
  box-shadow: 0 0 18px rgba(168, 216, 67, 0.9);
  content: "";
}

.console-panel strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-size: 34px;
  line-height: 1;
}

.console-panel p,
.route-panel p,
.metric-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

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

.metric-panel div {
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.metric-panel div:last-child {
  border-right: 0;
}

.metric-panel strong {
  display: block;
  color: var(--white);
  font-size: 28px;
  line-height: 1;
}

.route-panel {
  padding: 20px;
}

.section {
  padding: 104px 0;
}

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

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

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

.section--dark p,
.section--dark li {
  color: rgba(255, 255, 255, 0.76);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.55fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 42px;
}

.section-head p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.section--dark .section-head p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.proof-strip {
  position: relative;
  z-index: 3;
  margin-top: -66px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.proof-grid div {
  min-height: 132px;
  padding: 26px;
  border-right: 1px solid var(--line);
}

.proof-grid div:last-child {
  border-right: 0;
}

.proof-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.1;
}

.proof-grid span {
  color: var(--muted);
}

.service-matrix {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-tile {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  overflow: hidden;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-tile:hover,
.service-tile:focus-within {
  transform: translateY(-5px);
  border-color: rgba(16, 167, 213, 0.36);
  box-shadow: var(--shadow);
}

.service-tile img {
  width: 100%;
  height: 185px;
  object-fit: cover;
}

.service-tile__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

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

.service-tile a {
  margin-top: auto;
  color: var(--cyan-dark);
  font-weight: 800;
}

.insight-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 56px;
  align-items: center;
}

.media-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.media-frame::after {
  position: absolute;
  inset: auto 20px 20px 20px;
  height: 6px;
  background: linear-gradient(90deg, var(--hazard), var(--cyan), var(--lime));
  border-radius: 99px;
  content: "";
}

.step-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.step-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.section--dark .step-item {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.step-item span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: var(--hazard);
  border-radius: 6px;
  font-weight: 800;
}

.step-item p {
  margin: 0;
  color: var(--muted);
}

.swiper.project-slider {
  overflow: hidden;
}

.swiper-slide.project-slide {
  height: auto;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
}

.project-slide img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.project-slide__body {
  padding: 24px;
}

.project-slide__body p {
  min-height: 78px;
  color: var(--muted);
}

.section--dark .project-slide {
  background: rgba(255, 255, 255, 0.07);
}

.section--dark .project-slide__body p {
  color: rgba(255, 255, 255, 0.68);
}

.slider-controls {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 22px;
}

.slider-button {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  cursor: pointer;
  font-weight: 800;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.logo-grid img {
  width: 100%;
  height: 110px;
  object-fit: contain;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.cta-band {
  color: var(--white);
  background: linear-gradient(135deg, var(--ink), #0c5c73);
}

.cta-band__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 54px 0;
}

.cta-band p {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.page-hero {
  position: relative;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
}

.page-hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(18, 58, 99, 0.94), rgba(18, 58, 99, 0.62));
  content: "";
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.45fr);
  gap: 44px;
  align-items: end;
  min-height: 430px;
  padding: 74px 0;
}

.page-hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
}

.page-facts {
  display: grid;
  gap: 12px;
}

.page-facts div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
}

.page-facts strong {
  display: block;
  color: var(--hazard);
}

.detail-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: start;
}

.detail-panel {
  position: sticky;
  top: 136px;
  padding: 26px;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.detail-panel p {
  color: rgba(255, 255, 255, 0.72);
}

.detail-panel a {
  display: block;
  margin-top: 12px;
}

.content-block {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.content-block p,
.content-block li {
  color: var(--muted);
}

.content-block ul,
.tick-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.content-block li,
.tick-list li {
  position: relative;
  padding-left: 28px;
}

.content-block li::before,
.tick-list li::before {
  position: absolute;
  left: 0;
  top: 7px;
  width: 12px;
  height: 12px;
  background: var(--cyan);
  border-radius: 3px;
  content: "";
}

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

.directory-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  min-height: 220px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.directory-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.directory-item div {
  padding: 24px;
}

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

.directory-item a {
  color: var(--cyan-dark);
  font-weight: 800;
}

.contact-card {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-methods {
  display: grid;
  gap: 12px;
}

.contact-methods a {
  display: grid;
  gap: 3px;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 4px solid var(--cyan);
  border-radius: var(--radius);
}

.contact-methods strong {
  color: var(--ink);
}

.contact-methods span {
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 7px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: 3px solid rgba(16, 167, 213, 0.18);
  border-color: var(--cyan);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.form-note.is-success {
  color: var(--green);
  font-weight: 700;
}

.form-note.is-error {
  color: var(--danger);
  font-weight: 700;
}

.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: #071116;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.7fr 0.9fr;
  gap: 48px;
  padding: 64px 0;
}

.footer-logo {
  width: 220px;
  margin-bottom: 20px;
  padding: 8px;
  background: var(--white);
  border-radius: 7px;
}

.site-footer h2 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 18px;
}

.site-footer a {
  display: block;
  margin-bottom: 9px;
}

.ashcourt-lockup {
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.ashcourt-lockup p {
  margin-bottom: 16px;
  color: var(--white);
  font-weight: 800;
}

.ashcourt-lockup img {
  width: 220px;
}

.footer-bottom {
  padding: 18px 0;
  color: rgba(255, 255, 255, 0.56);
  background: #03090c;
  font-size: 14px;
}

@media (max-width: 1060px) {
  .nav-wrap {
    grid-template-columns: auto 1fr auto;
  }

  .menu-toggle {
    display: block;
  }

  .nav-actions {
    display: none;
  }

  .site-nav {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 118px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

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

  .hero__grid,
  .page-hero__inner,
  .section-head,
  .insight-grid,
  .detail-grid,
  .contact-grid,
  .cta-band__grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    min-height: auto;
    padding: 76px 0 118px;
  }

  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 40px;
  }

  .hero-console {
    max-width: 620px;
  }

  .proof-grid,
  .service-matrix {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-grid div {
    border-bottom: 1px solid var(--line);
  }

  .proof-grid div:nth-child(2n) {
    border-right: 0;
  }

  .detail-panel {
    position: static;
  }

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

@media (max-width: 680px) {
  .shell {
    width: min(100% - 28px, 1200px);
  }

  .utility-bar {
    display: none;
  }

  .nav-wrap {
    min-height: 74px;
    grid-template-columns: 1fr auto;
  }

  .brand img {
    width: 176px;
  }

  .site-nav {
    top: 86px;
    left: 14px;
    right: 14px;
  }

  .hero__grid {
    gap: 32px;
    padding: 56px 0 84px;
  }

  .hero-console {
    display: none;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  .hero__copy p:not(.eyebrow) {
    font-size: 17px;
  }

  .hero__actions,
  .hero__actions .button,
  .cta-band .button,
  .contact-form .button {
    width: 100%;
  }

  .proof-strip {
    margin-top: 0;
  }

  .proof-grid,
  .service-matrix,
  .metric-panel,
  .logo-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid div,
  .metric-panel div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metric-panel div {
    border-bottom-color: rgba(255, 255, 255, 0.12);
  }

  .section {
    padding: 72px 0;
  }

  .media-frame img {
    height: 320px;
  }

  .step-item,
  .directory-item {
    grid-template-columns: 1fr;
  }

  .directory-item img {
    height: 220px;
  }

  .project-slide img {
    height: 235px;
  }

  .page-hero__inner {
    min-height: 380px;
    padding: 56px 0;
  }
}
