/* ============================================
   Hander Built Performance & Tuning
   Vibrant Modern — Forest Green + Off-White
   ============================================ */

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

:root {
  --green-900: #0a2e10;
  --green-800: #1B5E20;
  --green-700: #2E7D32;
  --green-600: #388E3C;
  --green-500: #4CAF50;
  --green-400: #66BB6A;
  --green-300: #A5D6A7;
  --green-200: #C8E6C9;
  --green-100: #E8F5E9;
  --cream: #F5F2EB;
  --cream-light: #FAFAF6;
  --cream-dark: #EDE8DC;
  --white: #FFFFFF;
  --text-dark: #1A1A1A;
  --text-mid: #3D3D3D;
  --text-light: #6B6B6B;
  --text-on-dark: #F5F2EB;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 2px 8px rgba(27, 94, 32, 0.08);
  --shadow-md: 0 8px 30px rgba(27, 94, 32, 0.12);
  --shadow-lg: 0 16px 50px rgba(27, 94, 32, 0.16);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  background: var(--cream-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

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

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

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

/* --- NAV --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 250, 246, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(27, 94, 32, 0.1);
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(250, 250, 246, 0.97);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  color: var(--green-800);
}

.nav-logo-text {
  display: none;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-menu a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-mid);
  transition: color var(--transition);
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green-600);
  transition: width var(--transition);
}

.nav-menu a:hover {
  color: var(--green-700);
}

.nav-menu a:hover::after {
  width: 100%;
}

.btn-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--green-800);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  transition: background var(--transition), transform var(--transition) !important;
}

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

.btn-nav:hover {
  background: var(--green-700);
  color: var(--white) !important;
  transform: translateY(-1px);
}

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

.nav-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--green-900);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 46, 16, 0.92) 0%,
    rgba(27, 94, 32, 0.85) 40%,
    rgba(46, 125, 50, 0.75) 70%,
    rgba(76, 175, 80, 0.6) 100%
  );
}

.hero-geo {
  position: absolute;
  z-index: 2;
  opacity: 0.12;
}

.hero-geo--left {
  width: 500px;
  height: 500px;
  background: var(--green-400);
  border-radius: 50%;
  top: -150px;
  left: -150px;
}

.hero-geo--right {
  width: 300px;
  height: 300px;
  background: var(--green-300);
  border-radius: 50%;
  bottom: -80px;
  right: 10%;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 18px;
  border-radius: 50px;
  color: var(--green-200);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

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

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

.hero-headline {
  font-size: clamp(3rem, 8vw, 6.5rem);
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.0;
}

.hero-headline br {
  display: none;
}

.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: rgba(245, 242, 235, 0.85);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.6;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--green-600);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(76, 175, 80, 0.4);
}

.btn-primary:hover {
  background: var(--green-500);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(76, 175, 80, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

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

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

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

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

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

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

.hero-stats {
  display: flex;
  gap: 32px;
  align-items: center;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--white);
  letter-spacing: 0.05em;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(245, 242, 235, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255, 255, 255, 0.5);
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* --- SECTION LABELS --- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green-700);
  margin-bottom: 16px;
}

.section-label-bar {
  width: 32px;
  height: 3px;
  background: var(--green-600);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--text-dark);
  margin-bottom: 20px;
}

/* --- SERVICES --- */
.services {
  position: relative;
  padding: 100px 0;
  background: var(--cream-light);
  overflow: hidden;
}

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

.service-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
  border: 1px solid rgba(27, 94, 32, 0.06);
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-600), var(--green-400));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  opacity: 0;
  transition: opacity var(--transition);
}

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

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--green-100);
  border-radius: var(--radius-md);
  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);
  transform: scale(1.05);
}

.service-card h3 {
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 12px;
}

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

.services-geo {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.geo-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
}

.geo-circle--1 {
  width: 400px;
  height: 400px;
  background: var(--green-600);
  bottom: -200px;
  right: -100px;
}

.geo-circle--2 {
  width: 200px;
  height: 200px;
  background: var(--green-400);
  top: 50px;
  left: -60px;
}

.geo-diamond {
  position: absolute;
  width: 100px;
  height: 100px;
  background: var(--green-500);
  opacity: 0.05;
  top: 100px;
  right: 60px;
  transform: rotate(45deg);
}

/* --- ABOUT --- */
.about {
  position: relative;
  padding: 100px 0;
  background: var(--cream);
  overflow: hidden;
}

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

.about-image-wrap {
  position: relative;
}

.about-image-frame {
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 3px solid var(--green-600);
  border-radius: var(--radius-lg);
  z-index: 0;
  opacity: 0.3;
}

.about-image-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 120px;
  height: 120px;
  background: var(--green-800);
  border-radius: var(--radius-lg);
  z-index: 0;
  opacity: 0.15;
}

.about-image-wrap img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  width: 100%;
  height: 700px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.about-content {
  position: relative;
  z-index: 1;
}

.about-text {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-list {
  list-style: none;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--text-mid);
  font-weight: 500;
}

.about-list-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--green-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-700);
  margin-top: 1px;
}

