/*
Theme Name: Matias Gonzalez Landscape
Theme URI: https://san-diego-roots.lovable.app
Author: ConnectWeb SD
Author URI: https://connectwebsd.com
Description: Professional WordPress theme for Matias Gonzalez Landscape LLC — landscaping, hardscape, pavers, concrete, irrigation, tree services, artificial turf, and junk removal across San Diego County.
Version: 1.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: matias-landscape
Tags: landscaping, business, one-column, custom-logo, custom-menu, featured-images
*/

/* ========== CSS Variables ========== */
:root {
  --background: hsl(40, 20%, 98%);
  --foreground: hsl(220, 15%, 15%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(220, 15%, 15%);
  --primary: hsl(145, 35%, 22%);
  --primary-foreground: hsl(40, 20%, 98%);
  --muted: hsl(40, 15%, 94%);
  --muted-foreground: hsl(220, 10%, 45%);
  --border: hsl(40, 15%, 88%);
  --sand: hsl(35, 30%, 92%);
  --olive: hsl(85, 15%, 52%);
  --forest: hsl(145, 35%, 22%);
  --forest-light: hsl(145, 25%, 35%);
  --charcoal: hsl(220, 15%, 15%);
  --warm-white: hsl(40, 20%, 98%);
  --radius: 0.625rem;
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;
}

/* ========== Reset & Base ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font-sans);
  background: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ========== Layout ========== */
.container-custom { max-width: 80rem; margin: 0 auto; padding-left: 1rem; padding-right: 1rem; }
.section-padding { padding: 4rem 1rem; }
@media (min-width: 768px) { .section-padding { padding: 6rem 2rem; } }

/* ========== Top Bar ========== */
.top-bar {
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
}
.top-bar .container-custom { display: flex; align-items: center; justify-content: space-between; }
.top-bar__left { display: none; align-items: center; gap: 1.5rem; }
.top-bar__left span:first-child { font-weight: 600; }
.top-bar__left .divider { opacity: 0.4; }
.top-bar__right { display: flex; align-items: center; gap: 1.5rem; width: 100%; justify-content: space-between; }
.top-bar__right a { display: flex; align-items: center; gap: 0.375rem; font-weight: 500; }
.top-bar__right a:hover { opacity: 0.8; }
@media (min-width: 768px) {
  .top-bar__left { display: flex; }
  .top-bar__right { width: auto; justify-content: flex-end; }
}

/* ========== Header ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--card);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1); }

.header-desktop {
  display: none;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0.5rem 0;
  gap: 1.5rem;
}
.header-desktop nav { display: flex; align-items: center; gap: 1.5rem; }
.header-desktop nav:first-child { justify-content: flex-end; }
.header-desktop nav a.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  opacity: 0.8;
  white-space: nowrap;
  transition: color 0.2s;
}
.header-desktop nav a.nav-link:hover { color: var(--primary); opacity: 1; }
.header-logo img { height: 3.5rem; width: auto; }

.header-cta { display: flex; align-items: center; gap: 0.75rem; margin-left: auto; }

@media (min-width: 1024px) { .header-desktop { display: grid; } .header-mobile { display: none !important; } }

/* Mobile Header */
.header-mobile { display: flex; align-items: center; justify-content: space-between; padding: 0.5rem 0; }
.header-mobile .header-logo img { height: 3rem; }
.mobile-menu-btn { padding: 0.5rem; color: var(--foreground); }
.mobile-menu-btn svg { width: 1.5rem; height: 1.5rem; }

.mobile-menu {
  display: none;
  background: var(--card);
  border-top: 1px solid var(--border);
  padding-bottom: 1rem;
}
.mobile-menu.active { display: block; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 0.25rem; padding-top: 0.5rem; }
.mobile-menu nav a {
  display: block;
  padding: 0.75rem 1rem;
  font-weight: 500;
  color: var(--foreground);
  border-radius: var(--radius);
  transition: background 0.2s;
}
.mobile-menu nav a:hover { background: var(--muted); }
.mobile-menu__cta { display: flex; gap: 0.75rem; margin-top: 0.75rem; padding: 0 1rem; }
.mobile-menu__cta a { flex: 1; }

@media (min-width: 1024px) { .mobile-menu { display: none !important; } }

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-primary { background: var(--primary); color: var(--primary-foreground); }
.btn-primary:hover { background: var(--forest-light); }
.btn-outline { border: 2px solid var(--primary); color: var(--primary); background: transparent; }
.btn-outline:hover { background: var(--primary); color: var(--primary-foreground); }
.btn-olive { background: var(--olive); color: var(--warm-white); }
.btn-olive:hover { opacity: 0.85; }
.btn-ghost { border: 1px solid rgba(255,255,255,0.3); color: var(--warm-white); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); }
.btn-white-ghost { background: rgba(255,255,255,0.15); color: white; border: 1px solid rgba(255,255,255,0.3); backdrop-filter: blur(4px); }
.btn-white-ghost:hover { background: rgba(255,255,255,0.25); }
.btn-lg { padding: 0.875rem 1.75rem; font-size: 1rem; }

