/*
Theme Name: Summit Advisors
Theme URI: https://summitadvisors.ai
Author: Summit Advisors
Description: Custom theme for Summit Advisors — AI Strategy & Executive Advisory
Version: 1.0.0
License: Private
Text Domain: summit-advisors
*/

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

:root {
  --bg: #f5f2ee;
  --ink: #100f0d;
  --accent: #e8562a;
  --muted: #7a756f;
  --border: #dedad4;
  --surface: #eeebe6;
  --ink-inv: #f5f2ee;
  --dark-bg: #100f0d;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  height: 72px;
  background: rgba(245,242,238,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}
nav.scrolled { height: 60px; background: rgba(245,242,238,0.96); }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; cursor: pointer; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-family: var(--sans); font-size: 13px; font-weight: 500;
  color: var(--muted); text-decoration: none; letter-spacing: 0.04em;
  text-transform: uppercase; transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  background: var(--ink); color: var(--ink-inv);
  font-family: var(--sans); font-size: 13px; font-weight: 500;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 11px 24px; border: none; cursor: pointer;
  transition: background 0.2s;
  text-decoration: none; display: inline-block;
}
.nav-cta:hover { background: var(--accent); color: #fff; }

/* SECTIONS */
section { position: relative; }
.section-label {
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 20px;
}

/* HERO */
#hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  padding-top: 72px;
}
.hero-left {
  padding: 80px 48px;
  display: flex; flex-direction: column; justify-content: center;
  border-right: 1px solid var(--border);
}
.hero-eyebrow {
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 32px;
}
.hero-h1 {
  font-family: var(--serif); font-size: clamp(52px, 5.5vw, 88px);
  font-weight: 300; line-height: 1.04; letter-spacing: -0.01em;
  color: var(--ink); margin-bottom: 36px;
}
.hero-h1 em { font-style: italic; color: var(--accent); }
.hero-sub {
  font-family: var(--sans); font-size: 16px; font-weight: 300;
  color: var(--muted); line-height: 1.75; max-width: 440px;
  margin-bottom: 48px;
}
.hero-actions { display: flex; align-items: center; gap: 24px; }
.btn-primary {
  background: var(--ink); color: var(--ink-inv);
  font-family: var(--sans); font-size: 13px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 16px 36px; border: none; cursor: pointer;
  transition: background 0.2s; text-decoration: none; display: inline-block;
}
.btn-primary:hover { background: var(--accent); color: #fff; }
.btn-ghost {
  background: transparent; color: var(--ink);
  font-family: var(--sans); font-size: 13px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 16px 0; border: none; cursor: pointer;
  border-bottom: 1px solid var(--ink);
  transition: color 0.2s, border-color 0.2s;
  text-decoration: none; display: inline-block;
}
.btn-ghost:hover { color: var(--accent); border-color: var(--accent); }

.hero-right {
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 48px;
  background: var(--dark-bg);
  position: relative; overflow: hidden;
}
.hero-graphic {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  opacity: 0.06;
  background-image: repeating-linear-gradient(
    0deg, transparent, transparent 39px, rgba(245,242,238,0.5) 39px, rgba(245,242,238,0.5) 40px
  ),
  repeating-linear-gradient(
    90deg, transparent, transparent 39px, rgba(245,242,238,0.5) 39px, rgba(245,242,238,0.5) 40px
  );
}
.hero-peak-svg {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -58%);
  opacity: 0.12;
}
.hero-stats {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  border: 1px solid rgba(245,242,238,0.12);
}
.hero-stat {
  padding: 32px;
  border-right: 1px solid rgba(245,242,238,0.1);
  border-bottom: 1px solid rgba(245,242,238,0.1);
}
.hero-stat:nth-child(even) { border-right: none; }
.hero-stat:nth-child(n+3) { border-bottom: none; }
.hero-stat-num {
  font-family: var(--serif); font-size: 52px; font-weight: 300;
  color: var(--ink-inv); line-height: 1; margin-bottom: 8px;
}
.hero-stat-num span { color: var(--accent); }
.hero-stat-label {
  font-family: var(--sans); font-size: 12px; font-weight: 400;
  color: rgba(245,242,238,0.65); text-transform: uppercase; letter-spacing: 0.06em;
}

