:root {
  --bg: #FAF8F3;
  --bg-alt: #F2EEE5;
  --bg-deep: #1F2A24;
  --text-primary: #1A1A1A;
  --text-secondary: #5C5C5A;
  --text-muted: #8A8A86;
  --accent: #2F4F40;
  --accent-light: #B5C7BD;
  --accent-hover: #1A3324;
  --border: rgba(26, 26, 26, 0.10);
  --border-strong: rgba(26, 26, 26, 0.20);
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 17px;
}
a { color: inherit; }
img { max-width: 100%; height: auto; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 40px; }
.container-narrow { max-width: 920px; margin: 0 auto; padding: 0 40px; }
.container-prose { max-width: 720px; margin: 0 auto; padding: 0 40px; }

/* ============ HEADER ============ */
header {
  position: sticky;
  top: 0;
  background: rgba(250, 248, 243, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  max-width: 1240px;
  margin: 0 auto;
}
.logo {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  text-decoration: none;
}
.logo span { font-style: italic; color: var(--accent); }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--text-primary); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 4px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  text-decoration: none;
  letter-spacing: 0.01em;
}
.btn-primary { background: var(--accent); color: #FAF8F3; }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); }
.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-strong);
}
.btn-secondary:hover { border-color: var(--text-primary); background: rgba(0,0,0,0.02); }
.btn-arrow {
  background: transparent;
  color: var(--text-primary);
  padding: 0;
  font-weight: 500;
  border-bottom: 1px solid var(--text-primary);
  border-radius: 0;
  padding-bottom: 2px;
  display: inline-block;
}
.btn-arrow:hover { color: var(--accent); border-color: var(--accent); }
.btn-large { padding: 16px 32px; font-size: 15px; }

/* ============ HERO ============ */
.hero { padding: 120px 0 100px; position: relative; }
.hero-narrow { padding: 80px 0 60px; }
.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 5.4vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  max-width: 1100px;
  margin-bottom: 32px;
  font-variation-settings: "SOFT" 30, "opsz" 144;
}
.hero h1 em { font-style: italic; color: var(--accent); font-weight: 400; }
.hero-narrow h1 { font-size: clamp(36px, 4.5vw, 56px); }
.hero-sub {
  font-size: 20px;
  line-height: 1.5;
  color: var(--text-secondary);
  max-width: 720px;
  margin-bottom: 48px;
  font-weight: 400;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-meta {
  margin-top: 80px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.meta-item { display: flex; flex-direction: column; }
.meta-num {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 4px;
  line-height: 1;
}
.meta-label { font-size: 13px; color: var(--text-muted); line-height: 1.4; }

/* ============ SECTION SHARED ============ */
section { padding: 100px 0; }
.section-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent);
}
.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  max-width: 800px;
}
.section-title em { font-style: italic; color: var(--accent); font-weight: 400; }
.section-intro {
  font-size: 19px;
  line-height: 1.55;
  color: var(--text-secondary);
  max-width: 720px;
  margin-bottom: 64px;
}

/* ============ TWO PATH ============ */
.two-path {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.path-card { padding: 56px 48px 56px 0; position: relative; }
.path-card:first-child { padding-right: 56px; border-right: 1px solid var(--border); }
.path-card:last-child { padding-left: 56px; }
.path-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.path-title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  color: var(--text-primary);
}
.path-body { font-size: 17px; line-height: 1.6; color: var(--text-secondary); margin-bottom: 28px; }
.path-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.path-tag {
  font-size: 13px;
  color: var(--text-secondary);
  padding: 6px 12px;
  background: var(--bg-alt);
  border-radius: 100px;
}

