/* ============================================================
   LiT Strategy – Global Stylesheet
   Palette: Deep navy (#0D1B2A) | Gold accent (#C9A84C) | White | Light grey
   Font: Cormorant Garamond (display) + Lato (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Lato:wght@300;400;700&display=swap');

:root {
  --navy:   #0D1B2A;
  --navy2:  #162436;
  --blue:   #D7E5F9;
  --blue-lt:#15448C;
  --white:  #FFFFFF;
  --off-white: #F6F5F2;
  --grey:   #8A8F98;
  --text:   #2A2E35;
  --radius: 4px;
  --shadow: 0 8px 32px rgba(13,27,42,.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

/* ── Typography ── */
h1,h2,h3,h4 { font-family: 'Cormorant Garamond', serif; font-weight: 600; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
p  { margin-bottom: 1rem; }
a  { color: var(--blue); text-decoration: none; transition: color .2s; }
a:hover { color: var(--blue-lt); }

/* ── Nav ── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: #ffffff;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  height: 76px;
  box-shadow: 0 2px 16px rgba(0,0,0,.10);
  border-bottom: 3px solid var(--blue-lt);
}

.nav__logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: .05em;
}
.nav__logo span { color: var(--blue); }

.nav__links {
  display: flex; gap: 2rem; list-style: none;
}
.nav__links a {
  color: var(--navy);
  font-size: .85rem;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: all .2s;
}
.nav__links a:hover,
.nav__links a.active {
  color: var(--blue-lt);
  border-bottom-color: var(--blue);
}

/* hamburger */
.nav__toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--navy); transition: .3s; }

.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 60%, #1e3450 100%);
  min-height: 88vh;
  display: flex; align-items: center;
  overflow: hidden;
  padding: 5% 10%;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero__content { position: relative; z-index: 1; max-width: 640px; }
.hero__eyebrow {
  display: inline-block;
  color: var(--blue);
  font-size: .8rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
}
.hero h1 { color: var(--white); margin-bottom: 1.4rem; }
.hero p  { color: rgba(255,255,255,.75); font-size: 1.1rem; margin-bottom: 2rem; max-width: 520px; }
.hero__line {
  width: 60px; height: 3px;
  background: var(--blue);
  margin-bottom: 2rem;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: .8rem 2rem;
  border-radius: var(--radius);
  font-family: 'Lato', sans-serif;
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  transition: all .25s;
  cursor: pointer;
}
.btn-primary {
  background: var(--blue);
  color: var(--navy);
  border: 2px solid var(--blue);
}
.btn-primary:hover { background: transparent; color: var(--blue); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.4);
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }

/* ── Section wrapper ── */
.section {
  padding: 6rem 10%;
}
.section--dark {
  background: var(--navy);
  color: var(--white);
}
.section--grey {
  background: var(--off-white);
}

.section__label {
  display: block;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--blue-lt);
  margin-bottom: .6rem;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
}

.section__label__dark {
  display: block;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: .6rem;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
}

.section__title { margin-bottom: 1rem; }
.section--dark .section__title { color: var(--white); }
.divider {
  width: 50px; height: 3px;
  background: var(--blue);
  margin: 1rem 0 2.5rem;
}

/* ── Grid helpers ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ── Card ── */
.card {
  background: var(--white);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(13,27,42,.18); }
.card__icon {
  width: 52px; height: 52px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
}
.card__icon svg { fill: var(--blue); width: 26px; height: 26px; }
.card h3 { margin-bottom: .6rem; }
.card p { font-size: .93rem; color: #555; margin: 0; }

/* ── Stat strip ── */
.stat-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--blue);
}
.stat-strip__item {
  padding: 2.5rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.3);
}
.stat-strip__item:last-child { border-right: none; }
.stat-strip__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.stat-strip__label { font-size: .8rem; text-transform: uppercase; letter-spacing: .15em; color: var(--navy); font-weight: 700; margin-top: .4rem; }

