/* ============================================================
   GREENBRIDGE INNOVATIVE ADVISORS — Main Stylesheet
   Primary Color: #1d700c
   Fonts: Playfair Display (headings) + Inter (body)
   To change brand color: update --green in :root below
   ============================================================ */

/* --- CSS Variables (edit here to restyle the whole site) --- */
:root {
  --green:        #1d700c;
  --green-dark:   #155a09;
  --green-darker: #0f4206;
  --green-light:  #e8f5e4;
  --green-xlight: #f0f9ee;
  --white:        #ffffff;
  --off-white:    #f8faf8;
  --dark:         #1a2b1a;
  --text:         #2d3a2d;
  --gray:         #6b7280;
  --gray-light:   #e5e7eb;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
  --max-width:    1200px;
  --nav-height:   80px;
  --radius:       8px;
  --shadow:       0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg:    0 8px 40px rgba(0,0,0,0.14);
  --transition:   0.3s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Typography --- */
h1, h2 { font-family: var(--font-heading); line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.15rem; font-family: var(--font-body); font-weight: 600; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* --- Layout --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-alt { background: var(--off-white); }

/* --- Section Headers --- */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .label {
  display: inline-block; text-transform: uppercase; letter-spacing: 0.12em;
  font-size: 0.78rem; font-weight: 600; color: var(--green); margin-bottom: 0.75rem;
}
.section-header h2 { color: var(--dark); margin-bottom: 1rem; }
.section-header p { color: var(--gray); max-width: 580px; margin: 0 auto; font-size: 1.05rem; }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  padding: 0.875rem 2rem; border-radius: 4px; font-weight: 600; font-size: 0.95rem;
  transition: var(--transition); cursor: pointer; border: 2px solid transparent;
  font-family: var(--font-body); letter-spacing: 0.02em; white-space: nowrap;
}
.btn-primary  { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-primary:hover { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(29,112,12,0.3); }
.btn-secondary { background: transparent; color: var(--green); border-color: var(--green); }
.btn-secondary:hover { background: var(--green); color: var(--white); transform: translateY(-1px); }
.btn-white { background: var(--white); color: var(--green); border-color: var(--white); }
.btn-white:hover { background: var(--green-light); transform: translateY(-1px); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }
.btn-lg { padding: 1.1rem 2.5rem; font-size: 1rem; }

/* --- Navigation --- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--white); height: var(--nav-height);
  border-bottom: 1px solid var(--gray-light);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.09); border-bottom-color: transparent; }
.navbar-inner {
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.navbar-logo img { height: 46px; width: auto; }
.navbar-menu { display: flex; align-items: center; gap: 2.25rem; }
.navbar-menu a {
  font-size: 0.92rem; font-weight: 500; color: var(--text);
  transition: color var(--transition); position: relative; padding: 0.25rem 0;
}
.navbar-menu a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 2px; background: var(--green); transform: scaleX(0); transition: transform var(--transition); border-radius: 1px;
}
.navbar-menu a:hover, .navbar-menu a.active { color: var(--green); }
.navbar-menu a:hover::after, .navbar-menu a.active::after { transform: scaleX(1); }
.navbar-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 0.5rem; z-index: 1100;
}
.navbar-toggle span {
  display: block; width: 24px; height: 2px; background: var(--text);
  transition: var(--transition); border-radius: 2px;
}
.navbar-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar-toggle.open span:nth-child(2) { opacity: 0; }
.navbar-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.navbar-actions { display: flex; align-items: center; gap: 0.75rem; }
.navbar-menu a.nav-client-login {
  border: 1.5px solid var(--green); border-radius: 999px; padding: 0.4rem 1rem;
  font-size: 0.8rem; color: var(--green);
}
.navbar-menu a.nav-client-login:hover { background: var(--green); color: var(--white); }
.navbar-menu a.nav-client-login::after { content: none; }

/* ── HOME HERO ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: var(--green-xlight); padding-top: var(--nav-height);
  position: relative; overflow: hidden;
}
.hero-label {
  display: inline-block; text-transform: uppercase; letter-spacing: 0.14em;
  font-size: 0.78rem; font-weight: 600; color: var(--green); margin-bottom: 1.25rem;
}
.hero-content h1 { color: var(--dark); margin-bottom: 1.25rem; }
.hero-content p { font-size: 1.1rem; color: var(--gray); margin-bottom: 2.25rem; max-width: 480px; line-height: 1.75; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── Full-bleed hero ── */
.hero-fullbleed {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  background-image: url('../images/hero-lifestyle.jpg');
  background-size: cover;
  background-position: center 60%;
  padding: 120px 0 80px;
}

/* Lighter gradient — subtle on left for readability, fully clear on right so chairs show */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(8, 24, 8, 0.52) 0%,
    rgba(8, 24, 8, 0.40) 35%,
    rgba(8, 24, 8, 0.10) 60%,
    rgba(8, 24, 8, 0.00) 100%
  );
  z-index: 1;
}

