/* Success Empowered — Site Stylesheet */

:root {
  --navy: #0E1E3F;
  --navy-90: rgba(14, 30, 63, 0.9);
  --indigo: #2A2560;
  --clay: #C96A3F;
  --clay-hover: #B15A30;
  --ivory: #F6F1E8;
  --ivory-soft: #FAF6EE;
  --white: #FFFFFF;
  --slate: #1B1B1E;
  --muted: #6B6E76;
  --line: #E2E0DA;
  --line-soft: #EFEDE7;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--slate);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }

a {
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover { color: var(--clay); }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}
.container-narrow {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-weight: 500;
  color: var(--navy);
  margin: 0 0 20px 0;
  letter-spacing: -0.015em;
}
h1 { font-size: 60px; line-height: 1.04; letter-spacing: -0.025em; }
h2 { font-size: 40px; line-height: 1.12; }
h3 { font-size: 26px; line-height: 1.25; }
h4 { font-size: 20px; line-height: 1.3; }

.display {
  font-size: 76px;
  line-height: 1.0;
  letter-spacing: -0.03em;
  font-weight: 400;
}
.display em {
  font-style: italic;
  color: var(--clay);
}

.eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--clay);
  margin-bottom: 20px;
}

.lede {
  font-size: 22px;
  line-height: 1.5;
  color: var(--muted);
  max-width: 58ch;
}

p { margin: 0 0 18px 0; max-width: 68ch; }
ul, ol { padding-left: 22px; margin: 0 0 20px 0; max-width: 68ch; }
li { margin-bottom: 10px; }
strong { color: var(--navy); font-weight: 600; }

/* HEADER / NAV */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(150%) blur(10px);
  -webkit-backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.logo {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 21px;
  letter-spacing: -0.015em;
  color: var(--navy);
  line-height: 1;
}
.logo .dot { color: var(--clay); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 14.5px;
  color: var(--slate);
  font-weight: 500;
}
.nav-links a:hover { color: var(--clay); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  background: var(--clay);
  color: var(--white) !important;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14.5px;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
}
.btn:hover { background: var(--clay-hover); color: var(--white) !important; transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--navy) !important;
  border: 1px solid var(--navy);
}
.btn-ghost:hover {
  background: var(--navy);
  color: var(--white) !important;
}
.btn .arrow { transition: transform 0.2s; }
.btn:hover .arrow { transform: translateX(3px); }

.nav-burger {
  display: none;
  background: transparent;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: var(--navy);
}
.nav-burger svg { width: 26px; height: 26px; }

/* HERO */
.hero {
  padding: 100px 0 80px 0;
  background: var(--ivory);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42,37,96,0.08), transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,106,63,0.12), transparent 70%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; }
.hero h1 { margin-bottom: 28px; max-width: 17ch; }
.hero .lede { margin-bottom: 36px; }
.hero-ctas { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.hero-ctas a.link {
  font-size: 15px;
  color: var(--navy);
  font-weight: 500;
  border-bottom: 1px solid rgba(14,30,63,0.3);
  padding-bottom: 2px;
}
.hero-ctas a.link:hover { color: var(--clay); border-bottom-color: var(--clay); }

/* PROOF STRIP */
.proof {
  padding: 32px 0;
  background: var(--navy);
  color: var(--ivory);
  text-align: center;
}
.proof p {
  margin: 0 auto;
  max-width: 72ch;
  font-size: 14.5px;
  color: rgba(246,241,232,0.85);
  letter-spacing: 0.01em;
}
.proof strong { color: var(--ivory); }

/* Generic section */
.section {
  padding: 110px 0;
}
.section-alt {
  background: var(--ivory-soft);
}
.section-dark {
  background: var(--navy);
  color: var(--ivory);
}
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--ivory); }
.section-dark .lede { color: rgba(246,241,232,0.75); }
.section-dark .eyebrow { color: var(--clay); }
.section-dark p { color: rgba(246,241,232,0.8); }

.section-head {
  max-width: 740px;
  margin-bottom: 56px;
}
.section-head h2 { margin-bottom: 18px; }
.section-head .lede { font-size: 20px; }

