/* ═══════════════════════════════════════════
   EVOKE COACHING REAL CHANGE — brand.css
   Shared styles for all pages
   ═══════════════════════════════════════════ */

/* ── BRAND TOKENS ── */
:root {
  --blue:       #0073d9;
  --amber:      #FFB347;
  --slate:      #475469;
  --ecru:       #f5f2e8;
  --white:      #ffffff;
  --slate-dark: #2e3647;
  --blue-dark:  #005bb0;
  --radius:     6px;
  --max:        1100px;
  --gap:        clamp(2rem, 5vw, 4rem);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Cabin', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--slate);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ── UTILS ── */
.container {
  width: min(var(--max), 100% - 2.5rem);
  margin-inline: auto;
}
.btn {
  display: inline-block;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  font-family: 'Cabin', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  border: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.15); }
.btn-primary { background: var(--amber); color: var(--slate-dark); }
.btn-ghost   { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-ghost:hover { background: rgba(255,255,255,.12); }
.btn-outline { background: transparent; color: var(--blue); border: 2px solid var(--blue); }
.btn-outline:hover { background: var(--blue); color: var(--white); }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid rgba(71,84,105,.12);
  padding: .75rem 0;
}
nav .inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.nav-brand { text-decoration: none; line-height: 1; flex-shrink: 0; }
.nav-logo { height: 38px; width: auto; max-width: none; display: inline-block; }
.nav-links { display: flex; gap: 1.5rem; list-style: none; }
.nav-links a {
  text-decoration: none; font-weight: 600; font-size: .9rem;
  color: var(--slate); transition: color .15s;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--blue); }
.nav-right {
  display: flex; align-items: center; gap: 1rem; flex-shrink: 0;
}
.nav-linkedin {
  color: var(--slate); transition: color .15s;
  display: flex; align-items: center;
}
.nav-linkedin:hover { color: var(--blue); }
.nav-cta { font-size: .9rem !important; padding: .55rem 1.2rem !important; }

/* ── AUDIENCE ── */
#audience { background: var(--white); }
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem; margin-top: 2.5rem;
}
.audience-card {
  background: var(--ecru); border-radius: var(--radius);
  padding: 1.75rem;
  border-top: 3px solid var(--blue);
  transition: box-shadow .2s, transform .2s;
}
.audience-card:hover { box-shadow: 0 6px 24px rgba(0,115,217,.1); transform: translateY(-2px); }
.audience-icon { font-size: 1.6rem; margin-bottom: .6rem; line-height: 1; }
.audience-card h3 { font-size: 1rem; font-weight: 700; color: var(--slate-dark); margin-bottom: .4rem; }
.audience-card p { font-size: .9rem; line-height: 1.6; }

/* ── PAGE HEADER (inner pages) ── */
.page-header {
  background: var(--blue);
  color: var(--white);
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(2.5rem, 6vw, 4rem);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(0,91,176,.55) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(255,179,71,.1) 0%, transparent 60%);
  pointer-events: none;
}
.page-header .container { position: relative; }
.page-header .breadcrumb {
  font-size: .8rem; font-weight: 600; letter-spacing: .05em;
  opacity: .7; margin-bottom: .75rem;
}
.page-header .breadcrumb a { color: var(--white); text-decoration: none; }
.page-header .breadcrumb a:hover { opacity: 1; text-decoration: underline; }
.page-header h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700; line-height: 1.1;
  margin-bottom: .75rem;
}
.page-header h1 em { font-style: normal; color: var(--amber); }
.page-header p {
  font-size: 1.1rem; opacity: .88; max-width: 560px;
}

/* ── SECTION SHARED ── */
section { padding: var(--gap) 0; }
.section-label {
  font-size: .75rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--blue);
  margin-bottom: .6rem;
}
h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700; line-height: 1.2;
  color: var(--slate-dark);
  margin-bottom: 1rem;
}
h3 { color: var(--slate-dark); }
.lead {
  font-size: 1.1rem; max-width: 620px;
  color: var(--slate); margin-bottom: 2rem;
}

