:root {
  --navy: #061c38;
  --navy-2: #0b2c55;
  --gold: #d7932f;
  --cream: #f7f3eb;
  --white: #ffffff;
  --text: #182235;
  --muted: #607087;
  --line: #dfe5eb;
  --shadow: 0 20px 60px rgba(6, 28, 56, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}
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;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(6,28,56,.08);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 76px; }
.brand { font-size: 1.1rem; font-weight: 800; letter-spacing: .08em; color: var(--navy); }
.brand span { color: var(--gold); }
.site-nav { display: flex; align-items: center; gap: 28px; font-weight: 600; }
.site-nav a:hover { color: var(--gold); }
.nav-cta { background: var(--navy); color: white !important; padding: 10px 18px; border-radius: 999px; }
.menu-toggle { display: none; border: 0; background: none; font-size: 1.6rem; color: var(--navy); }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 15%, rgba(215,147,47,.18), transparent 28%),
    linear-gradient(135deg, #f9fbfd 0%, #ffffff 55%, #f7f3eb 100%);
  padding: 88px 0 76px;
}
.hero::after {
  content: "";
  position: absolute;
  right: -160px;
  bottom: -260px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(215,147,47,.3);
  border-radius: 50%;
}
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 72px; align-items: center; }
.eyebrow { margin: 0 0 16px; color: var(--gold); font-weight: 800; letter-spacing: .08em; text-transform: uppercase; font-size: .82rem; }
h1, h2, h3 { color: var(--navy); line-height: 1.08; margin-top: 0; }
h1 { font-size: clamp(3.2rem, 7vw, 6.6rem); letter-spacing: -.055em; margin-bottom: 24px; }
h2 { font-size: clamp(2.2rem, 4vw, 4rem); letter-spacing: -.035em; margin-bottom: 18px; }
h3 { font-size: 1.25rem; }
.hero-lead { font-size: 1.2rem; color: var(--muted); max-width: 680px; }
.hero-actions { display: flex; gap: 14px; margin: 34px 0 38px; flex-wrap: wrap; }
.btn { display: inline-flex; justify-content: center; align-items: center; padding: 14px 22px; border-radius: 999px; font-weight: 800; border: 1px solid transparent; cursor: pointer; }
.btn-primary { background: var(--navy); color: white; }
.btn-primary:hover { background: var(--navy-2); transform: translateY(-1px); }
.btn-secondary { border-color: var(--navy); color: var(--navy); background: transparent; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.hero-stats div { border-left: 3px solid var(--gold); padding-left: 14px; }
.hero-stats strong { display: block; color: var(--navy); font-size: 1.45rem; }
.hero-stats span { color: var(--muted); font-size: .9rem; }
.hero-visual { position: relative; }
.portrait-frame { border-radius: 34px; overflow: hidden; box-shadow: var(--shadow); position: relative; }
.portrait-frame::after { content:""; position:absolute; inset:0; border:1px solid rgba(255,255,255,.4); border-radius:34px; }
.portrait-frame img { aspect-ratio: 4 / 5; object-fit: cover; }
.floating-card { position: absolute; left: -34px; bottom: 34px; background: white; border-radius: 18px; padding: 16px 18px; box-shadow: var(--shadow); display: flex; gap: 12px; width: min(360px, 85%); align-items: center; }
.floating-card .dot { width: 12px; height: 12px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 7px rgba(215,147,47,.16); flex: 0 0 auto; }
.floating-card strong, .floating-card small { display: block; }
.floating-card small { color: var(--muted); margin-top: 3px; }

.service-band { background: var(--navy); color: white; }
.service-band-grid { min-height: 76px; display: grid; grid-template-columns: repeat(5, 1fr); align-items: center; text-align: center; gap: 18px; font-weight: 700; }
.service-band-grid span + span { border-left: 1px solid rgba(255,255,255,.18); }

.section { padding: 100px 0; }
.section-heading { max-width: 760px; margin-bottom: 48px; }
.section-heading > p:last-child { color: var(--muted); font-size: 1.05rem; }
.service-grid { display: grid; grid-template-columns: repeat(10, 1fr); gap: 22px; }
.service-card { grid-column: span 5; padding: 30px; border: 1px solid var(--line); border-radius: 22px; background: white; box-shadow: 0 10px 30px rgba(6,28,56,.05); }
.service-card:last-child { grid-column: 3 / span 6; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(215,147,47,.45); }
.icon { width: 52px; height: 52px; border-radius: 14px; background: var(--navy); color: var(--gold); display: grid; place-items: center; font-weight: 800; font-size: 1.2rem; margin-bottom: 22px; }
.service-card ul { padding-left: 18px; margin-bottom: 0; color: var(--muted); }
.service-card li + li { margin-top: 8px; }

.section-dark { background: var(--navy); color: white; }
.section-heading.light h2 { color: white; }
.outcome-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.outcome { border: 1px solid rgba(255,255,255,.13); border-radius: 18px; padding: 24px; background: rgba(255,255,255,.04); }
.outcome::before { content:""; display:block; width:42px; height:3px; background:var(--gold); margin-bottom:18px; }
.outcome strong { display: block; font-size: 1.15rem; margin-bottom: 8px; }
.outcome span { color: #b9c6d8; }

.overview-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 72px; align-items: center; }
.overview-copy p:not(.eyebrow) { color: var(--muted); font-size: 1.05rem; margin-bottom: 30px; }
.overview-preview { display: block; padding: 12px; background: white; border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow); transition: transform .25s ease, box-shadow .25s ease; }
.overview-preview:hover { transform: translateY(-4px); box-shadow: 0 28px 70px rgba(6,28,56,.18); }
.overview-preview img { width: 100%; border-radius: 14px; }

