/* === Shared styles for Apex Consulting Group website === */

:root {
  --paper: #f5f1ea;
  --paper-warm: #ede4d3;
  --ink: #1a1a1a;
  --ink-soft: #2c2c2c;
  --muted: #6b6b6b;
  --muted-line: rgba(26, 26, 26, 0.12);
  --accent: #00736e;
  --accent-light: #2a958f;
  --gold: #c8954f;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); }
body {
  font-family: 'Inter', sans-serif;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
  font-size: 16px;
}
::selection { background: var(--accent); color: var(--paper); }

/* === NAV === */
nav.top {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.6rem 3vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(245, 241, 234, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--muted-line);
}
.logo {
  text-decoration: none;
  color: var(--ink);
  display: block;
  height: 32px;
}
.logo svg { height: 100%; width: auto; display: block; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.4rem;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 100px;
  transition: all 0.25s ease;
}
.nav-cta:hover { background: var(--accent); }
.nav-cta::after { content: '→'; transition: transform 0.25s ease; }
.nav-cta:hover::after { transform: translateX(3px); }

/* === LAYOUT === */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5vw;
}
section { padding: 12vh 0; position: relative; }

/* === BREADCRUMB === */
.breadcrumb { padding: 12vh 0 0; }
.breadcrumb-row {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.breadcrumb-row a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.25s ease;
}
.breadcrumb-row a:hover { color: var(--accent); }
.breadcrumb-row .sep { color: var(--muted-line); }

/* === HERO === */
.hero { padding: 4vh 0 10vh; }
.hero-page-eyebrow,
.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.hero-page-eyebrow::before,
.hero-eyebrow::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--accent);
}
h1 {
  font-family: 'Source Serif 4', serif;
  font-weight: 300;
  font-size: clamp(2.8rem, 7vw, 7rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--ink);
  max-width: 1100px;
  font-variation-settings: "opsz" 60;
}
h1.home {
  font-size: clamp(3.2rem, 8.5vw, 9rem);
  letter-spacing: -0.045em;
  line-height: 0.95;
}
h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
  font-variation-settings: "opsz" 60;
}
.hero-sub {
  margin-top: 2.5rem;
  max-width: 700px;
  font-size: 1.2rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.hero-sub.wide { max-width: 620px; }
.hero-meta {
  margin-top: 4rem;
  display: grid;
  gap: 3rem;
  border-top: 1px solid var(--muted-line);
  padding-top: 2rem;
  max-width: 1100px;
}
.hero-meta.cols-3 { grid-template-columns: repeat(3, auto); gap: 4rem; max-width: 900px; }
.hero-meta.cols-4 { grid-template-columns: repeat(4, auto); }
.hero-meta-item { display: flex; flex-direction: column; gap: 0.4rem; }
.hero-meta-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  font-weight: 500;
}
.hero-meta-value {
  font-family: 'Source Serif 4', serif;
  font-size: 1rem;
  color: var(--ink);
  font-variation-settings: "opsz" 30;
}
.hero-meta-value.large { font-size: 1.15rem; }

/* === CLIENT STRIP === */
.clients {
  padding: 5vh 0 8vh;
  border-top: 1px solid var(--muted-line);
}
.clients-eyebrow {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted);
  margin-bottom: 2.5rem;
  font-weight: 500;
}
.clients-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem 3rem;
  align-items: baseline;
}
.client-name {
  font-family: 'Source Serif 4', serif;
  font-weight: 400;
  font-size: clamp(1rem, 1.35vw, 1.4rem);
  color: var(--ink);
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
  font-variation-settings: "opsz" 30;
}
.client-name:hover { color: var(--accent); }

/* === SECTION HEADERS === */
.section-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted);
  margin-bottom: 2.5rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.section-label .num { color: var(--accent); }
