/* ═══════════════════════════════════════════
   MOREH CONSULTING GROUP — DESIGN SYSTEM
   Version: 2.0 (Moreh Green Color Scheme)
   Fonts: DM Serif Display + Manrope (Google)
   ═══════════════════════════════════════════ */

:root {
  /* Dark tones */
  --ink: #1a1a1a;
  --stone: #2c2c2c;
  --warm: #2d4a4a;

  /* Primary brand colors - from Moreh tree logo */
  --copper: #4CAF50;           /* Moreh Green - primary accent */
  --copper-light: #6BC96F;     /* Moreh Green Light - hover states */
  --copper-glow: rgba(76, 175, 80, 0.12);
  --copper-ghost: rgba(76, 175, 80, 0.06);
  --moreh-teal: #3D5C5C;       /* Secondary color for text */

  /* Neutral tones */
  --sand: #f0f5f0;
  --cream: #f5faf5;
  --white: #ffffff;
  --slate: #5a6565;
  --mist: #dce5dc;
}

/* ── RESET & BASE ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', sans-serif;
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ═══════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 40px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(76, 175, 80, 0.15);
  transition: background 0.4s ease;
}

.nav.scrolled {
  background: rgba(26, 26, 26, 0.98);
}

.nav-logo {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo span {
  color: var(--copper);
  margin-left: -4px;
}

.nav-tree-icon {
  height: 36px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--copper);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--copper);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 24px !important;
  border: 1.5px solid var(--copper) !important;
  color: var(--copper) !important;
  border-radius: 3px;
  transition: all 0.3s ease !important;
}

.nav-cta:hover {
  background: var(--copper) !important;
  color: var(--white) !important;
}

.nav-cta::after { display: none !important; }

/* Mobile Nav */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  z-index: 1001;
}

.mobile-toggle span {
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s ease;
  display: block;
}

.mobile-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.mobile-toggle.open span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--copper);
  color: var(--white);
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.4s ease;
}

.btn-primary:hover {
  background: var(--copper-light);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: transparent;
  color: rgba(255,255,255,0.7);
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.4s ease;
}

.btn-ghost:hover {
  border-color: var(--copper);
  color: var(--copper);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: transparent;
  color: var(--ink);
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: 1.5px solid var(--mist);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.4s ease;
}

.btn-secondary:hover {
  border-color: var(--copper);
  color: var(--copper);
}

/* ═══════════════════════════════════════════
   SECTION HEADERS
   ═══════════════════════════════════════════ */
.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-header.left { text-align: left; }

.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 16px;
  color: var(--slate);
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-header.left .section-subtitle {
  margin: 0;
}

/* ═══════════════════════════════════════════
   PAGE HERO (inner pages)
   ═══════════════════════════════════════════ */
.page-hero {
  position: relative;
  padding: 160px 0 80px;
  background: var(--ink);
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 40px;
  width: 120px;
  height: 3px;
  background: var(--copper);
}

.page-hero .section-eyebrow { color: var(--copper); }

.page-hero .section-title {
  color: var(--white);
  font-size: clamp(36px, 5vw, 56px);
}

.page-hero-subtitle {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
  max-width: 620px;
  margin-top: 20px;
}

/* ═══════════════════════════════════════════
   SERVICE CARDS
   ═══════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.service-card {
  padding: 48px 40px;
  border: 1px solid var(--mist);
  position: relative;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: default;
  overflow: hidden;
  background: var(--white);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card:hover {
  background: var(--cream);
}

.service-number {
  font-size: 12px;
  font-weight: 700;
  color: var(--copper);
  letter-spacing: 2px;
  margin-bottom: 28px;
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  background: var(--copper-glow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s ease;
}

.service-card:hover .service-icon { background: var(--copper); }

.service-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--copper);
  fill: none;
  stroke-width: 1.5;
  transition: stroke 0.4s ease;
}

.service-card:hover .service-icon svg { stroke: var(--white); }

.service-title {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.3;
}

.service-desc {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--slate);
  font-weight: 300;
  margin-bottom: 24px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 6px 14px;
  background: var(--sand);
  color: var(--warm);
  border-radius: 100px;
  transition: all 0.3s ease;
}

.service-card:hover .service-tag {
  background: var(--copper-glow);
  color: var(--copper);
}

/* ═══════════════════════════════════════════
   APPROACH / PROCESS
   ═══════════════════════════════════════════ */
.approach {
  background: var(--ink);
  padding: 120px 0;
  position: relative;
}

.approach .section-title { color: var(--white); }
.approach .section-subtitle { color: rgba(255,255,255,0.5); }

.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.approach-item {
  padding: 40px 32px;
  border-left: 1px solid rgba(255,255,255,0.08);
  position: relative;
}

.approach-item:first-child { border-left: none; }

