/* Self-hosted fonts — no external dependency */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/cg-cormorant-garamond-latin-300-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/cg-cormorant-garamond-latin-300-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/cg-cormorant-garamond-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/cg-cormorant-garamond-latin-400-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/cg-cormorant-garamond-latin-600-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/cg-cormorant-garamond-latin-700-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/inter-inter-latin-300-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/inter-inter-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/inter-inter-latin-500-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/inter-inter-latin-600-normal.woff2') format('woff2');
}

/* ── Tokens ── */
:root {
  --navy:     #1A1A2E;
  --teal:     #3D9B9A;
  --teal-lt:  #7ECFCE;
  --white:    #FFFFFF;
  --off:      #F8F8F6;
  --border:   #E4E4E0;
  --slate:    #6B6B78;
  --mid:      #9A9AA8;
  --dark:     #111120;
  --display:  'Cormorant Garamond', Georgia, serif;
  --body:     'Inter', system-ui, sans-serif;
  --max:      1200px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--body); font-size: 16px; line-height: 1.7; color: var(--navy); background: #fff; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Arch lines background ── */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(rgba(26,26,46,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,26,46,0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
  z-index: 0;
}

/* ── Nav ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 0.5px solid var(--border);
  padding: 0 48px; height: 72px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { font-family: var(--display); font-size: 20px; font-weight: 600; color: var(--navy); letter-spacing: 0.01em; }
.nav-logo span { color: var(--teal); }
.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a { font-size: 11px; font-weight: 500; color: var(--slate); letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover { color: var(--teal); }
.nav-cta { background: var(--teal); color: #fff; padding: 10px 24px; font-size: 11px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; transition: background 0.2s; }
.nav-cta:hover { background: #2D7B7A; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--navy); transition: 0.3s; }

/* ── Hero ── */
.hero {
  position: relative; z-index: 1;
  padding: 120px 48px 80px;
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: 64px; align-items: center;
  min-height: auto; background: #fff;
  max-width: 1400px; margin: 0 auto;
}
.hero-kicker { font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--teal); margin-bottom: 20px; }
.hero-h1 { font-family: var(--display); font-size: 52px; font-weight: 300; line-height: 1.04; color: var(--navy); letter-spacing: -0.02em; margin-bottom: 20px; }
.hero-h1 strong { font-weight: 700; display: block; }
.hero-rule { width: 40px; height: 2px; background: var(--teal); margin-bottom: 22px; }
.hero-statement { font-family: var(--display); font-size: 18px; font-style: italic; color: var(--navy); line-height: 1.55; margin-bottom: 8px; max-width: 400px; font-weight: 300; opacity: 0.8; }
.hero-descriptor { font-size: 10px; font-weight: 500; letter-spacing: 0.14em; color: var(--mid); text-transform: uppercase; margin-bottom: 40px; }
.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.btn-teal { background: var(--teal); color: #fff; padding: 12px 28px; font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; display: inline-block; transition: background 0.2s, transform 0.15s; }
.btn-teal:hover { background: #2D7B7A; transform: translateY(-1px); }
.btn-outline { border: 1px solid var(--navy); color: var(--navy); padding: 11px 24px; font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; display: inline-block; transition: border-color 0.2s, color 0.2s; }
.btn-outline:hover { border-color: var(--teal); color: var(--teal); }
.hero-img-wrap { position: relative; padding: 0 16px 16px 0; max-width: 420px; margin-left: auto; }
.hero-img { aspect-ratio: 3/4; width: 100%; overflow: hidden; position: relative; z-index: 1; }
.hero-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-frame { position: absolute; bottom: 0; right: 0; width: calc(100% - 6px); height: calc(100% - 6px); border: 1px solid var(--teal); opacity: 0.4; z-index: 0; pointer-events: none; }

/* ── Philosophy strip ── */
.philosophy {
  position: relative; z-index: 1;
  background: var(--navy); padding: 72px 48px;
  overflow: hidden;
}
.philosophy::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background-image: linear-gradient(rgba(126,207,206,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(126,207,206,0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}
.philosophy-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; position: relative; z-index: 1; }
.phil-label { font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--teal); margin-bottom: 20px; }
.phil-statement { font-family: var(--display); font-size: 30px; font-weight: 300; color: #fff; line-height: 1.35; }
.phil-statement strong { color: var(--teal-lt); font-weight: 600; font-style: normal; }
.phil-lines { display: flex; flex-direction: column; }
.phil-line { display: flex; gap: 16px; padding: 20px 0; border-bottom: 0.5px solid rgba(255,255,255,0.07); }
.phil-line:first-child { padding-top: 0; }
.phil-line:last-child { border-bottom: none; padding-bottom: 0; }
.phil-dot { width: 5px; height: 5px; background: var(--teal); border-radius: 50%; margin-top: 8px; flex-shrink: 0; }
.phil-text { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.7; }
.phil-text strong { color: rgba(255,255,255,0.88); font-weight: 500; }

/* ── Proof tiles ── */
.proof { position: relative; z-index: 1; background: var(--off); border-top: 0.5px solid var(--border); }
.proof-header { max-width: var(--max); margin: 0 auto; padding: 64px 48px 40px; }
.proof-kicker { font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--teal); margin-bottom: 10px; }
.proof-title { font-family: var(--display); font-size: 32px; font-weight: 300; color: var(--navy); }
.proof-grid { max-width: var(--max); margin: 0 auto; padding: 0 48px 64px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.proof-tile { background: #fff; padding: 36px 32px; border: 0.5px solid var(--border); border-top: none; position: relative; }
.proof-tile:nth-child(-n+3) { border-top: 0.5px solid var(--border); }
.proof-tile::before { content: ''; position: absolute; top: 0; left: 0; width: 40px; height: 2px; background: var(--teal); }
.proof-metric { font-family: var(--display); font-size: 36px; font-weight: 300; color: var(--navy); line-height: 1; }
.proof-metric span { color: var(--teal); }
.proof-unit { font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid); margin-top: 6px; margin-bottom: 12px; }
.proof-desc { font-size: 12px; color: var(--slate); line-height: 1.7; }

/* ── Pillars ── */
.pillars { position: relative; z-index: 1; background: #fff; padding: 96px 48px; border-top: 0.5px solid var(--border); }
.pillars-inner { max-width: var(--max); margin: 0 auto; }
.section-kicker { font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--teal); margin-bottom: 14px; }
.section-title { font-family: var(--display); font-size: 34px; font-weight: 300; color: var(--navy); letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 56px; }
.pillars-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; background: var(--border); }
.pillar { background: #fff; padding: 40px 28px; border-right: 0.5px solid var(--border); position: relative; }
.pillar:last-child { border-right: none; }
.pillar::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--border); transition: background 0.3s; }
.pillar:hover::before { background: var(--teal); }
.pillar-num { font-size: 10px; font-weight: 500; letter-spacing: 0.12em; color: var(--teal); margin-bottom: 20px; }
.pillar-title { font-family: var(--display); font-size: 17px; font-weight: 600; color: var(--navy); margin-bottom: 12px; line-height: 1.3; }
.pillar-body { font-size: 12px; color: var(--slate); line-height: 1.75; }

/* ── Services ── */
.services { position: relative; z-index: 1; background: var(--off); padding: 96px 48px; border-top: 0.5px solid var(--border); }
.services-inner { max-width: var(--max); margin: 0 auto; }
.svc-row { display: grid; grid-template-columns: 56px 1fr 1.5fr; gap: 48px; padding: 40px 0; border-top: 0.5px solid var(--border); align-items: start; }
.svc-row:last-child { border-bottom: 0.5px solid var(--border); }
.svc-num { font-size: 11px; color: #C8C8D0; font-family: var(--display); padding-top: 4px; }
.svc-name { font-family: var(--display); font-size: 22px; font-weight: 400; color: var(--navy); line-height: 1.25; }
.svc-body { font-size: 13px; color: var(--slate); line-height: 1.8; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.svc-tag { font-size: 10px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--teal); border: 0.5px solid var(--teal); padding: 3px 9px; }

/* ── Credentials ── */
.creds { position: relative; z-index: 1; background: #fff; padding: 96px 48px; border-top: 0.5px solid var(--border); }
.creds-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.creds-title { font-family: var(--display); font-size: 34px; font-weight: 300; color: var(--navy); margin-bottom: 16px; line-height: 1.2; }
.creds-body { font-size: 14px; color: var(--slate); line-height: 1.8; margin-bottom: 32px; }
.creds-quote { font-family: var(--display); font-size: 16px; font-weight: 300; font-style: italic; color: var(--navy); border-left: 2px solid var(--teal); padding-left: 20px; line-height: 1.65; }
.cred-list { display: flex; flex-direction: column; }
.cred-row { display: flex; gap: 20px; padding: 24px 0; border-bottom: 0.5px solid var(--border); align-items: flex-start; }
.cred-row:first-child { padding-top: 0; }
.cred-row:last-child { border-bottom: none; }
.cred-bar { width: 2px; height: 44px; background: var(--teal); flex-shrink: 0; margin-top: 2px; }
.cred-name { font-size: 14px; font-weight: 500; color: var(--navy); margin-bottom: 4px; }
.cred-detail { font-size: 12px; color: var(--slate); line-height: 1.6; }

/* ── Insights ── */
.insights { position: relative; z-index: 1; background: var(--off); padding: 96px 48px; border-top: 0.5px solid var(--border); }
.insights-inner { max-width: var(--max); margin: 0 auto; }
.insights-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 56px; }
.insight-card { background: #fff; padding: 40px; border: 0.5px solid var(--border); position: relative; }
.insight-card::before { content: ''; position: absolute; top: 0; left: 0; width: 44px; height: 2px; background: var(--teal); }
.insight-lesson { font-size: 10px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); margin-bottom: 18px; }
.insight-q { font-family: var(--display); font-size: 18px; font-style: italic; color: var(--navy); line-height: 1.5; margin-bottom: 28px; font-weight: 300; }
.insight-link { font-size: 11px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal); }

/* ── CTA ── */
.cta-section { position: relative; z-index: 1; background: var(--navy); padding: 96px 48px; text-align: center; overflow: hidden; }
.cta-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background-image: linear-gradient(rgba(126,207,206,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(126,207,206,0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}
.cta-inner { max-width: 640px; margin: 0 auto; position: relative; z-index: 1; }
.cta-title { font-family: var(--display); font-size: clamp(36px,4vw,52px); font-weight: 300; color: #fff; letter-spacing: -0.025em; margin-bottom: 16px; line-height: 1.1; }
.cta-title strong { font-weight: 700; color: var(--teal-lt); }
.cta-sub { font-size: 16px; color: rgba(255,255,255,0.45); margin-bottom: 48px; font-family: var(--display); font-style: italic; }
.cta-actions { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.cta-btn { background: var(--teal); color: #fff; padding: 15px 40px; font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; transition: background 0.2s; }
.cta-btn:hover { background: #2D7B7A; }
.cta-ghost { font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.38); border-bottom: 1px solid rgba(255,255,255,0.18); padding-bottom: 2px; }

/* ── Page hero (inner pages) ── */
.page-hero { position: relative; z-index: 1; background: var(--navy); padding: 120px 48px 64px; overflow: hidden; }
.page-hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background-image: linear-gradient(rgba(126,207,206,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(126,207,206,0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}
.page-hero-inner { max-width: var(--max); margin: 0 auto; position: relative; z-index: 1; }
.page-hero-kicker { font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--teal); margin-bottom: 20px; }
.page-hero-title { font-family: var(--display); font-size: clamp(36px,5vw,60px); font-weight: 300; color: #fff; line-height: 1.08; letter-spacing: -0.025em; margin-bottom: 20px; }
.page-hero-title strong { font-weight: 700; }
.page-hero-rule { width: 44px; height: 2px; background: var(--teal); margin-bottom: 20px; }
.page-hero-sub { font-size: 17px; color: rgba(255,255,255,0.55); max-width: 560px; line-height: 1.65; font-family: var(--display); font-style: italic; }

/* ── Footer ── */
.footer { background: var(--dark); padding: 64px 48px 40px; position: relative; z-index: 1; }
.footer-top { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 48px; margin-bottom: 48px; padding-bottom: 40px; border-bottom: 0.5px solid rgba(255,255,255,0.07); }
.footer-logo { font-family: var(--display); font-size: 18px; font-weight: 600; color: #fff; margin-bottom: 10px; }
.footer-logo span { color: var(--teal); }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.3); line-height: 1.7; }
.footer-col-label { font-size: 9px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.2); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; list-style: none; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.42); transition: color 0.2s; }
.footer-links a:hover { color: var(--teal); }
.footer-bottom { max-width: var(--max); margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.18); }
.footer-accent { width: 28px; height: 1px; background: var(--teal); opacity: 0.5; }

/* ── Section wrapper ── */
.section { position: relative; z-index: 1; }

/* ── Contact ── */
.contact-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: start; }
.contact-info-title { font-family: var(--display); font-size: 28px; font-weight: 300; color: var(--navy); margin-bottom: 16px; }
.contact-info-body { font-size: 14px; color: var(--slate); line-height: 1.8; margin-bottom: 32px; }
.contact-box { padding: 28px; border-left: 2px solid var(--teal); background: var(--off); margin-bottom: 16px; }
.contact-box-title { font-family: var(--display); font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.contact-box-body { font-size: 13px; color: var(--slate); line-height: 1.7; }
.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--slate); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 13px 16px; font-family: var(--body); font-size: 14px; color: var(--navy); background: #fff; border: 0.5px solid var(--border); outline: none; transition: border-color 0.2s; appearance: none; border-radius: 0; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--teal); }
.form-group textarea { min-height: 140px; resize: vertical; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.btn-submit { width: 100%; background: var(--teal); color: #fff; border: none; padding: 15px; font-family: var(--body); font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; transition: background 0.2s; }
.btn-submit:hover { background: #2D7B7A; }

/* ── About two col ── */
.about-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.about-img { width: 100%; position: sticky; top: 96px; }
.about-img img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: center top; }
.about-photo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 32px; }
.about-photo-grid img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: center top; }
.about-body { font-size: 15px; color: var(--slate); line-height: 1.85; margin-bottom: 20px; }
.about-quote { font-family: var(--display); font-size: 18px; font-weight: 300; font-style: italic; color: var(--navy); border-left: 2px solid var(--teal); padding-left: 20px; line-height: 1.6; margin: 32px 0; }

/* ── Speaking ── */
.topic-row { display: grid; grid-template-columns: 48px 1fr; gap: 32px; padding: 48px 0; border-top: 0.5px solid var(--border); }
.topic-row:last-child { border-bottom: 0.5px solid var(--border); }
.topic-icon { font-size: 24px; padding-top: 4px; }
.topic-title { font-family: var(--display); font-size: 24px; font-weight: 400; color: var(--navy); margin-bottom: 12px; }
.topic-body { font-size: 14px; color: var(--slate); line-height: 1.8; margin-bottom: 20px; max-width: 680px; }
.topic-takeaways-label { font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); margin-bottom: 10px; }
.topic-takeaways { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.topic-takeaways li { font-size: 13px; color: var(--navy); padding-left: 14px; position: relative; }
.topic-takeaways li::before { content: ''; position: absolute; left: 0; top: 9px; width: 5px; height: 1px; background: var(--teal); }

/* ── Consulting service blocks ── */
.consulting-row { display: grid; grid-template-columns: 80px 1fr; gap: 40px; padding: 64px 0; border-top: 0.5px solid var(--border); }
.consulting-row:last-child { border-bottom: 0.5px solid var(--border); }
.consulting-num { font-family: var(--display); font-size: 48px; font-weight: 300; color: var(--border); line-height: 1; padding-top: 4px; }
.consulting-title { font-family: var(--display); font-size: 28px; font-weight: 400; color: var(--navy); margin-bottom: 16px; }
.consulting-body { font-size: 14px; color: var(--slate); line-height: 1.85; margin-bottom: 24px; max-width: 680px; }

/* ── Fade animations ── */
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; padding: 120px 24px 64px; min-height: auto; }
  .hero-img-wrap { display: none; }
  .philosophy-inner { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .services-inner .svc-row { grid-template-columns: 1fr; gap: 16px; }
  .svc-num { display: none; }
  .creds-inner { grid-template-columns: 1fr; gap: 40px; }
  .insights-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img { position: static; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 72px; left: 0; right: 0; background: #fff; padding: 24px 48px; gap: 20px; border-top: 0.5px solid var(--border); }
  .nav { padding: 0 24px; }
  .proof-header, .proof-grid { padding-left: 24px; padding-right: 24px; }
  .philosophy, .proof, .pillars, .services, .creds, .insights, .cta-section, .footer { padding-left: 24px; padding-right: 24px; }
  .page-hero { padding-left: 24px; padding-right: 24px; }
}
@media (max-width: 600px) {
  .proof-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}