/* ========== SVG Icons (inline) ========== */
.icon { width: 1rem; height: 1rem; flex-shrink: 0; }
.icon-sm { width: 0.875rem; height: 0.875rem; }
.icon-lg { width: 1.25rem; height: 1.25rem; }
.icon-xl { width: 1.75rem; height: 1.75rem; }
.icon-olive { color: var(--olive); }

/* ========== Hero ========== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
}
.hero__bg { position: absolute; inset: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(to right, hsla(220,15%,15%,0.85), hsla(220,15%,15%,0.6), hsla(220,15%,15%,0.3)); }
.hero__content { position: relative; max-width: 48rem; padding: 3.5rem 1.5rem; }
@media (min-width: 768px) { .hero__content { padding: 8rem 2rem; } }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(136,157,91,0.2);
  backdrop-filter: blur(4px);
  color: var(--warm-white);
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 1rem;
  border: 1px solid rgba(136,157,91,0.3);
}
@media (min-width: 768px) { .hero__badge { padding: 0.5rem 1rem; font-size: 0.875rem; margin-bottom: 1.5rem; } }
.hero__company {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--olive);
  font-weight: 600;
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
}
@media (min-width: 640px) { .hero__company { font-size: 0.875rem; } }
@media (min-width: 768px) { .hero__company { font-size: 1rem; margin-bottom: 0.75rem; } }
.hero h1 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--warm-white);
  line-height: 1.15;
  margin-bottom: 1rem;
}
@media (min-width: 640px) { .hero h1 { font-size: 1.875rem; } }
@media (min-width: 768px) { .hero h1 { font-size: 3rem; margin-bottom: 1.5rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 3.75rem; } }
.hero__desc { font-size: 0.875rem; color: rgba(250,248,244,0.85); line-height: 1.7; margin-bottom: 1.5rem; max-width: 42rem; }
@media (min-width: 768px) { .hero__desc { font-size: 1.125rem; margin-bottom: 2rem; } }
.hero__buttons { display: flex; flex-direction: column; gap: 0.5rem; max-width: 200px; margin-bottom: 2rem; }
@media (min-width: 640px) { .hero__buttons { flex-direction: row; max-width: none; gap: 0.75rem; margin-bottom: 2.5rem; } }
.hero__trust { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (min-width: 768px) { .hero__trust { grid-template-columns: repeat(4, 1fr); } }
.hero__trust-item { display: flex; align-items: center; gap: 0.5rem; color: rgba(250,248,244,0.8); font-size: 0.875rem; }

/* ========== Trust Bar ========== */
.trust-bar { background: var(--primary); padding: 1.25rem 0; }
.trust-bar__inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; }
@media (min-width: 768px) { .trust-bar__inner { gap: 2.5rem; } }
.trust-bar__item { display: flex; align-items: center; gap: 0.5rem; color: rgba(250,248,244,0.9); font-size: 0.875rem; font-weight: 500; }

/* ========== Section Headings ========== */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header__label { color: var(--olive); font-weight: 600; font-size: 0.875rem; letter-spacing: 0.05em; text-transform: uppercase; }
.section-header h2 { font-family: var(--font-heading); font-size: 1.875rem; font-weight: 700; color: var(--foreground); margin-top: 0.5rem; margin-bottom: 1rem; }
@media (min-width: 768px) { .section-header h2 { font-size: 2.25rem; } }
.section-header p { color: var(--muted-foreground); max-width: 42rem; margin: 0 auto; }

