:root {
  --navy: #0c1f33;
  --navy-2: #14324f;
  --blue: #1b6cb3;
  --blue-soft: #2f86cc;
  --teal: #1f8f86;
  --green: #3aa36a;
  --wine: #b13a4c;
  --purple: #6b4aa8;
  --ink: #15202b;
  --muted: #5c6b7a;
  --line: #d8e0e6;
  --paper: #f6f8fa;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(12, 31, 51, 0.08);
  --radius: 18px;
  --max: 1180px;
  --header-h: 84px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
}
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--navy); }

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

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(216,224,230,.8);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: var(--header-h); gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; color: inherit; }
.brand-mark, .brand-logo {
  height: 64px; width: auto; max-width: 220px; object-fit: contain; flex-shrink: 0;
}
.brand-text { display: none; }
.photo-frame {
  display: flex; align-items: center; justify-content: center;
  background: #fff;
}
.photo-frame img { width: min(280px, 70%); height: auto; object-fit: contain; min-height: 0; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  color: var(--navy); font-weight: 600; font-size: 15px;
  padding: 10px 14px; border-radius: 10px;
}
.nav a:hover, .nav a.active { background: var(--paper); color: var(--blue); }
.nav .btn { margin-left: 8px; }

.menu-toggle {
  display: none; border: 0; background: none; cursor: pointer;
  width: 44px; height: 44px; border-radius: 10px;
}
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after {
  display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px;
  position: relative;
}
.menu-toggle span::before, .menu-toggle span::after {
  content: ""; position: absolute; left: 0;
}
.menu-toggle span::before { top: -7px; }
.menu-toggle span::after { top: 7px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--navy); color: #fff !important;
  padding: 12px 22px; border-radius: 999px; font-weight: 650;
  font-size: 15px; border: 0; cursor: pointer;
  transition: transform .15s ease, background .15s ease;
}
.btn:hover { background: var(--blue); transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--navy) !important;
  border: 1.5px solid var(--line);
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue) !important; background: #f3f8fc; }
.btn-light { background: #fff; color: var(--navy) !important; }
.btn-light:hover { background: #eef6fb; }

/* Hero */
.hero {
  position: relative; overflow: hidden;
  background:
    linear-gradient(120deg, rgba(12,31,51,.82), rgba(27,108,179,.45) 55%, rgba(42,160,122,.35)),
    url("../images/hero-bg.svg") center/cover no-repeat,
    linear-gradient(160deg, #0c1f33, #1b6cb3 60%, #2aa07a);
  color: #fff; min-height: 78vh; display: flex; align-items: center;
  padding: 72px 0 80px;
}
.hero::after {
  content: ""; position: absolute; inset: auto 0 0;
  height: 90px; background: linear-gradient(transparent, #fff);
}
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; position: relative; z-index: 1; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  letter-spacing: .16em; text-transform: uppercase; font-size: 12px; font-weight: 700;
  opacity: .88; margin-bottom: 16px;
}
.hero h1 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(34px, 5vw, 58px); line-height: 1.08; font-weight: 650; margin-bottom: 18px;
}
.hero p.lead { font-size: 19px; max-width: 540px; opacity: .92; margin-bottom: 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-card {
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(14px); border-radius: 24px; padding: 28px;
}
.hero-card h3 { font-family: "Outfit", sans-serif; margin-bottom: 14px; font-size: 20px; }
.hero-card ul { list-style: none; display: grid; gap: 10px; }
.hero-card li { display: flex; gap: 10px; align-items: flex-start; font-size: 15.5px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: #8ee0c4; margin-top: 8px; flex-shrink: 0; }

/* Sections */
section { padding: 84px 0; }
.section-head { max-width: 680px; margin-bottom: 42px; }
.kicker {
  color: var(--teal); font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; font-size: 12px; margin-bottom: 10px;
}
h2 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(28px, 3.4vw, 40px); line-height: 1.15; color: var(--navy);
}
.muted { color: var(--muted); }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow);
}
.card h3 { font-family: "Outfit", sans-serif; color: var(--navy); margin: 12px 0 8px; font-size: 22px; }
.icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #e8f4ff, #e6f7f2);
}
.icon svg { width: 24px; height: 24px; stroke: var(--blue); fill: none; stroke-width: 1.8; }

.band { background: var(--paper); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.photo-frame {
  border-radius: 28px; overflow: hidden; min-height: 360px;
  background: linear-gradient(160deg, #12304c, #1f8f86);
  position: relative;
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; min-height: 360px; }
.checklist { list-style: none; margin-top: 18px; display: grid; gap: 10px; }
.checklist li { display: flex; gap: 10px; }
.checklist svg { flex-shrink: 0; margin-top: 4px; }

.cta {
  background: linear-gradient(120deg, var(--navy), #1a4f82 60%, var(--teal));
  color: #fff; border-radius: 28px; padding: 48px; display: flex;
  justify-content: space-between; align-items: center; gap: 24px;
}
.cta h2 { color: #fff; }
.page-hero {
  padding: 56px 0 36px;
  background: linear-gradient(180deg, #eef5fb, #fff 80%);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-family: "Outfit", sans-serif; font-size: clamp(32px, 4vw, 46px); color: var(--navy); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 28px; }
.contact-item { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.contact-item:last-child { border-bottom: 0; }
.contact-item strong { display: block; color: var(--navy); }
form { display: grid; gap: 14px; }
label { font-size: 14px; font-weight: 650; color: var(--navy); }
input, textarea, select {
  width: 100%; border: 1px solid var(--line); border-radius: 12px;
  padding: 12px 14px; font: inherit; background: #fff;
}
input:focus, textarea:focus, select:focus { outline: 2px solid #b9d7f3; border-color: var(--blue); }
textarea { min-height: 140px; resize: vertical; }
.map-wrap { border-radius: 20px; overflow: hidden; min-height: 280px; border: 1px solid var(--line); }
.map-wrap iframe { width: 100%; height: 320px; border: 0; }

/* Footer */
.site-footer { background: var(--navy); color: #d5e0ea; padding: 56px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; margin-bottom: 36px; }
.site-footer h4 { color: #fff; font-family: "Outfit", sans-serif; margin-bottom: 14px; }
.site-footer a { color: #d5e0ea; }
.site-footer a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12); padding-top: 18px;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  font-size: 14px; color: #9fb0bf;
}

.legal { max-width: 820px; }
.legal h2 { margin: 28px 0 10px; font-size: 24px; }
.legal p, .legal li { margin-bottom: 10px; color: var(--muted); }

@media (max-width: 900px) {
  .hero-grid, .grid-3, .grid-2, .split, .contact-grid, .footer-grid, .cta { grid-template-columns: 1fr; }
  .menu-toggle { display: grid; place-items: center; }
  .nav {
    display: none; position: absolute; left: 0; right: 0; top: var(--header-h);
    background: #fff; flex-direction: column; align-items: stretch;
    padding: 12px 20px 20px; border-bottom: 1px solid var(--line);
  }
  .nav.open { display: flex; }
  .hero { min-height: auto; padding: 48px 0 64px; }
  section { padding: 64px 0; }
  .cta { padding: 32px; }
}
