/* ═══════════════════════════════════════════════
   ENHANCE LANDSCAPE — SHARED DESIGN SYSTEM
   Extracted from index.html + extended for all pages
═══════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════════ */
:root {
  /* Typography */
  --text-h1:       #FFFFFF;
  --text-h2:       #F7F8F7;
  --text-h3:       #F0F3F0;
  --text-body:     #C7D0CA;
  --text-secondary:#A8B2AC;
  --text-muted:    #88928C;
  --text-caption:  #7B847F;
  --text-link:     #E8F5EA;
  --text-link-hover:#4CCE54;
  --text-accent:   #4CCE54;

  /* Backgrounds */
  --bg-primary:    #070807;
  --bg-alt:        #0D110E;
  --bg-charcoal:   #111513;
  --bg-deep-green: #121A14;

  /* Surfaces */
  --card-bg:       rgba(22,26,23,0.92);
  --card-border:   rgba(255,255,255,0.08);
  --card-border-hover: rgba(76,206,84,0.40);
  --card-shadow:   0 12px 30px rgba(0,0,0,0.28);

  /* Greens */
  --green-primary: #2E7D32;
  --green-mid:     #388E3C;
  --green-accent:  #43A047;
  --green-bright:  #4CCE54;
}

/* ═══════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-primary);
  color: var(--text-body);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.85;
  overflow-x: hidden;
}

/* ═══════════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════════ */
.container { width: 90%; max-width: 1240px; margin: auto; }
section { position: relative; }

/* ═══════════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════════ */
h1 { font-size: 58px; font-weight: 800; line-height: 1.06; letter-spacing: -0.03em; color: var(--text-h1); }
h2 { font-size: 42px; font-weight: 700; line-height: 1.12; letter-spacing: -0.02em; color: var(--text-h2); }
h3 { font-size: 18px; font-weight: 600; color: var(--text-h3); }
p  { color: var(--text-body); line-height: 1.85; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--text-accent); margin-bottom: 18px;
}
.eyebrow::before {
  content: ''; width: 20px; height: 2px; background: var(--text-accent); flex-shrink: 0;
}

/* ═══════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════ */
.btn-primary {
  display: inline-block; padding: 15px 30px;
  background: var(--green-primary); color: #FFFFFF; text-decoration: none;
  border-radius: 6px; font-weight: 700; font-size: 15px;
  border: 1px solid var(--green-accent); letter-spacing: 0.01em;
  box-shadow: 0 10px 25px rgba(46,125,50,0.30);
  transition: background 0.22s ease, transform 0.18s ease, box-shadow 0.22s ease;
}
.btn-primary:hover {
  background: var(--green-mid); color: #FFFFFF;
  transform: translateY(-2px); box-shadow: 0 14px 32px rgba(46,125,50,0.42);
}
.btn-primary:focus-visible {
  outline: 3px solid var(--green-bright); outline-offset: 3px;
}
.btn-secondary {
  display: inline-block; padding: 14px 28px;
  background: rgba(255,255,255,0.03); color: #F7F7F7; text-decoration: none;
  border-radius: 6px; font-weight: 600; font-size: 15px;
  border: 1px solid rgba(76,206,84,0.40);
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}
.btn-secondary:hover {
  background: rgba(46,125,50,0.15); border-color: rgba(76,206,84,0.70); color: #ffffff;
}
.btn-secondary:focus-visible {
  outline: 3px solid var(--green-bright); outline-offset: 3px;
}

/* ═══════════════════════════════════════════════
   FADE-UP ANIMATION
═══════════════════════════════════════════════ */
.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.60s ease, transform 0.60s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
}

/* ═══════════════════════════════════════════════
   HEADER / NAV
═══════════════════════════════════════════════ */
header {
  position: fixed; width: 100%; top: 0; left: 0; z-index: 1000;
  background: rgba(7,8,7,0.92); backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(76,206,84,0.10);
  transition: background 0.3s ease;
}
header .container { display: flex; justify-content: space-between; align-items: center; padding: 13px 0; }
.nav-logo { text-decoration: none; display: block; flex-shrink: 0; }
.nav-logo:focus-visible { outline: 3px solid var(--green-bright); outline-offset: 4px; border-radius: 4px; }
/* LOGO: Production WebP — native 600×473 (full-size 2057×1622, ratio ≈1.2685:1).
   Height is the constraint; width scales automatically to preserve native proportions.
   Do NOT set a fixed width, apply background, filter, or artificial frame.
   Do NOT force into a 4:3 or square aspect-ratio container. */
.nav-logo-img {
  height: 72px;
  width: auto;
  max-width: none;
  display: block;
  object-fit: contain;
  background: transparent;
}

