/* ============================================
   SoCal Artificial Turfs -- Design System
   Desert warmth meets lush green life
   ============================================ */

/* --- FONTS --- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Source+Sans+3:wght@300;400;500;600;700&display=swap');

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* --- CSS VARIABLES --- */
:root {
  /* Colors -- SoCal palette */
  --turf:        #3A7D34;     /* rich turf green */
  --turf-light:  #4E9A46;
  --turf-dark:   #2B5E27;
  --sand:        #D4A44C;     /* desert gold / sandstone */
  --sand-light:  #E8C774;
  --sand-pale:   #FBF5E6;     /* warm cream background */
  --earth:       #5C4033;     /* warm brown earth */
  --earth-light: #7A5C4A;
  --charcoal:    #2A2A2A;
  --slate:       #4A4A4A;
  --gray:        #7A7A7A;
  --gray-light:  #B5B5B5;
  --gray-pale:   #E8E4DE;     /* warm gray, not cool */
  --white:       #FEFCF8;     /* warm white */
  --pure-white:  #FFFFFF;
  --red:         #C0392B;

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body:    'Source Sans 3', sans-serif;

  /* Sizing */
  --container: 1240px;
  --container-narrow: 800px;

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

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --radius-pill: 9999px;

  /* Shadows -- warm toned */
  --shadow-sm:  0 1px 3px rgba(92, 64, 51, 0.08);
  --shadow-md:  0 4px 12px rgba(92, 64, 51, 0.1);
  --shadow-lg:  0 8px 24px rgba(92, 64, 51, 0.12);
  --shadow-xl:  0 16px 40px rgba(92, 64, 51, 0.15);
  --shadow-img: 0 12px 32px rgba(42, 42, 42, 0.18);

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s var(--ease);
  --transition-base: 0.35s var(--ease);
  --transition-slow: 0.5s var(--ease);
}

/* --- BODY --- */
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--charcoal);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; letter-spacing: -0.01em; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 600; }
h4 { font-size: clamp(1.1rem, 2vw, 1.3rem); font-weight: 600; }

p { margin-bottom: var(--space-md); }
p:last-child { margin-bottom: 0; }

.text-lg { font-size: 1.15rem; line-height: 1.7; }
.text-sm { font-size: 0.9rem; }
.text-muted { color: var(--gray); }

.eyebrow {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--turf);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--sand);
}

/* --- CONTAINER --- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.container--narrow {
  max-width: var(--container-narrow);
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  white-space: nowrap;
  cursor: pointer;
}

.btn--primary {
  background: var(--turf);
  color: var(--pure-white);
}

.btn--primary:hover {
  background: var(--turf-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--secondary {
  background: transparent;
  color: var(--charcoal);
  border: 2px solid var(--charcoal);
}

.btn--secondary:hover {
  background: var(--charcoal);
  color: var(--pure-white);
}

.btn--sand {
  background: var(--sand);
  color: var(--charcoal);
}

.btn--sand:hover {
  background: var(--sand-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--large {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

.btn--icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

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

.nav__top {
  background: var(--charcoal);
  color: var(--gray-pale);
  font-size: 0.85rem;
  padding: 0.5rem 0;
}

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

.nav__top-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav__top-item svg {
  width: 14px;
  height: 14px;
  opacity: 0.7;
}

.nav__top-item a {
  color: var(--gray-pale);
  transition: color var(--transition-fast);
}

.nav__top-item a:hover {
  color: var(--sand-light);
}

.nav__top-links {
  display: flex;
  gap: var(--space-lg);
}

.nav__main {
  background: var(--pure-white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 0.75rem 0;
  transition: all var(--transition-base);
}

.nav.scrolled .nav__main {
  box-shadow: var(--shadow-md);
  padding: 0.5rem 0;
}

.nav.scrolled .nav__top {
  transform: translateY(-100%);
  margin-bottom: -36px;
}

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

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

.nav__logo img {
  height: 48px;
  width: auto;
}

.nav__logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--charcoal);
  line-height: 1.2;
}

.nav__logo-text span {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--turf);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
}

.nav__link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--slate);
  transition: color var(--transition-fast);
  position: relative;
}

.nav__link:hover,
.nav__link.active {
  color: var(--turf);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--turf);
  transition: width var(--transition-fast);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

/* Dropdown */
.nav__dropdown {
  position: relative;
}

.nav__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.nav__dropdown-toggle svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-fast);
}

.nav__dropdown:hover .nav__dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: -16px;
  background: var(--pure-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 0.75rem 0;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition-fast);
}

.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown-item {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
  color: var(--slate);
  transition: all var(--transition-fast);
}

.nav__dropdown-item:hover {
  background: var(--sand-pale);
  color: var(--turf);
  padding-left: 1.5rem;
}

