@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url('/assets/fonts/outfit-variable.woff2') format('woff2');
}
@font-face {
  font-family: 'Libre Caslon Text';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/libre-caslon-text-italic.woff2') format('woff2');
}

:root {
  /* Brand palette — corrected 2026-07-09; do not use the printed brand-manual hex values */
  --purple: #441254;
  --purple-deep: #30124a;
  --aquamarine: #40ac94;
  --light-cyan: #7fc6c8;
  --dark-blue: #181434;
  --navy: #30346c;

  --ink: var(--dark-blue);
  --ink-soft: #5a3468;
  --ink-faint: #837da3;
  --paper: #fbfaf9;
  --paper-raised: #ffffff;
  --line: #e7e2ec;
  --line-strong: #d5cce0;
  --wash: #f3eef7;
  --wash-cyan: #eaf6f5;

  --font-display: 'Outfit', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-quote: 'Libre Caslon Text', Georgia, serif;

  --shadow-sm: 0 1px 2px rgba(24, 20, 52, 0.06);
  --shadow-md: 0 8px 28px rgba(24, 20, 52, 0.10);

  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; text-wrap: balance; margin: 0 0 16px; color: var(--dark-blue); }
h1 { font-size: clamp(34px, 5vw, 52px); font-weight: 700; letter-spacing: -0.01em; }
h2 { font-size: clamp(24px, 3vw, 32px); }
h3 { font-size: 20px; }
p { margin: 0 0 16px; color: var(--ink-soft); }
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--aquamarine);
  margin: 0 0 12px;
  display: block;
}
@media (prefers-reduced-motion: reduce) { * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; } }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: 2px solid var(--purple);
  background: var(--purple);
  color: #fff;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  cursor: pointer;
}
.btn:hover { background: var(--purple-deep); border-color: var(--purple-deep); }
.btn-outline { background: transparent; color: var(--purple); }
.btn-outline:hover { background: var(--purple); color: #fff; }
.btn-sm { padding: 10px 18px; font-size: 12px; }

/* Primary button on purple panels — needs white fill for contrast */
.hero-photo .hero-panel .btn,
.cta-band .btn,
.feature-photo .feature-panel .btn {
  background: #fff;
  color: var(--purple);
  border-color: #fff;
}
.hero-photo .hero-panel .btn:hover,
.cta-band .btn:hover,
.feature-photo .feature-panel .btn:hover {
  background: var(--light-cyan);
  color: var(--dark-blue);
  border-color: var(--light-cyan);
}

/* Header */
.site-header {
  background: var(--purple);
  position: sticky;
  top: 0;
  z-index: 40;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; padding-top: 22px; padding-bottom: 22px; gap: 24px; }
.logo img { height: 36px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav ul { list-style: none; display: flex; gap: 30px; margin: 0; padding: 0; }
.main-nav > ul > li { position: relative; }
.main-nav a.nav-link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  padding: 8px 0;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}
.main-nav a.nav-link:hover { color: var(--light-cyan); }
.main-nav li.active > a.nav-link { color: rgba(255, 255, 255, 0.55); }
.has-dropdown .dropdown {
  list-style: none;
  flex-direction: column; /* .main-nav ul's display:flex cascades in; stack children vertically */
  gap: 2px;
  position: absolute;
  top: 100%;
  left: -16px;
  margin: 0;
  padding: 10px;
  min-width: 215px;
  background: var(--paper-raised);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.15s, transform 0.15s, visibility 0.15s;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 8px 10px; font-size: 14px; font-weight: 500; color: var(--ink-soft); text-transform: none; letter-spacing: normal; }
.dropdown a:hover { background: var(--wash); color: var(--purple); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.client-login {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}
.client-login:hover { color: var(--light-cyan); }
.nav-toggle { display: none; }

/* Hero (flat, no photo) */
.hero { padding: 72px 0 56px; }
.hero-inner { max-width: 760px; }
.hero .eyebrow { color: var(--purple); }
.hero p.lede { font-size: 19px; color: var(--ink-soft); max-width: 62ch; }
.hero-actions { display: flex; gap: 16px; margin-top: 28px; }

/* Hero (full-bleed photo, translucent panel — matches the live site's look) */
.hero-photo {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
/* Heroes carry desktop/mobile renditions via inline --hero / --hero-m vars. */
.hero-photo, .feature-photo { background-image: var(--hero-m, var(--hero)); }
@media (min-width: 900px) {
  .hero-photo, .feature-photo { background-image: var(--hero); }
}
.hero-photo .hero-panel {
  background: rgba(68, 18, 84, 0.88);
  color: #fff;
  padding: 40px 44px;
  max-width: 620px;
  margin: 48px max(24px, calc((100vw - var(--max)) / 2 + 24px));
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-top: 3px solid var(--aquamarine);
  box-shadow: 0 18px 44px rgba(24, 20, 52, 0.35);
}
.hero-photo .hero-panel .eyebrow { color: var(--light-cyan); }
.hero-photo .hero-panel h1 { color: #fff; }
.hero-photo .hero-panel p { color: rgba(255, 255, 255, 0.92); }
.hero-photo.tint-cyan .hero-panel { background: rgba(64, 172, 148, 0.88); }
.hero-photo.tint-navy .hero-panel { background: rgba(48, 52, 108, 0.90); }
@media (max-width: 700px) {
  .hero-photo { min-height: 360px; }
  .hero-photo .hero-panel { margin: 24px 16px; padding: 28px 26px; max-width: none; }
}

/* Feature photo band (Home page business/personal advisory sections) */
.feature-photo {
  position: relative;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}
.feature-photo .feature-panel { padding: 44px 48px; max-width: 520px; color: #fff; margin: 24px; }
.feature-photo.tint-purple .feature-panel { background: rgba(68, 18, 84, 0.88); }
.feature-photo.tint-cyan .feature-panel { background: rgba(64, 172, 148, 0.88); }
.feature-photo .feature-panel h2 { color: #fff; }
.feature-photo .feature-panel p { color: rgba(255, 255, 255, 0.92); }
.feature-photo .feature-panel .eyebrow { color: rgba(255, 255, 255, 0.85); }
@media (max-width: 700px) { .feature-photo .feature-panel { margin: 16px; padding: 28px 24px; max-width: none; } }

/* Big supporting photo beside text (Business Advisory / Accounting) */
.content-split { display: grid; grid-template-columns: 1fr 1fr; }
.content-split img { width: 100%; height: 100%; min-height: 340px; max-height: 480px; object-fit: cover; }
.content-split .content-split-text { padding: 56px; display: flex; flex-direction: column; justify-content: center; max-width: 640px; }
@media (max-width: 860px) {
  .content-split { grid-template-columns: 1fr; }
  .content-split img { min-height: 260px; }
  .content-split .content-split-text { padding: 32px 24px; }
}

/* Sections */
.section { padding: 56px 0; }
.section-tight { padding: 32px 0; }
.section-wash { background: var(--wash); }
.section-dark { background: var(--dark-blue); color: #fff; }
.section-dark h2, .section-dark h3, .section-dark p { color: #fff; }
.section-dark .eyebrow { color: var(--light-cyan); }

/* Testimonials */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 32px; }
.testimonial { font-family: var(--font-quote); font-style: italic; font-size: 20px; line-height: 1.5; color: var(--dark-blue); }
.testimonial::before { content: '\201C'; color: var(--aquamarine); font-size: 40px; line-height: 0; display: block; margin-bottom: 8px; font-style: normal; }

/* Service cards */
.services-band { background: var(--purple); padding: 48px; }
.card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.service-card img { aspect-ratio: 1 / 1; object-fit: cover; width: 100%; border-radius: 10px; }
.service-card .service-card-body { padding: 20px 0 0; }
.service-card h3 { margin-bottom: 10px; color: #fff; font-size: 19px; }
.service-card p { font-size: 14.5px; color: rgba(255, 255, 255, 0.88); }
.service-card-link {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 2px;
}
.service-card-link:hover { border-color: #fff; color: var(--light-cyan); }
@media (max-width: 960px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .card-grid { grid-template-columns: 1fr; } .services-band { padding: 32px 20px; } }

/* Services band — stacked row layout (Our Services page) */
.service-rows { display: flex; flex-direction: column; gap: 36px; }
.service-row { display: grid; grid-template-columns: 300px 1fr; gap: 32px; align-items: center; }
.service-row img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 10px; }
.service-row h3 { color: #fff; font-size: 20px; margin-bottom: 8px; }
.service-row p { color: rgba(255, 255, 255, 0.88); font-size: 15px; }
@media (max-width: 700px) { .service-row { grid-template-columns: 1fr; } }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; margin-top: 36px; }
.team-member { display: flex; gap: 20px; }
.team-photo { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 3px solid var(--wash-cyan); }
.team-member h4 { font-size: 15px; margin-bottom: 2px; letter-spacing: 0.01em; }
.team-role { font-size: 12.5px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--aquamarine); margin-bottom: 8px; display: block; }
.team-member p { font-size: 14.5px; margin-bottom: 0; }

/* Values / belief columns */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 28px; }
.value-grid p { text-align: center; font-size: 15px; }

/* Info / trust list */
.trust-list { list-style: none; padding: 0; margin: 20px 0; }
.trust-list li { padding: 10px 0; border-top: 1px solid rgba(255,255,255,0.14); font-weight: 600; font-size: 14.5px; }
.trust-list li:first-child { border-top: none; }

/* Two-column layout w/ sidebar */
.split { display: grid; grid-template-columns: 1.6fr 1fr; gap: 56px; align-items: start; }
.sidebar-card { background: var(--dark-blue); color: #fff; padding: 36px 32px; }
.sidebar-card.has-photo { position: relative; background-size: cover; background-position: center 15%; }
.sidebar-card.has-photo::before { content: ''; position: absolute; inset: 0; background: rgba(24, 20, 52, 0.82); }
.sidebar-card.has-photo > * { position: relative; z-index: 1; }
.sidebar-card h4 { color: var(--light-cyan); font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 18px; }
.sidebar-card p, .sidebar-card a { color: #fff; }
.sidebar-card .btn { margin-top: 20px; background: transparent; border-color: var(--light-cyan); color: #fff; }
.sidebar-card .btn:hover { background: var(--light-cyan); border-color: var(--light-cyan); color: var(--dark-blue); }
.hours-block { margin-top: 22px; font-size: 14.5px; }
.hours-block strong { display: block; color: var(--light-cyan); font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }

/* Detail list (service breakdowns) */
.detail-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 22px; }
.detail-list h4 { font-size: 16px; margin-bottom: 6px; color: var(--purple); }
.detail-list p { font-size: 15px; margin-bottom: 0; }
.detail-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }

/* Contact form */
.contact-form { display: grid; gap: 18px; max-width: 560px; }
.form-field label { display: block; font-size: 13px; font-weight: 700; letter-spacing: 0.03em; text-transform: uppercase; color: var(--ink); margin-bottom: 6px; }
.form-field input, .form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line-strong);
  background: var(--paper-raised);
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--ink);
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { outline: none; border-color: var(--purple); }
.form-field select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line-strong);
  background: var(--paper-raised);
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--ink);
}
.form-note { font-size: 13.5px; color: var(--ink-faint); margin-top: -4px; }
.form-status { font-size: 14px; padding: 12px 14px; background: var(--wash-cyan); border-left: 3px solid var(--aquamarine); display: none; }
.form-status.visible { display: block; }

/* Preparer-vs-advisory comparison (from the client proposal deck) */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 26px; }
.compare-card { background: var(--paper-raised); border: 1px solid var(--line-strong); padding: 26px 28px; }
.compare-card.highlight { border-top: 3px solid var(--aquamarine); }
.compare-tag {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 8px;
}
.compare-card.highlight .compare-tag { color: var(--aquamarine); }
.compare-card h3 { margin-bottom: 8px; }
.compare-card p { font-size: 15px; margin-bottom: 0; }
.compare-quote {
  background: var(--dark-blue);
  color: #fff;
  text-align: center;
  font-family: var(--font-quote);
  font-style: italic;
  font-size: 18px;
  padding: 20px 26px;
  margin: 26px 0 0;
  max-width: none;
}
.compare-quote strong { color: var(--light-cyan); font-weight: 400; }
@media (max-width: 700px) { .compare-grid { grid-template-columns: 1fr; } }

.testimonial-themes { font-size: 14px; color: var(--ink-faint); margin: 20px 0 0; }

/* Trust bar */
.trust-bar { background: var(--paper-raised); border-bottom: 1px solid var(--line); }
.trust-bar .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 40px;
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-soft);
  text-align: center;
}
.trust-bar .star { color: var(--aquamarine); }
.trust-bar a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.trust-bar a:hover { color: var(--purple); }
.footer-bottom a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom a:hover { color: #fff; }

/* Home services row */
.home-services { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 28px; }
.home-service {
  background: var(--paper-raised);
  border: 1px solid var(--line-strong);
  border-top: 3px solid var(--aquamarine);
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
}
.home-service h3 { font-size: 17px; margin-bottom: 8px; }
.home-service p { font-size: 14px; flex: 1; }
.home-service a { font-size: 12.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--purple); }
.home-service a:hover { color: var(--aquamarine); }
@media (max-width: 960px) { .home-services { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .home-services { grid-template-columns: 1fr; } }

/* CTA band */
.cta-band { background: var(--purple); color: #fff; text-align: center; padding: 52px 24px; }
.cta-band h2 { color: #fff; margin-bottom: 10px; }
.cta-band p { color: rgba(255,255,255,0.9); max-width: 56ch; margin: 0 auto 24px; }
.cta-band .cta-phone { display: block; margin-top: 14px; font-size: 14px; color: rgba(255,255,255,0.85); }
.cta-band .cta-phone a { font-weight: 700; color: #fff; }

/* Process steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 26px; counter-reset: step; }
.step { position: relative; padding-top: 6px; }
.step::before {
  counter-increment: step;
  content: counter(step);
  display: block;
  font-size: 30px;
  font-weight: 700;
  color: var(--aquamarine);
  line-height: 1;
  margin-bottom: 10px;
}
.step h4 { font-size: 16px; margin-bottom: 6px; }
.step p { font-size: 14.5px; margin-bottom: 0; }
@media (max-width: 700px) { .steps { grid-template-columns: 1fr; } }

/* Video strip (facade pattern - thumbnail links, no iframes) */
.video-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 24px; }
.video-card { display: block; }
.video-card .video-thumb { position: relative; overflow: hidden; border-radius: 8px; }
.video-card img { aspect-ratio: 16 / 10; object-fit: cover; width: 100%; }
.video-card .play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.video-card .play::after {
  content: '\25B6';
  display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px;
  padding-left: 5px;
  border-radius: 50%;
  background: rgba(68, 18, 84, 0.85);
  color: #fff;
  font-size: 18px;
}
.video-card:hover .play::after { background: var(--aquamarine); }
.video-card h4 { font-size: 15px; margin: 12px 0 4px; }
.video-card p { font-size: 13.5px; margin-bottom: 0; }
@media (max-width: 700px) { .video-strip { grid-template-columns: 1fr; } }

/* Header CTA button */
.nav-consult {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--purple);
  background: #fff;
  padding: 10px 16px;
  white-space: nowrap;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}
.nav-consult:hover { background: var(--light-cyan); color: var(--dark-blue); }

/* Mobile sticky action bar */
.mobile-cta-bar { display: none; }
@media (max-width: 700px) {
  .mobile-cta-bar {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 50;
    box-shadow: 0 -2px 12px rgba(24, 20, 52, 0.18);
  }
  .mobile-cta-bar a {
    text-align: center;
    padding: 14px 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  .mobile-cta-bar .m-call { background: var(--dark-blue); color: #fff; }
  .mobile-cta-bar .m-consult { background: var(--aquamarine); color: #fff; }
  body { padding-bottom: 48px; }
}

/* Team teaser on home */
.team-teaser { display: flex; align-items: center; gap: 26px; background: var(--paper-raised); border: 1px solid var(--line-strong); padding: 28px 30px; }
.team-teaser img { width: 110px; height: 110px; border-radius: 50%; object-fit: cover; border: 3px solid var(--wash-cyan); flex-shrink: 0; }
@media (max-width: 700px) { .team-teaser { flex-direction: column; text-align: center; } }

/* FAQ */
.faq-list { display: grid; gap: 10px; margin-top: 18px; }
.faq-item { border: 1px solid var(--line-strong); background: var(--paper-raised); }
.faq-item summary {
  cursor: pointer;
  padding: 15px 18px;
  font-weight: 600;
  font-size: 15.5px;
  color: var(--dark-blue);
  list-style: none;
  position: relative;
  padding-right: 40px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--aquamarine);
  font-size: 20px;
  font-weight: 400;
}
.faq-item[open] summary::after { content: '\2212'; }
.faq-item .faq-answer { padding: 0 18px 16px; font-size: 15px; color: var(--ink-soft); }
.faq-item .faq-answer p { margin-bottom: 10px; }
.faq-item .faq-answer p:last-child { margin-bottom: 0; }

/* Footer */
.site-footer { background: var(--dark-blue); color: #fff; padding: 56px 0 28px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.14); }
.footer-col h5 { font-size: 12.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--light-cyan); margin-bottom: 14px; }
.footer-col a, .footer-col p { display: block; color: rgba(255,255,255,0.85); font-size: 14.5px; margin-bottom: 8px; }
.footer-col a:hover { color: var(--aquamarine); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 22px; font-size: 12.5px; color: rgba(255,255,255,0.55); flex-wrap: wrap; gap: 12px; }
.footer-bottom img { height: 22px; width: auto; opacity: 0.85; }

/* Privacy policy page bits */
.policy ul { padding-left: 22px; }
.policy li { margin-bottom: 8px; color: var(--ink-soft); }

@media (max-width: 860px) {
  .main-nav { position: fixed; inset: 72px 0 0 0; background: var(--paper-raised); flex-direction: column; align-items: stretch; gap: 0; padding: 8px 24px 24px; transform: translateX(100%); transition: transform 0.2s; overflow-y: auto; }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; gap: 0; }
  /* Menu links and Client Login render as identical full-width rows so the
     drawer reads as one continuous list (no orphan gap before the CTA). */
  .main-nav a.nav-link, .main-nav .client-login {
    display: flex; align-items: center; width: 100%;
    color: var(--dark-blue); font-size: 14px; font-weight: 600;
    padding: 16px 0; border-bottom: 1px solid var(--line);
  }
  .main-nav a.nav-link:hover, .main-nav .client-login:hover { color: var(--purple); }
  .main-nav li.active > a.nav-link { color: var(--purple); }
  .has-dropdown > .nav-link::after { content: '+'; margin-left: auto; font-size: 20px; font-weight: 400; color: var(--ink-faint); line-height: 1; }
  .has-dropdown.open > .nav-link::after { content: '\2212'; color: var(--purple); }
  .has-dropdown .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background: none; display: none; padding: 4px 0 8px; border-bottom: 1px solid var(--line); }
  .has-dropdown.open .dropdown { display: block; }
  .dropdown a { padding: 10px 0 10px 14px; font-size: 14px; }
  .dropdown a:hover { background: none; }
  .nav-toggle { display: block; background: none; border: none; font-size: 24px; color: #fff; cursor: pointer; }
  .nav-cta { margin-top: 0; gap: 0; flex-direction: column; align-items: stretch; }
  .nav-consult { margin-top: 24px; background: var(--purple); color: #fff; justify-content: center; padding: 15px 16px; font-size: 14px; }
  .nav-consult:hover { background: var(--purple-deep); color: #fff; }
  .split, .card-grid, .team-grid, .value-grid, .testimonials, .detail-columns, .footer-grid { grid-template-columns: 1fr; }
  .team-member { align-items: flex-start; }
}
