:root {
  --bg: #FAFAF7;
  --bg-alt: #F0EDE6;
  --bg-dark: #1C1C1A;
  --bg-mid: #242421;
  --text: #1C1C1A;
  --text-light: #6B6860;
  --text-inv: #FAFAF7;
  --accent: #B0583A;
  --accent-light: #D4896E;
  --accent-bg: #FDF5F1;
  --border: #D8D4CC;
  --card-bg: #FFFFFF;
  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'DM Sans', -apple-system, sans-serif;
  --max-w: 1120px;
  --section-pad: 100px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--text); background: var(--bg); -webkit-font-smoothing: antialiased; line-height: 1.6; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250,250,247,0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
nav .nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 18px 32px;
  display: flex; align-items: center; justify-content: space-between;
}
nav .logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
nav .logo img {
  height: 36px;
  width: auto;
  display: block;
}
nav .nav-links { display: flex; gap: 32px; align-items: center; }
nav .nav-links a { font-size: 14px; font-weight: 500; color: var(--text-light); text-decoration: none; transition: color 0.2s; }
nav .nav-links a:hover { color: var(--accent); }
nav .nav-links .cta-link { background: var(--accent); color: var(--text-inv); padding: 10px 24px; border-radius: 50px; font-weight: 700; font-size: 13px; letter-spacing: 0.3px; transition: background 0.2s; }
nav .nav-links .cta-link:hover { background: var(--accent-light); color: var(--text-inv); }