/* TICKER */
.ticker {
  background: var(--accent); padding: 14px 0;
  overflow: hidden; white-space: nowrap;
}
.ticker-inner {
  display: inline-flex;
  animation: ticker 28s linear infinite;
}
.ticker-item {
  font-family: var(--sans); font-size: 12px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase; color: white;
  padding: 0 40px;
}
.ticker-dot { color: rgba(255,255,255,0.4); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* SERVICES */
#services { padding: 120px 48px; }
.services-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; margin-bottom: 80px;
  padding-bottom: 48px; border-bottom: 1px solid var(--border);
}
.services-h2 {
  font-family: var(--serif); font-size: clamp(36px, 3.5vw, 56px);
  font-weight: 300; line-height: 1.1; letter-spacing: -0.01em;
}
.services-h2 em { font-style: italic; color: var(--accent); }
.services-intro {
  font-family: var(--sans); font-size: 15px; font-weight: 300;
  color: var(--muted); line-height: 1.8; align-self: end;
}
.framework-bar { display: grid; grid-template-columns: repeat(3,1fr); margin-bottom: 1px; }
.framework-bar-item { padding: 32px 48px; position: relative; }
.framework-bar-tag {
  font-family: var(--sans); font-size: 10px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 10px;
}
.framework-bar-title {
  font-family: var(--serif); font-size: 28px; font-weight: 300;
  letter-spacing: -0.02em; line-height: 1;
}
.framework-arrow { position: absolute; right: -1px; top: 50%; transform: translateY(-50%); z-index: 2; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); }
.service-card { background: var(--bg); padding: 56px 48px; transition: background 0.2s; }
.service-card:hover { background: var(--surface); }
.service-card-label {
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  color: var(--muted); letter-spacing: 0.04em; margin-bottom: 20px;
}
.service-title {
  font-family: var(--serif); font-size: 28px; font-weight: 400;
  line-height: 1.2; margin-bottom: 16px; letter-spacing: -0.01em;
}
.service-desc {
  font-family: var(--sans); font-size: 14px; font-weight: 300;
  color: var(--muted); line-height: 1.75; margin-bottom: 32px;
}
.service-right-label {
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink);
  margin-bottom: 12px; margin-top: 32px;
}
.service-outcomes { list-style: none; }
.service-outcomes li {
  font-family: var(--sans); font-size: 13px; font-weight: 400;
  color: var(--ink); padding: 10px 0;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; gap: 12px;
}
.service-outcomes li::before {
  content: ''; width: 16px; height: 1px;
  background: var(--accent); flex-shrink: 0;
}
.service-includes {
  margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--border);
}
.service-includes-label {
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px;
}
.service-includes-body {
  font-family: var(--sans); font-size: 13px; font-weight: 300;
  color: var(--ink); line-height: 1.7;
}

/* PROCESS */
#process { padding: 120px 48px; background: var(--dark-bg); }
.process-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; margin-bottom: 80px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(245,242,238,0.1);
}
.process-h2 {
  font-family: var(--serif); font-size: clamp(36px, 3.5vw, 56px);
  font-weight: 300; line-height: 1.1; letter-spacing: -0.01em; color: var(--ink-inv);
}
.process-h2 em { font-style: italic; color: var(--accent); }
.process-intro {
  font-family: var(--sans); font-size: 15px; font-weight: 300;
  color: rgba(245,242,238,0.7); line-height: 1.8; align-self: end;
}
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); }
.process-step {
  padding: 48px 40px;
  border-right: 1px solid rgba(245,242,238,0.08);
}
.process-step:last-child { border-right: none; }
.process-step-num {
  font-family: var(--serif); font-size: 64px; font-weight: 300;
  color: rgba(245,242,238,0.08); line-height: 1; margin-bottom: 24px;
}
.process-step-tag {
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px;
}
.process-step-title {
  font-family: var(--serif); font-size: 22px; font-weight: 400;
  color: var(--ink-inv); margin-bottom: 16px; line-height: 1.2;
}
.process-step-desc {
  font-family: var(--sans); font-size: 13px; font-weight: 300;
  color: rgba(245,242,238,0.65); line-height: 1.7;
}

