/* =====================================================
   THE COLORADO HANDYMAN — Master Stylesheet
   Toyota Tundra Army Green (6V7) Inspired Palette
   ===================================================== */

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

/* ── CSS Variables ─────────────────────────────────── */
:root {
  /* Toyota Army Green 6V7 inspired palette */
  --green-950: #0F1C08;
  --green-900: #182B0E;
  --green-800: #223B14;
  --green-700: #2E4E1A;   /* Primary brand green */
  --green-600: #3A6221;
  --green-500: #4B7B2C;
  --green-400: #659640;
  --green-200: #BDD4A8;
  --green-100: #E5EFD9;
  --green-50:  #F3F8EE;

  /* Warm gold accent — Garden of the Gods sandstone */
  --gold-800: #7A4E10;
  --gold-700: #9A641A;
  --gold-500: #B8772A;   /* Primary accent */
  --gold-400: #CC8D3A;
  --gold-200: #E8C48A;
  --gold-100: #F6E9D0;

  /* Neutrals */
  --white:      #FFFFFF;
  --off-white:  #F8F5F0;
  --stone-100:  #EDE8E0;
  --stone-200:  #DDD7CC;
  --stone-400:  #B8AF9F;
  --stone-600:  #7A7268;
  --stone-800:  #3A3530;
  --ink:        #1C2B10;

  /* Semantic */
  --bg-page:    var(--off-white);
  --bg-section: var(--green-50);
  --text-main:  var(--ink);
  --text-mid:   #4A5C3C;
  --text-muted: #6B7D5E;
  --border:     var(--stone-200);

  /* Sizing */
  --max-w: 1200px;
  --radius: 4px;
  --radius-lg: 8px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(30,60,15,0.10);
  --shadow-md: 0 4px 16px rgba(30,60,15,0.12);
  --shadow-lg: 0 8px 32px rgba(30,60,15,0.16);
  --shadow-xl: 0 16px 48px rgba(30,60,15,0.20);
}

/* ── Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-main);
  background: var(--bg-page);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ────────────────────────────────────── */
h1,h2,h3,h4,h5 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  color: var(--green-900);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }
p  { color: var(--text-mid); font-size: 1rem; }

.mono { font-family: 'DM Mono', monospace; }
.label {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-500);
  font-weight: 500;
}

/* ── Layout ────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) { .container { padding: 0 2rem; } }
@media (min-width: 1200px) { .container { padding: 0 2.5rem; } }

.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-dark { background: var(--green-800); }
.section-green { background: var(--green-700); }
.section-stone { background: var(--bg-section); }
.section-white { background: var(--white); }

.section-header { margin-bottom: 3rem; }
.section-header .label { display: block; margin-bottom: 0.75rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { max-width: 600px; font-size: 1.1rem; }
.section-header.centered { text-align: center; }
.section-header.centered p { margin: 0 auto; }
.section-header.light h2,
.section-header.light h3 { color: var(--white); }
.section-header.light p { color: var(--green-200); }
.section-header.light .label { color: var(--gold-400); }

/* ── Buttons ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold-500);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(184,119,42,0.35);
}
.btn-primary:hover {
  background: var(--gold-700);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(184,119,42,0.40);
}
.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.btn-outline-dark {
  border: 2px solid var(--green-700);
  color: var(--green-700);
}
.btn-outline-dark:hover { background: var(--green-700); color: var(--white); }
.btn-sm { padding: 0.6rem 1.2rem; font-size: 0.875rem; }
.btn-lg { padding: 1rem 2.25rem; font-size: 1.05rem; }

/* ── Cards ─────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.card-body { padding: 1.5rem; }

/* ── Badges ────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
}
.badge-green { background: var(--green-100); color: var(--green-700); }
.badge-gold { background: var(--gold-100); color: var(--gold-700); }

/* ── Trust Bar (top of page) ───────────────────────── */
.trust-bar {
  background: var(--green-950);
  color: var(--green-200);
  padding: 0.55rem 0;
  font-size: 0.8rem;
  font-family: 'DM Mono', monospace;
}
.trust-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.trust-bar a { color: var(--gold-400); text-decoration: none; }
.trust-bar a:hover { color: var(--gold-200); }
.trust-bar-left { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.trust-bar-item { display: flex; align-items: center; gap: 0.4rem; }

/* ── Header / Navigation ───────────────────────────── */
.site-header {
  background: var(--green-700);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(0,0,0,0.20);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo { display: flex; align-items: center; gap: 0.75rem; }
.logo-icon {
  width: 56px;
  height: 56px;
  background: transparent;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: visible;
}
.logo-icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.logo-icon svg { width: 24px; height: 24px; fill: white; }

/* Footer logo slightly smaller */
.site-footer .logo-icon {
  width: 48px;
  height: 48px;
}
.site-footer .logo-icon img {
  width: 48px;
  height: 48px;
}
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}
.logo-tagline {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-200);
}

