/* ================================================================
   TRANSFORMATION LANDSCAPE — Premium CSS Design System
   ================================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&display=swap');

/* ── CSS Custom Properties ── */
:root {
  /* Brand Colors */
  --green-950: #071A10;
  --green-900: #0D2818;
  --green-800: #1B3A2D;
  --green-700: #1E4D35;
  --green-600: #2D6A4F;
  --green-500: #40916C;
  --green-400: #52B788;
  --green-300: #74C69D;
  --green-100: #D8F3DC;

  --beige-50:  #FDFCF8;
  --beige-100: #F8F4EC;
  --beige-200: #F0E9D8;
  --beige-300: #E2D3B3;

  --charcoal:      #111318;
  --charcoal-soft: #1E2128;
  --charcoal-mid:  #2C3038;
  --charcoal-light:#3E434D;

  --gray-50:  #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-400: #9CA3AF;
  --gray-600: #6B7280;
  --gray-800: #1F2937;

  --gold:       #C9A84C;
  --gold-light: #E8D5A3;
  --gold-dark:  #A07C28;

  --white: #FFFFFF;

  /* Typography */
  --font-body:    'Manrope', system-ui, -apple-system, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;

  /* Spacing */
  --space-xs:  0.25rem;
  --space-sm:  0.5rem;
  --space-md:  1rem;
  --space-lg:  1.5rem;
  --space-xl:  2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Layout */
  --container: 1200px;
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10), 0 2px 6px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.14), 0 4px 12px rgba(0,0,0,0.08);
  --shadow-xl: 0 24px 64px rgba(0,0,0,0.18), 0 8px 24px rgba(0,0,0,0.10);
  --shadow-green: 0 8px 32px rgba(29, 58, 45, 0.25);
  --shadow-gold:  0 8px 32px rgba(201, 168, 76, 0.25);

  /* Transitions */
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:    cubic-bezier(0.7, 0, 0.84, 0);
  --ease-inout: cubic-bezier(0.65, 0, 0.35, 1);
  --transition-fast: 150ms var(--ease-out);
  --transition-base: 300ms var(--ease-out);
  --transition-slow: 500ms var(--ease-out);

  /* Nav */
  --nav-height: 76px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--charcoal);
  background-color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ================================================================
   LAYOUT UTILITIES
   ================================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .container { padding: 0 2rem; }
}
@media (min-width: 1200px) {
  .container { padding: 0 2.5rem; }
}

.section {
  padding: var(--space-5xl) 0;
}
.section--sm {
  padding: var(--space-4xl) 0;
}
.section--xs {
  padding: var(--space-3xl) 0;
}
.section--cream {
  background: var(--beige-100);
}
.section--forest {
  background: var(--green-800);
  color: var(--white);
}
.section--charcoal {
  background: var(--charcoal);
  color: var(--white);
}
.section--warm {
  background: var(--beige-50);
}
.section--dark-green {
  background: var(--green-900);
  color: var(--white);
}

.overflow-hidden { overflow: hidden; }

/* Section Headers */
.section-header {
  margin-bottom: var(--space-3xl);
}
.section-header--center {
  text-align: center;
}
.section-header p {
  max-width: 620px;
  color: var(--gray-600);
  font-size: 1.0625rem;
  margin-top: 1rem;
}
.section-header--center p {
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 0.75rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ================================================================
   TYPOGRAPHY
   ================================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--charcoal);
}

h1 { font-size: clamp(2.5rem, 5.5vw, 4.25rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.625rem); }
h4 { font-size: 1.125rem; }

h1 em, h2 em {
  font-style: italic;
  color: var(--green-600);
}

p {
  color: var(--gray-600);
  line-height: 1.8;
}

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: 0.01em;
}
.btn--large {
  padding: 1rem 2.25rem;
  font-size: 1rem;
}
.btn--sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}
.btn--primary {
  background: var(--green-700);
  color: var(--white);
  border-color: var(--green-700);
  box-shadow: 0 4px 16px rgba(30, 77, 53, 0.35);
}
.btn--primary:hover {
  background: var(--green-800);
  border-color: var(--green-800);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30, 77, 53, 0.45);
}
.btn--primary:active { transform: translateY(0); }

.btn--gold {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.4);
}
.btn--gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.5);
}

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

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