h2 {
  font-family: 'Source Serif 4', serif;
  font-weight: 300;
  font-size: clamp(2.2rem, 4.8vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--ink);
  max-width: 1000px;
  margin-bottom: 2.5rem;
  font-variation-settings: "opsz" 60;
}
h2.home {
  font-size: clamp(2.5rem, 5.5vw, 5.5rem);
  line-height: 1;
  letter-spacing: -0.035em;
  margin-bottom: 4rem;
}
h2 em {
  font-style: italic;
  color: var(--accent);
  font-variation-settings: "opsz" 60;
}
.section-intro {
  max-width: 700px;
  font-size: 1.1rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* === HOMEPAGE INDUSTRY LIST === */
#industries {
  padding-top: 18vh;
  border-top: 1px solid var(--muted-line);
}
.industries-intro {
  max-width: 600px;
  font-size: 1.1rem;
  color: var(--ink-soft);
  margin-bottom: 5rem;
}
.industry-list {
  border-top: 1px solid var(--ink);
}
.industry {
  display: grid;
  grid-template-columns: 80px 1.2fr 2fr auto;
  gap: 3rem;
  padding: 2.4rem 0;
  border-bottom: 1px solid var(--muted-line);
  text-decoration: none;
  color: var(--ink);
  align-items: baseline;
  transition: padding-left 0.4s ease;
  position: relative;
}
.industry:hover { padding-left: 1.2rem; }
.industry::before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.5s ease;
}
.industry:hover::before { width: 100%; }
.industry-num {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.1em;
}
.industry-name {
  font-family: 'Source Serif 4', serif;
  font-weight: 400;
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  letter-spacing: -0.02em;
  color: var(--ink);
  transition: color 0.3s ease;
  font-variation-settings: "opsz" 30;
  margin: 0;
}
.industry:hover .industry-name { color: var(--accent); }
.industry-desc { font-size: 1rem; color: var(--muted); line-height: 1.5; }
.industry-arrow {
  font-size: 1.4rem;
  color: var(--muted);
  transition: all 0.3s ease;
}
.industry:hover .industry-arrow {
  color: var(--accent);
  transform: translateX(8px);
}

/* === STATS === */
.stats-warm {
  background: var(--paper-warm);
  margin: 14vh -5vw 0;
  padding: 18vh 5vw;
}
.stats-header { max-width: 1200px; margin-bottom: 6rem; }
.stats-intro {
  max-width: 580px;
  font-size: 1.1rem;
  color: var(--ink-soft);
  margin-top: 2rem;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 2px solid var(--ink);
}
.stat-cell {
  padding: 3rem 2rem 2rem 0;
  border-right: 1px solid var(--muted-line);
}
.stat-cell:last-child { border-right: none; }
.stat-big {
  font-family: 'Source Serif 4', serif;
  font-weight: 300;
  font-size: clamp(3.5rem, 7vw, 6rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--ink);
  font-variation-settings: "opsz" 60;
}
.stat-big sup {
  font-size: 0.4em;
  color: var(--accent);
  margin-left: 0.05em;
  font-weight: 400;
}
.stat-big .unit {
  font-size: 0.5em;
  color: var(--muted);
  font-style: italic;
  font-weight: 400;
}
.stat-label {
  margin-top: 1.5rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  font-weight: 600;
}
.stat-desc {
  margin-top: 0.7rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.stats-source {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--muted-line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--muted);
}
.stats-source a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  font-weight: 500;
}
.stats-source a:hover { color: var(--accent); border-color: var(--accent); }

