@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --navy: #1E3A8A;
  --navy-dark: #152a63;
  --gold: #CA8A04;
  --gold-light: #FACC15;
  --white: #FFFFFF;
  --cream: #FDFCF8;
  --charcoal: #18181B;
  --grey: #6B7280;
  --grey-light: #E5E7EB;
  --display: 'Playfair Display', Georgia, serif;
  --body: 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* TOPBAR */
.topbar { background: var(--charcoal); color: #d4d4d8; font-size: 13px; padding: 10px 0; border-bottom: 2px solid var(--gold); }
.topbar-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar-tagline { display: flex; align-items: center; gap: 8px; font-style: italic; }
.topbar-tagline svg { width: 14px; height: 14px; color: var(--gold); }
.topbar-meta { display: flex; gap: 24px; }
.topbar-meta span { display: flex; align-items: center; gap: 6px; }

/* NAV */
.nav { background: var(--white); border-bottom: 1px solid var(--grey-light); padding: 18px 0; position: sticky; top: 0; z-index: 100; }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.logo-mark { width: 44px; height: 44px; background: var(--navy); color: var(--gold); display: grid; place-items: center; font-family: var(--display); font-size: 22px; font-weight: 700; font-style: italic; border: 1.5px solid var(--gold); position: relative; }
.logo-mark::before { content: ''; position: absolute; inset: 3px; border: 1px solid rgba(202,138,4,0.4); }
.logo-text { font-family: var(--display); font-size: 22px; font-weight: 700; color: var(--charcoal); letter-spacing: 0.3px; }
.logo-text span { color: var(--gold); font-style: italic; font-weight: 400; }
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a { color: var(--charcoal); font-weight: 500; font-size: 15px; }
.nav-links a:hover { color: var(--gold); }
.nav-cta { background: var(--navy); color: var(--white) !important; padding: 11px 22px; font-size: 14px; letter-spacing: 0.5px; text-transform: uppercase; border: 1px solid var(--gold); }
.nav-cta:hover { background: var(--gold); color: var(--charcoal) !important; }

/* HERO */
.hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%); color: var(--white); padding: 90px 0 100px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: 0; right: 0; width: 50%; height: 100%; background: radial-gradient(circle at 70% 30%, rgba(202,138,4,0.15) 0%, transparent 60%); pointer-events: none; }
.hero-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-eyebrow { display: inline-block; color: var(--gold); font-size: 12px; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 22px; padding: 8px 16px; border: 1px solid var(--gold); }
.hero h1 { font-family: var(--display); font-size: clamp(36px, 5vw, 60px); line-height: 1.08; font-weight: 700; margin-bottom: 24px; letter-spacing: -0.5px; }
.hero h1 em { color: var(--gold); font-style: italic; font-weight: 400; }
.hero-lede { font-size: 19px; color: rgba(255,255,255,0.85); max-width: 560px; margin-bottom: 32px; line-height: 1.55; }
.hero-actions { display: flex; gap: 14px; margin-bottom: 36px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 28px; font-size: 14px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; border: 1.5px solid; transition: all 0.25s; cursor: pointer; }
.btn-primary { background: var(--gold); color: var(--charcoal); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn-secondary { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }
.hero-points { list-style: none; display: grid; grid-template-columns: repeat(2,1fr); gap: 12px 24px; max-width: 540px; }
.hero-points li { color: rgba(255,255,255,0.85); font-size: 14px; padding-left: 22px; position: relative; }
.hero-points li::before { content: '✦'; position: absolute; left: 0; color: var(--gold); }
.hero-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(202,138,4,0.3); padding: 36px 32px; backdrop-filter: blur(8px); position: relative; }
.hero-card::before, .hero-card::after { content: ''; position: absolute; width: 18px; height: 18px; border: 1.5px solid var(--gold); }
.hero-card::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.hero-card::after { bottom: -1px; right: -1px; border-left: none; border-top: none; }
.hero-card .quote { font-family: var(--display); font-style: italic; font-size: 19px; color: rgba(255,255,255,0.95); line-height: 1.55; margin-bottom: 22px; }
.hero-card .attr { font-size: 12px; color: var(--gold); letter-spacing: 1.5px; text-transform: uppercase; }
.hero-card .attr strong { display: block; color: rgba(255,255,255,0.7); font-weight: 400; text-transform: none; letter-spacing: 0; font-size: 13px; margin-top: 4px; }

