/* ========================================
   The Wheeler Group — V4
   Warmer palette, larger type, polished animations
   ======================================== */

:root {
  --bg: #F5F1EB;
  --bg-warm: #EDE8E0;
  --surface: #FFFFFF;
  --dark: #1C1C1C;
  --dark-deep: #141414;
  --olive: #3D4A3C;
  --olive-light: #4A5A49;
  --coral: #D4654A;
  --coral-dark: #B8513A;
  --coral-light: #F4DDD6;
  --text: #1C1C1C;
  --text-mid: #4A4A4A;
  --text-muted: #7A7A7A;
  --border: #DDD9D1;

  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;

  --radius: 12px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 18px;
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

a { color: inherit; text-decoration: none; }

/* ---- Nav ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 24px 0;
  transition: all 0.4s var(--ease);
}

.nav.scrolled {
  background: rgba(245, 241, 235, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
}

.nav-logo sup {
  font-size: 9px;
  vertical-align: super;
  margin-left: 1px;
}

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

.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-mid);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--text); }

.nav-cta {
  text-decoration: underline !important;
  text-underline-offset: 3px;
  color: var(--text) !important;
  font-weight: 500 !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.3s var(--ease);
}

.nav-toggle.active span:first-child { transform: rotate(45deg) translate(3px, 4px); }
.nav-toggle.active span:last-child { transform: rotate(-45deg) translate(3px, -4px); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  border: none;
}

.btn-primary {
  background: var(--coral);
  color: white;
  padding: 18px 40px;
  border-radius: 100px;
}

.btn-primary:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 101, 74, 0.3);
}

.btn-light {
  background: white;
  color: var(--dark);
}

.btn-light:hover {
  background: #f0f0f0;
  box-shadow: 0 8px 30px rgba(255,255,255,0.25);
}

.btn-text {
  background: none;
  color: var(--text-mid);
  padding: 18px 0;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.btn-text:hover { color: var(--text); }

.btn-full { width: 100%; }

/* ---- Hero ---- */
.hero {
  padding: 180px 0 0;
}

.hero-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: start;
  padding-bottom: 80px;
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--coral);
  margin-bottom: 20px;
}

.hero-small {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.8vw, 60px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  color: var(--dark);
}

.hero-heading em {
  font-style: italic;
  color: var(--coral);
}

.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-mid);
  max-width: 560px;
  margin-bottom: 44px;
}

.hero-ctas {
  display: flex;
  gap: 20px;
  align-items: center;
}

/* Hero image band */
.hero-image {
  width: 100%;
  padding: 0 48px;
}

.hero-image-inner {
  width: 100%;
  height: 440px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg,
    var(--olive) 0%,
    #2D3A2C 25%,
    var(--olive-light) 50%,
    #5A6B59 75%,
    var(--olive) 100%
  );
  transition: transform 0.1s linear;
  will-change: transform;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(212, 101, 74, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(180, 200, 170, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(100, 130, 90, 0.4) 0%, transparent 50%);
  mix-blend-mode: overlay;
}

.hero-image-overlay {
  position: absolute;
  bottom: 24px;
  left: 32px;
  right: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-location, .hero-scroll {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.02em;
}

/* ---- Logo Bar ---- */
.logo-bar {
  padding: 52px 0;
  border-bottom: 1px solid var(--border);
}

.logo-bar .container {
  display: flex;
  align-items: center;
  gap: 48px;
}

.logo-bar-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.logo-bar-track {
  display: flex;
  align-items: center;
  gap: 40px;
  flex: 1;
  overflow: hidden;
}

.logo-placeholder {
  font-size: 16px;
  font-weight: 600;
  color: var(--border);
  letter-spacing: -0.01em;
  white-space: nowrap;
  padding: 12px 28px;
  border: 1.5px dashed var(--border);
  border-radius: 8px;
  flex-shrink: 0;
}

/* ---- Stats ---- */
.stats {
  padding: 100px 0;
}

.stats-header {
  margin-bottom: 48px;
}

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

.stat {
  padding: 44px;
  border-left: 1px solid var(--border);
}

.stat:first-child { border-left: none; }

.stat-featured .stat-number {
  color: var(--coral);
}

.stat-number {
  display: block;
  font-family: var(--font-body);
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--dark);
  margin-bottom: 10px;
  transition: transform 0.6s var(--ease), opacity 0.6s var(--ease);
}

