/* ═══════════════════════════════════════════════════════════════════
   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);
}

/* ─── Our Work — interactive horizontal selector ─────────── */

.section-work .heading,
.section-work .section-sub { text-align: left; }

.work-selector {
  display: flex;
  width: 100%;
  height: clamp(400px, 58vw, 520px);
  margin: 2.25rem 0 1.5rem;
  overflow: hidden;
  border-radius: var(--radius-lg);
  gap: 6px;
  background: var(--bg-1);
}

.work-tile {
  position: relative;
  flex: 1 1 0%;
  min-width: 68px;
  min-height: 100px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #0a0a0a;
  border: 1px solid var(--border-dark);
  border-radius: calc(var(--radius) + 2px);
  cursor: pointer;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: #fff;
  text-align: left;
  transition:
    flex-grow 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    background-size 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    background-position 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.4s ease,
    box-shadow 0.4s ease,
    opacity 0.7s ease,
    transform 0.7s ease;
  backface-visibility: hidden;
  will-change: flex-grow, background-size, border-color;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.30);
  opacity: 0;
  transform: translateX(-40px);
}
.work-tile:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
  z-index: 20;
}
.work-tile.in-view {
  opacity: 1;
  transform: translateX(0);
}
.work-tile.is-active {
  flex-grow: 7;
  background-size: cover;
  border-color: var(--cyan);
  box-shadow:
    0 0 0 1px var(--cyan) inset,
    0 24px 60px rgba(0, 0, 0, 0.55),
    0 0 60px -20px var(--cyan-glow);
  z-index: 10;
}

.work-tile-shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 45%, rgba(0,0,0,0.55) 100%);
  transition: opacity 0.5s ease;
  opacity: 0.6;
}
.work-tile.is-active .work-tile-shade {
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.15) 45%, rgba(0,0,0,0.85) 100%);
  opacity: 1;
}

.work-tile-label {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.1rem 1.1rem;
  width: 100%;
}
.work-tile-icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1.5px solid var(--border-dark);
  color: var(--cyan);
  transition: border-color 0.4s ease, background 0.4s ease, color 0.4s ease, transform 0.4s ease;
}
.work-tile-icon svg { width: 22px; height: 22px; }
.work-tile.is-active .work-tile-icon {
  border-color: var(--cyan);
  background: rgba(0, 0, 0, 0.88);
  transform: scale(1.04);
}

.work-tile-info {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
}
.work-tile-title,
.work-tile-sub {
  opacity: 0;
  transform: translateX(18px);
  transition: opacity 0.55s ease 0.12s, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.12s;
  display: block;
}
.work-tile-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}
.work-tile-sub {
  font-size: 0.88rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
  margin-top: 0.2rem;
  white-space: normal;
}
.work-tile.is-active .work-tile-title,
.work-tile.is-active .work-tile-sub {
  opacity: 1;
  transform: translateX(0);
}

/* real <img> backdrop for each tile — replaces prior inline background-image */
.work-tile-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  z-index: 0;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.work-tile.is-active .work-tile-img { transform: scale(1.02); }
.work-tile-shade { z-index: 1; }

/* on narrow tiles, only the icon shows; title/sub are hidden */
.work-tile:not(.is-active) .work-tile-info { display: none; }

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

.gallery-note {
  text-align: center; font-size: 0.92rem; color: var(--text-mute);
  margin-top: 1.5rem;
}
.gallery-note a {
  color: var(--cyan); text-decoration: none; font-weight: 600;
  border-bottom: 1px solid var(--cyan-deep);
  transition: color 0.2s, border-color 0.2s;
}
.gallery-note a:hover { color: var(--cyan-hover); border-color: var(--cyan); }

@media (prefers-reduced-motion: reduce) {
  .work-tile,
  .work-tile-shade,
  .work-tile-title,
  .work-tile-sub,
  .work-tile-icon,
  .work-tile-img { transition: none !important; }
  .work-tile { opacity: 1; transform: none; }
  .work-tile.is-active .work-tile-img { transform: none; }
}

/* ─── FAQ accordion ─────────────────────────────────────── */

.faq-container { max-width: 820px; }

.faq-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--bg-1);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.faq-item[open] {
  border-color: var(--cyan-deep);
  box-shadow: 0 0 0 1px var(--cyan-deep) inset;
}

.faq-q {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text);
  user-select: none;
  transition: color 0.2s ease;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q:hover { color: var(--cyan); }
.faq-item[open] .faq-q { color: var(--cyan); }

