/* ============================================
   Diamond H Irrigation - Master Stylesheet
   Premium Fort Worth Irrigation & Lighting
   ============================================ */

/* --- CSS Variables --- */
:root {
  --green-deep: #164D35;
  --green-dark: #0F3725;
  --green-light: #E7EFEA;
  --green-muted: #1F6B45;
  --charcoal: #1A1A1A;
  --brass: #C6A75A;
  --brass-light: #DABE78;
  --brass-faint: rgba(198,167,90,0.12);
  --cream: #F8F6F1;
  --white: #FFFFFF;
  --gray-100: #F5F5F3;
  --gray-200: #E8E8E5;
  --gray-400: #9A9A95;
  --gray-600: #6B6B65;
  --gray-800: #3A3A35;
  --text-primary: #1A1A1A;
  --text-secondary: #4A4A45;
  --text-light: #6B6B65;
  --text-muted: #8A8A85;
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.08), 0 4px 8px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.10), 0 8px 16px rgba(0,0,0,0.05);
  --shadow-glow-primary: 0 4px 16px rgba(22,77,53,0.25);
  --shadow-glow-brass: 0 4px 16px rgba(198,167,90,0.2);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --transition: 0.3s ease;
  --transition-fast: 0.15s ease;
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
  --max-width-narrow: 900px;
}

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

::selection {
  background: rgba(22,77,53,0.15);
  color: var(--charcoal);
}

:focus-visible {
  outline: 2px solid var(--green-muted);
  outline-offset: 2px;
  border-radius: 2px;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'DM Sans', 'Helvetica Neue', sans-serif;
  color: var(--text-primary);
  background-color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul, ol {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Libre Baskerville', 'Georgia', serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--charcoal);
}

h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  letter-spacing: -0.015em;
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
}

h4 {
  font-size: 1.15rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
}

p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 680px;
}

.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brass);
  border-radius: 2px;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.container--narrow {
  max-width: var(--max-width-narrow);
}

.section {
  padding: 5rem 0;
}

.section--sm {
  padding: 3.5rem 0;
}

.section--lg {
  padding: 7rem 0;
}

.section--cream {
  background-color: var(--cream);
  background-image: radial-gradient(ellipse at 20% 50%, rgba(198,167,90,0.03) 0%, transparent 60%);
}

.section--green {
  background-color: var(--green-deep);
  color: var(--white);
}

.section--green h2,
.section--green h3,
.section--green h4 {
  color: var(--white);
}

.section--green p {
  color: rgba(255,255,255,0.85);
}

.section--green .section-label {
  color: var(--brass-light);
}

.section--light {
  background-color: var(--green-light);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

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

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

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--green-deep) 0%, #18593A 100%);
  color: var(--white);
  box-shadow: var(--shadow-xs);
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-deep) 100%);
  transform: translateY(-1px);
  box-shadow: var(--shadow-glow-primary);
}

.btn--secondary {
  background: linear-gradient(135deg, var(--brass) 0%, #C9A462 100%);
  color: var(--white);
  box-shadow: var(--shadow-xs);
}

.btn--secondary:hover {
  background: linear-gradient(135deg, var(--brass-light) 0%, var(--brass) 100%);
  transform: translateY(-1px);
  box-shadow: var(--shadow-glow-brass);
}

.btn--outline {
  background-color: transparent;
  color: var(--green-deep);
  border: 2px solid var(--green-deep);
}

.btn--outline:hover {
  background-color: var(--green-deep);
  color: var(--white);
}

.hero .btn--primary {
  background: linear-gradient(135deg, var(--brass) 0%, #D4B06A 100%);
  color: var(--green-dark);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(198,167,90,0.35);
  border: none;
}

.hero .btn--primary:hover {
  background: linear-gradient(135deg, var(--brass-light) 0%, var(--brass) 100%);
  box-shadow: 0 6px 28px rgba(198,167,90,0.45);
  transform: translateY(-2px);
}

.hero .btn--outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.hero .btn--outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.7);
  color: var(--white);
}

.btn--white {
  background-color: var(--white);
  color: var(--green-deep);
}

.btn--white:hover {
  background-color: var(--cream);
  transform: translateY(-1px);
}