/* === WHY/PROBLEM SECTIONS === */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 8vw;
  align-items: start;
}
.why-left h2 { margin-bottom: 2.5rem; }
.why-lede {
  max-width: 460px;
  font-size: 1.1rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.why-points { display: flex; flex-direction: column; }
.why-point {
  border-top: 1px solid var(--muted-line);
  padding: 2.5rem 0;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 2rem;
  align-items: baseline;
}
.why-point:last-child { border-bottom: 1px solid var(--muted-line); }
.why-point-num {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.1em;
}
.why-point h3 {
  font-family: 'Source Serif 4', serif;
  font-weight: 400;
  font-size: 1.7rem;
  letter-spacing: -0.015em;
  margin-bottom: 0.8rem;
  color: var(--ink);
  font-variation-settings: "opsz" 30;
}
.why-point p { font-size: 1rem; color: var(--ink-soft); line-height: 1.6; }

/* === PROBLEM LIST === */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
  margin-top: 5rem;
  align-items: start;
}
.problem-list { list-style: none; }
.problem-list li {
  padding: 1.5rem 0;
  border-top: 1px solid var(--muted-line);
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 1.2rem;
  align-items: baseline;
}
.problem-list li:last-child { border-bottom: 1px solid var(--muted-line); }
.problem-list .marker {
  color: var(--accent);
  font-weight: 500;
  font-size: 0.85rem;
}
.problem-list .text {
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.problem-list .text strong { color: var(--ink); font-weight: 500; }

/* === SOLUTION CARDS === */
.solutions-warm {
  background: var(--paper-warm);
  margin: 0 -5vw;
  padding: 14vh 5vw;
}
.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 4rem;
  border-top: 2px solid var(--ink);
}
.solution-card {
  padding: 3rem 3rem 3rem 0;
  border-bottom: 1px solid var(--muted-line);
  border-right: 1px solid var(--muted-line);
}
.solution-card:nth-child(2n) {
  padding-left: 3rem;
  padding-right: 0;
  border-right: none;
}
.solution-card:nth-last-child(-n+2) { border-bottom: none; }
.solution-num {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}
.solution-card h3 {
  font-family: 'Source Serif 4', serif;
  font-weight: 400;
  font-size: 1.7rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 1rem;
  font-variation-settings: "opsz" 30;
}
.solution-card p {
  font-size: 0.97rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.solution-card .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.2rem;
}
.tag {
  font-size: 0.72rem;
  padding: 0.3rem 0.7rem;
  background: var(--paper);
  border: 1px solid var(--muted-line);
  border-radius: 100px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* === ENGAGEMENTS === */
.engagement-list { margin-top: 4rem; }
.engagement {
  padding: 3rem 0;
  border-bottom: 1px solid var(--muted-line);
  display: grid;
  grid-template-columns: 220px 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.engagement:first-child { border-top: 1px solid var(--ink); padding-top: 3rem; }
.engagement-meta {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.7;
}
.engagement-meta .role {
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.6rem;
  font-size: 0.72rem;
}
.engagement h3 {
  font-family: 'Source Serif 4', serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 1rem;
  font-variation-settings: "opsz" 30;
}
.engagement-body {
  font-size: 0.97rem;
  color: var(--ink-soft);
  line-height: 1.6;
}
.engagement-outcomes { list-style: none; }
.engagement-outcomes li {
  padding: 0.5rem 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.5;
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 0.8rem;
  align-items: baseline;
}
.engagement-outcomes li::before {
  content: '→';
  color: var(--accent);
  font-weight: 600;
}

/* === DIFFERENTIATORS === */
.diff-section {
  background: var(--ink);
  color: var(--paper);
  margin: 0 -5vw;
  padding: 14vh 5vw;
}
.diff-section .section-label { color: rgba(245, 241, 234, 0.6); }
.diff-section .section-label .num { color: var(--accent-light); }
.diff-section h2 { color: var(--paper); }
.diff-section h2 em { color: var(--accent-light); }
.diff-section .section-intro { color: rgba(245, 241, 234, 0.75); }
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 5rem;
}
.diff {
  border-top: 1px solid rgba(245, 241, 234, 0.2);
  padding-top: 2rem;
}
.diff-num {
  font-size: 0.78rem;
  color: var(--accent-light);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}
.diff h3 {
  font-family: 'Source Serif 4', serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--paper);
  margin-bottom: 1rem;
  font-variation-settings: "opsz" 30;
}
.diff p {
  font-size: 0.95rem;
  color: rgba(245, 241, 234, 0.7);
  line-height: 1.6;
}

