/* ============================================
   J. O'Brien Coaching — Redesign V2
   Aesthetic: Clean. Classy. Timeless. Simple.
   ============================================ */

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

:root {
  --navy: #0f1628;
  --navy-mid: #1a2340;
  --gold: #c9a96e;
  --gold-muted: #b89a62;
  --cream: #f9f7f3;
  --white: #ffffff;
  --text: #1a1a1a;
  --text-mid: #555555;
  --text-light: #888888;
  --border: #e5e2dc;
  --font: 'Avenir Next', 'Avenir', -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

/* ==================== NAV ==================== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 96px;
  display: flex;
  align-items: center;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
nav.scrolled {
  background: rgba(15, 22, 40, 0.98);
  box-shadow: 0 1px 0 rgba(201,169,110,0.1);
}
nav .nav-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo-img {
  height: 72px;
  width: auto;
  display: block;
  background: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-cta {
  padding: 10px 28px;
  border: 1px solid rgba(201,169,110,0.5);
  color: var(--gold) !important;
  transition: all 0.3s;
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--navy) !important;
  border-color: var(--gold);
}

/* ==================== FULL VIEWPORT SECTIONS ==================== */
.section-full {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}
.section-padded {
  padding: 120px 0;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
.container-wide {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ==================== TYPOGRAPHY ==================== */
.label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.label-dark { color: var(--gold); }
.label-light { color: var(--text-light); }

h1 {
  font-size: 56px;
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--white);
}
h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

h2 {
  font-size: 42px;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.3px;
}
h2 em {
  font-style: italic;
  font-weight: 400;
}

h3 {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.3;
}

p.lead {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-mid);
}
p.body {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--text-mid);
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.35s ease;
  border: none;
}
.btn-gold {
  padding: 18px 40px;
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover {
  background: var(--gold-muted);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201,169,110,0.25);
}
.btn-outline {
  padding: 18px 40px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-outline-light {
  padding: 18px 40px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
}
.btn-outline-light:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-text {
  padding: 0;
  color: var(--gold);
  background: none;
}
.btn-text:hover { opacity: 0.7; }
.btn-arrow {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ==================== HERO ==================== */
.hero {
  background: var(--navy);
  overflow: hidden;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-text { max-width: 540px; }
.hero-sub {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
  margin: 24px 0 40px;
  max-width: 440px;
}
.hero-ctas { display: flex; gap: 16px; }

.hero-visual {
  position: relative;
  justify-self: end;
}
.hero-portrait {
  width: 420px;
  height: 520px;
  background: none;
  position: relative;
  overflow: hidden;
}
.hero-portrait .placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
  font-size: 15px;
  color: rgba(255,255,255,0.15);
  line-height: 1.6;
}
.hero-portrait::after {
  display: none;
}
.hero-accent-line {
  position: absolute;
  top: -1px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--gold);
}
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
}
.hero-stat-num {
  font-size: 32px;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}
.hero-stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-top: 6px;
}
.hero-stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.1);
}

/* ==================== SERVICES / CHALLENGES ==================== */
.services-bg { background: var(--white); }
.services-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 80px;
}
.services-header h2 { color: var(--navy); }
.services-header p {
  margin-top: 16px;
  color: var(--text-mid);
  font-size: 16px;
  line-height: 1.7;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.service-card {
  background: var(--white);
  padding: 48px 28px;
  text-align: center;
  transition: all 0.4s ease;
  cursor: default;
}
.service-card:hover {
  background: var(--cream);
}
.service-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-name {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--navy);
  margin-bottom: 14px;
}
.service-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-light);
}

/* ==================== PHILOSOPHY ==================== */
.philosophy {
  background: var(--navy);
  text-align: center;
}
.philosophy-inner {
  max-width: 780px;
  margin: 0 auto;
}
.philosophy blockquote {
  font-size: 30px;
  font-weight: 300;
  line-height: 1.55;
  color: var(--white);
  font-style: italic;
}
.philosophy blockquote strong {
  color: var(--gold);
  font-weight: 400;
}
.philosophy-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 32px;
}
.philosophy-attr {
  margin-top: 32px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

/* ==================== APPROACH ==================== */
.approach-bg { background: var(--cream); }
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.approach-photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: transparent;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}
.approach-photo .placeholder {
  font-size: 15px;
  color: rgba(0,0,0,0.15);
  text-align: center;
  padding: 40px;
  line-height: 1.6;
}
.approach-text h2 { color: var(--navy); margin-bottom: 20px; }
.approach-text .lead { margin-bottom: 48px; }
.steps { counter-reset: step; }
.step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step-num {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  padding-top: 2px;
}
.step-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.step-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-light);
}

