@font-face {
  font-family: "Kanit";
  src: url("../fonts/kanit-300.woff2") format("woff2");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Kanit";
  src: url("../fonts/kanit-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Kanit";
  src: url("../fonts/kanit-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --navy: #001845;
  --navy-soft: #0b2755;
  --blue: #0466c8;
  --blue-dark: #023e7d;
  --slate: #5c677d;
  --text: #70798a;
  --line: #dce3eb;
  --cloud: #f6f8fb;
  --white: #ffffff;
  --page: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--text);
  font-family: "Kanit", Arial, Helvetica, sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: -80px;
  left: 16px;
  padding: 10px 16px;
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 8px 25px rgb(0 0 0 / 18%);
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: absolute;
  z-index: 50;
  inset: 0 0 auto;
  color: var(--white);
}

.header-inner {
  min-height: 104px;
  display: grid;
  grid-template-columns: minmax(190px, 0.9fr) auto minmax(190px, 0.9fr);
  align-items: center;
  gap: 30px;
}

.brand-logo {
  width: min(250px, 100%);
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.desktop-nav > a,
.services-menu > summary {
  position: relative;
  padding: 14px 0;
  color: rgb(255 255 255 / 82%);
  cursor: pointer;
  list-style: none;
  transition: color 160ms ease;
}

.services-menu > summary::-webkit-details-marker {
  display: none;
}

.services-menu > summary::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin: 0 0 3px 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
}

.desktop-nav > a::before,
.services-menu > summary::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.desktop-nav > a:hover,
.desktop-nav > a:focus-visible,
.desktop-nav > a[aria-current="page"],
.services-menu > summary:hover,
.services-menu > summary:focus-visible,
.services-menu[open] > summary,
.services-menu.is-current > summary {
  color: var(--white);
}

.desktop-nav > a:hover::before,
.desktop-nav > a:focus-visible::before,
.desktop-nav > a[aria-current="page"]::before,
.services-menu > summary:hover::before,
.services-menu > summary:focus-visible::before,
.services-menu.is-current > summary::before {
  transform: scaleX(1);
}

.services-menu {
  position: relative;
}

.services-dropdown {
  position: absolute;
  top: calc(100% + 2px);
  left: 50%;
  width: 310px;
  padding: 10px;
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 18px 45px rgb(0 24 69 / 22%);
  transform: translateX(-50%);
}

.services-dropdown a {
  display: block;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0;
  text-transform: none;
  transition: background 150ms ease, color 150ms ease;
}

.services-dropdown a:hover,
.services-dropdown a:focus-visible,
.services-dropdown a[aria-current="page"] {
  background: var(--cloud);
  color: var(--blue);
}

.header-phone {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.header-phone svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.mobile-toggle {
  display: none;
  justify-self: end;
  width: 48px;
  height: 48px;
  padding: 12px;
  border: 1px solid rgb(255 255 255 / 30%);
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.mobile-panel {
  position: fixed;
  z-index: 60;
  inset: 0;
  display: none;
  padding: 26px;
  overflow-y: auto;
  background: var(--navy);
  color: var(--white);
}

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

.mobile-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.mobile-close {
  width: 46px;
  height: 46px;
  border: 1px solid rgb(255 255 255 / 30%);
  background: transparent;
  color: var(--white);
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
}

.mobile-nav > a,
.mobile-services > summary {
  display: block;
  padding: 13px 0;
  border-bottom: 1px solid rgb(255 255 255 / 12%);
  color: var(--white);
  font-size: 23px;
  font-weight: 500;
  list-style: none;
}

.mobile-services > summary::-webkit-details-marker {
  display: none;
}

.mobile-service-links {
  display: grid;
  padding: 8px 0 12px 16px;
}

.mobile-service-links a {
  padding: 8px 0;
  color: rgb(255 255 255 / 75%);
  font-size: 16px;
}

.language-links {
  display: inline-flex;
  gap: 8px;
  margin-left: 2px;
}

.language-links a {
  display: grid;
  min-width: 27px;
  height: 27px;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 28%);
  color: rgb(255 255 255 / 62%);
  font-size: 10px;
  line-height: 1;
}

.language-links a:hover,
.language-links a:focus-visible,
.language-links a[aria-current="true"] {
  border-color: var(--white);
  color: var(--white);
}

.mobile-languages {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}

.mobile-languages a {
  min-width: 46px;
  padding: 10px;
  border: 1px solid rgb(255 255 255 / 25%);
  text-align: center;
}

.mobile-languages a[aria-current="true"] {
  background: var(--blue);
  border-color: var(--blue);
}

.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  background: var(--navy) url("../images/hero.jpg") center 34% / cover no-repeat;
  color: var(--white);
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(0 24 69 / 96%) 0%, rgb(0 24 69 / 90%) 36%, rgb(51 65 92 / 5%) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 175px 0 110px;
}

.hero-content > * {
  max-width: 700px;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(43px, 5vw, 63px);
  font-weight: 600;
  line-height: 1.08;
}

.hero-copy {
  margin: 26px 0 0;
  color: rgb(255 255 255 / 82%);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  gap: 8px;
  margin-top: 35px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--slate);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2.5px;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow.light {
  color: rgb(255 255 255 / 82%);
}

.button {
  display: inline-flex;
  min-height: 51px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 34px;
  border: 1px solid transparent;
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1.3;
  text-transform: uppercase;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

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

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

.button-primary:hover,
.button-primary:focus-visible {
  border-color: var(--blue-dark);
  background: var(--blue-dark);
}

.button-ghost {
  background: transparent;
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: rgb(255 255 255 / 45%);
}

.ticker {
  overflow: hidden;
  background: var(--navy);
  color: rgb(255 255 255 / 18%);
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  min-width: max-content;
  gap: 36px;
  padding: 20px 0;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 500;
  animation: ticker 46s linear infinite;
}

.ticker-track span::after {
  content: "•";
  margin-left: 36px;
  color: var(--blue);
}

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

.section {
  padding: 105px 0;
}

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

.section-navy {
  background: var(--navy);
  color: rgb(255 255 255 / 75%);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-heading.align-left {
  margin-inline: 0;
  text-align: left;
}

.section-heading h2,
.about-copy h2,
.service-copy h2,
.contact-intro h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(34px, 4vw, 45px);
  font-weight: 600;
  line-height: 1.22;
}

.section-heading.light h2 {
  color: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(50px, 7vw, 100px);
}

.about-media {
  position: relative;
  min-height: 600px;
}

.about-media::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: 8%;
  bottom: -4%;
  width: 48%;
  aspect-ratio: 1;
  background: url("../images/dot-smoke.png") center / contain no-repeat;
  opacity: 0.55;
}

.about-main-image,
.about-secondary-image {
  position: absolute;
  z-index: 1;
  object-fit: cover;
  box-shadow: 0 18px 45px rgb(0 24 69 / 13%);
}

.about-main-image {
  inset: 0 auto auto 0;
  width: 76%;
  height: 84%;
}

.about-secondary-image {
  right: 0;
  bottom: 0;
  width: 49%;
  height: 50%;
  border: 12px solid var(--white);
}

.about-copy h3 {
  margin: 18px 0 20px;
  color: var(--navy);
  font-size: 22px;
  font-weight: 500;
}

.about-copy p {
  margin: 0 0 18px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-card {
  min-height: 315px;
  display: flex;
  flex-direction: column;
  padding: 35px;
  background: var(--white);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.service-card:hover,
.service-card:focus-within {
  position: relative;
  z-index: 2;
  box-shadow: 0 18px 45px rgb(0 24 69 / 13%);
  transform: translateY(-4px);
}

.service-number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border: 1px solid #bad0e9;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
}

.service-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.28;
}

.service-card p {
  margin: 0 0 24px;
  font-size: 16px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.text-link::after {
  content: "→";
  font-size: 18px;
  transition: transform 150ms ease;
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: translateX(4px);
}

.contact-cta {
  position: relative;
  padding: 110px 0;
  background: var(--navy) url("../images/contact-cta.jpg") center / cover no-repeat;
  color: var(--white);
}

.contact-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(0 24 69 / 95%) 0%, rgb(0 24 69 / 91%) 50%, rgb(255 255 255 / 0%) 100%);
}