.faq-icon {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  position: relative;
  transition: transform 0.25s ease;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  top: 50%;
  left: 50%;
}
.faq-icon::before {
  width: 14px;
  height: 2px;
  transform: translate(-50%, -50%);
}
.faq-icon::after {
  width: 2px;
  height: 14px;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.faq-item[open] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-a {
  padding: 0 1.25rem 1.2rem;
  color: var(--text-mute);
  font-size: 0.97rem;
  line-height: 1.65;
  animation: faqSlide 0.28s ease;
}
.faq-a p { margin: 0; }
.faq-a a {
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid var(--cyan-deep);
}
.faq-a a:hover { color: var(--cyan-hover); border-color: var(--cyan); }

@keyframes faqSlide {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .faq-item,
  .faq-q,
  .faq-icon,
  .faq-icon::after { transition: none !important; }
  .faq-a { animation: none !important; }
}

/* ─── Reviews (empty state) ──────────────────────────────── */

.reviews-empty {
  max-width: 640px; margin: 0 auto; text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(160deg, #fafaf7 0%, #f2f2ef 100%);
  border: 1px dashed rgba(0, 0, 0, 0.12);
  border-radius: var(--radius-lg);
}
.section-dark .reviews-empty {
  background: linear-gradient(160deg, #0a0a0a 0%, #000 100%);
  border-color: var(--border-dark);
}
.reviews-empty-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px; margin: 0 auto 1.25rem;
  border-radius: 50%; color: var(--cyan-deep);
  background: #e8feff; border: 1px solid var(--border-dark);
}
.reviews-empty-mark svg { width: 32px; height: 32px; }
.section-dark .reviews-empty-mark { background: rgba(0, 240, 255, 0.08); color: var(--cyan); }
.reviews-empty-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.5rem; letter-spacing: -0.01em;
  color: var(--text-dark); margin-bottom: 0.65rem;
}
.section-dark .reviews-empty-title { color: var(--text-hi); }
.reviews-empty-body {
  font-size: 0.98rem; color: var(--text-dark-mute); line-height: 1.6;
  max-width: 480px; margin: 0 auto 1.75rem;
}
.section-dark .reviews-empty-body { color: var(--text-mute); }
.reviews-empty-ctas {
  display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap;
}

/* ─── Contact (form primary + phone secondary) ───────────── */

.contact-split {
  display: grid; grid-template-columns: 1.15fr 1fr;
  gap: 3rem; align-items: start;
}

.quote-form {
  display: flex; flex-direction: column; gap: 1rem;
  padding: 2rem;
  background: linear-gradient(160deg, #0a0a0a 0%, #000 100%);
  border: 1px solid var(--border-dark); border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-label {
  font-size: 0.7rem; font-weight: 700; color: var(--cyan);
  text-transform: uppercase; letter-spacing: 0.14em;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  padding: 0.85rem 1rem; background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14); border-radius: 10px;
  color: var(--text-hi); font-family: var(--font-body); font-size: 0.92rem;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  width: 100%;
}
.quote-form input::placeholder,
.quote-form textarea::placeholder { color: rgba(255, 255, 255, 0.35); }
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: none; border-color: var(--cyan);
  background: rgba(0, 240, 255, 0.04);
  box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.15);
}
.quote-form input.error,
.quote-form select.error,
.quote-form textarea.error {
  border-color: #ef4444; box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}
.quote-form select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300F0FF' stroke-width='2'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat; background-position: right 1rem center; background-size: 16px;
  padding-right: 2.5rem;
}
.quote-form select option { background: #0a0a0a; color: var(--text-hi); }
.quote-form textarea { resize: vertical; min-height: 120px; }

.quote-form button {
  margin-top: 0.5rem;
  padding: 1rem; background: var(--cyan); color: #000; border: none;
  border-radius: 999px; font-family: var(--font-body); font-weight: 700;
  font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.12em;
  cursor: pointer; transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 30px var(--cyan-glow);
}
.quote-form button:hover { background: var(--cyan-hover); transform: translateY(-1px); box-shadow: 0 12px 40px var(--cyan-glow); }
.quote-form button:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.form-fineprint {
  font-size: 0.8rem; color: var(--text-mute); text-align: center; margin-top: 0.25rem;
}
.form-fineprint a { color: var(--cyan); text-decoration: none; font-weight: 600; }
.form-fineprint a:hover { color: var(--cyan-hover); }
.hp-field { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

.contact-aside {
  display: flex; flex-direction: column; gap: 1rem;
}

/* ─── Phone hero (now compact, lives inside contact-aside) ─ */

.phone-hero {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.4rem; text-align: center;
  padding: 2rem 1.5rem;
  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(1.85rem, 3.2vw, 2.6rem);
  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: 1fr 1fr;
  gap: 0.75rem; margin-bottom: 0;
}
.contact-aside .contact-secondary { grid-template-columns: 1fr 1fr; }
.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);
}

/* ─── Toast (form submit feedback) ───────────────────────── */

.toast {
  position: fixed; bottom: 2rem; left: 50%;
  transform: translateX(-50%) translateY(150%);
  z-index: 500; transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  max-width: calc(100vw - 2rem);
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast-content {
  display: flex; align-items: center; gap: 0.85rem;
  background: var(--bg-0); color: var(--text-hi);
  border: 1px solid var(--cyan);
  padding: 1rem 1.5rem; border-radius: 999px;
  font-size: 0.88rem; font-weight: 500; letter-spacing: 0.01em;
  box-shadow: 0 18px 50px rgba(0, 240, 255, 0.28);
}
.toast.toast-error .toast-content {
  border-color: #ef4444; box-shadow: 0 18px 50px rgba(239, 68, 68, 0.28);
}
.toast.toast-error .toast-icon { background: #ef4444; }
.toast-icon {
  display: flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; background: var(--cyan); color: #000;
  border-radius: 50%; font-size: 0.85rem; font-weight: 700; flex-shrink: 0;
}

/* ─── 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; }
  .work-selector { height: clamp(380px, 120vw, 560px); gap: 4px; }
  .work-tile { min-width: 56px; }
  .work-tile-label { padding: 0.85rem 0.85rem; gap: 0.7rem; }
  .work-tile-icon { flex-basis: 40px; width: 40px; height: 40px; }
  .work-tile-icon svg { width: 20px; height: 20px; }
  .work-tile-title { font-size: 1rem; }
  .work-tile-sub { font-size: 0.82rem; }
  .contact-split { grid-template-columns: 1fr; gap: 2rem; }
  .contact-secondary { grid-template-columns: 1fr 1fr; }
  .phone-hero { padding: 1.75rem 1.25rem; }
  .quote-form { padding: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .reviews-empty { padding: 2.25rem 1.5rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.4rem; text-align: center; }

  .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; }
  .reviews-empty-ctas { flex-direction: column; }
  .reviews-empty-ctas .btn-primary,
  .reviews-empty-ctas .btn-secondary { width: 100%; }
  .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; }
}
