/* =================================================
   WHAT WE DO PAGE — COMPLETE STYLES
   Fully styled: Hero · Services · Mission · Timeline · CTA
   ================================================= */

/* ─── We Do Hero ─── */
.we-do-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0d2e18 0%, #1a4a2e 40%, #2e7d32 100%);
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}

.hero-canvas {
  width: 100%;
  position: relative;
  z-index: 2;
}

/* Floating decorative circles */
.floating-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.floating-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.07);
  animation: floatCircle 8s ease-in-out infinite;
}

.circle-1 {
  width: 350px; height: 350px;
  top: -80px; left: -80px;
  background: radial-gradient(circle, rgba(184,134,11,0.08) 0%, transparent 70%);
  animation-delay: 0s;
}

.circle-2 {
  width: 500px; height: 500px;
  bottom: -150px; right: -100px;
  background: radial-gradient(circle, rgba(106,158,111,0.1) 0%, transparent 70%);
  animation-delay: 3s;
}

.circle-3 {
  width: 200px; height: 200px;
  top: 40%; left: 40%;
  background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
  animation-delay: 6s;
}

.floating-particles {
  position: absolute;
  inset: 0;
}

.floating-particles span {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(212,165,42,0.4);
  animation: sparkle 4s ease-in-out infinite;
}

.floating-particles span:nth-child(1) { top: 20%; left: 15%; animation-delay: 0s; }
.floating-particles span:nth-child(2) { top: 60%; left: 80%; animation-delay: 0.8s; }
.floating-particles span:nth-child(3) { top: 80%; left: 30%; animation-delay: 1.6s; }
.floating-particles span:nth-child(4) { top: 30%; left: 70%; animation-delay: 2.4s; }
.floating-particles span:nth-child(5) { top: 70%; left: 50%; animation-delay: 3.2s; }

.hero-content {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 4rem;
  max-width: 1240px;
  margin: 0 auto;
  padding: 6rem 2rem;
  position: relative;
  z-index: 2;
}

.hero-text-container {
  color: #fff;
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 2rem;
}

.title-main {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.title-accent {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-style: italic;
  font-weight: 400;
  color: rgba(212,165,42,0.9);
  line-height: 1.2;
}

.hero-description p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 2.5rem;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.hero-stats .stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-stats .stat-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #d4a52a;
  line-height: 1;
}

.hero-stats .stat-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* Interactive Globe */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.interactive-globe {
  position: relative;
}

.globe-container {
  position: relative;
  width: 260px;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.globe-sphere {
  width: 160px; height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a4a2e, #2e7d32, #3d9142);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 2px rgba(255,255,255,0.1),
    0 20px 60px rgba(0,0,0,0.4),
    inset 0 -10px 30px rgba(0,0,0,0.2);
  animation: globePulse 3s ease-in-out infinite;
  z-index: 2;
  position: relative;
}

.globe-content {
  font-size: 4rem;
  color: rgba(255,255,255,0.9);
  animation: globeSpin 20s linear infinite;
}

.globe-rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(212,165,42,0.3);
  animation: ringExpand 3s ease-in-out infinite;
}

.ring-1 { width: 190px; height: 190px; animation-delay: 0s; }
.ring-2 { width: 230px; height: 230px; animation-delay: 0.5s; border-color: rgba(106,158,111,0.2); }
.ring-3 { width: 260px; height: 260px; animation-delay: 1s; border-color: rgba(255,255,255,0.1); }

/* ─── Core Services — Redesigned Tab Layout ─── */
.core-services {
  padding: 100px 0 110px;
  background: #f5f0e8;
  position: relative;
  overflow: hidden;
}

/* Ghost background word */
.cs-bg-word {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Playfair Display', serif;
  font-size: clamp(6rem, 14vw, 14rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: rgba(26, 74, 46, 0.035);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  line-height: 1;
}

.cs-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Header */
.cs-header {
  text-align: center;
  margin-bottom: 56px;
}

.cs-header__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}

.cs-header__line {
  display: block;
  width: 32px;
  height: 1px;
  background: #c9a84c;
}

.cs-header__tag {
  font-family: 'Lato', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c9a84c;
}

.cs-header__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #1a4a2e;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.cs-header__title em {
  font-style: italic;
  color: #2e7d32;
}

.cs-header__sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: #8a7e6a;
  line-height: 1.6;
}

/* Scroll-reveal for section elements */
.svc-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1), transform 0.75s cubic-bezier(0.16,1,0.3,1);
}
.svc-reveal.revealed { opacity: 1; transform: translateY(0); }

/* ── Tab nav ── */
.cs-tabs {
  display: flex;
  align-items: stretch;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 16px rgba(26,74,46,0.07);
  margin-bottom: 2px;
  position: relative;
  overflow: hidden;
}

.cs-tab-indicator {
  position: absolute;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, #1a4a2e, #c9a84c);
  transition: left 0.35s cubic-bezier(0.4,0,0.2,1), width 0.35s cubic-bezier(0.4,0,0.2,1);
  border-radius: 2px 2px 0 0;
}

