:root {
  --navy: #0b223d;
  --navy-2: #081827;
  --blue: #123f67;
  --steel: #8ea2b8;
  --gold: #c9a34a;
  --white: #ffffff;
  --mist: #eef3f8;
  --text: #132033;
  --muted: #5b6877;
  --line: rgba(255,255,255,.16);
  --shadow: 0 24px 70px rgba(5,15,28,.24);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
p { margin: 0 0 1.1rem; }
img { max-width: 100%; display: block; }

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--gold);
  color: var(--navy-2);
  padding: .75rem 1rem;
  z-index: 1000;
}
.skip-link:focus { left: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(10,34,61,.08);
  backdrop-filter: blur(12px);
}
.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand img { width: 180px; height: auto; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .94rem;
  font-weight: 700;
}
.site-nav a {
  padding: .75rem .9rem;
  border-radius: 999px;
  color: var(--navy);
}
.site-nav a:hover, .site-nav a.active { background: var(--mist); }
.site-nav .nav-cta {
  background: var(--navy);
  color: var(--white);
  padding-inline: 1.1rem;
}
.site-nav .nav-cta:hover, .site-nav .nav-cta.active { background: var(--blue); color: var(--white); }
.nav-toggle {
  display: none;
  border: 0;
  background: var(--navy);
  color: var(--white);
  border-radius: 999px;
  padding: .65rem 1rem;
  font-weight: 800;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, rgba(201,163,74,.22), transparent 34%),
    linear-gradient(135deg, var(--navy-2), var(--navy) 45%, #163f66);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -8% -24% 48%;
  height: 420px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.08));
  transform: skewX(-18deg);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, .72fr);
  gap: 56px;
  align-items: center;
  padding: 94px 0 84px;
}
.eyebrow {
  display: inline-flex;
  gap: .5rem;
  align-items: center;
  margin-bottom: 1.1rem;
  color: #e6d18b;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 900;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--gold);
}
.hero h1, .page-hero h1 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: -.04em;
  font-size: clamp(3rem, 7vw, 6.35rem);
}
.hero .lede {
  max-width: 760px;
  margin-top: 1.35rem;
  color: rgba(255,255,255,.83);
  font-size: clamp(1.12rem, 2vw, 1.35rem);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 2rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .88rem 1.15rem;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
}
.button.primary { background: var(--gold); color: var(--navy-2); }
.button.secondary { border-color: var(--line); color: var(--white); }
.button.dark { background: var(--navy); color: var(--white); }
.button.light { background: var(--white); color: var(--navy); }
.hero-card {
  padding: 26px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.08);
  border-radius: 26px;
  box-shadow: var(--shadow);
}
.hero-card img {
  width: 310px;
  margin-bottom: 24px;
  padding: 18px;
  background: var(--white);
  border-radius: 18px;
}
.stat-grid {
  display: grid;
  gap: 14px;
}
.stat {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid var(--line);
}
.stat strong {
  display: block;
  color: var(--white);
  font-size: 1.6rem;
  line-height: 1;
}
.stat span { color: rgba(255,255,255,.72); font-size: .92rem; }

.section { padding: 76px 0; }
.section.alt { background: #f7f9fc; }
.section.dark {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-2), var(--navy));
}
.section-header {
  max-width: 820px;
  margin-bottom: 34px;
}
.section-header h2, .split h2, .card h2, .contact-card h2 {
  margin: 0 0 1rem;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -.03em;
}
.section.dark .section-header h2, .section.dark .split h2 { color: var(--white); }
.section-header p, .split p { color: var(--muted); font-size: 1.08rem; }
.section.dark p { color: rgba(255,255,255,.76); }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  padding: 28px;
  border: 1px solid rgba(10,34,61,.09);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(5,15,28,.06);
}
.card h3 {
  margin: 0 0 .75rem;
  color: var(--navy);
  font-size: 1.22rem;
}
.card p { color: var(--muted); }
.card .kicker {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .76rem;
  font-weight: 900;
  margin-bottom: .85rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: center;
}
.panel {
  padding: 34px;
  border-radius: 28px;
  background: var(--white);
  color: var(--text);
  box-shadow: var(--shadow);
}
.panel.dark-panel {
  background: rgba(255,255,255,.08);
  color: var(--white);
  border: 1px solid var(--line);
}
.panel.dark-panel h3 { color: var(--white); }
.panel.dark-panel li { color: rgba(255,255,255,.78); }
.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .25rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: inset 0 0 0 5px rgba(255,255,255,.75);
}