.btn--ghost {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--gray-200);
}
.btn--ghost:hover {
  background: var(--gray-100);
  transform: translateY(-1px);
}

/* ================================================================
   NAVIGATION
   ================================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: all var(--transition-base);
}

.nav--light {
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(0,0,0,0.08), var(--shadow-sm);
}

.nav--scrolled {
  background: #ffffff;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08), var(--shadow-sm);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  gap: 1rem;
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nav__logo-img {
  height: 72px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  transition: opacity var(--transition-base);
  filter: none;
}

.nav--scrolled .nav__logo-img {
  filter: none;
}

@media (max-width: 768px) {
  .nav__logo-img {
    height: 60px;
    max-width: 200px;
  }
}

@media (max-width: 480px) {
  .nav__logo-img {
    height: 54px;
    max-width: 180px;
  }
}

/* Nav Menu */
.nav__menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav__menu-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--charcoal-light);
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  position: relative;
}

.nav--scrolled .nav__menu-link {
  color: var(--charcoal-light);
}

.nav__menu-link:hover,
.nav__menu-link.active {
  color: var(--green-700);
  background: rgba(45, 106, 79, 0.08);
}

.nav--scrolled .nav__menu-link:hover,
.nav--scrolled .nav__menu-link.active {
  color: var(--green-700);
  background: rgba(45, 106, 79, 0.08);
}

/* Nav CTA */
.nav__cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.nav__phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--green-700);
  transition: all var(--transition-fast);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-full);
}

.nav__phone:hover {
  background: rgba(45, 106, 79, 0.08);
  color: var(--green-800);
}

.nav--scrolled .nav__phone {
  color: var(--green-700);
}

.nav--scrolled .nav__phone:hover {
  background: rgba(45, 106, 79, 0.08);
}

.nav__phone svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.nav__phone .mobile-text { display: none; }

.nav__cta .btn--primary {
  padding: 0.625rem 1.375rem;
  font-size: 0.875rem;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1010;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.nav--scrolled .nav__hamburger span {
  background: var(--charcoal);
}

.nav__hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav__hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--green-900);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.nav__mobile.open {
  opacity: 1;
  pointer-events: all;
}

.nav__mobile-link {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  padding: 0.75rem 2rem;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  text-align: center;
}

.nav__mobile-link:hover {
  color: var(--green-300);
  background: rgba(255,255,255,0.05);
}

.nav__mobile-phone {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  padding: 0.875rem 2rem;
  border: 2px solid var(--gold);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}

.nav__mobile-phone:hover {
  background: var(--gold);
  color: var(--charcoal);
}

.nav__mobile-estimate {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  background: var(--green-600);
  padding: 0.875rem 2rem;
  border-radius: var(--radius-full);
  margin-top: 0.5rem;
  transition: all var(--transition-base);
}

.nav__mobile-estimate:hover {
  background: var(--green-500);
}

.nav__mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: var(--white);
  padding: 0.5rem;
  opacity: 0.7;
}

.nav__mobile-close:hover { opacity: 1; }

/* ================================================================
   HERO SECTION
   ================================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: transform 8s ease-out;
}

.hero__bg img.loaded {
  transform: scale(1);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(7, 26, 16, 0.82) 0%,
    rgba(13, 40, 24, 0.70) 50%,
    rgba(29, 58, 45, 0.50) 100%
  );
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--nav-height) + 2rem);
  padding-bottom: 4rem;
}

.hero__content {
  max-width: 760px;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
  animation: fadeInDown 0.8s var(--ease-out) both;
}

.hero__tag-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.9s 0.1s var(--ease-out) both;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.1875rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 580px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
  animation: fadeInUp 1s 0.2s var(--ease-out) both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeInUp 1s 0.3s var(--ease-out) both;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeIn 1.5s 0.8s var(--ease-out) both;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.4));
  animation: scrollPulse 2s 1s infinite;
}

/* ================================================================
   TRUST BAR
   ================================================================ */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 10;
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 1.25rem 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--charcoal);
  padding: 0.75rem 2rem;
  white-space: nowrap;
}

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

.trust-divider {
  width: 1px;
  height: 32px;
  background: var(--gray-200);
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .trust-bar__inner { flex-direction: column; gap: 0; padding: 0.5rem 0; }
  .trust-divider { width: 80%; height: 1px; }
  .trust-item { padding: 0.75rem 1.5rem; }
}