/* TRUST/STATS */
.trust { background: var(--white); border-bottom: 1px solid var(--grey-light); }
.trust-grid { max-width: 1200px; margin: 0 auto; padding: 50px 24px; display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.trust-item { text-align: center; padding: 0 20px; border-right: 1px solid var(--grey-light); }
.trust-item:last-child { border-right: none; }
.trust-item .num { font-family: var(--display); font-size: 38px; color: var(--navy); font-weight: 700; margin-bottom: 8px; font-style: italic; }
.trust-item .lbl { font-size: 13px; color: var(--grey); letter-spacing: 0.3px; }

/* SECTION */
section { padding: 80px 0; }
.section-head { max-width: 760px; margin: 0 auto 60px; text-align: center; }
.eyebrow { display: inline-block; color: var(--gold); font-size: 12px; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 18px; }
.rule { width: 50px; height: 1px; background: var(--gold); margin: 0 auto 22px; }
.section-head h2 { font-family: var(--display); font-size: clamp(30px,3.5vw,42px); color: var(--charcoal); margin-bottom: 18px; line-height: 1.15; }
.section-head h2 em { color: var(--navy); font-style: italic; }
.section-head p { color: var(--grey); font-size: 17px; }

/* SECTORS / SERVICES GRID */
.sectors-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.sector-card { background: var(--white); padding: 32px 28px; border: 1px solid var(--grey-light); position: relative; transition: all 0.25s; }
.sector-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.sector-card:hover { box-shadow: 0 8px 32px rgba(30,58,138,0.08); border-color: var(--gold); }
.sector-card:hover::before { transform: scaleX(1); }
.sector-card .roman { font-family: var(--display); font-style: italic; font-size: 14px; color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; display: block; }
.sector-card h3 { font-family: var(--display); font-size: 21px; color: var(--navy); margin-bottom: 10px; line-height: 1.25; }
.sector-card p { color: var(--grey); font-size: 14.5px; }

/* WHY/PILLARS */
.why-bg { background: var(--charcoal); color: var(--white); }
.why-bg .section-head h2 { color: var(--white); }
.why-bg .section-head h2 em { color: var(--gold); }
.why-bg .section-head p { color: rgba(255,255,255,0.7); }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.why-card { padding: 36px 28px; border: 1px solid rgba(255,255,255,0.1); position: relative; }
.icon-pill { width: 52px; height: 52px; border: 1px solid var(--gold); display: grid; place-items: center; margin-bottom: 22px; color: var(--gold); }
.icon-pill svg { width: 24px; height: 24px; }
.why-card h3 { font-family: var(--display); font-style: italic; font-size: 22px; color: var(--gold); margin-bottom: 12px; }
.why-card p { color: rgba(255,255,255,0.75); font-size: 14.5px; }

/* PROCESS */
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.process-step { background: var(--navy); color: var(--white); padding: 36px 28px; position: relative; }
.process-step::before { content: ''; position: absolute; top: 0; left: 0; width: 40px; height: 3px; background: var(--gold); }
.step-num { font-family: var(--display); font-style: italic; font-size: 36px; color: var(--gold); display: block; margin-bottom: 18px; line-height: 1; }
.process-step h3 { font-family: var(--display); font-size: 19px; margin-bottom: 10px; }
.process-step p { color: rgba(255,255,255,0.75); font-size: 14px; }

/* PROSE */
.prose-section { background: var(--white); }
.prose-wrap { max-width: 760px; margin: 0 auto; }
.prose-wrap h2 { font-family: var(--display); font-size: 34px; color: var(--charcoal); margin-bottom: 24px; line-height: 1.2; }
.prose-wrap h2 em { color: var(--navy); font-style: italic; }
.prose-wrap h3 { font-family: var(--display); font-size: 22px; color: var(--navy); margin: 32px 0 12px; font-style: italic; }
.prose-wrap p { color: #3f3f46; margin-bottom: 18px; font-size: 16.5px; }
.prose-wrap ul { padding-left: 24px; margin-bottom: 20px; }
.prose-wrap li { color: #3f3f46; margin-bottom: 8px; }

/* CTA */
.cta-section { background: linear-gradient(135deg, var(--navy) 0%, var(--charcoal) 100%); color: var(--white); text-align: center; }
.cta-section h2 { font-family: var(--display); font-size: clamp(30px,3.5vw,44px); color: var(--white); margin-bottom: 18px; }
.cta-section h2 em { color: var(--gold); font-style: italic; }
.cta-section p { color: rgba(255,255,255,0.8); font-size: 18px; max-width: 600px; margin: 0 auto 32px; }

/* FOOTER */
.footer { background: var(--charcoal); color: rgba(255,255,255,0.7); padding: 60px 0 30px; border-top: 2px solid var(--gold); }
.footer-grid { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand { font-family: var(--display); color: var(--white); font-size: 22px; margin-bottom: 12px; }
.footer-brand em { color: var(--gold); font-style: italic; }
.footer p { font-size: 14px; line-height: 1.7; }
.footer h4 { color: var(--gold); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; font-weight: 600; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 8px; }
.footer a { color: rgba(255,255,255,0.7); font-size: 14px; }
.footer a:hover { color: var(--gold); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding: 24px 24px 0; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; font-size: 13px; flex-wrap: wrap; gap: 12px; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; align-items: start; }
.contact-info h3 { font-family: var(--display); font-size: 26px; color: var(--navy); margin-bottom: 16px; font-style: italic; }
.contact-info p { color: var(--grey); margin-bottom: 24px; }
.contact-info .info-row { padding: 18px 0; border-top: 1px solid var(--grey-light); }
.contact-info .info-row:last-child { border-bottom: 1px solid var(--grey-light); }
.contact-info .info-row strong { display: block; color: var(--charcoal); font-size: 13px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; }
.contact-info .info-row span { color: var(--grey); font-size: 15px; }
.form-wrap { background: var(--white); border: 1px solid var(--grey-light); padding: 32px; }
.form-wrap iframe { border: none; width: 100%; min-height: 580px; }

@media (max-width: 900px) {
  .hero-inner, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .trust-grid { grid-template-columns: repeat(2,1fr); gap: 30px 0; }
  .trust-item:nth-child(2) { border-right: none; }
  .sectors-grid, .why-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { gap: 16px; font-size: 14px; }
  .nav-links li:not(:last-child):not(:nth-last-child(2)) { display: none; }
  .topbar-meta { display: none; }
}