/* === FAQ === */
.faq-list {
  margin-top: 4rem;
  border-top: 1px solid var(--ink);
}
.faq-item { border-bottom: 1px solid var(--muted-line); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 2rem 0;
  text-align: left;
  cursor: pointer;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
  font-family: 'Source Serif 4', serif;
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--ink);
  transition: color 0.25s ease;
  font-variation-settings: "opsz" 30;
}
.faq-question:hover { color: var(--accent); }
.faq-toggle {
  width: 24px;
  height: 24px;
  border: 1px solid var(--muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: all 0.25s ease;
  margin-top: 0.3rem;
}
.faq-question:hover .faq-toggle {
  border-color: var(--accent);
  color: var(--accent);
}
.faq-item.open .faq-toggle {
  background: var(--accent);
  color: var(--paper);
  border-color: var(--accent);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding-bottom: 2rem;
}
.faq-answer p {
  max-width: 800px;
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* === CONTACT === */
#contact {
  background: var(--paper-warm);
  margin: 0 -5vw;
  padding: 14vh 5vw;
}
#contact.dark {
  background: var(--ink);
  color: var(--paper);
}
#contact.dark .section-label { color: rgba(245, 241, 234, 0.6); }
#contact.dark .section-label .num { color: var(--accent-light); }
#contact.dark h2 { color: var(--paper); }
#contact.dark h2 em { color: var(--accent-light); }
#contact.dark .section-intro { color: rgba(245, 241, 234, 0.75); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 4rem;
}
.contact-card {
  background: var(--paper);
  border: 1px solid var(--muted-line);
  border-radius: 4px;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
  min-height: 360px;
}
#contact.dark .contact-card {
  background: rgba(245, 241, 234, 0.04);
  border-color: rgba(245, 241, 234, 0.15);
}
.contact-card:hover { border-color: var(--accent); }
#contact.dark .contact-card:hover { border-color: var(--accent-light); }
.contact-card-eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 1.2rem;
  font-weight: 600;
}
#contact.dark .contact-card-eyebrow { color: var(--accent-light); }
.contact-card h3 {
  font-family: 'Source Serif 4', serif;
  font-weight: 400;
  font-size: 2rem;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 1.2rem;
  font-variation-settings: "opsz" 60;
}
#contact.dark .contact-card h3 { color: var(--paper); }
.contact-card h3 em {
  font-style: italic;
  color: var(--accent);
}
#contact.dark .contact-card h3 em { color: var(--accent-light); }
.contact-card p {
  color: var(--ink-soft);
  font-size: 0.97rem;
  line-height: 1.55;
  margin-bottom: 2rem;
}
#contact.dark .contact-card p { color: rgba(245, 241, 234, 0.7); }
.contact-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 1.6rem;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 100px;
  transition: all 0.25s ease;
  align-self: flex-start;
}
#contact.dark .contact-cta { background: var(--paper); color: var(--ink); }
.contact-cta::after { content: '→'; transition: transform 0.25s ease; }
.contact-cta:hover { background: var(--accent); }
#contact.dark .contact-cta:hover { background: var(--accent-light); color: var(--paper); }
.contact-cta:hover::after { transform: translateX(4px); }
.contact-cta.outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
#contact.dark .contact-cta.outline {
  color: var(--paper);
  border-color: rgba(245, 241, 234, 0.4);
}
.contact-cta.outline:hover {
  background: var(--ink);
  color: var(--paper);
}
#contact.dark .contact-cta.outline:hover {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

/* === FOOTER === */
footer {
  background: var(--ink);
  color: rgba(245, 241, 234, 0.5);
  padding: 4rem 5vw 3rem;
  margin: 0 -5vw;
  border-top: 1px solid rgba(245, 241, 234, 0.1);
}
.footer-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  font-size: 0.78rem;
}
.footer-row a {
  color: rgba(245, 241, 234, 0.7);
  text-decoration: none;
  margin-left: 1.8rem;
  transition: color 0.25s ease;
}
.footer-row a:hover { color: var(--accent-light); }
.footer-row a:first-child { margin-left: 0; }

