:root {
  --navy: #002f43;
  --navy-mid: #003e59;
  --teal: #006d9b;
  --accent: #009cde;
  --accent-soft: #19bbff;
  --gold: #c59506;
  --ice: #a9e5ff;
  --text: #222;
  --muted: #5a6570;
  --gray: #f2f2f2;
  --white: #fff;
  --max: 1140px;
  --header: 92px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--teal);
}

.wrap {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--header);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1200px, calc(100% - 48px));
}

.logo img {
  height: 86px;
  width: auto;
}

.logo .logo-blue {
  display: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
}

.nav a:hover,
.nav a.is-active {
  color: var(--ice);
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  margin: 5px 0;
}

.home .site-header {
  color: var(--white);
}

.site-header.is-solid,
.inner .site-header {
  background: #fff;
  box-shadow: 0 1px 10px rgb(0 0 0 / 8%);
  color: var(--navy);
}

.site-header.is-solid .nav a,
.inner .site-header .nav a {
  color: #1d1d1d;
}

.site-header.is-solid .nav a.is-active,
.inner .site-header .nav a.is-active,
.site-header.is-solid .nav a:hover,
.inner .site-header .nav a:hover {
  color: var(--accent);
}

.site-header.is-solid .logo-white,
.inner .site-header .logo-white {
  display: none;
}

.site-header.is-solid .logo-blue,
.inner .site-header .logo-blue {
  display: block;
}

.hero {
  min-height: 560px;
  height: 72vh;
  max-height: 720px;
  background:
    linear-gradient(180deg, rgb(0 109 155 / 55%) 0%, rgb(0 62 89 / 82%) 100%),
    url("../img/hero.jpg") center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: calc(var(--header) + 24px) 24px 72px;
}

.hero h1 {
  margin: 0 0 16px;
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero p {
  margin: 0 auto;
  max-width: 760px;
  font-size: 17px;
  font-weight: 400;
  color: rgb(255 255 255 / 92%);
}

.page-hero {
  background:
    linear-gradient(180deg, rgb(0 78 111 / 70%) 0%, rgb(0 47 67 / 82%) 100%),
    url("../img/hero.jpg") center / cover no-repeat;
  color: var(--white);
  text-align: center;
  padding: calc(var(--header) + 56px) 24px 64px;
}

.page-hero h1 {
  margin: 0 0 8px;
  font-size: clamp(26px, 3.4vw, 36px);
}

.page-hero p {
  margin: 0;
  opacity: 0.9;
}

.section {
  padding: 72px 0;
}

.section-gray {
  background: var(--gray);
  position: relative;
}

.home .section-gray::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -28px;
  height: 56px;
  background: linear-gradient(to bottom right, var(--white) 49%, var(--gray) 50%);
}

.about {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 48px;
  align-items: center;
}

.about h2 {
  margin: 0;
  color: var(--accent);
  font-size: 32px;
  text-align: right;
  font-weight: 700;
}

.about-copy {
  border-left: 3px solid var(--accent-soft);
  padding-left: 22px;
  color: #333;
}

.about-copy strong {
  color: var(--accent);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  position: relative;
  z-index: 1;
}

.quote h3 {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 24px;
}

.quote p {
  margin: 0;
  border-left: 3px solid var(--accent-soft);
  padding-left: 18px;
}

.quote strong {
  font-weight: 700;
}

.centered h2,
.centered h3 {
  margin: 0 0 16px;
  text-align: center;
  color: var(--teal);
  letter-spacing: 0.04em;
  font-size: 22px;
}

.rule {
  width: min(520px, 70%);
  height: 1px;
  background: #bfe7f5;
  margin: 0 auto 28px;
}

.centered p {
  margin: 0 auto;
  max-width: 820px;
  text-align: center;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.chip {
  background: var(--gray);
  color: var(--navy);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
}

.cta {
  background: var(--teal);
  color: var(--white);
  text-align: center;
  padding: 56px 24px;
}

.cta h2 {
  margin: 0 0 28px;
  font-size: 22px;
  font-weight: 600;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 12px 22px;
  background: var(--navy);
  color: var(--ice);
  font-weight: 500;
  font-size: 15px;
  border: 0;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn:hover {
  background: #001f2e;
  color: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--navy);
}

.btn-light:hover {
  background: var(--ice);
  color: var(--navy);
}

.brands h3 {
  margin: 0 0 16px;
  text-align: center;
  color: var(--teal);
  letter-spacing: 0.06em;
  font-size: 20px;
}

.brand-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  align-items: center;
}