.stat-number.counted {
  animation: countPop 0.5s var(--ease);
}

@keyframes countPop {
  0% { transform: scale(0.8); opacity: 0.4; }
  50% { transform: scale(1.04); }
  100% { transform: scale(1); opacity: 1; }
}

.stat-label {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.5;
}

.stats-context {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.stats-context p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.7;
}

/* ---- Section Labels & Headings ---- */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--coral);
  margin-bottom: 24px;
}

.section-label-light { color: rgba(255,255,255,0.5); }

.section-heading,
.editorial-heading {
  font-family: var(--font-body);
  font-size: clamp(34px, 4.2vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--dark);
}

.section-intro {
  margin-bottom: 72px;
}

.section-intro .section-heading,
.section-intro .editorial-heading {
  margin-top: 8px;
}

/* ---- About ---- */
.about {
  padding: 140px 0;
  border-top: 1px solid var(--border);
}

.about-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 80px;
}

.about-right .editorial-heading {
  margin-bottom: 44px;
}

.about-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-bottom: 52px;
}

.about-columns p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-mid);
}

.about-stats {
  display: flex;
  gap: 60px;
  padding-top: 44px;
  border-top: 1px solid var(--border);
}

.about-stat-num {
  display: block;
  font-family: var(--font-body);
  font-size: 40px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.about-stat-label {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ---- Team ---- */
.team {
  padding: 140px 0;
  background: var(--bg-warm);
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.team-member {
  display: flex;
  gap: 28px;
  align-items: start;
}

.team-photo {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  width: 140px;
  height: 170px;
  flex-shrink: 0;
  background: var(--border);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(100%);
}

.team-info h3 {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
  color: var(--dark);
}

.team-role {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--coral);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.team-info p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-mid);
  margin-bottom: 16px;
}

.team-links {
  display: flex;
  gap: 16px;
}

.team-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.team-link:hover {
  color: var(--coral);
}

/* ---- Services — Tabbed ---- */
.services {
  padding: 140px 0;
  background: var(--bg-warm);
}

.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 72px;
}

.services-header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}

.services-header-right p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-mid);
}

/* Tabs nav */
.tabs-nav {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.tab-btn {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  background: none;
  border: none;
  padding: 18px 28px;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  transition: color 0.2s;
}

.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
}

.tab-btn:hover {
  color: var(--text);
}

.tab-btn.active {
  color: var(--dark);
  font-weight: 600;
}

.tab-btn.active::after {
  transform: scaleX(1);
}

/* Tab panels */
.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
  animation: tabFade 0.5s var(--ease);
}

@keyframes tabFade {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.tab-content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  padding: 60px 0;
  align-items: start;
}

.tab-num {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--coral);
  margin-bottom: 16px;
}

.tab-text h3 {
  font-family: var(--font-body);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  color: var(--dark);
}

.tab-text p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 32px;
}

.tab-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tab-list li {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  padding-left: 22px;
  position: relative;
}

.tab-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
}

/* Tab visual card */
.tab-visual-card {
  background: var(--dark-deep);
  border-radius: 16px;
  padding: 48px;
  color: white;
}