/* === PRIVACY PAGE === */
.privacy-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 4vh 0 8vh;
}
.privacy-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
}
.privacy-meta {
  border-top: 1px solid var(--muted-line);
  border-bottom: 1px solid var(--muted-line);
  padding: 1.5rem 0;
  margin-bottom: 4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  font-size: 0.85rem;
  color: var(--muted);
}
.privacy-meta strong {
  color: var(--ink);
  font-weight: 500;
}
.privacy-toc {
  background: var(--paper-warm);
  padding: 2rem;
  border-radius: 4px;
  margin-bottom: 4rem;
}
.privacy-toc-title {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 1rem;
  font-weight: 500;
}
.privacy-toc ol {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 2rem;
  counter-reset: toc;
}
.privacy-toc ol li {
  counter-increment: toc;
}
.privacy-toc ol li a {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  color: var(--ink);
  text-decoration: none;
  padding: 0.4rem 0;
  font-size: 0.95rem;
  transition: color 0.25s ease;
}
.privacy-toc ol li a::before {
  content: counter(toc, decimal-leading-zero);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 500;
}
.privacy-toc ol li a:hover { color: var(--accent); }
.privacy-section { margin-bottom: 3.5rem; }
.privacy-section-num {
  font-size: 0.72rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.18em;
  margin-bottom: 0.8rem;
}
.privacy-section h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  font-weight: 400;
}
.privacy-section p,
.privacy-section ul {
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.privacy-section ul {
  padding-left: 1.5rem;
}
.privacy-section ul li {
  margin-bottom: 0.6rem;
}
.privacy-section .summary-box {
  background: var(--paper-warm);
  border-left: 3px solid var(--accent);
  padding: 1.5rem 1.8rem;
  margin: 1.5rem 0;
  border-radius: 0 4px 4px 0;
}
.privacy-section .summary-box strong {
  color: var(--ink);
  font-weight: 600;
}
.privacy-data-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}
.privacy-data-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--muted-line);
  align-items: baseline;
}
.privacy-data-row:first-child { border-top: 1px solid var(--muted-line); }
.privacy-data-row .label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.privacy-data-row .value {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.privacy-contact-card {
  background: var(--ink);
  color: var(--paper);
  padding: 3rem;
  border-radius: 4px;
  margin-top: 4rem;
  text-align: center;
}
.privacy-contact-card h3 {
  font-family: 'Source Serif 4', serif;
  font-size: 1.6rem;
  margin-bottom: 1rem;
  font-weight: 400;
  font-variation-settings: "opsz" 30;
}
.privacy-contact-card p {
  color: rgba(245, 241, 234, 0.75);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}
.privacy-contact-card a {
  color: var(--accent-light);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--accent-light);
  padding-bottom: 2px;
}
.privacy-contact-card a:hover { color: var(--paper); border-color: var(--paper); }

