/* ═══════════════════════════════════════════════════════════════
   AJ'S LANDSCAPING LLC — Design System
   Aesthetic: Luxury Outdoor Living Atelier
   Deep earth tones, copper light accents, organic textures
   Like walking through a curated estate garden at golden hour
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');

/* ── Tokens ─────────────────────────────────────────────────── */
:root {
  /* Surfaces */
  --bg:          #0a0f0a;
  --bg-warm:     #0d120d;
  --surface:     #131a13;
  --surface-2:   #1a231a;
  --surface-3:   #232e23;
  --glass:       rgba(255,255,255,0.03);
  --glass-border:rgba(255,255,255,0.06);

  /* Copper / Bronze spectrum */
  --accent:        #b87333;
  --accent-light:  #d4945a;
  --accent-dim:    rgba(184,115,51,0.15);
  --accent-glow:   rgba(184,115,51,0.25);
  --accent-bright: #e0a96a;

  /* Sage / Green spectrum */
  --sage:         #6b8f71;
  --sage-light:   #8aab8f;
  --sage-dim:     rgba(107,143,113,0.15);
  --sage-dark:    #4a6b4f;

  /* Warm stone */
  --stone:        #c4b396;
  --stone-light:  #d8cdb8;
  --stone-dim:    rgba(196,179,150,0.12);

  /* Text */
  --text:        #e4e2de;
  --text-dim:    #8a8780;
  --text-muted:  #5a5852;
  --white:       #ffffff;

  /* Functional */
  --success:     #4ade80;
  --error:       #ef4444;
  --info:        #60a5fa;

  /* Typography */
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body:    'Plus Jakarta Sans', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  /* Spacing scale */
  --s-xs:  4px;
  --s-sm:  8px;
  --s-md:  16px;
  --s-lg:  24px;
  --s-xl:  40px;
  --s-2xl: 64px;
  --s-3xl: 96px;
  --s-4xl: 128px;

  /* Radii */
  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  32px;
  --r-full:9999px;

  /* Shadows */
  --shadow-sm:     0 1px 3px rgba(0,0,0,0.4);
  --shadow-md:     0 4px 16px rgba(0,0,0,0.5);
  --shadow-lg:     0 8px 32px rgba(0,0,0,0.6);
  --shadow-xl:     0 16px 48px rgba(0,0,0,0.7);
  --shadow-accent: 0 4px 24px rgba(184,115,51,0.2);
  --shadow-glow:   0 0 40px rgba(184,115,51,0.15);

  /* Transitions */
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:    cubic-bezier(0, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast:      0.2s;
  --t-base:      0.35s;
  --t-slow:      0.6s;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--t-fast) var(--ease); }
a:hover { color: var(--accent-light); }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; }

/* ── Container ─────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 var(--s-lg); }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 var(--s-lg); }
.container-narrow { max-width: 800px; margin: 0 auto; padding: 0 var(--s-lg); }

/* ── Demo Banner ───────────────────────────────────────────── */
.demo-banner {
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  color: var(--bg);
  text-align: center;
  padding: 10px var(--s-lg);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  position: relative;
  z-index: 1000;
}
.demo-banner a { color: var(--bg); text-decoration: underline; font-weight: 700; }
.demo-banner button {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--bg);
  font-size: 1.3rem;
  line-height: 1;
  opacity: 0.7;
}
.demo-banner button:hover { opacity: 1; }