nav.desktop-nav { display: flex; align-items: center; gap: 28px; }
nav.desktop-nav a:not(.btn-primary):not(.nav-phone-link) {
  color: var(--text-secondary); text-decoration: none; font-size: 13px; font-weight: 500;
  letter-spacing: 0.02em; transition: color 0.2s ease;
}
nav.desktop-nav a:not(.btn-primary):not(.nav-phone-link):hover { color: #fff; }
nav.desktop-nav a:not(.btn-primary):not(.nav-phone-link).nav-active { color: var(--text-accent); }
/* Nav CTA button */
nav.desktop-nav a.btn-primary {
  color: #ffffff !important; font-size: 13px; padding: 11px 22px;
  border: 1px solid #3f9d46; margin: 0;
}
nav.desktop-nav a.btn-primary:hover { color: #ffffff !important; }
.nav-phone-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--text-link); text-decoration: none; font-size: 13px; font-weight: 700;
  letter-spacing: 0.01em; transition: color 0.2s ease;
}
.nav-phone-link:hover { color: #fff; }
.nav-phone-link svg { width: 13px; height: 13px; fill: var(--green-bright); flex-shrink: 0; }
.nav-divider { width: 1px; height: 18px; background: rgba(255,255,255,0.10); }

/* ─── Services Dropdown ───────────────────────── */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-btn {
  background: none; border: none; cursor: pointer;
  color: var(--text-secondary); font-size: 13px; font-weight: 500;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.02em; transition: color 0.2s ease;
  display: inline-flex; align-items: center; gap: 5px;
  padding: 0;
}
.nav-dropdown-btn:hover,
.nav-dropdown:focus-within .nav-dropdown-btn { color: #fff; }
.nav-dropdown-btn.nav-active { color: var(--text-accent); }
.nav-dropdown-btn svg {
  width: 10px; height: 10px; fill: currentColor;
  transition: transform 0.2s ease;
}
.nav-dropdown:focus-within .nav-dropdown-btn svg,
.nav-dropdown:hover .nav-dropdown-btn svg { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute; top: calc(100% + 12px); left: 50%;
  transform: translateX(-50%);
  background: rgba(10,14,11,0.98); backdrop-filter: blur(20px);
  border: 1px solid rgba(76,206,84,0.18);
  border-radius: 10px; padding: 8px;
  min-width: 240px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.70);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  transform: translateX(-50%) translateY(-4px);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 6px; text-decoration: none;
  color: var(--text-secondary); font-size: 13px; font-weight: 500;
  transition: background 0.15s ease, color 0.15s ease;
  border-bottom: none !important;
}
.nav-dropdown-item:hover { background: rgba(76,206,84,0.08); color: #fff; }
.nav-dropdown-item.nav-active { color: var(--text-accent); }
.nav-dropdown-item-icon {
  width: 28px; height: 28px; flex-shrink: 0; border-radius: 5px;
  background: rgba(46,125,50,0.14); border: 1px solid rgba(76,206,84,0.20);
  display: flex; align-items: center; justify-content: center;
}
.nav-dropdown-item-icon svg { width: 13px; height: 13px; fill: var(--text-accent); }
.nav-dropdown-item-text { display: flex; flex-direction: column; }
.nav-dropdown-item-title { font-weight: 600; color: inherit; font-size: 13px; line-height: 1.3; }
.nav-dropdown-item-sub { font-size: 10px; color: var(--text-muted); margin-top: 1px; }

/* Mobile hamburger */
.mobile-menu-btn {
  display: none; background: none; border: none; cursor: pointer;
  padding: 6px; flex-direction: column; gap: 5px;
}
.mobile-menu-btn span {
  display: block; width: 22px; height: 2px; background: var(--text-secondary);
  border-radius: 2px; transition: all 0.25s ease;
}
.mobile-menu-btn.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-nav {
  display: none; position: fixed; top: 60px; left: 0; right: 0;
  background: rgba(7,8,7,0.98); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(76,206,84,0.12);
  padding: 20px 0 28px; z-index: 999; flex-direction: column; gap: 0;
  max-height: calc(100svh - 60px); overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--text-body); text-decoration: none; font-size: 15px; font-weight: 500;
  padding: 13px 5%; border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s ease;
}
.mobile-nav a:hover { color: #fff; }
.mobile-nav a.nav-active { color: var(--text-accent); }
/* Mobile Services sub-section */
.mobile-nav-services-label {
  font-size: 9px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-muted); padding: 14px 5% 6px; border-bottom: none;
}
.mobile-nav-services-label:hover { color: var(--text-muted); }
.mobile-nav-sub {
  padding-left: 8% !important; font-size: 14px !important;
  color: var(--text-secondary) !important;
  background: rgba(0,0,0,0.20);
}
.mobile-nav .mobile-call {
  margin: 18px 5% 0; padding: 15px; text-align: center;
  background: var(--green-primary); border-radius: 6px; color: #fff;
  font-weight: 700; font-size: 15px; border-bottom: none;
}

/* ═══════════════════════════════════════════════
   HERO (Homepage — video + responsive image)
═══════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 760px; max-height: 880px;
  display: flex;
  align-items: center; overflow: hidden; padding-top: 98px;
}

/* ─── Hero media layers ─────────────────────── */
/* Responsive fallback image (visible when video unavailable) */
.hero-media-wrap {
  position: absolute; inset: 0; z-index: 0;
}
.hero-fallback-picture {
  display: block; width: 100%; height: 100%;
}
.hero-fallback-img {
  width: 100%; height: 100%;
  object-fit: cover;
  /* Focal point: building right-center, landscaping foreground left open */
  object-position: 58% 50%;
  display: block;
}
/* Video layer — sits on top of image, same size */
.hero-video-wrap { position: absolute; inset: 0; z-index: 1; }
.hero-video-wrap video {
  width: 100%; height: 100%;
  object-fit: cover;
  /* Desktop: building right-center, foreground landscaping visible, left zone dark for copy */
  object-position: 58% 50%;
  display: block;
}

/* ─── Overlay system (3-layer per spec) ─────── */
/* Layer 1: Strong left-to-right gradient for headline readability
   Left text zone: ~82% dark | Center: ~50% | Right: ~22% */
.hero-overlay-base {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(108deg,
    rgba(3,6,4,0.93) 0%,
    rgba(3,6,4,0.82) 28%,
    rgba(3,6,4,0.52) 52%,
    rgba(3,6,4,0.26) 72%,
    rgba(3,6,4,0.14) 100%);
  pointer-events: none;
}
/* Layer 2: Subtle full-image darkening ~16% */
.hero-overlay-darken {
  position: absolute; inset: 0; z-index: 2;
  background: rgba(3,6,4,0.16);
  pointer-events: none;
}
/* Layer 3: Very restrained green-black brand tint — bottom-left only */
.hero-overlay-glow {
  position: absolute; bottom: 15%; left: -8%; z-index: 2;
  width: 540px; height: 400px;
  background: radial-gradient(ellipse at left, rgba(20,60,22,0.12) 0%, transparent 68%);
  pointer-events: none;
}
.hero-overlay-foliage-glow {
  position: absolute; bottom: 10%; right: 4%; z-index: 2;
  width: 420px; height: 240px;
  background: radial-gradient(ellipse at center, rgba(30,80,30,0.07) 0%, transparent 65%);
  pointer-events: none;
}
/* Right-side soft darkening to prevent bright right edge */
.hero-overlay-right {
  position: absolute; top: 0; right: 0; bottom: 0; width: 45%; z-index: 2;
  background: linear-gradient(to left, rgba(3,6,4,0.38) 0%, transparent 70%);
  pointer-events: none;
}
/* Top vignette for nav clearance */
.hero-overlay-top {
  position: absolute; top: 0; left: 0; right: 0; height: 200px; z-index: 2;
  background: linear-gradient(to bottom, rgba(4,8,5,0.60) 0%, transparent 100%);
  pointer-events: none;
}
/* Bottom fade into page */
.hero-overlay-bottom {
  position: absolute; bottom: 0; left: 0; right: 0; height: 280px; z-index: 2;
  background: linear-gradient(to top, rgba(7,8,7,1) 0%, rgba(7,8,7,0.55) 45%, transparent 100%);
  pointer-events: none;
}

/* ─── Hero content ──────────────────────────── */
.hero-inner {
  position: relative; z-index: 3; width: 100%;
  /* Content sits ~48% from top when hero is at spec min-height (760px) */
  padding: 56px 0 80px;
}
.hero-inner .container {
  display: flex; align-items: center; justify-content: space-between; gap: 48px;
}
/* Copy column: 620–700px per spec */
.hero-copy { max-width: 660px; flex-shrink: 1; min-width: 0; }
.hero-eyebrow-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(46,125,50,0.10); border: 1px solid rgba(76,206,84,0.25);
  border-radius: 4px; padding: 7px 14px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-accent); margin-bottom: 24px;
}
.hero-eyebrow-badge svg { width: 12px; height: 12px; fill: var(--text-accent); flex-shrink: 0; }
.hero-copy h1 { font-size: 52px; margin-bottom: 22px; color: var(--text-h1); }
.hero-copy p { font-size: 17px; color: var(--text-body); line-height: 1.85; max-width: 520px; margin-bottom: 32px; }
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════
   INTERIOR PAGE HERO