/* ================================================================
   SPLIT LAYOUT (INTRO SECTION)
   ================================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }

.split__media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-xl);
}

.split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.split__media:hover img {
  transform: scale(1.04);
}

.split__media-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0,0,0,0.06);
}

.split__media-badge-icon {
  width: 40px;
  height: 40px;
  background: var(--green-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.split__media-badge-icon svg {
  width: 20px;
  height: 20px;
  color: var(--green-600);
}

.split__media-badge-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1.1;
}

.split__media-badge-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.split__content h2 {
  margin-bottom: 1.25rem;
}

.split__content p {
  margin-bottom: 1rem;
  font-size: 1.0625rem;
}

.split__list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin: 1.75rem 0 2rem;
}

.split__list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--charcoal);
}

.split__list-item::before {
  content: '';
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232D6A4F' stroke-width='2.5'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .split--reverse { direction: ltr; }
  .split__media { aspect-ratio: 16/9; max-height: 420px; }
}

/* ================================================================
   STATS ROW
   ================================================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stat-item {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all var(--transition-base);
}

.stat-item:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}

.stat-item__number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-item__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (max-width: 767px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .stat-item { padding: 1.75rem 1rem; }
}

/* ================================================================
   SERVICE CARDS (Large Image Cards)
   ================================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  box-shadow: var(--shadow-md);
}

.service-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.service-card:hover .service-card__img {
  transform: scale(1.06);
}

.service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(7, 26, 16, 0.92) 0%,
    rgba(13, 40, 24, 0.6) 50%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  transition: all var(--transition-base);
}

.service-card__tag {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.service-card__text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition-base);
}

.service-card:hover .service-card__text {
  opacity: 1;
  transform: translateY(0);
}

.service-card__arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: 1rem;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition-base) 0.05s;
}

.service-card:hover .service-card__arrow {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card { aspect-ratio: 4/3; }
  .service-card__text { opacity: 1; transform: none; }
  .service-card__arrow { opacity: 1; transform: none; }
}

/* ================================================================
   SERVICE DETAIL CARDS (Small Icon Cards)
   ================================================================ */
.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-detail-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--gray-200);
  transition: all var(--transition-base);
  cursor: default;
}

.service-detail-card:hover {
  border-color: var(--green-400);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-detail-card__icon {
  width: 48px;
  height: 48px;
  background: var(--green-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all var(--transition-base);
}

.service-detail-card__icon svg {
  width: 22px;
  height: 22px;
  color: var(--green-600);
}

.service-detail-card:hover .service-detail-card__icon {
  background: var(--green-700);
}

.service-detail-card:hover .service-detail-card__icon svg {
  color: var(--white);
}

.service-detail-card h3 {
  font-size: 1.0625rem;
  margin-bottom: 0.625rem;
  color: var(--charcoal);
}

.service-detail-card p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.65;
}

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

/* ================================================================
   WHY CHOOSE US
   ================================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.why-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 2rem;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-base);
}

.why-item:hover {
  border-color: var(--green-300);
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.why-item__icon {
  width: 52px;
  height: 52px;
  background: var(--green-800);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-item__icon svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
}

.why-item__title {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
  font-family: var(--font-body);
  letter-spacing: -0.01em;
}

.why-item__text {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.65;
}

@media (max-width: 700px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   PROCESS STEPS
   ================================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: calc(12.5% + 1rem);
  right: calc(12.5% + 1rem);
  height: 2px;
  background: linear-gradient(to right, var(--green-300), var(--gold), var(--green-300));
  z-index: 0;
}

.process-step {
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: all var(--transition-base);
}

.process-step:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--green-300);
}

.process-step__number {
  width: 52px;
  height: 52px;
  background: var(--green-700);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 16px rgba(30, 77, 53, 0.35);
  position: relative;
  z-index: 1;
}

.process-step__title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.625rem;
  letter-spacing: -0.01em;
}

.process-step__text {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
}
@media (max-width: 560px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   PROJECT / GALLERY CARDS
   ================================================================ */
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-6px);
}

.card__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.card:hover .card__img {
  transform: scale(1.04);
}