.main-nav { display: flex; align-items: center; gap: 0.25rem; }
.nav-link {
  color: var(--green-100);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.8rem;
  border-radius: var(--radius);
  transition: all 0.2s;
  position: relative;
}
.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.8rem;
  right: 0.8rem;
  height: 2px;
  background: var(--gold-500);
  border-radius: 2px;
}

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { display: flex; align-items: center; gap: 0.3rem; }
.nav-dropdown-toggle::after {
  content: '▾';
  font-size: 0.7rem;
  color: var(--green-200);
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  min-width: 220px;
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: all 0.2s ease;
  z-index: 200;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-item {
  display: block;
  padding: 0.6rem 0.85rem;
  color: var(--text-main);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: all 0.15s;
}
.dropdown-item:hover { background: var(--green-50); color: var(--green-700); }

.nav-cta {
  background: var(--gold-500);
  color: var(--white) !important;
  padding: 0.6rem 1.25rem !important;
  border-radius: var(--radius) !important;
  font-weight: 700 !important;
  margin-left: 0.5rem;
}
.nav-cta:hover { background: var(--gold-700) !important; transform: none; }

/* Mobile nav */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--green-800);
  z-index: 999;
  padding: 2rem;
  overflow-y: auto;
  flex-direction: column;
}
.mobile-nav.open { display: flex; }
.mobile-nav-close {
  align-self: flex-end;
  color: var(--white);
  font-size: 1.5rem;
  padding: 0.5rem;
  margin-bottom: 2rem;
}
.mobile-nav-links { display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-nav-link {
  color: var(--green-100);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav-link:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.mobile-nav-group-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-400);
  padding: 1rem 1rem 0.5rem;
}
.mobile-nav-sub {
  padding-left: 1rem;
  font-size: 0.95rem;
}
.mobile-nav-cta {
  margin-top: 2rem;
  background: var(--gold-500);
  color: var(--white) !important;
  text-align: center;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 1rem;
}

@media (max-width: 900px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
}

/* ── Footer ────────────────────────────────────────── */
.site-footer {
  background: var(--green-900);
  color: var(--green-200);
  padding: 4rem 0 0;
}
.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);
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-logo { margin-bottom: 1rem; }
.footer-logo .logo-name { font-size: 1.3rem; }
.footer-logo .logo-tagline { color: var(--green-400); }
.footer-desc { color: var(--green-300, #9DB88A); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.5rem; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.9rem; margin-bottom: 0.6rem; color: var(--green-200); }
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--gold-400); }
.footer-col h4 {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-link { color: var(--green-200); font-size: 0.9rem; transition: color 0.2s; }
.footer-link:hover { color: var(--white); }
.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--green-400, #659640);
}
.footer-bottom a { color: var(--green-300, #9DB88A); }
.footer-badges { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.footer-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  font-family: 'DM Mono', monospace;
  color: var(--green-200);
}

/* ── Hero ──────────────────────────────────────────── */
.hero {
  background: var(--green-800);
  position: relative;
  overflow: hidden;
  padding: 5rem 0 6rem;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 70% 50%, rgba(184,119,42,0.06) 0%, transparent 60%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 39px,
      rgba(255,255,255,0.018) 39px,
      rgba(255,255,255,0.018) 40px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 39px,
      rgba(255,255,255,0.018) 39px,
      rgba(255,255,255,0.018) 40px
    );
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) { .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-200);
  margin-bottom: 1.5rem;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--gold-400);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 span { color: var(--gold-400); font-style: italic; }
