/* ═══════════════════════════════════════════════════════════════════
   ALEX LANDSCAPING — Florida Keys
   Brand system: cyan on black, Space Grotesk + Inter
   ═══════════════════════════════════════════════════════════════════ */

:root {
  --bg-0: #000000;
  --bg-1: #0a0a0a;
  --bg-2: #121212;
  --bg-light: #f7f7f5;
  --bg-card: #ffffff;

  --cyan: #00F0FF;
  --cyan-hover: #33f5ff;
  --cyan-deep: #00b8c4;
  --cyan-glow: rgba(0, 240, 255, 0.22);

  --text-hi: #ffffff;
  --text: #e5e5e5;
  --text-mute: #9a9a9a;
  --text-dark: #111111;
  --text-dark-mute: #555555;

  --border-dark: rgba(0, 240, 255, 0.18);
  --border-hairline: rgba(255, 255, 255, 0.08);
  --border-light: rgba(0, 0, 0, 0.08);

  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 0 0 1px var(--border-dark), 0 20px 50px -10px var(--cyan-glow);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body); color: var(--text-dark);
  background: var(--bg-light); overflow-x: hidden;
}

/* ─── Utilities ────────────────────────────────────────────── */

.container { max-width: 1240px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 6.5rem 0; position: relative; }
.section-alt { background: #ffffff; }
.section-dark { background: var(--bg-0); color: var(--text); }
.section-dark::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(1200px 400px at 20% 0%, rgba(0, 240, 255, 0.08), transparent 60%);
}
.section-dark > * { position: relative; z-index: 1; }

.label {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  color: var(--cyan-deep); text-transform: uppercase;
  letter-spacing: 0.24em; margin-bottom: 0.9rem;
  font-family: var(--font-body);
}
.label.light { color: var(--cyan); }

.heading {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  color: var(--text-dark); margin-bottom: 2.5rem; line-height: 1.05;
  letter-spacing: -0.02em;
}
.heading.light { color: var(--text-hi); }
.heading em { font-style: normal; color: var(--cyan-deep); }

.section-sub {
  font-size: 1.05rem; color: var(--text-dark-mute);
  max-width: 640px; margin: -1.5rem 0 2.5rem;
  line-height: 1.6;
}
.section-dark .section-sub { color: var(--text-mute); }

.section-lead {
  font-size: 1.1rem; color: var(--text); line-height: 1.75;
  max-width: 820px; margin: -1.5rem 0 3rem;
  font-weight: 400;
}
.section-lead::before {
  content: ''; display: block; width: 40px; height: 2px;
  background: var(--cyan); margin-bottom: 1.25rem;
}

/* ─── Fade-in ────────────────────────────────────────────── */

.fade-in {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
  .hero-video { display: none; }
  .hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(60% 60% at 50% 40%, #0a0a0a 0%, #000 80%);
    z-index: 0;
  }
  .scroll-indicator .scroll-line::after { animation: none; }
}

/* ─── Header ──────────────────────────────────────────────── */

.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.25rem 2rem;
  transition: background 0.3s, padding 0.3s, backdrop-filter 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 0.8rem 2rem;
  border-bottom-color: var(--border-hairline);
}
.site-header nav {
  display: flex; align-items: center; gap: 2rem;
  max-width: 1400px; margin: 0 auto;
}
.nav-logo {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: var(--cyan); text-decoration: none; white-space: nowrap;
  margin-right: auto;
}
.nav-logo-mark { height: 30px; width: auto; color: var(--cyan); flex-shrink: 0; }
.nav-logo-text { font-family: var(--font-display); font-size: 1.25rem; color: var(--cyan); line-height: 1; }
.nav-logo-text .alex { font-weight: 700; letter-spacing: -0.01em; }
.nav-logo-text .landscaping { font-weight: 500; letter-spacing: 0.01em; }

.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a {
  font-size: 0.78rem; font-weight: 600; color: rgba(255, 255, 255, 0.78);
  text-decoration: none; text-transform: uppercase; letter-spacing: 0.1em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--cyan); }

.nav-phone {
  font-size: 0.85rem; font-weight: 600; color: var(--text-hi);
  text-decoration: none; letter-spacing: 0.02em; white-space: nowrap;
  transition: color 0.2s;
}
.nav-phone:hover { color: var(--cyan); }

.nav-cta {
  background: var(--cyan); color: #000;
  padding: 0.65rem 1.4rem; border-radius: 999px; font-weight: 700;
  font-size: 0.78rem; text-decoration: none; text-transform: uppercase;
  letter-spacing: 0.08em; transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  white-space: nowrap; box-shadow: 0 4px 18px var(--cyan-glow);
}
.nav-cta:hover { background: var(--cyan-hover); transform: translateY(-1px); box-shadow: 0 6px 26px var(--cyan-glow); }