/* ==================== TESTIMONIALS ==================== */
.testimonials-bg { background: var(--white); }
.testimonial-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
}
.testimonial-photo {
  aspect-ratio: 1;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}
.testimonial-photo .placeholder {
  font-size: 14px;
  color: rgba(255,255,255,0.15);
  text-align: center;
  padding: 40px;
  line-height: 1.6;
}
.testimonial-content blockquote {
  font-size: 22px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text);
  font-style: italic;
  padding-left: 24px;
  border-left: 2px solid var(--gold);
}
.testimonial-author {
  margin-top: 28px;
  padding-left: 24px;
}
.testimonial-author-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}
.testimonial-author-role {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 3px;
}

/* ==================== ABOUT ==================== */
.about-bg { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text h2 { color: var(--navy); margin-bottom: 24px; }
.about-bio {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 20px;
}
.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}
.about-highlight {
  padding: 20px 24px;
  background: var(--white);
  border-left: 2px solid var(--gold);
}
.about-highlight-val {
  font-size: 26px;
  font-weight: 300;
  color: var(--navy);
}
.about-highlight-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 4px;
}
.about-portrait {
  position: relative;
}
.about-portrait-img {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, #ddd5c8, #c8bfb0);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-portrait-img .placeholder {
  font-size: 15px;
  color: rgba(0,0,0,0.15);
  text-align: center;
  padding: 40px;
  line-height: 1.6;
}
.about-quote-card {
  position: absolute;
  bottom: 24px;
  left: -32px;
  right: 32px;
  background: var(--navy);
  padding: 28px 32px;
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  font-style: italic;
  line-height: 1.65;
}
.about-quote-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 48px;
  height: 2px;
  background: var(--gold);
}

/* ==================== CTA ==================== */
.cta-section {
  background: var(--navy);
  text-align: center;
}
.cta-inner {
  max-width: 640px;
  margin: 0 auto;
}
.cta-inner h2 {
  color: var(--white);
  margin-bottom: 16px;
}
.cta-sub {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.4);
  margin-bottom: 40px;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}
.cta-contact {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-top: 48px;
}
.cta-contact a {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cta-contact a:hover { color: var(--gold); }
.cta-contact svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

/* ==================== FOOTER ==================== */
footer {
  padding: 40px 0;
  background: #0a0e1a;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  align-items: center;
}
.footer-logo-img {
  height: 44px;
  width: auto;
  opacity: 0.4;
  transition: opacity 0.3s;
}
.footer-logo-img:hover {
  opacity: 0.7;
}
.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }

/* ==================== PURPOSE & VALUES ==================== */
.values-hero {
  background: var(--navy);
  text-align: center;
}
.values-hero h1 { margin-bottom: 16px; }
.values-hero p {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
.values-hero .philosophy-inner {
  max-width: 780px;
  margin: 0 auto;
}
.values-hero .philosophy-inner blockquote {
  font-size: 28px;
  font-weight: 300;
  line-height: 1.55;
  color: var(--white);
  font-style: italic;
}
.values-hero .philosophy-inner blockquote strong {
  color: var(--gold);
  font-weight: 400;
}
.values-hero .philosophy-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 32px;
}
.values-grid-section { background: var(--white); }
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.value-card {
  background: var(--white);
  padding: 56px 48px;
  transition: background 0.3s;
}
.value-card:hover { background: var(--cream); }
.value-num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 16px;
}
.value-name {
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}
.value-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-mid);
}