═══════════════════════════════════════════════ */
.page-hero {
  position: relative; min-height: 500px; display: flex;
  align-items: flex-end; overflow: hidden; padding-top: 98px;
}
.page-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center 40%; display: block;
}
.page-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(105deg,
    rgba(4,8,5,0.97) 0%,
    rgba(4,8,5,0.88) 45%,
    rgba(4,8,5,0.60) 75%,
    rgba(4,8,5,0.35) 100%);
}
.page-hero-overlay-bottom {
  position: absolute; bottom: 0; left: 0; right: 0; height: 220px; z-index: 2;
  background: linear-gradient(to top, rgba(7,8,7,1) 0%, transparent 100%);
  pointer-events: none;
}
.page-hero-glow {
  position: absolute; bottom: 0; left: -10%; z-index: 1;
  width: 600px; height: 300px;
  background: radial-gradient(ellipse at left, rgba(46,125,50,0.10) 0%, transparent 65%);
  pointer-events: none;
}
/* Gradient-only hero (no image) */
.page-hero-gradient {
  background: linear-gradient(135deg, #050a06 0%, #0a1a0c 40%, #071008 100%);
}
.page-hero-gradient .page-hero-overlay {
  background: radial-gradient(ellipse at 20% 60%, rgba(46,125,50,0.10) 0%, transparent 55%);
}
.page-hero-inner {
  position: relative; z-index: 3; width: 100%;
  padding: 64px 0 80px;
}
.page-hero h1 { font-size: 48px; max-width: 760px; margin-bottom: 18px; }
.page-hero p.hero-lead {
  font-size: 18px; color: var(--text-body); max-width: 580px;
  line-height: 1.85; margin-bottom: 32px;
}
.page-hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 28px; }

/* ─── Breadcrumb ──────────────────────────────── */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--text-accent); }
.breadcrumb-sep { color: var(--text-muted); opacity: 0.5; }
.breadcrumb-current { color: var(--text-accent); }

/* ═══════════════════════════════════════════════
   TRUST STRIP
═══════════════════════════════════════════════ */
#trust {
  background: linear-gradient(180deg, var(--bg-primary), var(--bg-alt));
  border-top: 1px solid rgba(76,206,84,0.14);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 20px 0;
}
.trust-scroll {
  display: flex; align-items: center; gap: 0;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  scrollbar-width: none; -ms-overflow-style: none;
}
.trust-scroll::-webkit-scrollbar { display: none; }
.trust-item {
  display: flex; align-items: center; gap: 9px;
  padding: 0 26px; white-space: nowrap;
  font-size: 11px; font-weight: 700; letter-spacing: 0.10em;
  text-transform: uppercase; color: var(--text-body); flex-shrink: 0;
}
.trust-item svg { width: 15px; height: 15px; fill: var(--text-accent); flex-shrink: 0; }
.trust-sep { width: 1px; height: 28px; background: rgba(255,255,255,0.10); flex-shrink: 0; }

/* ═══════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════ */
#services {
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg-deep-green) 100%);
  padding: 106px 0 0;
}
#services::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; pointer-events: none;
  background: radial-gradient(ellipse at 50% 0%, rgba(46,125,50,0.06) 0%, transparent 60%);
}
.section-header { margin-bottom: 56px; }
.services-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: rgba(0,0,0,0.40);
}
.service-card {
  position: relative;
  background: var(--bg-deep-green);
  padding: 46px 44px;
  overflow: hidden;
  transition: background 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  border: 1px solid rgba(255,255,255,0.06);
}
.service-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(76,206,84,0.20), transparent);
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 2px; height: 100%;
  background: linear-gradient(to bottom, var(--text-accent), var(--green-primary), transparent);
  opacity: 0; transition: opacity 0.28s ease;
}
.service-card:hover {
  background: #131e15;
  border-color: rgba(76,206,84,0.20);
  box-shadow: 0 8px 40px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.05);
}
.service-card:hover::before { opacity: 1; }
.service-card-icon {
  width: 42px; height: 42px; margin-bottom: 24px;
  border-radius: 8px; background: rgba(46,125,50,0.12);
  border: 1px solid rgba(76,206,84,0.22);
  display: flex; align-items: center; justify-content: center;
}
.service-card-icon svg { width: 20px; height: 20px; fill: var(--text-accent); }
.service-num {
  font-size: 76px; font-weight: 800; line-height: 1;
  color: rgba(255,255,255,0.13);
  letter-spacing: -0.04em;
  margin-bottom: 18px;
  transition: color 0.28s ease;
  text-shadow:
    0 1px 0 rgba(255,255,255,0.05),
    0 -1px 0 rgba(0,0,0,0.30);
}
.service-card:hover .service-num { color: rgba(255,255,255,0.18); }
.service-card-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--text-accent); margin-bottom: 10px;
}
.service-card h3 { font-size: 20px; font-weight: 600; color: var(--text-h3); margin-bottom: 12px; line-height: 1.3; }
.service-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.85; }
.service-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 20px; font-size: 11px; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase; color: var(--text-accent);
  text-decoration: none; opacity: 0; transform: translateY(4px);
  transition: opacity 0.2s, transform 0.2s;
}
.service-card:hover .service-card-link { opacity: 1; transform: translateY(0); }
.service-card-link svg { width: 11px; height: 11px; fill: var(--text-accent); }

/* ═══════════════════════════════════════════════
   INTERIOR PAGE — GENERIC SECTIONS
═══════════════════════════════════════════════ */
.interior-section {
  padding: 96px 0;
  position: relative;
}
.interior-section-alt {
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg-deep-green) 100%);
}
.interior-section-dark {
  background: linear-gradient(180deg, var(--bg-deep-green) 0%, var(--bg-charcoal) 100%);
}
.interior-section-charcoal {
  background: linear-gradient(180deg, var(--bg-charcoal) 0%, var(--bg-primary) 100%);
}
.interior-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 50% 0%, rgba(46,125,50,0.04) 0%, transparent 60%);
}
.section-intro { max-width: 640px; margin-bottom: 56px; }
.section-intro h2 { margin-bottom: 16px; }
.section-intro p { font-size: 16px; color: var(--text-secondary); line-height: 1.9; }

