/* ===================================
   Bentley's Auto Clinic — Styles
   =================================== */

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

:root {
  --green-900: #0B1F15;
  --green-800: #1B4332;
  --green-700: #2D6A4F;
  --green-600: #40916C;
  --green-500: #52B788;
  --green-400: #74C69D;
  --green-300: #95D5B2;
  --green-200: #B7E4C7;
  --green-100: #D8F3DC;
  --cream-50: #FAFAF7;
  --cream-100: #F5F4F0;
  --cream-200: #F0EFEB;
  --cream-300: #E8E6E0;
  --warm-50: #FDFCFA;
  --warm-100: #F7F5F0;
  --warm-200: #EDEBE5;
  --warm-300: #E0DDD5;
  --text-900: #0D1A12;
  --text-800: #1A2E22;
  --text-700: #2C4235;
  --text-600: #3D5A4A;
  --text-500: #5A7A68;
  --text-400: #7A9486;
  --text-300: #9AB0A4;
  --white: #FFFFFF;
  --shadow-sm: 0 1px 3px rgba(27, 67, 50, 0.06), 0 1px 2px rgba(27, 67, 50, 0.04);
  --shadow-md: 0 4px 16px rgba(27, 67, 50, 0.08), 0 2px 6px rgba(27, 67, 50, 0.05);
  --shadow-lg: 0 12px 40px rgba(27, 67, 50, 0.12), 0 4px 12px rgba(27, 67, 50, 0.07);
  --shadow-xl: 0 24px 60px rgba(27, 67, 50, 0.15), 0 8px 20px rgba(27, 67, 50, 0.08);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-2xl: 36px;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-body);
  color: var(--text-800);
  background-color: var(--cream-200);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--green-800);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  z-index: 1000;
  font-size: 0.875rem;
  font-weight: 500;
  transition: top var(--transition);
}

.skip-link:focus {
  top: 16px;
}

/* --- Typography --- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-700);
  background: var(--green-100);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-label.light {
  color: var(--green-200);
  background: rgba(255, 255, 255, 0.15);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-900);
  margin-bottom: 16px;
}

.section-title.light {
  color: var(--white);
}

.section-title em.accent {
  font-style: italic;
  color: var(--green-600);
}

.section-title em.accent-light {
  font-style: italic;
  color: var(--green-300);
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--text-600);
  max-width: 560px;
  line-height: 1.7;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--green-800);
  color: var(--white);
  border-color: var(--green-800);
  box-shadow: 0 4px 16px rgba(27, 67, 50, 0.3);
}

.btn-primary:hover {
  background: var(--green-700);
  border-color: var(--green-700);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27, 67, 50, 0.35);
}

.btn-secondary {
  background: var(--white);
  color: var(--green-800);
  border-color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
  background: var(--cream-100);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-white {
  background: var(--white);
  color: var(--green-800);
  border-color: var(--white);
  box-shadow: var(--shadow-lg);
}

.btn-white:hover {
  background: var(--cream-100);
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.btn-white-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-white-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* --- Header --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(240, 239, 235, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(27, 67, 50, 0.06);
  transition: all var(--transition);
}

.site-header.scrolled {
  background: rgba(250, 250, 247, 0.95);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--green-800);
  color: var(--white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 400;
  box-shadow: var(--shadow-sm);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--text-900);
}

.logo-tag {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-700);
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 8px 16px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-700);
  border-radius: 100px;
  transition: all var(--transition);
}

.site-nav a:hover {
  color: var(--green-800);
  background: var(--green-100);
}

.nav-cta {
  background: var(--green-800) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  margin-left: 8px;
}

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

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  position: relative;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.menu-toggle:hover {
  background: var(--green-100);
}

.hamburger {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 14px;
  display: block;
}

.hamburger::before,
.hamburger::after,
.hamburger span {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--green-800);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger::before { top: 0; }
.hamburger span { top: 50%; transform: translate(-50%, -50%); }
.hamburger::after { bottom: 0; }

.menu-toggle[aria-expanded="true"] .hamburger::before {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .hamburger span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .hamburger::after {
  bottom: 0;
  transform: translateY(0) rotate(-45deg);
}

/* --- Hero --- */
.hero {
  padding-top: 72px;
  background: var(--cream-200);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: 60px 0 120px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--green-700);
  background: var(--green-100);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--green-500);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.4); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text-900);
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-600);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-700);
}

