/* ============================================================
   Methodical Technologies — Main Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700;800&display=swap');

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-900: #1A3D1C;
  --green-800: #245227;
  --green-700: #2D6A30;
  --green-600: #3A7D3D;
  --green-400: #5BA85E;
  --green-100: #EAF3EA;
  --green-50:  #F4FAF4;

  --charcoal:  #1C1C1C;
  --slate:     #4A4A4A;
  --mid-gray:  #767676;
  --light-gray:#F0F0F0;
  --white:     #FFFFFF;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.14);

  --max-w: 1160px;
  --section-pad: 100px 24px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography ───────────────────────────────────────────── */
.display {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.25rem; font-weight: 700; }
h4 { font-size: 1rem;    font-weight: 600; }
p  { color: var(--slate); }

.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-700);
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--green-700);
  color: var(--white);
}
.btn-primary:hover { background: var(--green-800); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(45,106,48,0.35); }

.btn-outline {
  background: transparent;
  color: var(--green-700);
  border: 2px solid var(--green-700);
}
.btn-outline:hover { background: var(--green-700); color: var(--white); transform: translateY(-2px); }

.btn-white {
  background: var(--white);
  color: var(--green-800);
}
.btn-white:hover { background: var(--green-50); transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ── Navigation ───────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

#navbar.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}

.nav-logo img { height: 70px; width: auto; }
.nav-logo-placeholder {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--green-800);
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--green-700);
  transition: width 0.25s ease;
}
.nav-links a:hover { color: var(--green-700); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { margin-left: 12px; padding: 10px 22px; font-size: 0.88rem; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── Hero ─────────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  background: linear-gradient(145deg, var(--green-900) 0%, var(--green-700) 60%, var(--green-400) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  top: -100px; right: -100px;
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
  width: 100%;
}

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

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #7FFFA0;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(1.4); }
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 5.5vw, 4.4rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero-title .accent { color: #7FFFA0; }

.hero-tagline {
  font-size: 1.2rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
  font-style: italic;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.75;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-image-wrap {
  position: relative;
}
.hero-image-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3/4;
}
.hero-image-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-image-placeholder {
  width: 100%; height: 100%;
  min-height: 500px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.9rem;
}

.hero-card {
  position: absolute;
  background: white;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  font-size: 0.88rem;
}
.hero-card-left {
  bottom: 40px; left: -30px;
}
.hero-card-right {
  top: 60px; right: -30px;
}
.hero-card strong { display: block; font-size: 1.4rem; font-weight: 800; color: var(--green-700); }
.hero-card span   { color: var(--slate); font-size: 0.78rem; }

.scroll-indicator {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.3; }
}

/* ── Section Shared ───────────────────────────────────────── */
section { padding: var(--section-pad); }

.section-header { margin-bottom: 64px; }
.section-header.centered { text-align: center; }
.section-header .eyebrow { margin-bottom: 14px; }
.section-header h2 { margin-bottom: 20px; }
.section-header p  { font-size: 1.05rem; max-width: 560px; }
.section-header.centered p { margin: 0 auto; }

/* ── About ────────────────────────────────────────────────── */
#about { background: var(--white); }

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

.about-image-col { position: relative; align-self: start; margin-top: 20px; }

.about-photo-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3/4;
  max-width: 440px;
}
.about-photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-badge {
  position: absolute;
  bottom: -20px; right: 20px;
  background: var(--green-700);
  color: white;
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.about-badge strong { display: block; font-size: 1.8rem; font-weight: 800; }
.about-badge span   { font-size: 0.78rem; opacity: 0.85; }

.about-bg-shape {
  position: absolute;
  top: 30px; left: -20px;
  width: 440px; height: 440px;
  background: var(--green-50);
  border-radius: var(--radius-xl);
  z-index: -1;
}

.about-content { }
.about-content h2 { margin-bottom: 24px; }
.about-content p  { margin-bottom: 20px; line-height: 1.8; }
.about-content p:last-of-type { margin-bottom: 36px; }

.about-traits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}
.trait-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
}
.trait-icon {
  width: 36px; height: 36px;
  background: var(--green-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ── Services ─────────────────────────────────────────────── */
#services { background: var(--green-50); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 5px;
  background: linear-gradient(90deg, var(--green-700), var(--green-400));
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.service-icon {
  width: 56px; height: 56px;
  background: var(--green-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 24px;
}

.service-card h3 { margin-bottom: 12px; color: var(--charcoal); }
.service-card p  { font-size: 0.95rem; line-height: 1.75; }

.service-tags {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 50px;
  background: var(--green-100);
  color: var(--green-800);
}

/* ── Why Choose ───────────────────────────────────────────── */
#why {
  background: linear-gradient(160deg, var(--green-900) 0%, var(--green-700) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

#why .section-header h2 { color: var(--white); }
#why .section-header p  { color: rgba(255,255,255,0.7); }
#why .eyebrow            { color: #7FFFA0; }

.why-bg-shape {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  bottom: -200px; right: -100px;
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 64px;
}

.why-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: background 0.3s;
}
.why-card:hover { background: rgba(255,255,255,0.11); }

.why-card-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.why-card h3 { color: var(--white); margin-bottom: 12px; }
.why-card p  { color: rgba(255,255,255,0.68); font-size: 0.95rem; line-height: 1.75; }

.why-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat-item {
  background: rgba(255,255,255,0.06);
  padding: 36px 32px;
  text-align: center;
}
.stat-item strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: #7FFFA0;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-item span { color: rgba(255,255,255,0.65); font-size: 0.9rem; }

/* ── Testimonial / CTA Strip ──────────────────────────────── */
#cta-strip {
  background: var(--green-100);
  padding: 64px 24px;
  text-align: center;
}

.cta-strip-inner { max-width: 700px; margin: 0 auto; }
.cta-strip-inner h2 { margin-bottom: 16px; }
.cta-strip-inner p  { font-size: 1.05rem; margin-bottom: 32px; }

/* ── Contact ──────────────────────────────────────────────── */
#contact { background: var(--white); }

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

.contact-intro h2 { margin-bottom: 20px; }
.contact-intro p  { margin-bottom: 36px; font-size: 1.05rem; line-height: 1.8; }

.contact-methods { display: flex; flex-direction: column; gap: 20px; }
.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--green-50);
  border-radius: var(--radius-md);
  border: 1px solid var(--green-100);
  transition: box-shadow 0.2s;
}
.contact-method:hover { box-shadow: var(--shadow-sm); }
a.contact-method { text-decoration: none; cursor: pointer; }
.contact-method-icon {
  width: 44px; height: 44px;
  background: var(--green-700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: white;
  flex-shrink: 0;
}
.contact-method-text strong { display: block; font-size: 0.85rem; color: var(--mid-gray); font-weight: 500; margin-bottom: 2px; }
.contact-method-text span   { font-weight: 600; color: var(--charcoal); }

/* Contact Form */
.contact-form { background: var(--green-50); border-radius: var(--radius-xl); padding: 48px 40px; border: 1px solid var(--green-100); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #DDE8DD;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #ABABAB; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-700);
  box-shadow: 0 0 0 3px rgba(45,106,48,0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select   { appearance: none; cursor: pointer; }

.form-submit { width: 100%; justify-content: center; padding: 16px; font-size: 1rem; }

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--mid-gray);
  margin-top: 14px;
}

/* ── Footer ───────────────────────────────────────────────── */
#footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.6);
  padding: 60px 24px 32px;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-brand p { font-size: 0.9rem; line-height: 1.75; margin-top: 16px; max-width: 300px; }
.footer-logo { height: 64px; margin-bottom: 4px; }
.footer-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: white;
  font-weight: 700;
}