/* ─── Two-column layout ──────────────────────── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: start; }
.two-col-copy h2 { font-size: 36px; margin-bottom: 18px; }
.two-col-copy p { font-size: 15px; color: var(--text-secondary); line-height: 1.9; margin-bottom: 14px; }

/* ─── Benefit Cards (3-col) ─────────────────── */
.benefit-cards-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.benefit-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px; padding: 32px 28px;
  box-shadow: var(--card-shadow);
  transition: border-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}
.benefit-card:hover {
  border-color: var(--card-border-hover);
  box-shadow: 0 18px 44px rgba(0,0,0,0.40), 0 0 0 1px rgba(76,206,84,0.10);
  transform: translateY(-2px);
}
.benefit-card-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(46,125,50,0.12); border: 1px solid rgba(76,206,84,0.22);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.benefit-card-icon svg { width: 22px; height: 22px; fill: var(--text-accent); }
.benefit-card h3 { font-size: 17px; font-weight: 700; color: var(--text-h3); margin-bottom: 10px; line-height: 1.3; }
.benefit-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.8; }

/* ─── Property Types chip row ────────────────── */
.property-types {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px;
}
.property-type-chip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 16px; border-radius: 100px;
  background: rgba(22,26,23,0.90); border: 1px solid rgba(76,206,84,0.22);
  font-size: 13px; font-weight: 600; color: var(--text-body);
  transition: all 0.2s ease;
}
.property-type-chip:hover { border-color: rgba(76,206,84,0.50); color: #fff; }
.property-type-chip svg { width: 14px; height: 14px; fill: var(--text-accent); flex-shrink: 0; }

/* ─── What's Included checklist ─────────────── */
.included-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border: 1px solid rgba(255,255,255,0.07); border-radius: 12px; overflow: hidden;
}
.included-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 20px 24px; border-bottom: 1px solid rgba(255,255,255,0.06);
  border-right: 1px solid rgba(255,255,255,0.06);
  background: rgba(18,26,20,0.60);
  transition: background 0.2s ease;
}
.included-item:hover { background: rgba(22,32,24,0.80); }
.included-item:nth-child(2n) { border-right: none; }
.included-item:nth-last-child(-n+2) { border-bottom: none; }
.included-check {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0; margin-top: 2px;
  background: rgba(46,125,50,0.18); border: 1px solid rgba(76,206,84,0.38);
  display: flex; align-items: center; justify-content: center;
}
.included-check svg { width: 11px; height: 11px; fill: var(--text-accent); }
.included-text strong { display: block; font-size: 14px; font-weight: 700; color: var(--text-h3); margin-bottom: 3px; }
.included-text p { font-size: 13px; color: var(--text-secondary); line-height: 1.65; margin: 0; }

/* ─── Why Enhance strip ──────────────────────── */
.why-strip {
  background: linear-gradient(135deg, #091509, #0e1c0f);
  border-top: 1px solid rgba(46,125,50,0.16); border-bottom: 1px solid rgba(46,125,50,0.10);
  padding: 72px 0; position: relative; overflow: hidden;
}
.why-strip::before {
  content: ''; position: absolute; top: -50%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(46,125,50,0.10) 0%, transparent 65%);
  pointer-events: none;
}
.why-strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.why-stat { text-align: center; }
.why-stat-number {
  font-size: 48px; font-weight: 800; color: var(--text-h1);
  letter-spacing: -0.03em; line-height: 1;
}
.why-stat-number span { color: var(--text-accent); }
.why-stat-label {
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-secondary); margin-top: 8px;
}

/* ─── FAQ Accordion ──────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 6px; max-width: 780px; }
.faq-item {
  background: rgba(18,22,19,0.80); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px; overflow: hidden;
  transition: border-color 0.2s ease;
}
.faq-item.open { border-color: rgba(76,206,84,0.22); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; cursor: pointer; user-select: none;
  background: none; border: none; width: 100%; text-align: left;
  font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 600;
  color: var(--text-h3); line-height: 1.4;
  transition: color 0.2s ease;
}
.faq-question:hover { color: #fff; }
.faq-item.open .faq-question { color: #fff; }
.faq-icon {
  width: 24px; height: 24px; flex-shrink: 0; border-radius: 50%;
  background: rgba(46,125,50,0.12); border: 1px solid rgba(76,206,84,0.22);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.25s ease, background 0.2s ease;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(46,125,50,0.22); }
.faq-icon svg { width: 12px; height: 12px; fill: var(--text-accent); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1), padding 0.25s ease;
  padding: 0 24px;
  font-size: 14px; color: var(--text-secondary); line-height: 1.85;
}
.faq-item.open .faq-answer {
  max-height: 800px;
  padding: 0 24px 20px;
}

/* ─── Related Services ───────────────────────── */
.related-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px;
}
.related-card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 12px; padding: 28px 24px; text-decoration: none;
  display: block; transition: border-color 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
}
.related-card:hover {
  border-color: var(--card-border-hover);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.40);
}
.related-card-icon {
  width: 38px; height: 38px; border-radius: 8px;
  background: rgba(46,125,50,0.12); border: 1px solid rgba(76,206,84,0.20);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.related-card-icon svg { width: 18px; height: 18px; fill: var(--text-accent); }
.related-card-label {
  font-size: 9px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-accent); margin-bottom: 6px;
}
.related-card h3 { font-size: 16px; font-weight: 700; color: var(--text-h3); margin-bottom: 8px; line-height: 1.3; }
.related-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.75; }
.related-card-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px; font-size: 11px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-accent);
}
.related-card-arrow svg { width: 10px; height: 10px; fill: var(--text-accent); }

/* ─── Photo Placeholder ──────────────────────── */
.photo-placeholder {
  width: 100%; aspect-ratio: 4/3;
  background: rgba(18,26,20,0.60);
  border: 2px dashed rgba(76,206,84,0.20); border-radius: 12px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; color: var(--text-muted);
}
.photo-placeholder svg { width: 32px; height: 32px; fill: rgba(76,206,84,0.20); }
.photo-placeholder span { font-size: 11px; font-weight: 600; letter-spacing: 0.10em; text-transform: uppercase; }
.team-photo-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
.team-photo-item {}
.team-photo-name { font-size: 15px; font-weight: 700; color: var(--text-h3); margin-top: 12px; }
.team-photo-role {
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-accent); margin-top: 4px;
}

/* ─── SOLYNX Placeholder ─────────────────────── */
.solynx-placeholder {
  background: rgba(7,8,7,0.80); border: 1px dashed rgba(76,206,84,0.15);
  border-radius: 12px; padding: 32px 28px; text-align: center;
  margin-top: 48px;
}
.solynx-placeholder-label {
  font-size: 9px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(76,206,84,0.30); margin-bottom: 8px;
}
.solynx-placeholder p { font-size: 13px; color: var(--text-muted); }