.card__body {
  padding: 1.5rem;
}

.card__title {
  font-size: 1.1875rem;
  margin-bottom: 0.625rem;
  color: var(--charcoal);
  transition: color var(--transition-fast);
}

.card:hover .card__title { color: var(--green-700); }

.card__text {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.65;
}

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

/* ================================================================
   TESTIMONIAL / REVIEWS
   ================================================================ */
.featured-quote {
  background: var(--green-900);
  padding: var(--space-4xl) 0;
  position: relative;
  overflow: hidden;
}

.featured-quote::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.featured-quote__inner {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}

.featured-quote__mark {
  display: block;
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 1rem;
  user-select: none;
}

.featured-quote__text {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  font-style: italic;
  color: rgba(255,255,255,0.92);
  line-height: 1.65;
  margin-bottom: 2rem;
}

.featured-quote__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.featured-quote__avatar {
  width: 48px;
  height: 48px;
  background: var(--green-600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  font-size: 0.875rem;
  flex-shrink: 0;
}

.featured-quote__name {
  font-weight: 700;
  color: var(--white);
  font-size: 1rem;
}

.featured-quote__loc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
}

/* Reviews Grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--green-200, #b7e4c7);
}

.testimonial-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
}

.star {
  color: var(--gold);
  font-size: 1rem;
}

.testimonial-card__text {
  font-size: 0.9375rem;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  background: var(--green-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--green-700);
  font-size: 0.8125rem;
  flex-shrink: 0;
}

.testimonial-card__name {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--charcoal);
}

.testimonial-card__location {
  font-size: 0.8125rem;
  color: var(--gray-400);
}

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

/* ================================================================
   AREAS SECTION
   ================================================================ */
.areas-section {
  background: var(--beige-100);
  padding: var(--space-4xl) 0;
}

.areas-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 1.5rem;
}

.area-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.125rem;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--charcoal);
  transition: all var(--transition-fast);
  cursor: default;
}

.area-tag:hover {
  border-color: var(--green-500);
  color: var(--green-700);
  background: var(--green-100);
}

.area-tag--primary {
  border-color: var(--green-500);
  background: var(--green-100);
  color: var(--green-800);
}

/* ================================================================
   FAQ ACCORDION
   ================================================================ */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  background: var(--white);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item.open {
  border-color: var(--green-400);
  box-shadow: var(--shadow-md);
}

.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.375rem 1.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  text-align: left;
  gap: 1rem;
  transition: color var(--transition-fast);
  cursor: pointer;
  background: none;
  border: none;
}

.faq-trigger:hover { color: var(--green-700); }
.faq-item.open .faq-trigger { color: var(--green-700); }

.faq-trigger__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--green-600);
  transition: transform var(--transition-base);
}

.faq-item.open .faq-trigger__icon {
  transform: rotate(45deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}

.faq-item.open .faq-body {
  max-height: 600px;
}

.faq-body__inner {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.75;
}

.faq-body__inner a {
  color: var(--green-600);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color var(--transition-fast);
}

.faq-body__inner a:hover {
  text-decoration-color: var(--green-600);
}

/* ================================================================
   FINAL CTA SECTION
   ================================================================ */
.cta-section {
  background: var(--green-800);
  padding: var(--space-5xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(201,168,76,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.cta-section .section-label { color: var(--gold); }

.cta-section h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255,255,255,0.72);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  font-size: 1.0625rem;
}

.cta-section__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.cta-phone {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.02em;
  transition: all var(--transition-base);
  text-decoration: none;
}

.cta-phone:hover {
  color: var(--gold-light);
  transform: scale(1.03);
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: var(--space-5xl) 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__logo-img {
  height: 52px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer__brand p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  max-width: 300px;
  margin-top: 0.75rem;
}

.footer__heading {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer__link {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition-fast);
  text-decoration: none;
}

.footer__link:hover { color: var(--green-300); }

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
}

.footer__contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.footer__contact-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.footer__contact-text a {
  color: rgba(255,255,255,0.7);
  transition: color var(--transition-fast);
}

.footer__contact-text a:hover { color: var(--green-300); }

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

.footer__copy {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.35);
}

.footer__social {
  display: flex;
  gap: 0.75rem;
}

.footer__social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition-fast);
}