.btn--sm {
  padding: 0.65rem 1.4rem;
  font-size: 0.88rem;
}

.btn--lg {
  padding: 1.1rem 2.5rem;
  font-size: 1rem;
}

/* --- Header / Navigation --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 1px 16px rgba(0,0,0,0.06), 0 0 1px rgba(0,0,0,0.08);
  border-bottom-color: transparent;
}

.header-top {
  background-color: var(--green-deep);
  padding: 0.5rem 0;
}

.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-top-info {
  display: flex;
  gap: 2rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.9);
}

.header-top-info a {
  color: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.header-top-info a:hover {
  color: var(--brass-light);
}

.header-top-cta {
  font-size: 0.82rem;
  color: var(--brass-light);
  font-weight: 600;
}

.header-main {
  padding: 0.8rem 0;
}

.header-main .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-mark {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--green-deep) 0%, #18593A 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brass-light);
  font-family: 'Libre Baskerville', serif;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: inset 0 0 0 1.5px rgba(198,167,90,0.3);
}

.logo-img {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  object-fit: contain;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-name {
  font-family: 'Libre Baskerville', serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}

.logo-tagline {
  font-size: 0.72rem;
  color: var(--gray-400);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-main a {
  padding: 0.5rem 1rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.nav-main a:hover,
.nav-main a.active {
  color: var(--green-deep);
  background-color: var(--green-light);
}

.nav-main > a.active {
  position: relative;
}

.nav-main > a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--brass);
  border-radius: 2px;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  cursor: pointer;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
  z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
}

.nav-dropdown-menu a:hover {
  background-color: var(--green-light);
  color: var(--green-deep);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-phone {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--green-deep);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* Mobile Nav */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}

.mobile-close {
  display: none;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: all var(--transition);
  border-radius: 2px;
}

/* --- Hero --- */
.hero {
  position: relative;
  padding: 12rem 0 6rem;
  background-color: var(--charcoal);
  background-image: url('/assets/images/hero-bg.jpg');
  background-size: cover;
  background-position: center 40%;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(160deg, rgba(26,26,26,0.85) 0%, rgba(30,53,41,0.78) 50%, rgba(22,77,53,0.72) 100%);
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.03) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero-content {
  max-width: 640px;
}

.hero-content--centered {
  max-width: 720px;
  text-align: center;
  margin: 0 auto;
}

.hero-content--centered p {
  margin-left: auto;
  margin-right: auto;
}

.hero-content--centered .hero-actions {
  justify-content: center;
}

.hero-content--centered .hero-trust {
  justify-content: center;
}

.hero-content--centered .section-label {
  justify-content: center;
}

.hero-content .section-label {
  color: var(--brass-light);
}

.hero-content .section-label::before {
  background: var(--brass-light);
}

.hero h1 {
  margin-bottom: 1.5rem;
  color: var(--white);
}

.hero p {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  color: rgba(255,255,255,0.85);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255,255,255,0.12);
  padding: 0.55rem 1rem 0.55rem 0.55rem;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

.hero-trust-item:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.28);
}

.hero-trust-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brass) 0%, #D4B06A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(198,167,90,0.3);
}

.hero-trust-icon svg {
  width: 18px;
  height: 18px;
  color: var(--green-dark);
}

.hero-trust-text {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.95);
  line-height: 1.3;
}

/* --- Interior Hero --- */
.page-hero {
  padding: 9rem 0 3.5rem;
  background-color: var(--cream);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22,77,53,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gray-200);
}

.page-hero h1 {
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.1rem;
  max-width: 620px;
}

.breadcrumb {
  display: flex;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-bottom: 1.5rem;
}

.breadcrumb a {
  color: var(--green-muted);
}

.breadcrumb a:hover {
  color: var(--green-deep);
}

.breadcrumb .sep {
  color: var(--gray-400);
}

/* --- Service Cards --- */
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-deep), var(--brass));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-smooth);
}

.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(22,77,53,0.04);
  transform: translateY(-3px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--green-light) 0%, rgba(22,77,53,0.08) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--green-deep);
  border: 1px solid rgba(22,77,53,0.08);
  transition: all var(--transition-smooth);
}