/* ═══════════════════════════════════════════════
   PLANT ANIMATION DIVIDER
═══════════════════════════════════════════════ */
.plant-divider {
  background: linear-gradient(to bottom, var(--bg-deep-green), var(--bg-charcoal));
  padding: 56px 0; display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.plant-divider::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at center, rgba(46,125,50,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.plant-svg-wrap { opacity: 0.12; width: 100%; max-width: 900px; }
.plant-roots { opacity: 0; }
.plant-stem  { opacity: 0; transform-origin: bottom center; transform: scaleY(0); }
.plant-leaf-l { opacity: 0; transform-origin: right bottom; transform: rotate(-40deg) scale(0); }
.plant-leaf-r { opacity: 0; transform-origin: left bottom; transform: rotate(40deg) scale(0); }
.plant-glow  { opacity: 0; }
@media (prefers-reduced-motion: no-preference) {
  .plant-animated .plant-roots { animation: plantRootsIn 0.7s ease forwards 0s; }
  .plant-animated .plant-stem  { animation: plantStemIn 0.7s ease forwards 0.6s; }
  .plant-animated .plant-leaf-l { animation: plantLeafLIn 0.65s cubic-bezier(0.34,1.56,0.64,1) forwards 1.2s; }
  .plant-animated .plant-leaf-r { animation: plantLeafRIn 0.65s cubic-bezier(0.34,1.56,0.64,1) forwards 1.4s; }
  .plant-animated .plant-glow  { animation: plantGlowIn 0.8s ease forwards 1.8s; }
}
@media (prefers-reduced-motion: reduce) {
  .plant-roots, .plant-stem, .plant-leaf-l, .plant-leaf-r, .plant-glow {
    opacity: 1 !important; transform: none !important;
  }
}
@keyframes plantRootsIn { to { opacity: 1; } }
@keyframes plantStemIn  { to { opacity: 1; transform: scaleY(1); } }
@keyframes plantLeafLIn { to { opacity: 1; transform: rotate(0deg) scale(1); } }
@keyframes plantLeafRIn { to { opacity: 1; transform: rotate(0deg) scale(1); } }
@keyframes plantGlowIn  { to { opacity: 1; } }

/* ═══════════════════════════════════════════════
   OWNER-LED SECTION
═══════════════════════════════════════════════ */
#owner-led {
  background: linear-gradient(180deg, var(--bg-charcoal) 0%, var(--bg-deep-green) 100%);
  padding: 106px 0; position: relative; overflow: hidden;
}
#owner-led::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(46,125,50,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.owner-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.owner-copy { max-width: 480px; }
.owner-copy h2 { font-size: 38px; line-height: 1.1; margin-bottom: 0; color: var(--text-h2); }
.owner-copy p { font-size: 15px; color: var(--text-body); line-height: 1.9; margin-top: 18px; }
.owner-benefits { margin-top: 32px; }
.owner-benefit {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.owner-benefit:last-child { border-bottom: none; }
.owner-benefit-dot {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0; margin-top: 2px;
  background: rgba(46,125,50,0.16); border: 1px solid rgba(76,206,84,0.35);
  display: flex; align-items: center; justify-content: center;
}
.owner-benefit-dot svg { width: 12px; height: 12px; fill: var(--text-accent); }
.owner-benefit-body strong { display: block; font-size: 14px; font-weight: 700; color: var(--text-h3); margin-bottom: 3px; }
.owner-benefit-body p { font-size: 13px; color: var(--text-secondary); margin: 0; line-height: 1.75; }
/* ─── Owner / Leadership cards — horizontal equal-weight layout ── */
/* Desktop: side-by-side with equal 4:5 portrait slots (300–360px wide) */
.owner-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}
.owner-card {
  position: relative;
  border-radius: 8px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 8px 28px rgba(0,0,0,0.32);
  transition: border-color 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
}
.owner-card:hover {
  border-color: rgba(76,206,84,0.32);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.40), 0 0 0 1px rgba(76,206,84,0.10);
}
/* 4:5 portrait aspect ratio — consistent for both cards */
.owner-card-portrait-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #0c1410;
}
.owner-card-bg {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
}
/* Portrait placeholder — shown when no approved headshot available */
.owner-portrait-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  background: linear-gradient(160deg, #0e1a10 0%, #091309 100%);
  border-bottom: 1px solid rgba(76,206,84,0.12);
}
.owner-portrait-placeholder-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(46,125,50,0.14);
  border: 1px solid rgba(76,206,84,0.22);
  display: flex; align-items: center; justify-content: center;
}
.owner-portrait-placeholder-icon svg {
  width: 26px; height: 26px; fill: rgba(76,206,84,0.40);
}
.owner-portrait-placeholder-label {
  font-size: 9px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(76,206,84,0.30);
  text-align: center; padding: 0 16px;
}
.owner-card-overlay {
  padding: 20px 20px 22px;
  background: linear-gradient(180deg, rgba(8,14,9,0.95) 0%, rgba(8,14,9,0.88) 100%);
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex; flex-direction: column; gap: 12px;
}
.owner-card-name { font-size: 18px; font-weight: 700; color: #fff; letter-spacing: -0.01em; }
.owner-card-role {
  font-size: 9px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-accent); margin-top: -8px;
}
.owner-card-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 16px; border-radius: 6px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.16);
  color: #e8e8e8; font-size: 12px; font-weight: 600; text-decoration: none;
  letter-spacing: 0.04em; transition: background 0.2s ease, border-color 0.2s ease;
  align-self: flex-start;
}
.owner-card-btn:hover { background: rgba(46,125,50,0.35); border-color: rgba(76,206,84,0.50); color: #fff; }
.owner-card-btn:focus-visible { outline: 3px solid var(--green-bright); outline-offset: 3px; }
.owner-card-btn svg { width: 13px; height: 13px; fill: currentColor; }

/* ═══════════════════════════════════════════════
   COMMERCIAL FOCUS
═══════════════════════════════════════════════ */
#commercial {
  background: linear-gradient(180deg, var(--bg-deep-green) 0%, var(--bg-alt) 100%);
  padding: 106px 0; position: relative;
}
#commercial::before {
  content: ''; position: absolute; top: 0; right: 0; bottom: 0; left: 0; pointer-events: none;
  background: radial-gradient(ellipse at 80% 50%, rgba(46,125,50,0.05) 0%, transparent 55%);
}
.commercial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: start; }
.benefit-list { display: flex; flex-direction: column; }
.benefit-row { padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.benefit-row:last-child { border-bottom: none; }
.benefit-row h3 { font-size: 15px; font-weight: 600; color: var(--text-h3); margin-bottom: 5px; }
.benefit-row p { font-size: 14px; color: var(--text-secondary); line-height: 1.85; }

/* ═══════════════════════════════════════════════
   PROOF / WORK
═══════════════════════════════════════════════ */
#proof {
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg-primary) 100%);
  padding: 106px 0 0;
}
.proof-hero-wrap { position: relative; overflow: hidden; margin-bottom: 3px; }
.proof-hero-img { width: 100%; height: 580px; object-fit: cover; display: block; transition: transform 0.8s ease; }
.proof-hero-wrap:hover .proof-hero-img { transform: scale(1.02); }
.proof-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
.proof-card { position: relative; overflow: hidden; }
.proof-card img { width: 100%; height: 380px; object-fit: cover; display: block; transition: transform 0.8s ease; }
.proof-card:hover img { transform: scale(1.03); }
.proof-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 40px 44px;
  background: linear-gradient(to top, rgba(5,8,6,0.92) 0%, transparent 100%);
}
.proof-hero-wrap .proof-overlay { padding: 56px 60px; }
.proof-label { font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-accent); margin-bottom: 8px; }
.proof-overlay h3 { font-size: 24px; font-weight: 700; color: #fff; line-height: 1.2; }
.proof-hero-wrap .proof-overlay h3 { font-size: 32px; }

/* ═══════════════════════════════════════════════
   SERVICE AREA
═══════════════════════════════════════════════ */
#service-area {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-alt) 100%);
  padding: 106px 0; position: relative;
}
#service-area::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 20% 60%, rgba(46,125,50,0.05) 0%, transparent 55%);
}
.area-section-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; margin-top: 52px; }
.area-group-title {
  display: flex; align-items: center; gap: 9px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-accent); margin-bottom: 20px;
}
.area-group-title svg { width: 13px; height: 13px; fill: var(--text-accent); }
.area-card {
  display: flex; align-items: center; gap: 12px; padding: 14px 18px;
  border-radius: 8px; font-size: 14px; font-weight: 600; margin-bottom: 7px;
  transition: all 0.22s ease;
}
.area-card-operating {
  background: linear-gradient(145deg, #141c15, #0f1410);
  border: 1px solid rgba(255,255,255,0.10); color: var(--text-link);
}
.area-card-operating:hover { border-color: rgba(76,206,84,0.45); color: #fff; background: linear-gradient(145deg, #172018, #111511); }
.area-card-primary {
  background: linear-gradient(145deg, rgba(46,125,50,0.26), rgba(14,24,15,0.96)) !important;
  border-color: rgba(76,206,84,0.40) !important; color: #fff !important;
}
.area-card-primary:hover { background: linear-gradient(145deg, rgba(46,125,50,0.36), rgba(14,24,15,0.98)) !important; border-color: rgba(76,206,84,0.62) !important; }
.area-card-regional { background: transparent; border: 1px solid rgba(255,255,255,0.08); color: var(--text-secondary); }
.area-card-regional:hover { border-color: rgba(76,206,84,0.28); color: var(--text-body); }
.area-pin { width: 15px; height: 15px; fill: var(--green-primary); flex-shrink: 0; }
.area-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(76,206,84,0.25); border: 1px solid rgba(76,206,84,0.40); flex-shrink: 0; }

/* ═══════════════════════════════════════════════
   SERVICE AREAS PAGE — REGION BLOCKS
═══════════════════════════════════════════════ */
.service-regions-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 22px; margin-top: 52px;
}
.region-block {
  background: var(--card-bg);
  border: 1px solid rgba(76,206,84,0.14);
  border-radius: 14px; padding: 28px 24px;
  box-shadow: var(--card-shadow), inset 0 1px 0 rgba(255,255,255,0.05);
  transition: border-color 0.28s ease, box-shadow 0.28s ease;
}
.region-block:hover {
  border-color: rgba(76,206,84,0.38);
  box-shadow: 0 18px 44px rgba(0,0,0,0.42), 0 0 0 1px rgba(76,206,84,0.10), inset 0 1px 0 rgba(255,255,255,0.06);
}
.region-block-eyebrow {
  font-size: 9px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--text-accent); margin-bottom: 6px;
}
.region-block-name { font-size: 18px; font-weight: 700; color: var(--text-h2); margin-bottom: 16px; line-height: 1.2; }
.city-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.city-tag {
  display: inline-block; padding: 4px 10px; border-radius: 100px;
  font-size: 11px; font-weight: 500; color: var(--text-secondary);
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.10);
  transition: all 0.2s ease;
}
.city-tag:hover { color: var(--text-body); border-color: rgba(255,255,255,0.20); }
.city-tag-primary {
  color: var(--text-accent); border-color: rgba(76,206,84,0.38);
  background: rgba(46,125,50,0.11);
}
.city-tag-primary:hover { border-color: rgba(76,206,84,0.62); background: rgba(46,125,50,0.20); }

