/* Strategea Group — landing page
 * Palette: navy (#0F2847), bone (#F4F1EA), brass (#B8924B), charcoal (#1A1A1A).
 * Type: Cormorant Garamond (display), Inter (body). */

:root {
  --navy:       #0F2847;
  --navy-deep:  #0A1E38;
  --navy-soft:  #1E3A5F;
  --bone:       #F4F1EA;
  --bone-2:     #EAE5D8;
  --brass:      #B8924B;
  --brass-deep: #8F6F2D;
  --charcoal:   #1A1A1A;
  --charcoal-soft: #3A3A3A;
  --rule:       rgba(15, 40, 71, 0.14);
  --max:        1080px;
  --max-narrow: 720px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bone);
  color: var(--charcoal);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brass-deep); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  color: var(--bone);
}
.hero__image {
  position: absolute; inset: 0;
  background-image: url('/assets/hero.png');
  background-size: cover;
  background-position: center 55%;
  background-color: var(--navy);
  z-index: -2;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,30,56,0.35) 0%, rgba(10,30,56,0.55) 50%, rgba(10,30,56,0.92) 100%);
  z-index: -1;
}
.hero__content {
  width: 100%; max-width: var(--max);
  margin: 0 auto;
  padding: 120px 32px 72px;
}
.hero__eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 22px;
  font-weight: 600;
}
.hero__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(52px, 8vw, 104px);
  line-height: 1.02;
  letter-spacing: 0.005em;
  font-weight: 500;
  margin: 0 0 24px;
  color: var(--bone);
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero__lede {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 400;
  font-style: italic;
  margin: 0;
  max-width: 620px;
  color: rgba(244, 241, 234, 0.94);
}

/* ---- BANDS ---- */
.band {
  padding: 80px 32px;
}
.band__inner {
  max-width: var(--max);
  margin: 0 auto;
}
.band__inner--narrow { max-width: var(--max-narrow); }

.band--intro {
  background: var(--bone);
  padding: 96px 32px;
  border-bottom: 1px solid var(--rule);
}
.band__lead {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.45;
  color: var(--navy);
  margin: 0;
  max-width: 820px;
  font-weight: 500;
}

.band--two { background: var(--bone-2); }
.band--capabilities { background: var(--navy); color: var(--bone); }
.band--experience { background: var(--bone); }
.band--creds { background: var(--bone-2); }

.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.1;
  font-weight: 500;
  margin: 0 0 40px;
  color: var(--navy);
  letter-spacing: 0.005em;
  position: relative;
  padding-bottom: 18px;
}
.section-title::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 56px; height: 2px;
  background: var(--brass);
}
.band--capabilities .section-title { color: var(--bone); }
.band--capabilities .section-title::after { background: var(--brass); }

/* ---- TWO-COLUMN (services) ---- */
.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.two__item h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 12px;
}
.two__item p {
  margin: 0;
  color: var(--charcoal-soft);
}

/* ---- CAPABILITIES (on navy) ---- */
.capabilities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.capability-group h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--brass);
  margin: 0 0 16px;
}
.capability-group ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.capability-group li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(244, 241, 234, 0.12);
  color: rgba(244, 241, 234, 0.9);
}
.capability-group li:last-child { border-bottom: none; }

/* ---- EXPERIENCE ---- */
.experience {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.experience__group h3 {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--brass-deep);
  margin: 0 0 16px;
}
.experience__group ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.experience__group li {
  padding: 10px 0 10px 20px;
  border-bottom: 1px solid var(--rule);
  color: var(--charcoal);
  position: relative;
}
.experience__group li::before {
  content: "";
  position: absolute;
  left: 0; top: 19px;
  width: 8px; height: 1px;
  background: var(--brass);
}
.experience__group li:last-child { border-bottom: none; }

/* ---- CREDENTIALS ---- */
.creds {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}
.cred h3 {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--brass-deep);
  margin: 0 0 12px;
}
.cred p {
  margin: 0;
  color: var(--navy);
  line-height: 1.55;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--navy-deep);
  color: rgba(244, 241, 234, 0.75);
  padding: 48px 32px;
}
.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
}
.footer p {
  margin: 0 0 8px;
}
.footer strong { color: var(--bone); }
.footer__small {
  font-size: 13px;
  color: rgba(244, 241, 234, 0.5);
  margin-top: 16px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 720px) {
  .hero__content { padding: 96px 22px 56px; }
  .band { padding: 64px 22px; }
  .band--intro { padding: 72px 22px; }
  .two, .capabilities, .experience { grid-template-columns: 1fr; gap: 32px; }
  .footer { padding: 36px 22px; }
}