.service-card:hover .service-card-icon {
  background: var(--green-deep);
  color: var(--brass-light);
  border-color: var(--green-deep);
}

.service-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.service-card p {
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  color: var(--text-light);
}

.service-card-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: all var(--transition);
}

.service-card-link:hover {
  color: var(--brass);
  gap: 0.6rem;
}

/* --- Trust Bar --- */
.trust-bar {
  background-color: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 1.25rem 0;
}

.trust-bar .container {
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: center;
  gap: 0.75rem 3rem;
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.01em;
}

.trust-bar-item svg {
  color: var(--green-deep);
  flex-shrink: 0;
  background: var(--green-light);
  border-radius: 50%;
  padding: 2px;
  width: 22px;
  height: 22px;
}

/* --- Feature Grid --- */
.feature-item {
  padding: 1.5rem 0;
}

.feature-item h4 {
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}

.feature-item p {
  font-size: 0.95rem;
  color: var(--text-light);
}

/* --- Testimonials --- */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 2rem;
  position: relative;
  transition: all var(--transition-smooth);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md), 0 0 0 1px var(--brass-faint);
  border-color: transparent;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: 'Libre Baskerville', serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--brass-faint);
  pointer-events: none;
}

.testimonial-stars {
  color: var(--brass);
  margin-bottom: 1rem;
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial-author {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--charcoal);
}

.testimonial-location {
  font-size: 0.82rem;
  color: var(--gray-400);
}

/* --- CTA Block --- */
.cta-block {
  background: linear-gradient(135deg, var(--green-deep) 0%, #103E28 60%, var(--green-dark) 100%);
  border-radius: var(--radius-xl);
  padding: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(198,167,90,0.15);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,0.04);
}

.cta-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.03) 1px, transparent 0);
  background-size: 24px 24px;
  pointer-events: none;
}

.cta-block h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-block p {
  color: rgba(255,255,255,0.8);
  margin: 0 auto 2rem;
  max-width: 520px;
}

.cta-block .btn {
  margin: 0 0.5rem;
}

.cta-inline {
  background-color: var(--cream);
  border-radius: var(--radius-md);
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-inline h3 {
  margin-bottom: 0.5rem;
}

.cta-inline p {
  font-size: 0.95rem;
  margin: 0;
}

/* --- Mid-Page CTA (Service Pages) --- */
.mid-cta {
  background-color: var(--cream);
  border-radius: var(--radius-md);
  padding: 2rem 2.5rem;
  margin: 2.5rem 0;
  text-align: center;
}

.mid-cta-heading {
  font-size: 1.15rem;
  margin: 0 0 0.35rem;
}

.mid-cta-sub {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 0 0 1.25rem;
}

.mid-cta-buttons {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .mid-cta {
    padding: 1.75rem 1.25rem;
  }

  .mid-cta-buttons {
    flex-direction: column;
  }

  .mid-cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}

/* --- FAQ --- */
.faq-item {
  border-bottom: 1px solid var(--gray-200);
  padding: 1.5rem 0;
}

.faq-item:first-child {
  border-top: 1px solid var(--gray-200);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 1rem;
}

.faq-question h4 {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--charcoal);
  transition: color var(--transition);
}

.faq-question:hover h4 {
  color: var(--green-deep);
}

.faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-smooth);
}

.faq-toggle svg {
  width: 14px;
  height: 14px;
  color: var(--green-deep);
  transition: transform var(--transition-smooth);
}

.faq-item.active .faq-toggle {
  background: linear-gradient(135deg, var(--green-deep), #18593A);
  box-shadow: var(--shadow-glow-primary);
}

.faq-item.active .faq-toggle svg {
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding-top: 1rem;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-light);
}

/* --- Forms --- */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text-primary);
  transition: border-color var(--transition);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--green-muted);
  box-shadow: 0 0 0 3px rgba(22,77,53,0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* --- Image Placeholders --- */
.img-placeholder {
  background: linear-gradient(135deg, var(--green-light) 0%, #DDE8E1 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-muted);
  font-size: 0.82rem;
  font-weight: 500;
  text-align: center;
  padding: 2rem;
  min-height: 300px;
  border: 1px solid rgba(22,77,53,0.08);
  position: relative;
  overflow: hidden;
}

.img-placeholder::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(22,77,53,0.06);
}

.img-placeholder::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(22,77,53,0.03);
}