/* Hamburger */
.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  padding: 6px; z-index: 200;
}
.hamburger span {
  display: block; width: 24px; height: 2px; background: var(--cyan);
  margin: 5px 0; transition: transform 0.3s, opacity 0.3s;
  border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu Overlay */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 150;
  background: rgba(0, 0, 0, 0.96);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 1.75rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display); font-weight: 600; font-size: 1.6rem;
  color: var(--text-hi); text-decoration: none; transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--cyan); }
.mobile-phone {
  color: var(--cyan) !important; font-family: var(--font-body) !important;
  font-size: 1.1rem !important; font-weight: 600; letter-spacing: 0.04em;
}

/* ─── Hero ────────────────────────────────────────────────── */

.hero {
  position: relative; width: 100%; height: 100vh; min-height: 620px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: var(--bg-0);
}
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
  filter: saturate(1.05) contrast(1.02);
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.2) 28%, rgba(0,0,0,0.3) 55%, rgba(0,0,0,0.85) 100%),
    radial-gradient(60% 60% at 50% 55%, rgba(0,0,0,0) 0%, rgba(0,0,0,0.35) 100%);
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  padding: 0 1.5rem 4rem; max-width: 920px;
}
.hero-label {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  color: var(--cyan); text-transform: uppercase;
  letter-spacing: 0.32em; margin-bottom: 1.1rem;
  padding: 0.4rem 0.9rem; border: 1px solid var(--border-dark);
  border-radius: 999px; background: rgba(0, 240, 255, 0.06);
  backdrop-filter: blur(4px);
}
.hero-heading {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.25rem, 6.2vw, 4.6rem);
  color: var(--text-hi); line-height: 1.02; margin-bottom: 1rem;
  letter-spacing: -0.025em;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.55);
}
.hero-heading em {
  font-style: normal; color: var(--cyan);
  text-shadow: 0 0 24px rgba(0, 240, 255, 0.35);
}
.hero-tagline {
  font-size: clamp(0.85rem, 1.3vw, 1rem);
  color: rgba(255, 255, 255, 0.78); letter-spacing: 0.18em;
  text-transform: uppercase; margin-bottom: 1.6rem; font-weight: 500;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.55rem 1.1rem; margin-bottom: 2rem;
  background: rgba(0, 0, 0, 0.55); border: 1px solid var(--border-dark);
  border-radius: 999px; backdrop-filter: blur(6px);
}
.hero-badge-star { color: var(--cyan); letter-spacing: 0.08em; font-size: 0.8rem; }
.hero-badge-text { color: var(--text-hi); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; }

.hero-ctas { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 1rem 2rem; background: var(--cyan); color: #000;
  text-decoration: none; font-weight: 700; font-size: 0.82rem;
  text-transform: uppercase; letter-spacing: 0.12em;
  border-radius: 999px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 30px var(--cyan-glow);
}
.btn-primary:hover { background: var(--cyan-hover); transform: translateY(-2px); box-shadow: 0 12px 40px var(--cyan-glow); }

.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 1rem 2rem; background: rgba(0, 0, 0, 0.4); color: var(--text-hi);
  text-decoration: none; font-weight: 600; font-size: 0.82rem;
  text-transform: uppercase; letter-spacing: 0.12em; border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  transition: border-color 0.2s, transform 0.2s, color 0.2s, background 0.2s;
  backdrop-filter: blur(6px);
}
.btn-secondary:hover { border-color: var(--cyan); color: var(--cyan); transform: translateY(-2px); }

/* Scroll Indicator */
.scroll-indicator {
  position: absolute; bottom: 1.75rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center;
  gap: 0.5rem;
}
.scroll-indicator span {
  font-size: 0.6rem; color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase; letter-spacing: 0.22em; font-weight: 600;
}
.scroll-line {
  width: 1px; height: 44px; background: rgba(255, 255, 255, 0.18);
  position: relative; overflow: hidden;
}
.scroll-line::after {
  content: ''; position: absolute; top: -100%; left: 0;
  width: 100%; height: 100%; background: var(--cyan);
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0% { top: -100%; }
  50% { top: 100%; }
  100% { top: 100%; }
}

/* ─── Stats Bar ───────────────────────────────────────────── */

