:root {
  --bg: #f6faff;
  --white: #ffffff;
  --ink: #133252;
  --muted: #657f9f;
  --brand: #3f86c6;
  --brand-dark: #2a5f98;
  --line: #dbe8f6;
  --sand: #f2f7fd;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 14% -10%, #e6f1ff 0%, var(--bg) 42%);
  line-height: 1.5;
}

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

.top-bar {
  background: var(--brand-dark);
  color: #e9f3ff;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  text-align: center;
  padding: 10px 12px;
}

.top-bar p {
  margin: 0;
}

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

.header-wrap {
  width: min(1200px, 94%);
  margin: 0 auto;
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: radial-gradient(circle at center, #7fd3ff 0 3px, transparent 3.5px), var(--brand);
  display: block;
  position: relative;
  transform: rotate(90deg);
}

.brand-mark::before {
  content: "(";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-11px, -50%);
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.brand-mark::after {
  content: ")";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(1px, -50%);
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}


.brand-text {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  font-weight: 800;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.desktop-nav {
  width: 100%;
  justify-content: center;
}

.main-nav a {
  font-size: 0.77rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #123a63;
}

.main-nav a.current {
  color: var(--brand-dark);
  font-weight: 800;
}

.cta-call {
  padding: 10px 18px;
  border: 1px solid #2f5f8f;
  color: #123f6c;
  border-radius: 99px;
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
}

.mobile-nav {
  display: none;
  width: min(1200px, 94%);
  margin: 0 auto;
  padding: 0 0 14px;
  flex-direction: column;
  align-items: flex-start;
}

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

.hero {
  width: min(1200px, 94%);
  margin: 24px auto 0;
  border-radius: 26px;
  min-height: 640px;
  overflow: hidden;
  position: relative;
}

.hero img {
  width: 100%;
  height: 640px;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(95deg, rgba(8, 21, 20, 0.72) 20%, rgba(8, 21, 20, 0.2) 72%);
}

.hero-content {
  position: absolute;
  z-index: 2;
  left: 6%;
  bottom: 11%;
  width: min(650px, 85%);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.67rem;
  font-weight: 700;
}

.hero h1 {
  font-family: "Marcellus", serif;
  font-size: clamp(2rem, 4.4vw, 3.8rem);
  line-height: 1.06;
  margin: 0 0 12px;
}

.hero p {
  margin: 0 0 18px;
  color: #d9e8fb;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  text-transform: uppercase;
  border: 1px solid transparent;
}

.btn-light {
  background: var(--white);
  color: #113a62;
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.58);
  color: #edf4ff;
}

.btn-dark {
  background: #0f4c81;
  color: #fff;
}

.section {
  width: min(1200px, 94%);
  margin: 0 auto;
  padding: 72px 0 0;
}

.section-head h2 {
  margin: 0;
  font-family: "Marcellus", serif;
  font-size: clamp(1.5rem, 2.5vw, 2.4rem);
  line-height: 1.2;
}

.pillars {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.pillars article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
}

.pillars h3 {
  margin: 0 0 10px;
  font-size: 1.02rem;
}

.pillars p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.service-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 1fr);
  gap: 14px;
}

.service-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  padding: 22px;
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: 1.02rem;
}

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

.service-card.highlight {
  padding: 0;
  overflow: hidden;
  grid-column: span 1;
}

.service-card.with-image {
  padding: 0;
  overflow: hidden;
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.card-body {
  padding: 20px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.split-card {
  border-radius: 22px;
  border: 1px solid var(--line);
  background: var(--sand);
  padding: 34px;
}

.split-card.dark {
  background: linear-gradient(135deg, #4e92ce, #2d649d);
  color: #edf4ff;
  border-color: transparent;
}

.split-card h2 {
  margin: 0 0 12px;
  font-family: "Marcellus", serif;
  font-size: 2rem;
}

.split-card p {
  margin: 0 0 18px;
}

.quote-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

blockquote {
  margin: 0;
  border: 1px solid var(--line);
  border-left: 5px solid #1e5f9a;
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  color: #213a57;
}

.faq-list {
  margin-top: 20px;
  border-top: 1px solid var(--line);
}

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

.faq-toggle {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 0;
  cursor: pointer;
  font-size: 1rem;
  color: var(--ink);
  font-weight: 700;
}

.faq-item p {
  margin: 8px 0 0;
  color: var(--muted);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-item.open p {
  max-height: 120px;
}

.site-footer {
  width: min(1200px, 94%);
  margin: 74px auto 30px;
  background: #2a5f98;
  color: #edf4ff;
  border-radius: 24px;
  padding: 34px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 20px;
}

.site-footer h3 {
  margin: 0 0 12px;
  font-family: "Marcellus", serif;
  font-size: 1.6rem;
}

.site-footer p {
  margin: 0 0 8px;
  color: #d8e8fb;
}

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

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 14px;
    padding: 0 0 10px;
  }

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

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

  .service-card.highlight {
    grid-column: span 2;
  }
}

@media (max-width: 740px) {
  .top-bar {
    font-size: 0.66rem;
  }

  .header-wrap {
    min-height: 68px;
    grid-template-columns: 1fr;
    gap: 8px;
    justify-items: center;
  }

  .brand {
    justify-self: center;
  }

  .mobile-nav {
    justify-content: center;
    gap: 12px;
    padding-bottom: 10px;
    overflow-x: visible;
    white-space: normal;
    flex-wrap: wrap;
  }

  .brand-text {
    font-size: 0.62rem;
    letter-spacing: 0.11em;
  }

  .cta-call {
    display: none;
  }

  .hero {
    border-radius: 18px;
    min-height: 520px;
  }

  .hero img {
    height: 520px;
  }

  .service-card img {
    height: auto;
    object-fit: initial;
    background: transparent;
  }

  .hero-content {
    left: 18px;
    right: 18px;
    width: auto;
  }

  .section {
    padding-top: 54px;
  }

  .pillars,
  .service-grid,
  .split,
  .quote-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .service-card.highlight {
    grid-column: auto;
  }

  .split-card,
  .site-footer {
    padding: 24px;
  }
}