/* --- Footer --- */
.site-footer {
  background-color: var(--charcoal);
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 0;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-deep), var(--brass), var(--green-deep));
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo-name {
  color: var(--white);
}

.site-footer .logo-img {
  filter: invert(1);
}

.footer-brand .logo-tagline {
  color: var(--gray-400);
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-top: 1rem;
  max-width: 300px;
}

.footer-heading {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-links a {
  display: block;
  padding: 0.3rem 0;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--brass-light);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  font-size: 0.92rem;
}

.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--brass);
}

.footer-contact-item a {
  color: rgba(255,255,255,0.75);
}

.footer-contact-item a:hover {
  color: var(--brass-light);
}

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* --- Utility --- */
.text-center { text-align: center; }
.text-center p { margin-left: auto; margin-right: auto; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

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

/* --- Service Page Content --- */
.service-content {
  max-width: 720px;
}

.service-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.service-content p {
  margin-bottom: 1rem;
}

.service-content ul {
  margin-bottom: 1.5rem;
  padding-left: 0;
}

.service-content ul li {
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 1rem;
  color: var(--text-secondary);
}

.service-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--green-deep);
}

.service-sidebar {
  position: sticky;
  top: 8rem;
}

.sidebar-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 2rem;
  margin-bottom: 1.5rem;
  border-left: 3px solid transparent;
  transition: border-color var(--transition);
}

.sidebar-card:hover {
  border-left-color: var(--brass);
}

.sidebar-card h4 {
  margin-bottom: 1rem;
}

.sidebar-card ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.92rem;
}

.sidebar-card ul li:last-child {
  border-bottom: none;
}

.sidebar-card ul li a {
  color: var(--text-secondary);
  display: block;
}

.sidebar-card ul li a:hover {
  color: var(--green-deep);
}

.sidebar-card ul li a.active {
  color: var(--green-deep);
  font-weight: 600;
}

/* --- Area Badge --- */
.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.area-badge {
  display: inline-flex;
  padding: 0.5rem 1.2rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition-smooth);
  text-decoration: none;
}

.area-badge:hover {
  border-color: var(--green-muted);
  color: var(--green-deep);
  background: var(--green-light);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

a.area-badge {
  cursor: pointer;
}

a.area-badge:hover {
  border-color: var(--brass);
  color: var(--green-deep);
}

/* --- Stat Row --- */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item .stat-number {
  font-family: 'Libre Baskerville', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--brass-light);
  line-height: 1;
  margin-bottom: 0.75rem;
  position: relative;
  display: inline-block;
}

.stat-item .stat-number::after {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--brass);
  margin: 0.5rem auto 0;
  border-radius: 2px;
  opacity: 0.5;
}

.stat-item .stat-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
}

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}

.contact-info-card {
  background: var(--green-deep);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  color: var(--white);
  height: fit-content;
}

.contact-info-card h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--brass-light);
}

.contact-detail h4 {
  color: var(--white);
  font-size: 0.92rem;
  margin-bottom: 0.25rem;
}

.contact-detail p {
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
}

.contact-detail a {
  color: rgba(255,255,255,0.85);
}

.contact-detail a:hover {
  color: var(--brass-light);
}

.contact-hours {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.contact-hours h4 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

.sidebar-card .hours-row {
  color: var(--text-muted);
}

.sidebar-card .contact-hours {
  border-top: 1px solid var(--gray-200);
}

/* --- Photo Break --- */
.photo-break {
  width: 100%;
  height: 320px;
  background-size: cover;
  background-position: center;
  background-color: var(--charcoal);
  position: relative;
}

.photo-break::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(26,26,26,0.08) 0%, rgba(26,26,26,0.15) 100%);
}

/* --- Feature Cards (green section) --- */
.feature-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: all var(--transition-smooth);
}

.feature-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.15);
}

.feature-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--brass-light);
}

.feature-card h4 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

/* --- About Page Facts Grid --- */
.about-photo {
  width: 100%;
  border-radius: var(--radius-lg);
  display: block;
}