.tab-visual-stat {
  display: block;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.tab-visual-label {
  display: block;
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

.tab-visual-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 32px 0;
}

/* ---- Thesis ---- */
.thesis {
  padding: 160px 0;
  background: var(--dark-deep);
  color: white;
}

.thesis-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.thesis-heading {
  color: white !important;
}

.thesis-text {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
}

.thesis-focus {
  margin-top: 52px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.thesis-focus-item {
  display: flex;
  gap: 20px;
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s var(--ease);
}

.thesis-focus-item:hover {
  padding-left: 8px;
}

.thesis-focus-item:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.thesis-focus-num {
  font-size: 13px;
  font-weight: 600;
  color: var(--coral);
  padding-top: 3px;
  flex-shrink: 0;
}

.thesis-focus-item strong {
  display: block;
  font-size: 17px;
  font-weight: 600;
  color: white;
  margin-bottom: 6px;
}

.thesis-focus-item p {
  font-size: 15px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

/* ---- Testimonials ---- */
.testimonials {
  padding: 140px 0;
}

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

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.5s var(--ease);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.08);
  border-color: transparent;
}

.testimonial-card-accent {
  background: var(--coral);
  border-color: var(--coral);
  color: white;
}

.testimonial-card-accent .testimonial-meta span {
  color: rgba(255,255,255,0.6);
}

.testimonial-quote {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.7;
  margin-bottom: 36px;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-meta strong {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
}

.testimonial-meta span {
  font-size: 14px;
  color: var(--text-muted);
}

/* ---- CTA Section ---- */
.cta-section {
  padding: 0 0 140px;
}

.cta-box {
  background: var(--olive);
  border-radius: 24px;
  padding: 88px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  color: white;
}

.cta-heading {
  font-family: var(--font-body);
  font-size: clamp(34px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 36px;
}

.cta-quote blockquote {
  font-family: var(--font-body);
  font-size: 21px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
}

.cta-quote cite {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 15px;
  color: rgba(255,255,255,0.4);
}

/* ---- Contact ---- */
.contact {
  padding: 140px 0;
  background: var(--bg-warm);
}

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

.contact-left .editorial-heading {
  margin-bottom: 20px;
}

.contact-sub {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.contact-email {
  font-size: 17px;
  font-weight: 500;
  color: var(--coral);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s;
}

.contact-email:hover { color: var(--coral-dark); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.01em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 16px 18px;
  font-size: 16px;
  font-family: var(--font-body);
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(212, 101, 74, 0.1);
}

.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%237A7A7A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 130px;
}

/* ---- Footer ---- */
.footer {
  padding: 80px 0 40px;
  background: var(--dark-deep);
  color: white;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}

.footer-brand .nav-logo {
  color: white;
  font-size: 17px;
  font-weight: 600;
}

.footer-brand p {
  font-size: 15px;
  color: rgba(255,255,255,0.4);
  margin-top: 8px;
}

.footer-nav {
  display: flex;
  gap: 80px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col-title {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  margin-bottom: 6px;
}

.footer-col a {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}

.footer-col a:hover { color: white; }

.footer-bottom {
  font-size: 14px;
  color: rgba(255,255,255,0.25);
}

/* ---- Animations ---- */

/* Section-level fade up */
.reveal-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Individual items */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.reveal:nth-child(1) { transition-delay: 0s; }
.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal:nth-child(5) { transition-delay: 0.32s; }
.reveal:nth-child(6) { transition-delay: 0.4s; }

/* Reveal children (for grouped stagger) */
.reveal-child {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.reveal-child.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Responsive ---- */
@media (max-width: 1000px) {
  .container { padding: 0 28px; }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-left { display: flex; gap: 20px; align-items: baseline; }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-columns {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-header {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .tab-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .tab-visual-card {
    max-width: 400px;
  }

  .thesis-layout,
  .contact-layout,
  .cta-box {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .cta-box { padding: 56px 40px; }

  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat:nth-child(3) { border-left: none; }

  .logo-bar .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .logo-bar-track {
    flex-wrap: wrap;
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  body { font-size: 16px; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 24px 20px;
    gap: 16px;
  }

  .nav-links.active { display: flex; }
  .nav-toggle { display: flex; }

  .hero { padding: 130px 0 0; }
  .hero-heading { font-size: 34px; }

  .hero-left {
    flex-direction: column;
    gap: 8px;
  }

  .hero-image-inner { height: 280px; }
  .hero-image { padding: 0 20px; }

  .stats { padding: 80px 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat { padding: 24px; }
  .stat-number { font-size: 34px; }

  .about-stats { flex-wrap: wrap; gap: 32px; }

  .team-photo {
    width: 110px;
    height: 135px;
  }

  .tabs-nav {
    gap: 0;
    padding-bottom: 0;
  }

  .tab-btn {
    padding: 14px 16px;
    font-size: 13px;
  }

  .tab-content { padding: 36px 0; }
  .tab-text h3 { font-size: 24px; }

  .testimonials-grid { grid-template-columns: 1fr; }

  .cta-box {
    padding: 40px 28px;
    border-radius: 16px;
  }

  .form-row { grid-template-columns: 1fr; }

  .footer-top {
    flex-direction: column;
    gap: 40px;
  }

  .footer-nav { gap: 48px; }
}