.footer__social-link:hover {
  border-color: var(--green-400);
  color: var(--green-400);
  background: rgba(64, 145, 108, 0.1);
}

.footer__social-link svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: span 2; }
}
@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__brand { grid-column: span 1; }
}

/* ================================================================
   MOBILE STICKY CTA
   ================================================================ */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: var(--white);
  padding: 0.875rem 1rem calc(0.875rem + env(safe-area-inset-bottom));
  box-shadow: 0 -4px 24px rgba(0,0,0,0.12);
  border-top: 1px solid var(--gray-100);
  gap: 0.75rem;
}

.mobile-cta__call {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem;
  background: var(--green-700);
  color: var(--white);
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.mobile-cta__call:active { background: var(--green-800); }

.mobile-cta__call svg {
  width: 18px;
  height: 18px;
}

.mobile-cta__estimate {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem;
  background: var(--beige-200);
  color: var(--charcoal);
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: all var(--transition-fast);
  border: 1.5px solid var(--gray-200);
}

.mobile-cta__estimate:active { background: var(--beige-300); }

/* ================================================================
   SCROLL REVEAL ANIMATIONS
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.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; }

/* ================================================================
   KEYFRAME ANIMATIONS
   ================================================================ */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}
@keyframes scrollPulse {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}
@keyframes countUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* ================================================================
   PAGE HERO (inner pages)
   ================================================================ */
.page-hero {
  position: relative;
  background: var(--green-900);
  padding: calc(var(--nav-height) + 4rem) 0 5rem;
  overflow: hidden;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.page-hero p {
  color: rgba(255,255,255,0.72);
  font-size: 1.125rem;
  max-width: 580px;
  margin: 0 auto;
}

.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
}

.page-hero__breadcrumb a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.page-hero__breadcrumb a:hover { color: var(--gold); }

/* ================================================================
   SERVICES PAGE — FULL LIST
   ================================================================ */
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-full-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.service-full-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-5px);
  border-color: var(--green-300);
}

.service-full-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.service-full-card:hover .service-full-card__img {
  transform: scale(1.05);
}

.service-full-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-full-card__tag {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 0.5rem;
}

.service-full-card h3 {
  font-size: 1.0625rem;
  margin-bottom: 0.625rem;
  color: var(--charcoal);
}

.service-full-card p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1rem;
}

.service-full-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--green-700);
  text-decoration: none;
  transition: gap var(--transition-fast), color var(--transition-fast);
}

.service-full-card__cta:hover {
  color: var(--green-600);
  gap: 0.625rem;
}

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

/* ================================================================
   CONTACT PAGE
   ================================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}

.contact-info {
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}

.contact-info__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
  border: 1px solid var(--gray-100);
  transition: all var(--transition-base);
}

.contact-info__item:hover {
  border-color: var(--green-300);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

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

.contact-info__icon svg {
  width: 20px;
  height: 20px;
  color: var(--green-700);
}

.contact-info__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
  margin-bottom: 0.25rem;
}

.contact-info__value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
}

.contact-info__value a {
  color: var(--green-700);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.contact-info__value a:hover { color: var(--green-600); }

/* Contact Form */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
}

.form-title {
  font-size: 1.625rem;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}

.form-subtitle {
  font-size: 0.9375rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group--full {
  grid-column: span 2;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--charcoal);
}

.form-label span {
  color: var(--green-600);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  color: var(--charcoal);
  background: var(--gray-50);
  transition: all var(--transition-fast);
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--green-500);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(64, 145, 108, 0.1);
}

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

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
  padding-right: 2.5rem;
}

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

.form-submit {
  width: 100%;
  padding: 1.125rem;
  font-size: 1rem;
  margin-top: 0.5rem;
}

.form-note {
  font-size: 0.8125rem;
  color: var(--gray-400);
  text-align: center;
  margin-top: 1rem;
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info { position: static; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group--full { grid-column: span 1; }
  .contact-form { padding: 1.75rem; }
}

/* ================================================================
   MAP PLACEHOLDER
   ================================================================ */
.map-placeholder {
  width: 100%;
  height: 400px;
  background: var(--gray-100);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-200);
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ================================================================
   BEFORE/AFTER SECTION
   ================================================================ */
.before-after-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.before-after-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}