.about-facts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.about-fact {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--cream);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
}

.about-fact svg {
  color: var(--green-deep);
  flex-shrink: 0;
}

.about-fact span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal);
}

/* --- Contact Form Card --- */
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.contact-form-card label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text-primary);
  transition: border-color var(--transition);
  box-sizing: border-box;
}

.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
  outline: none;
  border-color: var(--green-muted);
  box-shadow: 0 0 0 3px rgba(22,77,53,0.1);
}

.contact-form-card textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form-card .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-info-side {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* --- Trust Grid (contact page) --- */
.trust-grid {
  display: grid;
  gap: 2rem;
}

.trust-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.trust-item {
  text-align: center;
  padding: 2rem 1.5rem;
}

.trust-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-light) 0%, rgba(22,77,53,0.08) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  border: 1px solid rgba(22,77,53,0.08);
}

.trust-icon svg {
  width: 24px;
  height: 24px;
  color: var(--green-deep);
}

.trust-item h4 {
  margin-bottom: 0.5rem;
}

.trust-item p {
  font-size: 0.92rem;
  color: var(--text-light);
  max-width: 320px;
  margin: 0 auto;
}

/* --- Mobile-only elements (hidden on desktop) --- */
#mobile-nav-overlay {
  display: none;
}

/* --- Mobile Sticky CTA Bar --- */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(0,0,0,0.06);
  padding: 0.65rem 0.875rem;
  padding-bottom: calc(0.65rem + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -2px 24px rgba(0,0,0,0.08), 0 -1px 4px rgba(0,0,0,0.04);
  gap: 0.5rem;
}

.mobile-cta-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.8rem 0.5rem;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.15s ease;
}

.mobile-cta-bar .mobile-cta-call {
  background: var(--green-deep);
  color: var(--white);
}

.mobile-cta-bar .mobile-cta-call:active {
  background: var(--green-dark);
  transform: scale(0.97);
}

.mobile-cta-bar .mobile-cta-estimate {
  background: var(--brass);
  color: var(--white);
}

.mobile-cta-bar .mobile-cta-estimate:active {
  background: var(--brass-light);
  transform: scale(0.97);
}

.mobile-cta-bar .mobile-cta-text {
  background: var(--white);
  color: var(--green-deep);
  border: 2px solid var(--green-deep);
}

.mobile-cta-bar .mobile-cta-text:active {
  background: var(--green-light);
  transform: scale(0.97);
}

.mobile-cta-bar svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* --- Touch Feedback (global) --- */
@media (hover: none) and (pointer: coarse) {
  .btn:active {
    transform: scale(0.97) !important;
    opacity: 0.9;
  }
  
  .service-card:active {
    transform: scale(0.985);
    box-shadow: var(--shadow-sm);
  }
  
  .faq-question:active h4 {
    color: var(--green-deep);
  }
  
  .sidebar-card ul li a:active {
    color: var(--green-deep);
    background: var(--green-light);
  }

  .area-badge:active {
    border-color: var(--green-muted);
    color: var(--green-deep);
    background: var(--green-light);
  }
}

/* --- Responsive: Tablet --- */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  
  .stat-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- Responsive: Mobile --- */
