/* ================================
   RESET & VARIABLES
================================ */
:root{
  /* Layout */
  --max: 1180px;
  --header-h: 92px;
  --logo-h: 74px;

  /* Backgrounds */
  --bg:#f5f7fb;
  --white:#ffffff;
  --surface:#ffffff;
  --surface-2:#f8fafc;

  /* Text */
  --text:#0b1220;      /* premium ink */
  --muted:#475569;

  /* Borders */
  --border:rgba(15,23,42,.14);
  --border-2:rgba(15,23,42,.10);

  /* Primary (stronger) */
  --primary:#2563eb;       /* blue-600 */
  --primary-dark:#1e40af;  /* blue-800 */

  /* Shadows (premium depth) */
  --shadow-sm: 0 1px 2px rgba(2,6,23,.06);
  --shadow:    0 18px 48px rgba(2,6,23,.12);
  --shadow-lg: 0 26px 70px rgba(2,6,23,.14);
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }

body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height:1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

/* ================================
   LAYOUT
================================ */
.container{
  width:100%;
  max-width:var(--max);
  margin:0 auto;
  padding:0 22px;
}

/* ================================
   HEADER (SINGLE SOURCE OF TRUTH)
================================ */
.site-header{
  background: rgba(255,255,255,.80);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(15,23,42,.10);
  box-shadow: 0 10px 30px rgba(2,6,23,.06);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .header-inner{
  height: var(--header-h);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 22px;
}

.brand{
  display:flex;
  align-items:center;
  height: 100%;
  flex: 0 0 auto;
}

.brand__logo{
  height: var(--logo-h);
  width: auto;
  display:block;
  object-fit: contain;
}

.site-nav{
  display:flex;
  align-items:center;
  gap: 24px;
}

.nav-link{
  font-weight:800;
  font-size:14px;
  color: rgba(15,23,42,.72);
  padding: 10px 10px;
  border-radius: 12px;
}

.nav-link:hover{
  color: var(--primary);
  background: rgba(37,99,235,.06);
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 18px;
  font-size:14px;
  font-weight:900;
  border-radius:14px;
  border:1px solid var(--border);
  background:#fff;
  cursor:pointer;
  text-decoration:none;
  box-shadow: var(--shadow-sm);
  transition: transform .08s ease, box-shadow .12s ease, background .12s ease;
}

.btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(2,6,23,.10);
}

.btn--primary,
.btn-primary{
  background: linear-gradient(180deg, var(--primary), var(--primary-dark));
  color:#fff;
  border: none;
  box-shadow: 0 18px 46px rgba(37,99,235,.28);
}

.btn--ghost{
  background: rgba(255,255,255,.85);
}

.btn--ghost:hover{
  background: rgba(37,99,235,.06);
}

@media (max-width: 1024px){
  :root{
    --header-h: 84px;
    --logo-h: 64px;
  }
  .site-nav{ gap: 18px; }
}

@media (max-width: 768px){
  :root{
    --header-h: 68px;
    --logo-h: 50px;
  }
  .site-nav{ display:none; }
  .btn-primary{ padding: 9px 14px; border-radius: 12px; }
}

/* ================================
   HERO
================================ */
.hero{
  background:
    radial-gradient(1200px 560px at 72% 18%, rgba(37,99,235,.26), transparent 58%),
    radial-gradient(900px 480px at 28% 16%, rgba(56,189,248,.14), transparent 55%),
    linear-gradient(180deg, #f9fbff 0%, #f5f7fb 100%);
  border-bottom: 1px solid var(--border-2);
}

.hero__premiumGrid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:30px;
  padding:46px 0 36px;
  align-items:center;
}

.kicker{
  display:inline-block;
  font-size:12px;
  font-weight:900;
  padding:6px 12px;
  border-radius:999px;
  background: rgba(37,99,235,.08);
  border: 1px solid rgba(37,99,235,.22);
  color: rgba(15,23,42,.78);
  margin-bottom:14px;
  letter-spacing: .01em;
}

.hero__title{
  font-size:44px;
  line-height:1.15;
  margin:0 0 14px;
  font-weight:900;
  letter-spacing: -0.02em;
}

.hero__subtitle{
  color:var(--muted);
  max-width:680px;
  margin-bottom:22px;
  font-size: 16px;
}

.hero__signal{
  color: var(--muted);
  font-weight: 800;
  font-size: 14px;
  margin: 6px 0 14px;
}

