/* ============================================
   Simple Solutions Health Advisors
   Brand palette pulled from simplesolutionsha.com
   ============================================ */

:root {
  --navy: #0D232E;        /* primary deep navy */
  --navy-soft: #1a3a4a;
  --blue: #378EBA;        /* link / accent blue */
  --blue-dark: #266f96;
  --cream: #FFF5D0;       /* hero cream / brand accent */
  --cream-soft: #FBF6E6;
  --coral: #FF7E54;       /* warm CTA accent */
  --coral-soft: #FFA587;
  --ink: #2a2422;         /* body text */
  --ink-soft: #635551;    /* secondary text */
  --line: #e9e3d8;        /* dividers */
  --bg: #fafaf7;          /* page background */
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(13, 35, 46, 0.06), 0 1px 2px rgba(13, 35, 46, 0.04);
  --shadow-md: 0 4px 16px rgba(13, 35, 46, 0.08), 0 2px 6px rgba(13, 35, 46, 0.05);
  --shadow-lg: 0 18px 50px -12px rgba(13, 35, 46, 0.25);
}

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: 0.5px;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 300; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.5rem; font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }

p { margin-bottom: 1rem; }
a { color: var(--blue); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--blue-dark); }

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

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== HEADER ========== */
header.site-header {
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 245, 208, 0.1);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: var(--shadow-md);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  max-width: 1160px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  height: 60px;
  width: auto;
  display: block;
}

.brand-mark {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--navy);
  display: grid; place-items: center;
  color: var(--cream);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.brand-text {
  font-family: 'Barlow Condensed', sans-serif;
  color: var(--navy);
  line-height: 1.05;
}
.brand-text .b1 { font-size: 1.1rem; font-weight: 600; letter-spacing: 1px; }
.brand-text .b2 { font-size: .78rem; color: var(--ink-soft); letter-spacing: 1.5px; text-transform: uppercase; }

nav.primary {
  display: flex;
  align-items: center;
  gap: 28px;
}

nav.primary a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 500;
  position: relative;
  padding: 6px 0;
}

nav.primary a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transition: transform .25s ease;
  transform-origin: left;
}
nav.primary a:not(.btn):hover::after,
nav.primary a.active::after { transform: scaleX(1); }
nav.primary a.active { color: var(--coral-soft); }

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  font-size: 1.6rem;
  color: var(--cream);
  cursor: pointer;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  transition: all .25s ease;
  border: 2px solid transparent;
  font-size: 1rem;
  cursor: pointer;
}
.btn-primary { background: var(--coral); color: var(--white); border-color: var(--coral); }
.btn-primary:hover { background: var(--navy); border-color: var(--navy); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-secondary { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-secondary:hover { background: var(--navy); color: var(--white); transform: translateY(-1px); }

.btn-ghost { background: transparent; color: var(--cream); border-color: var(--cream); }
.btn-ghost:hover { background: var(--cream); color: var(--navy); }

.btn-sm { padding: 10px 18px; font-size: .85rem; }

/* ========== HERO ========== */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, #082935 60%, #051c26 100%);
  color: var(--white);
  padding: 110px 24px 130px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -150px; right: -100px;
  width: 540px; height: 540px;
  background: radial-gradient(circle, rgba(55, 142, 186, 0.25) 0%, transparent 65%);
  border-radius: 50%;
  filter: blur(20px);
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -180px; left: -120px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(255, 126, 84, 0.18) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-inner {
  position: relative;
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--coral-soft);
  font-size: .95rem;
  margin-bottom: 22px;
  padding-left: 50px;
  position: relative;
}
.hero-eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 38px; height: 1px;
  background: var(--coral-soft);
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.8rem, 5.5vw, 4.6rem);
  font-weight: 300;
  margin-bottom: 8px;
}
.hero h1 .accent {
  display: block;
  color: var(--cream);
  font-weight: 600;
}
.hero .lead {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.82);
  margin: 24px 0 36px;
  max-width: 480px;
  line-height: 1.65;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}
.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 245, 208, 0.18);
}
.hero-trust .item {
  font-family: 'Barlow Condensed', sans-serif;
}
.hero-trust .num {
  display: block;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1;
}
.hero-trust .lbl {
  display: block;
  font-size: .8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 245, 208, 0.7);
  margin-top: 4px;
}