.brand-row a,
.brand-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 92px;
}

.brand-row img {
  max-height: 64px;
  width: auto;
  object-fit: contain;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.brand-card {
  background: var(--white);
  border: 1px solid #f2f2f2;
  border-bottom: 5px solid var(--accent-soft);
  border-radius: 20px;
  min-height: 150px;
  padding: 28px 18px;
  transition: border-color 0.2s ease;
}

.brand-card:hover {
  border-color: var(--accent);
  border-bottom-color: var(--accent);
}

.brand-card img {
  max-height: 72px;
  width: auto;
}

.site-footer {
  background: var(--navy);
  color: #d7e6ee;
  padding: 56px 0 28px;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
}

.site-footer h3 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 18px;
}

.site-footer h3::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin-top: 8px;
}

.footer-logo {
  height: 92px;
  width: auto;
  margin: 8px 0 16px;
}

.social {
  display: flex;
  gap: 10px;
  margin: 8px 0 28px;
}

.social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 700;
}

.social a:hover {
  background: var(--accent);
  color: var(--white);
}

.hours p,
.contact-list p {
  margin: 0 0 8px;
}

.contact-list a {
  color: var(--ice);
}

.contact-list a:hover {
  color: var(--white);
}

.wba {
  margin-top: 18px;
  max-width: 180px;
}

.legal {
  margin-top: 36px;
  padding-top: 16px;
  border-top: 1px solid rgb(255 255 255 / 12%);
  text-align: center;
  color: #8aa3b0;
  font-size: 12px;
}

.contact-box {
  display: grid;
  grid-template-columns: 2fr 3fr;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border-bottom: 5px solid var(--accent-soft);
}

.contact-aside {
  background: #004e6f;
  color: #e2f6ff;
  padding: 40px 32px;
}

.contact-aside h2 {
  margin: 0 0 6px;
  color: var(--white);
  font-size: 22px;
}

.contact-aside p {
  margin: 0 0 28px;
  color: #e2f6ff;
}

.contact-aside a {
  color: var(--ice);
}

.contact-aside a:hover {
  color: var(--white);
}

.contact-form {
  padding: 40px 36px;
  background: var(--white);
}

.contact-form h2 {
  margin: 0 0 8px;
  color: var(--navy);
}

.contact-form p.lead {
  margin: 0 0 24px;
  color: var(--muted);
}

label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 6px;
  color: var(--navy);
}

input,
textarea {
  width: 100%;
  border: 1px solid #d9e2e8;
  border-radius: 6px;
  padding: 12px 14px;
  font: inherit;
  margin-bottom: 16px;
}

input:focus,
textarea:focus {
  outline: 2px solid rgb(0 156 222 / 30%);
  border-color: var(--accent);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.form-ok {
  display: none;
  background: #e8f8ef;
  color: #146c3a;
  padding: 12px 14px;
  border-radius: 8px;
  margin-bottom: 16px;
}

.map {
  margin-top: 28px;
  border: 0;
  width: 100%;
  height: 280px;
  border-radius: 12px;
}

@media (max-width: 900px) {
  :root {
    --header: 76px;
  }

  .logo img {
    height: 58px;
  }

  .menu-toggle {
    display: block;
    color: inherit;
  }

  .nav {
    display: none;
    position: absolute;
    top: var(--header);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 24px 20px;
    gap: 0;
    box-shadow: 0 8px 16px rgb(0 0 0 / 8%);
  }

  .nav.is-open {
    display: flex;
    z-index: 201;
  }

  .nav a {
    color: #1d1d1d !important;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
  }

  .about,
  .split,
  .brand-row,
  .brand-grid,
  .footer-grid,
  .contact-box {
    grid-template-columns: 1fr;
  }

  .about h2 {
    text-align: left;
  }

  .hero {
    height: auto;
    min-height: 420px;
  }
}