/* ── HERO (home page) ── */
#hero {
  background: var(--blue);
  color: var(--white);
  padding: clamp(4rem, 10vw, 7rem) 0 clamp(3rem, 8vw, 6rem);
  position: relative;
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(0,91,176,.55) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(255,179,71,.12) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr auto;
  gap: 3rem; align-items: center; position: relative;
}
.hero-eyebrow {
  display: inline-block;
  background: rgba(255,179,71,.2); color: var(--amber);
  font-size: .8rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .8rem; border-radius: 2rem; margin-bottom: 1.25rem;
}
#hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700; line-height: 1.1; margin-bottom: 1.25rem;
}
#hero h1 em { font-style: normal; color: var(--amber); }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  opacity: .9; max-width: 540px; margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-photo {
  width: clamp(200px, 22vw, 280px);
  aspect-ratio: 3/4; object-fit: cover; object-position: top;
  border-radius: var(--radius);
  border: 4px solid rgba(255,255,255,.25);
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
  flex-shrink: 0;
}
.hero-trust {
  margin-top: 2rem;
  display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap;
  font-size: .85rem; opacity: .8;
}
.hero-trust-item { display: flex; align-items: center; gap: .4rem; }
.hero-trust-item::before { content: '✓'; color: var(--amber); font-weight: 700; }

/* ── PROBLEM ── */
#problem { background: var(--ecru); }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem; margin-top: 2.5rem;
}
.problem-card {
  background: var(--white); border-radius: var(--radius);
  padding: 1.5rem; border-left: 3px solid var(--blue);
  box-shadow: 0 2px 12px rgba(71,84,105,.07);
}
.problem-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .4rem; }
.problem-card p { font-size: .92rem; }

/* ── PROGRAM STEPS ── */
#program { background: var(--white); }
.steps { display: flex; flex-direction: column; gap: 0; margin-top: 2.5rem; }
.step {
  display: grid; grid-template-columns: 56px 1fr;
  gap: 1.25rem; padding-bottom: 2rem; position: relative;
}
.step:not(:last-child)::after {
  content: '';
  position: absolute; left: 27px; top: 56px; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue), transparent);
}
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--blue); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 700; flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0,115,217,.3);
}
.step-body h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .3rem; padding-top: .8rem; }
.step-body p { font-size: .95rem; }

/* ── WHY SIX ── */
#why { background: var(--slate-dark); color: var(--white); }
#why h2 { color: var(--white); }
#why .lead { color: rgba(255,255,255,.8); }
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem; margin-top: 2rem;
}
.why-card {
  background: rgba(255,255,255,.07); border-radius: var(--radius);
  padding: 1.5rem; border-top: 3px solid var(--amber);
}
.why-card .stat {
  font-size: 2.2rem; font-weight: 700; color: var(--amber);
  line-height: 1; margin-bottom: .5rem;
}
.why-card p { font-size: .92rem; color: rgba(255,255,255,.75); }

/* ── ABOUT ── */
#about, .about-section { background: var(--ecru); }
.about-grid {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 3rem; align-items: start;
}
.about-photo {
  width: 100%; border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(71,84,105,.2);
}
.about-badges { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }
.badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--white); border-radius: 2rem;
  padding: .35rem .9rem;
  font-size: .8rem; font-weight: 700; color: var(--slate);
  border: 1px solid rgba(71,84,105,.15);
}
.badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); }

/* ICF credential image badges */
.icf-badges { display: flex; gap: 1.25rem; align-items: center; flex-wrap: wrap; margin-top: 1.5rem; }
.icf-badges img { height: 80px; width: auto; }

blockquote {
  margin: 2rem 0 0; padding: 1.25rem 1.5rem;
  background: var(--white);
  border-left: 4px solid var(--amber);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic; font-size: .95rem;
}
blockquote cite {
  display: block; margin-top: .5rem;
  font-style: normal; font-size: .85rem; font-weight: 700; color: var(--blue);
}