.trust-item svg {
  color: var(--green-600);
  flex-shrink: 0;
}

/* Hero visual */
.hero-visual {
  position: relative;
  height: 100%;
  min-height: 560px;
}

.hero-img-main {
  width: 100%;
  height: 560px;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img-float {
  position: absolute;
  bottom: -24px;
  left: -40px;
  width: 240px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--cream-200);
}

.hero-img-float img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.float-badge {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: var(--white);
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--text-800);
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: var(--shadow-md);
}

.float-badge-icon {
  color: var(--green-600);
}

.hero-stat-card {
  position: absolute;
  top: 24px;
  right: -20px;
  background: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--green-700);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-600);
  line-height: 1.4;
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 80px;
}

/* --- Services --- */
.services {
  background: var(--cream-200);
  padding: 80px 0 100px;
}

.services .section-label,
.services .section-title,
.services .section-subtitle {
  text-align: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.services .section-subtitle {
  margin-bottom: 56px;
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(27, 67, 50, 0.04);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-500), var(--green-300));
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--green-100);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-700);
  margin-bottom: 20px;
  transition: all var(--transition);
}

.service-card:hover .service-icon {
  background: var(--green-800);
  color: var(--white);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-900);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.9375rem;
  color: var(--text-600);
  line-height: 1.7;
}

/* --- About --- */
.about {
  background: var(--white);
  padding: 100px 0;
}

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

.about-visual {
  position: relative;
}

.about-img-stack {
  position: relative;
  height: 520px;
}

.about-img-main {
  width: 80%;
  height: 440px;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 2;
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--white);
  z-index: 3;
}

.about-img-accent img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.about-content .section-label {
  align-self: flex-start;
}

.about-body {
  font-size: 1.0625rem;
  color: var(--text-600);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--cream-200);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.value-item:hover {
  background: var(--green-100);
}

.value-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--green-800);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.value-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-800);
  line-height: 1.5;
  padding-top: 6px;
}

.btn-about {
  margin-top: 8px;
}

/* --- Why Us --- */
.why-us {
  background: var(--green-800);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(82, 183, 136, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.why-us::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(116, 198, 157, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.why-us-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.why-us-body {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 40px;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.why-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
}

.why-number {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--green-500);
  line-height: 1;
  padding-top: 4px;
}

.why-text h4 {
  font-family: var(--font-display);
  font-size: 1.1875rem;
  color: var(--white);
  margin-bottom: 6px;
}

.why-text p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

.why-us-visual {
  position: relative;
}

.why-img-block {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  height: 520px;
}

.why-img-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-quote-card {
  position: absolute;
  bottom: -32px;
  left: -24px;
  background: var(--white);
  padding: 28px 32px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  max-width: 320px;
}

.why-quote-card svg {
  color: var(--green-400);
  margin-bottom: 12px;
}

.why-quote-card p {
  font-size: 0.9375rem;
  font-style: italic;
  color: var(--text-700);
  line-height: 1.7;
  margin-bottom: 12px;
}

.quote-attr {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--green-700);
  font-style: normal;
}

/* --- Reviews --- */
.reviews {
  background: var(--cream-200);
  padding: 100px 0;
}

.reviews .section-label,
.reviews .section-title,
.reviews .section-subtitle {
  text-align: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.reviews .section-subtitle {
  margin-bottom: 56px;
}

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

.review-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(27, 67, 50, 0.04);
  transition: all var(--transition);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.review-stars {
  display: flex;
  gap: 4px;
  color: var(--green-500);
  margin-bottom: 20px;
}

.review-text {
  font-size: 1rem;
  color: var(--text-700);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.review-attr {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.review-name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-900);
}

.review-location {
  font-size: 0.8125rem;
  color: var(--text-400);
}

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--green-700) 0%, var(--green-900) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.cta-content {
  flex: 1;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.cta-body {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  max-width: 480px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}

/* --- Contact --- */
.contact {
  background: var(--white);
  padding: 100px 0;
}

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

.contact-body {
  font-size: 1.0625rem;
  color: var(--text-600);
  line-height: 1.8;
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.detail-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--green-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-700);
}

.detail-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.detail-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-400);
}