.hero-sub { font-size: 1.1rem; color: var(--green-200); line-height: 1.75; margin-bottom: 2rem; max-width: 520px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-bottom: 2.5rem; }
.hero-trust-item { display: flex; align-items: center; gap: 0.5rem; font-family: 'DM Mono', monospace; font-size: 0.8rem; color: var(--green-200); }
.hero-trust-item svg { color: var(--gold-400); width: 16px; height: 16px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-image { position: relative; }
.hero-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}
.hero-stat-card {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.hero-stat-icon {
  width: 44px; height: 44px;
  background: var(--gold-100);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-stat-icon svg { color: var(--gold-600, #9A6419); width: 22px; height: 22px; }
.hero-stat-value { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--green-900); line-height: 1; }
.hero-stat-label { font-family: 'DM Mono', monospace; font-size: 0.68rem; color: var(--stone-600); margin-top: 0.2rem; text-transform: uppercase; letter-spacing: 0.08em; }

/* ── Services Grid ─────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}
.service-card {
  display: flex;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
}
.service-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
  border-color: var(--green-200);
}
.service-card-img {
  width: 120px;
  flex-shrink: 0;
  object-fit: cover;
}
.service-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.service-card-icon {
  width: 36px; height: 36px;
  background: var(--green-50);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.75rem;
}
.service-card-icon svg { width: 18px; height: 18px; color: var(--green-700); }
.service-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-900);
  margin-bottom: 0.4rem;
  line-height: 1.25;
}
.service-card-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.55; flex: 1; }
.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.85rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--stone-100, #F0EBE3);
}
.service-card-price { font-family: 'DM Mono', monospace; font-size: 0.75rem; font-weight: 600; color: var(--green-700); }
.service-card-link { font-size: 0.8rem; font-weight: 600; color: var(--gold-500); display: flex; align-items: center; gap: 0.3rem; }
.service-card-link:hover { color: var(--gold-700); }

/* ── Stats ─────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-item {
  padding: 2.5rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.stat-item:nth-child(4n) { border-right: none; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold-400);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label { font-size: 0.85rem; color: var(--green-200); font-weight: 500; }

/* ── Testimonials ──────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.testimonial-stars { color: var(--gold-500); font-size: 0.95rem; margin-bottom: 1rem; }
.testimonial-text { font-size: 0.95rem; color: var(--text-mid); line-height: 1.7; font-style: italic; margin-bottom: 1.25rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 42px; height: 42px;
  background: var(--green-100);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--green-700);
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 0.9rem; color: var(--green-900); }
.testimonial-location { font-size: 0.78rem; color: var(--text-muted); }
.testimonial-service {
  display: inline-block;
  margin-top: 0.35rem;
  font-size: 0.72rem;
  font-family: 'DM Mono', monospace;
  color: var(--gold-600, #9A6419);
  background: var(--gold-100);
  padding: 0.2rem 0.5rem;
  border-radius: 100px;
}

/* ── Service Areas Grid ────────────────────────────── */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}
.area-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: all 0.25s;
}
.area-card:hover { background: rgba(255,255,255,0.12); border-color: var(--gold-400); }
.area-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.35rem;
}
.area-desc { font-size: 0.82rem; color: var(--green-200); line-height: 1.55; margin-bottom: 1rem; }
.area-link { font-size: 0.8rem; font-weight: 600; color: var(--gold-400); display: flex; align-items: center; gap: 0.3rem; }