@media (max-width: 768px) {

  /* === Spacing & Rhythm === */
  .section { padding: 3rem 0; }
  .section--sm { padding: 2.5rem 0; }
  .section--lg { padding: 3.5rem 0; }
  .container { padding: 0 1.25rem; }

  /* === Typography tuning === */
  h1 { font-size: 1.85rem; line-height: 1.18; }
  h2 { font-size: 1.5rem; line-height: 1.22; }
  h3 { font-size: 1.2rem; }
  p { font-size: 1rem; line-height: 1.65; }

  /* === Header === */
  .header-top { display: none; }

  .header-main { padding: 0.65rem 0; }

  .logo-mark { width: 36px; height: 36px; font-size: 0.95rem; }
  .logo-img { width: 36px; height: 36px; }
  .logo-name { font-size: 1rem; }
  .logo-tagline { font-size: 0.65rem; }

  .header-cta .btn { display: none; }
  .header-cta .header-phone { display: none; }

  .mobile-toggle {
    display: flex;
    z-index: 1001;
  }

  /* === Mobile Navigation Dropdown (compact panel) === */
  .nav-main {
    display: none;
  }

  #mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    z-index: 9999;
    flex-direction: column;
    padding: 3.75rem 1.25rem 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    border-bottom: 1px solid var(--gray-200);
  }

  #mobile-nav-overlay.open {
    display: flex;
  }

  #mobile-nav-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    line-height: 1;
    background: var(--gray-100);
    border: none;
    border-radius: 50%;
    color: var(--charcoal);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #mobile-nav-links {
    display: flex;
    flex-direction: column;
  }

  #mobile-nav-links a {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 0.6rem 0.25rem;
    border-bottom: 1px solid var(--gray-100);
    text-decoration: none;
    display: flex;
    align-items: center;
  }

  #mobile-nav-links a:first-child {
    border-top: 1px solid var(--gray-100);
  }

  #mobile-nav-links a:active {
    color: var(--green-deep);
    background: var(--green-light);
  }

  #mobile-nav-cta {
    padding-top: 0.75rem;
  }

  .mobile-close {
    display: none;
  }

  /* Mobile dropdown - hide desktop hover behavior */
  .nav-dropdown-menu {
    display: none;
  }

  /* === Hero === */
  .hero {
    padding: 8rem 0 3rem;
  }

  .hero p {
    font-size: 1.02rem;
    margin-bottom: 1.5rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  .hero-trust {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .hero-trust-item {
    gap: 0.75rem;
    justify-content: flex-start;
  }

  .hero-trust-icon {
    width: 32px;
    height: 32px;
  }

  .hero-trust-icon svg {
    width: 16px;
    height: 16px;
  }

  .hero-trust-text {
    font-size: 0.85rem;
  }

  /* === Photo Break === */
  .photo-break {
    height: 200px;
  }

  /* === Interior Page Hero === */
  .page-hero {
    padding: 5.5rem 0 2rem;
  }

  .page-hero h1 {
    margin-bottom: 0.75rem;
  }

  .page-hero p {
    font-size: 1rem;
  }

  .breadcrumb {
    font-size: 0.8rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
  }

  /* === Trust Bar === */
  .trust-bar {
    padding: 1rem 0;
  }

  .trust-bar::-webkit-scrollbar { display: none; }

  .trust-bar .container {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    justify-content: start;
    padding: 0 1.25rem;
  }

  .trust-bar-item {
    font-size: 0.82rem;
    white-space: nowrap;
  }

  /* === Grids === */
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .grid-3 {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .grid-4 {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* === Service Cards === */
  .service-card {
    padding: 1.5rem;
  }

  .service-card h3 {
    font-size: 1.1rem;
  }

  .service-card p {
    font-size: 0.92rem;
  }

  /* === Service Page Content === */
  .service-content {
    max-width: 100%;
  }

  .service-content h2 {
    margin-top: 2rem;
    font-size: 1.35rem;
  }

  .service-content ul li {
    font-size: 0.95rem;
    padding: 0.5rem 0;
    padding-left: 1.25rem;
  }

  /* === Sidebar === */
  .service-sidebar {
    position: static;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  /* Promote CTA card to top on mobile via order */
  .service-sidebar .sidebar-card:first-child {
    order: -1;
  }

  .sidebar-card {
    padding: 1.5rem;
    margin-bottom: 0;
  }

  .sidebar-card ul li {
    padding: 0.6rem 0;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  /* === CTA Block === */
  .cta-block {
    padding: 2.5rem 1.5rem;
    border-radius: var(--radius-md);
  }

  .cta-block h2 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
  }

  .cta-block p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .cta-block .btn {
    margin: 0;
    width: 100%;
    margin-bottom: 0.625rem;
    padding: 1rem;
  }

  .cta-block .btn:last-child {
    margin-bottom: 0;
  }

  .cta-block > div:last-child {
    display: flex;
    flex-direction: column;
  }

  .cta-inline {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
    gap: 1.25rem;
  }

  /* === FAQ === */
  .faq-item {
    padding: 1.25rem 0;
  }

  .faq-question {
    min-height: 48px;
  }

  .faq-question h4 {
    font-size: 0.98rem;
    line-height: 1.35;
  }

  .faq-toggle {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
  }

  .faq-answer p {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  /* === Area Badges === */
  .area-list {
    gap: 0.5rem;
  }

  .area-badge {
    padding: 0.45rem 1rem;
    font-size: 0.82rem;
  }

  /* === Trust Grid === */
  .trust-grid--3 {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .trust-item {
    padding: 1.5rem 1rem;
    border-bottom: 1px solid var(--gray-200);
  }

  .trust-item:last-child {
    border-bottom: none;
  }

  .trust-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
  }

  /* === Testimonials === */
  .testimonial-card {
    padding: 1.5rem;
  }

  .testimonial-text {
    font-size: 0.98rem;
  }

  /* === Stats === */
  .stat-row {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }

  .stat-item .stat-number {
    font-size: 2rem;
  }

  .stat-item .stat-desc {
    font-size: 0.82rem;
  }

  /* === Hero centered === */
  .hero-content--centered {
    text-align: left;
  }

  .hero-content--centered .hero-actions {
    justify-content: flex-start;
  }

  .hero-content--centered .hero-trust {
    justify-content: flex-start;
  }

  .hero-content--centered .section-label {
    justify-content: flex-start;
  }

  /* === Feature Cards === */
  .feature-card {
    padding: 1.5rem;
  }

  /* === About Facts Grid === */
  .about-facts-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .about-fact {
    padding: 0.85rem 1rem;
  }

  /* === Image Placeholders === */
  .img-placeholder {
    min-height: 200px;
    padding: 1.5rem;
  }

  /* === Contact Page === */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-form-card {
    padding: 1.25rem;
    border: none;
    background: transparent;
  }

  .contact-form-card input,
  .contact-form-card select,
  .contact-form-card textarea {
    font-size: 16px; /* Prevents iOS zoom */
    padding: 0.9rem 1rem;
    border-radius: var(--radius-md);
  }

  .contact-form-card .form-row {
    grid-template-columns: 1fr;
  }

  .contact-info-side {
    gap: 1rem;
  }

  .contact-hours .hours-row {
    padding: 0.6rem 0;
    font-size: 0.9rem;
  }

  /* === Forms (generic) === */
  .form-input,
  .form-select,
  .form-textarea {
    font-size: 16px; /* Prevents iOS zoom */
    padding: 0.9rem 1rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* === Footer === */
  .site-footer {
    padding: 3rem 0 0;
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 0.5rem;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .footer-heading {
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
  }

  .footer-links a {
    padding: 0.4rem 0;
    min-height: 40px;
    display: flex;
    align-items: center;
  }

  .footer-contact-item {
    margin-bottom: 0.9rem;
    min-height: 40px;
    align-items: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
    padding: 1.25rem 0;
  }

  /* === Buttons === */
  .btn--lg {
    padding: 1rem 2rem;
    font-size: 0.98rem;
  }

  .btn--sm {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }

  /* === Mobile Sticky CTA === */
  .mobile-cta-bar {
    display: flex;
  }

  /* Add bottom padding to body so content isn't hidden behind sticky bar */
  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }

  /* Hide CTA blocks' phone buttons since we have sticky bar */
  .site-footer {
    margin-bottom: 0;
  }
}

/* --- Responsive: Small phones (375px and below) --- */
@media (max-width: 400px) {
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.35rem; }
  
  .hero { padding: 8rem 0 2.5rem; }
  .page-hero { padding: 5rem 0 1.75rem; }
  
  .container { padding: 0 1rem; }
  
  .cta-block { padding: 2rem 1.25rem; }
  .cta-block h2 { font-size: 1.25rem; }

  .stat-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .area-badge {
    font-size: 0.78rem;
    padding: 0.4rem 0.85rem;
  }

  .mobile-cta-bar a {
    font-size: 0.88rem;
    padding: 0.75rem 0.75rem;
  }
}

/* --- Animations --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children within fade-in grids */
.fade-in > .service-card,
.fade-in > .testimonial-card,
.fade-in > .stat-item,
.fade-in > .trust-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible > .service-card,
.fade-in.visible > .testimonial-card,
.fade-in.visible > .stat-item,
.fade-in.visible > .trust-item {
  opacity: 1;
  transform: translateY(0);
}

.fade-in.visible > :nth-child(1) { transition-delay: 0s; }
.fade-in.visible > :nth-child(2) { transition-delay: 0.1s; }
.fade-in.visible > :nth-child(3) { transition-delay: 0.2s; }
.fade-in.visible > :nth-child(4) { transition-delay: 0.3s; }
.fade-in.visible > :nth-child(5) { transition-delay: 0.4s; }
.fade-in.visible > :nth-child(6) { transition-delay: 0.5s; }

/* --- Seasonal Banner --- */
.seasonal-banner {
  background: linear-gradient(135deg, #164D35 0%, #0F3725 100%);
  color: var(--white);
  padding: 0.65rem 0;
  font-size: 0.88rem;
  position: relative;
  overflow: hidden;
}

.seasonal-banner .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.seasonal-banner-icon {
  font-size: 1.1rem;
}

.seasonal-banner-text {
  color: rgba(255,255,255,0.92);
}

.seasonal-banner-text strong {
  color: var(--white);
  font-weight: 700;
}

.seasonal-banner-cta {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  transition: background 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.seasonal-banner-cta:hover {
  background: rgba(255,255,255,0.25);
}

@media (max-width: 768px) {
  .seasonal-banner {
    padding: 0.45rem 0;
    font-size: 0.75rem;
  }

  .seasonal-banner .container {
    gap: 0.35rem;
    flex-wrap: nowrap;
  }

  .seasonal-banner-icon {
    display: none;
  }

  .seasonal-banner-text {
    flex: 1;
    min-width: 0;
  }

  .seasonal-banner-cta {
    font-size: 0.72rem;
    padding: 0.2rem 0.6rem;
    flex-shrink: 0;
  }

  .hero {
    background-position: 70% 40%;
  }
}

/* --- Form Success State --- */
.form-success {
  text-align: center;
  padding: 2.5rem 1.5rem;
}

.form-success svg {
  margin: 0 auto;
}

.form-success h3 {
  font-size: 1.3rem;
}

.form-success p {
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* --- Google Review Badge --- */
.google-review-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  padding: 0.6rem 1.25rem 0.6rem 0.85rem;
  margin-top: 1rem;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-xs);
}

.google-review-badge:hover {
  border-color: var(--brass);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.google-review-badge .google-g {
  flex-shrink: 0;
}

.google-review-badge-info {
  text-align: left;
}

.google-review-badge-stars {
  color: #F4B400;
  font-size: 0.92rem;
  line-height: 1.1;
  letter-spacing: 1px;
}

.google-review-badge-stars strong {
  color: var(--text-primary);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  margin-left: 0.25rem;
}

.google-review-badge-count {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-family: 'DM Sans', sans-serif;
  margin-top: 0.1rem;
}

.google-review-badge-arrow {
  color: var(--gray-400);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.google-review-badge:hover .google-review-badge-arrow {
  transform: translateX(2px);
  color: var(--brass);
}

@media (max-width: 768px) {
  .google-review-badge {
    padding: 0.5rem 1rem 0.5rem 0.7rem;
    gap: 0.5rem;
  }

  .google-review-badge-stars {
    font-size: 0.85rem;
  }

  .google-review-badge-count {
    font-size: 0.72rem;
  }
}

/* --- Scroll CTA Bar --- */
.scroll-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background: var(--green-deep);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.15);
  padding: 1rem 0;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-cta-bar.visible {
  transform: translateY(0);
}

.scroll-cta-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.scroll-cta-text {
  color: var(--white);
  font-family: 'Libre Baskerville', serif;
  font-size: 1.05rem;
  font-weight: 700;
  flex: 1;
}

.scroll-cta-actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.scroll-cta-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0 0.25rem;
  line-height: 1;
  transition: color 0.2s ease;
  flex-shrink: 0;
}

.scroll-cta-close:hover {
  color: var(--white);
}

/* --- Print --- */
@media print {
  .site-header,
  .site-footer,
  .cta-block,
  .mobile-toggle { display: none; }
  
  body { font-size: 12pt; }
}