.hero__signal .dot{
  margin: 0 8px;
  opacity: .7;
}

.hero__actions{
  display:flex;
  gap:12px;
  margin-bottom:22px;
}

.hero__actions--refined{
  align-items: center;
}

.hero__link{
  font-weight: 900;
  color: rgba(15,23,42,.78);
  padding: 10px 6px;
}

.hero__link:hover{
  color: var(--primary);
  text-decoration: underline;
}

/* HERO IMAGE CARD */
.heroCard{
  background: rgba(255,255,255,.90);
  border-radius:14px;
  overflow:hidden;
  border: 1px solid rgba(15,23,42,.12);
  box-shadow: var(--shadow-lg);
  position:relative;
}

.heroCard--refined{
  border-radius: 14px;
}

.heroCard__img{
  width:100%;
  height:360px;
  object-fit:cover;
  display:block;
  filter:saturate(.98) contrast(1.06);
}

@media (min-width: 1001px){
  .hero__premiumGrid{
    grid-template-columns: 1.15fr .85fr;
    align-items: center;
  }
  .hero__title{ max-width: 18ch; }
  .hero__subtitle{ max-width: 70ch; }
  .hero__visual{ padding-left: 8px; }
}

@media (max-width: 1000px){
  .hero__premiumGrid{
    grid-template-columns: 1fr;
    padding: 34px 0 26px;
  }
  .hero__actions--refined{
    flex-direction: column;
    align-items: flex-start;
  }
  .heroCard__img{ height: 260px; }
}

@media (max-width: 600px){
  .hero__title{ font-size:34px; }
  .heroCard__img{ height: 230px; }
  .hero__subtitle{ font-size: 15px; }
}

/* ================================
   TRUST STRIP
================================ */
.trust{
  background: rgba(255,255,255,.86);
  border-bottom:1px solid var(--border-2);
}

.trust__inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:14px 0;
}

.trust__logos{
  display:flex;
  gap:10px;
  flex-wrap: wrap;
}

.trust__logo{
  padding:8px 14px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  border:1px dashed rgba(15,23,42,.16);
  color:rgba(15,23,42,.62);
  background: rgba(255,255,255,.70);
}

/* ================================
   SECTIONS
================================ */
.section{ padding:42px 0; }

.section--alt{
  background: linear-gradient(180deg, rgba(37,99,235,.06), rgba(255,255,255,0) 55%);
  border-top:1px solid var(--border-2);
  border-bottom:1px solid var(--border-2);
}

.section--muted{
  background: rgba(15, 23, 42, 0.02);
  border-top: 1px solid var(--border-2);
  border-bottom: 1px solid var(--border-2);
}

.section__title{
  font-size:26px;
  font-weight:900;
  margin-bottom:10px;
  letter-spacing: -0.01em;
}

.section__lead{
  color:var(--muted);
  max-width:760px;
  margin-bottom:24px;
}

/* ================================
   APPROACH LIST
================================ */
.approachList{
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.approachItem{
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--border-2);
}

.approachItem:first-child{ border-top: none; }

.approachIcon{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37,99,235,.08);
  border: 1px solid rgba(37,99,235,.18);
  font-size: 18px;
}