/* Cards */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 36px 32px;
  border-radius: 6px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  border-color: var(--clay);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(14,30,63,0.08);
}
.card .card-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--clay);
  margin-bottom: 14px;
}
.card h3 { font-size: 22px; margin-bottom: 12px; }
.card p { font-size: 15.5px; color: var(--muted); margin-bottom: 20px; }
.card .card-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.card:hover .card-link { color: var(--clay); }
.card.card-dark {
  background: transparent;
  border-color: rgba(246,241,232,0.18);
}
.card.card-dark:hover {
  border-color: var(--clay);
  background: rgba(255,255,255,0.03);
}
.card.card-dark h3 { color: var(--ivory); }
.card.card-dark p { color: rgba(246,241,232,0.75); }
.card.card-dark .card-link { color: var(--ivory); }

/* Three-up with mark */
.pillar {
  padding: 30px 0;
}
.pillar-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--clay);
  color: var(--clay);
  font-family: 'Fraunces', serif;
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 24px;
}
.pillar h3 { font-size: 22px; margin-bottom: 12px; }
.pillar p { font-size: 16px; color: var(--muted); }

/* Feature block */
.feature {
  padding: 100px 0;
  background: var(--navy);
  color: var(--ivory);
}
.feature h2 { color: var(--ivory); max-width: 20ch; }
.feature p { color: rgba(246,241,232,0.8); }

/* Case study block */
.case-feature {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 5fr 7fr;
}
.case-visual {
  background: linear-gradient(135deg, var(--navy) 0%, var(--indigo) 100%);
  min-height: 380px;
  position: relative;
  overflow: hidden;
}
.case-visual::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,106,63,0.35), transparent 65%);
  transform: translate(-50%, -50%);
}
.case-visual::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(246,241,232,0.15);
}
.case-label {
  position: absolute;
  top: 32px; left: 32px;
  color: var(--ivory);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  z-index: 2;
}
.case-body { padding: 48px 44px; }
.case-body h3 { font-size: 26px; margin-bottom: 16px; max-width: 22ch; }
.case-quote {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  line-height: 1.5;
  color: var(--navy);
  font-style: italic;
  border-left: 3px solid var(--clay);
  padding-left: 18px;
  margin: 20px 0;
}
.case-attr { font-size: 14px; color: var(--muted); margin-bottom: 22px; }
.case-outcome {
  background: var(--ivory);
  padding: 18px 22px;
  border-radius: 4px;
  font-size: 15px;
  margin-bottom: 24px;
}
.case-outcome strong { color: var(--navy); }

/* Outcomes grid */
.outcomes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.outcome {
  padding: 36px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.outcome-num {
  font-family: 'Fraunces', serif;
  font-size: 15px;
  color: var(--clay);
  margin-bottom: 14px;
}
.outcome p {
  font-size: 17px;
  color: var(--slate);
  margin: 0;
  line-height: 1.5;
}
.outcome p strong { color: var(--navy); font-weight: 600; }

/* Team preview */
.team-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.team-card:hover {
  border-color: var(--clay);
  box-shadow: 0 12px 32px rgba(14,30,63,0.08);
}
.team-portrait {
  height: 320px;
  background: linear-gradient(135deg, var(--indigo) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}
.team-portrait::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(201,106,63,0.25), transparent 60%);
}
.team-portrait .initials {
  position: absolute;
  bottom: 28px; left: 32px;
  font-family: 'Fraunces', serif;
  font-size: 72px;
  font-weight: 300;
  color: rgba(246,241,232,0.95);
  letter-spacing: -0.02em;
  line-height: 1;
}
.team-body { padding: 30px 32px 32px 32px; }
.team-body .role {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--clay);
  margin-bottom: 10px;
}
.team-body h3 { font-size: 24px; margin-bottom: 12px; }
.team-body p { font-size: 15.5px; color: var(--muted); margin-bottom: 0; }

/* Final CTA */
.final-cta {
  padding: 130px 0;
  background: var(--navy);
  color: var(--ivory);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: -180px; left: 50%;
  transform: translateX(-50%);
  width: 680px; height: 680px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,106,63,0.14), transparent 65%);
}
.final-cta-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; padding: 0 32px; }
.final-cta h2 { color: var(--ivory); margin-bottom: 20px; }
.final-cta p { color: rgba(246,241,232,0.8); max-width: 60ch; margin-left: auto; margin-right: auto; margin-bottom: 36px; font-size: 18px; }
.final-cta .cta-meta {
  display: flex;
  gap: 22px;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  font-size: 14px;
  color: rgba(246,241,232,0.55);
  flex-wrap: wrap;
}
.final-cta .cta-meta a { color: rgba(246,241,232,0.75); border-bottom: 1px solid rgba(246,241,232,0.3); padding-bottom: 2px; }
.final-cta .cta-meta a:hover { color: var(--clay); border-bottom-color: var(--clay); }