.stats-bar {
  background: var(--bg-0); padding: 2.75rem 1.5rem;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; text-align: center;
}
.stat-item { padding: 0.5rem; }
.stat-val {
  display: block; font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.75rem); color: var(--cyan);
  letter-spacing: -0.02em; line-height: 1;
}
.stat-lbl {
  font-size: 0.72rem; color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase; letter-spacing: 0.12em; margin-top: 0.6rem;
  display: block; font-weight: 600;
}

/* ─── About ───────────────────────────────────────────────── */

.about-grid {
  display: grid; grid-template-columns: 1.55fr 1fr;
  gap: 4rem; align-items: start;
}
.about-text p {
  font-size: 1.02rem; line-height: 1.8; color: var(--text-dark-mute);
  margin-bottom: 1.25rem;
}
.about-text p strong { color: var(--text-dark); }
.about-note {
  margin-top: 0.5rem; padding: 1rem 1.25rem; background: #f2f2ef;
  border-left: 3px solid var(--cyan-deep); border-radius: 8px;
  font-size: 0.95rem !important;
}

.award-card {
  background: linear-gradient(160deg, #0a0a0a 0%, #000 100%);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 2.25rem; text-align: center;
  box-shadow: var(--shadow-glow);
  position: relative; overflow: hidden;
}
.award-card::before {
  content: ''; position: absolute; inset: -2px;
  background: conic-gradient(from 0deg, transparent 0deg, var(--cyan) 90deg, transparent 180deg, transparent 360deg);
  opacity: 0.15; z-index: 0; pointer-events: none;
}
.award-frame {
  position: relative; z-index: 1; display: flex; flex-direction: column;
  align-items: center; gap: 0.35rem;
}
.award-star { font-size: 1.5rem; color: var(--cyan); margin-bottom: 0.25rem; }
.award-value {
  font-family: var(--font-display); font-weight: 700;
  font-size: 4.5rem; color: var(--cyan); line-height: 1;
  letter-spacing: -0.04em; text-shadow: 0 0 40px rgba(0, 240, 255, 0.45);
}
.award-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.35rem; color: var(--text-hi); margin-top: 0.5rem;
  letter-spacing: -0.01em;
}
.award-sub { font-size: 0.85rem; color: var(--text-mute); }
.award-tag {
  margin-top: 0.9rem; font-size: 0.7rem; font-weight: 700;
  color: var(--cyan); text-transform: uppercase; letter-spacing: 0.2em;
  padding: 0.35rem 0.8rem; border: 1px solid var(--border-dark);
  border-radius: 999px;
}

/* ─── Services ────────────────────────────────────────────── */

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

.card {
  padding: 1.85rem; background: var(--bg-card);
  border: 1px solid var(--border-light); border-radius: var(--radius);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex; flex-direction: column; gap: 0.25rem;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border-color: var(--cyan);
}
.card-icon {
  width: 46px; height: 46px; color: var(--cyan-deep);
  background: #e8feff; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.card-icon svg { width: 24px; height: 24px; }
.card h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.2rem; color: var(--text-dark); margin-bottom: 0.35rem;
  letter-spacing: -0.01em;
}
.card p {
  font-size: 0.88rem; color: var(--text-dark-mute);
  line-height: 1.55; margin-bottom: 0.9rem;
}
.card-list {
  list-style: none; display: flex; flex-wrap: wrap; gap: 0.4rem;
  margin-top: auto;
}
.card-list li {
  font-size: 0.76rem; font-weight: 500; color: var(--text-dark);
  padding: 0.35rem 0.75rem; background: #f2f2ef; border-radius: 999px;
  letter-spacing: 0.02em;
}

/* Highlight CTA card */
.card-cta {
  background: var(--bg-0); color: var(--text); border-color: var(--border-dark);
  position: relative; overflow: hidden;
}
.card-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(80% 80% at 0% 0%, rgba(0, 240, 255, 0.12), transparent 60%);
  pointer-events: none;
}
.card-cta * { position: relative; z-index: 1; }
.card-cta:hover { border-color: var(--cyan); box-shadow: 0 20px 60px rgba(0, 240, 255, 0.18); }
.card-cta .card-icon { color: var(--cyan); background: rgba(0, 240, 255, 0.12); }
.card-cta h3 { color: var(--text-hi); }
.card-cta p { color: var(--text-mute); }
.card-cta-link {
  display: inline-block; color: var(--cyan); text-decoration: none;
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0.04em;
  margin-top: auto;
}
.card-cta-link:hover { color: var(--cyan-hover); }

/* ─── Why Us (Pillars) ───────────────────────────────────── */