/* ========== Services Grid ========== */
.services-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }
.service-card {
  background: var(--card);
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.service-card:hover { box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1); border-color: rgba(136,157,91,0.3); }
.service-card__img { height: 12rem; overflow: hidden; }
.service-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.service-card:hover .service-card__img img { transform: scale(1.05); }
.service-card__body { padding: 1.25rem; flex: 1; }
.service-card h3 { font-family: var(--font-heading); font-weight: 700; font-size: 1.125rem; color: var(--foreground); margin-bottom: 0.5rem; transition: color 0.2s; }
.service-card:hover h3 { color: var(--primary); }
.service-card p { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.6; margin-bottom: 0.75rem; }
.service-card__link { display: inline-flex; align-items: center; gap: 0.25rem; font-size: 0.875rem; font-weight: 600; color: var(--primary); transition: gap 0.2s; }
.service-card:hover .service-card__link { gap: 0.5rem; }

/* ========== About Section ========== */
.about-section { background: var(--sand); }
.about-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.stat-card {
  background: var(--card);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.05);
}
.stat-card .number { font-family: var(--font-heading); font-size: 1.875rem; font-weight: 700; color: var(--primary); margin-bottom: 0.25rem; }
@media (min-width: 768px) { .stat-card .number { font-size: 2.25rem; } }
.stat-card .label { font-size: 0.875rem; color: var(--muted-foreground); }

/* ========== Why Choose Us ========== */
.reasons-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .reasons-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .reasons-grid { grid-template-columns: repeat(3, 1fr); } }
.reason-card {
  background: var(--card);
  border-radius: 0.75rem;
  padding: 1.75rem;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.reason-card:hover { border-color: rgba(136,157,91,0.3); box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1); }
.reason-card__icon { width: 2rem; height: 2rem; color: var(--olive); margin-bottom: 1rem; }
.reason-card h3 { font-family: var(--font-heading); font-weight: 700; font-size: 1.125rem; color: var(--foreground); margin-bottom: 0.5rem; }
.reason-card p { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.6; }

/* ========== Gallery / Before & After ========== */
.gallery-pair { margin-bottom: 2.5rem; }
.gallery-pair h3 { font-family: var(--font-heading); font-weight: 700; font-size: 1.125rem; color: var(--foreground); margin-bottom: 0.75rem; text-align: center; }
.gallery-pair__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
@media (min-width: 768px) { .gallery-pair__grid { gap: 1rem; } }
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--warm-white);
  backdrop-filter: blur(4px);
}
.gallery-item__badge--before { background: rgba(36,41,46,0.7); }
.gallery-item__badge--after { background: rgba(136,157,91,0.8); }
.gallery-standalone {
  max-width: 48rem;
  margin: 0 auto;
  border-radius: 0.75rem;
  overflow: hidden;
  aspect-ratio: 16/9;
  cursor: pointer;
}
.gallery-standalone img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-standalone:hover img { transform: scale(1.05); }

/* ========== Lightbox ========== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(36,41,46,0.95);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.lightbox.active { display: flex; }
.lightbox__close { position: absolute; top: 1.5rem; right: 1.5rem; color: var(--warm-white); transition: color 0.2s; }
.lightbox__close:hover { color: var(--olive); }
.lightbox__close svg { width: 2rem; height: 2rem; }
.lightbox img { max-width: 100%; max-height: 85vh; object-fit: contain; border-radius: var(--radius); }

/* ========== Commercial/Residential ========== */
.comm-res { background: var(--primary); color: var(--primary-foreground); }
.comm-res__grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .comm-res__grid { grid-template-columns: 1fr 1fr; } }
.comm-res__card { background: rgba(250,248,244,0.1); backdrop-filter: blur(4px); border-radius: 0.75rem; padding: 2rem; border: 1px solid rgba(250,248,244,0.15); }
.comm-res__card h3 { font-family: var(--font-heading); font-weight: 700; font-size: 1.25rem; margin-bottom: 0.75rem; }
.comm-res__card ul { display: flex; flex-direction: column; gap: 0.5rem; }
.comm-res__card li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: rgba(250,248,244,0.8); }
.comm-res__card li .dot { width: 0.375rem; height: 0.375rem; border-radius: 50%; background: var(--olive); flex-shrink: 0; }