/* ═══════════════════════════════════════════════
   SERVICE AREAS PAGE — FULL REGIONS
═══════════════════════════════════════════════ */
.region-full {
  padding: 80px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.region-full:last-child { border-bottom: none; }
.region-full-header { display: grid; grid-template-columns: 1fr auto; align-items: start; gap: 32px; margin-bottom: 40px; }
.region-full-title { font-size: 28px; font-weight: 700; color: var(--text-h2); margin-bottom: 8px; }
.region-full-sub { font-size: 14px; color: var(--text-secondary); }
.region-cta { white-space: nowrap; }
.city-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.city-row {
  padding: 12px 16px; border-radius: 8px;
  background: rgba(18,22,19,0.60); border: 1px solid rgba(255,255,255,0.07);
  font-size: 13px; font-weight: 600; color: var(--text-body);
  transition: all 0.2s ease;
}
.city-row:hover { border-color: rgba(76,206,84,0.30); color: var(--text-link); }
.city-row-primary {
  border-color: rgba(76,206,84,0.28); color: var(--text-accent);
  background: rgba(46,125,50,0.08);
}

/* ═══════════════════════════════════════════════
   OVERVIEW / ABOUT
═══════════════════════════════════════════════ */
#overview {
  background: linear-gradient(180deg, var(--bg-charcoal) 0%, var(--bg-primary) 100%);
  padding: 106px 0; position: relative;
}
#overview::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 70% 40%, rgba(46,125,50,0.05) 0%, transparent 55%);
}
.overview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: start; }
.credential-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.credential-chip {
  display: inline-flex; align-items: center; gap: 6px; padding: 7px 13px;
  background: rgba(46,125,50,0.10); border: 1px solid rgba(76,206,84,0.28); border-radius: 100px;
  font-size: 12px; font-weight: 600; color: var(--text-body);
}
.credential-chip svg { width: 11px; height: 11px; fill: var(--text-accent); }
.overview-pillars { display: flex; flex-direction: column; }
.overview-pillar { display: flex; align-items: flex-start; gap: 16px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.overview-pillar:last-child { border-bottom: none; }
.pillar-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--text-accent);
  margin-top: 10px; flex-shrink: 0;
}
.pillar-text { font-size: 14px; font-weight: 500; color: var(--text-body); line-height: 1.8; }

