/* ========== RESET & BASE ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #ffffff;
  color: #111111;
  line-height: 1.5;
}
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea { font-family: inherit; }
img { display: block; max-width: 100%; }
table { border-collapse: collapse; }

/* ========== TOKENS ========== */
:root {
  --accent: #1B4332;
  --accent-light: #2D6A4F;
  --accent-mint: #52B788;
  --text-dark: #111111;
  --text-mid: #555555;
  --text-muted: #888888;
  --text-light: #AAAAAA;
  --text-faint: #BBBBBB;
  --text-pale: #CCCCCC;
  --border: #EBEBEB;
  --border-light: #F0F0F0;
  --border-softest: #F5F5F4;
  --bg-off: #FAFAF8;
  --red: #C0392B;
  --green: #1B7A3D;
  --max-w: 1200px;
  --radius-sm: 2px;
}

/* ========== UTILITIES ========== */
.container { max-width: var(--max-w); margin: 0 auto; }
.page { display: none; }
.page.active { display: block; }

/* Scroll Reveal Framework */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1s cubic-bezier(0.2, 0, 0, 1), 
              transform 1s cubic-bezier(0.2, 0, 0, 1);
  will-change: opacity, transform;
}
.reveal.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== NAV ========== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background .3s, box-shadow .3s;
}
.nav.scrolled {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(4px);
  box-shadow: 0 1px 0 rgba(0,0,0,.04);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 48px; display: flex; align-items: center; justify-content: space-between; height: 72px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-circle {
  width: 32px; height: 32px; border-radius: 50%; background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 13px; font-weight: 700;
}
.nav-logo-text { font-size: 17px; font-weight: 300; letter-spacing: -.03em; color: var(--text-dark); }
.nav-logo-text b { font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 40px; }
.nav-link {
  font-size: 13px; text-transform: uppercase; letter-spacing: .1em;
  color: var(--text-muted); transition: color .2s; background: none; border: none;
}
.nav-link:hover, .nav-link.active { color: var(--text-dark); }
.nav-link.active { font-weight: 500; }
.nav-hamburger { display: none; color: var(--text-dark); background: none; border: none; }
.nav-hamburger svg { width: 20px; height: 20px; }
.nav-mobile {
  display: none; background: #fff; padding: 32px;
  flex-direction: column; gap: 24px; border-top: 1px solid var(--border-light);
}
.nav-mobile.open { display: flex; }
.nav-mobile .nav-link { text-align: left; font-size: 14px; }

/* ========== SECTION LABEL ========== */
.section-label {
  display: flex; align-items: center; gap: 12px; margin-bottom: 24px;
}
.section-label-bar { width: 20px; height: 1.5px; background: var(--accent); }
.section-label-bar.light { background: var(--accent-light); }
.section-label-text {
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: .14em; color: var(--accent);
}
.section-label-text.light { color: var(--accent-light); }

/* ========== ICON CONTAINERS ========== */
.icon-box {
  width: 44px; height: 44px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.icon-box svg { width: 20px; height: 20px; }
.icon-box-sm { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.icon-box-sm svg { width: 16px; height: 16px; }

/* ========== HERO (HOME) ========== */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center;
  padding: 0 48px; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, #fff, rgba(255,255,255,.95), rgba(255,255,255,.7));
}
.hero-content { position: relative; max-width: var(--max-w); margin: 0 auto; width: 100%; padding: 128px 0; }
.hero-inner { max-width: 640px; }
.hero-tag { display: flex; align-items: center; gap: 10px; margin-bottom: 32px; }
.hero-tag-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.hero-tag-text { color: var(--accent); font-size: 13px; font-weight: 500; letter-spacing: .02em; }
.hero h1 {
  font-size: 62px; font-weight: 300; line-height: 1.05;
  letter-spacing: -.04em; color: var(--text-dark);
}
.hero h1 span { font-weight: 600; }
.hero-desc {
  margin-top: 32px; color: #666; font-size: 18px; line-height: 1.7;
  letter-spacing: -.01em; max-width: 480px;
}
.hero-actions { margin-top: 40px; display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }

/* ========== BUTTONS ========== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--accent); color: #fff; font-size: 14px; font-weight: 500;
  padding: 16px 32px; border-radius: var(--radius-sm); transition: background .2s;
}
.btn-primary:hover { background: var(--accent-light); }
.btn-primary svg { width: 16px; height: 16px; transition: transform .2s; }
.btn-primary:hover svg { transform: translateX(2px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--text-muted); font-size: 14px; transition: color .2s;
}
.btn-ghost:hover { color: var(--text-dark); }
.btn-ghost svg { width: 16px; height: 16px; }
.btn-white {
  display: inline-flex; align-items: center; gap: 12px;
  background: #fff; color: var(--accent); font-size: 14px; font-weight: 600;
  padding: 16px 32px; border-radius: var(--radius-sm); transition: background .2s;
}
.btn-white:hover { background: #F0FFF4; }
.btn-white svg { width: 16px; height: 16px; transition: transform .2s; }
.btn-white:hover svg { transform: translateX(2px); }
.btn-submit {
  width: 100%; display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  background: var(--accent); color: #fff; font-size: 14px; font-weight: 600;
  padding: 16px; border-radius: var(--radius-sm); transition: background .2s; border: none;
}
.btn-submit:hover { background: var(--accent-light); }
.btn-submit svg { width: 16px; height: 16px; transition: transform .2s; }
.btn-submit:hover svg { transform: translateX(2px); }

/* ========== WHAT WE DO ========== */
.what-we-do { padding: 96px 48px; }
.what-we-do h2 { font-size: 40px; font-weight: 300; letter-spacing: -.03em; margin-bottom: 64px; color: var(--text-dark); }
.what-we-do h2 span { font-weight: 600; }
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.pillar-card {
  padding: 32px; border-radius: var(--radius-sm);
  border: 1px solid var(--border-light); transition: all .3s;
}
.pillar-card:hover { border-color: rgba(27,67,50,.2); background: #FAFDF9; }
.pillar-card .icon-box { background: rgba(27,67,50,.05); margin-bottom: 24px; }
.pillar-card .icon-box svg { color: var(--accent); stroke: var(--accent); }
.pillar-card h3 { font-size: 17px; font-weight: 600; line-height: 1.35; letter-spacing: -.01em; color: var(--text-dark); }
.pillar-card p { margin-top: 12px; color: var(--text-muted); font-size: 14px; line-height: 1.7; }

/* ========== SAMPLE OUTPUT ========== */
.sample-output { padding: 96px 48px; background: var(--bg-off); }
.sample-inner { max-width: 960px; margin: 0 auto; }
.sample-header { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 48px; }
.sample-header h2 { font-size: 40px; font-weight: 300; letter-spacing: -.03em; color: var(--text-dark); }
.sample-header h2 span { font-weight: 600; }
.sample-header p { margin-top: 12px; color: var(--text-muted); font-size: 15px; line-height: 1.6; max-width: 420px; }
.sample-badge {
  display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 500;
  color: var(--accent); background: rgba(27,67,50,.05);
  padding: 6px 14px; border-radius: 9999px; align-self: flex-start;
}
.sample-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.table-wrap {
  background: #fff; border: 1px solid #E5E5E3; border-radius: var(--radius-sm);
  box-shadow: 0 2px 12px rgba(0,0,0,.04); overflow: hidden;
}
.table-titlebar {
  padding: 16px 24px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.table-dots { display: flex; gap: 6px; }
.table-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--border); }
.table-title { font-size: 12px; color: var(--text-faint); font-family: monospace; letter-spacing: .02em; margin-left: 16px; }
.table-scroll { overflow-x: auto; }
.table-scroll table { width: 100%; text-align: left; }
.table-scroll thead tr { background: var(--bg-off); }
.table-scroll th {
  padding: 16px 24px; font-size: 11px; color: #999; font-weight: 600;
  text-transform: uppercase; letter-spacing: .08em; border-bottom: 1px solid var(--border-light);
}
.table-scroll td { padding: 16px 24px; font-size: 14px; color: var(--text-dark); }
.table-scroll td.mono { font-family: monospace; }
.table-scroll td.change { font-size: 13px; font-family: monospace; font-weight: 500; }
.table-scroll td.signal { font-size: 13px; color: var(--text-muted); }
.table-scroll tbody tr { transition: background .15s; }
.table-scroll tbody tr:hover { background: var(--bg-off); }
.table-scroll tbody tr:not(:last-child) td { border-bottom: 1px solid var(--border-softest); }
.change-up { color: var(--red); }
.change-down { color: var(--green); }
.change-flat { color: var(--text-pale); }

/* ========== HOW IT WORKS ========== */
.how-it-works { padding: 96px 48px; }
.how-it-works h2 { font-size: 40px; font-weight: 300; letter-spacing: -.03em; margin-bottom: 64px; color: var(--text-dark); }
.how-it-works h2 span { font-weight: 600; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.step-card { padding: 0; }
.step-card:not(:first-child) { border-left: 1px solid var(--border); padding-left: 32px; }
.step-number { font-size: 40px; font-weight: 200; color: rgba(27,67,50,.1); line-height: 1; }
.step-detail { font-size: 10px; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: .12em; margin-top: 12px; margin-bottom: 8px; }
.step-text { color: #444; font-size: 15px; line-height: 1.6; letter-spacing: -.01em; padding-right: 16px; }

/* ========== WHO THIS IS FOR ========== */
.audience { position: relative; padding: 112px 48px; overflow: hidden; }
.audience-bg { position: absolute; inset: 0; }
.audience-bg img { width: 100%; height: 100%; object-fit: cover; }
.audience-bg .overlay { position: absolute; inset: 0; background: rgba(17,17,17,.9); }
.audience-content { position: relative; max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.audience h2 { color: #fff; font-size: 40px; font-weight: 300; letter-spacing: -.03em; }
.audience h2 span { font-weight: 600; }
.audience-list { display: flex; flex-direction: column; justify-content: center; }
.audience-item { display: flex; align-items: center; gap: 16px; padding: 20px 0; }
.audience-item:not(:first-child) { border-top: 1px solid rgba(255,255,255,.1); }
.audience-item .icon-box-sm { background: rgba(255,255,255,.1); }
.audience-item .icon-box-sm svg { color: var(--accent-mint); stroke: var(--accent-mint); }
.audience-item span { color: rgba(255,255,255,.9); font-size: 16px; letter-spacing: -.01em; }

/* ========== BOTTOM CTA ========== */
.cta-bottom { padding: 112px 48px; background: var(--accent); text-align: center; }
.cta-inner { max-width: 640px; margin: 0 auto; }
.cta-bottom .label { color: var(--accent-mint); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .14em; margin-bottom: 24px; }
.cta-bottom h2 { color: #fff; font-size: 44px; font-weight: 300; letter-spacing: -.03em; line-height: 1.1; }
.cta-bottom h2 span { font-weight: 600; }
.cta-bottom p { margin-top: 20px; color: rgba(255,255,255,.5); font-size: 16px; line-height: 1.65; letter-spacing: -.01em; }
.cta-bottom .btn-white { margin-top: 40px; }

/* ========== ABOUT PAGE ========== */
.about-hero { position: relative; padding: 144px 48px 80px; overflow: hidden; }
.about-hero-bg { position: absolute; top: 0; right: 0; width: 50%; height: 100%; }
.about-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.about-hero-bg .overlay { position: absolute; inset: 0; background: linear-gradient(to right, #fff, rgba(255,255,255,.8), transparent); }
.about-hero-content { position: relative; max-width: var(--max-w); margin: 0 auto; }
.about-hero-inner { max-width: 560px; }
.about-hero h1 { font-size: 52px; font-weight: 300; line-height: 1.05; letter-spacing: -.04em; color: var(--text-dark); }
.about-hero h1 span { font-weight: 600; }
.about-role { margin-top: 12px; color: var(--accent); font-size: 14px; font-weight: 500; letter-spacing: -.01em; }
.about-sub { color: var(--text-light); font-size: 13px; }
.about-bio { margin-top: 40px; }
.about-bio p { color: var(--text-mid); font-size: 16px; line-height: 1.8; }
.about-bio p + p { margin-top: 20px; }

/* Signature Style */
.about-signature {
  margin-top: 48px;
  max-width: 180px;
  opacity: 1;
}
.about-signature svg { width: 100%; height: auto; }

/* Philosophy Style */
.about-philosophy {
  margin-top: 56px;
  padding: 32px 0;
  border-top: 1px solid var(--border);
}
.philosophy-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--text-light); margin-bottom: 12px; }
.philosophy-text { font-size: 24px; font-weight: 300; line-height: 1.4; color: var(--accent); letter-spacing: -.02em; }


/* Portrait Image Styles */
.about-portrait-container {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 380px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,.12);
  border: 4px solid #fff;
  z-index: 10;
  animation: portraitFloat 6s ease-in-out infinite;
}
.about-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@keyframes portraitFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@media (max-width: 1024px) {
  .about-portrait-container { width: 260px; height: 320px; }
}

@media (max-width: 880px) {
  .about-portrait-container { display: none; } /* Hide on smaller screens to keep bio readable */
}

.about-body { padding: 0 48px; }
.about-body-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 7fr 1fr 4fr; }
.about-main { grid-column: 1; }
.about-sidebar { grid-column: 3; }

.about-section { 
  padding: 56px 0; border-top: 1px solid var(--border); 
  position: relative;
}
.about-section h2 { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 32px; color: var(--text-dark); }
.about-section p { color: var(--text-mid); font-size: 16px; line-height: 1.8; }
.about-section p + p { margin-top: 20px; }

.exp-list-item { 
  display: flex; align-items: flex-start; gap: 16px; 
  padding: 16px 0; 
  position: relative;
}
.exp-list-item:not(:first-child) { border-top: 1px solid var(--border-softest); }
.exp-dot { 
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent); 
  margin-top: 8px; flex-shrink: 0; position: relative; z-index: 2;
}
/* Timeline Line */
.exp-list-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 24px;
  left: 2.5px;
  bottom: -16px;
  width: 1px;
  background: var(--border);
  z-index: 1;
}
.exp-list-item span { color: var(--text-mid); font-size: 15px; line-height: 1.65; }

.about-quote { padding: 56px 0; border-top: 1px solid var(--border); }
.about-quote-inner { padding-left: 20px; border-left: 2px solid rgba(27,67,50,.2); }
.about-quote-inner p { color: var(--text-light); font-size: 14px; line-height: 1.75; font-style: italic; }

.sidebar-card {
  position: sticky; top: 96px; margin-top: 56px;
  background: var(--bg-off); border: 1px solid var(--border-light); border-radius: var(--radius-sm); padding: 32px;
}
.sidebar-card-title { font-size: 11px; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 24px; }
.sidebar-item { padding: 16px 0; }
.sidebar-item:not(:first-child) { border-top: 1px solid var(--border); }
.sidebar-item-label { font-size: 11px; color: var(--text-faint); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px; }
.sidebar-item-value { font-size: 14px; color: #333; line-height: 1.5; }

/* ========== PROJECTS PAGE ========== */
.projects-page { padding: 144px 48px 96px; }
.projects-page h1 { font-size: 48px; font-weight: 300; line-height: 1.05; letter-spacing: -.04em; color: var(--text-dark); margin-bottom: 12px; }
.projects-page h1 span { font-weight: 600; }
.projects-page > .container > .sub { color: var(--text-light); font-size: 15px; margin-bottom: 80px; max-width: 420px; }

.project-card { padding: 56px 0; }
.project-card:not(:first-child) { border-top: 1px solid var(--border); }
.project-grid { display: grid; grid-template-columns: 4fr 8fr; gap: 32px; }
.project-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: .1em;
  background: rgba(27,67,50,.05); padding: 6px 12px; border-radius: var(--radius-sm); margin-bottom: 20px;
}
.project-tag-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--accent); }
.project-card h2 { font-size: 26px; font-weight: 600; letter-spacing: -.02em; line-height: 1.2; color: var(--text-dark); }
.project-details { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.project-detail-card { padding: 20px; background: var(--bg-off); border-radius: var(--radius-sm); }
.project-detail-card.outcome { background: rgba(27,67,50,.05); border: 1px solid rgba(27,67,50,.1); }
.project-detail-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 12px; color: var(--text-faint); }
.project-detail-card.outcome .project-detail-label { color: var(--accent); }
.project-detail-text { font-size: 14px; line-height: 1.7; color: #666; }
.project-detail-card.outcome .project-detail-text { color: #333; font-weight: 500; }

/* ========== CONTACT PAGE ========== */
.contact-page { position: relative; padding: 144px 48px 96px; overflow: hidden; }

.contact-bg-svg {
  position: absolute;
  top: 50%;
  left: -10%;
  width: 1000px;
  height: 1000px;
  transform: translateY(-50%);
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
  animation: svgSlowRotate 120s linear infinite;
}

@keyframes svgSlowRotate {
  from { transform: translateY(-50%) rotate(0deg); }
  to { transform: translateY(-50%) rotate(360deg); }
}

@media (max-width: 1024px) {
  .contact-bg-svg { width: 700px; height: 700px; left: -20%; }
}

@media (max-width: 880px) {
  .contact-bg-svg { display: none; } /* Keeping mobile focused and clean */
}

.contact-grid { position: relative; z-index: 10; max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 5fr 1fr 6fr; gap: 0; }
.contact-left { grid-column: 1; }
.contact-right { grid-column: 3; }
.contact-page h1 { font-size: 48px; font-weight: 300; line-height: 1.05; letter-spacing: -.04em; color: var(--text-dark); }
.contact-page h1 span { font-weight: 600; }
.contact-desc { margin-top: 24px; color: var(--text-muted); font-size: 16px; line-height: 1.7; }
.contact-email-block { margin-top: 56px; padding-top: 40px; border-top: 1px solid var(--border); }
.contact-email-row { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.contact-email-row .icon-box { background: rgba(27,67,50,.05); }
.contact-email-row .icon-box svg { color: var(--accent); stroke: var(--accent); }
.contact-email-label { font-size: 11px; font-weight: 600; color: var(--text-faint); text-transform: uppercase; letter-spacing: .1em; }
.contact-email-link { font-size: 15px; color: var(--text-dark); transition: color .2s; }
.contact-email-link:hover { color: var(--accent); }
.contact-response { color: var(--text-faint); font-size: 13px; margin-top: 24px; }

.form-card { background: var(--bg-off); border: 1px solid var(--border-light); border-radius: var(--radius-sm); padding: 40px; }
.form-card-title { font-size: 13px; font-weight: 600; color: var(--text-dark); margin-bottom: 32px; }
.form-group { margin-bottom: 28px; }
.form-group label {
  display: block; font-size: 11px; font-weight: 600; color: var(--text-light);
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: 10px;
}
.form-group input, .form-group textarea {
  width: 100%; padding: 12px 16px; font-size: 15px; color: var(--text-dark);
  background: #fff; border: 1px solid #E5E5E3; border-radius: var(--radius-sm);
  outline: none; transition: border-color .2s;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-pale); }
.form-group input:focus, .form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { resize: none; }

.form-success { text-align: center; padding: 80px 0; }
.form-success-icon {
  width: 56px; height: 56px; border-radius: 50%; background: rgba(27,67,50,.1);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
}
.form-success-icon svg { width: 20px; height: 20px; color: var(--accent); stroke: var(--accent); }
.form-success h3 { font-size: 20px; font-weight: 600; letter-spacing: -.02em; margin-bottom: 8px; }
.form-success p { color: var(--text-muted); font-size: 15px; }

/* ========== FOOTER ========== */
.footer { border-top: 1px solid var(--border); padding: 64px 48px; }
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 32px;
}
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-logo {
  width: 28px; height: 28px; border-radius: 50%; background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 10px; font-weight: 700;
}
.footer-name { font-size: 15px; font-weight: 300; letter-spacing: -.02em; color: var(--text-dark); }
.footer-name b { font-weight: 600; }
.footer-role { font-size: 11px; color: var(--text-light); }
.footer-right { display: flex; flex-wrap: wrap; align-items: center; gap: 40px; }
.footer-email { font-size: 13px; color: var(--text-mid); transition: color .2s; }
.footer-email:hover { color: var(--accent); }
.footer-copy { font-size: 12px; color: var(--text-pale); }

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .nav-inner { padding: 0 32px; }
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  .hero { padding: 0 32px; }
  .hero h1 { font-size: 46px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .what-we-do, .sample-output, .how-it-works, .audience, .cta-bottom,
  .about-hero, .about-body, .projects-page, .contact-page, .footer { padding-left: 32px; padding-right: 32px; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-card:not(:first-child) { border-left: none; border-top: 1px solid var(--border); padding-left: 0; padding-top: 32px; }
  .step-card { padding-bottom: 32px; }
  .audience-content { grid-template-columns: 1fr; }
  .cta-bottom h2 { font-size: 32px; }
  .about-hero h1 { font-size: 40px; }
  .about-hero-bg { display: none; }
  .about-body-inner { grid-template-columns: 1fr; }
  .about-sidebar { grid-column: 1; }
  .about-main { grid-column: 1; }
  .project-grid { grid-template-columns: 1fr; }
  .project-details { grid-template-columns: 1fr; }
  .projects-page h1 { font-size: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-right { grid-column: 1; }
  .contact-left { grid-column: 1; }
  .contact-page h1 { font-size: 40px; }
}