/* ── FAQ ───────────────────────────────────────────── */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 0.75rem;
  background: var(--white);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--green-900);
  transition: all 0.2s;
  gap: 1rem;
}
.faq-question:hover { background: var(--green-50); color: var(--green-700); }
.faq-icon {
  width: 24px; height: 24px;
  border: 2px solid var(--green-200);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
  font-size: 0.8rem;
  color: var(--green-700);
}
.faq-item.open .faq-icon { background: var(--green-700); border-color: var(--green-700); color: white; transform: rotate(45deg); }
.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.35s ease;
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.75;
}
.faq-item.open .faq-answer {
  padding: 0 1.5rem 1.5rem;
  max-height: 1000px;
}

/* ── Blog ──────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s;
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.blog-card-img { height: 200px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body { padding: 1.5rem; }
.blog-card-cat {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-600, #9A6419);
  margin-bottom: 0.6rem;
}
.blog-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-900);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
.blog-card-excerpt { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1rem; }
.blog-card-meta { display: flex; align-items: center; justify-content: space-between; font-size: 0.78rem; color: var(--text-muted); }
.blog-card-read { color: var(--gold-500); font-weight: 600; display: flex; align-items: center; gap: 0.3rem; }
.blog-card-read:hover { color: var(--gold-700); }

/* ── CTA Banner ────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-700) 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(184,119,42,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p { color: var(--green-200); font-size: 1.1rem; margin-bottom: 2rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-primary { font-size: 1.05rem; padding: 1rem 2.5rem; }

/* ── Page Hero (inner pages) ───────────────────────── */
.page-hero {
  background: var(--green-800);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg, transparent, transparent 39px,
    rgba(255,255,255,0.015) 39px, rgba(255,255,255,0.015) 40px
  ), repeating-linear-gradient(
    90deg, transparent, transparent 39px,
    rgba(255,255,255,0.015) 39px, rgba(255,255,255,0.015) 40px
  );
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .label { display: block; margin-bottom: 0.75rem; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: var(--green-200); font-size: 1.1rem; max-width: 680px; margin-bottom: 1.5rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--green-300, #9DB88A);
  margin-bottom: 1.5rem;
  font-family: 'DM Mono', monospace;
}
.breadcrumb a { color: var(--green-300, #9DB88A); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { color: var(--green-500); }

/* ── Prose (blog/article content) ─────────────────── */
.prose h2, .prose h3, .prose h4 { margin-top: 2.5rem; margin-bottom: 1rem; }
.prose p { margin-bottom: 1.25rem; color: var(--text-mid); line-height: 1.8; }
.prose ul, .prose ol { margin-bottom: 1.25rem; padding-left: 1.5rem; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { color: var(--text-mid); margin-bottom: 0.4rem; line-height: 1.75; }
.prose strong { color: var(--green-900); }
.prose a { color: var(--green-700); text-decoration: underline; }
.prose a:hover { color: var(--gold-600, #9A6419); }
.prose blockquote {
  border-left: 4px solid var(--gold-500);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--gold-100);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  font-style: italic;
}
.callout-pro-tip, .callout-warning {
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  margin: 1.5rem 0;
  font-size: 0.95rem;
}
.callout-pro-tip {
  background: var(--green-50);
  border-left: 4px solid var(--green-600);
}
.callout-warning {
  background: var(--gold-100);
  border-left: 4px solid var(--gold-500);
}

/* ── Forms ─────────────────────────────────────────── */
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--green-900); margin-bottom: 0.4rem; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text-main);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--green-700);
  box-shadow: 0 0 0 3px rgba(46,78,26,0.1);
}
.form-textarea { resize: vertical; min-height: 120px; }

/* ── Utilities ─────────────────────────────────────── */
.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-gold { color: var(--gold-500); }
.text-green { color: var(--green-700); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
@media (max-width: 768px) { .grid-2 { grid-template-columns: 1fr; } }
.hidden { display: none; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── Mobile CTA Bar ────────────────────────────────── */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--green-900);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 0.75rem 1rem;
  z-index: 90;
  gap: 0.75rem;
}
.mobile-cta-bar a { flex: 1; text-align: center; padding: 0.7rem; border-radius: var(--radius); font-weight: 700; font-size: 0.9rem; }
.mobile-cta-call { background: var(--gold-500); color: white; }
.mobile-cta-quote { background: transparent; border: 1.5px solid rgba(255,255,255,0.3); color: white; }
@media (max-width: 768px) { .mobile-cta-bar { display: flex; } body { padding-bottom: 70px; } }