.footer-col h4 { color: white; font-size: 0.88rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a  { font-size: 0.9rem; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-col a:hover { color: #7FFFA0; }

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-bottom a:hover { color: #7FFFA0; }

/* ── Animations ───────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ── Nav Active State ─────────────────────────────────────── */
.nav-active {
  color: var(--green-700) !important;
}
.nav-active::after { width: 100% !important; }

/* ── Ghost Button (hero only) ─────────────────────────────── */
.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.9);
  border: 2px solid rgba(255,255,255,0.45);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.75);
  transform: translateY(-2px);
}

/* ── Page Hero (inner pages) ──────────────────────────────── */
.page-hero {
  position: relative;
  background: linear-gradient(145deg, var(--green-900) 0%, var(--green-700) 100%);
  padding: 160px 24px 80px;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }

/* ── Mission Strip (homepage) ─────────────────────────────── */
#mission-strip {
  padding: var(--section-pad);
  background: var(--white);
}
.mission-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.mission-text h2  { margin-bottom: 20px; }
.mission-text p   { line-height: 1.8; }
.mission-pillars  { display: flex; flex-direction: column; gap: 24px; }
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--green-50);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--green-700);
}
.pillar-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.pillar h4   { margin-bottom: 4px; color: var(--charcoal); }
.pillar p    { font-size: 0.9rem; margin: 0; }

/* ── Services Teaser (homepage) ───────────────────────────── */
#services-teaser {
  padding: var(--section-pad);
  background: var(--green-50);
}
.teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.teaser-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}
.teaser-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.teaser-card h3    { margin: 16px 0 10px; }
.teaser-card p     { font-size: 0.95rem; line-height: 1.7; }

/* ── Process Steps (services page) ───────────────────────── */
#how-we-work {
  padding: var(--section-pad);
  background: linear-gradient(160deg, var(--green-900) 0%, var(--green-700) 100%);
  position: relative;
  overflow: hidden;
}
#how-we-work::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
#how-we-work .section-header h2 { color: white; }
#how-we-work .section-header p  { color: rgba(255,255,255,0.7); }
#how-we-work .eyebrow            { color: #7FFFA0; }

