/* Capital Advisors — Site Styles */

* { box-sizing: border-box; }

:root {
  --terracotta: #c45d2e;
  --terracotta-dark: #a14a23;
  --terracotta-soft: #e8a888;
  --navy: #2a3441;
  --ivory: #fcfaf5;
  --cream: #f5f0e6;
  --ink: #1f1a14;
  --ink-soft: #544a3e;
  --ink-light: #857a6b;
  --border: #dcd5c5;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--terracotta); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}
.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo img { height: 48px; display: block; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links li { position: relative; }
.nav-links a {
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}
.nav-links a:hover { color: var(--terracotta); }
.nav-cta {
  background: var(--terracotta);
  color: #fff !important;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--terracotta-dark); text-decoration: none !important; }

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--ink);
}

/* Dropdown for services */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--border);
  min-width: 220px;
  padding: 12px 0;
  margin-top: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.nav-links li:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
}
.nav-dropdown li { display: block; }
.nav-dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  color: var(--ink-soft);
}
.nav-dropdown a:hover {
  background: var(--cream);
  color: var(--terracotta);
}

/* ===== TYPOGRAPHY HELPERS ===== */
.eyebrow {
  font-family: 'Source Serif 4', Georgia, serif;
  font-style: italic;
  font-size: 18px;
  color: var(--terracotta);
  margin: 0 0 12px 0;
  padding-left: 14px;
  border-left: 3px solid var(--terracotta);
  line-height: 1.4;
  font-weight: 500;
}
.eyebrow-centered {
  font-family: 'Source Serif 4', Georgia, serif;
  font-style: italic;
  font-size: 16px;
  color: var(--terracotta);
  margin: 0 0 14px 0;
  font-weight: 500;
  text-align: center;
}
h1, h2, h3 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin: 0;
}
h1 { font-size: 52px; }
h2 { font-size: 36px; }
h3 { font-size: 22px; font-weight: 500; }
em { font-style: italic; color: var(--terracotta); font-weight: 500; }

p { color: var(--ink-soft); margin: 0 0 14px 0; }