/* ── Header ────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(10,15,10,0.92);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--glass-border);
  transition: background var(--t-base) var(--ease);
}
.demo-banner + .site-header { top: auto; position: sticky; }

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--s-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo { display: flex; align-items: center; gap: 12px; }
.logo img { height: 44px; width: auto; }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--white);
  letter-spacing: -0.01em;
}
.logo-sub {
  font-size: 0.65rem;
  color: var(--accent-light);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: -2px;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links > a, .nav-dropdown > a {
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dim);
  border-radius: var(--r-sm);
  transition: all var(--t-fast) var(--ease);
  letter-spacing: 0.01em;
}
.nav-links > a:hover, .nav-dropdown:hover > a {
  color: var(--white);
  background: var(--glass);
}
.nav-links > a.active {
  color: var(--accent-light);
  background: var(--accent-dim);
}

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--surface);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  padding: 8px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--t-fast) var(--ease);
  box-shadow: var(--shadow-lg);
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 0.85rem;
  color: var(--text-dim);
  border-radius: var(--r-sm);
  transition: all var(--t-fast) var(--ease);
}
.dropdown-menu a:hover {
  background: var(--accent-dim);
  color: var(--accent-light);
  padding-left: 20px;
}

/* Header CTA */
.header-cta { display: flex; align-items: center; gap: 16px; }
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-light);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 16px;
  border-radius: var(--r-full);
  border: 1px solid var(--accent-dim);
  transition: all var(--t-fast) var(--ease);
}
.header-phone:hover {
  background: var(--accent-dim);
  border-color: var(--accent);
  color: var(--accent-bright);
}
.header-phone svg { width: 16px; height: 16px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--t-fast) var(--ease);
}
.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 Nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  padding: var(--s-md) var(--s-lg) var(--s-xl);
  background: var(--surface);
  border-top: 1px solid var(--glass-border);
}
.mobile-nav.open { display: flex; }
.mobile-nav a, .mobile-label {
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dim);
  border-bottom: 1px solid var(--glass-border);
}
.mobile-nav a:hover { color: var(--accent-light); }
.mobile-sub { padding-left: var(--s-lg); }
.mobile-sub a { font-size: 0.9rem; padding: 10px 0; border-bottom: none; }
.mobile-phone {
  margin-top: var(--s-md);
  color: var(--accent-light) !important;
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
  border: 1px solid var(--accent-dim) !important;
  border-radius: var(--r-md);
  padding: 14px !important;
}

@media (max-width: 968px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .header-phone span { display: none; }
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,15,10,0.88) 0%,
    rgba(10,15,10,0.65) 40%,
    rgba(10,15,10,0.45) 70%,
    rgba(10,15,10,0.7) 100%
  );
}
.hero .container { position: relative; z-index: 1; }
.hero-content { max-width: 700px; padding: var(--s-4xl) 0 var(--s-3xl); }

.hero-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-light);
  background: var(--accent-dim);
  border: 1px solid rgba(184,115,51,0.2);
  padding: 8px 20px;
  border-radius: var(--r-full);
  margin-bottom: var(--s-lg);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 1.08;
  color: var(--white);
  margin-bottom: var(--s-lg);
  letter-spacing: -0.02em;
}
.hero h1 em {
  font-style: italic;
  color: var(--accent-light);
}
.hero-sub {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-dim);
  margin-bottom: var(--s-xl);
  max-width: 560px;
}
.hero-ctas {
  display: flex;
  gap: var(--s-md);
  flex-wrap: wrap;
  margin-bottom: var(--s-xl);
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: var(--s-md);
}
.hero-stars { color: var(--accent-light); font-size: 1.2rem; letter-spacing: 2px; }
.hero-rating { font-size: 0.88rem; color: var(--text-dim); }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 14px 28px;
  border-radius: var(--r-md);
  border: none;
  cursor: pointer;
  transition: all var(--t-base) var(--ease);
  letter-spacing: 0.02em;
  text-decoration: none;
}
.btn-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--bg);
  box-shadow: var(--shadow-accent);
}
.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow), var(--shadow-accent);
  color: var(--bg);
}
.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--text);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent-light);
  background: var(--accent-dim);
}
.btn-sage {
  background: var(--sage);
  color: var(--white);
}
.btn-sage:hover {
  background: var(--sage-light);
  transform: translateY(-2px);
  color: var(--white);
}
.btn-lg { padding: 18px 36px; font-size: 1rem; border-radius: var(--r-lg); }
.btn-sm { padding: 10px 20px; font-size: 0.82rem; }