.cs-tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 18px 12px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a7e6a;
  transition: color 0.25s, background 0.25s;
  position: relative;
}

.cs-tab i {
  font-size: 1.1rem;
  transition: color 0.25s, transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}

.cs-tab:hover {
  background: rgba(26,74,46,0.03);
  color: #1a4a2e;
}

.cs-tab:hover i { transform: scale(1.15); }

.cs-tab--active {
  color: #1a4a2e;
  background: rgba(26,74,46,0.04);
}

.cs-tab--active i {
  color: #c9a84c;
}

/* ── Service panels ── */
.cs-panels {
  position: relative;
  background: #fff;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 8px 40px rgba(26,74,46,0.09);
  overflow: hidden;
  min-height: 480px;
}

.cs-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.cs-panel--active {
  display: grid;
  animation: panelFadeIn 0.45s cubic-bezier(0.16,1,0.3,1) forwards;
}

@keyframes panelFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Visual half */
.cs-panel__visual {
  position: relative;
  overflow: hidden;
  min-height: 440px;
}

.cs-panel__img-wrap {
  position: absolute;
  inset: 0;
}

.cs-panel__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 8s ease;
}

.cs-panel--active .cs-panel__img { transform: scale(1.04); }

.cs-panel__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,28,15,0.0) 0%,
    rgba(10,28,15,0.55) 100%
  );
}

.cs-panel__number {
  position: absolute;
  bottom: 20px;
  left: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  font-weight: 900;
  color: rgba(255,255,255,0.12);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

/* Body half */
.cs-panel__body {
  padding: 52px 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}

.cs-panel__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #1a4a2e;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a84c;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}

.cs-panel__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #1a4a2e;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.cs-panel__title em {
  font-style: italic;
  color: #2e7d32;
}

.cs-panel__desc {
  font-family: 'Lato', sans-serif;
  font-size: 0.925rem;
  color: #5a5040;
  line-height: 1.85;
  margin-bottom: 1.75rem;
}

.cs-panel__list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 1.5rem;
}

.cs-panel__list li {
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  color: #5a5040;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.4;
}

.cs-panel__list li i {
  color: #2e7d32;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.cs-panel__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: #1a4a2e;
  color: #c9a84c;
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  align-self: flex-start;
  position: relative;
  overflow: hidden;
  transition: color 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.35s;
}

.cs-panel__cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #c9a84c;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
  z-index: 0;
}

