/* ── RESET & BASE ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:      #0D1F35;
  --navy-mid:  #14283F;
  --navy-lt:   #1C3655;
  --brass:     #C9A75E;
  --brass-lt:  #E0C176;
  --off-white: #F0F4F8;
  --white:     #FFFFFF;
  --gray:      #8A9AB0;
  --gray-lt:   #D1DAE6;
  --red:       #C0392B;
  --font-sans: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-serif: 'Georgia', 'Times New Roman', serif;
  --max:       1200px;
  --radius:    6px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--navy);
  font-size: 16px;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── UTILITY ────────────────────────────────────────────────────── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: opacity .15s, transform .1s;
  border: none;
  letter-spacing: .02em;
}
.btn:hover { opacity: .88; transform: translateY(-1px); }
.btn-brass { background: var(--brass); color: var(--navy); }
.btn-white { background: var(--white); color: var(--navy); }
.btn-outline { background: transparent; color: var(--brass); border: 2px solid var(--brass); }
.btn-lg { padding: 18px 44px; font-size: 1.1rem; }

.label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
}
.section-title.light { color: var(--white); }

.section-sub {
  font-size: 1.1rem;
  color: #4A6080;
  max-width: 640px;
  margin-top: 14px;
}
.section-sub.light { color: var(--gray-lt); }

/* ── NAV ────────────────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid var(--navy-lt);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--brass);
  letter-spacing: -.02em;
}
.nav-logo span { color: var(--white); font-weight: 300; font-size: 1rem; margin-left: 6px; letter-spacing: .04em; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a { color: var(--gray-lt); font-size: .9rem; font-weight: 500; transition: color .15s; }
.nav-links a:hover { color: var(--brass); }
.nav-cta { background: var(--brass); color: var(--navy); padding: 10px 22px; border-radius: var(--radius); font-weight: 700; font-size: .9rem; }
.nav-cta:hover { background: var(--brass-lt); opacity: 1; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); margin: 5px 0; transition: .3s; }

/* ── HERO ───────────────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('img/hero-banner.png');
  background-size: cover;
  background-position: center;
  opacity: .18;
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 100px 0 80px;
  max-width: 760px;
}
.hero-eyebrow {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-headline em { color: var(--brass); font-style: normal; }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--gray-lt);
  max-width: 580px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero-proof {
  margin-top: 60px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-proof-item { }
.hero-proof-item .num { font-size: 2rem; font-weight: 900; color: var(--brass); }
.hero-proof-item .lbl { font-size: .8rem; color: var(--gray); text-transform: uppercase; letter-spacing: .08em; margin-top: 2px; }

/* ── PAIN BAND ──────────────────────────────────────────────────── */
.pain-band {
  background: #F7F9FC;
  border-top: 3px solid var(--brass);
  padding: 56px 0;
}
.pain-band-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}
.pain-item { }
.pain-item .icon { font-size: 1.6rem; margin-bottom: 10px; }
.pain-item h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.pain-item p { font-size: .9rem; color: #5A6E85; }

/* ── WHAT WE DO ─────────────────────────────────────────────────── */
.what-section { padding: 96px 0; }
.what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 64px;
}
.what-img { border-radius: 10px; overflow: hidden; }
.what-img img { width: 100%; height: 420px; object-fit: cover; }
.what-features { display: flex; flex-direction: column; gap: 28px; }
.what-feature { display: flex; gap: 16px; }
.what-feature .icon-wrap {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 8px;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.what-feature h4 { font-weight: 700; margin-bottom: 4px; }
.what-feature p { font-size: .9rem; color: #5A6E85; }

/* ── HOW IT WORKS ───────────────────────────────────────────────── */
.how-section {
  background: var(--navy);
  padding: 96px 0;
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-top: 56px;
}
.how-step { position: relative; }
.how-step .step-num {
  font-size: 4rem;
  font-weight: 900;
  color: var(--brass);
  opacity: .25;
  line-height: 1;
  margin-bottom: 8px;
}
.how-step h3 { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.how-step p { font-size: .9rem; color: var(--gray-lt); }

/* ── BRIGADE / TIERS ────────────────────────────────────────────── */
.brigade-section { padding: 96px 0; background: #F7F9FC; }
.brigade-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 56px;
}
.brigade-card {
  background: var(--white);
  border: 1px solid var(--gray-lt);
  border-radius: 10px;
  padding: 36px 28px;
  position: relative;
  transition: box-shadow .2s, transform .2s;
}
.brigade-card:hover { box-shadow: 0 12px 40px rgba(13,31,53,.12); transform: translateY(-2px); }
.brigade-card.featured {
  border: 2px solid var(--brass);
  background: var(--navy);
  color: var(--white);
}
.brigade-card.featured p { color: var(--gray-lt); }
.brigade-badge {
  display: inline-block;
  background: var(--brass);
  color: var(--navy);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 16px;
}
.brigade-card h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: 8px; }
.brigade-card .tier-tagline { font-size: .9rem; font-weight: 600; color: var(--brass); margin-bottom: 16px; }
.brigade-card p { font-size: .88rem; line-height: 1.65; color: #4A6080; margin-bottom: 20px; }
.brigade-card.featured p { color: var(--gray-lt); }
.brigade-card .cta-link {
  display: inline-block;
  font-weight: 700;
  font-size: .9rem;
  color: var(--brass);
  border-bottom: 2px solid var(--brass);
  padding-bottom: 2px;
}

/* ── WHY US ─────────────────────────────────────────────────────── */
.why-section {
  padding: 96px 0;
  background: var(--navy);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 56px;
}
.why-img img { border-radius: 10px; width: 100%; height: 480px; object-fit: cover; }
.why-points { display: flex; flex-direction: column; gap: 32px; }
.why-point h4 { font-size: 1rem; font-weight: 700; color: var(--brass); margin-bottom: 6px; }
.why-point p { font-size: .92rem; color: var(--gray-lt); }

/* ── TESTIMONIALS ───────────────────────────────────────────────── */
.testi-section { padding: 80px 0; background: #F7F9FC; }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 48px; }
.testi-card {
  background: var(--white);
  border-left: 4px solid var(--brass);
  padding: 28px 24px;
  border-radius: 0 8px 8px 0;
}
.testi-card p { font-size: .95rem; font-style: italic; color: #3A506B; margin-bottom: 16px; }
.testi-card .author { font-weight: 700; font-size: .85rem; color: var(--navy); }
.testi-card .role { font-size: .8rem; color: var(--gray); }

/* ── CREDIBILITY STRIP ──────────────────────────────────────────── */
.cred-strip {
  background: var(--navy-mid);
  padding: 40px 0;
  border-top: 1px solid var(--navy-lt);
  border-bottom: 1px solid var(--navy-lt);
}
.cred-inner { display: flex; gap: 48px; flex-wrap: wrap; justify-content: center; align-items: center; }
.cred-item { display: flex; align-items: center; gap: 10px; color: var(--gray-lt); font-size: .9rem; font-weight: 500; }
.cred-item .icon { font-size: 1.4rem; }

/* ── ABOUT BAND ─────────────────────────────────────────────────── */
.about-band { padding: 96px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img img { border-radius: 10px; width: 100%; height: 460px; object-fit: cover; }
.about-text .founders { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.founder { display: flex; gap: 14px; align-items: flex-start; }
.founder-icon { font-size: 1.8rem; flex-shrink: 0; }
.founder h4 { font-weight: 700; margin-bottom: 2px; }
.founder p { font-size: .88rem; color: #5A6E85; }

/* ── CTA BAND ───────────────────────────────────────────────────── */
.cta-band {
  background: var(--brass);
  padding: 80px 0;
  text-align: center;
}
.cta-band h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; color: var(--navy); margin-bottom: 16px; }
.cta-band p { font-size: 1.1rem; color: var(--navy-mid); max-width: 560px; margin: 0 auto 36px; }

/* ── CONTACT / FORM ─────────────────────────────────────────────── */
.contact-section { padding: 96px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}
.contact-info h2 { font-size: 2rem; font-weight: 800; margin-bottom: 16px; }
.contact-info p { font-size: 1rem; color: #5A6E85; margin-bottom: 32px; }
.contact-detail { display: flex; gap: 12px; margin-bottom: 16px; align-items: center; color: #4A6080; font-size: .92rem; }
.contact-form { background: #F7F9FC; padding: 40px; border-radius: 10px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; font-size: .85rem; margin-bottom: 6px; color: var(--navy); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--gray-lt);
  border-radius: var(--radius);
  font-size: .95rem;
  font-family: inherit;
  color: var(--navy);
  background: var(--white);
  transition: border-color .15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brass);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; padding: 16px; background: var(--navy); color: var(--white); font-weight: 700; font-size: 1rem; border: none; border-radius: var(--radius); cursor: pointer; transition: background .15s; }
.form-submit:hover { background: var(--navy-lt); }

/* ── FOOTER ─────────────────────────────────────────────────────── */
footer {
  background: var(--navy);
  color: var(--gray-lt);
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo { font-size: 1.4rem; font-weight: 900; color: var(--brass); margin-bottom: 12px; }
.footer-brand p { font-size: .88rem; color: var(--gray); max-width: 280px; line-height: 1.7; }
.footer-col h4 { font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--brass); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: .88rem; color: var(--gray); transition: color .15s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--navy-lt);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: var(--gray);
}

/* ── PAGE HERO (inner pages) ────────────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 80px 0 64px;
}
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900; color: var(--white); }
.page-hero p { font-size: 1.1rem; color: var(--gray-lt); max-width: 600px; margin-top: 14px; }
.breadcrumb { font-size: .85rem; color: var(--gray); margin-bottom: 16px; }
.breadcrumb a { color: var(--brass); }

/* ── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .what-grid, .why-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .what-img, .why-img, .about-img { display: none; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-proof { gap: 24px; }
}

@media (max-width: 600px) {
  .hero-inner { padding: 70px 0 60px; }
  .brigade-grid { grid-template-columns: 1fr; }
  .cred-inner { flex-direction: column; gap: 20px; }
}