/* Footer */
.footer {
  background: var(--ivory);
  padding: 80px 0 40px 0;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer-brand h3 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  margin-bottom: 14px;
}
.footer-brand p { font-size: 14.5px; color: var(--muted); max-width: 34ch; margin: 0; }
.footer h4 {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--navy);
  margin: 0 0 20px 0;
}
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { font-size: 14.5px; color: var(--slate); }
.footer ul a:hover { color: var(--clay); }
.footer-accred {
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13px;
  color: var(--muted);
}
.footer-accred .accred-logos { display: flex; gap: 28px; flex-wrap: wrap; font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }
.footer-accred .footer-legal { display: flex; gap: 22px; font-size: 13px; }
.footer-accred .footer-legal a { color: var(--muted); }
.footer-accred .footer-legal a:hover { color: var(--clay); }

/* Generic content page */
.page-hero {
  padding: 100px 0 70px 0;
  background: var(--ivory);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -180px; right: -180px;
  width: 440px; height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42,37,96,0.07), transparent 70%);
}
.page-hero-inner { position: relative; z-index: 1; max-width: 860px; }
.page-hero h1 { margin-bottom: 24px; max-width: 22ch; font-size: 54px; line-height: 1.05; }
.page-hero .lede { font-size: 21px; margin-bottom: 36px; }

.prose {
  max-width: 720px;
  margin: 0 auto;
}
.prose h2 { margin-top: 64px; }
.prose h3 { margin-top: 48px; }
.prose p, .prose ul, .prose ol { font-size: 17.5px; line-height: 1.7; }
.prose strong { color: var(--navy); }
.prose blockquote {
  margin: 32px 0;
  padding: 22px 28px;
  background: var(--ivory);
  border-left: 3px solid var(--clay);
  font-family: 'Fraunces', serif;
  font-size: 19px;
  line-height: 1.5;
  color: var(--navy);
  font-style: italic;
}

/* Steps */
.steps { counter-reset: step; margin-top: 40px; }
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step-num {
  font-family: 'Fraunces', serif;
  font-size: 34px;
  color: var(--clay);
  line-height: 1;
}
.step h3 { font-size: 22px; margin-bottom: 10px; }
.step p { color: var(--muted); margin: 0; font-size: 16px; }

/* Forms */
.form { max-width: 640px; }
.form-field { margin-bottom: 22px; }
.form-field label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-family: inherit;
  font-size: 15.5px;
  color: var(--slate);
  background: var(--white);
  transition: border-color 0.2s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--clay);
  box-shadow: 0 0 0 3px rgba(201,106,63,0.12);
}
.form-field textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-note { font-size: 13.5px; color: var(--muted); margin-top: 4px; }

/* Mobile */
@media (max-width: 960px) {
  .container, .container-narrow { padding: 0 22px; }
  h1 { font-size: 40px; }
  h2 { font-size: 30px; }
  .display { font-size: 46px; }
  .hero { padding: 60px 0 50px 0; }
  .page-hero { padding: 60px 0 40px 0; }
  .page-hero h1 { font-size: 36px; }
  .section { padding: 70px 0; }
  .feature, .final-cta { padding: 70px 0; }
  .grid-3, .grid-2, .grid-4, .outcomes, .footer-grid, .team-preview, .form-row { grid-template-columns: 1fr; }
  .footer-grid { gap: 36px; }
  .case-feature { grid-template-columns: 1fr; }
  .case-visual { min-height: 220px; }
  .outcomes { border-left: none; }
  .outcome { border-right: none; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 28px 28px 28px;
    gap: 18px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 28px rgba(14,30,63,0.06);
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 17px; }
  .nav-burger { display: inline-flex; }
  .hero-ctas { flex-direction: column; align-items: flex-start; gap: 14px; }
  .footer-accred { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 520px) {
  h1 { font-size: 34px; }
  .page-hero h1 { font-size: 30px; }
  .display { font-size: 36px; }
  .hero .lede, .page-hero .lede { font-size: 17px; }
}