/* ============ DARK SECTION ============ */
.dark-section {
  background: var(--bg-deep);
  color: #FAF8F3;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.dark-section .section-eyebrow { color: var(--accent-light); }
.dark-section .section-eyebrow::before { background: var(--accent-light); }
.dark-section .section-title { color: #FAF8F3; }
.dark-section .section-title em { color: var(--accent-light); }
.ai-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.pullquote {
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.35;
  font-style: italic;
  color: #FAF8F3;
  padding-left: 24px;
  border-left: 2px solid var(--accent-light);
  margin-bottom: 32px;
  font-weight: 400;
}
.dark-body {
  color: rgba(250, 248, 243, 0.78);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 24px;
}
.dark-body strong { color: #FAF8F3; font-weight: 500; }
.dark-link {
  color: var(--accent-light);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--accent-light);
  padding-bottom: 2px;
  font-size: 15px;
  display: inline-block;
  margin-top: 8px;
}
.dark-link:hover { color: #FAF8F3; border-color: #FAF8F3; }

/* ============ STEPS ============ */
.steps { margin-top: 64px; }
.step {
  display: grid;
  grid-template-columns: 80px 240px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-top: 1px solid var(--border);
  align-items: start;
}
.step:last-child { border-bottom: 1px solid var(--border); }
.step-num {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
  font-style: italic;
}
.step-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.step-timing { font-size: 13px; color: var(--text-muted); margin-top: 8px; font-weight: 500; }
.step-body { font-size: 16px; line-height: 1.65; color: var(--text-secondary); }

/* ============ CASES ============ */
.cases-section { background: var(--bg-alt); }
.cases-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 64px;
}
.cases-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}
.case-card {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 40px;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.case-card:hover { border-color: var(--text-primary); transform: translateY(-2px); }
.case-tags { display: flex; gap: 8px; margin-bottom: 28px; flex-wrap: wrap; }
.case-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 4px 10px;
  background: rgba(47, 79, 64, 0.08);
  border-radius: 3px;
}
.case-client { font-size: 14px; color: var(--text-muted); margin-bottom: 12px; font-weight: 500; }
.case-title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  color: var(--text-primary);
}
.case-body { font-size: 15px; line-height: 1.6; color: var(--text-secondary); margin-bottom: 24px; }
.case-section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
  margin-top: 20px;
}
.case-section-label:first-of-type { margin-top: 0; }
.case-outcomes {
  list-style: none;
  margin-bottom: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.case-outcomes li {
  font-size: 14px;
  color: var(--text-primary);
  padding: 8px 0;
  display: flex;
  align-items: start;
  gap: 12px;
  line-height: 1.5;
}
.case-outcomes li::before { content: '→'; color: var(--accent); font-weight: 500; flex-shrink: 0; }
.case-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-primary);
  padding: 20px 0 0;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.case-attribution {
  font-family: var(--sans);
  font-style: normal;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 8px;
  display: block;
}

/* ============ SERVICES BLOCKS ============ */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  padding: 64px 0;
  border-top: 1px solid var(--border);
  align-items: start;
}
.service-block:last-child { border-bottom: 1px solid var(--border); }
.service-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--accent);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.service-title {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 0;
}
.service-lead { font-size: 18px; line-height: 1.55; color: var(--text-primary); margin-bottom: 24px; font-weight: 500; }
.service-body { font-size: 16px; line-height: 1.65; color: var(--text-secondary); margin-bottom: 28px; }
.service-different-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.service-different { list-style: none; }
.service-different li {
  font-size: 16px;
  color: var(--text-primary);
  padding: 10px 0;
  padding-left: 28px;
  position: relative;
  line-height: 1.5;
  border-bottom: 1px solid var(--border);
}
.service-different li:last-child { border-bottom: none; }
.service-different li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 16px;
  height: 1px;
  background: var(--accent);
}

/* ============ WHEN-TO BLOCKS ============ */
.when-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 56px;
}
.when-row {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  align-items: start;
}
.when-row:last-child { border-bottom: 1px solid var(--border); }
.when-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--accent);
  font-weight: 500;
}
.when-text {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.35;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}
.when-text strong { color: var(--accent); font-style: italic; font-weight: 500; }

/* ============ ABOUT ============ */
.about-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: start; }
.about-photo {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--bg-alt);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.about-prose { font-size: 17px; line-height: 1.7; color: var(--text-secondary); }
.about-prose p { margin-bottom: 20px; }
.about-prose strong { color: var(--text-primary); font-weight: 500; }
.about-section { margin-top: 56px; }
.about-section h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  color: var(--text-primary);
}
.credentials { list-style: none; }
.credentials li {
  font-size: 15px;
  color: var(--text-primary);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 16px;
  align-items: baseline;
}
.credentials li::before {
  content: '·';
  color: var(--accent);
  font-weight: 500;
  flex-shrink: 0;
}

/* ============ WRITING ============ */
.writing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 48px;
}
.writing-card {
  display: grid;
  grid-template-columns: 180px 1fr 120px;
  gap: 40px;
  padding: 40px 0;
  border-top: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  align-items: start;
  transition: opacity 0.2s;
}
.writing-card:hover { opacity: 0.7; }
.writing-card:last-child { border-bottom: 1px solid var(--border); }
.writing-meta {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.05em;
}
.writing-meta-tag {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 6px;
}
.writing-card-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.writing-snippet { font-size: 15px; line-height: 1.55; color: var(--text-secondary); }
.writing-stat {
  font-size: 13px;
  color: var(--text-muted);
  text-align: right;
  font-weight: 500;
}