.approachTitle{
  font-weight: 900;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.approachText{
  color: var(--muted);
  max-width: 78ch;
}

@media (min-width: 1001px){
  .approachList{
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  .approachItem{
    border-top: none;
    padding: 0;
  }
}

/* ================================
   WORKSTREAMS
================================ */
.sectionHead{ margin-bottom: 16px; }

.workGrid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 14px;
}

.workCard{
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(15,23,42,.12);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 16px 46px rgba(2,6,23,.10);
}

.workCard__top{
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 10px;
}

.workCard__meta{
  font-size: 12px;
  font-weight: 900;
  color: rgba(15,23,42,.60);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.workCard__title{
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.workCard__desc{
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.55;
}

.workCard__tags{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 900;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.86);
  color: rgba(15,23,42,.72);
}

.tag--status{
  border-color: rgba(37,99,235,.20);
  background: rgba(37,99,235,.07);
  color: rgba(37,99,235,.92);
}

.tag--open{
  border-color: rgba(16,185,129,.25);
  background: rgba(16,185,129,.10);
  color: rgba(16,185,129,.95);
}

@media (min-width: 1001px){
  .workGrid{
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

/* ================================
   CONTACT
================================ */
.contactRow{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.contactBox{
  background: rgba(255,255,255,.92);
  border-radius:14px;
  padding:18px;
  border:1px solid rgba(15,23,42,.12);
  box-shadow: 0 16px 46px rgba(2,6,23,.10);
}

.contactBox--light{
  background: linear-gradient(180deg, rgba(37,99,235,.06), rgba(255,255,255,.92));
}

.contactBox__title{ font-weight:900; margin-bottom:6px; }
.contactBox__text{ color:var(--muted); }

.contactBox__actions{
  margin-top:12px;
  display:flex;
  gap:10px;
}

@media(max-width:1000px){
  .contactRow{ grid-template-columns:1fr; }
}

/* ================================
   FOOTER
================================ */
.site-footer{
  background: #f6f8fb;
  border-top: 1px solid var(--border);
  padding: 48px 0 0;
  margin-top: 60px;
}

.footer__inner{
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 28px;
}

.footer__logo{
  height: 54px;
  width: auto;
  margin-bottom: 12px;
  display:block;
}

@media (max-width: 768px){
  .footer__logo{ height: 46px; }
}

.footer__tagline{
  color: var(--muted);
  max-width: 420px;
  font-size: 14px;
  line-height: 1.6;
}

.footer__title{
  font-weight: 900;
  margin-bottom: 10px;
  font-size: 14px;
}

.footer__links{
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__links li{ margin-bottom: 6px; }

.footer__links a{
  color: rgba(15,23,42,.72);
  font-weight: 700;
  font-size: 14px;
}

.footer__links a:hover{ color: var(--primary); }

.footer__contact{
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 6px;
}

.footer__email a{
  font-weight: 800;
  color: var(--text);
}

.footer__meta{
  margin-top: 6px;
  font-size: 13px;
  color: var(--muted);
}

.footer__bottom{
  margin-top: 40px;
  border-top: 1px solid var(--border);
  padding: 14px 0;
}

.footer__bottomInner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
}

.footer__legal a{ color: rgba(15,23,42,.65); }
.footer__legal a:hover{ color: var(--primary); }

@media (max-width: 900px){
  .footer__inner{
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .footer__bottomInner{
    flex-direction: column;
    gap: 8px;
  }
}

/* ================================
   PRESENCE — OPTION A (NO MAP)
================================ */
#presence .section__lead{
  max-width: 78ch;
}

/* ✅ FULL-WIDTH GREEN HIGHLIGHT LINE */
.presenceHighlight{
  margin: 0 0 26px;
  padding: 14px 18px;
  width: 100%;

  background: linear-gradient(
    90deg,
    rgba(34,197,94,.22),
    rgba(34,197,94,.16)
  );

  border-left: 6px solid #22c55e;
  border-radius: 10px;

  font-size: 15px;
  font-weight: 800;
  color: rgba(15,23,42,.90);
  line-height: 1.6;

  box-shadow: 0 10px 28px rgba(2,6,23,.08);
}

.presenceHighlight strong{
  font-weight: 900;
}

@media (max-width: 600px){
  .presenceHighlight{
    font-size: 14px;
    padding: 12px 14px;
  }
}

.presenceCards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.presenceCard{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(15,23,42,.12);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 16px 46px rgba(2,6,23,.10);
  transition: transform .10s ease, box-shadow .14s ease, border-color .14s ease;
}

.presenceCard:hover{
  transform: translateY(-1px);
  box-shadow: 0 24px 68px rgba(2,6,23,.14);
  border-color: rgba(15,23,42,.16);
}

.presenceCard__top{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom: 10px;
}

.presenceCard__icon{
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(37,99,235,.08);
  border: 1px solid rgba(37,99,235,.18);
  font-size: 18px;
}

.presenceCard__title{
  font-weight: 900;
  letter-spacing: -0.01em;
}

.presenceCard__text{
  color: var(--muted);
  line-height: 1.6;
}

.presenceCard__meta{
  margin-top: 12px;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:8px;
  color: rgba(15,23,42,.70);
  font-weight: 800;
  font-size: 13px;
}

.presenceDot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 0 5px rgba(37,99,235,.16);
  display:inline-block;
}

.presenceSep{
  opacity: .55;
  margin: 0 4px;
}

@media (max-width: 1000px){
  .presenceCards{ grid-template-columns: 1fr; }
}