/* ========== Service Areas Grid ========== */
.areas-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 640px) { .areas-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .areas-grid { grid-template-columns: repeat(5, 1fr); } }
.area-card {
  background: var(--card);
  border-radius: 0.75rem;
  padding: 1.25rem;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.area-card:hover { border-color: rgba(136,157,91,0.3); box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1); }
.area-card span { font-weight: 600; font-size: 0.875rem; color: var(--foreground); }

/* ========== Process Section ========== */
.process-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }
.process-step { text-align: center; }
.process-step__icon { width: 4rem; height: 4rem; background: var(--primary); border-radius: 1rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.process-step__icon svg { width: 1.75rem; height: 1.75rem; color: var(--primary-foreground); }
.process-step__num { font-size: 0.75rem; font-weight: 700; color: var(--olive); margin-bottom: 0.25rem; }
.process-step h3 { font-family: var(--font-heading); font-weight: 700; font-size: 1.125rem; color: var(--foreground); margin-bottom: 0.5rem; }
.process-step p { font-size: 0.875rem; color: var(--muted-foreground); }

/* ========== FAQ ========== */
.faq-list { max-width: 48rem; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { background: var(--card); border-radius: 0.75rem; border: 1px solid var(--border); overflow: hidden; }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  color: var(--foreground);
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--primary); }
.faq-question svg { width: 1.25rem; height: 1.25rem; transition: transform 0.2s; flex-shrink: 0; margin-left: 1rem; }
.faq-item.active .faq-question svg { transform: rotate(180deg); }
.faq-answer { padding: 0 1.5rem 1.25rem; color: var(--muted-foreground); line-height: 1.7; display: none; }
.faq-item.active .faq-answer { display: block; }

/* ========== CTA / Contact Section ========== */
.cta-section { background: var(--primary); color: var(--primary-foreground); }
.cta-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .cta-grid { grid-template-columns: 1fr 1fr; } }
.cta-info__item { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; color: rgba(250,248,244,0.9); }
.cta-info__item:hover { color: var(--primary-foreground); }
.cta-info__icon { width: 2.5rem; height: 2.5rem; background: rgba(250,248,244,0.1); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cta-info__icon svg { color: var(--olive); }
.cta-info__label { font-size: 0.75rem; color: rgba(250,248,244,0.6); }
.cta-info__value { font-weight: 600; }

/* Contact Form */
.contact-form {
  background: var(--card);
  color: var(--card-foreground);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}
.contact-form h3 { font-family: var(--font-heading); font-weight: 700; font-size: 1.25rem; margin-bottom: 1.5rem; }
.contact-form .form-group { margin-bottom: 1rem; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--background);
  color: var(--foreground);
  font-size: 0.875rem;
  font-family: var(--font-sans);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(45,74,45,0.15);
}
.contact-form textarea { resize: none; }
.contact-form button[type="submit"] {
  width: 100%;
  padding: 0.875rem;
  background: var(--primary);
  color: var(--primary-foreground);
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.contact-form button[type="submit"]:hover { background: var(--forest-light); }
.form-success { text-align: center; padding: 3rem 0; }
.form-success h3 { margin-bottom: 0.5rem; }
.form-success p { color: var(--muted-foreground); }

/* ========== Page Headers ========== */
.page-header { background: var(--primary); color: var(--primary-foreground); text-align: center; }
.page-header h1 { font-family: var(--font-heading); font-size: 2.25rem; font-weight: 700; margin-bottom: 1rem; }
@media (min-width: 768px) { .page-header h1 { font-size: 3rem; } }
.page-header p { color: rgba(250,248,244,0.8); font-size: 1.125rem; max-width: 48rem; margin: 0 auto; }

/* ========== Service Page ========== */
.service-hero { position: relative; }
.service-hero__bg { position: absolute; inset: 0; }
.service-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.service-hero__overlay { position: absolute; inset: 0; background: rgba(36,41,46,0.8); }
.service-hero__content { position: relative; text-align: center; color: var(--warm-white); max-width: 48rem; margin: 0 auto; }
.service-hero h1 { font-size: 1.875rem; }
@media (min-width: 768px) { .service-hero h1 { font-size: 3rem; } }

.service-details { display: grid; grid-template-columns: 1fr; gap: 3rem; max-width: 64rem; margin: 0 auto; }
@media (min-width: 768px) { .service-details { grid-template-columns: 1fr 1fr; } }
.service-details h2 { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--foreground); margin-bottom: 1rem; }
.service-details li { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; color: var(--foreground); }