/* ── Trust Bar ─────────────────────────────────────────────── */
.trust-bar {
  background: var(--surface);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: var(--s-lg) 0;
}
.trust-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--s-xl);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dim);
}
.trust-item .icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  color: var(--accent-light);
  border-radius: var(--r-full);
  font-size: 0.75rem;
  font-weight: 700;
}

/* ── Section Styles ────────────────────────────────────────── */
.section { padding: var(--s-3xl) 0; }
.section-sm { padding: var(--s-2xl) 0; }
.section-dark { background: var(--surface); }
.section-darker { background: var(--bg-warm); }

.section-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--s-sm);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
  color: var(--white);
  margin-bottom: var(--s-md);
  letter-spacing: -0.02em;
}
.section-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-dim);
  max-width: 600px;
}
.section-header { margin-bottom: var(--s-2xl); }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* ── Services Grid ─────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--s-lg);
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all var(--t-base) var(--ease);
  text-decoration: none;
  color: inherit;
  display: block;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-dim);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  color: inherit;
}
.service-card-img {
  height: 200px;
  overflow: hidden;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-body { padding: var(--s-lg); }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: var(--s-sm);
}
.service-card p {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: var(--s-md);
}
.service-card .card-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-light);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--t-fast) var(--ease);
}
.service-card:hover .card-link { gap: 10px; }

/* ── Projects / Portfolio ──────────────────────────────────── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: var(--s-lg);
}
.project-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}
.project-card:hover img { transform: scale(1.06); }
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10,15,10,0.9) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--s-lg);
  transition: background var(--t-base) var(--ease);
}
.project-card:hover .project-overlay {
  background: linear-gradient(0deg, rgba(10,15,10,0.95) 0%, rgba(10,15,10,0.3) 60%);
}
.project-overlay h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 4px;
}
.project-overlay .tag {
  font-size: 0.75rem;
  color: var(--accent-light);
  font-weight: 500;
}

/* ── Gallery Masonry ───────────────────────────────────────── */
.gallery-grid {
  columns: 3;
  column-gap: var(--s-md);
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: var(--s-md);
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform var(--t-slow) var(--ease);
}
.gallery-item:hover img { transform: scale(1.04); }
@media (max-width: 768px) { .gallery-grid { columns: 2; } }
@media (max-width: 480px) { .gallery-grid { columns: 1; } }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--s-xl);
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--r-md);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  z-index: 2001;
}

/* ── Stats Banner ──────────────────────────────────────────── */
.stats-bar {
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: var(--s-2xl) 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-xl);
  text-align: center;
}
.stat-item .stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-item .stat-label {
  font-size: 0.82rem;
  color: var(--text-dim);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
@media (max-width: 600px) { .stats-inner { grid-template-columns: repeat(2, 1fr); } }

/* ── Testimonials ──────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: var(--s-lg);
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: var(--s-xl);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--accent-dim);
  position: absolute;
  top: 16px;
  left: 24px;
  line-height: 1;
}
.testimonial-stars {
  color: var(--accent-light);
  font-size: 0.95rem;
  letter-spacing: 2px;
  margin-bottom: var(--s-md);
}
.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: var(--s-lg);
  font-style: italic;
}
.testimonial-author {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--white);
}
.testimonial-source {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ── Service Page Layout ───────────────────────────────────── */
.page-hero {
  position: relative;
  padding: var(--s-4xl) 0 var(--s-3xl);
  min-height: 50vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,15,10,0.92) 0%, rgba(10,15,10,0.7) 100%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--white);
  margin-bottom: var(--s-md);
  letter-spacing: -0.02em;
}
.page-hero p {
  font-size: 1.1rem;
  color: var(--text-dim);
  max-width: 600px;
  line-height: 1.7;
}
.breadcrumb {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: var(--s-lg);
}
.breadcrumb a { color: var(--accent); }
.breadcrumb a:hover { color: var(--accent-light); }
.breadcrumb span { margin: 0 8px; }