.before-after-card__label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(0,0,0,0.65);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  backdrop-filter: blur(4px);
  z-index: 2;
}

.before-after-card__label--after {
  background: rgba(45, 106, 79, 0.85);
  color: var(--white);
}

.before-after-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.before-after-card:hover img { transform: scale(1.04); }

@media (max-width: 560px) {
  .before-after-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   ABOUT PAGE — VALUES GRID
   ================================================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.value-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.value-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: var(--green-300);
}

.value-card__icon {
  width: 60px;
  height: 60px;
  background: var(--green-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all var(--transition-base);
}

.value-card__icon svg {
  width: 26px;
  height: 26px;
  color: var(--green-700);
}

.value-card:hover .value-card__icon {
  background: var(--green-700);
}

.value-card:hover .value-card__icon svg {
  color: var(--white);
}

.value-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.625rem;
  color: var(--charcoal);
}

.value-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.65;
}

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

/* ================================================================
   LICENSED & INSURED BADGE
   ================================================================ */
.badge-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 2.5rem;
  background: var(--green-900);
  border-radius: var(--radius-xl);
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  font-weight: 600;
  font-size: 0.9375rem;
}

.badge-item__icon {
  width: 44px;
  height: 44px;
  background: rgba(201,168,76,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.badge-item__icon svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
}

/* ================================================================
   SERVICES CATEGORY HEADER
   ================================================================ */
.services-category {
  margin-bottom: 3rem;
}

.services-category__title {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--gray-100);
}

.services-category__title h2 {
  font-size: 1.625rem;
}