/* Two-column layout — text left, chairs right */
.hero-inner-fullbleed {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  width: 100%;
}

.hero-content-fullbleed {
  max-width: 540px;
  padding-right: 2rem;
}

.hero-label-light {
  color: rgba(255, 255, 255, 0.80);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  display: block;
  margin-bottom: 1rem;
}

.hero-content h1.hero-h1-light {
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: 1.25rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.18);
}

.hero-content p.hero-sub-light {
  color: rgba(255, 255, 255, 0.90);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 2rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

/* Mobile — uniform light overlay, full-width text */
@media (max-width: 768px) {
  .hero-fullbleed {
    min-height: 520px;
    background-position: 65% center;
    padding: 100px 0 60px;
  }
  .hero-overlay {
    background: rgba(8, 24, 8, 0.55);
  }
  .hero-inner-fullbleed {
    grid-template-columns: 1fr;
  }
  .hero-content-fullbleed {
    max-width: 100%;
    padding-right: 0;
  }
}

/* ── STATS BAR ── */
.stats-bar { background: var(--dark); padding: 2.75rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); text-align: center; }
.stat-item { padding: 0.5rem 1rem; border-right: 1px solid rgba(255,255,255,0.1); }
.stat-item:last-child { border-right: none; }
.stat-number { font-family: var(--font-heading); font-size: 2.4rem; color: var(--white); display: block; line-height: 1; margin-bottom: 0.4rem; }
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.1em; }
.stats-disclosure {
  margin-top: 1.75rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center; font-size: 0.72rem; color: rgba(255,255,255,0.4);
  text-transform: uppercase; letter-spacing: 0.1em;
}

/* ── HOME SERVICES ── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card {
  background: var(--white); border: 1px solid var(--gray-light); border-radius: var(--radius);
  padding: 2rem; transition: var(--transition); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--green); transform: scaleX(0); transition: transform var(--transition);
}
.service-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px; background: var(--green-light); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem;
}
.service-icon svg { width: 26px; height: 26px; stroke: var(--green); fill: none; stroke-width: 1.8; }
.service-card h3 { margin-bottom: 0.6rem; color: var(--dark); }
.service-card p { color: var(--gray); font-size: 0.93rem; margin-bottom: 1.25rem; line-height: 1.65; }
.service-link { color: var(--green); font-size: 0.88rem; font-weight: 600; display: inline-flex; align-items: center; gap: 0.3rem; transition: gap var(--transition); }
.service-link:hover { gap: 0.55rem; }
.services-home .services-cta { text-align: center; margin-top: 3rem; }

/* ── HOME ABOUT PREVIEW ── */
.about-preview { background: var(--white); }
.about-preview-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-preview-label {
  display: inline-block; text-transform: uppercase; letter-spacing: 0.14em;
  font-size: 0.78rem; font-weight: 600; color: var(--green); margin-bottom: 1rem;
}
.about-preview-content h2 { color: var(--dark); margin-bottom: 1.25rem; }
.about-preview-content p { color: var(--gray); font-size: 1rem; line-height: 1.8; margin-bottom: 1rem; }
.about-preview-content .btn { margin-top: 1rem; }
.about-preview-visual { position: relative; }
.about-preview-card {
  background: var(--green); border-radius: var(--radius); padding: 3rem 2.5rem 6.5rem;
  text-align: center; box-shadow: var(--shadow-lg);
}
.about-preview-arc { margin: 0 auto 1.5rem; display: block; }
.about-preview-card p { color: rgba(255,255,255,0.9); font-size: 1.05rem; line-height: 1.8; margin: 0; }
.about-badge {
  position: absolute; bottom: -0.75rem; right: -0.75rem;
  background: var(--white); border: 2px solid var(--green-light); padding: 1.25rem 1.5rem;
  border-radius: var(--radius); text-align: center; box-shadow: var(--shadow);
  max-width: calc(100% - 1.5rem); white-space: nowrap;
}
.about-badge .num { font-family: var(--font-heading); font-size: 2rem; color: var(--green); display: block; line-height: 1; }
.about-badge .txt { font-size: 0.75rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.25rem; display: block; }