.service-why { display: grid; grid-template-columns: 1fr; gap: 1.5rem; max-width: 64rem; margin: 0 auto; }
@media (min-width: 768px) { .service-why { grid-template-columns: repeat(3, 1fr); } }
.service-why__card { background: var(--card); border-radius: 0.75rem; padding: 1.5rem; border: 1px solid var(--border); }
.service-why__card h3 { font-family: var(--font-heading); font-weight: 700; font-size: 1.125rem; margin-bottom: 0.5rem; }
.service-why__card p { font-size: 0.875rem; color: var(--muted-foreground); }

.service-areas-pills { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1rem; max-width: 64rem; }
.service-areas-pill { display: inline-flex; align-items: center; gap: 0.25rem; background: var(--sand); padding: 0.5rem 1rem; border-radius: 9999px; font-size: 0.875rem; font-weight: 500; color: var(--foreground); }

/* ========== Service Areas Page Cards ========== */
.area-detail-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .area-detail-grid { grid-template-columns: 1fr 1fr; } }
.area-detail-card {
  background: var(--card);
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.area-detail-card:hover { border-color: rgba(136,157,91,0.3); box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1); }
.area-detail-card h2 { font-family: var(--font-heading); font-weight: 700; font-size: 1.25rem; color: var(--foreground); display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.area-detail-card p { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.6; margin-bottom: 1rem; }
.area-detail-card__links { display: flex; gap: 0.5rem; }
.area-detail-card__links a { display: inline-flex; align-items: center; gap: 0.25rem; font-size: 0.75rem; font-weight: 600; color: var(--primary); transition: color 0.2s; }
.area-detail-card__links a:hover { color: var(--forest-light); }

/* ========== About Page ========== */
.about-content { max-width: 56rem; margin: 0 auto; }
.about-content p { color: var(--muted-foreground); line-height: 1.7; font-size: 1.125rem; margin-bottom: 1rem; }
.about-checks { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 3rem; }
@media (min-width: 768px) { .about-checks { grid-template-columns: 1fr 1fr; } }
.about-check { display: flex; align-items: center; gap: 0.75rem; }
.about-check span { font-weight: 500; color: var(--foreground); }

/* ========== Footer ========== */
.site-footer { background: var(--charcoal); color: var(--warm-white); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); gap: 3rem; } }
.footer-brand h3 { font-family: var(--font-heading); font-weight: 700; font-size: 1.25rem; margin-bottom: 0.5rem; }
.footer-brand .subtitle { font-size: 0.875rem; color: rgba(250,248,244,0.6); letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 1.25rem; }
.footer-contact-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: rgba(250,248,244,0.8); margin-bottom: 0.75rem; }
.footer-contact-item a:hover { color: var(--warm-white); }
.footer-col h4 { font-family: var(--font-heading); font-weight: 700; font-size: 1.125rem; margin-bottom: 1rem; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { font-size: 0.875rem; color: rgba(250,248,244,0.7); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--warm-white); }
.footer-col ul li.area-text { font-size: 0.875rem; color: rgba(250,248,244,0.7); }
.footer-bottom {
  border-top: 1px solid rgba(250,248,244,0.1);
  padding: 1.5rem 1rem;
}
.footer-bottom__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: rgba(250,248,244,0.4);
}
@media (min-width: 768px) { .footer-bottom__inner { flex-direction: row; } }

/* ========== Mobile CTA Bar ========== */
.mobile-cta {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--card);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 6px -1px rgb(0 0 0 / 0.1);
  padding: 0.75rem;
  gap: 0.75rem;
}
.mobile-cta a { flex: 1; }
@media (min-width: 768px) { .mobile-cta { display: none; } }

/* ========== 404 Page ========== */
.page-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--muted);
  text-align: center;
}
.page-404 h1 { font-size: 2.25rem; font-weight: 700; margin-bottom: 1rem; }
.page-404 p { font-size: 1.25rem; color: var(--muted-foreground); margin-bottom: 1rem; }
.page-404 a { color: var(--primary); text-decoration: underline; }
.page-404 a:hover { opacity: 0.9; }

/* ========== Utility ========== */
.text-center { text-align: center; }
.mb-4 { margin-bottom: 1rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.flex-wrap-gap { display: flex; flex-wrap: wrap; gap: 0.75rem; }