/* ============ ARTICLE / POST ============ */
.article-meta {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}
.article-meta a { color: var(--accent); text-decoration: none; }
.article h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 32px;
  font-variation-settings: "SOFT" 30, "opsz" 144;
}
.article h1 em { font-style: italic; color: var(--accent); font-weight: 400; }
.article-pullquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  line-height: 1.4;
  padding: 24px 0 24px 28px;
  border-left: 2px solid var(--accent);
  margin: 32px 0;
  color: var(--text-primary);
  font-weight: 400;
}
.article-body p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 22px;
}
.article-body h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-top: 48px;
  margin-bottom: 20px;
}
.article-body h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin-top: 32px;
  margin-bottom: 16px;
}
.article-body ul, .article-body ol { margin: 0 0 22px 24px; }
.article-body li { font-size: 18px; line-height: 1.7; margin-bottom: 8px; }
.article-body strong { font-weight: 500; }
.article-body blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  line-height: 1.5;
  padding-left: 24px;
  border-left: 2px solid var(--accent);
  margin: 28px 0;
  color: var(--text-primary);
}
.article-cta {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.article-cta-prompt {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

/* ============ FAQ ============ */
.faq-list { margin-top: 48px; }
.faq-item {
  padding: 32px 0;
  border-top: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-question {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  color: var(--text-primary);
}
.faq-answer { font-size: 17px; line-height: 1.7; color: var(--text-secondary); }
.faq-answer strong { color: var(--text-primary); font-weight: 500; }
.faq-answer a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* ============ BOOKING ============ */
.booking-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.booking-prose { font-size: 17px; line-height: 1.7; color: var(--text-secondary); }
.booking-prose p { margin-bottom: 18px; }
.booking-prose strong { color: var(--text-primary); font-weight: 500; }
.calendly-embed-wrapper {
  background: white;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  min-height: 700px;
}
.calendly-embed-wrapper .calendly-inline-widget {
  width: 100%;
}
.calendly-mock {
  background: white;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 40px;
  min-height: 480px;
  display: flex;
  flex-direction: column;
}
.calendly-mock-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.calendly-mock-meta {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  display: flex;
  gap: 16px;
}
.calendly-mock-meta span::before { content: '· '; color: var(--accent); }
.calendly-mock-meta span:first-child::before { content: ''; }
.calendly-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 16px;
}
.calendly-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.15s;
}
.calendly-day.available { background: rgba(47, 79, 64, 0.08); color: var(--accent); font-weight: 500; }
.calendly-day.available:hover { background: var(--accent); color: white; }
.calendly-day.unavailable { color: var(--text-muted); }
.calendly-day.selected { background: var(--accent); color: white; }
.calendly-times { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 16px; }
.calendly-time {
  padding: 10px;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.15s;
  background: white;
}
.calendly-time:hover { border-color: var(--accent); color: var(--accent); }
.calendly-note { font-size: 12px; color: var(--text-muted); margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border); font-style: italic; }