/* Content sections */
.content-section { padding: var(--s-3xl) 0; }
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-2xl);
  align-items: center;
}
.content-grid.reverse { direction: rtl; }
.content-grid.reverse > * { direction: ltr; }
.content-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--white);
  margin-bottom: var(--s-md);
  letter-spacing: -0.01em;
}
.content-text p {
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--text-dim);
  margin-bottom: var(--s-md);
}
.content-image {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .content-grid { grid-template-columns: 1fr; gap: var(--s-xl); }
  .content-grid.reverse { direction: ltr; }
}

/* Feature list */
.feature-list { margin: var(--s-lg) 0; }
.feature-item {
  display: flex;
  gap: var(--s-md);
  padding: var(--s-md) 0;
  border-bottom: 1px solid var(--glass-border);
}
.feature-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sage-dim);
  color: var(--sage-light);
  border-radius: var(--r-sm);
  font-size: 0.85rem;
}
.feature-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}
.feature-item p {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.5;
  margin: 0;
}

/* Image grid for service pages */
.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--s-md);
}
.image-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--r-md);
  transition: transform var(--t-base) var(--ease);
}
.image-grid img:hover { transform: scale(1.03); }

/* ── Partners / Certifications ─────────────────────────────── */
.partners-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s-xl);
  padding: var(--s-xl) 0;
  opacity: 0.5;
  transition: opacity var(--t-base) var(--ease);
}
.partners-strip:hover { opacity: 0.8; }
.partners-strip img { height: 36px; width: auto; filter: brightness(0) invert(1); }

/* ── Contact / Forms ───────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-2xl);
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

.form-group { margin-bottom: var(--s-lg); }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dim);
  margin-bottom: var(--s-sm);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: var(--surface);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  color: var(--text);
  font-size: 0.95rem;
  transition: all var(--t-fast) var(--ease);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}
.form-group textarea { min-height: 140px; resize: vertical; }

.contact-info-item {
  display: flex;
  gap: var(--s-md);
  padding: var(--s-md) 0;
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  color: var(--accent-light);
  border-radius: var(--r-md);
  font-size: 1.1rem;
}
.contact-info-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}
.contact-info-value {
  font-size: 1rem;
  color: var(--white);
  font-weight: 500;
}
.contact-info-value a { color: var(--accent-light); }

/* ── Map ───────────────────────────────────────────────────── */
.map-embed {
  width: 100%;
  height: 400px;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
}
.map-embed iframe { width: 100%; height: 100%; border: none; }

/* ── Footer ────────────────────────────────────────────────── */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--glass-border);
  padding: var(--s-3xl) 0 var(--s-xl);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--s-2xl);
  margin-bottom: var(--s-2xl);
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s-xl); }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand .logo-text {
  font-size: 1.2rem;
  margin-bottom: var(--s-sm);
}
.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 300px;
}
.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  margin-bottom: var(--s-lg);
}
.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 6px 0;
  transition: all var(--t-fast) var(--ease);
}
.footer-col a:hover { color: var(--accent-light); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding-top: var(--s-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s-md);
}
.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.footer-social {
  display: flex;
  gap: var(--s-md);
}
.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-full);
  color: var(--text-dim);
  font-size: 0.88rem;
  transition: all var(--t-fast) var(--ease);
}
.footer-social a:hover {
  background: var(--accent-dim);
  border-color: var(--accent);
  color: var(--accent-light);
}

/* ── Before/After ──────────────────────────────────────────── */
.before-after-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-md);
  position: relative;
}
.before-after-grid::after {
  content: 'VS';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--accent);
  color: var(--bg);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-full);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  z-index: 1;
}
.before-after-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--r-md);
}
.ba-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-top: var(--s-sm);
}