.approach-step {
  font-size: 48px;
  font-family: 'DM Serif Display', serif;
  color: rgba(76, 175, 80, 0.2);
  margin-bottom: 20px;
  line-height: 1;
}

.approach-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.approach-desc {
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
}

/* ═══════════════════════════════════════════
   STAT CARDS
   ═══════════════════════════════════════════ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: 8px;
  transition: all 0.4s ease;
}

.stat-card:hover {
  border-color: var(--copper);
}

.stat-number {
  font-family: 'DM Serif Display', serif;
  font-size: 40px;
  color: var(--copper);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 13px;
  color: var(--slate);
  font-weight: 500;
}

/* ═══════════════════════════════════════════
   CREDENTIALS BAR
   ═══════════════════════════════════════════ */
.credentials {
  background: var(--warm);
  padding: 40px 0;
  border-bottom: 1px solid rgba(76, 175, 80, 0.1);
}

.credentials-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.credential {
  display: flex;
  align-items: center;
  gap: 14px;
}

.credential-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(76, 175, 80, 0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.credential-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--copper);
  fill: none;
  stroke-width: 1.5;
}

.credential-text {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
}

.credential-text strong {
  display: block;
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
}

.credentials-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.08);
}

/* ═══════════════════════════════════════════
   PILLAR CARDS (Why Moreh)
   ═══════════════════════════════════════════ */
.pillar {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: 8px;
  display: flex;
  gap: 20px;
  align-items: start;
  transition: all 0.4s ease;
}

.pillar:hover {
  border-color: var(--copper);
}

.pillar-icon {
  width: 44px;
  height: 44px;
  background: var(--copper-glow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pillar-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--copper);
  fill: none;
  stroke-width: 1.5;
}

.pillar h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}

.pillar p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--slate);
  font-weight: 300;
}

/* ═══════════════════════════════════════════
   QUOTE BLOCK
   ═══════════════════════════════════════════ */
.quote-block {
  padding: 40px;
  background: var(--ink);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.quote-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--copper);
}

.quote-block p {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  font-style: italic;
}

.quote-block cite {
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  color: var(--copper);
  font-weight: 600;
  letter-spacing: 1px;
}

/* ═══════════════════════════════════════════
   MISSION STRIP
   ═══════════════════════════════════════════ */
.mission {
  padding: 100px 0;
  background: var(--warm);
  text-align: center;
  position: relative;
}

.mission-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}

.mission .section-eyebrow { margin-bottom: 24px; }

.mission-statement {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(24px, 3vw, 32px);
  color: var(--white);
  line-height: 1.55;
  font-style: italic;
}

.mission-statement span { color: var(--copper); }

.mission-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 30px auto 0;
  text-align: left;
}

.mission-pillar {
  padding: 24px;
  background: rgba(0,0,0,0.15);
  border-radius: 12px;
  border-left: 3px solid var(--copper);
}

.mission-pillar .mission-statement {
  font-style: normal;
  font-weight: 300;
  font-family: 'Manrope', sans-serif;
}

@media (max-width: 768px) {
  .mission-pillars {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════
   HIGHLIGHT BOX
   ═══════════════════════════════════════════ */
.highlight-box {
  padding: 28px 32px;
  background: var(--copper-glow);
  border-left: 3px solid var(--copper);
  border-radius: 0 8px 8px 0;
}

.highlight-box p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--warm);
  font-weight: 400;
}

/* ═══════════════════════════════════════════
   FORMS
   ═══════════════════════════════════════════ */
.form-card {
  background: var(--white);
  padding: 48px;
  border: 1px solid var(--mist);
  border-radius: 12px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: var(--sand);
  border: 1.5px solid var(--mist);
  border-radius: 6px;
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  color: var(--ink);
  transition: all 0.3s ease;
  outline: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--copper);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--copper-glow);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--slate);
  opacity: 0.5;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--copper);
  color: var(--white);
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.4s ease;
}

.btn-submit:hover {
  background: var(--copper-light);
  box-shadow: 0 8px 24px rgba(76, 175, 80, 0.25);
}

.form-status {
  margin-top: 16px;
  padding: 12px 18px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  display: none;
}

.form-status.success {
  display: block;
  background: rgba(46, 125, 50, 0.1);
  color: #2e7d32;
  border: 1px solid rgba(46, 125, 50, 0.2);
}

.form-status.error {
  display: block;
  background: rgba(198, 40, 40, 0.1);
  color: #c62828;
  border: 1px solid rgba(198, 40, 40, 0.2);
}

/* ═══════════════════════════════════════════
   CONTACT INFO
   ═══════════════════════════════════════════ */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  background: var(--copper-glow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--copper);
  fill: none;
  stroke-width: 1.5;
}

.contact-item-text {
  font-size: 15px;
  color: var(--slate);
  font-weight: 400;
}