/* ── Animations ────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive tweaks ─────────────────────────────── */
@media (max-width: 560px) {
  .hero { padding: 3rem 0 4rem; }
  .section { padding: 3.5rem 0; }
  .hero-image { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 1.5rem; }
  .stat-number { font-size: 2.2rem; }
}

/* ── Article Layout ─────────────────────────────────── */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 900px) {
  .article-layout { grid-template-columns: 1fr; }
}

/* ── Article Sidebar ────────────────────────────────── */
.article-sidebar {
  position: sticky;
  top: 100px;
}
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.sidebar-card h4 {
  color: var(--green-900);
  margin-bottom: 0.75rem;
  font-size: 1rem;
}
.sidebar-card nav a,
.sidebar-card .toc-link {
  display: block;
  font-size: 0.85rem;
  color: var(--text-mid);
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--stone-100, #F0EBE3);
  text-decoration: none;
  line-height: 1.4;
}
.sidebar-card nav a:hover,
.sidebar-card .toc-link:hover { color: var(--green-700); }
.sidebar-card nav a:last-child,
.sidebar-card .toc-link:last-child { border-bottom: none; }

/* Sidebar estimate card buttons */
.sidebar-card .btn {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 0.75rem;
  box-sizing: border-box;
}
.sidebar-card .btn:last-child { margin-bottom: 0; }

/* ── Article Meta ───────────────────────────────────── */
.article-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.article-meta-item {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-family: 'DM Mono', monospace;
}

/* ── TOC from Hugo ──────────────────────────────────── */
#TableOfContents { margin: 0; padding: 0; }
#TableOfContents ul { list-style: none; margin: 0; padding: 0; }
#TableOfContents ul li a {
  display: block;
  font-size: 0.85rem;
  color: var(--text-mid);
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--stone-100, #F0EBE3);
  text-decoration: none;
  line-height: 1.4;
}
#TableOfContents ul li a:hover { color: var(--green-700); }
#TableOfContents ul li:last-child a { border-bottom: none; }
#TableOfContents ul ul { padding-left: 0.75rem; }

/* ── Article CTA block ──────────────────────────────── */
.article-cta {
  margin-top: 2.5rem;
  padding: 2rem;
  background: var(--green-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--green-200);
}
.article-cta h4 {
  color: var(--green-900);
  margin-bottom: 0.5rem;
}
.article-cta p {
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}
.article-cta .btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── Quick Numbers sidebar card ─────────────────────── */
.quick-numbers-card {
  background: var(--green-50);
  border: 1px solid var(--green-200);
}
.quick-numbers-card h4 { color: var(--green-800); }
.quick-number-row {
  font-size: 0.82rem;
  color: var(--text-mid);
  margin-bottom: 0.35rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--green-100);
}
.quick-number-row:last-child {
  margin-bottom: 0;
  border-bottom: none;
}

/* ── Photo Gallery Shortcode ─────────────────────────── */
.photo-gallery {
  margin: 2rem 0;
}
.photo-gallery-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-700);
  margin-bottom: 0.75rem;
}
.photo-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
@media (max-width: 640px) {
  .photo-gallery-grid { grid-template-columns: 1fr; }
}
.photo-gallery-item {
  cursor: zoom-in;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
  background: var(--stone-100, #F0EBE3);
}
.photo-gallery-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.photo-gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.photo-gallery-caption {
  font-size: 0.78rem;
  color: var(--text-mid);
  padding: 0.4rem 0.6rem 0.5rem;
  margin: 0;
  line-height: 1.3;
}

/* ── Lightbox ─────────────────────────────────────────── */
.tch-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  cursor: zoom-out;
}
.tch-lightbox img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}
.tch-lightbox-caption {
  color: rgba(255,255,255,0.75);
  font-size: 0.875rem;
  margin-top: 1rem;
  text-align: center;
}
.tch-lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.15s;
}
.tch-lightbox-close:hover { opacity: 1; }