/* ==================== TESTIMONIALS PAGE ==================== */
.testimonials-hero {
  background: var(--navy);
  text-align: center;
}
.testimonials-hero h1 { margin-bottom: 16px; }
.testimonials-hero p {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}
.testimonials-list { background: var(--white); }
.testimonial-item {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.testimonial-item:last-child { border-bottom: none; }
.testimonial-item blockquote {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
  padding-left: 24px;
  border-left: 2px solid var(--gold);
  margin-bottom: 24px;
}
.testimonial-item .testimonial-author { padding-left: 24px; }

/* ==================== ABOUT PAGE ==================== */
.about-hero {
  background: var(--navy);
}
.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-hero-text h1 { margin-bottom: 24px; }
.about-hero-text p {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
}
.about-hero-portrait {
  width: 100%;
  aspect-ratio: 3/4;
  background: none;
  justify-self: end;
  max-width: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-hero-portrait .placeholder {
  font-size: 15px;
  color: rgba(255,255,255,0.15);
  text-align: center;
  padding: 40px;
  line-height: 1.6;
}
.about-story { background: var(--white); }
.about-story-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.about-story-inner h2 { color: var(--navy); margin-bottom: 32px; }
.about-story-inner p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 20px;
}
.about-capabilities { background: var(--cream); }
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.capability-card {
  background: var(--cream);
  padding: 48px 36px;
  text-align: center;
  transition: background 0.3s;
}
.capability-card:hover { background: var(--white); }
.capability-name {
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}
.capability-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-light);
}

/* ==================== ANIMATIONS ==================== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* Scroll progress */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold);
  z-index: 1001;
  transition: width 0.05s linear;
}

/* ==================== REAL IMAGES ==================== */
.hero-portrait img,
.about-hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
}
.about-portrait-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.approach-photo img,
.service-row-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
}

/* ==================== CERTIFICATION BADGES ==================== */
.certifications-section { background: var(--white); }
.cert-grid {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.cert-badge {
  width: 140px;
  text-align: center;
  transition: transform 0.4s ease;
}
.cert-badge:hover {
  transform: translateY(-6px);
}
.cert-badge img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin: 0 auto 12px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.08));
  transition: filter 0.3s;
}
.cert-badge:hover img {
  filter: drop-shadow(0 8px 20px rgba(201,169,110,0.2));
}
.cert-badge-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-mid);
  line-height: 1.4;
}

/* ==================== TESTIMONIAL CAROUSEL ==================== */
.testimonial-carousel {
  position: relative;
  min-height: 260px;
}
.carousel-slide {
  opacity: 0;
  position: absolute;
  top: 0; left: 0; right: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}
.carousel-slide.active {
  opacity: 1;
  position: relative;
  pointer-events: auto;
}
.carousel-dots {
  display: flex;
  gap: 10px;
  padding-left: 24px;
  margin-top: 32px;
}
.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.carousel-dot.active {
  background: var(--gold);
  transform: scale(1.2);
}

/* ==================== TYPING EFFECT ==================== */
.typing-effect {
  visibility: hidden;
}
.typing-effect::after {
  content: '|';
  animation: blink 0.8s infinite;
  color: var(--gold);
  font-weight: 300;
}
.typing-effect.typing-done::after {
  display: none;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ==================== STAGGER ANIMATIONS ==================== */
.stagger-child {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.stagger-child.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==================== GLOW HOVER ==================== */
.glow-hover {
  position: relative;
  overflow: hidden;
}
.glow-hover::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(201,169,110,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  left: var(--glow-x, -100px);
  top: var(--glow-y, -100px);
  transition: opacity 0.3s;
  opacity: 0;
}
.glow-hover:hover::before {
  opacity: 1;
}

/* ==================== REVEAL SECTION ==================== */
.reveal-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-section.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ==================== HORIZONTAL RULE ACCENT ==================== */
.gold-line {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 24px;
}
.gold-line-center {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 24px;
}

/* ==================== NAV LOGO IMAGE ==================== */
/* (primary rule is above in NAV section) */

/* ==================== MOBILE HAMBURGER ==================== */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.nav-hamburger span {
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

/* ==================== COUNTER STYLING ==================== */
.counter {
  font-variant-numeric: tabular-nums;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 960px) {
  .hero-content,
  .approach-grid,
  .testimonial-layout,
  .about-grid,
  .about-hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .capabilities-grid { grid-template-columns: 1fr; }
  h1 { font-size: 40px; }
  h2 { font-size: 32px; }
  .container, .container-wide { padding: 0 24px; }
  .section-full { min-height: auto; padding: 100px 0; }

  /* Mobile nav */
  .nav-hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    padding: 100px 40px 40px;
    gap: 24px;
    transition: right 0.4s ease;
    box-shadow: -4px 0 20px rgba(0,0,0,0.3);
  }
  .nav-links.nav-open { right: 0; }
  .nav-cta { text-align: center; }

  /* Mobile cert grid */
  .cert-grid { gap: 24px; }
  .cert-badge { width: 100px; }
  .cert-badge img { width: 80px; height: 80px; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .hero-stat-divider { width: 40px; height: 1px; }
  .cert-grid { gap: 16px; }
}