.btn {
  display: inline-block;
  background: var(--terracotta);
  color: #fff;
  padding: 15px 30px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: background 0.2s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.btn:hover { background: var(--terracotta-dark); text-decoration: none; }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-outline:hover { background: var(--ink); color: #fff; }

/* ===== SECTIONS ===== */
section { padding: 80px 6vw; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-inner-wide { max-width: 1240px; margin: 0 auto; }
.section-inner-narrow { max-width: 780px; margin: 0 auto; }

.section-white { background: #fff; border-top: 1px solid var(--border); }
.section-ivory { background: var(--ivory); border-top: 1px solid var(--border); }
.section-cream { background: var(--cream); border-top: 1px solid var(--border); }
.section-navy { background: var(--navy); color: #fff; border-top: 1px solid var(--border); }
.section-navy h2, .section-navy h3 { color: #fff; }
.section-navy p { color: rgba(255, 255, 255, 0.78); }

/* ===== HERO ===== */
.hero {
  padding: 80px 6vw 70px;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero h1 {
  font-size: 52px;
  margin: 14px 0 18px 0;
}
.hero-sub {
  font-size: 18px;
  color: var(--ink-soft);
  margin: 0 0 28px 0;
  max-width: 540px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-image img { width: 100%; height: auto; display: block; }

/* ===== SERVICES STRIP ===== */
.services-strip { padding: 60px 6vw; background: var(--cream); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.services-strip-inner { max-width: 1240px; margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.service-item {
  border-top: 2px solid var(--terracotta);
  padding: 20px 0 0 0;
}
.service-item h3 {
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 8px 0;
  letter-spacing: -0.01em;
}
.service-item p {
  font-style: italic;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 80px 6vw; background: #fff; border-top: 1px solid var(--border); }
.testimonials-inner { max-width: 1240px; margin: 0 auto; }
.testimonials-h2 {
  text-align: left;
  font-size: 30px;
  margin: 0 0 48px 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.testimonial {
  border-top: 2px solid var(--terracotta);
  padding: 24px 4px 0;
}
.testimonial-stars {
  display: flex;
  gap: 2px;
  margin: 0 0 14px 0;
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 1;
  color: #d4a017;
}
.testimonial-quote {
  font-family: 'Source Serif 4', Georgia, serif;
  font-style: italic;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  margin: 0 0 18px 0;
}
.testimonial-attr {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 0;
}
.testimonial-attr strong { color: var(--ink); font-weight: 500; }

/* ===== INTRO BLOCKS ===== */
.intro-block { padding: 40px 6vw; border-top: 1px solid var(--border); }
.intro-block-inner { max-width: 780px; margin: 0 auto; }
.intro-block h2 { font-size: 32px; margin: 0 0 14px 0; }
.intro-block p { font-size: 16px; color: var(--ink-soft); line-height: 1.65; margin: 0 0 12px 0; }

/* ===== TEAM ===== */
.team { padding: 80px 6vw; background: #fff; border-top: 1px solid var(--border); }
.team-inner { max-width: 1100px; margin: 0 auto; }
.team h2 { text-align: left; font-size: 32px; margin: 0 0 48px 0; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--cream);
  border-top: 2px solid var(--terracotta);
  padding: 28px;
}
.team-card h3 { font-size: 22px; margin: 0 0 6px 0; }
.team-card .role {
  font-family: 'Source Serif 4', Georgia, serif;
  font-style: italic;
  color: var(--terracotta);
  font-size: 14px;
  margin: 0 0 12px 0;
}
.team-card p { font-size: 14px; line-height: 1.6; margin: 0; }

/* ===== HOW WE WORK ===== */
.how { padding: 80px 6vw; background: var(--cream); border-top: 1px solid var(--border); }
.how-inner { max-width: 1100px; margin: 0 auto; }
.how h2 { text-align: left; font-size: 32px; margin: 0 0 48px 0; }
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}
.how-step {
  background: #fff;
  border-top: 2px solid var(--terracotta);
  padding: 28px;
}
.how-step-num {
  font-family: 'Source Serif 4', Georgia, serif;
  font-style: italic;
  font-size: 14px;
  color: var(--terracotta);
  font-weight: 500;
  margin: 0 0 8px 0;
}
.how-step h3 { font-size: 19px; margin: 0 0 10px 0; }
.how-step p { font-size: 14px; line-height: 1.6; margin: 0; }
.how-cta-bar {
  background: #fff;
  border-top: 3px solid var(--terracotta);
  padding: 32px;
  text-align: center;
}
.how-cta-bar h3 {
  font-size: 24px;
  font-weight: 400;
  margin: 0 0 18px 0;
}

/* ===== WHO WE WORK WITH ===== */
.who { padding: 90px 6vw; background: #fff; border-top: 1px solid var(--border); }
.who-inner { max-width: 1240px; margin: 0 auto; }
.who-header { max-width: 880px; margin: 0 auto 80px; text-align: center; }
.who h2 { font-size: 46px; line-height: 1.05; margin: 0 0 22px 0; }
.who h2 em { font-style: italic; color: var(--terracotta); font-weight: 500; }
.who-intro { font-size: 18px; color: var(--ink-soft); line-height: 1.6; max-width: 640px; margin: 0 auto; }

.who-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 900px; margin: 0 auto; }
.who-card {
  position: relative;
  background: var(--ivory);
  padding: 40px 28px 32px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border);
}
.who-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(31, 26, 20, 0.12); }
.who-bignum {
  position: absolute;
  top: -20px;
  right: -12px;
  font-family: 'Source Serif 4', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 160px;
  line-height: 1;
  color: var(--terracotta);
  opacity: 0.08;
  pointer-events: none;
}
.who-tagrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 18px 0;
  padding-bottom: 14px;
  position: relative;
}
.who-tagrow::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--terracotta);
}
.who-tag {
  font-size: 11px;
  color: var(--terracotta);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}
.who-icon { color: var(--terracotta); display: flex; align-items: center; flex-shrink: 0; }
.who-icon svg { width: auto; height: 32px; display: block; }
.who-cat {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 18px 0;
  letter-spacing: -0.018em;
  line-height: 1.15;
}
.who-cat em { font-style: italic; color: var(--terracotta); font-weight: 500; }
.who-examples-label {
  font-size: 10px;
  color: var(--ink-light);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 8px 0 8px 0;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.who-list { list-style: none; padding: 0; margin: 0; }
.who-list li { font-size: 13px; color: var(--ink-soft); line-height: 2; }

.who-cta {
  margin-top: 48px;
  background: var(--navy);
  color: #fff;
  padding: 36px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
  border-top: 3px solid var(--terracotta);
}
.who-cta-text { flex: 1; min-width: 280px; }
.who-cta-eyebrow {
  font-family: 'Source Serif 4', Georgia, serif;
  font-style: italic;
  font-size: 15px;
  color: var(--terracotta-soft);
  margin: 0 0 8px 0;
  font-weight: 500;
}
.who-cta h3 { color: #fff; font-size: 28px; line-height: 1.15; margin: 0 0 8px 0; }
.who-cta p { color: rgba(255, 255, 255, 0.78); font-size: 15px; margin: 0; max-width: 560px; }
.who-cta-btn {
  display: inline-block;
  background: var(--terracotta);
  color: #fff !important;
  padding: 14px 28px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.who-cta-btn:hover { background: var(--terracotta-dark); text-decoration: none; }

/* ===== FINAL CTA ===== */
.final-cta { padding: 100px 6vw; background: var(--navy); color: #fff; text-align: center; }
.final-cta h2 { color: #fff; font-size: 40px; margin: 0 0 16px 0; }
.final-cta p { color: rgba(255, 255, 255, 0.85); font-size: 17px; max-width: 540px; margin: 0 auto 28px; }

/* ===== CREDENTIALS ===== */
.credentials {
  padding: 28px 6vw;
  background: var(--ivory);
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 12px;
  color: var(--ink-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ===== LOCATIONS FOOTER ===== */
.locations {
  padding: 60px 6vw 40px;
  background: var(--navy);
  color: #fff;
  border-top: 3px solid var(--terracotta);
}
.locations-inner { max-width: 1240px; margin: 0 auto; }
.locations-lead {
  text-align: center;
  font-family: 'Source Serif 4', Georgia, serif;
  font-style: italic;
  color: var(--terracotta-soft);
  font-size: 16px;
  margin: 0 0 28px 0;
}
.locations-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.location-item {
  text-align: center;
  padding: 16px 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.location-item .city {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 15px;
  color: #fff;
  margin: 0 0 6px 0;
}
.location-item .city a { color: #fff; }
.location-item .city a:hover { color: var(--terracotta-soft); text-decoration: none; }
.location-item .phone {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}
.location-item .phone a { color: rgba(255, 255, 255, 0.7); }
.location-item .phone a:hover { color: var(--terracotta-soft); }

.footer-bottom {
  padding: 24px 6vw;
  background: #1d242e;
  text-align: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.footer-bottom a { color: rgba(255, 255, 255, 0.5); }
.footer-bottom a:hover { color: var(--terracotta-soft); }

/* ===== MOBILE ===== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
  .nav-mobile-toggle.open + .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  }
  .nav-mobile-toggle.open + .nav-links li { width: 100%; }
  .nav-mobile-toggle.open + .nav-links .nav-cta { width: 100%; text-align: center; }
  
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero h1 { font-size: 38px; }
  .hero-sub { font-size: 16px; }
  
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  
  .who h2 { font-size: 32px; }
  .who-intro { font-size: 16px; }
  
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
  
  h1 { font-size: 38px; }
  h2 { font-size: 28px; }
  .final-cta h2 { font-size: 30px; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: 1fr; gap: 20px; }
  .who-bignum { font-size: 120px; }
  .who-cta {
    flex-direction: column;
    align-items: stretch;
    padding: 22px 20px;
    gap: 16px;
  }
  .who-cta h3 { font-size: 20px; }
  .who-cta p { font-size: 14px; }
  .who-cta-btn { display: block; width: 100%; text-align: center; padding: 14px; box-sizing: border-box; }
  
  .locations-grid { grid-template-columns: 1fr; }
}

/* Team headshots */
.team-headshot{
  width:80px;
  height:80px;
  border-radius:50%;
  object-fit:cover;
  margin-bottom:14px;
  border:2px solid var(--rule);
}

/* Trust badges */
.trust-badges-row{
  display:flex;
  gap:24px;
  justify-content:center;
  align-items:center;
  margin-bottom:14px;
  flex-wrap:wrap;
}
.trust-badge{
  height:70px;
  width:auto;
  display:block;
}
@media (max-width:600px){
  .trust-badge{height:56px}
  .trust-badges-row{gap:16px}
}

.credentials-inner{
  max-width:1240px;
  margin:0 auto;
  text-align:center;
}
.credentials-text{
  font-size:12px;
  color:var(--ink-soft);
  letter-spacing:0.04em;
}

/* Testimonials header with inline badges */
.testimonials-header{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:24px;
  margin-bottom:40px;
  flex-wrap:wrap;
}
.testimonials-header-left{
  flex:1;
  min-width:240px;
}
.testimonials-h2{
  margin:0;
}
.testimonials-badges{
  display:flex;
  gap:16px;
  align-items:center;
  flex-shrink:0;
}
.testimonials-badges .trust-badge{
  height:78px;
  width:auto;
}
@media (max-width:700px){
  .testimonials-header{flex-direction:column}
  .testimonials-badges{order:2}
  .testimonials-badges .trust-badge{height:56px}
}

/* ============================================================
   FULL-WIDTH CONTENT OVERRIDES
   Widen constrained text columns so copy spans the page.
   ============================================================ */
.section-inner,
.section-inner-narrow,
.intro-block-inner,
.team-inner,
.how-inner { max-width: 1240px; }

.who-header { max-width: 1100px; }
.who-intro { max-width: 920px; }
.hero h1 { max-width: none; }
.hero-sub { max-width: 720px; }
.who-cta p,
.final-cta p { max-width: 820px; }

/* Comfortable side padding so text never touches the edges
   while still reading as full-width across the page */
.section-inner,
.section-inner-wide,
.section-inner-narrow,
.intro-block-inner,
.team-inner,
.how-inner,
.who-inner,
.services-strip-inner,
.testimonials-inner,
.locations-inner { padding-left: 6vw; padding-right: 6vw; box-sizing: border-box; }

@media (max-width: 640px) {
  .section-inner, .section-inner-wide, .section-inner-narrow,
  .intro-block-inner, .team-inner, .how-inner, .who-inner,
  .services-strip-inner, .testimonials-inner, .locations-inner {
    padding-left: 24px; padding-right: 24px;
  }
}

/* ===== NAV LOGO HARDENING ===== */
.nav-logo { display: flex; align-items: center; min-width: 150px; flex-shrink: 0; }
.nav-logo img { height: 46px; width: auto; display: block; }
.nav-logo-text {
  align-items: baseline; gap: 3px;
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 22px; font-weight: 500; color: var(--navy);
  letter-spacing: -0.01em; line-height: 1;
}
.nav-logo-text strong { color: var(--terracotta); font-weight: 600; }
.nav-inner { gap: 32px; }
.nav-links { margin-left: auto; }

/* ===== SERVICE CARDS (services page) ===== */
.svc-card {
  border-top: 3px solid var(--terracotta);
  padding: 32px; background: #fff; color: inherit; text-decoration: none;
  display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(31,26,20,0.08); text-decoration: none; }
.svc-card h3 { font-family: 'Source Serif 4', Georgia, serif; font-size: 24px; font-weight: 600; margin: 0 0 10px; color: var(--ink); }
.svc-card .svc-tag { font-size: 15px; font-style: italic; color: var(--terracotta-dark); line-height: 1.5; margin: 0 0 14px; }
.svc-card p { font-size: 15px; color: var(--ink-soft); line-height: 1.65; margin: 0 0 14px; }
.svc-card .svc-best { font-size: 14px; color: var(--ink-light); margin: 0 0 18px; }
.svc-card .svc-best strong { color: var(--ink-soft); }
.svc-card .svc-link { color: var(--terracotta); font-size: 14px; font-weight: 600; margin-top: auto; }
@media (max-width: 760px){ .services-2-grid { grid-template-columns: 1fr !important; } }

/* ===== TEAM BIO (about page) ===== */
.team-bio { display: grid; grid-template-columns: 200px 1fr; gap: 36px; align-items: start; margin: 0 0 56px; }
.team-bio-photo { width: 200px; height: 200px; object-fit: cover; border-radius: 12px; }
.team-bio-text h3 { font-family: 'Source Serif 4', Georgia, serif; font-size: 26px; font-weight: 600; margin: 0 0 6px; color: var(--ink); }
.team-bio-text .role { font-size: 14px; color: var(--terracotta-dark); font-weight: 500; margin: 0 0 16px; }
.team-bio-text p { font-size: 15px; line-height: 1.7; color: var(--ink-soft); margin: 0 0 14px; }
@media (max-width: 680px){
  .team-bio { grid-template-columns: 1fr; gap: 18px; }
  .team-bio-photo { width: 120px; height: 120px; }
}

/* ===== FEATURE LISTS / CARDS / COMPARE (service & approach pages) ===== */
.feature-list { list-style: none; padding: 0; margin: 0; }
.feature-list li { position: relative; padding: 12px 0 12px 32px; border-bottom: 1px solid var(--border); font-size: 16px; color: var(--ink-soft); line-height: 1.55; }
.feature-list li::before { content: "✓"; position: absolute; left: 0; top: 12px; color: var(--terracotta); font-weight: 700; }
.feature-list li strong { color: var(--ink); font-weight: 600; }
.feature-card { border-top: 3px solid var(--terracotta); padding: 28px; background: #fff; }
.feature-card h3 { font-family: 'Source Serif 4', Georgia, serif; font-size: 19px; font-weight: 600; margin: 0 0 8px; color: var(--ink); }
.feature-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.6; margin: 0; }
.compare-list { list-style: none; padding: 0; margin: 0; }
.compare-list li { position: relative; padding: 10px 0 10px 28px; font-size: 15px; color: var(--ink-soft); }
.compare-good li::before { content: "✓"; position: absolute; left: 0; color: #3a8a4f; font-weight: 700; }
.compare-bad li::before { content: "✕"; position: absolute; left: 0; color: var(--ink-light); font-weight: 700; }

/* ===== INTERNAL LINKING / RELATED ===== */
.related-links { padding: 56px 6vw; background: var(--ivory); border-top: 1px solid var(--border); }
.related-links-inner { max-width: 1100px; margin: 0 auto; }
.related-links h2 { font-family: 'Source Serif 4', Georgia, serif; font-size: 24px; font-weight: 600; margin: 0 0 24px; color: var(--ink); }
.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 16px; }
.related-link { display: block; border: 1px solid var(--border); border-radius: 10px; padding: 20px 22px; background: #fff; text-decoration: none; color: inherit; transition: box-shadow .2s, transform .2s, border-color .2s; }
.related-link:hover { box-shadow: 0 8px 22px rgba(31,26,20,.07); transform: translateY(-2px); border-color: var(--terracotta-soft); text-decoration: none; }
.related-link strong { display: block; font-family: 'Source Serif 4', Georgia, serif; font-size: 16px; font-weight: 600; color: var(--ink); margin: 0 0 5px; }
.related-link span { font-size: 13px; color: var(--ink-soft); line-height: 1.5; }
.related-link .arrow { color: var(--terracotta); font-weight: 600; }
/* inline contextual links in body copy */
.intro-block-inner a, .svc-card + *, .feature-list a { color: var(--terracotta); }

/* ===== INLINE SVG LOGO (final, self-contained) ===== */
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo-svg { height: 40px; width: auto; display: block; }
/* Lock nav layout: logo left, menu right, no drift regardless of logo load state */
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
@media (min-width: 901px) {
  .nav-links { display: flex; align-items: center; gap: 28px; margin-left: auto; }
}
@media (max-width: 900px){
  .nav-links { margin-left: 0; }
  .nav-logo-svg { height: 36px; }
}

/* ===== SCROLL REVEAL (staggered) ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s cubic-bezier(.22,.61,.36,1), transform .6s cubic-bezier(.22,.61,.36,1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ===== LOGO: local image with SVG fallback ===== */
.nav-logo-img { height: 44px; width: auto; display: block; }
.nav-logo-svg { height: 40px; width: auto; }
@media (max-width: 860px){ .nav-logo-img { height: 38px; } .nav-logo-svg { height: 36px; } }

/* ===== ANIMATED CHECK LIST (Our Approach) ===== */
.check-list { list-style: none; padding: 0; margin: 0; }
.check-item {
  display: flex; align-items: center; gap: 18px;
  padding: 18px 0; border-bottom: 1px solid var(--border);
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: clamp(20px, 2.4vw, 28px); font-weight: 500; line-height: 1.3;
  color: var(--ink);
}
.check-item:last-child { border-bottom: none; }
.check-box {
  flex-shrink: 0; width: 38px; height: 38px;
  border: 2.5px solid var(--ink-light); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .3s ease, background-color .3s ease;
  transition-delay: var(--check-delay, 0ms);
}
.check-box svg { width: 26px; height: 26px; fill: none; stroke: #fff; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.check-box svg path {
  stroke-dasharray: 30; stroke-dashoffset: 30;
  transition: stroke-dashoffset .4s ease;
  transition-delay: calc(var(--check-delay, 0ms) + 150ms);
}
.js-checks.is-checked .check-box { border-color: var(--terracotta); background: var(--terracotta); }
.js-checks.is-checked .check-box svg path { stroke-dashoffset: 0; }
@media (prefers-reduced-motion: reduce) {
  .check-box, .check-box svg path { transition: none; }
}