/* hero visual card */
.hero-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 245, 208, 0.15);
  border-radius: 12px;
  padding: 32px;
  backdrop-filter: blur(8px);
  position: relative;
}
.hero-card::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 4px;
  background: linear-gradient(90deg, var(--coral) 0%, var(--blue) 100%);
  border-radius: 12px 12px 0 0;
}
.hero-card h3 {
  color: var(--cream);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  margin-bottom: 18px;
  letter-spacing: 1px;
}
.hero-card ul { list-style: none; }
.hero-card ul li {
  padding: 12px 0;
  padding-left: 30px;
  position: relative;
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(255, 245, 208, 0.08);
  font-size: .95rem;
}
.hero-card ul li:last-child { border-bottom: 0; }
.hero-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 12px;
  color: var(--coral);
  font-weight: 700;
}

/* ========== SECTIONS ========== */
section {
  padding: 90px 0;
}
section.alt { background: var(--white); }
section.cream { background: var(--cream-soft); }
section.dark { background: var(--navy); color: rgba(255,255,255,0.9); }
section.dark h2, section.dark h3 { color: var(--cream); }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-head .eyebrow {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--coral);
  font-size: .9rem;
  margin-bottom: 14px;
}
.section-head h2 { margin-bottom: 14px; }
.section-head p {
  color: var(--ink-soft);
  font-size: 1.05rem;
}
.section-head.left { text-align: left; margin-left: 0; }

/* ========== CARD GRIDS ========== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 32px 28px;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--coral-soft);
}
.card:hover::before { transform: scaleX(1); }

.card .icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--cream-soft);
  display: grid; place-items: center;
  margin-bottom: 20px;
  color: var(--coral);
  font-size: 1.6rem;
}
.card h3 { margin-bottom: 10px; }
.card p { color: var(--ink-soft); margin-bottom: 0; font-size: .95rem; }

/* situation cards (no icon, list-of-cases style) */
.situation {
  background: var(--white);
  border-left: 3px solid var(--coral);
  padding: 24px 28px;
  border-radius: 0 6px 6px 0;
  box-shadow: var(--shadow-sm);
}
.situation h4 {
  color: var(--navy);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.situation p { color: var(--ink-soft); font-size: .92rem; margin: 0; }

/* ========== FRAMEWORK STRIPE ========== */
.framework {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.framework .step {
  padding: 40px 32px;
  border-right: 1px solid var(--line);
  position: relative;
}
.framework .step:last-child { border-right: 0; }
.framework .num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 12px;
  opacity: 0.85;
}
.framework h4 { margin-bottom: 10px; font-size: 1.2rem; }
.framework p { color: var(--ink-soft); font-size: .92rem; margin: 0; }

/* ========== FAQ ========== */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: box-shadow .2s ease;
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 22px 26px;
  text-align: left;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: 0.5px;
}
.faq-q .chev {
  font-size: 1.4rem;
  color: var(--coral);
  transition: transform .25s ease;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.open .faq-q .chev { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-a-inner {
  padding: 0 26px 22px;
  color: var(--ink-soft);
  font-size: .98rem;
  line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 400px; }

/* ========== CTA BANDS ========== */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, #103040 100%);
  color: var(--white);
  padding: 70px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 50%;
  background: radial-gradient(circle at right, rgba(255, 126, 84, 0.12) 0%, transparent 60%);
}
.cta-band h2 {
  color: var(--cream);
  margin-bottom: 14px;
  position: relative;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 620px;
  margin: 0 auto 30px;
  position: relative;
}
.cta-band .btn { position: relative; }

/* ========== FOOTER ========== */
footer.site-footer {
  background: #051c26;
  color: rgba(255, 245, 208, 0.65);
  padding: 60px 24px 24px;
  font-size: .9rem;
}
.footer-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 245, 208, 0.12);
}
.footer-grid h5 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 16px;
}
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a { color: rgba(255, 245, 208, 0.7); }
.footer-grid a:hover { color: var(--coral-soft); }

.footer-brand .brand-text .b1 { color: var(--cream); }
.footer-brand .brand-text .b2 { color: rgba(255, 245, 208, 0.6); }
.footer-tagline {
  color: rgba(255, 245, 208, 0.7);
  margin-top: 18px;
  font-style: italic;
  max-width: 320px;
  font-size: .92rem;
}

.legal {
  max-width: 1160px;
  margin: 24px auto 0;
  font-size: .8rem;
  color: rgba(255, 245, 208, 0.45);
  text-align: center;
  line-height: 1.6;
}