/* === MOBILE === */
@media (max-width: 900px) {
  nav.top { padding: 1.2rem 5vw; }
  section { padding: 8vh 0; }
  .hero { padding: 3vh 0 6vh; }
  .hero-meta.cols-3,
  .hero-meta.cols-4 { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .clients-row { gap: 1rem 2rem; }
  .industry { grid-template-columns: 50px 1fr auto; gap: 1rem; }
  .industry-desc { display: none; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .stat-cell { border-bottom: 1px solid var(--muted-line); padding: 2rem 1rem 1.5rem 0; }
  .stat-cell:nth-child(2) { border-right: none; }
  .why-grid { grid-template-columns: 1fr; gap: 4rem; }
  .problem-grid { grid-template-columns: 1fr; gap: 3rem; }
  .solution-grid { grid-template-columns: 1fr; }
  .solution-card { padding: 2rem 0 !important; border-right: none !important; }
  .engagement { grid-template-columns: 1fr; gap: 1.5rem; }
  .diff-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .faq-question { font-size: 1.1rem; }
  .footer-row { flex-direction: column; gap: 1.2rem; }
  .footer-row a { margin-left: 0; margin-right: 1.5rem; }
  .privacy-toc ol { grid-template-columns: 1fr; }
  .privacy-data-row { grid-template-columns: 1fr; gap: 0.5rem; }
}

/* === BLOG INDEX === */
.blog-list {
  display: flex;
  flex-direction: column;
  margin-top: 4rem;
  border-top: 1px solid var(--ink);
}
.blog-post-row {
  display: block;
  text-decoration: none;
  color: var(--ink);
  padding: 3rem 0;
  border-bottom: 1px solid var(--muted-line);
  transition: padding-left 0.4s ease;
  position: relative;
}
.blog-post-row:hover { padding-left: 1.5rem; }
.blog-post-row::before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.5s ease;
}
.blog-post-row:hover::before { width: 100%; }
.blog-post-meta {
  display: flex;
  gap: 1.5rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 1.2rem;
  font-weight: 500;
}
.blog-post-readtime { color: var(--accent); }
.blog-post-title {
  font-family: 'Source Serif 4', serif;
  font-weight: 400;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
  font-variation-settings: "opsz" 30;
  transition: color 0.3s ease;
  max-width: 900px;
}
.blog-post-row:hover .blog-post-title { color: var(--accent); }
.blog-post-excerpt {
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 700px;
  margin-bottom: 1.2rem;
}
.blog-post-cta {
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: transform 0.3s ease;
  display: inline-block;
}
.blog-post-row:hover .blog-post-cta { transform: translateX(6px); }

/* === INDIVIDUAL BLOG POST === */
.post-article {
  max-width: 760px;
  margin: 0 auto;
  padding-top: 4vh;
  padding-bottom: 10vh;
}
.post-meta-top {
  display: flex;
  gap: 1.5rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 2rem;
  font-weight: 500;
}
.post-readtime { color: var(--accent); }
.post-title {
  font-family: 'Source Serif 4', serif;
  font-weight: 300;
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--muted-line);
  font-variation-settings: "opsz" 60;
}
.post-body {
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--ink-soft);
}
.post-body p {
  margin-bottom: 1.4rem;
  max-width: 720px;
}
.post-body h2 {
  font-family: 'Source Serif 4', serif;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 3.5rem 0 1.3rem;
  font-variation-settings: "opsz" 30;
  max-width: none;
}
.post-body h3 {
  font-family: 'Source Serif 4', serif;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 2.2rem 0 1rem;
  font-variation-settings: "opsz" 20;
}
.post-body ul,
.post-body ol {
  margin: 0 0 1.6rem;
  padding-left: 1.5rem;
  max-width: 720px;
}
.post-body ul li,
.post-body ol li {
  margin-bottom: 0.6rem;
  line-height: 1.65;
}
.post-body strong {
  color: var(--ink);
  font-weight: 600;
}
.post-body a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: rgba(0, 115, 110, 0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.25s ease;
}
.post-body a:hover { text-decoration-color: var(--accent); }
.post-body em {
  font-style: italic;
}
.post-cta-box {
  background: var(--paper-warm);
  border-left: 3px solid var(--accent);
  padding: 2.5rem 2.5rem;
  margin: 4rem 0 2rem;
  border-radius: 0 4px 4px 0;
}
.post-cta-box h3 {
  font-family: 'Source Serif 4', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 0.8rem;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 30;
}
.post-cta-box p {
  font-size: 1rem;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}
.post-cta-box .contact-cta {
  margin-top: 0;
}
.post-back {
  margin-top: 6rem;
  padding-top: 2rem;
  border-top: 1px solid var(--muted-line);
}
.post-back a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.25s ease;
}
.post-back a:hover { color: var(--accent); }

@media (max-width: 900px) {
  .post-title { font-size: 2rem; padding-bottom: 2rem; margin-bottom: 2.5rem; }
  .post-body { font-size: 1rem; }
  .post-body h2 { font-size: 1.5rem; margin-top: 2.5rem; }
  .post-body h3 { font-size: 1.15rem; margin-top: 1.8rem; }
  .post-cta-box { padding: 2rem 1.5rem; }
  .blog-post-title { font-size: 1.5rem; }
}