/* HERO */
.hero {
  padding: 160px 32px var(--section-pad);
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-text .tag {
  display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 20px;
}
.hero-text h1 {
  font-family: var(--serif); font-size: 52px; line-height: 1.12; letter-spacing: -1px;
  margin-bottom: 24px;
}
.hero-text h1 em { font-style: italic; color: var(--accent); }
.hero-text > p:not(.hero-note) {
  font-size: 18px;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 16px;
  max-width: 520px;
}
.hero-text .hero-note {
  font-size: 15px;
  color: #8A8680;
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 32px;
}
.hero-text .hero-cta {
  display: inline-block; background: var(--accent); color: var(--text-inv);
  padding: 16px 36px; border-radius: 50px; font-weight: 700; font-size: 15px;
  text-decoration: none; letter-spacing: 0.3px; transition: background 0.2s;
}
.hero-text .hero-cta:hover { background: var(--accent-light); }
.hero-image {
  background: transparent;
  border-radius: 24px;
  aspect-ratio: 4/3;
  overflow: hidden;
  border: 0;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* SECTIONS */
section { padding: var(--section-pad) 32px; }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-tag { font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.section-title { font-family: var(--serif); font-size: 40px; line-height: 1.15; margin-bottom: 20px; letter-spacing: -0.5px; }
.section-subtitle { font-size: 17px; color: var(--text-light); line-height: 1.65; max-width: 600px; margin-bottom: 48px; }

/* WHAT I DO */
.what-i-do { background: var(--bg); }
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.service-card {
  background: var(--card-bg); border: 1px solid var(--border); border-radius: 20px; padding: 40px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.06); }
.service-card .card-icon {
  width: 56px; height: 56px; border-radius: 14px; background: var(--accent-bg);
  display: flex; align-items: center; justify-content: center; margin-bottom: 24px;
  font-size: 24px; color: var(--accent);
}
.service-card h3 { font-family: var(--serif); font-size: 22px; margin-bottom: 12px; }
.service-card p { font-size: 15px; color: var(--text-light); line-height: 1.6; }
.services-grid.cols-3 { grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* CREDIBILITY (dark split) */
.credibility-band {
  background: var(--bg-dark);
  color: var(--text-inv);
  padding: 88px 32px;
}
.credibility-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.credibility-title {
  font-family: var(--serif);
  font-size: 36px;
  line-height: 1.18;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.credibility-title em { font-style: italic; color: var(--accent-light); }
.credibility-col p {
  font-size: 15px;
  color: rgba(250, 250, 247, 0.62);
  line-height: 1.7;
  margin-bottom: 14px;
}
.credibility-highlight {
  font-size: 16px;
  color: rgba(250, 250, 247, 0.88);
  font-weight: 500;
  margin-top: 20px;
}

/* SCOPE STRIP */
.scope-strip {
  background: var(--accent);
  color: var(--text-inv);
  padding: 48px 32px;
  text-align: center;
}
.scope-inner { max-width: var(--max-w); margin: 0 auto; }
.scope-title {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 12px;
  font-weight: 400;
}
.scope-desc {
  font-size: 16px;
  opacity: 0.88;
  max-width: 640px;
  margin: 0 auto 22px;
  line-height: 1.65;
}
.scope-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.scope-pill {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
}

/* AUDIENCE */
.who-with { background: var(--bg); }

/* PILLARS */
.pillars-section { background: var(--bg-alt); }
.pillar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.pillar-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.pillar-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}
.pillar-num {
  font-family: var(--serif);
  font-size: 36px;
  color: var(--accent);
  opacity: 0.28;
  line-height: 1;
  margin-bottom: 8px;
}
.pillar-card h3 { font-family: var(--serif); font-size: 20px; margin-bottom: 6px; }
.pillar-line {
  font-size: 14px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.45;
}
.pillar-card p:last-child { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* ENGAGEMENT CARDS */
.engagement-section { background: var(--bg); }
.eng-card {
  position: relative;
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px 32px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.eng-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}
.eng-watermark {
  font-family: var(--serif);
  font-size: 64px;
  color: var(--accent);
  opacity: 0.08;
  position: absolute;
  top: -6px;
  right: 14px;
  line-height: 1;
  pointer-events: none;
}
.eng-card h3 { font-family: var(--serif); font-size: 22px; margin-bottom: 12px; position: relative; }
.eng-card p { font-size: 15px; color: var(--text-light); line-height: 1.6; position: relative; }

/* ASYNC BAND */
.async-band {
  background: var(--bg-mid);
  color: var(--text-inv);
  padding: 72px 32px;
}
.async-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.async-title {
  font-family: var(--serif);
  font-size: 28px;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.async-inner p {
  font-size: 15px;
  color: rgba(250, 250, 247, 0.62);
  line-height: 1.7;
  margin-bottom: 14px;
}

/* METHODS */
.methods-band {
  background: var(--bg-alt);
  padding: 56px 32px;
  text-align: center;
}
.methods-inner .section-tag { margin-bottom: 20px; }
.meth-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 18px;
}
.meth-pill {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 9px 22px;
  font-size: 13px;
  font-weight: 600;
}
.meth-desc {
  font-size: 15px;
  color: var(--text-light);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.65;
}

/* PRINCIPLES */
.principles-section {
  background: var(--bg-dark);
  color: var(--text-inv);
  padding: var(--section-pad) 32px;
}
.principles-section .principles-tag { color: var(--accent-light); }
.principles-section .principles-title { color: var(--text-inv); }
.prin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
}
.prin-item {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.prin-item h3 {
  font-family: var(--serif);
  font-size: 19px;
  margin-bottom: 8px;
  color: var(--text-inv);
}
.prin-item p {
  font-size: 14px;
  color: rgba(250, 250, 247, 0.52);
  line-height: 1.65;
}

/* INDUSTRIES DEEP */
.industries-deep { background: var(--bg); }
.industry-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.industry-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.industry-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}
.industry-card h3 {
  font-family: var(--serif);
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--accent);
}
.industry-card p { font-size: 14px; color: var(--text-light); line-height: 1.55; }

/* INDUSTRIES */
.industries { background: var(--bg-alt); display: flex; justify-content: center; }
.industries .section-inner { text-align: center; }
.industry-pills { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.industries .industry-pills { justify-content: center; }
.industry-pill {
  background: var(--card-bg); border: 1px solid var(--border); border-radius: 50px;
  padding: 12px 28px; font-size: 15px; font-weight: 500; color: var(--text);
}
.industries-desc { font-size: 16px; color: var(--text-light); line-height: 1.65; max-width: 680px; margin-left: auto; margin-right: auto; }

/* TRACK RECORD */
.track-record { background: var(--bg); }
.track-record .track-record-lead { margin-bottom: 40px; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 48px; }
.stat-card { text-align: center; padding: 32px 16px; }
.stat-card .stat-number { font-family: var(--serif); font-size: 48px; color: var(--accent); margin-bottom: 8px; }
.stat-card .stat-label { font-size: 14px; color: var(--text-light); }
.track-logos {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.track-logo {
  background: transparent;
  border-radius: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  height: 90px;
  border: 0;
}
.track-logo img {
  max-height: 72px;
  width: auto;
  max-width: 220px;
  display: block;
}

/* WHO I AM */
.who-i-am { background: var(--bg-alt); }
.who-grid { display: grid; grid-template-columns: 450px 1fr; gap: 48px; align-items: start; }
.who-image {
  width: 450px;
  aspect-ratio: 3 / 4;
  border-radius: 50% / 38%;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card-bg);
}
.who-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.who-text { max-width: 760px; }
.who-text h2 { font-family: var(--serif); font-size: 36px; margin-bottom: 20px; letter-spacing: -0.5px; }
.who-text p { font-size: 16px; color: var(--text-light); line-height: 1.7; margin-bottom: 16px; }
.credential-list { list-style: none; margin-top: 24px; }
.credential-list li {
  padding: 12px 0; border-bottom: 1px solid var(--border);
  font-size: 15px; color: var(--text); display: flex; align-items: baseline; gap: 12px;
}
.credential-list li::before { content: '→'; color: var(--accent); font-weight: 700; }

/* CTA */
.final-cta {
  background: var(--bg-dark); color: var(--text-inv); text-align: center;
  padding: 100px 32px;
}
.final-cta h2 { font-family: var(--serif); font-size: 44px; margin-bottom: 20px; letter-spacing: -0.5px; }
.final-cta h2 em { font-style: italic; color: var(--accent-light); }
.final-cta p { font-size: 17px; color: rgba(250,250,247,0.6); margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; line-height: 1.65; }
.final-cta p:not(.contact-note) { margin-bottom: 20px; }
.final-cta .cta-mail {
  margin: -8px auto 28px;
  font-size: 17px;
}
.final-cta .cta-mail a {
  color: var(--accent-light);
  font-weight: 700;
  text-decoration: none;
}
.final-cta .cta-mail a:hover { text-decoration: underline; }
.contact-form {
  max-width: 560px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  font: inherit;
  color: var(--text-inv);
  background: rgba(250,250,247,0.06);
  border: 1px solid rgba(250,250,247,0.22);
  border-radius: 12px;
  padding: 14px 16px;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(250,250,247,0.5);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent-light);
  box-shadow: 0 0 0 2px rgba(212, 137, 110, 0.25);
}
.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}
.consent-row {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  text-align: left;
  font-size: 14px;
  color: rgba(250,250,247,0.85);
}
.consent-row input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
}
.consent-row a {
  color: var(--accent-light);
}
.contact-form button {
  justify-self: center;
  display: inline-block;
  background: var(--accent);
  color: var(--text-inv);
  padding: 16px 40px;
  border-radius: 50px;
  border: 0;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s;
}
.contact-form button:hover { background: var(--accent-light); }
.contact-note {
  margin-top: 4px;
  font-size: 13px;
  color: rgba(250,250,247,0.55);
}