.nav__cta {
  margin-left: 0.5rem;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}

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

.nav__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav */
.nav__mobile {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(85vw, 360px);
  height: 100vh;
  background: var(--pure-white);
  z-index: 200;
  padding: var(--space-3xl) var(--space-xl);
  transition: right var(--transition-base);
  overflow-y: auto;
}

.nav__mobile.open {
  right: 0;
}

.nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(42, 42, 42, 0.5);
  z-index: 199;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.nav__overlay.visible {
  opacity: 1;
  visibility: visible;
}

.nav__mobile-link {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--charcoal);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--gray-pale);
}

.nav__mobile-cta {
  margin-top: var(--space-xl);
}

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 86px; /* nav height */
}

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

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

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(42, 42, 42, 0.82) 0%,
    rgba(42, 42, 42, 0.55) 50%,
    rgba(58, 125, 52, 0.25) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: var(--space-4xl) 0;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-pill);
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--sand-light);
  margin-bottom: var(--space-lg);
}

.hero__badge svg {
  width: 16px;
  height: 16px;
}

.hero h1 {
  color: var(--pure-white);
  margin-bottom: var(--space-lg);
}

.hero h1 .highlight {
  color: var(--sand-light);
}

.hero__text {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-2xl);
}

.hero__actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero__phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--pure-white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
}

.hero__phone svg {
  width: 20px;
  height: 20px;
}

/* Floating stats bar */
.hero__stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: var(--pure-white);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  padding: var(--space-xl) 0;
}

.hero__stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  text-align: center;
}

.hero__stat-number {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--turf);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 0.25rem;
}

.hero__stat + .hero__stat {
  border-left: 1px solid var(--gray-pale);
}

/* --- SECTIONS --- */
.section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.section--sand {
  background: var(--sand-pale);
}

.section--dark {
  background: var(--charcoal);
  color: var(--pure-white);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--pure-white);
}

.section--dark .eyebrow {
  color: var(--sand-light);
}

.section--dark .text-muted {
  color: var(--gray-light);
}

.section__header {
  max-width: 600px;
  margin-bottom: var(--space-3xl);
}

.section__header--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section__header h2 {
  margin-top: var(--space-sm);
}

.section__header p {
  margin-top: var(--space-md);
  color: var(--gray);
  font-size: 1.05rem;
}

/* --- SERVICES GRID --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.service-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--pure-white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  cursor: pointer;
}

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

.service-card__image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-card:hover .service-card__image img {
  transform: scale(1.05);
}

.service-card__tag {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  background: var(--turf);
  color: var(--pure-white);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-sm);
}

.service-card__body {
  padding: var(--space-lg);
}

.service-card__title {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.service-card__text {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.6;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: var(--space-md);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--turf);
  transition: gap var(--transition-fast);
}

.service-card__link:hover {
  gap: 0.6rem;
}

.service-card__link svg {
  width: 16px;
  height: 16px;
}

/* --- SPLIT SECTION (image + content) --- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.split--reverse {
  direction: rtl;
}

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

.split__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-img);
}

.split__image img {
  width: 100%;
  display: block;
}

/* Decorative accent corner */
.split__image::before {
  content: '';
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 40%;
  height: 40%;
  border: 3px solid var(--sand);
  border-radius: 0 0 var(--radius-lg) 0;
  z-index: -1;
}

.split__content .eyebrow {
  margin-bottom: var(--space-sm);
}

.split__content h2 {
  margin-bottom: var(--space-lg);
}

.split__content p {
  color: var(--slate);
  margin-bottom: var(--space-md);
}

/* Feature list in split sections */
.feature-list {
  margin: var(--space-xl) 0;
}

.feature-list__item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-sm) 0;
}

.feature-list__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--sand-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-list__icon svg {
  width: 18px;
  height: 18px;
  color: var(--turf);
}

.feature-list__text h4 {
  font-size: 1rem;
  margin-bottom: 0.15rem;
}

.feature-list__text p {
  font-size: 0.9rem;
  color: var(--gray);
  margin: 0;
}

/* --- GALLERY --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(42, 42, 42, 0);
  transition: background var(--transition-fast);
}

.gallery-item:hover::after {
  background: rgba(42, 42, 42, 0.2);
}

/* Span first item larger */
.gallery-grid .gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