/* ── HOME TEAM PREVIEW ── */
.team-preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.team-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: var(--transition); text-align: center;
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.team-card-photo { aspect-ratio: 3/4; overflow: hidden; background: var(--gray-light); }
.team-card-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
  filter: grayscale(100%); transition: filter 0.5s ease;
}
.team-card:hover .team-card-photo img { filter: grayscale(0%); }
.team-card-info { padding: 1.5rem 1.25rem; }
.team-card-info h3 { color: var(--dark); margin-bottom: 0.2rem; font-size: 1.1rem; }
.team-card-info .title { color: var(--green); font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.team-preview-cta { text-align: center; margin-top: 3rem; }

/* ── HOME INSIGHTS PREVIEW ── */
.insights-preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.insight-card {
  background: var(--white); border: 1px solid var(--gray-light); border-radius: var(--radius);
  padding: 1.75rem; transition: var(--transition);
}
.insight-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.insight-card .category {
  color: var(--green); font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.75rem; display: block;
}
.insight-card h3 { font-size: 1rem; color: var(--dark); margin-bottom: 0.6rem; line-height: 1.4; }
.insight-card p { font-size: 0.88rem; color: var(--gray); margin-bottom: 1.1rem; line-height: 1.65; }
.insight-card .read-more { color: var(--green); font-size: 0.85rem; font-weight: 600; display: inline-flex; align-items: center; gap: 0.3rem; }
.insights-preview-cta { text-align: center; margin-top: 3rem; }

/* ── HOME CTA SECTION ── */
.cta-section { background: var(--green); padding: 5.5rem 0; text-align: center; position: relative; overflow: hidden; }
.cta-section-bg { position: absolute; inset: 0; opacity: 0.04; pointer-events: none; }
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.82); font-size: 1.1rem; margin-bottom: 2.5rem; max-width: 530px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── PAGE HEROES (inner pages) ── */
.page-hero {
  background: var(--green-xlight); padding: calc(var(--nav-height) + 4rem) 0 4rem;
  text-align: center; position: relative; overflow: hidden;
}
.page-hero .label {
  display: inline-block; text-transform: uppercase; letter-spacing: 0.14em;
  font-size: 0.78rem; font-weight: 600; color: var(--green); margin-bottom: 1rem;
}
.page-hero h1 { color: var(--dark); margin-bottom: 1rem; }
.page-hero p { color: var(--gray); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* ── ABOUT PAGE ── */
.about-story-inner { display: grid; grid-template-columns: 3fr 2fr; gap: 5rem; align-items: start; }
.about-story-content h2 { color: var(--dark); margin-bottom: 1.5rem; font-size: 2rem; }
.about-story-content p { color: var(--gray); line-height: 1.85; margin-bottom: 1.25rem; font-size: 1.02rem; }
.about-sidebar { position: sticky; top: calc(var(--nav-height) + 2rem); }
.sidebar-card { background: var(--off-white); border-radius: var(--radius); padding: 2rem; margin-bottom: 1.5rem; border: 1px solid var(--gray-light); }
.sidebar-card h4 { color: var(--dark); font-size: 1rem; margin-bottom: 1.25rem; font-family: var(--font-heading); }
.sidebar-card ul { display: flex; flex-direction: column; gap: 0.65rem; }
.sidebar-card ul li { display: flex; align-items: center; gap: 0.6rem; color: var(--gray); font-size: 0.9rem; }
.sidebar-card ul li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }

.values-section { background: var(--dark); padding: 5rem 0; }
.values-section .section-header .label { color: var(--green-light); }
.values-section .section-header h2 { color: var(--white); }
.values-section .section-header p { color: rgba(255,255,255,0.6); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.value-card { padding: 2.5rem; text-align: center; }
.value-icon {
  width: 60px; height: 60px; background: rgba(255,255,255,0.08); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem;
}
.value-icon svg { width: 28px; height: 28px; stroke: var(--green-light); fill: none; stroke-width: 1.8; }
.value-card h3 { color: var(--white); font-size: 1.05rem; margin-bottom: 0.6rem; }
.value-card p { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.7; margin: 0; }

/* ── SERVICES PAGE ── */
.service-detail { padding: 4.5rem 0; border-bottom: 1px solid var(--gray-light); }
.service-detail:last-child { border-bottom: none; }
.service-detail-inner { display: grid; grid-template-columns: 240px 1fr; gap: 4rem; align-items: start; }
.service-detail-label .svc-icon {
  width: 68px; height: 68px; background: var(--green-light); border-radius: 14px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem;
}
.service-detail-label .svc-icon svg { width: 32px; height: 32px; stroke: var(--green); fill: none; stroke-width: 1.8; }
.service-detail-label h2 { font-size: 1.4rem; color: var(--dark); line-height: 1.3; }
.service-detail-body p { color: var(--gray); line-height: 1.85; margin-bottom: 1.25rem; font-size: 1.02rem; }
.includes-box { background: var(--off-white); border-radius: var(--radius); padding: 1.75rem; margin-top: 2rem; }
.includes-box h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--green); margin-bottom: 1rem; font-family: var(--font-body); font-weight: 600; }
.includes-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
.includes-list li { color: var(--gray); font-size: 0.9rem; padding-left: 1.4rem; position: relative; }
.includes-list li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.service-detail:nth-child(even) { background: var(--off-white); }
.service-detail:nth-child(even) .includes-box { background: var(--white); }

/* ── FAQ ACCORDION ── */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--gray-light); }
.faq-item:last-child { border-bottom: none; }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.15rem 0; cursor: pointer; font-weight: 600; color: var(--dark);
  font-size: 1.02rem; list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { content: ''; }
.faq-icon {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  border: 2px solid var(--green); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); position: relative;
}
.faq-icon::before {
  content: '+'; line-height: 1; font-size: 1.1rem; font-weight: 700;
}
.faq-item[open] .faq-icon { background: var(--green); color: var(--white); transform: rotate(135deg); }
.faq-answer { padding: 0 0 1.5rem; max-width: 640px; }
.faq-answer p { color: var(--gray); line-height: 1.8; font-size: 1rem; margin: 0; }

/* ── TEAM PAGE ── */
.team-members { display: flex; flex-direction: column; gap: 0; }
.team-member-section { padding: 5rem 0; border-bottom: 1px solid var(--gray-light); }
.team-member-section:last-child { border-bottom: none; }
.team-member-inner { display: grid; grid-template-columns: 280px 1fr; gap: 4rem; align-items: start; }
.team-member-photo {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg);
  background: var(--gray-light); aspect-ratio: 3/4;
}
.team-member-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; filter: grayscale(100%); }
.member-name { font-family: var(--font-heading); font-size: 2rem; color: var(--dark); margin-bottom: 0.25rem; }
.member-creds { color: var(--green); font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.member-since { color: var(--gray); font-size: 0.88rem; margin-bottom: 1.75rem; font-style: italic; }
.team-member-content p { color: var(--gray); line-height: 1.85; margin-bottom: 1rem; font-size: 1.02rem; }
.member-contact { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.member-contact a {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--green); font-size: 0.88rem; font-weight: 600;
  background: var(--green-light); padding: 0.5rem 1rem; border-radius: 4px;
  transition: var(--transition);
}
.member-contact a:hover { background: var(--green); color: var(--white); }
.team-member-section:nth-child(even) { background: var(--off-white); }

/* ── INSIGHTS PAGE ── */
.insights-grid-full { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.insight-full-card {
  background: var(--white); border: 1px solid var(--gray-light); border-radius: var(--radius);
  overflow: hidden; transition: var(--transition);
}
.insight-full-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.insight-full-card-img {
  aspect-ratio: 16/9; background: var(--green-light); display: flex;
  align-items: center; justify-content: center;
}
.insight-full-card-img svg { width: 48px; height: 48px; stroke: var(--green); fill: none; stroke-width: 1.4; opacity: 0.4; }
.insight-full-card-body { padding: 2rem; }
.insight-meta { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.insight-meta .category { color: var(--green); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; }
.insight-meta .date { color: var(--gray); font-size: 0.78rem; }
.insight-full-card h3 { font-size: 1.15rem; color: var(--dark); margin-bottom: 0.75rem; line-height: 1.4; }
.insight-full-card p { font-size: 0.92rem; color: var(--gray); margin-bottom: 1.25rem; line-height: 1.65; }
.insight-full-card .read-more { color: var(--green); font-size: 0.88rem; font-weight: 600; display: inline-flex; align-items: center; gap: 0.3rem; }

/* ── ARTICLE PAGE ── */
.article-hero { background: var(--green-xlight); padding: calc(var(--nav-height) + 3.5rem) 0 3.5rem; }
.article-hero-inner { max-width: 800px; margin: 0 auto; }
.article-meta { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }
.article-meta .category { color: var(--green); font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; }
.article-meta .date { color: var(--gray); font-size: 0.8rem; }
.article-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--dark); margin-bottom: 1rem; }
.article-hero .subtitle { color: var(--gray); font-size: 1.1rem; line-height: 1.7; }
.article-body-section { padding: 4rem 0; }
.article-body { max-width: 740px; margin: 0 auto; }
.article-body p { color: var(--text); line-height: 1.9; margin-bottom: 1.5rem; font-size: 1.05rem; }
.article-body h2 { font-family: var(--font-heading); font-size: 1.7rem; color: var(--dark); margin: 3rem 0 1rem; }
.article-body h3 { font-size: 1.15rem; color: var(--dark); margin: 2rem 0 0.75rem; }
.article-body ul { margin: 0 0 1.5rem 1.75rem; }
.article-body ul li { color: var(--text); margin-bottom: 0.6rem; font-size: 1.05rem; list-style: disc; line-height: 1.7; }
.article-body ol { margin: 0 0 1.5rem 1.75rem; }
.article-body ol li { color: var(--text); margin-bottom: 0.6rem; font-size: 1.05rem; list-style: decimal; line-height: 1.7; }
.article-callout {
  background: var(--green-light); border-left: 4px solid var(--green); border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.5rem 1.75rem; margin: 2rem 0; font-size: 1.02rem; color: var(--dark); line-height: 1.75;
}
.article-disclaimer {
  background: var(--off-white); border: 1px solid var(--gray-light); border-radius: var(--radius);
  padding: 1.5rem; margin-top: 3.5rem; font-size: 0.82rem; color: var(--gray); line-height: 1.7;
}
.back-to-insights { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--green); font-size: 0.88rem; font-weight: 600; margin-bottom: 3rem; }
.back-to-insights:hover { gap: 0.65rem; }

