:root {
  --ink: #0b1b29;
  --navy: #102c46;
  --navy-2: #173c5c;
  --blue: #316b8b;
  --amber: #c7823f;
  --amber-dark: #a96125;
  --amber-soft: #f4e5d6;
  --paper: #f5f7f9;
  --white: #ffffff;
  --muted: #5b6874;
  --line: #dce2e7;
  --shadow: 0 18px 50px rgba(11, 27, 41, 0.12);
  --radius: 18px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-150%);
}

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

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.topbar {
  color: #dbe8f1;
  background: var(--navy);
  font-size: 0.875rem;
}

.topbar__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topbar__links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.topbar a {
  text-decoration: none;
}

.topbar a:hover {
  color: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.site-header__inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

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

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  width: 20px;
  height: 2px;
  display: block;
  background: currentColor;
  content: "";
}

.nav-toggle span {
  margin-block: 5px;
}

.site-nav,
.site-nav__links {
  display: flex;
  align-items: center;
}

.site-nav__links {
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 15px;
  border-radius: 10px;
  color: #263746;
  font-size: 0.95rem;
  font-weight: 650;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--navy);
  background: #edf2f6;
}

.site-nav .nav-cta {
  margin-left: 8px;
  padding-inline: 20px;
  color: var(--white);
  background: var(--amber-dark);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta[aria-current="page"] {
  color: var(--white);
  background: #8e4f20;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 84px;
  background: linear-gradient(115deg, #f7f9fb 0%, #ffffff 55%, #edf3f6 100%);
}

.hero::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: var(--amber);
  content: "";
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  align-items: center;
  gap: 58px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-size: clamp(2.75rem, 5vw, 5.1rem);
  line-height: 1.02;
  letter-spacing: -0.052em;
}

.hero h1 {
  max-width: 760px;
}

.hero__copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 26px 0 0;
  color: #4e5d69;
  font-size: 1.16rem;
  line-height: 1.7;
}

.hero__actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-weight: 750;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button--primary {
  color: var(--white);
  background: var(--amber-dark);
}

.button--primary:hover {
  background: #8e4f20;
}

.button--secondary {
  color: var(--navy);
  background: var(--white);
  border-color: #bcc8d1;
}

.button--secondary:hover {
  border-color: var(--blue);
}

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

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 30px 0 0;
  padding: 0;
  color: #455462;
  font-size: 0.9rem;
  font-weight: 700;
  list-style: none;
}

.hero__meta li::before {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--amber);
  content: "";
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 6px 28px 6px 28px;
  box-shadow: var(--shadow);
}

.hero-visual__label {
  position: absolute;
  right: -18px;
  bottom: -24px;
  width: min(310px, 76%);
  padding: 20px 22px;
  color: var(--white);
  background: var(--navy);
  border-left: 5px solid var(--amber);
  box-shadow: 0 12px 30px rgba(11, 27, 41, 0.22);
}

.hero-visual__label strong,
.hero-visual__label span {
  display: block;
}

.hero-visual__label strong {
  font-size: 1.05rem;
}

.hero-visual__label span {
  margin-top: 3px;
  color: #cbd9e3;
  font-size: 0.85rem;
}

