/* ============================================================
   FAT NERD LAWN — Premium Website Styles
   Color Palette inspired by reference template:
     Near-black:    #1a1a1a
     Dark olive:    #2e3d18
     Forest green:  #3f5920
     Accent green:  #5a8a2a
     Light green:   #7ab83e
     White:         #ffffff
     Off-white:     #f6f6f2
     Text:          #222222
     Muted text:    #666666
   Fonts: Montserrat (headings), Open Sans (body)
   ============================================================ */

/* ---- CUSTOM PROPERTIES ---- */
:root {
  --black:        #111111;
  --dark:         #1a1a1a;
  --dark-alt:     #222222;
  --olive:        #2e3d18;
  --green-dark:   #3f5920;
  --green:        #5a8a2a;
  --green-mid:    #6ba030;
  --green-light:  #7ab83e;
  --white:        #ffffff;
  --off-white:    #f6f6f2;
  --grey-light:   #e6e6e0;
  --grey:         #888888;
  --text:         #1c1c1c;
  --text-light:   #555555;

  --font-heading: 'Montserrat', sans-serif;
  --font-body:    'Open Sans', sans-serif;

  --radius:       4px;
  --radius-lg:    8px;
  --shadow:       0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg:    0 8px 48px rgba(0,0,0,0.16);
  --transition:   0.3s ease;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
address { font-style: normal; }
button { border: none; cursor: pointer; font-family: inherit; background: none; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.2rem; font-weight: 600; letter-spacing: 0; }
h4 { font-size: 1rem;   font-weight: 600; letter-spacing: 0; }

p { line-height: 1.75; }

/* ---- LAYOUT ---- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

section { overflow: hidden; }

/* Section header */
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center p { max-width: 560px; margin: 12px auto 0; color: var(--text-light); }
.section-header h2 { margin-top: 8px; }
.section-header p { margin-top: 12px; color: var(--text-light); }
.section-header.light h2 { color: var(--white); }
.section-header.light p  { color: rgba(255,255,255,0.72); }

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-light);
  background: rgba(90,138,42,0.10);
  padding: 5px 12px;
  border-radius: 2px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  padding: 14px 32px;
}
.btn-primary:hover {
  background: var(--green-mid);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(90,138,42,0.35);
}

.btn-primary-lg {
  background: var(--green);
  color: var(--white);
  padding: 18px 40px;
  font-size: 0.9rem;
}
.btn-primary-lg:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(90,138,42,0.4);
}

.btn-ghost-lg {
  background: transparent;
  color: var(--white);
  padding: 17px 38px;
  border: 2px solid rgba(255,255,255,0.5);
  font-size: 0.9rem;
}
.btn-ghost-lg:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn-nav {
  background: var(--green);
  color: var(--white) !important;
  padding: 9px 22px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
}
.btn-nav:hover { background: var(--green-mid); }

.btn-full { width: 100%; text-align: center; padding: 16px; }

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(18, 18, 18, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(18,18,18,0.99);
  box-shadow: 0 2px 24px rgba(0,0,0,0.3);
}

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

/* Logo */
.nav-logo, .footer-logo {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: -0.03em;
  text-decoration: none;
  line-height: 1;
}
.logo-fat  { color: var(--white); }
.logo-nerd { color: var(--green-light); }
.logo-lawn { color: rgba(255,255,255,0.55); font-weight: 400; }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--white); }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- HERO VIDEO STAGE ---- */
/*
 * Layering model (root stacking context):
 *   z-index: 1    .hero-stage  — fixed video, always behind page content
 *   z-index: 2    .hero-overlay — fixed dark gradient, dims as video plays
 *   z-index: 3    .hero-scroll-hint — fixed scroll indicator
 *   z-index: 4    .site-body   — real page content; slides over video
 *   z-index: 1000 .navbar      — always on top
 */

/* Fixed video: stays glued to the viewport. Never moves. */
.hero-stage {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
}

/* Fixed overlay: darkens the video for readability / cinematic feel.
   JS adjusts its opacity as the video scrubs. */
.hero-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 2;
  background: linear-gradient(
    160deg,
    rgba(5,14,3,0.60) 0%,
    rgba(10,22,5,0.45) 50%,
    rgba(5,14,3,0.35) 100%
  );
  pointer-events: none;
  will-change: opacity;
}

/* Fixed scroll hint */
.hero-scroll-hint {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  pointer-events: none;
  will-change: opacity;
}

/* Transparent spacer: the user scrolls through this to scrub the video.
   Has NO background — the fixed video shows right through it. */
.hero-spacer {
  height: 200vh;
  position: relative;
  z-index: 0; /* below the fixed video */
}

/* Site body: real page content. Solid backgrounds cover the fixed video
   as this element scrolls up into the viewport. */
.site-body {
  position: relative;
  z-index: 4;
}