/* ── INVESTMENT ── */
#investment { background: var(--white); }

/* Teaser cards on index page */
.investment-teaser-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem; margin-top: 2rem;
}
.inv-teaser-card {
  background: var(--ecru); border-radius: var(--radius);
  padding: 1.75rem; border-top: 3px solid var(--blue);
}
.inv-teaser-icon { font-size: 1.6rem; margin-bottom: .6rem; line-height: 1; }
.inv-teaser-card h3 { font-size: 1rem; font-weight: 700; color: var(--slate-dark); margin-bottom: .4rem; }
.inv-teaser-card p { font-size: .9rem; line-height: 1.6; }

/* Buddy highlight box */
.buddy-box {
  background: linear-gradient(135deg, var(--blue) 0%, #005bb0 100%);
  color: var(--white); border-radius: var(--radius);
  padding: 2.5rem; margin: 2.5rem 0;
  position: relative; overflow: hidden;
}
.buddy-box::before {
  content: '👥';
  position: absolute; right: 2rem; top: 50%;
  transform: translateY(-50%);
  font-size: 5rem; opacity: .15; line-height: 1;
}
.buddy-box .section-label { color: var(--amber); }
.buddy-box h2 { color: var(--white); margin-bottom: .75rem; }
.buddy-box p { opacity: .9; max-width: 580px; font-size: 1rem; line-height: 1.65; }
.buddy-box .buddy-detail {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem; margin-top: 1.75rem;
}
.buddy-point {
  background: rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
}
.buddy-point h4 { font-size: .9rem; font-weight: 700; margin-bottom: .3rem; color: var(--amber); }
.buddy-point p { font-size: .85rem; opacity: .85; margin: 0; }
.price-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem; margin-top: 2.5rem;
}
.price-card {
  border: 2px solid rgba(71,84,105,.12); border-radius: var(--radius);
  padding: 2rem; position: relative; transition: box-shadow .2s;
}
.price-card:hover { box-shadow: 0 8px 30px rgba(0,115,217,.12); }
.price-card.featured { border-color: var(--amber); box-shadow: 0 4px 24px rgba(255,179,71,.2); }
.price-tag {
  position: absolute; top: -12px; left: 1.5rem;
  background: var(--amber); color: var(--slate-dark);
  font-size: .7rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; padding: .2rem .7rem; border-radius: 2rem;
}
.price-name { font-size: 1rem; font-weight: 700; color: var(--slate); margin-bottom: .25rem; }
.price-amount { font-size: 2rem; font-weight: 700; color: var(--slate-dark); line-height: 1.1; }
.price-sub { font-size: .85rem; color: var(--slate); margin-top: .25rem; margin-bottom: 1.25rem; }
.price-features { list-style: none; }
.price-features li {
  font-size: .9rem; padding: .35rem 0;
  border-bottom: 1px solid rgba(71,84,105,.08);
  display: flex; gap: .5rem; align-items: start;
}
.price-features li::before { content: '✓'; color: var(--blue); font-weight: 700; flex-shrink: 0; }

/* ── TESTIMONIALS ── */
#testimonials, .testimonials-section { background: var(--blue); color: var(--white); }
#testimonials h2, .testimonials-section h2 { color: var(--white); }
.testi-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; margin-top: 2.5rem;
}
.testi-card {
  background: rgba(255,255,255,.1); border-radius: var(--radius);
  padding: 1.75rem; backdrop-filter: blur(4px);
}
.testi-stars { color: var(--amber); font-size: 1rem; margin-bottom: .75rem; letter-spacing: .1em; }
.testi-card p { font-size: .95rem; font-style: italic; line-height: 1.6; }
.testi-author { margin-top: 1rem; font-size: .85rem; font-weight: 700; opacity: .8; }

