/* =============================================
   BARON GROWTH STRATEGY — GLOBAL STYLESHEET
   Visual Identity System v2.0 — March 2026
   ============================================= */

/* Google Fonts — Space Grotesk (hero only) + Inter (all functional text) */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@700&family=Inter:wght@300;400;500;600&display=swap');

/* =============================================
   CSS VARIABLES — v2.0 Logo-Derived Palette
   ============================================= */
:root {
  /* Brand Core */
  --midnight:      #0B1220;   /* Dark surfaces, nav bg, footer, dark sections */
  --jade:          #0D7A6B;   /* Primary accent — CTAs, labels, borders, icons */
  --jade-light:    #12A08E;   /* Highlights on dark, hover states on dark surfaces */
  --jade-pale:     #E0F5F2;   /* Light section tint, callout backgrounds */

  /* Structure */
  --charcoal:      #1A1E28;   /* Cards on dark, secondary surfaces */
  --silver:        #C2C4C6;   /* Borders, dividers, secondary UI — precision signal */
  --greige:        #B8B0A6;   /* Body text on dark, secondary captions */
  --greige-light:  #F0EDE8;   /* Page backgrounds — warm off-white */
  --white:         #FFFFFF;   /* Primary document background */

  /* Typography */
  --font-display:  'Space Grotesk', 'Helvetica Neue', Arial, sans-serif;
  --font-body:     'Inter', 'Helvetica Neue', Arial, sans-serif;

  /* Layout */
  --nav-h:         72px;
  --radius:        6px;
  --radius-lg:     12px;
  --shadow:        0 2px 12px rgba(11, 18, 32, 0.10);
  --shadow-lg:     0 8px 32px rgba(11, 18, 32, 0.16);
  --max-w:         1160px;
  --section-py:    80px;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--midnight);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol { list-style: none; }

button, input, textarea, select { font-family: inherit; font-size: inherit; }

/* =============================================
   TYPOGRAPHY — Inter hierarchy
   Space Grotesk Bold: H1 hero display only
   Inter 600: H2, H3 section/subsection titles
   Inter 500: H4, labels, subsection headers
   Inter 400: body copy
   Inter 300: captions, legal
   ============================================= */

h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--midnight);
}

h2 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.25;
  color: var(--midnight);
}

h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.3;
  color: var(--midnight);
}

h4 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  color: var(--midnight);
}

p {
  font-weight: 400;
  color: var(--greige);
}
p + p { margin-top: 1rem; }

.caption {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--greige);
}

/* =============================================
   LAYOUT UTILITIES
   ============================================= */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 24px;
}

.section { padding-block: var(--section-py); }
.section--light  { background: var(--greige-light); }
.section--teal   { background: var(--jade-pale); }
.section--dark   { background: var(--midnight); }

.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--white); }
.section--dark p   { color: var(--greige); }

.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--jade);
  margin-bottom: 10px;
  display: block;
}
.section--dark .section-label { color: var(--jade-light); }

.section-header {
  max-width: 600px;
  margin-bottom: 48px;
}
.section-header.centered {
  text-align: center;
  margin-inline: auto;
}
.section-header p {
  margin-top: 12px;
  font-size: 1rem;
  font-weight: 400;
}

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--silver);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--midnight);
  text-decoration: none;
  letter-spacing: 0.01em;
}
.nav__logo span { color: var(--jade); }
.nav__logo:hover { text-decoration: none; }

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

.nav__links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--midnight);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--jade); text-decoration: none; }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.18s ease;
  border: 1.5px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.btn--primary {
  background: var(--jade);
  color: var(--white);
  border-color: var(--jade);
}
.btn--primary:hover {
  background: var(--midnight);
  border-color: var(--midnight);
  color: var(--white);
  text-decoration: none;
}

.btn--outline {
  background: transparent;
  color: var(--jade);
  border-color: var(--jade);
}
.btn--outline:hover {
  background: var(--jade);
  color: var(--white);
  text-decoration: none;
}

.btn--outline-silver {
  background: transparent;
  color: var(--white);
  border-color: var(--silver);
}
.btn--outline-silver:hover {
  background: rgba(194, 196, 198, 0.15);
  border-color: var(--white);
  color: var(--white);
  text-decoration: none;
}

