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

/* === Base === */
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #0f172a;
  background: #f7f3ef;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* === Layout === */
.container { max-width: 64rem; margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: 48rem; margin: 0 auto; padding: 0 1.5rem; }

/* === NAV === */
nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247,243,239,0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid #ede8e1;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
}

.nav-logo { font-size: 0.875rem; font-weight: 600; color: #0f172a; letter-spacing: -0.01em; }

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-size: 0.875rem; color: #475569; transition: color 0.15s; }
.nav-links a:hover { color: #0f172a; }
.nav-links .btn-dark { color: #fff; }
.nav-links .btn-dark:hover { color: #fff; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  transition: all 0.15s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.btn-dark { background: #0e9e7f; color: #fff; }
.btn-dark:hover { background: #0a7d65; }
.btn-outline { background: transparent; color: #334155; border: 1px solid #e2e8f0; }
.btn-outline:hover { border-color: #94a3b8; }
.btn-lg { padding: 0.75rem 1.5rem; }
.btn-xl { padding: 1rem 2rem; font-size: 1rem; font-weight: 600; }
.btn-white { background: #fff; color: #0f172a; font-weight: 600; }
.btn-white:hover { background: #f1f5f9; }

.nav-mobile-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #475569;
  padding: 4px;
}
.nav-mobile-btn:hover { color: #0f172a; }

.nav-mobile-menu {
  display: none;
  border-top: 1px solid #ede8e1;
  background: #f7f3ef;
  padding: 1rem 1.5rem;
  flex-direction: column;
  gap: 1rem;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a { font-size: 0.875rem; color: #334155; }
.nav-mobile-menu .btn-dark { text-align: center; padding: 0.5rem 1rem; color: #fff; }

/* === SECTION LABEL === */
.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #64748b;
  margin-bottom: 0.75rem;
}

/* === HERO === */
.hero { padding: 7rem 1.5rem 8rem; text-align: left; position: relative; overflow: hidden; }
.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #2d6a4f;
  background: #d8f3dc;
  border-radius: 9999px;
  padding: 0.35rem 0.875rem;
  margin-bottom: 2rem;
  letter-spacing: 0.01em;
}

.hero-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #40916c;
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}
.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #0a0a0a;
  max-width: 52rem;
  margin: 0 0 1.75rem;
}
.hero-sub {
  font-size: 1.1875rem;
  color: #475569;
  max-width: 34rem;
  margin: 0 0 2.75rem;
  line-height: 1.7;
}
.hero-cta { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }

/* === PITCH === */
.brief-bio { padding: 3rem 1.5rem; border-top: 1px solid #ede8e1; }
.brief-bio p { font-size: 1rem; color: #475569; line-height: 1.8; max-width: 42rem; }
.pitch { padding: 7rem 1.5rem; border-top: 1px solid #ede8e1; }
.pitch-single {
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  color: #1e293b;
  line-height: 1.7;
  max-width: 44rem;
  margin: 0 auto;
  text-align: center;
  font-weight: 400;
}

/* === BENEFITS === */
.benefits { padding: 7rem 1.5rem; border-top: 1px solid #ede8e1; }

.benefits-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.benefits-left h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: #0a0a0a;
  position: sticky;
  top: 6rem;
}

.benefits-right {
  display: flex;
  flex-direction: column;
}

.benefit {
  display: grid;
  grid-template-columns: 1.5rem 1fr;
  gap: 1rem;
  padding: 1.75rem 0;
  border-top: 1px solid #ede8e1;
  align-items: start;
}
.benefit:last-child { border-bottom: 1px solid #ede8e1; }

.benefit-icon {
  font-size: 1rem;
  font-weight: 300;
  color: #0e9e7f;
  line-height: 1.5;
  margin-top: 0.1rem;
}

.benefit h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 0.375rem;
}

.benefit p {
  font-size: 1rem;
  color: #475569;
  line-height: 1.65;
}

@media (max-width: 768px) {
  .benefits-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .benefits-left h2 { position: static; }
}

/* === WHO === */
.who { padding: 6rem 1.5rem; border-top: 1px solid #ede8e1; }
.who-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: #0a0a0a;
  margin-bottom: 3rem;
}
.who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.who-cta { margin-top: 3rem; }
.who-item { display: flex; gap: 0.75rem; }
.who-icon {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.625rem;
  background: rgba(220,178,154,0.2);
  color: #a0633f;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.0625rem;
}
.who-item p { font-size: 1rem; color: #334155; line-height: 1.6; }

/* === SERVICES === */
.services { padding: 7rem 1.5rem; border-top: 1px solid #ede8e1; }
.services-header { margin-bottom: 4rem; }
.services-header h2 { font-size: 1.875rem; font-weight: 700; color: #0f172a; margin-top: 0.75rem; }

.services-list { display: flex; flex-direction: column; }

.service-row {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 2rem;
  padding: 2.75rem 0;
  border-top: 1px solid #ede8e1;
  align-items: start;
}
.service-row:last-child { border-bottom: 1px solid #ede8e1; }

.service-num {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #dcb29a;
  letter-spacing: 0.04em;
  padding-top: 0.2rem;
}

.service-row-body { display: flex; flex-direction: column; gap: 0.75rem; }

.service-row-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.service-row-top h3 { font-size: 1.1875rem; font-weight: 600; color: #0f172a; }

.service-tag {
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
}

.service-row-body > p { font-size: 0.9375rem; color: #475569; line-height: 1.65; max-width: 40rem; }

.service-details { list-style: none; display: flex; flex-wrap: wrap; gap: 0.375rem 1.5rem; }
.service-details li { font-size: 0.8125rem; color: #64748b; display: flex; gap: 0.5rem; }
.service-details li::before { content: '—'; color: #dcb29a; flex-shrink: 0; }

.service-commitment {
  font-size: 0.75rem; font-weight: 500;
  background: rgba(177,219,232,0.25); color: #3a7a8a;
  padding: 0.3rem 0.7rem; border-radius: 9999px;
  white-space: nowrap;
}

.services-footer {
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid #ede8e1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.services-footer p { font-size: 0.875rem; color: #475569; max-width: 28rem; }

/* === METRICS === */
.metrics { padding: 5rem 1.5rem; border-top: 1px solid #ede8e1; border-bottom: 1px solid #ede8e1; }
.metrics-label {
  font-size: 0.75rem; font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.1em; color: #94a3b8; margin-bottom: 2rem;
}

.metrics-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: stretch;
}

.metrics-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.metric-card {
  border: none;
  border-radius: 1.25rem;
  padding: 2rem 1.75rem;
}
.metric-card:nth-child(1) { background: #ecddd4; }
.metric-card:nth-child(2) { background: #eee8d5; }
.metric-card:nth-child(3) { background: #ecdbdf; }
.metric-card:nth-child(4) { background: #dde8e6; }

.metric-stat {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.75rem;
  font-weight: 800;
  color: rgba(0,0,0,0.75);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
  line-height: 1;
}
.metric-label { font-size: 0.875rem; color: rgba(0,0,0,0.6); margin-bottom: 0.2rem; }
.metric-context { font-size: 0.75rem; color: rgba(0,0,0,0.45); }

.metrics-quote {
  background: #fff;
  border: none;
  border-radius: 1.25rem;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}
.metrics-quote blockquote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  font-style: italic;
  color: #0a0a0a;
  line-height: 1.45;
  flex: 1;
  letter-spacing: -0.01em;
}

/* === CASE STUDIES === */
.casestudies { padding: 7rem 1.5rem; border-top: 1px solid #ede8e1; }
.casestudies-header { margin-bottom: 4rem; }
.casestudies-header h2 { font-size: 1.875rem; font-weight: 700; color: #0f172a; margin-top: 0.75rem; }
.casestudies-list { display: flex; flex-direction: column; gap: 1.25rem; }

.case-card {
  display: grid;
  grid-template-columns: 2fr 3fr;
  border: 1px solid #ede8e1;
  border-radius: 1.25rem;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  color: inherit;
  background: #fff;
  min-height: 320px;
}
.case-card:hover { border-color: #dcb29a; box-shadow: 0 8px 40px rgba(0,0,0,0.06); transform: translateY(-3px); }
.case-card-left {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.case-card-right { overflow: hidden; }
.case-card-right img { width: 100%; height: 100%; object-fit: cover; object-position: top left; display: block; }
.case-company { font-size: 0.75rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; color: #0e9e7f; }
.case-title { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; color: #0a0a0a; font-size: 1.5rem; line-height: 1.35; transition: color 0.15s; flex: 1; }
.case-card:hover .case-title { color: #334155; }
.case-stat { font-size: 0.75rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; color: #0e9e7f; margin-top: 0.25rem; }
.case-desc { font-size: 1rem; color: #64748b; line-height: 1.7; }
.case-footer { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; margin-top: auto; }
.tag { font-size: 0.75rem; background: rgba(177,219,232,0.25); color: #3a7a8a; padding: 0.25rem 0.625rem; border-radius: 9999px; }
.case-read-more { font-size: 0.75rem; color: #94a3b8; width: 100%; transition: color 0.15s; padding-top: 8px; }
.case-card:hover .case-read-more { color: #334155; }

/* === TESTIMONIALS === */
.testimonials { padding: 7rem 1.5rem; border-top: 1px solid #ede8e1; position: relative; overflow: hidden; }
.testimonials-label {
  font-size: 0.75rem; font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.1em; color: #64748b; margin-bottom: 4rem;
}
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.testimonial {
  display: flex;
  flex-direction: column;
  border-radius: 1.25rem;
  padding: 2.25rem 2rem;
  justify-content: space-between;
  gap: 2rem;
}
.testimonial:nth-child(1) { background: #eee8d5; }
.testimonial:nth-child(2) { background: #ecdbdf; }
.testimonial:nth-child(3) { background: #dde8e6; }
.testimonial blockquote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 700;
  font-style: italic;
  color: rgba(0,0,0,0.8);
  line-height: 1.45;
  flex: 1;
  letter-spacing: -0.01em;
}
.testimonial-name { font-weight: 600; font-size: 0.875rem; color: rgba(0,0,0,0.8); }
.testimonial-title { font-size: 0.75rem; color: rgba(0,0,0,0.55); margin-top: 0.125rem; }
.testimonials-linkedin { margin-top: 3rem; font-size: 0.875rem; color: #64748b; }
.testimonials-linkedin a { color: #334155; text-decoration: underline; text-underline-offset: 2px; }
.testimonials-linkedin a:hover { color: #0f172a; }

/* === ENGAGEMENT MODEL === */
.engagement { padding: 7rem 1.5rem; border-top: 1px solid #ede8e1; }
.engagement-header { margin-bottom: 3.5rem; }
.engagement-header h2 { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800; color: #0a0a0a; line-height: 1.1; margin-top: 0.75rem; letter-spacing: -0.01em; }
.engagement-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 2.5rem; }
.engagement-card { background: #fff; border: 1px solid #ede8e1; border-radius: 1.25rem; padding: 2rem 1.75rem; display: flex; flex-direction: column; gap: 0.75rem; position: relative; }
.engagement-num { font-family: 'Playfair Display', Georgia, serif; font-size: 1.25rem; font-weight: 800; color: #dcb29a; line-height: 1; }
.engagement-card h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.5rem; font-weight: 700; color: #0a0a0a; margin: 0; }
.engagement-duration { font-size: 0.875rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; color: #0e9e7f; margin: 0; }
.engagement-price { font-size: 1rem; color: #475569; margin: 0; font-style: italic; }
.engagement-card > p:not(.engagement-num):not(.engagement-duration) { font-size: 1rem; color: #475569; line-height: 1.7; margin: 0; }
.engagement-process { font-size: 0.875rem; color: #94a3b8; line-height: 1.6; margin: 0; border-top: 1px solid #ede8e1; padding-top: 0.875rem; margin-top: 0.25rem; }
.engagement-note { font-size: 1rem; color: #64748b; }
.engagement-note a { color: #0a0a0a; text-decoration: underline; text-underline-offset: 3px; }
.engagement-note a:hover { color: #0e9e7f; }

/* === ABOUT === */
.about { padding: 7rem 1.5rem; border-top: 1px solid #ede8e1; }
.about-grid { display: grid; grid-template-columns: 1fr; }
.about-left { max-width: 42rem; }
.about-left .section-label { margin-bottom: 1.5rem; }
.about-specialties { margin-top: 3rem; }
.specialties-bento { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.specialty-card { border-radius: 1rem; padding: 1.5rem; display: flex; flex-direction: column; gap: 0.625rem; }
.specialty-card:nth-child(1) { background: #ecddd4; }
.specialty-card:nth-child(2) { background: #eee8d5; }
.specialty-card:nth-child(3) { background: #ecdbdf; }
.specialty-card:nth-child(4) { background: #dde8e6; }
.specialty-icon { width: 2rem; height: 2rem; display: flex; align-items: center; justify-content: center; color: rgba(0,0,0,0.45); margin-bottom: 0.25rem; }
.specialty-card .specialty-title { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; font-size: 1.5rem; color: rgba(0,0,0,0.8); margin: 0; }
.specialty-card p { font-size: 1rem; color: rgba(0,0,0,0.6); line-height: 1.6; margin: 0; }
.about-left h2 { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 800; letter-spacing: -0.01em; line-height: 1.1; color: #0a0a0a; margin-bottom: 1.5rem; }
.about-text { display: flex; flex-direction: column; gap: 1rem; font-size: 0.875rem; color: #475569; line-height: 1.7; }
.specialties-label { font-size: 0.75rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; color: #64748b; margin-bottom: 1.25rem; }

/* === FAQ === */
.faq-section { padding: 7rem 1.5rem; background: #f8fafc; border-top: 1px solid #f1f5f9; }
.faq-section h2 { font-size: 1.875rem; font-weight: 700; color: #0f172a; margin-top: 0.75rem; margin-bottom: 3rem; }
.faq-list { border-top: 1px solid #e2e8f0; }
.faq-item { border-bottom: 1px solid #e2e8f0; }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.25rem 0; text-align: left;
  font-size: 1rem; font-weight: 500; color: #0f172a; font-family: inherit;
}
.faq-q:hover { color: #334155; }
.faq-icon { flex-shrink: 0; width: 1rem; height: 1rem; transition: transform 0.2s; color: #94a3b8; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { display: none; padding-bottom: 1.25rem; font-size: 0.875rem; color: #475569; line-height: 1.7; }
.faq-item.open .faq-a { display: block; }

/* === CTA === */
.cta { padding: 8rem 1.5rem; color: #0a0a0a; text-align: center; border-top: 1px solid #ede8e1; }
.cta h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: #0a0a0a;
}
.cta p { font-size: 1.0625rem; color: #64748b; margin-bottom: 3rem; max-width: 36rem; margin-left: auto; margin-right: auto; line-height: 1.75; }

/* === FOOTER === */
footer { border-top: 1px solid #ede8e1; padding: 2.5rem 1.5rem; }
.footer-inner { display: flex; flex-direction: column; gap: 1rem; }
.footer-copy { font-size: 0.875rem; color: #64748b; }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { font-size: 0.875rem; color: #64748b; transition: color 0.15s; }
.footer-links a:hover { color: #0f172a; }

/* === WORK PAGES === */
.work-header { padding: 4rem 1.5rem 5rem; border-bottom: 1px solid #ede8e1; }
.back-link { display: inline-flex; align-items: center; gap: 0.25rem; font-size: 0.875rem; color: #94a3b8; margin-bottom: 2rem; transition: color 0.15s; }
.back-link:hover { color: #475569; }
.work-company { font-size: 0.75rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; color: #0e9e7f; margin-bottom: 1rem; margin-top: 2rem; }
.work-header h1 { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; color: #0a0a0a; line-height: 1.1; margin-bottom: 1.5rem; letter-spacing: -0.01em; }
.work-header p { font-size: 1.0625rem; color: #64748b; line-height: 1.75; max-width: 42rem; }

.work-metrics { padding: 0 1.5rem 2.5rem; background: transparent; }
.work-metrics-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.work-metrics-grid > div { border-radius: 1.25rem; padding: 2rem 1.75rem; }
.work-metrics-grid > div:nth-child(1) { background: #ecddd4; }
.work-metrics-grid > div:nth-child(2) { background: #eee8d5; }
.work-metrics-grid > div:nth-child(3) { background: #ecdbdf; }
.work-metrics-grid > div:nth-child(4) { background: #dde8e6; }
.work-metric-stat { font-family: 'Playfair Display', Georgia, serif; font-size: 2.5rem; font-weight: 800; color: rgba(0,0,0,0.75); line-height: 1; margin-bottom: 0.5rem; letter-spacing: -0.02em; }
.work-metric-label { font-size: 0.8125rem; color: rgba(0,0,0,0.6); line-height: 1.5; }

.work-body { padding: 5rem 1.5rem; }
.work-image { margin: 0; }
.work-image img { width: 100%; height: auto; border-radius: 1.25rem; display: block; }
.work-image--inline { margin-top: 2rem; margin-bottom: 0.5rem; }
.work-image-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; margin-bottom: 0.5rem; }
.work-image-duo img { width: 100%; height: auto; border-radius: 1rem; display: block; object-fit: cover; }
.work-image-duo--weighted { grid-template-columns: 1.6fr 1fr; }
@media (max-width: 640px) { .work-image-duo, .work-image-duo--weighted { grid-template-columns: 1fr; } }
.work-content { max-width: 48rem; margin: 0 auto; display: flex; flex-direction: column; gap: 4rem; }

.context-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
  padding: 2rem 0; border-top: 1px solid #ede8e1; border-bottom: 1px solid #ede8e1; font-size: 0.875rem;
}
.context-strip-label { font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.1em; color: #94a3b8; margin-bottom: 0.375rem; }
.context-strip-value { font-weight: 500; color: #0a0a0a; font-size: 0.9375rem; }

.work-section h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem; font-weight: 800; color: #0a0a0a;
  margin-bottom: 1.25rem; line-height: 1.2; letter-spacing: -0.01em;
}
.work-section p { font-size: 1rem; color: #475569; line-height: 1.8; }
.work-section p + p { margin-top: 1rem; }
.outcome-list { display: flex; flex-direction: column; gap: 0.625rem; margin-top: 1rem; }
.work-section .outcome-list p { display: block; position: relative; padding-left: 1.25rem; font-size: 1rem; color: #475569; line-height: 1.7; margin: 0; }
.work-section .outcome-list p::before { content: '—'; color: #dcb29a; position: absolute; left: 0; top: 0; }
.work-section .outcome-list p + p { margin-top: 0; }
.work-section ul { list-style: none; display: flex; flex-direction: column; gap: 0.625rem; }
.work-section ul li { display: flex; gap: 0.75rem; font-size: 1rem; color: #475569; line-height: 1.7; }
.work-section ul li::before { content: '—'; color: #dcb29a; flex-shrink: 0; margin-top: 0.15rem; }

.insight-box {
  background: rgba(177,219,232,0.2); border-left: 2px solid #b1dbe8;
  border-radius: 0 0.75rem 0.75rem 0; padding: 1.5rem 1.75rem;
}
.insight-box .insight-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: #3a7a8a; margin-bottom: 0.625rem; }
.insight-box p { font-size: 1rem; color: #334155; line-height: 1.75; }

.key-decisions { display: flex; flex-direction: column; gap: 2.25rem; }
.decision { display: flex; gap: 1.5rem; }
.decision-num {
  flex-shrink: 0; width: 1.875rem; height: 1.875rem; border-radius: 50%;
  background: rgba(220,178,154,0.25); color: #a0633f; font-size: 0.75rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.decision h3 { font-weight: 600; color: #0a0a0a; margin-bottom: 0.5rem; font-size: 1rem; }
.decision p { font-size: 1rem; color: #475569; line-height: 1.75; }

.reflection {
  background: rgba(220,178,154,0.12); border-left: 2px solid #dcb29a;
  border-radius: 0 0.75rem 0.75rem 0; padding: 1.75rem 2rem;
}
.reflection h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem; font-weight: 800; color: #0a0a0a; margin-bottom: 0.875rem; line-height: 1.2;
}
.reflection p { font-size: 1rem; color: #475569; line-height: 1.8; }

.more-work { padding: 5rem 1.5rem; background: #f7f3ef; border-top: 1px solid #ede8e1; }
.more-work-label { font-size: 0.75rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; color: #94a3b8; margin-bottom: 2rem; max-width: 48rem; margin-left: auto; margin-right: auto; }
.more-work-grid { max-width: 48rem; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.more-work-card { display: block; border: 1px solid #ede8e1; background: #fff; border-radius: 1.25rem; padding: 2rem 1.75rem; transition: border-color 0.2s, transform 0.2s; color: inherit; }
.more-work-card:hover { border-color: #dcb29a; transform: translateY(-2px); }
.more-work-company { font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.1em; color: #0e9e7f; margin-bottom: 0.625rem; font-weight: 500; }
.more-work-title { font-weight: 600; font-size: 0.9375rem; color: #0a0a0a; line-height: 1.45; }

.work-cta { padding: 6rem 1.5rem; background: #f7f3ef; color: #0a0a0a; text-align: center; border-top: 1px solid #ede8e1; }
.work-cta h2 { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 800; margin-bottom: 0.875rem; line-height: 1.1; }
.work-cta p { font-size: 1rem; color: #64748b; margin-bottom: 2.5rem; max-width: 28rem; margin-left: auto; margin-right: auto; line-height: 1.75; }

/* === RESPONSIVE === */
@media (min-width: 640px) {
  .hero-cta { flex-direction: row; justify-content: flex-start; }
  .services-footer { flex-direction: row; align-items: center; justify-content: space-between; }
  .footer-inner { flex-direction: row; justify-content: space-between; align-items: center; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-mobile-btn { display: block; }
  .pitch-grid,
  .about-grid { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: 1fr; }
  .metrics-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 1rem; }
  .engagement-grid { grid-template-columns: 1fr; }
  .context-strip { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .work-metrics-grid { grid-template-columns: 1fr; }
  .more-work-grid { grid-template-columns: 1fr; }
  .hero { padding: 4rem 1.5rem 5rem; }
  .case-card { grid-template-columns: 1fr; }
  .case-card-right { height: 200px; }
  .service-row { grid-template-columns: 2.5rem 1fr; gap: 1rem; }
  .service-row-top { flex-direction: column; gap: 0.25rem; }
  .metrics-bento { grid-template-columns: 1fr; }
  .metrics-stats { grid-template-columns: 1fr 1fr; }
  .marquee-track { gap: 1.75rem; }
  .specialties-bento { grid-template-columns: 1fr; }
}

@media (min-width: 640px) and (max-width: 900px) {
  .metrics-bento { grid-template-columns: 1fr; }
}

/* === LOGOS MARQUEE === */
.logos-section {
  padding: 1.125rem 1.5rem;
  border-top: 1px solid #ede8e1;
  border-bottom: 1px solid #ede8e1;
  overflow: hidden;
}

.logos-inner {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 64rem;
  margin: 0 auto;
}

.logos-label-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
  padding-right: 1.5rem;
}

.logos-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: #94a3b8;
  white-space: nowrap;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.logos-label-line {
  display: block;
  width: 3rem;
  height: 1px;
  background: #c4bdb4;
  flex-shrink: 0;
}

.marquee-wrapper {
  flex: 1;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 4%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 4%, black 92%, transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  width: max-content;
  animation: marquee 35s linear infinite;
}

.marquee-track:hover { animation-play-state: paused; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.logo-item {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  user-select: none;
}

.logo-item img {
  display: block;
  height: 20px;
  width: auto;
  opacity: 0.45;
  filter: grayscale(1);
  transition: opacity 0.2s;
}
.logo-item img[alt="SponsorPulse"] { height: 30px; }
.logo-item img[alt="PushPress"] { height: 56px; }

.marquee-track:hover .logo-item img { opacity: 0.65; }

/* separator dot between logos */
.logo-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #e2e8f0;
  flex-shrink: 0;
}

/* === ROLE BY STAGE === */
.stage-section { padding: 7rem 1.5rem; border-top: 1px solid #ede8e1; }

.stage-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.stage-layout-left h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: #0a0a0a;
  margin-top: 0.75rem;
  position: sticky;
  top: 6rem;
}

.stage-timeline {
  position: relative;
  padding-left: 2.5rem;
}

.stage-line {
  position: absolute;
  left: 0;
  top: 0.75rem;
  bottom: 0.75rem;
  width: 1px;
  background: #ede8e1;
  overflow: hidden;
}

.stage-line-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: #dcb29a;
  transition: height 0.08s linear;
}

.stage-item {
  position: relative;
  padding-bottom: 6rem;
}
.stage-item:last-child { padding-bottom: 0; }

.stage-dot {
  position: absolute;
  left: -2.5rem;
  top: 0.625rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ede8e1;
  transform: translateX(-50%);
  transition: background 0.3s ease;
  z-index: 1;
}
.stage-dot.active { background: #dcb29a; }

.stage-item-label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #94a3b8;
  margin-bottom: 0.5rem;
}

.stage-tag {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #0a0a0a;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.stage-item-role-label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #94a3b8;
  margin-bottom: 0.5rem;
}

.stage-role {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.7;
  max-width: 30rem;
}
.stage-role strong {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0a0a0a;
  display: block;
}

@media (max-width: 768px) {
  .stage-layout { grid-template-columns: 1fr; gap: 3rem; }
  .stage-layout-left h2 { position: static; }
}

/* === EDITORIAL HEADING SIZES === */
.services-header h2,
.casestudies-header h2,
.about-left h2,
.faq-section h2,
.stage-header h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: #0a0a0a;
}

/* about bio line */
.about-bio {
  font-size: 1rem;
  color: #475569;
  line-height: 1.7;
  margin-top: 1rem;
}

/* === ILLUSTRATION ELEMENTS === */

.hero-blob { display: none; }
.hero .container { position: relative; z-index: 1; }

.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  color: #0f172a;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}


.testimonials-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 720px;
  height: 520px;
  background: radial-gradient(ellipse at center, rgba(234,179,8,0.14) 0%, transparent 65%);
  border-radius: 54% 46% 58% 42% / 48% 56% 44% 52%;
  pointer-events: none;
  z-index: 0;
}
.testimonials .container { position: relative; z-index: 1; }


.about-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  margin-bottom: 2rem;
  display: block;
  letter-spacing: 0.04em;
}

/* === ABOUT PAGE === */

.about-header {
  padding: 5rem 1.5rem 4rem;
  border-bottom: 1px solid #ede8e1;
}

.about-header-inner {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}

.about-header-inner .about-avatar--lg {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  display: block;
  flex-shrink: 0;
  margin-bottom: 0;
}

.about-header-inner h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: #0a0a0a;
  margin-bottom: 1rem;
}

.about-header-inner .section-label {
  margin-bottom: 0.75rem;
}

.about-linkedin {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #0f172a;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.about-linkedin:hover { color: #0e9e7f; }

.about-specialties-section {
  padding: 5rem 1.5rem;
  border-top: 1px solid #ede8e1;
}

.about-specialties-section .specialties-bento {
  margin-top: 1.5rem;
}

@media (max-width: 600px) {
  .about-header-inner {
    flex-direction: column;
    gap: 1.5rem;
  }
}

/* === ANIMATIONS === */

/* Hero entrance — staggered on load */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-status { opacity: 0; animation: fadeUp 0.7s 0.05s cubic-bezier(0.16,1,0.3,1) forwards; }
.hero h1      { opacity: 0; animation: fadeUp 0.7s 0.15s cubic-bezier(0.16,1,0.3,1) forwards; }
.hero-sub     { opacity: 0; animation: fadeUp 0.7s 0.28s cubic-bezier(0.16,1,0.3,1) forwards; }
.hero-cta     { opacity: 0; animation: fadeUp 0.7s 0.42s cubic-bezier(0.16,1,0.3,1) forwards; }

/* Work page header entrance */
.work-header .back-link    { opacity: 0; animation: fadeUp 0.6s 0.05s cubic-bezier(0.16,1,0.3,1) forwards; }
.work-header .work-company { opacity: 0; animation: fadeUp 0.6s 0.12s cubic-bezier(0.16,1,0.3,1) forwards; }
.work-header h1            { opacity: 0; animation: fadeUp 0.6s 0.22s cubic-bezier(0.16,1,0.3,1) forwards; }
.work-header > .container-narrow > p { opacity: 0; animation: fadeUp 0.6s 0.32s cubic-bezier(0.16,1,0.3,1) forwards; }

/* Scroll reveal base state */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1),
              transform 0.65s cubic-bezier(0.16,1,0.3,1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for grid children */
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }

/* Nav scroll shadow */
nav.scrolled { box-shadow: 0 1px 12px rgba(0,0,0,0.07); }