/* --- TESTIMONIALS --- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.testimonial-card {
  background: var(--pure-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--sand);
  transition: box-shadow var(--transition-fast);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
}

.testimonial-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-md);
}

.testimonial-card__stars svg {
  width: 18px;
  height: 18px;
  fill: var(--sand);
}

.testimonial-card__quote {
  font-style: italic;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

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

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sand-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--turf);
  font-size: 1rem;
}

.testimonial-card__name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
}

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

/* --- SERVICE AREAS --- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.area-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: var(--space-md) var(--space-lg);
  background: var(--pure-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-pale);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.area-card:hover {
  border-color: var(--turf);
  background: var(--sand-pale);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.area-card svg {
  width: 18px;
  height: 18px;
  color: var(--turf);
  flex-shrink: 0;
}

.area-card__name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
}

/* --- CTA BANNER --- */
.cta-banner {
  position: relative;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

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

.cta-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-banner__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--turf-dark) 0%, rgba(58, 125, 52, 0.9) 100%);
}

.cta-banner__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-banner__content h2 {
  color: var(--pure-white);
  margin-bottom: var(--space-md);
}

.cta-banner__content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  margin-bottom: var(--space-xl);
}

.cta-banner__actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

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

.btn--white:hover {
  background: var(--sand-pale);
  transform: translateY(-1px);
}

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

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

/* --- FAQ --- */
.faq-list {
  max-width: 800px;
}

.faq-item {
  border-bottom: 1px solid var(--gray-pale);
}

.faq-item__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-lg) 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--charcoal);
  text-align: left;
  cursor: pointer;
}

.faq-item__question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
  color: var(--turf);
}

.faq-item.active .faq-item__question svg {
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
}

.faq-item__answer p {
  padding-bottom: var(--space-lg);
  color: var(--slate);
  line-height: 1.7;
}

/* --- FOOTER --- */
.footer {
  background: var(--charcoal);
  color: var(--gray-light);
  padding: var(--space-4xl) 0 var(--space-xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.footer__brand p {
  font-size: 0.92rem;
  line-height: 1.7;
  margin-top: var(--space-md);
  color: var(--gray-light);
}

.footer__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--pure-white);
  margin-bottom: var(--space-lg);
}

.footer__link {
  display: block;
  font-size: 0.9rem;
  color: var(--gray-light);
  padding: 0.35rem 0;
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: var(--sand-light);
}

.footer__contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: var(--space-md);
  font-size: 0.9rem;
}

.footer__contact-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--turf-light);
  margin-top: 2px;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: var(--space-xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

/* --- STICKY MOBILE CTA --- */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--turf);
  padding: 0.75rem var(--space-md);
}

.mobile-cta__inner {
  display: flex;
  gap: 0.5rem;
}

.mobile-cta__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--pure-white);
  background: rgba(255, 255, 255, 0.15);
}

.mobile-cta__btn--call {
  background: var(--pure-white);
  color: var(--turf-dark);
}

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

/* --- SCROLL REVEAL --- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

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

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }

  .split { grid-template-columns: 1fr; gap: var(--space-2xl); }
  .split--reverse { direction: ltr; }

  .hero__stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero__stat:nth-child(3) { border-left: none; }
}

@media (max-width: 768px) {
  .nav__top { display: none; }
  .hero { margin-top: 64px; min-height: 85vh; }

  .services-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid .gallery-item:first-child { grid-column: span 2; grid-row: span 1; }
  .footer__grid { grid-template-columns: 1fr; gap: var(--space-xl); }
  .footer__bottom { flex-direction: column; gap: var(--space-sm); text-align: center; }

  .mobile-cta { display: block; }
  body { padding-bottom: 70px; }

  .hero__stats-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }
  .hero__stat + .hero__stat { border-left: none; }
  .hero__stat:nth-child(odd) + .hero__stat { border-left: 1px solid var(--gray-pale); }
}

@media (max-width: 480px) {
  .areas-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid .gallery-item:first-child { grid-column: span 1; }
  .hero__actions { flex-direction: column; }
}

/* --- REDUCED MOTION --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .reveal, .reveal-left, .reveal-right {
    opacity: 1;
    transform: none;
  }
}

/* --- LIGHTBOX --- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl);
}

.lightbox.active {
  display: flex;
}

.lightbox__close {
  position: absolute;
  top: var(--space-xl);
  right: var(--space-xl);
  color: var(--pure-white);
  cursor: pointer;
  z-index: 2;
}

.lightbox__close svg {
  width: 32px;
  height: 32px;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-md);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--pure-white);
  cursor: pointer;
  padding: var(--space-md);
}

.lightbox__nav svg {
  width: 28px;
  height: 28px;
}

.lightbox__nav--prev { left: var(--space-md); }
.lightbox__nav--next { right: var(--space-md); }

/* --- BREADCRUMBS --- */
.breadcrumbs {
  padding: var(--space-md) 0;
  font-size: 0.85rem;
  color: var(--gray);
}

.breadcrumbs a {
  color: var(--turf);
  transition: color var(--transition-fast);
}

.breadcrumbs a:hover {
  color: var(--turf-dark);
}

.breadcrumbs span {
  margin: 0 0.4rem;
}