.btn--white {
  background: var(--white);
  color: var(--midnight);
  border-color: var(--white);
}
.btn--white:hover {
  background: var(--jade-pale);
  border-color: var(--jade-pale);
  color: var(--midnight);
  text-decoration: none;
}

.btn--sm { padding: 8px 16px; font-size: 0.82rem; }

/* =============================================
   BADGE
   ============================================= */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 3px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.badge--jade {
  background: var(--jade-pale);
  color: var(--midnight);
  border: 1px solid var(--jade);
}
.badge--dark {
  background: rgba(13, 122, 107, 0.2);
  color: var(--jade-light);
  border: 1px solid rgba(18, 160, 142, 0.4);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  padding-block: 100px 80px;
  background: var(--greige-light);
  border-bottom: 1px solid var(--silver);
  position: relative;
  overflow: hidden;
}

/* Subtle architectural grid overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(13,122,107,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13,122,107,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.hero__inner {
  max-width: 760px;
  position: relative;
}

.hero__badge { margin-bottom: 24px; }

.hero h1 {
  margin-bottom: 20px;
  color: var(--midnight);
}
.hero h1 em {
  font-style: normal;
  color: var(--jade);
}

.hero__sub {
  font-size: 1.05rem;
  font-weight: 400;
  color: #4A5568;
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.hero__social-proof {
  font-size: 0.82rem;
  font-weight: 400;
  color: #6B7280;
  padding-top: 32px;
  border-top: 1px solid var(--silver);
  max-width: 500px;
}
.hero__social-proof strong { color: var(--midnight); font-weight: 600; }

/* =============================================
   BAIOS™ LAYERED ARCHITECTURE DIAGRAM
   Canonical Section 07 representation
   ============================================= */
.baios-section {
  background: var(--midnight);
  padding-block: 80px;
  position: relative;
  overflow: hidden;
}

/* Node grid background */
.baios-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(13,122,107,0.15) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.baios-section > .container { position: relative; }

.baios-section .section-label { color: var(--jade-light); }
.baios-section h2 { color: var(--white); margin-bottom: 8px; }
.baios-section > .container > .section-intro {
  color: var(--greige);
  font-size: 0.95rem;
  max-width: 560px;
  margin-bottom: 48px;
  line-height: 1.7;
}

/* Layered stack */
.baios-layers {
  display: flex;
  flex-direction: column;
  gap: 3px;
  max-width: 860px;
}

.baios-layer {
  display: flex;
  align-items: center;
  background: var(--charcoal);
  border-left: 3px solid var(--jade);
  padding: 20px 24px;
  gap: 20px;
  transition: background 0.2s;
  position: relative;
}
.baios-layer:hover { background: rgba(26, 30, 40, 0.9); }

.baios-layer__num {
  width: 32px;
  height: 32px;
  background: var(--jade);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.baios-layer__content {
  flex: 1;
}

.baios-layer__title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--jade-light);
  margin-bottom: 3px;
}

.baios-layer__desc {
  font-size: 0.82rem;
  color: var(--greige);
  line-height: 1.5;
}

.baios-layer__tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--midnight);
  background: var(--jade-light);
  padding: 4px 10px;
  border-radius: 2px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* =============================================
   SERVICE CARDS
   ============================================= */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.card {
  background: var(--white);
  border: 1px solid var(--silver);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.card--highlighted {
  border-color: var(--jade);
  border-width: 2px;
  box-shadow: 0 0 0 1px var(--jade), var(--shadow-lg);
  transform: scale(1.02);
}
.card--highlighted:hover { transform: scale(1.02) translateY(-2px); }

.card__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--jade);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 2px;
  white-space: nowrap;
}

.card__type {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--jade);
  margin-bottom: 8px;
}

.card h3 {
  margin-bottom: 6px;
  font-size: 1.2rem;
  color: var(--midnight);
}

.card__price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--midnight);
  margin-block: 14px;
  letter-spacing: -0.02em;
}
.card__price span {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--greige);
}

.card__desc {
  font-size: 0.88rem;
  color: #6B7280;
  margin-bottom: 20px;
  line-height: 1.65;
}