.about-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 72px; align-items: center; }
.about-image img { border-radius: 28px; box-shadow: var(--shadow); }
.about-copy > p { color: var(--muted); font-size: 1.05rem; }
.impact-list { margin-top: 34px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.impact-list div { padding: 18px; background: var(--cream); border-radius: 14px; }
.impact-list strong { display: block; font-size: 1.45rem; color: var(--navy); }
.impact-list span { color: var(--muted); }

.industries { background: var(--cream); }
.industry-pills { display: flex; flex-wrap: wrap; gap: 14px; }
.industry-pills span { padding: 14px 20px; background: var(--navy); color: white; border-radius: 999px; font-weight: 700; }

.contact { background: linear-gradient(145deg, #fff 0%, #f6f8fb 100%); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: start; }
.contact-copy p { color: var(--muted); }
.contact-links { display: flex; flex-direction: column; gap: 10px; margin-top: 28px; font-weight: 700; color: var(--navy); }
.contact-links a:hover { color: var(--gold); }
.contact-form { background: white; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow); padding: 28px; }
.form-honeypot { display: none; }
.contact-form label { display: block; font-weight: 700; margin-bottom: 16px; }
.contact-form input, .contact-form textarea { width: 100%; margin-top: 8px; border: 1px solid #ccd6e2; border-radius: 12px; padding: 13px 14px; font: inherit; color: var(--text); background: #fbfcfe; }
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid rgba(215,147,47,.35); border-color: var(--gold); }

.thank-you-page { min-height: 100vh; display: grid; place-items: center; padding: 2rem; background: var(--navy); }
.thank-you-card { width: min(680px, 100%); padding: clamp(2rem, 5vw, 4rem); border: 1px solid rgba(211,175,100,.5); background: rgba(255,255,255,.06); color: white; text-align: center; }
.thank-you-card h1 { margin: .75rem 0 1rem; }
.thank-you-card p:not(.eyebrow) { margin-bottom: 2rem; color: rgba(255,255,255,.8); }

.site-footer { background: #031326; color: white; padding: 32px 0; }
.footer-grid { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.site-footer strong { letter-spacing: .08em; }
.site-footer p { margin: 6px 0 0; color: #b6c2d1; font-family: "Playfair Display", serif; font-style: italic; }
.footer-right { color: #b6c2d1; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .hero-grid, .about-grid, .contact-grid, .overview-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 640px; }
  .service-band-grid { grid-template-columns: 1fr 1fr; padding: 18px 0; }
  .service-band-grid span + span { border-left: 0; }
  .outcome-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, 1180px); }
  .menu-toggle { display: block; }
  .site-nav { position: absolute; top: 76px; left: 14px; right: 14px; display: none; flex-direction: column; align-items: stretch; gap: 0; background: white; padding: 14px; border-radius: 16px; box-shadow: var(--shadow); }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px 10px; }
  .nav-cta { text-align: center; margin-top: 6px; }
  .hero { padding-top: 62px; }
  .hero-grid { gap: 42px; }
  h1 { font-size: 3.15rem; }
  .hero-stats, .outcome-grid, .impact-list { grid-template-columns: 1fr; }
  .floating-card { position: static; margin-top: 14px; width: 100%; }
  .service-grid { display: block; }
  .service-card { margin-bottom: 18px; }
  .service-band-grid { grid-template-columns: 1fr; text-align: left; }
  .section { padding: 72px 0; }
  .footer-grid { flex-direction: column; align-items: flex-start; }
}