.contact-item-text strong {
  display: block;
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 2px;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
  background: var(--ink);
  padding: 60px 0 32px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  gap: 40px;
  flex-wrap: wrap;
}

.footer-brand { max-width: 320px; }

.footer-logo {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-logo span {
  color: var(--copper);
  margin-left: -4px;
}

.footer-tree-icon {
  height: 40px;
  width: auto;
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
}

.footer-links-group h5 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 16px;
}

.footer-links-group li { margin-bottom: 10px; }

.footer-links-group a {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  transition: color 0.3s ease;
  font-weight: 300;
}

.footer-links-group a:hover { color: var(--copper); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  font-weight: 300;
}

.footer-certifications {
  display: flex;
  gap: 12px;
}

.footer-cert {
  font-size: 11px;
  font-weight: 500;
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════ */
.cta-section {
  padding: 100px 0;
  text-align: center;
}

.cta-inner {
  max-width: 640px;
  margin: 0 auto;
}

.cta-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 3.5vw, 40px);
  color: var(--ink);
  margin-bottom: 20px;
  line-height: 1.25;
}

.cta-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--slate);
  font-weight: 300;
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════
   UTILITY CLASSES
   ═══════════════════════════════════════════ */
.bg-white { background: var(--white); }
.bg-cream { background: var(--cream); }
.bg-dark { background: var(--ink); }
.bg-warm { background: var(--warm); }

.text-white { color: var(--white); }
.text-copper { color: var(--copper); }
.text-slate { color: var(--slate); }

.py-section { padding: 120px 0; }
.py-section-sm { padding: 80px 0; }

.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }
.mb-24 { margin-bottom: 24px; }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.body-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--slate);
  font-weight: 300;
  margin-bottom: 20px;
}

/* ═══════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in { opacity: 0; animation: fadeUp 0.8s ease forwards; }
.fade-in-1 { animation-delay: 0.2s; }
.fade-in-2 { animation-delay: 0.4s; }
.fade-in-3 { animation-delay: 0.6s; }
.fade-in-4 { animation-delay: 0.8s; }

/* ═══════════════════════════════════════════
   SERVICE DETAIL (services page expanded)
   ═══════════════════════════════════════════ */
.service-detail {
  padding: 80px 0;
  border-bottom: 1px solid var(--mist);
}

.service-detail:last-child { border-bottom: none; }

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.service-detail-grid.reverse {
  grid-template-columns: 1.2fr 1fr;
}

.service-detail-number {
  font-family: 'DM Serif Display', serif;
  font-size: 72px;
  color: var(--copper-glow);
  line-height: 1;
  margin-bottom: 16px;
}

.service-detail h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 32px;
  color: var(--ink);
  margin-bottom: 20px;
  line-height: 1.2;
}

.service-detail-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-detail-item {
  display: flex;
  gap: 14px;
  align-items: start;
}

.service-detail-item svg {
  width: 20px;
  height: 20px;
  stroke: var(--copper);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 2px;
}

.service-detail-item span {
  font-size: 15px;
  color: var(--slate);
  font-weight: 400;
  line-height: 1.5;
}

/* ═══════════════════════════════════════════
   TIMELINE (About page)
   ═══════════════════════════════════════════ */
.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--mist);
}

.timeline-item {
  position: relative;
  padding-bottom: 48px;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-item::before {
  content: '';
  position: absolute;
  left: -45px;
  top: 6px;
  width: 12px;
  height: 12px;
  background: var(--copper);
  border-radius: 50%;
  border: 3px solid var(--cream);
}

.timeline-year {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--copper);
  margin-bottom: 8px;
}

.timeline-title {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 8px;
}

.timeline-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--slate);
  font-weight: 300;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .grid-2 { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-item { border-left: none; }
  .approach-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); }
  .approach-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .service-detail-grid,
  .service-detail-grid.reverse { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .nav { padding: 0 24px; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--ink);
    flex-direction: column;
    padding: 100px 40px 40px;
    gap: 24px;
    transition: right 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border-left: 1px solid rgba(184,115,51,0.15);
  }
  .nav-links.open { right: 0; }
  .mobile-toggle { display: flex; }
  
  .services-grid { grid-template-columns: 1fr; }
  .approach-grid { grid-template-columns: 1fr; }
  .approach-item { border: none !important; border-top: 1px solid rgba(255,255,255,0.08) !important; }
  .approach-item:first-child { border-top: none !important; }

  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 32px 24px; }

  .credentials-inner { justify-content: center; }
  .credentials-divider { display: none; }

  .py-section { padding: 80px 0; }
  .service-card { padding: 36px 28px; }
  
  .page-hero { padding: 120px 0 60px; }
  
  .footer-top { flex-direction: column; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary { width: 100%; justify-content: center; }
}
