:root {
  --navy: #00203c;
  --navy-deep: #001528;
  --ink: #0b1520;
  --blue: #1e68b0;
  --blue-soft: #3a82c4;
  --wine: #8b1e3f;
  --paper: #f3f6f8;
  --white: #ffffff;
  --muted: #5a6b7a;
  --line: #d7e0e8;
  --shadow: 0 18px 40px rgba(0, 32, 60, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

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

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

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

.topbar .wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  flex-wrap: wrap;
}

.topbar a:hover {
  color: #fff;
}

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

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
}

.brand {
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  font-weight: 600;
  color: var(--navy);
}

.nav-links a:hover {
  color: var(--blue);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}

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

.btn-primary:hover {
  background: #185896;
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.btn-ghost:hover {
  background: #fff;
  color: var(--navy);
}

.btn-light {
  background: #fff;
  color: var(--navy);
}

.btn-light:hover {
  background: #e8eef4;
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 1.6rem;
  color: var(--navy);
}

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  place-items: end start;
  background:
    linear-gradient(180deg, rgba(0, 32, 60, 0.28) 0%, rgba(0, 21, 40, 0.78) 100%),
    url("../assets/hero.jpg") center/cover no-repeat;
  color: #fff;
}

.hero-inner {
  padding: 80px 0 72px;
  max-width: 720px;
}

.kicker {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
  color: #cfe4f7;
  margin-bottom: 12px;
}

.hero h1 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  margin-bottom: 16px;
}

.hero p {
  font-size: 1.12rem;
  color: #e7eef5;
  margin-bottom: 28px;
}

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

.section {
  padding: 80px 0;
}

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

.section-head {
  max-width: 640px;
  margin-bottom: 36px;
}

.section-head h2 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--navy);
  line-height: 1.15;
}

.eyebrow {
  color: var(--blue);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.76rem;
  margin-bottom: 8px;
}

.grid-3,
.grid-2 {
  display: grid;
  gap: 22px;
}

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

.grid-2 {
  grid-template-columns: 1.1fr 0.9fr;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.card h3 {
  color: var(--navy);
  margin: 10px 0 8px;
  font-family: "Outfit", sans-serif;
}

.icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #e8f1f9;
  color: var(--blue);
  font-weight: 800;
}

.list {
  list-style: none;
}

.list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

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

.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, #06345f 100%);
  color: #fff;
}

.cta-band .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.about-copy p + p {
  margin-top: 14px;
}

.quote {
  border-left: 4px solid var(--wine);
  padding-left: 16px;
  font-weight: 650;
  color: var(--navy);
}

form {
  display: grid;
  gap: 12px;
}

label {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--navy);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  font: inherit;
  background: #fff;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-card p {
  margin-top: 8px;
}

.site-footer {
  background: var(--navy-deep);
  color: #c7d5e2;
  padding: 40px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

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

.footer-logo {
  height: 88px;
  width: auto;
  background: transparent;
}

.legal {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
  font-size: 0.82rem;
}

@media (max-width: 860px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #fff;
    flex-direction: column;
    padding: 16px 20px 20px;
    border-bottom: 1px solid var(--line);
    align-items: flex-start;
  }

  .nav-links.open {
    display: flex;
  }

  .grid-3,
  .grid-2,
  .footer-grid,
  .cta-band .wrap {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .brand img {
    height: 48px;
  }
}