.about-geo {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.about-geo-stripe {
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 100%;
  background: linear-gradient(180deg, var(--green-100) 0%, transparent 100%);
  opacity: 0.4;
}

.about-geo-dot {
  position: absolute;
  bottom: 80px;
  left: 60px;
  width: 16px;
  height: 16px;
  background: var(--green-600);
  border-radius: 50%;
  opacity: 0.3;
}

/* --- CTA BANNER --- */
.cta-banner {
  position: relative;
  padding: 80px 0;
  background: var(--green-800);
  overflow: hidden;
}

.cta-geo {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.cta-geo-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  background: var(--white);
}

.cta-geo-circle--1 {
  width: 500px;
  height: 500px;
  top: -250px;
  right: -100px;
}

.cta-geo-circle--2 {
  width: 300px;
  height: 300px;
  bottom: -150px;
  left: -50px;
}

.cta-geo-tri {
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 80px 80px;
  border-color: transparent transparent rgba(255,255,255,0.06) transparent;
  top: 40px;
  left: 40px;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--white);
  margin-bottom: 20px;
}

.cta-title br {
  display: none;
}

.cta-text {
  font-size: 1.1rem;
  color: rgba(245, 242, 235, 0.8);
  margin-bottom: 36px;
  line-height: 1.7;
}

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

/* --- GALLERY --- */
.gallery {
  position: relative;
  padding: 100px 0;
  background: var(--cream-light);
  overflow: hidden;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 20px;
  margin-top: 48px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item--wide {
  grid-column: span 7;
}

.gallery-item:not(.gallery-item--wide) {
  grid-column: span 5;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 260px;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(10, 46, 16, 0.85), transparent);
  color: var(--white);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  transform: translateY(100%);
  transition: transform var(--transition);
}

.gallery-item:hover .gallery-item-overlay {
  transform: translateY(0);
}

.gallery-geo {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.gallery-geo-shape {
  position: absolute;
  opacity: 0.05;
  background: var(--green-600);
}

.gallery-geo-shape--1 {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  top: 40px;
  left: -60px;
}

.gallery-geo-shape--2 {
  width: 120px;
  height: 120px;
  top: 50%;
  right: 40px;
  transform: rotate(45deg);
}

/* --- CONTACT --- */
.contact {
  position: relative;
  padding: 100px 0;
  background: var(--cream);
  overflow: hidden;
}

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

.contact-text {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 36px;
  line-height: 1.7;
}

.contact-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

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

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

.contact-details strong {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.contact-details span,
.contact-details a {
  font-size: 0.95rem;
  color: var(--text-light);
  transition: color var(--transition);
}

.contact-details a:hover {
  color: var(--green-700);
}

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

.contact-form-wrap {
  position: relative;
}

.contact-form-bg {
  position: absolute;
  inset: 0;
  background: var(--green-800);
  border-radius: var(--radius-xl);
  opacity: 0.04;
}

.contact-form-title {
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 28px;
}

.contact-form {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(27, 94, 32, 0.06);
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--cream-light);
  transition: all var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-600);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.1);
}

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

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

.form-success {
  position: relative;
  text-align: center;
  padding: 48px 36px;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(27, 94, 32, 0.06);
}

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

.form-success h4 {
  font-size: 1.6rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-success p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.contact-geo {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.contact-geo-triangle {
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 60px 0 0 60px;
  border-color: transparent transparent var(--green-200) transparent;
  opacity: 0.3;
  bottom: 60px;
  right: 40px;
}

.contact-geo-circle {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--green-600);
  opacity: 0.04;
  top: -40px;
  left: -40px;
}

/* --- FOOTER --- */
.footer {
  position: relative;
  background: var(--green-900);
  color: var(--text-on-dark);
  padding: 64px 0 0;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  color: var(--white);
  line-height: 1.2;
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(245, 242, 235, 0.55);
  line-height: 1.7;
  max-width: 260px;
}

.footer-links h4,
.footer-contact h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  color: var(--green-300);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links li a,
.footer-contact li a,
.footer-contact li {
  font-size: 0.9rem;
  color: rgba(245, 242, 235, 0.6);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition);
}

.footer-links li a:hover,
.footer-contact li a:hover {
  color: var(--white);
}

.footer-links li a svg,
.footer-contact li svg {
  flex-shrink: 0;
  opacity: 0.7;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(245, 242, 235, 0.4);
}

.footer-geo {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.footer-geo-stripe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-600), var(--green-400), var(--green-600));
}

/* --- SCROLL REVEAL (progressive enhancement) --- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .reveal.revealed {
    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 (min-width: 640px) {
  .hero-headline br { display: block; }
  .cta-title br { display: block; }
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    gap: 48px;
  }

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

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(250, 250, 246, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 32px 24px;
    gap: 24px;
    border-bottom: 1px solid rgba(27, 94, 32, 0.1);
    transform: translateY(-120%);
    opacity: 0;
    transition: all var(--transition);
    pointer-events: none;
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-logo-text {
    display: inline;
  }

  .hero-content {
    padding: 100px 24px 60px;
  }

  .hero-stats {
    gap: 20px;
  }

  .hero-stat-num {
    font-size: 1.4rem;
  }

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

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

  .about-image-wrap img {
    height: 400px;
  }

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

  .gallery-item--wide,
  .gallery-item:not(.gallery-item--wide) {
    grid-column: span 1;
  }

  .gallery-item img {
    min-height: 220px;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    justify-content: center;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
  }

  .hero-stat-divider {
    display: none;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .contact-form {
    padding: 24px;
  }
}