/* RESULTS */
#results { padding: 120px 48px; }
.results-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; margin-bottom: 80px;
  padding-bottom: 48px; border-bottom: 1px solid var(--border);
}
.results-h2 {
  font-family: var(--serif); font-size: clamp(36px, 3.5vw, 56px);
  font-weight: 300; line-height: 1.1; letter-spacing: -0.01em;
}
.results-h2 em { font-style: italic; color: var(--accent); }
.results-intro {
  font-family: var(--sans); font-size: 15px; font-weight: 300;
  color: var(--muted); line-height: 1.8; align-self: end;
}
.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); }
.result-card { background: var(--bg); padding: 48px 40px; display: flex; flex-direction: column; }
.result-tag {
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 24px;
}
.result-metric {
  font-family: var(--serif); font-size: 56px; font-weight: 300;
  color: var(--accent); line-height: 1; margin-bottom: 8px;
}
.result-metric-label {
  font-family: var(--sans); font-size: 13px; font-weight: 300;
  color: var(--muted); margin-bottom: 24px;
}
.result-title {
  font-family: var(--serif); font-size: 20px; font-weight: 400;
  line-height: 1.3; margin-bottom: 12px;
}
.result-desc {
  font-family: var(--sans); font-size: 13px; font-weight: 300;
  color: var(--muted); line-height: 1.7; flex: 1;
}
.result-industry {
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink);
  margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--border);
}

/* TESTIMONIALS */
#testimonials { padding: 120px 48px; background: var(--surface); }
.testi-header { margin-bottom: 64px; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.testi-card { background: var(--bg); padding: 48px 40px; border-top: 3px solid var(--accent); }
.testi-quote {
  font-family: var(--serif); font-size: 19px; font-weight: 300;
  font-style: italic; line-height: 1.6; color: var(--ink); margin-bottom: 32px;
}
.testi-author {
  font-family: var(--sans); font-size: 13px; font-weight: 500;
  color: var(--ink); margin-bottom: 4px;
}
.testi-role { font-family: var(--sans); font-size: 12px; font-weight: 300; color: var(--muted); }

/* ABOUT */
#about {
  padding: 120px 48px;
  display: grid; grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border);
}
.about-left { padding-right: 80px; border-right: 1px solid var(--border); }
.about-right { padding-left: 80px; display: flex; flex-direction: column; justify-content: center; }
.about-h2 {
  font-family: var(--serif); font-size: clamp(36px, 3.5vw, 56px);
  font-weight: 300; line-height: 1.1; letter-spacing: -0.01em; margin-bottom: 32px;
}
.about-h2 em { font-style: italic; color: var(--accent); }
.about-p {
  font-family: var(--sans); font-size: 15px; font-weight: 300;
  color: var(--muted); line-height: 1.8; margin-bottom: 20px;
}
.about-values { margin-top: 48px; }
.about-value { padding: 20px 0; border-bottom: 1px solid var(--border); display: flex; gap: 24px; align-items: flex-start; }
.about-value-num { font-family: var(--serif); font-size: 14px; color: var(--accent); flex-shrink: 0; padding-top: 2px; }
.about-value-title { font-family: var(--sans); font-size: 14px; font-weight: 500; margin-bottom: 4px; }
.about-value-desc { font-family: var(--sans); font-size: 13px; font-weight: 300; color: var(--muted); line-height: 1.6; }
.about-photo {
  width: 100%; height: 360px; object-fit: cover;
  border: 1px solid var(--border); margin-bottom: 32px; display: block;
}
.about-photo-placeholder {
  background: var(--surface); border: 1px solid var(--border);
  height: 360px; display: flex; align-items: center; justify-content: center;
  font-family: 'Courier New', monospace; font-size: 11px; color: var(--muted);
  text-align: center; margin-bottom: 32px;
}
.about-stat-row { display: flex; gap: 1px; background: var(--border); }
.about-stat-box { background: var(--bg); padding: 32px; flex: 1; }
.about-stat-num { font-family: var(--serif); font-size: 40px; font-weight: 300; color: var(--accent); }
.about-stat-label { font-family: var(--sans); font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }

/* INSIGHTS */
#insights { padding: 120px 48px; }
.insights-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 48px; padding-bottom: 32px; border-bottom: 1px solid var(--border);
}
.insights-h2 {
  font-family: var(--serif); font-size: clamp(30px, 3vw, 48px);
  font-weight: 300; line-height: 1.1; letter-spacing: -0.01em;
}
.insights-h2 em { font-style: italic; color: var(--accent); }
.insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.insight-card { cursor: pointer; text-decoration: none; color: inherit; display: block; }
.insight-img {
  background: var(--surface); border: 1px solid var(--border);
  height: 200px; overflow: hidden; margin-bottom: 24px; position: relative;
}
.insight-img img { width: 100%; height: 100%; object-fit: cover; }
.insight-img-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  font-family: 'Courier New', monospace; font-size: 10px; color: var(--muted); text-align: center; padding: 16px;
}
.insight-tag {
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px;
}
.insight-title {
  font-family: var(--serif); font-size: 20px; font-weight: 400;
  line-height: 1.3; margin-bottom: 12px; transition: color 0.2s;
}
.insight-card:hover .insight-title { color: var(--accent); }
.insight-meta { font-family: var(--sans); font-size: 12px; font-weight: 300; color: var(--muted); }

/* CONTACT */
#contact {
  padding: 120px 48px; background: var(--dark-bg);
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
}
.contact-left { display: flex; flex-direction: column; justify-content: center; }
.contact-h2 {
  font-family: var(--serif); font-size: clamp(36px, 3.5vw, 64px);
  font-weight: 300; line-height: 1.05; letter-spacing: -0.01em;
  color: var(--ink-inv); margin-bottom: 24px;
}
.contact-h2 em { font-style: italic; color: var(--accent); }
.contact-sub {
  font-family: var(--sans); font-size: 15px; font-weight: 300;
  color: rgba(245,242,238,0.7); line-height: 1.75; margin-bottom: 48px;
}
.contact-detail {
  display: flex; flex-direction: column; gap: 4px;
  border-top: 1px solid rgba(245,242,238,0.1); padding: 20px 0;
}
.contact-detail-label {
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: rgba(245,242,238,0.55);
}
.contact-detail-value {
  font-family: var(--serif); font-size: 18px; font-weight: 300; color: var(--ink-inv);
}
.contact-detail-value a { color: var(--ink-inv); text-decoration: none; transition: color 0.2s; }
.contact-detail-value a:hover { color: var(--accent); }
.contact-form-wrap { display: flex; flex-direction: column; justify-content: center; }

/* Contact Form 7 overrides */
.contact-form-wrap .wpcf7 { width: 100%; }
.contact-form-wrap .wpcf7-form { display: flex; flex-direction: column; }
.contact-form-wrap p { margin: 0; border-bottom: 1px solid rgba(245,242,238,0.12); }
.contact-form-wrap p:first-of-type { border-top: 1px solid rgba(245,242,238,0.12); }
.contact-form-wrap input[type="text"],
.contact-form-wrap input[type="email"],
.contact-form-wrap textarea,
.contact-form-wrap select {
  width: 100%; background: transparent;
  font-family: var(--sans); font-size: 14px; font-weight: 300;
  color: var(--ink-inv); border: none; outline: none;
  padding: 20px 0; resize: none; appearance: none;
}
.contact-form-wrap input::placeholder,
.contact-form-wrap textarea::placeholder { color: rgba(245,242,238,0.45); }
.contact-form-wrap select { color: rgba(245,242,238,0.45); }
.contact-form-wrap select option { background: var(--dark-bg); color: var(--ink-inv); }
.contact-form-wrap input[type="submit"],
.contact-form-wrap .wpcf7-submit {
  margin-top: 32px; background: var(--accent); color: white;
  font-family: var(--sans); font-size: 13px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 18px 40px; border: none; cursor: pointer;
  align-self: flex-start; transition: opacity 0.2s; width: auto;
}
.contact-form-wrap input[type="submit"]:hover,
.contact-form-wrap .wpcf7-submit:hover { opacity: 0.85; }
.contact-form-wrap .wpcf7-not-valid-tip { color: var(--accent); font-size: 12px; }
.contact-form-wrap .wpcf7-response-output { color: var(--ink-inv); border-color: var(--accent) !important; font-size: 13px; margin: 16px 0 0; }