/* ── PROOF STRIP ── */
#proof-strip { background: var(--ecru); padding: 1.5rem 0; }
.proof-strip {
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
}
.proof-item { font-size: .92rem; }
.proof-item strong { color: var(--slate-dark); }
.proof-item span { display: block; font-size: .8rem; color: var(--slate); opacity: .7; margin-top: .1rem; }
.proof-divider { width: 1px; height: 2.5rem; background: rgba(71,84,105,.2); flex-shrink: 0; }
.proof-link { font-size: .92rem; font-weight: 700; color: var(--blue); text-decoration: none; white-space: nowrap; }
.proof-link:hover { text-decoration: underline; }

/* ── CTA BAND ── */
#cta {
  background: var(--slate-dark); color: var(--white);
  text-align: center;
  padding: clamp(3rem, 7vw, 5rem) 0;
}
#cta h2 { color: var(--white); margin-bottom: .75rem; }
#cta p { font-size: 1.05rem; opacity: .8; max-width: 520px; margin: 0 auto 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── CONTACT ── */
#contact { background: var(--ecru); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 3rem; align-items: start;
}
.contact-info h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .75rem; }
.contact-info p { margin-bottom: .5rem; font-size: .95rem; }
.contact-info a { color: var(--blue); text-decoration: none; font-weight: 600; }
form { display: flex; flex-direction: column; gap: .85rem; }
label { font-size: .85rem; font-weight: 700; color: var(--slate-dark); }
input, textarea, select {
  width: 100%; padding: .7rem .9rem;
  border: 1.5px solid rgba(71,84,105,.25);
  border-radius: var(--radius);
  font-family: 'Cabin', sans-serif;
  font-size: .95rem; color: var(--slate-dark);
  background: var(--white);
  transition: border-color .15s;
}
input:focus, textarea:focus, select:focus {
  outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,115,217,.1);
}
textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: .78rem; color: var(--slate); opacity: .7; margin-top: -.3rem; }
.submit-btn {
  background: var(--blue); color: var(--white);
  padding: .85rem; border-radius: var(--radius); 
  font-family: 'Cabin', sans-serif; font-size: 1rem; font-weight: 700;
  border: none; cursor: pointer;
  transition: background .15s, transform .15s;
}
.submit-btn:hover { background: var(--blue-dark); transform: translateY(-1px); }

/* ── FOOTER ── */
footer {
  background: var(--slate-dark); color: rgba(255,255,255,.6);
  padding: 2rem 0;
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
}
.footer-brand { display: flex; flex-direction: column; gap: .5rem; align-items: flex-start; }
.footer-logo { height: 36px; width: auto; max-width: none; display: inline-block; }
.footer-copy { font-size: .82rem; }
.footer-right {
  display: flex; align-items: center; gap: 1.75rem; flex-wrap: wrap;
}
.footer-links { display: flex; gap: 1.5rem; font-size: .85rem; flex-wrap: wrap; }
footer a { color: rgba(255,255,255,.6); text-decoration: none; }
footer a:hover { color: var(--white); }
.footer-linkedin {
  display: flex; align-items: center; gap: .4rem;
  font-size: .85rem; font-weight: 600;
  color: rgba(255,255,255,.6);
  transition: color .15s;
}
.footer-linkedin:hover { color: var(--white); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-copy > * {
  opacity: 0; animation: fadeUp .6s ease forwards;
}
.hero-copy > *:nth-child(1) { animation-delay: .1s; }
.hero-copy > *:nth-child(2) { animation-delay: .25s; }
.hero-copy > *:nth-child(3) { animation-delay: .4s; }
.hero-copy > *:nth-child(4) { animation-delay: .55s; }
.hero-copy > *:nth-child(5) { animation-delay: .7s; }
.hero-photo-wrap {
  opacity: 0; animation: fadeUp .7s ease .35s forwards;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-photo-wrap { order: -1; display: flex; justify-content: center; }
  .hero-photo { width: 200px; aspect-ratio: 1/1; border-radius: 50%; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .proof-divider { display: none; }
  .footer-right { flex-direction: column; align-items: flex-start; gap: 1rem; }
}