/* ========== ABOUT PAGE ========== */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, #082935 100%);
  color: var(--white);
  padding: 80px 24px 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -100px; right: -80px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(255, 126, 84, 0.18) 0%, transparent 70%);
  border-radius: 50%;
}
.page-header h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 4.2vw, 3.2rem);
  font-weight: 300;
  position: relative;
  line-height: 1.15;
}
.page-header h1 .accent {
  color: var(--cream);
  font-weight: 600;
  display: block;
  font-size: 0.85em;
  margin-top: 6px;
}
.page-header p {
  color: rgba(255, 245, 208, 0.8);
  max-width: 620px;
  margin: 18px auto 0;
  position: relative;
}
.page-header .crumbs {
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: .85rem;
  color: var(--coral-soft);
  margin-bottom: 14px;
  position: relative;
}

.bio-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}
.bio-portrait {
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 40px 30px;
  text-align: center;
  position: sticky;
  top: 100px;
}
.bio-portrait .avatar {
  width: 200px; height: 200px;
  border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
  position: relative;
}
.bio-portrait .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bio-portrait h3 { margin-bottom: 4px; }
.bio-portrait .role {
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--coral);
  font-size: .85rem;
  margin-bottom: 24px;
}
.bio-portrait .info-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  font-size: .9rem;
  text-align: left;
}
.bio-portrait .info-row:first-of-type { border-top: 0; }
.bio-portrait .info-row .ic {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--white);
  display: grid; place-items: center;
  color: var(--coral);
  flex-shrink: 0;
}

.bio-body h2 { margin-bottom: 18px; }
.bio-body p { color: var(--ink); font-size: 1rem; line-height: 1.8; margin-bottom: 1.2rem; }
.bio-body .pullquote {
  border-left: 3px solid var(--coral);
  padding: 4px 0 4px 24px;
  margin: 30px 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.4;
  font-style: normal;
}

/* values strip */
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}
.value h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 8px;
  padding-top: 16px;
  border-top: 2px solid var(--coral);
  display: inline-block;
}
.value p { color: var(--ink-soft); font-size: .95rem; margin: 0; }

/* ========== SERVICES PAGE ========== */
.service-block {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 40px;
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  align-items: start;
  transition: all .3s ease;
}
.service-block:hover {
  border-color: var(--coral-soft);
  box-shadow: var(--shadow-md);
}
.service-block .ic-large {
  width: 72px; height: 72px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-soft) 100%);
  display: grid; place-items: center;
  color: var(--white);
  font-size: 1.8rem;
  box-shadow: var(--shadow-sm);
}
.service-block h3 { margin-bottom: 10px; }
.service-block p { color: var(--ink-soft); margin-bottom: 12px; }
.service-block ul {
  list-style: none;
  margin-top: 10px;
}
.service-block ul li {
  padding: 6px 0 6px 22px;
  position: relative;
  color: var(--ink);
  font-size: .95rem;
}
.service-block ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--coral);
  font-weight: 700;
}

/* ========== TEAM PAGE ========== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.agent-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 32px 24px;
  text-align: center;
  transition: all .25s ease;
}
.agent-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--coral-soft);
}
.agent-card .avatar-sm {
  width: 86px; height: 86px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  margin: 0 auto 16px;
  display: grid; place-items: center;
  color: var(--cream);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.9rem;
  font-weight: 600;
}
.agent-card h4 { margin-bottom: 4px; color: var(--navy); }
.agent-card .role {
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--coral);
  font-size: .78rem;
  margin-bottom: 0;
}

.states-list {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 40px;
  margin-top: 40px;
}
.states-list h3 { margin-bottom: 18px; }
.states-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
}
.states-grid span {
  padding: 8px 14px;
  background: var(--cream-soft);
  border-radius: 4px;
  font-size: .88rem;
  color: var(--navy);
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 1px;
  font-weight: 500;
}

/* ========== CONTACT PAGE ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.contact-channels { display: flex; flex-direction: column; gap: 18px; }
.contact-channel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px 28px;
  display: flex;
  gap: 20px;
  align-items: center;
  transition: all .25s ease;
  text-decoration: none;
  color: inherit;
}
.contact-channel:hover {
  border-color: var(--coral);
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}
.contact-channel .ic {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--cream-soft);
  color: var(--coral);
  display: grid; place-items: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-channel h4 { margin-bottom: 4px; color: var(--navy); }
.contact-channel p { margin: 0; color: var(--ink-soft); font-size: .95rem; }
.contact-channel .lbl {
  display: block;
  font-size: .72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--coral);
  font-family: 'Barlow Condensed', sans-serif;
  margin-bottom: 2px;
}

.calendly-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.calendly-box .eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--coral);
  font-size: .85rem;
  margin-bottom: 8px;
}
.calendly-box h2 { font-size: 2rem; margin-bottom: 14px; }
.calendly-box p { color: var(--ink-soft); margin-bottom: 24px; }
.calendly-box .perks {
  list-style: none;
  margin-bottom: 28px;
}
.calendly-box .perks li {
  padding: 8px 0 8px 26px;
  position: relative;
  font-size: .95rem;
  color: var(--ink);
}
.calendly-box .perks li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--coral);
  font-weight: 700;
}

/* ========== TESTIMONIALS ========== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 36px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all .25s ease;
}
.testimonial:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--coral-soft);
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 8px; left: 18px;
  font-family: 'Barlow Condensed', serif;
  font-size: 4.5rem;
  color: var(--coral);
  opacity: 0.25;
  line-height: 1;
  font-weight: 700;
}
.testimonial-body {
  position: relative;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 22px;
  flex: 1;
}
.testimonial-attr {
  border-top: 1px solid var(--line);
  padding-top: 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .92rem;
  color: var(--ink-soft);
  letter-spacing: 1px;
}
.testimonial-attr .name {
  display: block;
  color: var(--navy);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: .85rem;
}

/* footer logo - keep cream/navy version on dark footer */
.footer-brand .brand-logo {
  height: 96px;
  margin-bottom: 6px;
}

