:root {
  --navy: #082958;
  --navy-deep: #041d3e;
  --teal: #1cc7c9;
  --teal-soft: #e6fbfb;
  --ink: #0d1b2a;
  --muted: #607084;
  --line: #dce5ee;
  --surface: #f7fafc;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(8, 41, 88, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(255,255,255,.88);
  border-bottom: 1px solid rgba(220,229,238,.7);
}
.nav-wrap { min-height: 88px; display: flex; align-items: center; gap: 28px; }
.brand img { width: 132px; height: auto; }
.nav { margin-left: auto; display: flex; gap: 28px; font-size: 15px; color: #39506a; }
.nav a:hover { color: var(--navy); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--navy), #0f4f83);
  color: white;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(8,41,88,.18);
  transition: transform .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(8,41,88,.24); }
.button-small { padding: 11px 18px; font-size: 14px; }
.text-link { display: inline-flex; gap: 8px; align-items: center; color: var(--navy); font-weight: 700; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 108px 0 96px;
  background: radial-gradient(circle at 80% 10%, #ebffff 0, #f7fbff 35%, #fff 70%);
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(20px); opacity: .45; }
.hero-glow-1 { width: 420px; height: 420px; background: #bdf7f7; right: -80px; top: -120px; }
.hero-glow-2 { width: 300px; height: 300px; background: #d8e9ff; left: -120px; bottom: -120px; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: 76px; align-items: center; }
.eyebrow, .section-label { color: #0f7f86; text-transform: uppercase; letter-spacing: .14em; font-size: 12px; font-weight: 800; }
h1, h2, h3 { font-family: "Manrope", Arial, sans-serif; color: var(--navy-deep); margin-top: 0; }
h1 { font-size: clamp(48px, 7vw, 78px); line-height: 1.02; letter-spacing: -.045em; margin: 18px 0 24px; max-width: 760px; }
h2 { font-size: clamp(34px, 5vw, 52px); line-height: 1.12; letter-spacing: -.035em; margin: 14px 0 24px; }
h3 { font-size: 22px; }
.hero-text { max-width: 720px; font-size: 20px; color: #52677d; }
.hero-actions { display: flex; gap: 24px; align-items: center; margin-top: 32px; }

.hero-card {
  min-height: 520px;
  border-radius: 36px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(160deg, #06234b, #0d4d78 58%, #16aeb4);
  box-shadow: var(--shadow);
  color: white;
}
.logo-orbit { width: 78%; align-self: center; margin-top: 8px; filter: drop-shadow(0 20px 40px rgba(0,0,0,.15)); }
.logo-orbit img { width: 100%; height: auto; }
.hero-card-text span { display: block; opacity: .7; margin-bottom: 8px; font-size: 14px; text-transform: uppercase; letter-spacing: .12em; }
.hero-card-text strong { font-family: "Manrope", Arial, sans-serif; font-size: 26px; line-height: 1.3; }

.section { padding: 100px 0; }
.section-soft { background: var(--surface); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.prose p, .family p, .contact-copy { font-size: 18px; color: var(--muted); }
.section-head { max-width: 760px; margin-bottom: 44px; }
.section-head p { color: var(--muted); font-size: 18px; }
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.card { background: white; border: 1px solid var(--line); border-radius: 24px; padding: 30px; box-shadow: 0 10px 30px rgba(8,41,88,.05); }
.card p { color: var(--muted); margin-bottom: 0; }
.icon { width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; background: var(--teal-soft); color: #11868d; font-weight: 800; margin-bottom: 34px; }

.family-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: center; }
.family-visual { min-height: 420px; display: grid; place-items: center; border-radius: 34px; background: linear-gradient(145deg, #061f45, #0b5b88 58%, #1cc7c9); box-shadow: var(--shadow); }
.monogram { color: white; font-family: "Manrope", Arial, sans-serif; font-size: clamp(52px, 8vw, 92px); font-weight: 800; letter-spacing: -.05em; }

.statement { padding: 38px 0; background: var(--navy-deep); color: white; }
.statement-inner { text-align: center; }
.statement p { margin: 0; font-family: "Manrope", Arial, sans-serif; font-size: clamp(24px, 4vw, 38px); font-weight: 700; }

.contact-grid { display: grid; grid-template-columns: 1fr .8fr; gap: 80px; align-items: start; }
.contact-card { background: linear-gradient(180deg, #f8fbfd, #ffffff); border: 1px solid var(--line); border-radius: 28px; padding: 36px; box-shadow: 0 14px 40px rgba(8,41,88,.06); }
.contact-card p { color: var(--muted); }
.contact-emails { display: grid; gap: 10px; margin-top: 20px; }
.contact-emails-label { font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: #0f7f86; margin-bottom: 2px; }
.contact-emails a { color: var(--navy); font-weight: 600; }
.contact-emails a:hover { color: #0f7f86; }
.meta { margin-top: 28px; border-top: 1px solid var(--line); padding-top: 22px; display: grid; gap: 14px; }
.meta div { display: flex; justify-content: space-between; gap: 20px; }
.meta span { color: var(--muted); }
.meta strong { color: var(--navy-deep); }

.site-footer { border-top: 1px solid var(--line); padding: 34px 0; }
.footer-wrap { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.footer-brand { display: flex; align-items: center; gap: 18px; color: var(--muted); }
.footer-brand img { width: 110px; }
.footer-meta { color: var(--muted); font-size: 14px; }

@media (max-width: 960px) {
  .nav { display: none; }
  .nav-wrap .button-small { margin-left: auto; }
  .hero-grid, .split, .family-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 72px; }
  .hero-card { min-height: 440px; }
  .cards { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1180px); }
  .site-header .button-small { display: none; }
  .nav-wrap { min-height: 74px; }
  .brand img { width: 112px; }
  .hero { padding: 56px 0 64px; }
  h1 { font-size: 46px; }
  .hero-text { font-size: 18px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-card { min-height: 380px; padding: 28px; }
  .section { padding: 72px 0; }
  .cards { grid-template-columns: 1fr; }
  .family-visual { min-height: 300px; }
  .footer-wrap, .footer-brand { align-items: flex-start; flex-direction: column; }
}