.contact-cta-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.contact-cta h2 {
  margin: 0 0 28px;
  color: var(--white);
  font-size: clamp(38px, 5vw, 55px);
  font-weight: 600;
  line-height: 1.15;
}

.page-hero {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: flex-end;
  padding: 190px 0 80px;
  background: var(--navy) url("../images/hero.jpg") center 40% / cover no-repeat;
  color: var(--white);
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 18px;
  color: rgb(255 255 255 / 70%);
  font-size: 14px;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
  color: var(--white);
}

.service-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(50px, 7vw, 90px);
}

.service-image-wrap {
  position: relative;
}

.service-image-wrap::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -18px;
  left: -18px;
  width: 90px;
  height: 90px;
  background: var(--blue);
}

.service-image {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.service-copy p {
  margin: 20px 0 0;
}

.feature-list {
  display: grid;
  gap: 13px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 31px;
  color: var(--navy-soft);
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  line-height: 21px;
  text-align: center;
}

.faq-list {
  max-width: 940px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  position: relative;
  padding: 23px 58px 23px 0;
  color: var(--navy);
  cursor: pointer;
  font-size: 19px;
  font-weight: 500;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 19px;
  right: 0;
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  color: var(--blue);
  font-size: 23px;
  font-weight: 300;
  line-height: 29px;
  text-align: center;
}

.faq-item[open] summary::after {
  content: "−";
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.faq-answer {
  max-width: 820px;
  padding: 0 58px 23px 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(50px, 7vw, 100px);
  align-items: start;
}

.contact-intro p {
  margin: 22px 0 0;
  font-size: 18px;
}

.contact-actions {
  display: flex;
  gap: 8px;
  margin-top: 30px;
}

.contact-actions .button-ghost {
  border-color: var(--line);
  color: var(--navy);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.contact-card {
  min-height: 175px;
  padding: 28px;
  background: var(--white);
}

.contact-card h3 {
  margin: 0 0 9px;
  color: var(--navy);
  font-size: 19px;
  font-weight: 600;
}

.contact-card p,
.contact-card address {
  margin: 0;
  color: var(--text);
  font-style: normal;
  white-space: pre-line;
}

.contact-card a {
  color: var(--blue-dark);
}

.site-footer {
  padding: 90px 0 28px;
  background: var(--navy);
  color: rgb(255 255 255 / 74%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 70px;
}

.footer-brand img {
  width: 270px;
  height: auto;
  margin-bottom: 24px;
}

.footer-brand p {
  max-width: 440px;
  margin: 0;
}

.footer-column h2 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--white);
}

.footer-contact {
  display: grid;
  gap: 18px;
}

.footer-contact p {
  margin: 0;
}

.footer-contact strong {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px dashed rgb(255 255 255 / 22%);
  color: rgb(255 255 255 / 62%);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-align: center;
  text-transform: uppercase;
}

@media (hover: hover) {
  .services-menu:not([open]):hover .services-dropdown {
    display: block;
  }

  .services-menu:not([open]) .services-dropdown {
    display: none;
  }
}

@media (max-width: 1120px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-phone {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

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

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

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

@media (max-width: 800px) {
  .container {
    width: min(100% - 30px, var(--page));
  }

  .header-inner {
    min-height: 92px;
  }

  .brand-logo {
    width: 220px;
  }

  .hero {
    min-height: 690px;
    background-position: 62% center;
  }

  .hero::before,
  .page-hero::before {
    background: rgb(0 24 69 / 86%);
  }

  .hero-content {
    padding-top: 150px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 40px;
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .contact-actions .button {
    width: 100%;
  }

  .section {
    padding: 75px 0;
  }

  .about-grid,
  .service-intro-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .about-media {
    min-height: 500px;
  }

  .service-intro-grid {
    gap: 55px;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .contact-card {
    min-height: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .footer-brand {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .brand-logo {
    width: 205px;
  }

  .hero-copy {
    font-size: 17px;
  }

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

  .service-card {
    min-height: 280px;
  }

  .about-media {
    min-height: 400px;
  }

  .about-main-image {
    width: 84%;
  }

  .about-secondary-image {
    width: 56%;
    border-width: 8px;
  }

  .page-hero {
    min-height: 390px;
    padding-bottom: 58px;
  }

  .contact-cta {
    padding: 80px 0;
  }
}

@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;
  }

  .ticker-track {
    transform: none;
  }
}