/* ========== LICENSES PAGE ========== */
.licenses-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}
.licenses-intro p {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.license-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 16px;
}
.license-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px 18px;
  text-align: center;
  transition: all .25s ease;
  cursor: pointer;
  position: relative;
}
.license-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--coral);
}
.license-card:hover .view-hint {
  opacity: 1;
  transform: translateY(0);
}
.license-card .abbr {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 6px;
}
.license-card .name {
  font-size: .92rem;
  color: var(--navy);
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 1px;
  font-weight: 500;
}
.license-card .view-hint {
  display: block;
  font-size: 0.7rem;
  color: var(--coral);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 6px;
  font-family: 'Barlow Condensed', sans-serif;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .25s ease, transform .25s ease;
}

/* ========== LIGHTBOX ========== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13, 35, 46, 0.92);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(8px);
}
.lightbox.open {
  display: flex;
  animation: fadeIn .25s ease-out;
}
@keyframes fadeIn { from { opacity: 0 } to { opacity: 1 } }

.lightbox-content {
  position: relative;
  max-width: 1100px;
  max-height: 90vh;
  width: 100%;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.lightbox-header {
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--cream-soft);
}
.lightbox-header h3 {
  font-family: 'Barlow Condensed', sans-serif;
  color: var(--navy);
  font-size: 1.3rem;
  letter-spacing: 1px;
  margin: 0;
}
.lightbox-close {
  background: transparent;
  border: 0;
  color: var(--ink-soft);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  padding: 0 6px;
  transition: color .2s ease;
}
.lightbox-close:hover { color: var(--coral); }
.lightbox-image {
  flex: 1;
  overflow: auto;
  background: var(--cream-soft);
  padding: 24px;
  text-align: center;
}
.lightbox-image img {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
@media (max-width: 760px) {
  .hero-inner, .bio-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .bio-portrait { position: static; }
  .grid-3, .team-grid, .framework, .values { grid-template-columns: 1fr; }
  .framework .step { border-right: 0; border-bottom: 1px solid var(--line); }
  .framework .step:last-child { border-bottom: 0; }
  .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .service-block { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .menu-toggle { display: block; }
  nav.primary {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    gap: 0;
    padding: 0;
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
  }
  nav.primary.open { max-height: 500px; }
  nav.primary a {
    width: 100%;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255, 245, 208, 0.1);
  }
  nav.primary a.btn { margin: 16px 24px; width: calc(100% - 48px); text-align: center; }
  section { padding: 60px 0; }
  .hero { padding: 70px 24px 90px; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-trust { gap: 18px; }
  .hero-trust .num { font-size: 1.7rem; }
}

/* ========== ANIMATIONS ========== */
@keyframes rise {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.rise { animation: rise .7s ease-out both; }
.rise-d1 { animation-delay: .1s; }
.rise-d2 { animation-delay: .2s; }
.rise-d3 { animation-delay: .35s; }
.rise-d4 { animation-delay: .5s; }
