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

:root {
  --navy:   #1A2E45;
  --brand:  #2B4C7E;
  --gold:   #C4922A;
  --surf:   #F0F4FA;
  --slate:  #4A5568;
  --border: #C8D8EE;
  --r:      6px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--slate);
  background: #fff;
  line-height: 1.7;
}

/* ── Nav ── */
nav {
  background: var(--navy);
  position: sticky; top: 0; z-index: 100;
  border-bottom: 3px solid var(--gold);
}
.nav-inner {
  max-width: 1120px; margin: 0 auto;
  padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo img { height: 40px; width: auto; display: block; }
.brand-name { display: block; font-family: 'Inter', sans-serif; font-size: .9rem; font-weight: 700; color: #fff; letter-spacing: .01em; }
.brand-sub  { display: block; font-size: .7rem; color: rgba(255,255,255,.6); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: .82rem; font-weight: 500;
  color: rgba(255,255,255,.8);
  text-decoration: none; padding: 6px 12px; border-radius: 4px;
  transition: color .15s, background .15s;
}
.nav-links a:hover, .nav-links a.active { color: #fff; background: rgba(255,255,255,.1); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; }

/* ── Layout ── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 28px; }
.section    { padding: 72px 0; }
.section--alt { background: var(--surf); }

/* ── Typography ── */
h1 { font-family: 'Lora', serif; font-size: clamp(1.7rem, 3.5vw, 2.4rem); color: var(--navy); line-height: 1.2; }
h2 { font-family: 'Lora', serif; font-size: clamp(1.3rem, 2.5vw, 1.8rem); color: var(--navy); }
h3 { font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 700; color: var(--navy); }
h4 { font-family: 'Inter', sans-serif; font-size: .88rem; font-weight: 700; color: var(--navy); }
p  { font-family: 'Inter', sans-serif; }

.eyebrow {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--gold); margin-bottom: 10px;
}
hr.rule { border: none; border-top: 2px solid var(--gold); width: 48px; margin: 14px 0 28px; }

/* ── Buttons ── */
.btn {
  display: inline-block; padding: 11px 24px;
  border-radius: var(--r); font-family: 'Inter', sans-serif;
  font-size: .85rem; font-weight: 600;
  text-decoration: none; cursor: pointer; border: none;
  transition: opacity .15s, transform .1s;
}
.btn:hover { opacity: .88; transform: translateY(-1px); }
.btn-primary { background: var(--brand); color: #fff; }
.btn-gold    { background: var(--gold);  color: #fff; }
.btn-outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.5); }
.btn-sm      { padding: 8px 18px; font-size: .78rem; }

/* ── Page header ── */
.page-header {
  background: var(--navy);
  padding: 52px 0 48px;
  border-bottom: 3px solid var(--gold);
}
.page-header h1 { color: #fff; }
.page-header .eyebrow { color: rgba(255,255,255,.55); }

/* ── Hero ── */
.hero { background: var(--navy); padding: 80px 0 72px; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.hero h1 { color: #fff; margin-bottom: 18px; }
.hero-tagline { font-size: 1.05rem; color: rgba(255,255,255,.7); margin-bottom: 32px; font-family: 'Inter', sans-serif; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.stat-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.stat-pill {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r); padding: 18px 16px;
}
.pill-num   { font-family: 'Lora', serif; font-size: 1.6rem; font-weight: 700; color: var(--gold); display: block; margin-bottom: 4px; }
.pill-label { font-size: .75rem; color: rgba(255,255,255,.65); font-family: 'Inter', sans-serif; line-height: 1.4; }

/* ── Prop strip ── */
.prop-strip { background: var(--brand); padding: 28px 0; }
.prop-inner {
  max-width: 1120px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.prop-inner p { color: rgba(255,255,255,.9); font-style: italic; font-size: 1rem; font-family: 'Lora', serif; }

/* ── Pillars grid ── */
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; }
.pillar-card { border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; }
.pillar-head { background: var(--surf); padding: 18px 20px; display: flex; align-items: flex-start; gap: 14px; border-bottom: 1px solid var(--border); }
.pillar-num  { font-family: 'Lora', serif; font-size: 1.3rem; font-weight: 700; color: var(--gold); flex-shrink: 0; line-height: 1; margin-top: 2px; }
.pillar-head h3 { font-size: .88rem; line-height: 1.35; }
.pillar-body { padding: 16px 20px; }
.pillar-body p.pillar-intro { font-size: .82rem; color: var(--slate); margin-bottom: 12px; border-bottom: 1px solid var(--border); padding-bottom: 12px; line-height: 1.6; }
.pillar-body ul { list-style: none; padding: 0; }
.pillar-body ul li { font-size: .82rem; color: var(--slate); padding: 4px 0 4px 14px; position: relative; line-height: 1.45; }
.pillar-body ul li::before { content: ''; position: absolute; left: 0; top: 11px; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

/* ── Markets ── */
.market-mini-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 28px; }
.market-mini { border: 1px solid var(--border); border-radius: var(--r); padding: 18px 16px; background: #fff; }
.market-mini .tag { display: block; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; margin-bottom: 8px; }
.market-mini p { font-size: .82rem; color: var(--slate); line-height: 1.55; }
.market-list { display: flex; flex-direction: column; gap: 0; }
.market-row { display: grid; grid-template-columns: 180px 1fr; border-bottom: 1px solid var(--border); padding: 28px 0; gap: 32px; }
.market-num { display: flex; flex-direction: column; gap: 4px; }
.mn { font-family: 'Lora', serif; font-size: 2rem; font-weight: 700; color: var(--brand); line-height: 1; }
.ml { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--gold); }
.market-body h3 { font-size: 1rem; margin-bottom: 8px; }
.market-body p  { font-size: .88rem; color: var(--slate); }

/* ── CTA banner ── */
.cta-banner { background: var(--brand); padding: 56px 0; text-align: center; }
.cta-banner h2 { color: #fff; margin-bottom: 8px; }
.cta-banner p  { color: rgba(255,255,255,.75); margin-bottom: 24px; font-size: .95rem; font-family: 'Inter', sans-serif; }

/* ── About grid ── */
.about-grid { display: grid; grid-template-columns: 1fr 360px; gap: 52px; }
.quote-block { background: var(--surf); border-left: 3px solid var(--gold); padding: 16px 20px; margin: 24px 0; border-radius: 0 var(--r) var(--r) 0; }
.quote-block p { font-family: 'Lora', serif; font-style: italic; color: var(--navy); font-size: .95rem; }

/* ── Info cards ── */
.info-card { background: var(--surf); border: 1px solid var(--border); border-radius: var(--r); padding: 24px; margin-bottom: 20px; }
.info-card h3 { font-size: .88rem; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.contact-row { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; font-size: .85rem; }
.contact-icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }

/* ── Pricing grid ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 28px; }
.price-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r); padding: 22px 20px; }
.price-card h3 { font-size: .88rem; color: var(--brand); margin-bottom: 8px; }
.price-card p  { font-size: .82rem; color: var(--slate); line-height: 1.6; }

/* ── Contact ── */
.contact-grid { display: grid; grid-template-columns: 1fr 340px; gap: 48px; }
.form-group  { margin-bottom: 18px; }
.form-row    { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label        { display: block; font-size: .78rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; font-family: 'Inter', sans-serif; }
input, select, textarea {
  width: 100%; padding: 10px 12px;
  border: 1px solid var(--border); border-radius: var(--r);
  font-size: .88rem; font-family: 'Inter', sans-serif; color: var(--slate);
  background: #fff; transition: border-color .15s;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--brand); }
textarea { min-height: 120px; resize: vertical; }
.steps { display: flex; flex-direction: column; gap: 14px; }
.step  { display: flex; align-items: flex-start; gap: 14px; }
.step-dot { width: 26px; height: 26px; border-radius: 50%; background: var(--brand); color: #fff; font-size: .75rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-family: 'Inter', sans-serif; }
.step h4 { font-size: .82rem; margin-bottom: 3px; }
.step p  { font-size: .78rem; color: var(--slate); }

/* ── Legal ── */
.legal-body h2 { font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 700; color: var(--navy); margin-top: 32px; margin-bottom: 8px; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body p  { font-size: .9rem; line-height: 1.75; margin-bottom: .9rem; font-family: 'Inter', sans-serif; }
.legal-body ul { list-style: disc; padding-left: 24px; margin-bottom: 1rem; }
.legal-body ul li { font-size: .9rem; line-height: 1.7; margin-bottom: 4px; font-family: 'Inter', sans-serif; }
.legal-body a  { color: var(--brand); }
.legal-meta { background: var(--surf); border: 1px solid var(--border); border-radius: var(--r); padding: 14px 18px; margin-bottom: 32px; font-size: .8rem; color: var(--slate); font-family: 'Inter', sans-serif; }

/* ── Case studies ── */
.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 40px; }
.filter-btn { padding: 6px 16px; border-radius: 20px; border: 1px solid var(--border); background: transparent; font-size: .78rem; color: var(--slate); cursor: pointer; transition: background .15s, color .15s; font-family: 'Inter', sans-serif; }
.filter-btn:hover, .filter-btn.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.cs-narrative { display: grid; grid-template-columns: 1fr 240px; border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; margin-bottom: 32px; background: #fff; }
.cs-body { padding: 32px 36px; }
.cs-body .cs-label { font-size: .68rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--brand); margin-bottom: 8px; font-family: 'Inter', sans-serif; }
.cs-body h2 { font-size: 1.2rem; color: var(--navy); margin-bottom: 4px; }
.cs-body .cs-org { font-size: .8rem; color: var(--slate); margin-bottom: 20px; font-style: italic; font-family: 'Inter', sans-serif; }
.cs-body .cs-sh { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--brand); margin: 16px 0 4px; font-family: 'Inter', sans-serif; }
.cs-body p { font-size: .88rem; line-height: 1.72; color: var(--slate); margin-bottom: 10px; font-family: 'Inter', sans-serif; }
.cs-sidebar { background: var(--navy); padding: 28px 22px; display: flex; flex-direction: column; gap: 22px; }
.stat-item { text-align: center; }
.stat-num   { font-family: 'Lora', serif; font-size: 1.55rem; font-weight: 700; color: var(--gold); display: block; line-height: 1.1; margin-bottom: 4px; }
.stat-label { font-size: .68rem; color: rgba(255,255,255,.65); line-height: 1.4; font-family: 'Inter', sans-serif; }
.sidebar-tags { padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12); margin-top: auto; }
.sidebar-tags-label { font-size: .64rem; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.4); margin-bottom: 7px; font-family: 'Inter', sans-serif; }
.sidebar-tag { font-size: .67rem; padding: 3px 9px; border-radius: 10px; background: rgba(255,255,255,.1); color: rgba(255,255,255,.8); display: inline-block; margin: 2px 2px 0 0; font-family: 'Inter', sans-serif; }
.cs-three-panel { border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; margin-bottom: 32px; background: #fff; }
.cs-panel-header { background: var(--navy); padding: 22px 32px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.cs-panel-header h2 { font-size: 1.05rem; color: #fff; margin: 0; }
.cs-panel-meta { font-size: .76rem; color: rgba(255,255,255,.6); text-align: right; flex-shrink: 0; font-family: 'Inter', sans-serif; }
.cs-panel-meta strong { display: block; color: var(--gold); font-size: .8rem; }
.cs-panels { display: grid; grid-template-columns: 1fr 1fr 1fr; }
.cs-panel { padding: 24px; border-right: 1px solid var(--border); }
.cs-panel:last-child { border-right: none; background: var(--surf); }
.cs-panel .pn { width: 26px; height: 26px; border-radius: 50%; background: var(--surf); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: .7rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; font-family: 'Inter', sans-serif; }
.cs-panel:last-child .pn { background: #fff; }
.cs-panel h3 { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--brand); margin-bottom: 10px; font-family: 'Inter', sans-serif; }
.cs-panel p { font-size: .83rem; line-height: 1.68; color: var(--slate); margin-bottom: 8px; font-family: 'Inter', sans-serif; }
.os { font-family: 'Lora', serif; font-size: 1.25rem; font-weight: 700; color: var(--navy); display: block; margin-bottom: 2px; }
.ol { font-size: .73rem; color: var(--slate); margin-bottom: 12px; display: block; font-family: 'Inter', sans-serif; }

/* ── Footer ── */
footer { background: var(--navy); padding: 52px 0 0; font-family: 'Inter', sans-serif; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand .fn { display: block; font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.footer-brand p { font-size: .78rem; color: rgba(255,255,255,.55); line-height: 1.65; }
.footer-col h4 { font-size: .72rem; text-transform: uppercase; letter-spacing: .09em; color: rgba(255,255,255,.4); margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 7px; }
.footer-col ul li a { font-size: .8rem; color: rgba(255,255,255,.65); text-decoration: none; }
.footer-col ul li a:hover { color: #fff; }
.footer-col address { font-style: normal; font-size: .78rem; color: rgba(255,255,255,.55); line-height: 1.7; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; font-size: .73rem; color: rgba(255,255,255,.35); }
.footer-bottom a { color: rgba(255,255,255,.45); text-decoration: none; margin-left: 18px; }
.footer-bottom a:hover { color: #fff; }

/* ── Timeline ── */
.timeline { display: flex; flex-direction: column; gap: 0; }
.tl-item  { display: flex; gap: 14px; padding: 10px 0; border-bottom: 1px solid var(--border); }
.tl-item:last-child { border-bottom: none; }
.tl-dot   { width: 10px; height: 10px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 6px; }
.tl-date  { font-size: .72rem; color: var(--gold); font-weight: 600; margin-bottom: 2px; font-family: 'Inter', sans-serif; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .stat-pillars { grid-template-columns: 1fr 1fr; }
  .pillars-grid  { grid-template-columns: 1fr 1fr; }
  .market-mini-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid  { grid-template-columns: 1fr 1fr; }
  .cs-narrative  { grid-template-columns: 1fr; }
  .cs-sidebar    { flex-direction: row; flex-wrap: wrap; }
  .cs-panels     { grid-template-columns: 1fr; }
  .cs-panel      { border-right: none; border-bottom: 1px solid var(--border); }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .market-row    { grid-template-columns: 1fr; gap: 8px; }
  .prop-inner    { flex-direction: column; text-align: center; }
}
@media (max-width: 600px) {
  .pillars-grid, .pricing-grid, .market-mini-grid { grid-template-columns: 1fr; }
  .form-row      { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; }
  .nav-links     { display: none; }
  .hamburger     { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 68px; left: 0; right: 0;
    background: var(--navy); padding: 16px 28px;
    border-top: 1px solid rgba(255,255,255,.1); z-index: 99;
  }
  .nav-links.open a { display: block; margin: 4px 0; }
}

/* Force Inter on all footer and nav text */
footer, footer *, nav .brand-name, nav .brand-sub {
  font-family: 'Inter', sans-serif !important;
}
/* Lora permitted only on these specific elements */
h1, h2, .hero h1, .cs-header h3, .quote-block p, .prop-inner p,
.stat-pill .pill-num, .mn, .os {
  font-family: 'Lora', serif;
}

/* Enforce Inter on footer and nav — no Lora exceptions */
footer, footer * { font-family: "Inter", sans-serif !important; }
nav .brand-name, nav .brand-sub { font-family: "Inter", sans-serif !important; }