.cs-panel__cta:hover { color: #1a4a2e; box-shadow: 0 6px 24px rgba(26,74,46,0.2); }
.cs-panel__cta:hover::before { transform: scaleX(1); transform-origin: left; }
.cs-panel__cta span,
.cs-panel__cta i { position: relative; z-index: 1; }

/* Responsive */
@media (max-width: 900px) {
  .cs-panel { grid-template-columns: 1fr; }
  .cs-panel__visual { min-height: 240px; }
  .cs-panel__body { padding: 36px 32px; }
  .cs-tabs { flex-wrap: wrap; }
  .cs-tab { flex: 0 0 33.333%; padding: 14px 8px; }
  .cs-tab-indicator { display: none; }
  .cs-panel__list { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .cs-container { padding: 0 20px; }
  .cs-tab { flex: 0 0 50%; font-size: 0.62rem; }
  .cs-panel__body { padding: 28px 20px; }
  .cs-panel__title { font-size: 1.4rem; }
  .core-services { padding: 72px 0 80px; }
}

/* ─── Mission Statement Section ─── */
.mission-section {
  padding-block: 7rem;
  background: #f7f3ec;
  position: relative;
  overflow: hidden;
}

.mission-section::before {
  content: '';
  position: absolute;
  top: -60px; left: -60px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46,125,50,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.mission-container {
  max-width: 1240px;
  margin: 0 auto;
  padding-inline: 2rem;
}

.mission-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.mission-text h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 1.75rem;
  letter-spacing: -0.02em;
}

.mission-text h2::before {
  content: '';
  display: block;
  width: 3rem;
  height: 2px;
  background: linear-gradient(90deg, #2e7d32, #b8860b);
  margin-bottom: 1rem;
}

.mission-quote {
  margin-bottom: 1.75rem;
}

.mission-quote blockquote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-style: italic;
  color: #2e7d32;
  line-height: 1.7;
  padding-left: 1.5rem;
  border-left: 3px solid #b8860b;
  margin: 0;
}

.mission-details p {
  font-size: 0.95rem;
  color: #6a6a6a;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 0;
}

/* Mission Visual */
.mission-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-elements {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  position: relative;
}

.visual-elements > div {
  width: 110px; height: 110px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  transition: all 0.4s ease;
}

.element-1 {
  background: linear-gradient(135deg, #1a4a2e, #2e7d32);
  color: #fff;
  box-shadow: 0 12px 40px rgba(26,74,46,0.3);
  grid-column: 1; grid-row: 1;
  animation: elementFloat 4s ease-in-out infinite;
}

.element-2 {
  background: linear-gradient(135deg, #b8860b, #d4a52a);
  color: #fff;
  box-shadow: 0 12px 40px rgba(184,134,11,0.3);
  grid-column: 2; grid-row: 1;
  animation: elementFloat 4s ease-in-out infinite 1.3s;
}

.element-3 {
  background: linear-gradient(135deg, #6a9e6f, #2e7d32);
  color: #fff;
  box-shadow: 0 12px 40px rgba(106,158,111,0.3);
  grid-column: 1 / -1;
  justify-self: center;
  grid-row: 2;
  animation: elementFloat 4s ease-in-out infinite 2.6s;
}

.visual-elements > div:hover {
  transform: scale(1.1) translateY(-5px);
}

/* ─── Timeline Section ─── */
.timeline-section {
  padding-block: 7rem;
  background: #fff;
  position: relative;
}

.timeline-container {
  max-width: 900px;
  margin: 0 auto;
  padding-inline: 2rem;
}

.timeline-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: #1c1c1c;
  text-align: center;
  margin-bottom: 4rem;
  letter-spacing: -0.02em;
}

.timeline-title::after {
  content: '';
  display: block;
  width: 3rem;
  height: 2px;
  background: linear-gradient(90deg, #2e7d32, #b8860b);
  margin: 1rem auto 0;
}

.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #2e7d32, #b8860b, #2e7d32);
  border-radius: 2px;
}

.timeline-item {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
  position: relative;
  align-items: flex-start;
}

.timeline-item:last-child { margin-bottom: 0; }

.timeline-marker {
  flex-shrink: 0;
  position: relative;
}

.timeline-marker::before {
  content: '';
  position: absolute;
  left: -2.375rem;
  top: 50%;
  transform: translateY(-50%);
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #2e7d32;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px #2e7d32;
}

.timeline-marker .year {
  display: inline-block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #2e7d32;
  background: rgba(46,125,50,0.08);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  border: 1px solid rgba(46,125,50,0.15);
  min-width: 80px;
  text-align: center;
}

.timeline-content {
  flex: 1;
  padding-top: 0.35rem;
}

.timeline-content h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  font-size: 0.9375rem;
  color: #6a6a6a;
  line-height: 1.75;
  font-weight: 300;
  margin: 0;
}

/* ─── Advanced CTA Section ─── */
.advanced-cta {
  padding-block: 7rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-background {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a4a2e 0%, #2e7d32 55%, #3d9142 100%);
  z-index: 0;
}

.bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
}

.shape-1 {
  width: 400px; height: 400px;
  top: -100px; left: -100px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
}

.shape-2 {
  width: 600px; height: 600px;
  bottom: -200px; right: -150px;
  background: rgba(184,134,11,0.07);
  border: 1px solid rgba(184,134,11,0.1);
}

.shape-3 {
  width: 200px; height: 200px;
  top: 30%; left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
}

.advanced-cta .cta-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
  padding-inline: 2rem;
}

.advanced-cta .cta-content h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.advanced-cta .cta-content p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.25rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin-bottom: 3rem;
}

.cta-actions {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-primary,
.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.25rem;
  border-radius: 100px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
}

.cta-primary {
  background: #b8860b;
  color: #fff;
  border-color: #b8860b;
  box-shadow: 0 8px 28px rgba(184,134,11,0.35);
}

.cta-primary:hover {
  background: #d4a52a;
  border-color: #d4a52a;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(212,165,42,0.45);
}

.cta-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}

.cta-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.8);
  color: #fff;
  transform: translateY(-3px);
}

.cta-icon {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.cta-primary:hover .cta-icon,
.cta-secondary:hover .cta-icon {
  transform: translateX(4px);
}

/* ─── Keyframes ─── */
@keyframes floatCircle {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(15px, -20px) scale(1.03); }
}

@keyframes sparkle {
  0%, 100% { opacity: 0; transform: scale(0.5); }
  50%       { opacity: 1; transform: scale(1.5); }
}

@keyframes globePulse {
  0%, 100% { box-shadow: 0 0 0 2px rgba(255,255,255,0.1), 0 20px 60px rgba(0,0,0,0.4); }
  50%       { box-shadow: 0 0 0 8px rgba(255,255,255,0.05), 0 20px 60px rgba(0,0,0,0.4); }
}

@keyframes globeSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes ringExpand {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50%       { opacity: 0.15; transform: scale(1.05); }
}

@keyframes cardParticle {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.4; }
  50%       { transform: translateY(-20px) scale(1.5); opacity: 0.8; }
}

@keyframes elementFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual  { display: none; }
  .mission-content { grid-template-columns: 1fr; gap: 3rem; }
  .mission-visual  { display: none; }
}

@media (max-width: 768px) {
  .we-do-hero { margin-top: 72px; }
  .hero-content { padding: 4rem 1.5rem; }
  .hero-stats { gap: 1.75rem; }
  .hero-stats .stat-number { font-size: 1.75rem; }
  .timeline { padding-left: 1.5rem; }
  .timeline-item { flex-direction: column; gap: 0.75rem; }
  .timeline-marker::before { left: -1.875rem; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-primary,
  .cta-secondary { width: 100%; max-width: 280px; justify-content: center; }
}