/* === HOMEPAGE OFFERINGS GRID === */
#offerings {
  padding-top: 14vh;
  border-top: 1px solid var(--muted-line);
}
.offering-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 4rem;
  border-top: 2px solid var(--ink);
}
.offering {
  display: block;
  text-decoration: none;
  color: var(--ink);
  padding: 3rem 3rem 3rem 0;
  border-bottom: 1px solid var(--muted-line);
  border-right: 1px solid var(--muted-line);
  transition: padding-left 0.4s ease;
  position: relative;
}
.offering:nth-child(2n) {
  padding-left: 3rem;
  padding-right: 0;
  border-right: none;
}
.offering:nth-last-child(-n+2) { border-bottom: none; }
.offering:hover { padding-left: 1rem; }
.offering:nth-child(2n):hover { padding-left: 4rem; }
.offering::after {
  content: '→';
  position: absolute;
  top: 3rem;
  right: 3rem;
  font-size: 1.4rem;
  color: var(--muted);
  transition: all 0.3s ease;
}
.offering:nth-child(2n)::after { right: 0; }
.offering:hover::after {
  color: var(--accent);
  transform: translateX(8px);
}
.offering-num {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.offering-name {
  font-family: 'Source Serif 4', serif;
  font-weight: 400;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 1rem;
  font-variation-settings: "opsz" 30;
  transition: color 0.3s ease;
  max-width: 90%;
}
.offering:hover .offering-name { color: var(--accent); }
.offering-desc {
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 95%;
}
.offering-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.offering-meta span {
  font-size: 0.72rem;
  padding: 0.3rem 0.7rem;
  background: var(--paper-warm);
  border-radius: 100px;
  color: var(--muted);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 500;
}

@media (max-width: 900px) {
  .offering-grid { grid-template-columns: 1fr; }
  .offering, .offering:nth-child(2n) {
    padding: 2rem 0 !important;
    border-right: none !important;
    border-bottom: 1px solid var(--muted-line) !important;
  }
  .offering::after, .offering:nth-child(2n)::after { right: 0; top: 2rem; }
}

/* === SERVICES PAGE === */
.services-section {
  padding: 8vh 0;
  border-top: 1px solid var(--muted-line);
}
.services-section:first-of-type { border-top: 1px solid var(--ink); }
.services-section-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6vw;
  align-items: start;
}
.services-section-eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.services-section h2 {
  font-family: 'Source Serif 4', serif;
  font-weight: 400;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 0;
  font-variation-settings: "opsz" 60;
  max-width: none;
}
.services-section h2 em {
  font-style: italic;
  color: var(--accent);
}
.services-body {
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.65;
}
.services-body p {
  margin-bottom: 1.4rem;
  max-width: 720px;
}
.services-body p:first-child {
  font-size: 1.2rem;
  color: var(--ink);
  font-family: 'Source Serif 4', serif;
  font-weight: 400;
  font-variation-settings: "opsz" 30;
  letter-spacing: -0.005em;
  line-height: 1.4;
  margin-bottom: 2rem;
}
.services-body strong {
  color: var(--ink);
  font-weight: 600;
}
.services-body ul {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
}
.services-body ul li {
  padding: 0.7rem 0;
  border-top: 1px solid var(--muted-line);
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 1rem;
  align-items: baseline;
  font-size: 0.97rem;
}
.services-body ul li:last-child { border-bottom: 1px solid var(--muted-line); }
.services-body ul li::before {
  content: '→';
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
}
.services-section-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 2rem 0 1rem;
}
.services-section-meta span {
  font-size: 0.72rem;
  padding: 0.4rem 0.8rem;
  background: var(--paper-warm);
  border-radius: 100px;
  color: var(--ink);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 600;
}
.services-cta-row {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .services-section-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* === NAV LINKS === */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav-link {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.25s ease;
  position: relative;
}
.nav-link:hover { color: var(--accent); }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}
.nav-link:hover::after { width: 100%; }

/* === MOBILE HAMBURGER === */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 32px;
  height: 32px;
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: all 0.3s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

@media (max-width: 800px) {
  nav.top {
    padding: 1.2rem 5vw;
    flex-wrap: wrap;
  }
  .nav-toggle { display: flex; }
  .nav-menu {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.4rem;
    padding: 2rem 0 1rem;
    margin-top: 1rem;
    border-top: 1px solid var(--muted-line);
  }
  .nav-menu.open { display: flex; }
  .nav-link {
    font-size: 1.1rem;
    font-family: 'Source Serif 4', serif;
    font-weight: 400;
    letter-spacing: -0.01em;
    font-variation-settings: "opsz" 30;
  }
  .nav-cta {
    margin-top: 0.5rem;
    width: 100%;
    justify-content: center;
  }
}