.cta-band {
  border-radius: 30px;
  padding: 38px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #174b78);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}
.cta-band h2 { margin: 0 0 .6rem; font-size: clamp(1.7rem, 3vw, 2.6rem); }
.cta-band p { color: rgba(255,255,255,.78); max-width: 760px; }

.page-hero {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-2), var(--navy));
  padding: 74px 0;
}
.page-hero p {
  max-width: 850px;
  margin-top: 1.2rem;
  color: rgba(255,255,255,.78);
  font-size: 1.2rem;
}
.service-row {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 34px;
  padding: 34px 0;
  border-bottom: 1px solid rgba(10,34,61,.1);
}
.service-row h2 { margin: 0; color: var(--navy); font-size: 1.7rem; }
.service-row p { color: var(--muted); font-size: 1.05rem; }

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 28px;
  align-items: start;
}
.contact-card, .form-card {
  padding: 30px;
  border-radius: 26px;
  background: var(--white);
  border: 1px solid rgba(10,34,61,.09);
  box-shadow: 0 14px 38px rgba(5,15,28,.06);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: grid; gap: 7px; margin-bottom: 16px; }
.form-field.full { grid-column: 1 / -1; }
label { font-weight: 800; color: var(--navy); }
input, textarea, select {
  width: 100%;
  border: 1px solid rgba(10,34,61,.18);
  border-radius: 14px;
  padding: .92rem 1rem;
  font: inherit;
  color: var(--text);
  background: var(--white);
}
textarea { min-height: 160px; resize: vertical; }
.hidden-field { display: none !important; }
.alert {
  padding: 1rem;
  border-radius: 16px;
  margin-bottom: 18px;
  font-weight: 700;
}
.alert.success { background: #edf8ef; color: #1d6431; }
.alert.error { background: #fff0f0; color: #8a1e1e; }

.site-footer {
  color: rgba(255,255,255,.78);
  background: var(--navy-2);
  padding: 54px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .8fr .8fr;
  gap: 36px;
  padding-bottom: 34px;
}
.footer-logo { width: 170px; background: var(--white); padding: 10px; border-radius: 12px; margin-bottom: 18px; }
.site-footer h2 { margin: 0 0 14px; color: var(--white); font-size: 1rem; }
.site-footer a { display: block; color: rgba(255,255,255,.78); margin: 0 0 9px; }
.site-footer a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: .9rem;
}
.footer-bottom span:last-child { display: flex; gap: 16px; }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    top: 82px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .hero-grid, .split, .contact-layout { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr; }
  .service-row { grid-template-columns: 1fr; gap: 12px; }
  .cta-band { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1160px); }
  .brand img { width: 150px; }
  .hero-grid { padding: 66px 0; }
  .section { padding: 56px 0; }
  .footer-bottom { flex-direction: column; }
}

.founder-card { overflow: hidden; }
.founder-photo-wrap {
  position: relative;
  margin-bottom: 22px;
}
.founder-photo {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 18px 40px rgba(0,0,0,.25);
}
.founder-logo {
  position: absolute;
  left: 18px;
  bottom: 18px;
  width: 170px !important;
  margin: 0 !important;
  padding: 10px !important;
  background: rgba(255,255,255,.94) !important;
  border-radius: 14px !important;
}
.profile-figure { margin: 0; }
.profile-figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.about-founder {
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(0, 1fr) minmax(280px, .9fr);
  gap: 34px;
  align-items: center;
}

@media (max-width: 1000px) {
  .about-founder { grid-template-columns: 1fr; }
}