/* ── CTA Banner ────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--surface-2) 0%, var(--surface-3) 100%);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  padding: var(--s-3xl) var(--s-2xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, var(--accent-dim) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--white);
  margin-bottom: var(--s-md);
}
.cta-banner p {
  font-size: 1.05rem;
  color: var(--text-dim);
  margin-bottom: var(--s-xl);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Client Portal / Dashboard ─────────────────────────────── */
.login-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s-xl);
}
.login-card {
  background: var(--surface);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  padding: var(--s-2xl);
  width: 100%;
  max-width: 440px;
  text-align: center;
}
.login-card h1 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: var(--s-sm);
}
.login-card .subtitle {
  color: var(--text-dim);
  font-size: 0.92rem;
  margin-bottom: var(--s-xl);
}
.login-card .form-group { text-align: left; }
.login-card .btn { width: 100%; justify-content: center; }

/* Dashboard */
.dashboard-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
}
.dashboard-sidebar {
  background: var(--surface);
  border-right: 1px solid var(--glass-border);
  padding: var(--s-lg);
}
.dashboard-main { padding: var(--s-xl); }

.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: var(--s-sm);
  padding: 12px 16px;
  font-size: 0.88rem;
  color: var(--text-dim);
  border-radius: var(--r-md);
  margin-bottom: 4px;
  transition: all var(--t-fast) var(--ease);
}
.sidebar-nav a:hover { background: var(--glass); color: var(--white); }
.sidebar-nav a.active { background: var(--accent-dim); color: var(--accent-light); }

.dash-card {
  background: var(--surface);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: var(--s-lg);
}
.dash-card h3 {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--s-md);
}
.dash-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--s-md);
}
.dash-stat {
  background: var(--surface-2);
  border-radius: var(--r-md);
  padding: var(--s-lg);
}
.dash-stat .value {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--accent-light);
}
.dash-stat .label {
  font-size: 0.78rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 768px) {
  .dashboard-layout { grid-template-columns: 1fr; }
  .dashboard-sidebar { display: none; }
}

/* ── Service Area ──────────────────────────────────────────── */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: var(--s-sm);
}
.area-tag {
  padding: 10px 16px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  font-size: 0.85rem;
  color: var(--text-dim);
  text-align: center;
  transition: all var(--t-fast) var(--ease);
}
.area-tag:hover {
  border-color: var(--accent-dim);
  color: var(--accent-light);
  background: var(--accent-dim);
}

/* ── Animations ────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.fade-in { animation: fadeIn 0.6s var(--ease-out) forwards; }
.fade-in-up { animation: fadeInUp 0.6s var(--ease-out) forwards; }
.delay-1 { animation-delay: 0.1s; opacity: 0; }
.delay-2 { animation-delay: 0.2s; opacity: 0; }
.delay-3 { animation-delay: 0.3s; opacity: 0; }
.delay-4 { animation-delay: 0.4s; opacity: 0; }
.delay-5 { animation-delay: 0.5s; opacity: 0; }

/* ── Utility ───────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-accent { color: var(--accent-light); }
.text-sage { color: var(--sage-light); }
.mt-sm { margin-top: var(--s-sm); }
.mt-md { margin-top: var(--s-md); }
.mt-lg { margin-top: var(--s-lg); }
.mt-xl { margin-top: var(--s-xl); }
.mb-md { margin-bottom: var(--s-md); }
.mb-lg { margin-bottom: var(--s-lg); }
.mb-xl { margin-bottom: var(--s-xl); }
.gap-md { gap: var(--s-md); }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }

/* ── Print ─────────────────────────────────────────────────── */
@media print {
  .site-header, .demo-banner, .site-footer, .hamburger, .mobile-nav { display: none !important; }
  body { background: white; color: black; }
  .hero { min-height: auto; }
}