/* FOOTER */
footer {
  padding: 48px; background: var(--dark-bg);
  border-top: 1px solid rgba(245,242,238,0.08);
  display: flex; align-items: center; justify-content: space-between;
}
.footer-links { display: flex; gap: 32px; }
.footer-links a {
  font-family: var(--sans); font-size: 12px; font-weight: 400;
  color: rgba(245,242,238,0.55); text-decoration: none;
  letter-spacing: 0.04em; text-transform: uppercase; transition: color 0.2s;
}
.footer-links a:hover { color: rgba(245,242,238,0.7); }
.footer-copy { font-family: var(--sans); font-size: 12px; font-weight: 300; color: rgba(245,242,238,0.45); }

/* SINGLE POST */
.post-hero { padding: 120px 48px 64px; border-bottom: 1px solid var(--border); }
.post-category {
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 24px;
}
.post-title {
  font-family: var(--serif); font-size: clamp(36px, 4vw, 64px);
  font-weight: 300; line-height: 1.08; letter-spacing: -0.01em;
  max-width: 800px; margin-bottom: 24px;
}
.post-meta { font-family: var(--sans); font-size: 13px; font-weight: 300; color: var(--muted); }
.post-thumbnail { width: 100%; height: 480px; object-fit: cover; display: block; }
.post-content {
  max-width: 720px; margin: 80px auto; padding: 0 48px;
  font-family: var(--sans); font-size: 16px; font-weight: 300;
  color: var(--ink); line-height: 1.8;
}
.post-content h2 {
  font-family: var(--serif); font-size: 32px; font-weight: 400;
  margin: 48px 0 16px; letter-spacing: -0.01em;
}
.post-content h3 {
  font-family: var(--serif); font-size: 24px; font-weight: 400; margin: 32px 0 12px;
}
.post-content p { margin-bottom: 24px; }
.post-content a { color: var(--accent); }
.post-content ul, .post-content ol { margin: 0 0 24px 24px; }
.post-content li { margin-bottom: 8px; }
.post-content blockquote {
  border-left: 3px solid var(--accent); padding-left: 24px; margin: 32px 0;
  font-family: var(--serif); font-size: 22px; font-weight: 300; font-style: italic;
  color: var(--muted);
}
.post-back { padding: 48px; border-top: 1px solid var(--border); }
.post-back a { font-family: var(--sans); font-size: 13px; font-weight: 500; color: var(--accent); text-decoration: none; letter-spacing: 0.04em; text-transform: uppercase; }

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.7s ease forwards; }
.fade-up-1 { animation-delay: 0.1s; opacity: 0; }
.fade-up-2 { animation-delay: 0.22s; opacity: 0; }
.fade-up-3 { animation-delay: 0.34s; opacity: 0; }
.fade-up-4 { animation-delay: 0.46s; opacity: 0; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  nav { padding: 0 32px; }
  .nav-links { gap: 24px; }
  #hero { grid-template-columns: 1fr; }
  .hero-right { min-height: 480px; }
  #services, #results, #insights { padding: 80px 32px; }
  .services-header, .results-header, .process-header { grid-template-columns: 1fr; gap: 24px; }
  .services-grid, .results-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-step:nth-child(2) { border-right: none; }
  #process { padding: 80px 32px; }
  #about { grid-template-columns: 1fr; padding: 80px 32px; }
  .about-left { padding-right: 0; border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 64px; margin-bottom: 64px; }
  .about-right { padding-left: 0; }
  .testi-grid { grid-template-columns: 1fr; }
  #testimonials { padding: 80px 32px; }
  .insights-grid { grid-template-columns: 1fr 1fr; }
  #contact { grid-template-columns: 1fr; padding: 80px 32px; gap: 64px; }
  footer { padding: 32px; flex-direction: column; gap: 24px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .framework-bar { grid-template-columns: 1fr; }
  .framework-arrow { display: none; }
  .post-content { padding: 0 32px; }
  .post-hero { padding: 100px 32px 48px; }
}
@media (max-width: 640px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hero-left { padding: 48px 20px; }
  .hero-right { padding: 32px 20px; }
  #services, #results, #insights, #process, #testimonials, #about, #contact { padding: 64px 20px; }
  .process-steps { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid rgba(245,242,238,0.08); }
  .process-step:last-child { border-bottom: none; }
  .insights-grid { grid-template-columns: 1fr; }
  footer { padding: 24px 20px; }
  .post-content { padding: 0 20px; margin: 48px auto; }
  .post-hero { padding: 80px 20px 40px; }
}