.detail-value,
.detail-text a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-800);
  transition: color var(--transition);
}

.detail-text a:hover {
  color: var(--green-700);
}

.contact-map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.contact-form-wrap {
  background: var(--cream-200);
  border-radius: var(--radius-2xl);
  padding: 40px;
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-900);
  margin-bottom: 28px;
}

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

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-700);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--cream-300);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text-900);
  background: var(--white);
  transition: all var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-400);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(82, 183, 136, 0.15);
}

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

.form-success {
  text-align: center;
  padding: 40px 20px;
}

.success-icon {
  width: 64px;
  height: 64px;
  background: var(--green-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--green-700);
}

.form-success h4 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-900);
  margin-bottom: 8px;
}

.form-success p {
  font-size: 0.9375rem;
  color: var(--text-600);
  line-height: 1.7;
}

/* --- Footer --- */
.site-footer {
  background: var(--green-900);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  margin-bottom: 16px;
}

.footer-logo .logo-mark {
  background: var(--green-700);
}

.footer-tagline {
  font-size: 0.9375rem;
  line-height: 1.7;
  max-width: 300px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--green-300);
}

.footer-contact address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.9375rem;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
}

.footer-contact a:hover {
  color: var(--green-300);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 24px 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
}

/* --- Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero-grid {
    gap: 32px;
  }
  
  .hero-visual {
    min-height: 480px;
  }
  
  .hero-img-main {
    height: 480px;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-grid,
  .why-us-inner,
  .contact-grid {
    gap: 40px;
  }
  
  .why-img-block {
    height: 420px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .site-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(250, 250, 247, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 16px 20px 24px;
    border-bottom: 1px solid rgba(27, 67, 50, 0.06);
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    opacity: 0;
    transition: all var(--transition);
    pointer-events: none;
  }
  
  .site-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  
  .site-nav ul {
    flex-direction: column;
    gap: 4px;
    width: 100%;
  }
  
  .site-nav a {
    display: block;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    width: 100%;
  }
  
  .nav-cta {
    margin-left: 0 !important;
    text-align: center;
    margin-top: 8px;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 40px 0 100px;
    gap: 40px;
  }
  
  .hero-visual {
    min-height: 0;
    order: -1;
  }
  
  .hero-img-main {
    height: 360px;
  }
  
  .hero-img-float {
    left: 16px;
    bottom: -16px;
    width: 180px;
  }
  
  .hero-img-float img {
    height: 120px;
  }
  
  .hero-stat-card {
    right: 16px;
    top: 16px;
  }
  
  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .hero-actions .btn {
    justify-content: center;
  }
  
  .hero-trust {
    gap: 16px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .about-grid,
  .why-us-inner,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-img-stack {
    height: 360px;
  }
  
  .about-img-main {
    height: 300px;
    width: 90%;
  }
  
  .about-img-accent img {
    height: 130px;
  }
  
  .about-values {
    grid-template-columns: 1fr;
  }
  
  .why-img-block {
    height: 320px;
  }
  
  .why-quote-card {
    position: relative;
    bottom: auto;
    left: auto;
    max-width: 100%;
    margin-top: 16px;
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-inner {
    flex-direction: column;
    text-align: center;
  }
  
  .cta-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-actions .btn {
    justify-content: center;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-form-wrap {
    padding: 28px 20px;
  }
}

@media (max-width: 480px) {
  .hero-img-main {
    height: 280px;
  }
  
  .hero-img-float {
    width: 140px;
  }
  
  .hero-stat-card {
    padding: 14px 16px;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .services-grid {
    gap: 16px;
  }
  
  .service-card {
    padding: 28px 22px;
  }
}