.process-steps {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 16px;
  position: relative;
  z-index: 1;
}
.process-step {
  flex: 1;
  text-align: center;
  padding: 40px 28px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  transition: background 0.3s;
}
.process-step:hover { background: rgba(255,255,255,0.14); }
.process-connector {
  width: 48px;
  height: 2px;
  background: rgba(255,255,255,0.25);
  flex-shrink: 0;
  margin-top: 72px;
}
.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 800;
  color: #7FFFA0;
  line-height: 1;
  margin-bottom: 16px;
}
.process-step h3 { color: white; margin-bottom: 10px; }
.process-step p  { font-size: 0.92rem; line-height: 1.75; color: rgba(255,255,255,0.7); }

/* ── Why Strip (contact page) ────────────────────────────── */
#why-strip {
  padding: var(--section-pad);
  background: var(--green-50);
}
.why-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-strip-item {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.3s, box-shadow 0.3s;
}
.why-strip-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.why-strip-icon { font-size: 2rem; margin-bottom: 14px; }
.why-strip-item h4 { margin-bottom: 8px; }
.why-strip-item p  { font-size: 0.88rem; line-height: 1.65; }

/* ── Responsive ───────────────────────────────────────────── */
/* ── Contact main section ─────────────────────────────────── */
#contact-main { padding: var(--section-pad); background: var(--white); }

/* ── About main section ───────────────────────────────────── */
#about-main  { padding: var(--section-pad); background: var(--white); }

/* ── Services main section ────────────────────────────────── */
#services-main { padding: var(--section-pad); background: var(--white); }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner          { grid-template-columns: 1fr; }
  .hero-image-wrap     { display: none; }
  .about-grid          { grid-template-columns: 1fr; gap: 40px; }
  .about-image-col     { display: block; margin-top: 0; }
  .about-photo-wrap    { max-width: 100%; aspect-ratio: 4/3; }
  .about-photo-wrap img { object-position: center 20%; }
  .about-bg-shape      { display: none; }
  .services-grid       { grid-template-columns: repeat(2, 1fr); }
  .contact-grid        { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner        { grid-template-columns: 1fr 1fr; }
  .mission-strip-inner { grid-template-columns: 1fr; gap: 48px; }
  .teaser-grid         { grid-template-columns: 1fr 1fr; }
  .why-strip-grid      { grid-template-columns: repeat(2, 1fr); }
  .process-steps       { flex-direction: column; align-items: stretch; }
  .process-connector   { width: 2px; height: 32px; margin: 0 auto; }
}

@media (max-width: 768px) {
  :root { --section-pad: 60px 20px; }

  /* Nav */
  .nav-inner     { height: 72px; }
  .nav-links     { display: none; flex-direction: column; position: fixed; top: 72px; left: 0; right: 0; background: white; padding: 24px 20px; box-shadow: var(--shadow-md); gap: 20px; z-index: 999; }
  .nav-links.open { display: flex; }
  .nav-toggle    { display: flex; }
  .nav-cta       { display: none; }
  .nav-logo img  { height: 52px; }

  /* Hero */
  #hero          { padding: 100px 20px 60px; min-height: auto; }
  .hero-title    { font-size: 2.6rem; }
  .hero-desc     { font-size: 0.98rem; }
  .hero-actions  { flex-direction: column; }
  .hero-eyebrow  { font-size: 0.7rem; }
  .scroll-indicator { display: none; }

  /* Page hero */
  .page-hero     { padding: 120px 20px 60px; }
  .page-hero-inner h1 { font-size: 2.2rem; }

  /* About */
  .about-grid    { grid-template-columns: 1fr; gap: 32px; }
  .about-photo-wrap { aspect-ratio: 3/4; max-width: 320px; margin: 0 auto; }
  .about-photo-wrap img { object-position: center top; }
  .about-traits  { grid-template-columns: 1fr; }
  .about-content h2 { font-size: 1.7rem; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .service-card  { padding: 28px 22px; }
  .teaser-grid   { grid-template-columns: 1fr; }

  /* Why grid */
  .why-grid      { grid-template-columns: 1fr; }
  .why-stats     { grid-template-columns: 1fr; }
  .why-strip-grid { grid-template-columns: 1fr; }

  /* Process steps */
  .process-steps  { flex-direction: column; }
  .process-connector { width: 2px; height: 24px; margin: 0 auto; }
  .step-number   { font-size: 2.2rem; }

  /* Contact form */
  .form-row      { grid-template-columns: 1fr; }
  .contact-form  { padding: 28px 20px; }

  /* Mission */
  .mission-strip-inner { grid-template-columns: 1fr; gap: 36px; }

  /* Footer */
  .footer-inner  { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
  .footer-logo   { height: 48px; }

  /* CTA strip */
  #cta-strip     { padding: 56px 20px; }
  .cta-strip-inner h2 { font-size: 1.6rem; }

  /* Section headers */
  .section-header { margin-bottom: 40px; }
  h2             { font-size: 1.7rem; }
}