/* ═══════════════════════════════════════════════
   CTA
═══════════════════════════════════════════════ */
#cta {
  background: linear-gradient(135deg, #091509, #0e1c0f);
  border-top: 1px solid rgba(46,125,50,0.16); border-bottom: 1px solid rgba(46,125,50,0.10);
  padding: 106px 0; position: relative; overflow: hidden;
}
#cta::before {
  content: ''; position: absolute; top: -50%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(46,125,50,0.10) 0%, transparent 65%);
  pointer-events: none;
}
#cta p { color: var(--text-body); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 32px; align-items: center; }

/* ═══════════════════════════════════════════════
   PHONE CTA BAR
═══════════════════════════════════════════════ */
.phone-cta-bar {
  background: linear-gradient(135deg, #0e1a0f, #0a0d0a);
  border-top: 1px solid rgba(76,206,84,0.18); border-bottom: 1px solid rgba(76,206,84,0.18);
  padding: 26px 0;
}
.phone-cta-bar .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.phone-cta-bar p { font-size: 14px; color: var(--text-secondary); margin: 0; }
.phone-cta-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 22px; font-weight: 700; color: #fff; text-decoration: none;
  letter-spacing: -0.01em; transition: color 0.2s ease;
}
.phone-cta-link:hover { color: var(--text-accent); }
.phone-cta-link svg { width: 20px; height: 20px; fill: var(--green-primary); flex-shrink: 0; }

/* ═══════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════ */
#contact {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-alt) 100%);
  padding: 106px 0;
}
form { display: grid; gap: 13px; max-width: 540px; margin-top: 32px; }
input, textarea, select {
  padding: 14px 16px; border-radius: 8px;
  background: rgba(17,21,18,0.90);
  border: 1px solid rgba(255,255,255,0.10); color: #fff;
  font-family: 'Inter', sans-serif; font-size: 16px;
  transition: border-color 0.2s ease; width: 100%;
}
input::placeholder, textarea::placeholder { color: var(--text-muted); }
input:focus, textarea:focus, select:focus { outline: none; border-color: rgba(76,206,84,0.50); background: rgba(18,26,19,0.95); }
textarea { min-height: 120px; resize: vertical; }
select { cursor: pointer; appearance: none; }

/* Contact page layout */
.contact-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-info-cards { display: flex; flex-direction: column; gap: 14px; }
.contact-info-card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 12px; padding: 24px; display: flex; gap: 16px; align-items: flex-start;
  transition: border-color 0.2s ease;
}
.contact-info-card:hover { border-color: rgba(76,206,84,0.25); }
.contact-info-card-icon {
  width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0;
  background: rgba(46,125,50,0.12); border: 1px solid rgba(76,206,84,0.22);
  display: flex; align-items: center; justify-content: center;
}
.contact-info-card-icon svg { width: 20px; height: 20px; fill: var(--text-accent); }
.contact-info-label {
  font-size: 9px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 4px;
}
.contact-info-value { font-size: 16px; font-weight: 700; color: var(--text-h3); }
.contact-info-value a { color: var(--text-link); text-decoration: none; }
.contact-info-value a:hover { color: var(--text-accent); }
.contact-info-sub { font-size: 12px; color: var(--text-muted); margin-top: 3px; }
.contact-future-card {
  background: rgba(7,8,7,0.60); border: 1px dashed rgba(76,206,84,0.15);
  border-radius: 12px; padding: 20px 24px;
}
.contact-future-label {
  font-size: 9px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(76,206,84,0.30); margin-bottom: 6px;
}
.contact-future-title { font-size: 14px; font-weight: 600; color: var(--text-muted); margin-bottom: 4px; }
.contact-future-desc { font-size: 12px; color: var(--text-caption); line-height: 1.6; }

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
footer {
  background: linear-gradient(180deg, var(--bg-alt) 0%, #050606 100%);
  border-top: 1px solid rgba(255,255,255,0.07); padding: 64px 0 36px;
}
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 52px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.07); }
/* Footer logo — same production WebP, native 600×473. Height constraint, width:auto. */
.footer-brand-logo {
  height: 64px; width: auto; max-width: none; margin-bottom: 16px;
  display: block; object-fit: contain; background: transparent;
}
.footer-brand p { font-size: 13px; color: var(--text-muted); line-height: 1.7; max-width: 260px; }
.footer-phone {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 16px;
  font-size: 15px; font-weight: 700; color: var(--text-body); text-decoration: none;
  transition: color 0.2s ease;
}
.footer-phone:hover { color: var(--text-accent); }
.footer-phone svg { width: 13px; height: 13px; fill: var(--text-accent); }
.footer-social { display: flex; gap: 8px; margin-top: 16px; }
.footer-social-icon {
  width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.14); border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; color: var(--text-secondary); transition: all 0.2s ease;
}
.footer-social-icon:hover { border-color: rgba(76,206,84,0.42); color: var(--text-accent); background: rgba(76,206,84,0.07); }
.footer-social-icon.disabled { opacity: 0.30; pointer-events: none; }
.footer-social-icon svg { width: 14px; height: 14px; fill: currentColor; }
.footer-col h4 { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-body); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { font-size: 13px; color: var(--text-secondary); text-decoration: none; transition: color 0.2s ease; }
.footer-col ul li a:hover { color: var(--text-link); }
.footer-col ul li span { font-size: 13px; color: var(--text-muted); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12px; color: var(--text-muted); }

/* ═══════════════════════════════════════════════
   SOLYNX FOOTER ATTRIBUTION
═══════════════════════════════════════════════ */
.solynx-footer-credit {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: center;
  font-size: 0.78rem;
  line-height: 1.4;
  opacity: 0.72;
  transition: opacity 180ms ease;
}
.solynx-footer-credit:hover { opacity: 1; }
.solynx-footer-credit a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  color: inherit;
  text-decoration: none;
  flex-wrap: wrap;
}
.solynx-footer-credit a:hover,
.solynx-footer-credit a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.solynx-footer-credit__logo {
  width: 18px;
  height: auto;
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 640px) {
  .solynx-footer-credit { font-size: 0.72rem; text-align: center; padding-inline: 1rem; }
  .solynx-footer-credit__logo { width: 16px; }
}

/* ═══════════════════════════════════════════════
   STICKY MOBILE CALL BTN
═══════════════════════════════════════════════ */
.mobile-call-sticky {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--green-primary); color: #fff; text-decoration: none; text-align: center;
  font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 700;
  letter-spacing: 0.04em;
  padding: 17px 24px;
  padding-bottom: calc(17px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--green-accent);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.60); transition: background 0.2s ease;
}
.mobile-call-sticky:active { background: var(--green-mid); }