.card__features {
  margin-bottom: 24px;
}
.card__features li {
  font-size: 0.85rem;
  color: #4A5568;
  padding: 6px 0;
  border-bottom: 1px solid var(--silver);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.card__features li:last-child { border-bottom: none; }
.card__features li::before {
  content: '✓';
  color: var(--jade);
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 0.8rem;
}

/* =============================================
   INSIGHT / ARTICLE CARDS
   ============================================= */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.insight-card {
  background: var(--white);
  border: 1px solid var(--silver);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.insight-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.insight-card__img {
  height: 160px;
  background: linear-gradient(135deg, var(--midnight) 0%, #0D3D36 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.2rem;
  color: rgba(18, 160, 142, 0.65);
  letter-spacing: -0.02em;
  border-bottom: 1px solid rgba(13,122,107,0.3);
}

.insight-card__body { padding: 22px; }

.insight-card__meta {
  font-size: 0.75rem;
  color: var(--greige);
  margin-bottom: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.insight-card__meta .tag {
  background: var(--jade-pale);
  color: var(--midnight);
  padding: 2px 8px;
  border-radius: 2px;
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.insight-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  line-height: 1.4;
  color: var(--midnight);
}

.insight-card p {
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 14px;
  color: #6B7280;
}

.insight-card a.read-more {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--jade);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.insight-card a.read-more::after { content: ' →'; }
.insight-card a.read-more:hover { text-decoration: underline; }

/* =============================================
   ARTICLE PAGE
   ============================================= */
.article-hero {
  padding-block: 80px 60px;
  background: var(--greige-light);
  border-bottom: 1px solid var(--silver);
}

.article-hero__back {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--greige);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 28px;
}
.article-hero__back::before { content: '←'; }
.article-hero__back:hover { color: var(--jade); text-decoration: none; }

.article-hero__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  font-size: 0.82rem;
  color: var(--greige);
  font-weight: 300;
}

.article-body {
  max-width: 700px;
  margin-inline: auto;
  padding-block: 64px;
}

.article-body h2 {
  font-size: 1.5rem;
  margin-top: 48px;
  margin-bottom: 16px;
  color: var(--midnight);
}
.article-body h3 {
  font-size: 1.15rem;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--midnight);
}
.article-body p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #374151;
  font-weight: 400;
}
.article-body ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 20px;
}
.article-body ul li {
  font-size: 1rem;
  color: #374151;
  margin-bottom: 8px;
  line-height: 1.7;
}
.article-body blockquote {
  border-left: 3px solid var(--jade);
  padding: 16px 24px;
  margin: 32px 0;
  background: var(--jade-pale);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.article-body blockquote p {
  font-style: italic;
  font-size: 1.05rem;
  color: var(--midnight);
  font-weight: 400;
  margin: 0;
}

.cta-box {
  background: var(--midnight);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  margin-top: 64px;
  border: 1px solid rgba(194,196,198,0.15);
}
.cta-box h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.cta-box p {
  color: var(--greige);
  max-width: 460px;
  margin-inline: auto;
  margin-bottom: 28px;
  font-size: 0.95rem;
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-hero { padding-block: 80px; background: var(--greige-light); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}

.about-avatar {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--midnight) 0%, #0D3D36 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 5rem;
  color: rgba(13, 122, 107, 0.25);
  overflow: hidden;
  border: 1px solid rgba(194,196,198,0.2);
}

.about-content .section-label { margin-bottom: 8px; }
.about-content h1 { margin-bottom: 6px; }
.about-content .tagline {
  font-size: 1rem;
  font-weight: 500;
  color: var(--jade);
  margin-bottom: 24px;
}

.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-block: 24px;
}
.credentials li {
  background: var(--jade-pale);
  color: var(--midnight);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 2px;
  border: 1px solid rgba(13, 122, 107, 0.2);
  letter-spacing: 0.02em;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}

.contact-info h3 { margin-bottom: 8px; }
.contact-info p  { margin-bottom: 20px; font-size: 0.92rem; color: #6B7280; }

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}