.section {
  padding: 92px 0;
}

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

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

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading h2,
.split-copy h2,
.contact-intro h2 {
  margin: 0;
  font-size: clamp(2rem, 3.4vw, 3.25rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.section-heading p,
.split-copy > p,
.contact-intro > p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section--navy .section-heading p,
.section--navy .section-kicker {
  color: #c7d6e1;
}

.intro-grid,
.split-grid,
.contact-grid {
  display: grid;
  gap: 64px;
}

.intro-grid {
  grid-template-columns: 0.82fr 1.18fr;
  align-items: start;
}

.intro-grid__lead {
  margin: 0;
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.025em;
}

.intro-grid__copy p:first-child {
  margin-top: 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: var(--blue);
  font-weight: 750;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 280px;
  padding: 28px;
  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-card:hover {
  transform: translateY(-4px);
  border-color: #b9c7d1;
  box-shadow: 0 16px 40px rgba(11, 27, 41, 0.08);
}

.service-card__number {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--navy);
  border-radius: 11px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.service-card h3 {
  margin: 24px 0 9px;
  font-size: 1.25rem;
  line-height: 1.25;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  counter-reset: process;
}

.process-step {
  position: relative;
  min-height: 240px;
  padding: 28px 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  counter-increment: process;
}

.process-step:last-child {
  border-right: 0;
}

.process-step::before {
  display: block;
  margin-bottom: 42px;
  color: var(--amber);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  content: "0" counter(process);
}

.process-step h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.process-step p {
  margin: 0;
  color: #c7d6e1;
  font-size: 0.95rem;
}

.split-grid {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.split-media {
  position: relative;
}

.split-media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 24px 7px 24px 7px;
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 22px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  font-weight: 650;
}

.check-list li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: var(--amber);
  transform: translateY(-50%) rotate(45deg);
  content: "";
}

.cta-band {
  padding: 54px 0;
  color: var(--white);
  background: var(--blue);
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.cta-band h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.15;
}

.cta-band p {
  max-width: 680px;
  margin: 10px 0 0;
  color: #dfeaf0;
}

.page-hero {
  padding: 72px 0;
  color: var(--white);
  background: var(--navy);
  border-bottom: 7px solid var(--amber);
}

.page-hero h1 {
  max-width: 900px;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 22px 0 0;
  color: #c8d7e1;
  font-size: 1.1rem;
}

.page-hero .eyebrow {
  color: #edc299;
}

.service-detail {
  display: grid;
  grid-template-columns: 0.35fr 0.65fr;
  gap: 46px;
  padding: 42px 0;
  border-bottom: 1px solid var(--line);
}

.service-detail:first-child {
  padding-top: 0;
}

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

.service-detail__label {
  color: var(--blue);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.service-detail h2 {
  margin: 0 0 14px;
  font-size: clamp(1.7rem, 2.6vw, 2.35rem);
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.service-detail p {
  margin: 0;
  color: var(--muted);
}

.bullet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 26px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.bullet-grid li {
  padding: 9px 0 9px 18px;
  border-top: 1px solid var(--line);
  position: relative;
}

.bullet-grid li::before {
  position: absolute;
  top: 1.35em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  content: "";
}

.contact-grid {
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
}

.contact-card {
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-card__top {
  padding: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-card h2 {
  margin: 0;
  font-size: 1.8rem;
}

.contact-card__top p {
  margin: 12px 0 0;
  color: #c8d7e1;
}

.contact-list {
  margin: 0;
  padding: 12px 34px 28px;
}

.contact-list div {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-list div:last-child {
  border-bottom: 0;
}

.contact-list dt {
  color: #9fb4c3;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-list dd {
  margin: 5px 0 0;
  font-size: 1.02rem;
  font-weight: 650;
}

.contact-list a {
  text-decoration-color: rgba(255, 255, 255, 0.5);
  text-underline-offset: 4px;
}

.contact-form-wrap {
  padding: 36px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-form-wrap h2 {
  margin: 0 0 8px;
  font-size: 2rem;
}

.contact-form-wrap > p {
  margin: 0 0 28px;
  color: var(--muted);
}

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

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

.field label {
  display: block;
  margin-bottom: 7px;
  color: #273845;
  font-size: 0.92rem;
  font-weight: 750;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 11px 13px;
  color: var(--ink);
  background: #fbfcfd;
  border: 1px solid #bcc8d1;
  border-radius: 9px;
  outline: 0;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(49, 107, 139, 0.16);
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #44535f;
  font-size: 0.9rem;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--blue);
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
}

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

.form-status {
  margin: 0 0 24px;
  padding: 14px 16px;
  border-radius: 9px;
  outline: 0;
}

.form-status--success {
  color: #155d3b;
  background: #e5f6ed;
  border: 1px solid #a6d9bd;
}

.form-status--error {
  color: #8b2f2f;
  background: #fff0f0;
  border: 1px solid #efbcbc;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.legal-page {
  max-width: 850px;
}

.legal-page h2 {
  margin: 42px 0 10px;
  font-size: 1.5rem;
}

.legal-page p,
.legal-page li {
  color: #485865;
}

.site-footer {
  color: #cbd7e0;
  background: #081521;
}

.site-footer__main {
  display: grid;
  grid-template-columns: 1.1fr 0.6fr 1fr;
  gap: 64px;
  padding: 62px 0 46px;
}

.footer-brand img {
  width: 250px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 440px;
  margin: 20px 0 0;
  color: #aabac6;
}

.footer-column h2 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 0.82rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column li + li {
  margin-top: 10px;
}

.footer-column a {
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #91a4b2;
  font-size: 0.85rem;
}

.site-footer__legal {
  display: flex;
  gap: 18px;
}

:focus-visible {
  outline: 3px solid rgba(199, 130, 63, 0.58);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .hero__grid,
  .intro-grid,
  .split-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    gap: 52px;
  }

  .hero__copy {
    max-width: 760px;
  }

  .hero-visual {
    max-width: 780px;
  }

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

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

  .process-step:nth-child(2) {
    border-right: 0;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .topbar__inner {
    justify-content: center;
    text-align: center;
  }

  .topbar__inner > span,
  .topbar__links a:first-child {
    display: none;
  }

  .site-header__inner {
    min-height: 74px;
  }

  .brand img {
    width: 218px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    padding: 12px 14px 18px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 35px rgba(11, 27, 41, 0.12);
  }

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

  .site-nav__links {
    display: grid;
    gap: 4px;
  }

  .site-nav a {
    width: 100%;
    min-height: 48px;
  }

  .site-nav .nav-cta {
    margin: 6px 0 0;
  }

  .hero,
  .section {
    padding: 64px 0;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.5rem, 12vw, 3.8rem);
  }

  .hero__grid {
    gap: 42px;
  }

  .hero-visual__label {
    right: 12px;
    bottom: -20px;
  }

  .services-grid,
  .process-grid,
  .form-grid,
  .bullet-grid,
  .check-list,
  .site-footer__main {
    grid-template-columns: 1fr;
  }

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

  .process-step,
  .process-step:nth-child(2) {
    min-height: 0;
    border-right: 0;
  }

  .process-step + .process-step {
    border-top-color: rgba(255, 255, 255, 0.14);
  }

  .process-step::before {
    margin-bottom: 24px;
  }

  .cta-band__inner,
  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-detail {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contact-form-wrap {
    padding: 24px;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .field--full {
    grid-column: auto;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