/* ═══════════════════════════════════════════════
   SERVICE CARD SPAN
═══════════════════════════════════════════════ */
.service-card-span { grid-column: span 2; }

/* ═══════════════════════════════════════════════
   SERVICE LOCATIONS GRID
═══════════════════════════════════════════════ */
.service-locations-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; margin-top: 0;
}
.location-block {
  background: var(--card-bg);
  border: 1px solid rgba(76,206,84,0.12);
  border-radius: 12px; padding: 22px 20px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.28);
  transition: border-color 0.28s ease, box-shadow 0.28s ease;
}
.location-block:hover {
  border-color: rgba(76,206,84,0.30);
  box-shadow: 0 8px 28px rgba(0,0,0,0.38);
}
.location-block-name { font-size: 16px; font-weight: 700; color: var(--text-h3); margin-bottom: 4px; }
.location-block-status {
  font-size: 9px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-accent);
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero-copy h1 { font-size: 44px; }
  .hero-inner .container { gap: 32px; }
  /* Hero height: allow full viewport on tablet */
  #hero { min-height: 680px; max-height: none; }
  /* Tablet logo: 58–66px per spec. Width scales automatically from native ~1.2685:1 ratio. */
  .nav-logo-img { height: 62px; }
  .footer-brand-logo { height: 56px; }
  .benefit-cards-grid { grid-template-columns: 1fr 1fr; }
  .why-strip-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .city-grid { grid-template-columns: repeat(3, 1fr); }
  .service-regions-grid { grid-template-columns: 1fr 1fr; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .two-col { gap: 56px; }
  /* Leadership cards: keep 2-col but slightly narrower */
  .owner-cards { gap: 16px; }
}

@media (max-width: 768px) {
  h1 { font-size: 34px; }
  h2 { font-size: 27px; }

  nav.desktop-nav { display: none; }
  .mobile-menu-btn { display: flex; }
  /* Mobile logo: 50–58px per spec. Width scales automatically from native ~1.2685:1 ratio. */
  .nav-logo-img { height: 52px; max-width: none; }

  /* Mobile hero: minimum ~680px, allow 100svh */
  #hero {
    min-height: 100svh; min-height: 680px;
    max-height: none;
    align-items: flex-start;
    padding-top: 72px;
  }
  .hero-inner { padding: 48px 0 72px; }
  .hero-inner .container { flex-direction: column; gap: 28px; }
  .hero-copy { max-width: 100%; }
  .hero-copy h1 { font-size: 30px; }
  .hero-copy p { font-size: 15px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn-primary, .hero-actions .btn-secondary { text-align: center; width: 100%; }

  /* Mobile video/image focal point: shift right to keep building visible, reduce sky */
  .hero-video-wrap video { object-position: 65% 42%; }
  .hero-fallback-img { object-position: 65% 42%; }

  /* Interior hero */
  .page-hero { min-height: 420px; }
  .page-hero h1 { font-size: 30px; }
  .page-hero p.hero-lead { font-size: 15px; }
  .page-hero-inner { padding: 48px 0 64px; }
  .page-hero-actions { flex-direction: column; align-items: stretch; }
  .page-hero-actions .btn-primary, .page-hero-actions .btn-secondary { text-align: center; width: 100%; }

  .trust-scroll { flex-wrap: wrap; gap: 0; overflow-x: visible; }
  .trust-item { padding: 7px 14px; }
  .trust-sep { display: none; }

  #services, #owner-led, #commercial, #proof, #service-area, #overview, #cta, #contact {
    padding-top: 86px; padding-bottom: 86px;
  }
  #services { padding-bottom: 0; }
  #proof { padding-bottom: 0; }
  .interior-section { padding: 72px 0; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 36px 26px; }
  .owner-grid { grid-template-columns: 1fr; gap: 44px; }
  /* Mobile leadership: stack to single column, max width 340px centered */
  .owner-cards { grid-template-columns: 1fr; gap: 16px; max-width: 360px; }
  .commercial-grid { grid-template-columns: 1fr; gap: 44px; }
  .proof-hero-img { height: 300px; }
  .proof-duo { grid-template-columns: 1fr; }
  .proof-card img { height: 260px; }
  .proof-overlay { padding: 26px 26px; }
  .proof-hero-wrap .proof-overlay { padding: 26px 26px; }
  .proof-overlay h3 { font-size: 18px; }
  .proof-hero-wrap .proof-overlay h3 { font-size: 22px; }
  .area-section-grid { grid-template-columns: 1fr; gap: 38px; }
  .overview-grid { grid-template-columns: 1fr; gap: 44px; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions a { text-align: center; width: 100%; }
  .phone-cta-bar .container { flex-direction: column; align-items: flex-start; }

  /* Interior */
  .two-col { grid-template-columns: 1fr; gap: 44px; }
  .benefit-cards-grid { grid-template-columns: 1fr; }
  .included-grid { grid-template-columns: 1fr; }
  .included-item:nth-child(2n) { border-right: none; }
  .why-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: 1fr; }
  .service-regions-grid { grid-template-columns: 1fr; }
  .city-grid { grid-template-columns: repeat(2, 1fr); }
  .region-full-header { grid-template-columns: 1fr; }
  .contact-cols { grid-template-columns: 1fr; gap: 52px; }
  .team-photo-grid { grid-template-columns: 1fr; }

  body { padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px)); }
  .mobile-call-sticky { display: block; }

  /* Service locations grid: force single column on mobile */
  .service-locations-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-copy h1 { font-size: 26px; }
  h2 { font-size: 24px; }
  .service-card { padding: 28px 20px; }
  .hero-eyebrow-badge { font-size: 9px; letter-spacing: 0.12em; padding: 6px 11px; }
  .why-strip-grid { grid-template-columns: 1fr; text-align: center; }
  .city-grid { grid-template-columns: 1fr 1fr; }
  /* two-column form rows stack to single column */
  .form-row-2col { display: block !important; }
  .form-row-2col > * { width: 100% !important; }
  /* Leadership: full width on small mobile */
  .owner-cards { max-width: 100%; }
}

@media (max-width: 390px) {
  .hero-copy h1 { font-size: 24px; }
  /* Minimum mobile logo: 44px per spec. Width scales automatically from native ~1.2685:1 ratio. */
  .nav-logo-img { height: 44px; max-width: none; }
  .hero-eyebrow-badge { font-size: 8px; letter-spacing: 0.10em; padding: 5px 10px; }
}

@media (max-width: 768px) { .service-card-span { grid-column: span 1; } }