.contact-detail__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-detail__icon {
  width: 38px;
  height: 38px;
  background: var(--jade-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  border: 1px solid rgba(13,122,107,0.2);
}

.contact-detail__text { font-size: 0.88rem; }
.contact-detail__text strong {
  display: block;
  color: var(--midnight);
  font-weight: 600;
  margin-bottom: 2px;
}
.contact-detail__text a { font-size: 0.88rem; }

/* =============================================
   CONTACT FORM
   ============================================= */
.form {
  background: var(--white);
  border: 1px solid var(--silver);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--midnight);
  margin-bottom: 5px;
  letter-spacing: 0.01em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--silver);
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--midnight);
  background: var(--greige-light);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--jade);
  box-shadow: 0 0 0 3px rgba(13, 122, 107, 0.1);
  background: var(--white);
}
.form-group textarea { min-height: 140px; resize: vertical; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* =============================================
   SERVICES PAGE
   ============================================= */
.services-detail {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-block {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
  padding-block: 64px;
  border-bottom: 1px solid var(--silver);
}
.service-block:last-child { border-bottom: none; }

.service-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}

.service-sidebar__type {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--jade);
  margin-bottom: 8px;
}

.service-sidebar h2 { margin-bottom: 10px; }

.service-sidebar__price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  color: var(--midnight);
  margin-block: 14px;
  letter-spacing: -0.02em;
}
.service-sidebar__price span {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--greige);
}

.steps { display: flex; flex-direction: column; gap: 20px; }

.step { display: flex; gap: 18px; align-items: flex-start; }

.step__num {
  width: 32px;
  height: 32px;
  background: var(--jade-pale);
  color: var(--midnight);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.82rem;
  flex-shrink: 0;
  border: 1px solid rgba(13,122,107,0.2);
}

.step__body h4 { margin-bottom: 3px; font-size: 0.95rem; }
.step__body p { font-size: 0.87rem; color: #6B7280; margin: 0; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--midnight);
  padding-block: 56px 32px;
  border-top: 1px solid rgba(194,196,198,0.1);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer__brand .nav__logo {
  color: var(--white);
  font-size: 0.95rem;
  display: inline-block;
  margin-bottom: 10px;
}
.footer__brand .nav__logo span { color: var(--jade-light); }

.footer__brand p {
  font-size: 0.82rem;
  color: var(--greige);
  line-height: 1.6;
  margin-bottom: 14px;
  font-weight: 300;
}

.footer__signature {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--jade-light);
  letter-spacing: 0.02em;
  padding-top: 14px;
  border-top: 1px solid rgba(194,196,198,0.12);
  margin-top: 14px;
}

.footer__col h5 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(194, 196, 198, 0.5);
  margin-bottom: 14px;
}

.footer__col ul { display: flex; flex-direction: column; gap: 10px; }

.footer__col ul li a {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--greige);
  transition: color 0.2s;
}
.footer__col ul li a:hover { color: var(--white); text-decoration: none; }

.footer__bottom {
  border-top: 1px solid rgba(194,196,198,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer__bottom p {
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(194, 196, 198, 0.4);
}
.footer__bottom p + p { margin-top: 0; }
.footer__legal { text-align: right; }

/* =============================================
   MISC COMPONENTS
   ============================================= */
.page-hero {
  padding-block: 80px 60px;
  background: var(--greige-light);
  border-bottom: 1px solid var(--silver);
}

.divider {
  height: 1px;
  background: var(--silver);
  margin-block: 40px;
  opacity: 0.6;
}

.text-center { text-align: center; }

/* Jade left accent bar — used in blockquotes, callouts */
.accent-bar {
  border-left: 3px solid var(--jade);
  padding-left: 20px;
}

/* =============================================
   MOBILE RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
  :root { --section-py: 56px; }

  .nav__links { gap: 14px; }
  .nav__links .btn { display: none; }

  .hero { padding-block: 60px 48px; }
  .hero__ctas { flex-direction: column; align-items: flex-start; }

  /* BAIOS layers */
  .baios-layer__tag { display: none; }

  .cards-grid { grid-template-columns: 1fr; }
  .card--highlighted { transform: none; order: -1; }
  .card--highlighted:hover { transform: translateY(-2px); }

  .insights-grid { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__legal { text-align: center; }

  .about-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-avatar { aspect-ratio: 4/3; max-height: 260px; }

  .contact-grid { grid-template-columns: 1fr; gap: 36px; }

  .service-block { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }

  .form-row { grid-template-columns: 1fr; }
  .form { padding: 24px 18px; }

  .article-body { padding-block: 40px; }
  .cta-box { padding: 32px 20px; }
}

@media (max-width: 480px) {
  .nav__links a[href*="services"],
  .nav__links a[href*="about"] { display: none; }
  .footer__grid { grid-template-columns: 1fr; }
  .baios-layer { padding: 16px 16px; }
}