/* ============ FINAL CTA ============ */
.final-cta { text-align: center; padding: 140px 0; border-top: 1px solid var(--border); }
.final-cta h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.final-cta h2 em { font-style: italic; color: var(--accent); font-weight: 400; }
.final-cta p {
  font-size: 19px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

/* ============ FOOTER ============ */
footer { background: var(--bg-deep); color: var(--accent-light); padding: 80px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-logo { font-family: var(--serif); font-size: 24px; font-weight: 500; color: #FAF8F3; margin-bottom: 16px; }
.footer-tagline { font-size: 15px; line-height: 1.55; color: rgba(250, 248, 243, 0.65); margin-bottom: 24px; }
.footer-col h4 {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FAF8F3;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: rgba(250, 248, 243, 0.65);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col a:hover { color: #FAF8F3; }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(250, 248, 243, 0.45);
}

/* ============ HAMBURGER + MOBILE NAV ============ */
.nav-hamburger {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: 4px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  box-sizing: border-box;
  z-index: 110;
  position: relative;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
  flex-shrink: 0;
}
body.menu-open .nav-hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
body.menu-open .nav-hamburger span:nth-child(2) {
  opacity: 0;
}
body.menu-open .nav-hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============ RESPONSIVE — MOBILE ============ */
@media (max-width: 900px) {
  /* Header & nav: hamburger replaces nav-links */
  .nav { padding: 14px 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav .btn-primary { padding: 10px 16px; font-size: 13px; }

  /* Mobile slide-down overlay menu */
  body.menu-open .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 16px 20px 24px;
    gap: 0;
    z-index: 100;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  }
  body.menu-open .nav-links li {
    border-bottom: 1px solid var(--border);
  }
  body.menu-open .nav-links li:last-child {
    border-bottom: none;
  }
  body.menu-open .nav-links a {
    display: block;
    padding: 14px 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
  }
  body.menu-open .nav-links a:hover,
  body.menu-open .nav-links a.active {
    color: var(--accent);
  }
  body.menu-open { overflow: hidden; }

  /* Hero — tighter, slightly smaller */
  .hero { padding: 48px 0 56px; }
  .hero-narrow { padding: 40px 0 32px; }
  .hero h1 { font-size: clamp(32px, 8vw, 44px); margin-bottom: 24px; }
  .hero-narrow h1 { font-size: clamp(28px, 7vw, 38px); }
  .hero-sub { font-size: 17px; margin-bottom: 32px; }
  .hero-cta { gap: 12px; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .eyebrow { font-size: 11px; margin-bottom: 20px; }

  /* Stats row — 2 columns on mobile */
  .hero-meta {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 56px;
    padding-top: 28px;
  }
  .meta-num { font-size: 26px; }
  .meta-num--word { font-size: 18px; }
  .meta-label { font-size: 12px; }

  /* Section titles + intros */
  section { padding: 56px 0; }
  .section-title { font-size: clamp(26px, 6.5vw, 36px); }
  .section-intro { font-size: 17px; margin-bottom: 40px; }

  /* Two-path: stack vertically with proper spacing */
  .two-path { grid-template-columns: 1fr; }
  .path-card:first-child {
    padding: 40px 0;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .path-card:last-child { padding: 40px 0; }
  .path-title { font-size: 24px; }

  /* AI section */
  .dark-section { padding: 64px 0; }
  .ai-grid { grid-template-columns: 1fr; gap: 32px; }
  .pullquote { font-size: 21px; padding-left: 18px; }

  /* How I Work — phases stack */
  .step {
    grid-template-columns: 60px 1fr;
    gap: 16px 20px;
    padding: 28px 0;
  }
  .step > div:nth-child(2) { grid-column: 2; }
  .step-body { grid-column: 1 / -1; padding-top: 4px; }
  .step-num { font-size: 28px; }
  .step-title { font-size: 19px; }
  .step-timing { font-size: 12px; }

  /* Cases */
  .cases-grid { grid-template-columns: 1fr; gap: 20px; }
  .case-card { padding: 28px 24px; }
  .case-title { font-size: 22px; }
  .case-body { font-size: 15px; }

  /* Service blocks — stack */
  .service-block { grid-template-columns: 1fr; gap: 20px; padding: 40px 0; }
  .service-title { font-size: 26px; }
  .service-lead { font-size: 17px; }

  /* When rows */
  .when-row {
    grid-template-columns: 36px 1fr;
    gap: 16px;
    padding: 24px 0;
  }
  .when-text { font-size: 17px; line-height: 1.4; }
  .when-num { font-size: 18px; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-photo { max-width: 320px; margin: 0 auto; }
  .about-prose { font-size: 16px; }

  /* Booking */
  .booking-grid { grid-template-columns: 1fr; gap: 32px; }
  .calendly-mock, .calendly-embed-wrapper { padding: 24px; min-height: 600px; }

  /* Writing index cards */
  .writing-card {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 28px 0;
  }
  .writing-card-title { font-size: 19px; }
  .writing-snippet { font-size: 14px; }
  .writing-stat { text-align: left; font-size: 12px; }
  .writing-meta { font-size: 12px; }

  /* Article body */
  .article h1 { font-size: clamp(26px, 6.5vw, 38px); }
  .article-body p,
  .article-body li { font-size: 16px; line-height: 1.65; }
  .article-body h2 { font-size: 22px; margin-top: 36px; }
  .article-body h3 { font-size: 19px; margin-top: 28px; }
  .article-pullquote { font-size: 19px; padding: 16px 0 16px 18px; }

  /* FAQ */
  .faq-item { padding: 24px 0; }
  .faq-question { font-size: 19px; }
  .faq-answer { font-size: 16px; }

  /* Final CTA */
  .final-cta { padding: 64px 0; }
  .final-cta h2 { font-size: clamp(26px, 7vw, 36px); }
  .final-cta p { font-size: 17px; }

  /* Footer — stack to 1 column on small mobile, keep 2 on tablet */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; align-items: flex-start; }

  /* Container padding */
  .container, .container-narrow, .container-prose { padding: 0 20px; }
}

/* Tighten further at very small screen sizes */
@media (max-width: 480px) {
  .hero-meta { grid-template-columns: 1fr 1fr; gap: 20px 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .nav { padding: 12px 16px; }
  .container, .container-narrow, .container-prose { padding: 0 16px; }
}