.services-category__title-icon {
  width: 44px;
  height: 44px;
  background: var(--green-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.services-category__title-icon svg {
  width: 20px;
  height: 20px;
  color: var(--green-700);
}

/* ================================================================
   BUSINESS HOURS TABLE
   ================================================================ */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.hours-table tr {
  border-bottom: 1px solid var(--gray-100);
}

.hours-table tr:last-child { border-bottom: none; }

.hours-table td {
  padding: 0.875rem 0;
  color: var(--charcoal);
}

.hours-table td:first-child {
  font-weight: 600;
  width: 40%;
}

.hours-table td:last-child {
  color: var(--gray-600);
}

.hours-open { color: var(--green-600) !important; font-weight: 600; }
.hours-closed { color: var(--gray-400) !important; }

/* ================================================================
   FLOATING CALL BUTTON (alternate mobile)
   ================================================================ */
.float-call {
  display: none;
  position: fixed;
  bottom: 5.5rem;
  right: 1.25rem;
  z-index: 997;
  width: 56px;
  height: 56px;
  background: var(--green-700);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(30,77,53,0.45);
  color: var(--white);
  text-decoration: none;
  transition: all var(--transition-base);
}

.float-call:hover {
  background: var(--green-800);
  transform: scale(1.08);
}

.float-call svg {
  width: 22px;
  height: 22px;
}

/* ================================================================
   RESPONSIVE — NAVIGATION BREAKPOINTS
   ================================================================ */
@media (max-width: 1024px) {
  .nav__menu { display: none; }
  .nav__cta .btn--primary { display: none; }
  .nav__phone .desktop-text { display: none; }
  .nav__phone .mobile-text { display: block; }
  .nav__hamburger { display: flex; }
  .nav__mobile { display: flex; }
  .mobile-cta { display: flex; }
  body { padding-bottom: 80px; }
}

@media (min-width: 1025px) {
  .nav__hamburger { display: none; }
  .mobile-cta { display: none; }
}

/* ================================================================
   UTILITY CLASSES
   ================================================================ */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.mt-1  { margin-top: 0.5rem; }
.mt-2  { margin-top: 1rem; }
.mt-3  { margin-top: 1.5rem; }
.mt-4  { margin-top: 2rem; }
.mt-6  { margin-top: 3rem; }
.mt-8  { margin-top: 4rem; }
.mb-2  { margin-bottom: 1rem; }
.mb-4  { margin-bottom: 2rem; }
.mb-6  { margin-bottom: 3rem; }
.gap-2 { gap: 1rem; }

.d-flex  { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }

.gold-text { color: var(--gold); }
.green-text { color: var(--green-600); }
.white-text { color: var(--white); }

/* Gold divider accent */
.gold-rule {
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 3px;
  margin: 1rem 0 1.5rem;
}
.section-header--center .gold-rule {
  margin: 1rem auto 1.5rem;
}

/* Success state for form */
.form-success {
  display: none;
  background: var(--green-100);
  border: 1px solid var(--green-400);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  color: var(--green-800);
  font-weight: 600;
}

.form-success.show { display: block; }

/* Skip nav */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  background: var(--green-700);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: top var(--transition-fast);
}
.skip-nav:focus { top: 0; }

/* Print styles */
@media print {
  .nav, .mobile-cta, .hero__scroll, .float-call { display: none; }
  body { padding-bottom: 0; }
  .hero { min-height: auto; padding: 2rem 0; }
}

/* ================================================================
   MISSION / VISION GRID — responsive
   ================================================================ */
.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 700px) {
  .mission-vision-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   FOCUS STYLES — accessibility
   ================================================================ */
:focus-visible {
  outline: 3px solid var(--green-400);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ================================================================
   SELECTION COLOR
   ================================================================ */
::selection {
  background: var(--green-300);
  color: var(--green-900);
}

/* ================================================================
   SCROLLBAR (webkit)
   ================================================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-50); }
::-webkit-scrollbar-thumb {
  background: var(--green-400);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover { background: var(--green-600); }

/* ================================================================
   NAV LOGO — white version on scrolled light bg fix
   ================================================================ */
.nav--scrolled .nav__logo-img {
  filter: none;
  opacity: 1;
}

/* ================================================================
   HERO — min height on short screens
   ================================================================ */
@media (max-height: 600px) {
  .hero { min-height: 100vh; padding-top: 6rem; }
}

/* ================================================================
   SPLIT grid — tablet fix
   ================================================================ */
@media (min-width: 601px) and (max-width: 900px) {
  .split { gap: 2rem; }
  .split__media { aspect-ratio: 16/9; }
}

/* ================================================================
   CONTACT — mobile form grid fix
   ================================================================ */
@media (max-width: 600px) {
  .form-grid { grid-template-columns: 1fr; }
  .form-group--full { grid-column: span 1; }
  .contact-form { padding: 1.5rem 1.25rem; }
  .form-textarea { min-height: 110px; }
}

/* ================================================================
   TRUST BAR — mobile improvements
   ================================================================ */
@media (max-width: 480px) {
  .trust-item { font-size: 0.8125rem; padding: 0.625rem 1rem; }
}

/* ================================================================
   STATS GRID — extra small screens
   ================================================================ */
@media (max-width: 400px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { padding: 1.5rem 1rem; }
}

/* ================================================================
   SERVICES FULL GRID — tablet
   ================================================================ */
@media (min-width: 601px) and (max-width: 900px) {
  .services-full-grid { grid-template-columns: 1fr 1fr; }
}

/* ================================================================
   HERO ACTIONS — mobile stack
   ================================================================ */
@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .hero__sub { font-size: 1rem; }
}

/* ================================================================
   PAGE HERO — mobile
   ================================================================ */
@media (max-width: 600px) {
  .page-hero { padding: calc(var(--nav-height) + 2.5rem) 0 3rem; }
  .page-hero h1 { font-size: clamp(1.875rem, 6vw, 2.5rem); }
  .page-hero p { font-size: 1rem; }
}

/* ================================================================
   FOOTER — mobile
   ================================================================ */
@media (max-width: 400px) {
  .footer__bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
}

/* ================================================================
   WHY ITEM — tablet
   ================================================================ */
@media (min-width: 561px) and (max-width: 700px) {
  .why-grid { grid-template-columns: 1fr 1fr; }
  .why-item { padding: 1.5rem; }
}

/* ================================================================
   PROCESS — mobile
   ================================================================ */
@media (max-width: 400px) {
  .process-step { padding: 1.5rem 1rem; }
  .process-step__number { width: 44px; height: 44px; font-size: 1.125rem; }
}

/* ================================================================
   BADGE STRIP — mobile
   ================================================================ */
@media (max-width: 600px) {
  .badge-strip {
    flex-direction: column;
    gap: 1rem;
    padding: 1.75rem 1.5rem;
    text-align: center;
  }
  .badge-item { justify-content: center; }
}

/* ================================================================
   AREAS TAGS — mobile
   ================================================================ */
@media (max-width: 480px) {
  .area-tag { font-size: 0.8125rem; padding: 0.4375rem 0.875rem; }
}

/* ================================================================
   CTA SECTION — mobile
   ================================================================ */
@media (max-width: 480px) {
  .cta-section { padding: 4rem 0; }
  .cta-section h2 { font-size: clamp(1.75rem, 6vw, 2.25rem); }
  .cta-phone { font-size: clamp(1.5rem, 7vw, 2rem); }
}

/* ================================================================
   MOBILE CTA — extra small
   ================================================================ */
@media (max-width: 360px) {
  .mobile-cta__call, .mobile-cta__estimate {
    font-size: 0.875rem;
    padding: 0.75rem 0.625rem;
  }
}

/* ================================================================
   SERVICE CARDS — tablet
   ================================================================ */
@media (min-width: 561px) and (max-width: 900px) {
  .service-card { aspect-ratio: 3/4; }
}

/* ================================================================
   FEATURED QUOTE — mobile
   ================================================================ */
@media (max-width: 600px) {
  .featured-quote__text { font-size: 1.125rem; }
  .featured-quote__mark { font-size: 4rem; }
}

/* ================================================================
   VALUES GRID — tablet
   ================================================================ */
@media (min-width: 481px) and (max-width: 767px) {
  .values-grid { grid-template-columns: 1fr 1fr; }
}

/* ================================================================
   BEFORE/AFTER — tablet
   ================================================================ */
@media (max-width: 767px) {
  .before-after-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   CONTACT INFO ITEM — hover on mobile prevent
   ================================================================ */
@media (hover: none) {
  .contact-info__item:hover,
  .service-detail-card:hover,
  .why-item:hover,
  .card:hover,
  .process-step:hover,
  .value-card:hover {
    transform: none;
    box-shadow: inherit;
  }
}

/* ================================================================
   SMOOTH IMAGE RENDERING
   ================================================================ */
img {
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* ================================================================
   LOADING STATE — skeleton shimmer
   ================================================================ */
.img-loading {
  background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-50) 50%, var(--gray-100) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

/* ================================================================
   CALL HERO (contact page) — mobile
   ================================================================ */
@media (max-width: 600px) {
  .call-hero__number { font-size: 1.625rem; }
  .call-hero__text { font-size: 0.875rem; text-align: center; }
}

/* ================================================================
   SECTION LABEL — dark bg variant
   ================================================================ */
.section--forest .section-label,
.section--dark-green .section-label,
.page-hero .section-label {
  color: var(--gold);
}
.section--forest .section-label::before,
.section--dark-green .section-label::before {
  background: var(--gold);
}

/* ================================================================
   GLOBAL LINK STYLE inside body text
   ================================================================ */
.faq-body__inner a,
.footer__contact-text a {
  transition: color 150ms ease;
}

/* ================================================================
   CARD HOVER LIFT — consistent across breakpoints
   ================================================================ */
@media (min-width: 769px) {
  .service-full-card:hover { transform: translateY(-5px); }
  .card:hover { transform: translateY(-6px); }
  .testimonial-card:hover { transform: translateY(-4px); }
}

/* ================================================================
   HERO OVERLAY — stronger on mobile for text legibility
   ================================================================ */
@media (max-width: 600px) {
  .hero__overlay {
    background: linear-gradient(
      135deg,
      rgba(7, 26, 16, 0.88) 0%,
      rgba(13, 40, 24, 0.78) 60%,
      rgba(29, 58, 45, 0.60) 100%
    );
  }
}

/* ================================================================
   BACK TO TOP — quality of life
   ================================================================ */
.back-to-top {
  position: fixed;
  bottom: 5.5rem;
  right: 1.25rem;
  z-index: 996;
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition-base);
  color: var(--green-700);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}

.back-to-top:hover {
  background: var(--green-700);
  border-color: var(--green-700);
  color: var(--white);
  transform: translateY(-2px);
}

.back-to-top svg { width: 18px; height: 18px; }

@media (min-width: 1025px) {
  .back-to-top { bottom: 2rem; }
}

/* ================================================================
   NAV — hide phone text on very small screens
   ================================================================ */
@media (max-width: 380px) {
  .nav__phone { display: none; }
}