/* Scroll mouse widget */
.scroll-mouse {
  width: 22px; height: 36px;
  border: 2px solid rgba(255,255,255,0.40);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-wheel {
  width: 3px; height: 8px;
  background: rgba(255,255,255,0.55);
  border-radius: 2px;
  animation: scrollBounce 2s infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  60%       { transform: translateY(8px); opacity: 0.3; }
}

/* ---- STATS STRIP ---- */
.stats-strip {
  background: var(--olive);
  padding: 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.stat-item {
  padding: 44px 32px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.10);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.stat-item:last-child { border-right: none; }
.stat-icon {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(122,184,62,0.15);
  border-radius: 50%;
  margin-bottom: 4px;
  flex-shrink: 0;
}
.stat-icon svg {
  width: 22px; height: 22px;
  color: var(--green-light);
}
.stat-headline {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.stat-label {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.52);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

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

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

.service-card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon-wrap {
  width: 60px; height: 60px;
  background: rgba(90,138,42,0.10);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background var(--transition);
}
.service-card:hover .service-icon-wrap {
  background: rgba(90,138,42,0.18);
}
.service-icon {
  width: 30px; height: 30px;
  color: var(--green);
}

.service-card h3 {
  margin-bottom: 12px;
  color: var(--text);
  font-size: 1.1rem;
}
.service-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.7;
}

.card-link {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition), color var(--transition);
}
.card-link:hover { color: var(--green-mid); gap: 10px; }

/* ---- PORTFOLIO ---- */
.portfolio {
  padding: 100px 0;
  background: var(--off-white);
}

.portfolio-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: 3px;
  border: 1.5px solid var(--grey-light);
  color: var(--text-light);
  background: var(--white);
  transition: all var(--transition);
  cursor: pointer;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

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

.portfolio-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.portfolio-item.hidden { display: none; }

.portfolio-img {
  width: 100%; height: 100%;
  transition: transform 0.5s ease;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.portfolio-item:hover .portfolio-img { transform: scale(1.05); }

/* Portfolio image CSS gradients (replace with real photos) */
.pi-lawn-1 {
  background: linear-gradient(145deg, #1a3a0a 0%, #2d5e18 35%, #4a8c28 60%, #3a6e20 100%);
}
.pi-lawn-2 {
  background: linear-gradient(160deg, #0f2808 0%, #2a5215 35%, #4e8c24 65%, #6ab83a 100%);
}
.pi-landscape-1 {
  background: linear-gradient(135deg, #1e3a10 0%, #3a6228 30%, #5a8e40 55%, #7ab84e 75%, #4a7a2a 100%);
}
.pi-landscape-2 {
  background: linear-gradient(120deg, #1a3508 0%, #305c18 30%, #528e30 60%, #80c04a 85%, #4a8028 100%);
}
.pi-pressure-1 {
  background: linear-gradient(145deg, #0d1e30 0%, #1a3a5e 30%, #2c5e8e 55%, #4a82b0 75%, #2a5a88 100%);
}
.pi-ac-1 {
  background: linear-gradient(135deg, #1a1a2e 0%, #2a2a4a 30%, #3a3a6a 55%, #5050a0 75%, #3a3a6a 100%);
}

.pi-label {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  background: rgba(0,0,0,0.25);
  padding: 4px 10px;
  border-radius: 3px;
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,20,5,0.92) 0%, rgba(10,20,5,0.4) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-cat {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 6px;
}
.portfolio-overlay h4 { color: var(--white); font-size: 1rem; margin-bottom: 4px; }
.portfolio-overlay p  { color: rgba(255,255,255,0.65); font-size: 0.82rem; }

/* ---- TESTIMONIALS ---- */
.testimonials {
  padding: 100px 0;
  background: var(--olive);
  background-image: linear-gradient(135deg, #2a3812 0%, #3a4e1e 50%, #2e4016 100%);
}

.testimonial-carousel { max-width: 760px; margin: 0 auto; }

.testimonial-track { position: relative; min-height: 260px; }

.testimonial-slide {
  display: none;
  text-align: center;
  animation: fadeInUp 0.45s ease;
}
.testimonial-slide.active { display: block; }

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

.quote-mark {
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 0.6;
  color: var(--green-light);
  opacity: 0.6;
  margin-bottom: 20px;
}

.quote-text {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.92);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
}

.quote-author {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
  flex-shrink: 0;
}
.av-1 { background: linear-gradient(135deg, #3a6e1e, #5a9e2a); }
.av-2 { background: linear-gradient(135deg, #1e3a6e, #2a5a9e); }
.av-3 { background: linear-gradient(135deg, #6e3a1e, #9e5a2a); }

.author-info { text-align: left; }
.author-info strong {
  display: block;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
}
.author-info span {
  color: rgba(255,255,255,0.52);
  font-size: 0.8rem;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
.carousel-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.carousel-btn:hover {
  border-color: var(--green-light);
  color: var(--green-light);
  background: rgba(122,184,62,0.10);
}
.carousel-dots { display: flex; gap: 8px; }
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.28);
  border: none;
  padding: 0;
  transition: all var(--transition);
}
.dot.active {
  background: var(--green-light);
  width: 24px;
  border-radius: 4px;
}

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

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

.about-img-wrap {
  position: relative;
}
.about-img {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    145deg,
    #1a3a0a 0%,
    #2e5c18 25%,
    #4a8c28 50%,
    #6ab83a 70%,
    #3e7020 90%,
    #1c3a0c 100%
  );
  position: relative;
  overflow: hidden;
}
.about-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/sample-home-01.jpg') center/cover no-repeat;
  opacity: 0.85;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 110px; height: 110px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.badge-number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.badge-text {
  font-family: var(--font-heading);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: center;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  line-height: 1.2;
  max-width: 70px;
}

.about-content .section-tag { margin-bottom: 12px; }
.about-content h2 { margin-bottom: 20px; }
.about-lead {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.65;
}
.about-content > p {
  color: var(--text-light);
  margin-bottom: 32px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-light);
}
.feature-check {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

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

.contact-info .section-tag { margin-bottom: 12px; }
.contact-info h2 { margin-bottom: 16px; line-height: 1.15; }
.contact-info > p { color: var(--text-light); margin-bottom: 36px; }

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.contact-icon {
  width: 44px; height: 44px;
  background: rgba(90,138,42,0.10);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg {
  width: 20px; height: 20px;
  color: var(--green);
}
.contact-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 2px;
}
.contact-item span, .contact-item a {
  font-size: 0.92rem;
  color: var(--text);
}
.contact-item a:hover { color: var(--green); }

/* Contact form */
.contact-form-wrap {
  position: relative;
}
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}

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

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--grey-light);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #aaaaaa; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(90,138,42,0.12);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-group textarea { resize: vertical; min-height: 110px; }

.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--grey);
  margin-top: 12px;
}
/* Honeypot — invisible to humans, filled only by bots */
.form-hp {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

/* Form success state */
.form-success {
  display: none;
  text-align: center;
  padding: 60px 40px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.form-success.visible { display: block; animation: fadeInUp 0.4s ease; }
.success-icon {
  width: 60px; height: 60px;
  background: var(--green);
  color: var(--white);
  font-size: 1.6rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.form-success h3 { font-size: 1.5rem; margin-bottom: 10px; }
.form-success p  { color: var(--text-light); }

/* ---- FOOTER ---- */
.footer {
  background: var(--dark);
  padding: 80px 0 0;
}

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

.footer-brand .footer-logo {
  display: inline-block;
  margin-bottom: 16px;
}
.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 280px;
}

.social-links { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px;
  border-radius: var(--radius);
  border: 1.5px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.social-link svg { width: 16px; height: 16px; }
.social-link:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a, .footer-col address p, .footer-col address a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--green-light); }

.footer-hours {
  margin-top: 16px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.footer-hours strong { color: rgba(255,255,255,0.75); margin-right: 4px; }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-bottom p {
  color: rgba(255,255,255,0.3);
  font-size: 0.82rem;
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  color: rgba(255,255,255,0.3);
  font-size: 0.82rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: rgba(255,255,255,0.65); }

/* ---- SCROLL REVEAL ANIMATION ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: 0.10s; }
.reveal:nth-child(3) { transition-delay: 0.20s; }
.reveal:nth-child(4) { transition-delay: 0.05s; }
.reveal:nth-child(5) { transition-delay: 0.15s; }
.reveal:nth-child(6) { transition-delay: 0.25s; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  /* Nav */
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(18,18,18,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: stretch;
    padding: 20px 24px 32px;
    gap: 4px;
    transform: translateY(-110%);
    transition: transform 0.35s ease;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-link { padding: 12px 16px; font-size: 0.9rem; }
  .btn-nav {
    margin-top: 8px;
    text-align: center;
    padding: 13px 22px;
    display: block;
  }

  /* Hero */
  .hero-spacer { height: 100vh; } /* shorter on mobile — video autoplays, no scrubbing */
  .hero { padding: 110px 0 80px; }
.hero-headline { font-size: clamp(2rem, 7vw, 3rem); }
  .hero-desc { font-size: 0.95rem; }
  .hero-actions { gap: 12px; }
  .btn-primary-lg, .btn-ghost-lg { padding: 14px 28px; font-size: 0.85rem; }

  /* Stats */
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.10); padding: 28px 24px; }
  .stat-item:last-child { border-bottom: none; }

  /* Services */
  .services, .portfolio, .about, .contact { padding: 72px 0; }
  .services-grid { grid-template-columns: 1fr; gap: 20px; }
  .service-card { padding: 28px 24px; }

  /* Portfolio */
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-filter { gap: 6px; }
  .filter-btn { font-size: 0.72rem; padding: 8px 14px; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img { aspect-ratio: 16/9; }
  .about-badge { width: 90px; height: 90px; right: -10px; bottom: -10px; }
  .badge-number { font-size: 1.4rem; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  /* Footer */
  .footer { padding: 60px 0 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 2rem; }
  .hero-actions { flex-direction: column; }
  .btn-primary-lg, .btn-ghost-lg { text-align: center; }
  .section-header { margin-bottom: 36px; }
}