/* ── CONTACT PAGE ── */
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; }
.contact-info-col h2 { color: var(--dark); margin-bottom: 1rem; font-size: 2rem; }
.contact-info-col > p { color: var(--gray); margin-bottom: 2.5rem; line-height: 1.8; }
.contact-details { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-detail { display: flex; gap: 1rem; align-items: flex-start; }
.c-icon {
  width: 46px; height: 46px; min-width: 46px; background: var(--green-light); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.c-icon svg { width: 22px; height: 22px; stroke: var(--green); fill: none; stroke-width: 1.8; }
.c-text h4 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray); font-family: var(--font-body); margin-bottom: 0.25rem; }
.c-text p, .c-text a { color: var(--text); font-size: 0.95rem; margin: 0; display: block; line-height: 1.6; }
.c-text a:hover { color: var(--green); }
.contact-form-col { background: var(--off-white); border-radius: var(--radius); padding: 2.75rem; }
.contact-form-col h2 { color: var(--dark); margin-bottom: 0.5rem; font-size: 1.6rem; }
.contact-form-col .subtitle { color: var(--gray); font-size: 0.9rem; margin-bottom: 2rem; }
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group label { display: block; font-size: 0.83rem; font-weight: 600; color: var(--text); margin-bottom: 0.4rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--gray-light);
  border-radius: 4px; font-family: var(--font-body); font-size: 0.95rem; color: var(--text);
  background: var(--white); transition: border-color var(--transition); outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(29,112,12,0.1); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.75rem center; padding-right: 2.5rem; }
.form-submit { width: 100%; margin-top: 0.75rem; }
.form-success { display: none; text-align: center; padding: 2rem; color: var(--green); }