.pillars-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2.25rem; }
.pillar { padding: 0; }
.pillar-num {
  font-family: var(--font-display); font-weight: 700;
  font-size: 2.75rem; color: var(--cyan);
  margin-bottom: 0.75rem; line-height: 1; letter-spacing: -0.04em;
  text-shadow: 0 0 30px rgba(0, 240, 255, 0.25);
}
.pillar h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.2rem; color: var(--text-hi); margin-bottom: 0.65rem;
  letter-spacing: -0.01em;
}
.pillar p { font-size: 0.92rem; color: var(--text-mute); line-height: 1.7; }

/* ─── Reviews ─────────────────────────────────────────────── */

.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial {
  padding: 2rem; background: #ffffff;
  border: 1px solid var(--border-light); border-radius: var(--radius);
  transition: border-color 0.2s, transform 0.2s;
}
.testimonial:hover { border-color: var(--cyan); transform: translateY(-2px); }
.stars { color: var(--cyan-deep); font-size: 1rem; margin-bottom: 0.85rem; letter-spacing: 0.1em; }
.testimonial blockquote {
  font-family: var(--font-body); font-weight: 500; font-size: 1rem;
  color: var(--text-dark); line-height: 1.65; margin-bottom: 1rem;
}
.testimonial cite { font-style: normal; font-size: 0.8rem; color: var(--text-dark-mute); font-weight: 600; }

/* ─── Service Area ────────────────────────────────────────── */

.service-area-content { text-align: center; max-width: 900px; margin: 0 auto; }
.service-area-sub {
  font-size: 1rem; color: var(--text-dark-mute); margin: -1.5rem 0 2.5rem;
}
.area-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem; }
.area-tag {
  display: inline-block; padding: 0.65rem 1.15rem;
  background: #ffffff; color: var(--text-dark);
  border: 1px solid var(--border-light);
  border-radius: 999px; font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.02em;
}
.area-tag.is-home {
  background: #000; color: var(--cyan); border-color: var(--cyan);
  box-shadow: 0 0 0 1px var(--cyan) inset, 0 6px 24px var(--cyan-glow);
}

/* ─── Contact (phone-first) ──────────────────────────────── */

.phone-hero {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.5rem; text-align: center;
  padding: 2.75rem 2rem;
  margin: 0 auto 2.5rem;
  max-width: 780px;
  background: linear-gradient(160deg, #0a0a0a 0%, #000 100%);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  text-decoration: none; color: var(--text-hi);
  box-shadow: var(--shadow-glow);
  position: relative; overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.phone-hero::before {
  content: ''; position: absolute; inset: -2px;
  background: conic-gradient(from 0deg, transparent 0deg, var(--cyan) 120deg, transparent 240deg);
  opacity: 0.12; z-index: 0; pointer-events: none;
  animation: phoneHaloSpin 12s linear infinite;
}
@keyframes phoneHaloSpin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .phone-hero::before { animation: none; }
}
.phone-hero > * { position: relative; z-index: 1; }
.phone-hero:hover {
  transform: translateY(-3px);
  border-color: var(--cyan);
  box-shadow: 0 0 0 1px var(--cyan), 0 30px 80px -10px var(--cyan-glow);
}
.phone-hero-icon {
  width: 42px; height: 42px; color: var(--cyan);
  padding: 10px; border: 1px solid var(--border-dark);
  border-radius: 50%; background: rgba(0, 240, 255, 0.06);
  margin-bottom: 0.25rem;
}
.phone-hero-label {
  font-size: 0.75rem; font-weight: 700; color: var(--cyan);
  text-transform: uppercase; letter-spacing: 0.28em;
}
.phone-hero-number {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.4rem, 6.5vw, 4.25rem);
  color: var(--cyan); letter-spacing: -0.02em; line-height: 1;
  text-shadow: 0 0 40px rgba(0, 240, 255, 0.4);
  margin-top: 0.15rem;
}
.phone-hero-hours {
  font-size: 0.8rem; color: var(--text-mute);
  letter-spacing: 0.08em; margin-top: 0.35rem;
}

.contact-secondary {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem; margin-bottom: 0;
}
.contact-secondary-card {
  display: flex; flex-direction: column;
  padding: 1.25rem 1.15rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-hairline); border-radius: var(--radius);
  color: var(--text-hi); text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
