:root {
  --purple: #0a0a45;
  --purple-2: #141454;
  --gold: #ef9719;
  --gold-deep: #df8113;
  --cream: #f8f1e7;
  --cream-2: #fffaf3;
  --ink: #111342;
  --muted: #5c6074;
  --white: #ffffff;
  --border: rgba(10, 10, 69, 0.12);
  --shadow: 0 18px 55px rgba(10, 10, 69, 0.11);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
.container { width: min(1120px, calc(100% - 48px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-wrap {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}
.brand { flex: 0 0 auto; }
.brand img {
  width: 250px;
  height: auto;
  object-fit: contain;
}
nav { display: flex; align-items: center; gap: 25px; font-weight: 750; font-size: .93rem; }
nav a { text-decoration: none; }
nav a:hover { color: var(--gold-deep); }
.nav-cta { padding: 11px 19px; border-radius: 999px; background: var(--purple); color: var(--white); }
.nav-cta:hover { color: var(--white); background: var(--gold-deep); }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 24%, rgba(239,151,25,.13), transparent 28%),
    linear-gradient(135deg, #fff 0%, var(--cream-2) 100%);
}
.hero-grid {
  min-height: 625px;
  display: grid;
  grid-template-columns: minmax(0,1.12fr) minmax(300px,.88fr);
  align-items: center;
  gap: 74px;
  padding: 72px 0 78px;
}
.eyebrow { margin: 0 0 12px; color: var(--gold-deep); text-transform: uppercase; letter-spacing: .14em; font-weight: 900; font-size: .8rem; }
h1, h2, h3 { line-height: 1.08; margin-top: 0; }
h1 { margin-bottom: 24px; color: var(--purple); font-size: clamp(3.2rem, 5.3vw, 5.45rem); letter-spacing: -.045em; }
h1 span { color: var(--gold-deep); font-family: Georgia, "Times New Roman", serif; font-style: italic; font-weight: 600; }
h2 { color: var(--purple); font-size: clamp(2.25rem, 4vw, 3.8rem); letter-spacing: -.035em; margin-bottom: 18px; }
h3 { color: var(--purple); font-size: 1.45rem; }
.hero-text, .lead { color: var(--muted); font-size: 1.12rem; max-width: 720px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 23px; border-radius: 999px; text-decoration: none; font-weight: 850; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--purple); color: var(--white); }
.btn-primary:hover { background: var(--gold-deep); }
.btn-secondary { border: 2px solid var(--purple); color: var(--purple); background: transparent; }
.btn-secondary:hover { border-color: var(--gold-deep); color: var(--gold-deep); }
.hero-art { display: grid; place-items: center; }
.compass-shell {
  width: min(380px, 36vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.55);
  box-shadow: 0 22px 70px rgba(10,10,69,.10);
  border: 1px solid rgba(239,151,25,.20);
  padding: 28px;
}
.compass-shell img { width: 100%; height: 100%; object-fit: contain; }
.hero-accent { height: 8px; background: linear-gradient(90deg, var(--purple) 0 66%, var(--gold) 66% 100%); }

.section { padding: 92px 0; }
.section-cream { background: var(--cream); }
.section-heading { margin-bottom: 38px; }
.section-heading.centered { text-align: center; }
.section-heading.centered .eyebrow { text-align: center; }
.two-card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.info-card { border-radius: 28px; padding: 44px; box-shadow: var(--shadow); }
.info-card h3 { font-size: 2rem; margin-bottom: 22px; }
.info-card p { margin-bottom: 0; font-size: 1.05rem; }
.mission-card { color: var(--white); background: linear-gradient(145deg, var(--purple), var(--purple-2)); }
.mission-card h3 { color: var(--gold); }
.vision-card { background: var(--cream); border: 1px solid rgba(239,151,25,.12); }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { min-height: 180px; padding: 28px; border-radius: 22px; background: var(--white); border: 1px solid rgba(10,10,69,.08); box-shadow: 0 12px 36px rgba(10,10,69,.07); }
.service-card span { display: block; color: var(--gold-deep); font-weight: 900; margin-bottom: 28px; }
.service-card h3 { margin: 0; font-size: 1.25rem; }

.split-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: center; }
.check-list { display: grid; gap: 14px; }
.check-list div { position: relative; padding: 18px 20px 18px 54px; border-radius: 16px; background: var(--cream-2); border: 1px solid var(--border); font-weight: 750; }
.check-list div::before { content: "✓"; position: absolute; left: 18px; top: 50%; transform: translateY(-50%); width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; background: var(--purple); color: var(--white); font-size: .85rem; }

.highlights-section { padding-top: 44px; }
.highlight-grid { display: grid; grid-template-columns: repeat(5, 1fr); border: 2px solid var(--gold); border-radius: 22px; overflow: hidden; }
.highlight-grid div { min-height: 108px; display: grid; place-items: center; text-align: center; padding: 18px; font-weight: 850; color: var(--purple); background: var(--white); border-right: 1px solid rgba(239,151,25,.55); }
.highlight-grid div:last-child { border-right: 0; }

.why-section { background: linear-gradient(135deg, var(--purple), #17165b); color: var(--white); }
.why-grid { display: grid; grid-template-columns: 110px 1fr; gap: 34px; align-items: center; }
.why-mark {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(239,151,25,.7);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 4.6rem;
  color: var(--gold);
  line-height: 1;
  transform: rotate(-8deg);
}
.eyebrow.light { color: var(--gold); }
.why-section h2 { color: var(--white); max-width: 820px; }
.why-section p:last-child { font-size: 1.15rem; color: rgba(255,255,255,.84); max-width: 800px; }

.contact-section { background: var(--cream-2); }
.contact-grid { display: grid; grid-template-columns: 1fr 420px; gap: 70px; align-items: center; }
.contact-card { padding: 34px; border-radius: 24px; background: var(--white); box-shadow: var(--shadow); border-top: 6px solid var(--gold); }
.contact-card a:not(.btn) { color: var(--purple); font-weight: 850; text-decoration-thickness: 2px; }
.contact-label { margin: 20px 0 2px; color: var(--gold-deep); text-transform: uppercase; letter-spacing: .12em; font-weight: 900; font-size: .75rem; }
.contact-card .contact-label:first-child { margin-top: 0; }
.full { width: 100%; margin-top: 28px; }

footer { padding: 28px 0; background: #05052e; color: rgba(255,255,255,.78); }
.footer-wrap { display: flex; justify-content: space-between; gap: 28px; align-items: center; font-size: .88rem; }
.footer-wrap p { margin: 0; }

@media (max-width: 920px) {
  nav a:not(.nav-cta) { display: none; }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; gap: 34px; padding: 64px 0 70px; }
  .hero-copy { text-align: center; max-width: 780px; margin: 0 auto; }
  .hero-text { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-art { margin-top: 10px; }
  .compass-shell { width: min(260px, 42vw); padding: 18px; }
  .two-card-grid { grid-template-columns: 1fr; }
  .split-grid, .contact-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .highlight-grid { grid-template-columns: 1fr 1fr; }
  .highlight-grid div { border-bottom: 1px solid rgba(239,151,25,.55); }
  .why-grid { grid-template-columns: 1fr; gap: 22px; }
  .why-mark { width: 68px; height: 68px; font-size: 3.6rem; }
  .contact-grid { gap: 30px; }
  .footer-wrap { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 30px, 1120px); }
  .nav-wrap { min-height: 78px; gap: 16px; }
  .brand img { width: 190px; }
  .nav-cta { padding: 9px 15px; font-size: .86rem; }
  h1 { font-size: clamp(2.65rem, 12vw, 4rem); }
  .hero-grid { padding: 54px 0 60px; }
  .hero-art { display: none; }
  .section { padding: 68px 0; }
  .info-card { padding: 30px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 135px; }
  .highlight-grid { grid-template-columns: 1fr; }
  .highlight-grid div { border-right: 0; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
}