/* ── Team card ── */
.team-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s;
}
.team-card:hover { transform: translateY(-4px); }
.team-card__img {
  width: 100%; aspect-ratio: 4/3;
  background: var(--navy2);
  display: flex; align-items: center; justify-content: center;
}
.team-card__img svg { width: 60px; height: 60px; fill: rgba(255,255,255,.15); }
.team-card__body { padding: 1.5rem; }
.team-card__name { font-size: 1.1rem; font-family: 'Cormorant Garamond', serif; font-weight: 600; }
.team-card__role { font-size: .8rem; color: var(--blue); text-transform: uppercase; letter-spacing: .1em; margin-bottom: .6rem; }
.team-card__bio { font-size: .88rem; color: #666; }

/* ── Clients grid ── */
.clients-grid {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: center;
}
.client-tag {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  font-size: .78rem;
  padding: .4rem 1rem;
  border-radius: 20px;
  letter-spacing: .05em;
}

/* ── Industry pills ── */
.industry-section { margin-bottom: 2rem; }
.industry-section h4 { font-size: .8rem; text-transform: uppercase; letter-spacing: .15em; color: var(--blue); margin-bottom: .6rem; }
.pill-group { display: flex; flex-wrap: wrap; gap: .5rem; }
.pill {
  background: rgba(201,168,76,.12);
  border: 1px solid rgba(201,168,76,.3);
  color: var(--text);
  font-size: .82rem;
  padding: .3rem .9rem;
  border-radius: 20px;
}

/* ── Office map section ── */
.office-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.office-box {
  background: var(--navy2);
  border-radius: 8px;
  padding: 2rem;
  border-left: 4px solid var(--blue);
}
.office-box h3 { color: var(--white); margin-bottom: 1rem; font-size: 1rem; letter-spacing: .1em; text-transform: uppercase; }
.office-box ul { list-style: none; }
.office-box ul li {
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  padding: .25rem 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding-left: 1rem;
  position: relative;
}
.office-box ul li::before {
  content: '●';
  position: absolute; left: 0;
  color: var(--blue);
  font-size: .5rem;
  top: .55rem;
}

/* ── Contact form ── */
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: .9rem 1.2rem;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  font-family: 'Lato', sans-serif;
  font-size: .95rem;
  background: var(--white);
  color: var(--text);
  transition: border-color .2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--blue);
}
.contact-form textarea { resize: vertical; min-height: 140px; }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info__item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-info__icon {
  width: 40px; height: 40px; min-width: 40px;
  background: var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.contact-info__icon svg { fill: var(--navy); width: 18px; height: 18px; }
.contact-info__text h4 { font-size: .9rem; font-family: 'Lato', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin-bottom: .2rem; }
.contact-info__text p, .contact-info__text a { font-size: .93rem; color: #555; margin: 0; }

/* ── Page hero (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1e3450 100%);
  padding: 5rem 10%;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; right: 0; top: 0; bottom: 0; width: 40%;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,.06));
  pointer-events: none;
}
.page-hero__label { color: var(--blue); font-size: .75rem; letter-spacing: .25em; text-transform: uppercase; display: block; margin-bottom: .5rem; font-family: 'Lato'; font-weight: 700; }
.page-hero h1 { color: var(--white); }
.page-hero p { color: rgba(255,255,255,.7); max-width: 540px; margin-top: 1rem; }

/* ── Approach steps ── */
.steps { counter-reset: step; display: flex; flex-direction: column; gap: 2.5rem; }
.step { display: flex; gap: 2rem; align-items: flex-start; }
.step__num {
  counter-increment: step;
  min-width: 56px; height: 56px;
  background: var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
}
.step__content h3 { margin-bottom: .4rem; }
.step__content p { color: #555; margin: 0; }

/* ── Cert badges ── */
.cert-grid { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.cert-badge {
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 1.5rem 2rem;
  text-align: center;
  min-width: 200px;
  flex: 1;
}
.cert-badge__label { font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--grey); display: block; margin-bottom: .4rem; }
.cert-badge__name { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600; color: var(--navy); }
.cert-badge__pct { font-size: 2rem; font-family: 'Cormorant Garamond', serif; font-weight: 700; color: var(--blue); }

/* ── Footer ── */
.footer {
  background: #080F18;
  color: rgba(255,255,255,.55);
  padding: 4rem 10% 2rem;
}
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer__brand { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; color: var(--white); margin-bottom: .8rem; }
.footer__brand span { color: var(--blue); }
.footer__tagline { font-size: .85rem; line-height: 1.7; }
.footer__col h4 { font-size: .75rem; text-transform: uppercase; letter-spacing: .2em; color: var(--white); margin-bottom: 1rem; font-family: 'Lato'; font-weight: 700; }
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer__col ul a { font-size: .85rem; color: rgba(255,255,255,.55); }
.footer__col ul a:hover { color: var(--blue); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .8rem;
}
.footer__bottom a { color: var(--blue); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .section { padding: 4rem 6%; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .office-grid { grid-template-columns: 1fr; }
  .hero { padding: 5% 6%; min-height: 70vh; }
  .hero > div[style*="grid"] { grid-template-columns: 1fr !important; }
  .hero > div[style*="grid"] > div:last-child { display: none; }
  .page-hero { padding: 4rem 6%; }
}
@media (max-width: 640px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav__links.open { display: flex; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--navy); padding: 1.5rem 6%; gap: 1rem; box-shadow: 0 8px 20px rgba(0,0,0,.3); }
  .stat-strip { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
}