a.contact-secondary-card:hover {
  border-color: var(--cyan); background: rgba(0, 240, 255, 0.04);
  transform: translateY(-2px);
}
.contact-secondary-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; color: var(--cyan);
  background: rgba(0, 240, 255, 0.08); border-radius: 10px;
  margin-bottom: 0.8rem;
}
.contact-secondary-icon svg { width: 18px; height: 18px; }
.contact-secondary-label {
  font-size: 0.7rem; font-weight: 700; color: var(--cyan);
  text-transform: uppercase; letter-spacing: 0.18em; margin-bottom: 0.35rem;
}
.contact-secondary-value {
  font-size: 0.9rem; color: var(--text-hi);
  line-height: 1.5; font-weight: 500; word-break: break-word;
}
.contact-secondary-socials { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.contact-secondary-socials a {
  font-size: 0.85rem; color: var(--text-hi); text-decoration: none;
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--border-dark); border-radius: 999px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.contact-secondary-socials a:hover {
  border-color: var(--cyan); color: var(--cyan);
  background: rgba(0, 240, 255, 0.06);
}

.map-embed {
  margin-top: 3rem; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border-dark); aspect-ratio: 16 / 6;
  box-shadow: var(--shadow);
  background: #000;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.15) contrast(1.05); }

/* ─── Footer ──────────────────────────────────────────────── */

.footer { padding: 3.5rem 1.5rem 1.75rem; background: #000; color: var(--text-mute); }
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem; padding-bottom: 2.25rem;
  border-bottom: 1px solid var(--border-hairline);
}
.footer-col h4 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.95rem; color: var(--text-hi);
  margin-bottom: 1rem; letter-spacing: -0.01em;
}
.footer-brand {
  font-family: var(--font-display); font-size: 1.35rem;
  color: var(--cyan); margin-bottom: 0.5rem;
}
.footer-brand .alex { font-weight: 700; }
.footer-brand .landscaping { font-weight: 500; }
.footer-sub { font-size: 0.85rem; color: var(--text-mute); margin-bottom: 0.3rem; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.1rem; }
.footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border: 1px solid var(--border-hairline);
  border-radius: 50%; color: var(--text-mute); transition: color 0.2s, border-color 0.2s;
}
.footer-social a:hover { color: var(--cyan); border-color: var(--cyan); }
.footer-links { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-links a {
  font-size: 0.88rem; color: var(--text-mute); text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--cyan); }
.footer-phone {
  display: block; font-size: 1.05rem; font-weight: 700;
  color: var(--cyan); text-decoration: none; margin-bottom: 0.4rem;
  letter-spacing: 0.01em;
}
.footer-email {
  display: block; font-size: 0.82rem; color: var(--text-mute);
  text-decoration: none; margin-bottom: 0.9rem; word-break: break-word;
  transition: color 0.2s;
}
.footer-email:hover { color: var(--cyan); }
.footer-addr { font-size: 0.82rem; line-height: 1.55; color: var(--text-mute); }
.footer-bottom {
  display: flex; justify-content: space-between; margin-top: 1.5rem;
  font-size: 0.72rem; color: var(--text-mute);
  padding: 0 1.5rem;
}

/* ─── Mobile (860px) ──────────────────────────────────────── */

@media (max-width: 860px) {
  .nav-links, .nav-phone, .nav-cta { display: none; }
  .hamburger { display: block; margin-left: auto; }
  .nav-logo { margin-right: 0; }
  .site-header { padding: 1rem 1.25rem; }
  .site-header.scrolled { padding: 0.75rem 1.25rem; }
  .nav-logo-mark { height: 26px; }
  .nav-logo-text { font-size: 1.1rem; }

  .hero { min-height: 560px; }
  .hero-heading { font-size: clamp(2rem, 8vw, 2.8rem); }
  .hero-tagline { font-size: 0.72rem; letter-spacing: 0.12em; }
  .hero-ctas { flex-direction: column; align-items: stretch; width: 100%; max-width: 320px; margin: 0 auto; }

  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }

  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-secondary { grid-template-columns: 1fr 1fr; }
  .phone-hero { padding: 2rem 1.25rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.4rem; text-align: center; }
  .map-embed { aspect-ratio: 4 / 3; }

  .section { padding: 4rem 0; }
  .area-tags { gap: 0.5rem; }
  .area-tag { font-size: 0.78rem; padding: 0.55rem 1rem; }
}

/* ─── Small Mobile (480px) ────────────────────────────────── */

@media (max-width: 480px) {
  .stats-row { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .pillars-grid { grid-template-columns: 1fr; }
  .contact-secondary { grid-template-columns: 1fr; }
  .award-value { font-size: 3.5rem; }
  .hero-badge-text { font-size: 0.7rem; }
}

/* ─── Large (1440px+) ─────────────────────────────────────── */

@media (min-width: 1440px) {
  .container { max-width: 1320px; }
  .section { padding: 7.5rem 0; }
}