/* ── FOOTER ── */
.footer { background: var(--dark); padding: 4.5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem; margin-bottom: 3.5rem; }
.footer-logo { display: inline-block; margin-bottom: 1.25rem; }
.footer-logo img { width: 140px; height: auto; display: block; }
.footer-brand-tagline { color: rgba(255,255,255,0.5); font-size: 0.88rem; line-height: 1.7; max-width: 270px; }
.footer-col h4 { color: var(--white); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 1.5rem; font-family: var(--font-body); font-weight: 600; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col ul a { color: rgba(255,255,255,0.55); font-size: 0.88rem; transition: color var(--transition); }
.footer-col ul a:hover { color: var(--white); }
.footer-col address { font-style: normal; }
.footer-col address p { color: rgba(255,255,255,0.55); font-size: 0.88rem; line-height: 1.85; margin-bottom: 0.4rem; }
.footer-col address a { color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-col address a:hover { color: var(--white); }
/* ── BROKERCHECK BAR ── */
.brokercheck-bar {
  margin-top: var(--nav-height);
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
  padding: 0.6rem 1.5rem;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.5;
}
.brokercheck-bar a {
  color: var(--green);
  font-weight: 600;
  text-decoration: underline;
}

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 2rem; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 2rem; flex-wrap: wrap; }
.footer-copyright { color: rgba(255,255,255,0.35); font-size: 0.78rem; }
.footer-disclosure { color: rgba(255,255,255,0.35); font-size: 0.75rem; line-height: 1.6; max-width: 520px; text-align: right; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-detail-inner { grid-template-columns: 180px 1fr; gap: 3rem; }
  .about-story-inner { grid-template-columns: 1fr; }
  .about-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --nav-height: 70px; }
  .navbar-menu {
    display: none; position: fixed; top: var(--nav-height); left: 0; right: 0; bottom: 0;
    background: var(--white); flex-direction: column; justify-content: center;
    align-items: center; gap: 2.5rem; font-size: 1.2rem; z-index: 999;
  }
  .navbar-menu.open { display: flex; }
  .navbar-toggle { display: flex; }
  .navbar-actions { display: none !important; }
  .hero-content p { max-width: 100%; }
  .about-preview-inner { grid-template-columns: 1fr; }
  .about-badge { display: none; }
  .team-preview-grid { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }
  .insights-preview-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 0 1rem 1.25rem; }
  .stat-item:last-child { border-bottom: none; padding-bottom: 0; }
  .values-grid { grid-template-columns: 1fr; }
  .service-detail-inner { grid-template-columns: 1fr; gap: 2rem; }
  .includes-list { grid-template-columns: 1fr; }
  .team-member-inner { grid-template-columns: 1fr; }
  .team-member-photo { max-width: 260px; }
  .insights-grid-full { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom-inner { flex-direction: column; }
  .footer-disclosure { text-align: left; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 2.1rem; }
  .hero-actions { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: center; }
  .services-grid { grid-template-columns: 1fr; }
  .contact-form-col { padding: 1.75rem; }
}

@media print {
  /* ── BrokerCheck bar: keep visible in print, reset margin ── */
  .brokercheck-bar { margin-top: 0 !important; border: 1px solid #ccc !important; }

  /* ── Hide navigation and interactive elements ── */
  .navbar,
  .navbar-cta,
  .navbar-toggle,
  .hero-actions,
  .cta-section,
  .team-preview-cta,
  .insights-preview-cta,
  .btn {
    display: none !important;
  }

  body {
    padding-top: 0 !important;
    margin-top: 0 !important;
  }

  /* ── Force all animated/hidden elements to be fully visible ──
     IntersectionObserver never fires on print so elements below
     the fold stay at opacity:0. This overrides all of that. ── */
  *,
  *::before,
  *::after {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
    transition: none !important;
    animation: none !important;
    animation-delay: 0s !important;
  }

  /* ── Fix grid/flex containers that collapse on print ── */
  .services-grid,
  .team-preview-grid,
  .insights-preview-grid,
  .values-grid,
  .stats-grid,
  .footer-grid,
  .about-preview-inner,
  .hero-inner-fullbleed,
  .service-detail-inner,
  .about-story-inner,
  .team-member-inner,
  .contact-inner {
    display: block !important;
  }

  /* ── Make cards stack and display correctly ── */
  .service-card,
  .team-card,
  .insight-card,
  .value-card,
  .stat-item {
    display: block !important;
    width: 100% !important;
    margin-bottom: 1.5rem !important;
    break-inside: avoid;
    page-break-inside: avoid;
  }

  /* ── Keep background colors (green sections, cards) ── */
  * {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  /* ── Avoid breaking mid-section ── */
  .section,
  .service-detail,
  .team-member-section,
  .about-preview,
  .stats-bar {
    break-inside: avoid;
    page-break-inside: avoid;
  }

  /* ── Show link URLs so compliance can see where buttons point ── */
  a[href^="http"]::after {
    content: " (" attr(href) ")";
    font-size: 0.7em;
    color: #666;
    word-break: break-all;
  }
  .footer a::after,
  .navbar a::after {
    content: none;
  }
}