/* FOOTER */
footer {
  background: var(--bg-dark); border-top: 1px solid rgba(255,255,255,0.08);
  padding: 32px; text-align: center; font-size: 13px; color: rgba(250,250,247,0.35);
}
footer a,
footer button {
  color: rgba(250,250,247,0.8);
}
footer button {
  background: transparent;
  border: 0;
  text-decoration: underline;
  cursor: pointer;
  font: inherit;
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 99999;
  background: #242421;
  color: var(--text-inv);
  border: 1px solid rgba(250,250,247,0.15);
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
}
.cookie-banner p {
  margin: 0 0 14px 0;
  color: rgba(250,250,247,0.85);
  font-size: 14px;
}
.cookie-banner a {
  color: var(--accent-light);
}
.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-banner-actions button {
  background: var(--accent);
  color: var(--text-inv);
  border: 0;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
}
.cookie-banner-actions button.secondary {
  background: transparent;
  border: 1px solid rgba(250,250,247,0.35);
}

/* LEGAL PAGE */
.legal-page {
  padding: 120px 24px 64px;
}
.legal-inner {
  max-width: 760px;
  margin: 0 auto;
}
.legal-back {
  margin-bottom: 18px;
}
.legal-back a {
  color: var(--accent);
  text-decoration: none;
}
.legal-page h1 {
  font-family: var(--serif);
  font-size: 44px;
  line-height: 1.2;
  margin-bottom: 16px;
}
.legal-page h2 {
  font-family: var(--serif);
  font-size: 28px;
  margin: 34px 0 10px;
}
.legal-page p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; padding: 108px 20px 24px; gap: 24px; }
  .hero + section { padding-top: 28px; }
  section { padding: 72px 20px; }
  .credibility-inner,
  .async-inner,
  .pillar-grid,
  .prin-grid,
  .services-grid.cols-3,
  .industry-cards {
    grid-template-columns: 1fr;
  }
  .credibility-band { padding: 64px 20px; }
  .credibility-title { font-size: 28px; }
  .scope-title { font-size: 22px; }
  .scope-strip { padding: 40px 20px; }
  .async-band { padding: 56px 20px; }
  .methods-band { padding: 44px 20px; }
  .hero-text h1 { font-size: 36px; }
  .hero-image { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  nav .nav-inner { padding: 12px 16px; }
  nav .logo img { height: 28px; width: auto; }
  nav .nav-links { gap: 10px; }
  nav .nav-links .cta-link { padding: 8px 14px; font-size: 12px; white-space: nowrap; }
  .who-grid { grid-template-columns: 1fr; }
  .who-image {
    width: min(260px, 78vw);
    margin: 0 auto;
  }
  .section-title { font-size: 32px; }
  .final-cta h2 { font-size: 32px; }
  nav .nav-links a:not(.cta-link) { display: none; }
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 16px;
  }
  .legal-page {
    padding-top: 96px;
  }
  .legal-page h1 {
    font-size: 34px;
  }
  .legal-page h2 {
    font-size: 24px;
  }
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-text, .hero-image { animation: fadeUp 0.7s ease-out both; }
.hero-image { animation-delay: 0.15s; }
