/* ============================================================
   JARAMILLO LANDSCAPE — styles.css
   ============================================================ */

/* --- Design Tokens --- */
:root {
  --color-primary:      #2D5016;
  --color-primary-dark: #1e3a0f;
  --color-accent:       #8B6914;
  --color-cta:          #E8891A;
  --color-cta-hover:    #d4780f;
  --color-bg-light:     #F5F0E8;
  --color-text:         #1A1A1A;
  --color-text-muted:   #6B6B6B;
  --color-border:       #D8D3C8;
  --color-placeholder:  #D5D2CB;
  --font-heading:       Georgia, 'Times New Roman', serif;
  --font-body:          system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ease-out:           cubic-bezier(0.23, 1, 0.32, 1);
  --radius:             8px;
  --radius-lg:          16px;
  --shadow:             0 2px 12px rgba(0,0,0,0.08);
  --shadow-lg:          0 8px 32px rgba(0,0,0,0.14);
  --container:          1200px;
  --nav-height:         120px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--color-text); line-height: 1.65; background: #fff; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font: inherit; }

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.25rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.625rem); }
h4 { font-size: 1.0625rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* --- Utilities --- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-alt { background: var(--color-bg-light); }
.text-center { text-align: center; }
.text-muted { color: var(--color-text-muted); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.875rem 1.875rem;
  border-radius: var(--radius);
  font-weight: 600; font-size: 1rem;
  transition: transform 160ms var(--ease-out), background-color 180ms, box-shadow 180ms;
  cursor: pointer; white-space: nowrap; border: 2px solid transparent;
}
.btn:active { transform: scale(0.97); }

.btn-primary { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.btn-primary:hover { background: var(--color-primary-dark); border-color: var(--color-primary-dark); box-shadow: var(--shadow); }

.btn-cta { background: var(--color-cta); color: #fff; border-color: var(--color-cta); }
.btn-cta:hover { background: var(--color-cta-hover); border-color: var(--color-cta-hover); box-shadow: var(--shadow); }

.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.75); }
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

.btn-outline-primary { background: transparent; color: var(--color-primary); border-color: var(--color-primary); }
.btn-outline-primary:hover { background: var(--color-primary); color: #fff; }

.btn-sm { padding: 0.625rem 1.25rem; font-size: 0.9rem; }
.btn-lg { padding: 1.125rem 2.5rem; font-size: 1.0625rem; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: var(--color-primary);
  transition: box-shadow 220ms;
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.3); }

.nav-container {
  max-width: var(--container); margin: 0 auto; padding: 0 1.5rem;
  height: var(--nav-height);
  display: flex; align-items: center; gap: 1.75rem; justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-heading); font-size: 1.3125rem; font-weight: 700;
  color: #fff; white-space: nowrap; flex-shrink: 0; letter-spacing: -0.01em;
}

.nav-links {
  display: flex; align-items: center; gap: 0.125rem;
}
.nav-links > li > a,
.nav-dropdown-toggle {
  padding: 0.5rem 0.8rem; color: rgba(255,255,255,0.88); font-size: 0.9375rem;
  font-weight: 500; border-radius: 6px;
  transition: background 140ms, color 140ms;
  display: flex; align-items: center; gap: 0.25rem;
}
.nav-links > li > a:hover,
.nav-dropdown-toggle:hover { background: rgba(255,255,255,0.13); color: #fff; }
.nav-links > li > a.active { background: rgba(255,255,255,0.16); color: #fff; }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown-arrow { font-size: 0.7rem; transition: transform 160ms var(--ease-out); margin-top: 1px; }
.has-dropdown.open .dropdown-arrow { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); min-width: 520px; padding: 0.875rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.25rem;
  opacity: 0; pointer-events: none;
  transition: opacity 150ms var(--ease-out), transform 150ms var(--ease-out);
}
.has-dropdown.open .dropdown {
  opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0);
}
.dropdown a {
  padding: 0.6rem 0.875rem; color: var(--color-text); font-size: 0.9rem;
  border-radius: 6px; display: block;
  transition: background 120ms, color 120ms;
}
.dropdown a:hover { background: var(--color-bg-light); color: var(--color-primary); font-weight: 500; }

/* Nav actions */
.nav-actions { display: flex; align-items: center; gap: 0.625rem; flex-shrink: 0; }
.nav-phone {
  color: rgba(255,255,255,0.88); font-weight: 600; font-size: 0.9rem;
  padding: 0.5rem 0.875rem;
  border: 1.5px solid rgba(255,255,255,0.35); border-radius: 6px;
  transition: background 140ms, border-color 140ms;
}
.nav-phone:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.65); }

/* Mobile-only nav extras (phone + CTA duplicated inside the mobile menu) */
.mobile-nav-extras { display: none; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span {
  display: block; width: 22px; height: 2px; background: #fff;
  border-radius: 2px; transition: transform 200ms, opacity 200ms;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   MOBILE NAV
   ============================================================ */
@media (max-width: 900px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; margin-left: auto; }

  .nav-links.open {
    display: flex; flex-direction: column; align-items: stretch;
    position: fixed; top: var(--nav-height); left: 0; right: 0;
    background: var(--color-primary); padding: 0.75rem 1.25rem 1.5rem;
    gap: 0.125rem; z-index: 199; box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    max-height: calc(100vh - var(--nav-height)); overflow-y: auto;
  }
  .nav-links.open > li > a,
  .nav-links.open .nav-dropdown-toggle {
    width: 100%; justify-content: space-between; padding: 0.7rem 0.875rem;
  }
  .nav-links.open .mobile-nav-extras {
    display: flex; flex-direction: column; gap: 0.625rem;
    padding-top: 0.875rem; margin-top: 0.25rem;
    border-top: 1px solid rgba(255,255,255,0.15);
  }
  .nav-links.open .mobile-nav-extras .btn,
  .nav-links.open .mobile-nav-extras .nav-phone {
    width: 100%; text-align: center; justify-content: center; border-radius: var(--radius);
  }
  .dropdown {
    position: static; transform: none; min-width: 100%;
    border-radius: var(--radius); box-shadow: none;
    background: rgba(255,255,255,0.07);
    grid-template-columns: 1fr; padding: 0;
    max-height: 0; overflow: hidden; opacity: 1; pointer-events: none;
    transition: max-height 220ms var(--ease-out);
  }
  .has-dropdown.open .dropdown { max-height: 600px; pointer-events: all; padding: 0.375rem; }
  .dropdown a { color: rgba(255,255,255,0.82); font-size: 0.875rem; }
  .dropdown a:hover { background: rgba(255,255,255,0.1); color: #fff; }
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb { background: var(--color-bg-light); border-bottom: 1px solid var(--color-border); padding: 0.75rem 0; }
.breadcrumb ol {
  max-width: var(--container); margin: 0 auto; padding: 0 1.5rem;
  display: flex; gap: 0.375rem; align-items: center;
  font-size: 0.85rem; color: var(--color-text-muted); flex-wrap: wrap;
  list-style: none;
}
.breadcrumb li + li::before { content: '›'; opacity: 0.6; }
.breadcrumb a { color: var(--color-primary); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb [aria-current="page"] { color: var(--color-text-muted); }

/* ============================================================
   SECTION HEADER
   ============================================================ */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { color: var(--color-primary); margin-bottom: 0.75rem; }
.section-header p { color: var(--color-text-muted); max-width: 620px; margin: 0 auto; font-size: 1.0625rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; background: var(--color-primary); color: #fff;
  text-align: center; padding: 6rem 1.5rem; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(150deg, rgba(45,80,22,0.97) 0%, rgba(20,45,8,0.92) 100%);
}
.hero-inner { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; }
.hero h1 { color: #fff; margin-bottom: 1.125rem; text-shadow: 0 1px 3px rgba(0,0,0,0.2); }
.hero p { font-size: 1.1875rem; opacity: 0.88; margin-bottom: 2.25rem; max-width: 640px; margin-left: auto; margin-right: auto; }
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-badge {
  display: inline-block; background: var(--color-cta); color: #fff;
  padding: 0.375rem 1.125rem; border-radius: 2rem;
  font-size: 0.875rem; font-weight: 700; margin-bottom: 1.25rem; letter-spacing: 0.02em;
}

/* Service hero (smaller) */
.hero-service { padding: 4rem 1.5rem; }
.service-timeframe-badge {
  display: inline-block; background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3); color: #fff;
  padding: 0.375rem 1rem; border-radius: 2rem;
  font-size: 0.85rem; font-weight: 600; margin-top: 1.125rem;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar { background: var(--color-primary-dark, #1e3a0f); color: #fff; padding: 2.75rem 1.5rem; }
.stats-grid {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; text-align: center;
}
.stat-number {
  font-family: var(--font-heading); font-size: 2.625rem; font-weight: 700;
  line-height: 1; color: var(--color-cta); margin-bottom: 0.375rem;
}
.stat-label { font-size: 0.9rem; opacity: 0.82; line-height: 1.35; }

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.375rem; margin-top: 3rem;
}
.service-card {
  background: #fff; border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: 2rem 1.75rem;
  display: flex; flex-direction: column;
  transition: transform 200ms var(--ease-out), box-shadow 200ms;
  cursor: pointer;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-icon { margin-bottom: 0.875rem; }
.service-card h3 { font-size: 1.0625rem; margin-bottom: 0.5rem; color: var(--color-primary); }
.service-card p { font-size: 0.9375rem; color: var(--color-text-muted); margin-bottom: 1.25rem; flex: 1; }
.learn-more { color: var(--color-cta); font-weight: 600; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 0.25rem; margin-top: auto; }
.learn-more:hover { text-decoration: underline; }

/* Services overview page (larger cards) */
.services-grid-lg { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.75rem; }
.service-card-lg { padding: 2.25rem; }
.service-card-lg p { font-size: 1rem; }

/* ============================================================
   ABOUT TEASER
   ============================================================ */
.about-teaser { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; }
.about-text h2 { color: var(--color-primary); margin-bottom: 1.25rem; }
.about-text p { color: var(--color-text-muted); margin-bottom: 1.125rem; }

/* ============================================================
   WHY TRUST US
   ============================================================ */
.trust-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 2rem; margin-top: 3rem;
}
.trust-card { display: flex; gap: 1.25rem; align-items: flex-start; }
.trust-icon { font-size: 2rem; flex-shrink: 0; width: 2.75rem; text-align: center; margin-top: 2px; }
.trust-card h4 { color: var(--color-primary); margin-bottom: 0.3rem; }
.trust-card p { font-size: 0.9375rem; color: var(--color-text-muted); margin: 0; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.accordion { margin-top: 1.5rem; }
.accordion-item {
  border: 1px solid var(--color-border); border-radius: var(--radius);
  margin-bottom: 0.5rem; overflow: hidden;
}
.accordion-trigger {
  width: 100%; text-align: left; padding: 1.25rem 1.5rem;
  background: #fff; display: flex; justify-content: space-between; align-items: center;
  font-size: 1rem; font-weight: 600; color: var(--color-text);
  transition: background 140ms; gap: 1rem;
}
.accordion-trigger:hover { background: var(--color-bg-light); }
.accordion-trigger[aria-expanded="true"] { background: var(--color-bg-light); color: var(--color-primary); }
.accordion-icon { font-size: 1.375rem; font-weight: 300; flex-shrink: 0; transition: transform 220ms var(--ease-out); line-height: 1; }
.accordion-trigger[aria-expanded="true"] .accordion-icon { transform: rotate(45deg); }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 260ms var(--ease-out); }
.accordion-content.open { max-height: 500px; }
.accordion-body { padding: 0.25rem 1.5rem 1.375rem; color: var(--color-text-muted); font-size: 0.9625rem; line-height: 1.7; }
.accordion-body a { color: var(--color-primary); text-decoration: underline; }
.accordion-body p:not(:last-child) { margin-bottom: 0.75rem; }

.faq-category { margin-bottom: 2.5rem; }
.faq-category-title {
  font-family: var(--font-heading); font-size: 1.1875rem; color: var(--color-primary);
  margin-bottom: 0.875rem; padding-bottom: 0.625rem;
  border-bottom: 2px solid var(--color-bg-light);
}

/* ============================================================
   CONTACT STRIP
   ============================================================ */
.contact-strip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; text-align: center; margin-top: 2.5rem; }
.contact-item-icon { font-size: 2.25rem; margin-bottom: 0.625rem; display: block; }
.contact-item h4 { color: var(--color-primary); margin-bottom: 0.375rem; }
.contact-item a { color: var(--color-cta); font-weight: 600; }
.contact-item a:hover { text-decoration: underline; }
.contact-item p { margin-bottom: 0.25rem; font-size: 0.9375rem; }
.contact-note { font-size: 0.85rem; color: var(--color-text-muted); margin-top: 0.25rem; }

/* ============================================================
   PROMO BANNER
   ============================================================ */
.promo-banner {
  background: var(--color-accent); color: #fff;
  text-align: center; padding: 1.375rem 1.5rem;
  font-size: 1.0625rem; font-weight: 600;
}
.promo-banner a { color: #fff; text-decoration: underline; margin-left: 0.5rem; }
.promo-banner a:hover { opacity: 0.85; }

/* ============================================================
   PHOTO PLACEHOLDERS
   ============================================================ */
.photo-placeholder {
  background: var(--color-placeholder);
  border: 2px dashed #b9b5ae; border-radius: var(--radius);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.5rem; padding: 2.5rem 1.5rem; text-align: center;
  color: var(--color-text-muted); min-height: 220px;
}
.photo-placeholder-icon { font-size: 2.25rem; opacity: 0.45; }
.photo-placeholder-label { font-weight: 700; font-size: 0.9rem; color: #5a5753; }
.photo-placeholder-dims { font-size: 0.8rem; opacity: 0.65; }
.photo-placeholder-hint { font-size: 0.8rem; font-style: italic; opacity: 0.55; }

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

/* ============================================================
   SERVICE PAGE SECTIONS
   ============================================================ */
.service-content-section { padding: 4rem 0; }
.service-content-section + .service-content-section { padding-top: 0; }
.service-content-section h2 { color: var(--color-primary); margin-bottom: 1.375rem; }
.service-content-section p { color: var(--color-text-muted); }

.included-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 0.625rem; margin-top: 1rem; }
.included-list li { display: flex; align-items: flex-start; gap: 0.625rem; font-size: 0.9625rem; line-height: 1.5; }
.included-list li::before { content: '✓'; color: var(--color-primary); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

.cost-list { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.cost-list li { display: flex; align-items: flex-start; gap: 0.625rem; font-size: 0.9625rem; color: var(--color-text-muted); }
.cost-list li::before { content: '•'; color: var(--color-accent); font-weight: 700; flex-shrink: 0; margin-top: 1px; font-size: 1.1rem; }

.process-steps { display: flex; flex-direction: column; gap: 1.375rem; margin-top: 1.5rem; }
.process-step { display: flex; gap: 1.375rem; align-items: flex-start; }
.step-number {
  background: var(--color-primary); color: #fff;
  width: 2.375rem; height: 2.375rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; flex-shrink: 0; font-size: 0.9rem;
}
.step-content h4 { color: var(--color-primary); margin-bottom: 0.25rem; }
.step-content p { color: var(--color-text-muted); font-size: 0.9375rem; margin: 0; }

.timeframe-box {
  background: var(--color-bg-light);
  border-left: 4px solid var(--color-primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.625rem 2rem; margin: 1.75rem 0;
}
.timeframe-box h3 { color: var(--color-primary); margin-bottom: 0.5rem; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.05em; }
.timeframe-value {
  font-size: 1.625rem; font-weight: 700; font-family: var(--font-heading);
  color: var(--color-accent); margin-bottom: 0.5rem;
}
.timeframe-box p { color: var(--color-text-muted); font-size: 0.9rem; margin: 0; }

.related-services { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1.25rem; }
.related-service-link {
  background: var(--color-bg-light); border: 1px solid var(--color-border);
  padding: 0.5rem 1.125rem; border-radius: 2rem;
  font-size: 0.9rem; color: var(--color-primary); font-weight: 500;
  transition: background 150ms, border-color 150ms, color 150ms;
}
.related-service-link:hover { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }

.service-cta-section {
  background: var(--color-primary); color: #fff;
  text-align: center; padding: 5.5rem 1.5rem;
}
.service-cta-section h2 { color: #fff; margin-bottom: 1rem; }
.service-cta-section p { opacity: 0.88; margin-bottom: 2.25rem; font-size: 1.125rem; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-note {
  background: var(--color-bg-light); border: 1px solid var(--color-border);
  border-radius: var(--radius); padding: 1rem 1.375rem;
  font-size: 0.9375rem; color: var(--color-text-muted); margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 0.625rem;
}
.gallery-filters {
  display: flex; gap: 0.5rem; flex-wrap: wrap; justify-content: center; margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 0.5rem 1.25rem; border-radius: 2rem; font-size: 0.9rem; font-weight: 500;
  border: 1.5px solid var(--color-border); color: var(--color-text); background: #fff;
  transition: background 140ms, border-color 140ms, color 140ms; cursor: pointer;
}
.filter-btn:hover, .filter-btn.active { background: var(--color-primary); border-color: var(--color-primary); color: #fff; }

.gallery-grid { columns: 3 260px; gap: 1rem; }
.gallery-item { break-inside: avoid; margin-bottom: 1rem; transition: opacity 220ms; border-radius: 8px; overflow: hidden; }
.gallery-item.hidden { display: none; }
.gallery-item img { width: 100%; height: auto; display: block; border-radius: 8px; }
.gallery-item .photo-placeholder { min-height: 200px; }
.gallery-cta { text-align: center; padding: 3rem 0 0; }
.gallery-cta p { color: var(--color-text-muted); margin-bottom: 1.25rem; font-size: 1.0625rem; }

/* ============================================================
   REVIEWS
   ============================================================ */
.rating-overview { text-align: center; padding: 3rem 0 2rem; }
.rating-stars { font-size: 2.25rem; color: #F5A623; margin-bottom: 0.625rem; line-height: 1; }
.rating-score { font-size: 3.25rem; font-weight: 700; font-family: var(--font-heading); color: var(--color-primary); line-height: 1; }
.rating-label { color: var(--color-text-muted); margin-top: 0.375rem; font-size: 1rem; }
.google-badge-placeholder {
  display: inline-block; border: 1.5px solid var(--color-border); border-radius: var(--radius);
  padding: 0.625rem 1.25rem; font-size: 0.85rem; color: var(--color-text-muted);
  margin-top: 1.25rem;
}

.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.review-card { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 1.75rem; }
.review-stars { color: #F5A623; font-size: 1rem; margin-bottom: 0.875rem; letter-spacing: 0.1em; }
.review-text { font-size: 0.9625rem; color: var(--color-text); margin-bottom: 1.125rem; font-style: italic; line-height: 1.65; }
.review-meta { font-size: 0.85rem; color: var(--color-text-muted); }
.review-name { font-weight: 700; color: var(--color-primary); display: block; margin-bottom: 0.125rem; }
.reviews-cta { text-align: center; padding: 3rem 0 0; }
.reviews-cta p { color: var(--color-text-muted); margin-bottom: 1.25rem; }

/* ============================================================
   FORMS
   ============================================================ */
.form-wrap { max-width: 680px; }
.form-grid-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem 1.5rem; }
.form-group { margin-bottom: 0; }
.form-group-full { grid-column: 1 / -1; }
.form-label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 0.4rem; color: var(--color-text); }
.form-label .req { color: var(--color-cta); margin-left: 2px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 0.8125rem 1rem;
  border: 1.5px solid var(--color-border); border-radius: var(--radius);
  font-size: 1rem; background: #fff; color: var(--color-text);
  transition: border-color 150ms, box-shadow 150ms;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(45,80,22,0.13);
}
.form-textarea { min-height: 130px; resize: vertical; }
.form-actions { margin-top: 1.75rem; display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.form-note { font-size: 0.875rem; color: var(--color-text-muted); }

.contact-layout { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; align-items: start; }
.contact-info-box { background: var(--color-bg-light); border-radius: var(--radius-lg); padding: 2.25rem; }
.contact-info-box h3 { color: var(--color-primary); margin-bottom: 1.75rem; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.375rem; }
.contact-info-item:last-of-type { margin-bottom: 0; }
.cii-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.cii-text strong { display: block; font-size: 0.875rem; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 0.25rem; }
.cii-text a { color: var(--color-cta); font-weight: 600; font-size: 1.0625rem; }
.cii-text a:hover { text-decoration: underline; }
.cii-text p { font-size: 1.0625rem; color: var(--color-text); margin: 0; }

.response-promise {
  display: flex; align-items: center; gap: 0.75rem;
  background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius);
  padding: 0.875rem 1.125rem; margin-top: 1.75rem;
  font-size: 0.9rem; font-weight: 600; color: var(--color-primary);
}

.maps-placeholder {
  background: var(--color-placeholder); border: 2px dashed #b9b5ae;
  border-radius: var(--radius); min-height: 220px;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-text-muted); font-size: 0.875rem; text-align: center; padding: 1.5rem;
  margin-top: 2rem;
}

/* What Happens Next */
.next-steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 2.5rem; }
.next-step { text-align: center; }
.next-step-num {
  width: 3.25rem; height: 3.25rem; background: var(--color-cta); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.375rem; font-weight: 700; font-family: var(--font-heading);
  margin: 0 auto 1rem;
}
.next-step h4 { color: var(--color-primary); margin-bottom: 0.375rem; }
.next-step p { font-size: 0.9375rem; color: var(--color-text-muted); margin: 0; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.75rem; margin-top: 2rem; }
.value-card { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 2rem; }
.value-card .value-icon { font-size: 2rem; margin-bottom: 0.875rem; display: block; }
.value-card h4 { color: var(--color-primary); margin-bottom: 0.5rem; }
.value-card p { font-size: 0.9375rem; color: var(--color-text-muted); margin: 0; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.team-card { text-align: center; }
.team-card .photo-placeholder { margin-bottom: 1rem; min-height: 240px; border-radius: var(--radius-lg); }
.team-card h4 { color: var(--color-primary); margin-bottom: 0.25rem; }
.team-card p { font-size: 0.9rem; color: var(--color-text-muted); margin: 0; }
.service-area-box {
  background: var(--color-bg-light); border-radius: var(--radius-lg); padding: 2.5rem;
  display: flex; gap: 2rem; align-items: center; flex-wrap: wrap;
}
.service-area-box h3 { color: var(--color-primary); margin-bottom: 0.625rem; }
.service-area-box p { color: var(--color-text-muted); margin: 0; }

/* ============================================================
   THANK YOU PAGE
   ============================================================ */
.thankyou-section {
  min-height: 65vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 5rem 1.5rem;
}
.thankyou-inner { max-width: 580px; }
.thankyou-icon { font-size: 5rem; margin-bottom: 1.5rem; display: block; }
.thankyou-inner h1 { color: var(--color-primary); margin-bottom: 1.125rem; }
.thankyou-inner p { color: var(--color-text-muted); margin-bottom: 2.25rem; font-size: 1.0625rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--color-primary); color: rgba(255,255,255,0.82); padding: 4.5rem 0 0; }
.footer-container {
  max-width: var(--container); margin: 0 auto; padding: 0 1.5rem;
  display: grid; grid-template-columns: 1.6fr 1fr 1.6fr; gap: 3rem; padding-bottom: 3.5rem;
}
.footer-col h3 {
  font-family: var(--font-heading); font-size: 1rem; color: #fff;
  margin-bottom: 1.125rem; padding-bottom: 0.625rem;
  border-bottom: 1px solid rgba(255,255,255,0.14); text-transform: uppercase; letter-spacing: 0.06em;
}
.footer-col p { font-size: 0.9rem; margin-bottom: 0.4rem; }
.footer-col a { color: rgba(255,255,255,0.72); font-size: 0.9rem; transition: color 120ms; }
.footer-col a:hover { color: #fff; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.375rem; }
.trust-badge-footer {
  display: inline-block; border: 1.5px solid rgba(255,255,255,0.28);
  color: rgba(255,255,255,0.8); padding: 0.375rem 0.875rem;
  border-radius: 2rem; font-size: 0.8rem; font-weight: 600; margin-top: 0.875rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.11);
  max-width: var(--container); margin: 0 auto; padding: 1.375rem 1.5rem;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.85rem; margin: 0; }
.discount-badge { background: var(--color-cta); color: #fff; padding: 0.375rem 1rem; border-radius: 2rem; font-size: 0.8rem; font-weight: 700; }

/* ============================================================
   NAV LOGO IMAGE
   ============================================================ */
.nav-logo {
  display: flex; align-items: center; flex-shrink: 0;
}
.nav-logo-img {
  height: 100px; width: auto;
  display: block;
  transition: transform 200ms var(--ease-out), opacity 200ms;
}
.nav-logo-img:hover { transform: scale(1.04); opacity: 0.92; }

/* ============================================================
   FOOTER LOGO
   ============================================================ */
.footer-logo-link { display: inline-block; margin-bottom: 0.875rem; }
.footer-logo-img  {
  height: 80px; width: auto; border-radius: 8px;
  display: block;
  transition: transform 200ms var(--ease-out), opacity 200ms;
}
.footer-logo-img:hover { transform: scale(1.03); opacity: 0.88; }

/* ============================================================
   ANIMATION KEYFRAMES
   ============================================================ */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0);    }
}
@keyframes heroFadeDown {
  from { opacity: 0; transform: translateY(-18px); }
  to   { opacity: 1; transform: translateY(0);     }
}
@keyframes heroBadgePop {
  0%   { opacity: 0; transform: scale(0.8) translateY(-12px); }
  60%  { transform: scale(1.06) translateY(0); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes statCountPop {
  0%   { opacity: 0; transform: scale(0.7); }
  65%  { transform: scale(1.08); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-7px); }
}
@keyframes shimmerSlide {
  0%   { background-position: -300% center; }
  100% { background-position: 300% center; }
}
@keyframes navLogoSlideIn {
  from { opacity: 0; transform: translateX(-14px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ============================================================
   HERO ENTRANCE ANIMATIONS
   ============================================================ */
.hero-badge {
  animation: heroBadgePop 0.5s var(--ease-out) both;
}
.hero-inner > h1 {
  animation: heroFadeUp 0.6s var(--ease-out) 0.14s both;
}
.hero-inner > p {
  animation: heroFadeUp 0.6s var(--ease-out) 0.26s both;
}
.hero-inner > .hero-ctas {
  animation: heroFadeUp 0.6s var(--ease-out) 0.4s both;
}
.service-timeframe-badge {
  animation: heroFadeUp 0.5s var(--ease-out) 0.5s both;
}
.nav-logo-img {
  animation: navLogoSlideIn 0.5s var(--ease-out) both;
}

/* CTA button shimmer pulse */
.btn-cta {
  background-image: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255,255,255,0.18) 50%,
    transparent 70%
  );
  background-size: 300% 100%;
}
.btn-cta:hover {
  animation: shimmerSlide 0.65s ease forwards;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
[data-animate] {
  opacity: 0; transform: translateY(22px);
  transition: opacity 520ms var(--ease-out), transform 520ms var(--ease-out);
}
[data-animate].visible { opacity: 1; transform: translateY(0); }

/* Stagger grid children */
[data-stagger] > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 450ms var(--ease-out), transform 450ms var(--ease-out);
}
[data-stagger].visible > *:nth-child(1)  { opacity: 1; transform: none; transition-delay:   0ms; }
[data-stagger].visible > *:nth-child(2)  { opacity: 1; transform: none; transition-delay:  70ms; }
[data-stagger].visible > *:nth-child(3)  { opacity: 1; transform: none; transition-delay: 140ms; }
[data-stagger].visible > *:nth-child(4)  { opacity: 1; transform: none; transition-delay: 210ms; }
[data-stagger].visible > *:nth-child(5)  { opacity: 1; transform: none; transition-delay: 280ms; }
[data-stagger].visible > *:nth-child(6)  { opacity: 1; transform: none; transition-delay: 350ms; }
[data-stagger].visible > *:nth-child(7)  { opacity: 1; transform: none; transition-delay: 420ms; }
[data-stagger].visible > *:nth-child(8)  { opacity: 1; transform: none; transition-delay: 490ms; }
[data-stagger].visible > *:nth-child(n+9) { opacity: 1; transform: none; transition-delay: 560ms; }

/* Float animation for decorative elements */
.stat-number { animation: statCountPop 0.6s var(--ease-out) both; animation-play-state: paused; }
.stat-number.counted { animation-play-state: running; }

@media (prefers-reduced-motion: reduce) {
  [data-animate]   { opacity: 1; transform: none; transition: none; }
  [data-stagger] > * { opacity: 1; transform: none; transition: none; }
  .hero-badge, .hero-inner > h1, .hero-inner > p, .hero-inner > .hero-ctas,
  .service-timeframe-badge, .nav-logo-img { animation: none; }
  .stat-number { animation: none; }
  .btn-cta { background-image: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .about-teaser { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-story { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-container { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-strip-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .photos-grid { grid-template-columns: 1fr 1fr; }
  .form-grid-2col { grid-template-columns: 1fr; }
  .form-group-full { grid-column: auto; }
  .next-steps-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .gallery-grid { columns: 2 220px; }
}
@media (max-width: 600px) {
  .footer-container { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero { padding: 4rem 1.25rem; }
  .photos-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
  .gallery-grid { columns: 1; }
}

/* ============================================================
   UI POLISH
   ============================================================ */

/* Mobile nav: logo left, hamburger right */
@media (max-width: 768px) {
  .nav-container { justify-content: space-between; }
}

/* Hero radial glow for depth */
.hero::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 88% 8%,  rgba(139,105,20,0.12) 0%, transparent 55%),
    radial-gradient(ellipse 45% 50% at 10% 92%, rgba(255,255,255,0.04) 0%, transparent 50%);
  pointer-events: none;
}

/* Larger hero headline */
h1 { font-size: clamp(2rem, 5vw, 3.625rem); }

/* Section header — orange accent line under h2 */
.section-header h2 {
  position: relative;
  padding-bottom: 1.125rem;
}
.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 48px; height: 3px;
  background: var(--color-cta);
  border-radius: 2px;
}

/* Service icon — SVG in a soft green circle */
.service-icon {
  width: 3.25rem; height: 3.25rem;
  background: rgba(45,80,22,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center; justify-content: center;
  align-self: flex-start;
  flex-shrink: 0;
  margin-bottom: 1.125rem;
}

/* Service card — accent top border on hover */
.service-card {
  border-top: 3px solid transparent;
  transition: transform 220ms var(--ease-out), box-shadow 220ms, border-top-color 220ms;
}
.service-card:hover {
  border-top-color: var(--color-cta);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

/* Review card — decorative quote mark + hover lift */
.review-card {
  position: relative;
  transition: transform 220ms var(--ease-out), box-shadow 220ms;
}
.review-card::before {
  content: '\201C';
  position: absolute;
  top: 0.5rem; left: 1.25rem;
  font-family: Georgia, serif;
  font-size: 5.5rem; line-height: 1;
  color: rgba(45,80,22,0.07);
  pointer-events: none;
}
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.review-text { position: relative; }

/* Value card — hover lift */
.value-card { transition: transform 220ms var(--ease-out), box-shadow 220ms; }
.value-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

/* Value icon — circle */
.value-card .value-icon {
  font-size: 1.5rem;
  width: 3rem; height: 3rem;
  background: rgba(45,80,22,0.08);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}

/* Trust icon — circle */
.trust-icon {
  font-size: 1.3rem;
  width: 2.75rem; height: 2.75rem;
  background: rgba(45,80,22,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 0;
}

/* Stats bar — vertical dividers between stats */
.stats-grid .stat { position: relative; }
.stats-grid .stat + .stat::before {
  content: ''; position: absolute;
  left: 0; top: 12%; height: 76%; width: 1px;
  background: rgba(255,255,255,0.16);
}
@media (max-width: 768px) {
  .stats-grid .stat + .stat::before { display: none; }
}

/* Stats number — slightly larger */
.stat-number { font-size: 3.125rem; }

/* Next steps — dashed connecting line between numbered circles */
.next-steps-grid { position: relative; }
.next-steps-grid::before {
  content: ''; position: absolute;
  top: 1.625rem;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    var(--color-border) 0, var(--color-border) 8px,
    transparent 8px, transparent 16px
  );
  z-index: 0; pointer-events: none;
}
@media (max-width: 768px) {
  .next-steps-grid::before { display: none; }
}
.next-step-num {
  position: relative; z-index: 1;
  box-shadow: 0 0 0 4px #fff, 0 0 0 6px rgba(232,137,26,0.25);
}

/* Button hover — lift + shadow */
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,137,26,0.38);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(45,80,22,0.32);
}
.btn-outline:hover { transform: translateY(-1px); }

/* Promo banner — slightly richer */
.promo-banner {
  background: linear-gradient(to right, var(--color-accent), #a07a18);
  letter-spacing: 0.01em;
}

/* Contact info box — subtle top accent */
.contact-info-box {
  border-top: 3px solid var(--color-cta);
}

/* Breadcrumb — tighter bottom border */
.breadcrumb {
  border-bottom: 1px solid var(--color-border);
}

/* Accordion expanded — left accent bar */
.accordion-trigger[aria-expanded="true"] {
  border-left: 3px solid var(--color-cta);
  padding-left: calc(1.5rem - 3px);
}

/* FAQ category title — stronger bottom border */
.faq-category-title {
  border-bottom: 2px solid var(--color-cta);
  opacity: 0.85;
}

/* Related service links — pill hover */
.related-service-link {
  transition: background 150ms, border-color 150ms, color 150ms, transform 150ms;
}
.related-service-link:hover { transform: translateY(-1px); }

/* Gallery filter buttons */
.filter-btn { letter-spacing: 0.015em; }
.filter-btn.active { font-weight: 600; }

/* Timeframe box — richer left border */
.timeframe-box { border-left-width: 5px; }

/* Included list checkmark color */
.included-list li::before { color: var(--color-cta); }

/* Step number — ring glow on process steps */
.step-number {
  box-shadow: 0 0 0 3px rgba(45,80,22,0.15);
}

/* Footer — slightly richer top border */
.site-footer {
  border-top: 3px solid var(--color-cta);
}


/* ============================================================
   LUCIDE SVG ICON SIZING
   ============================================================ */

/* Service card icons */
.service-icon svg { width: 1.75rem; height: 1.75rem; stroke: var(--color-primary); stroke-width: 1.5; flex-shrink: 0; }

/* Trust / Why section icons */
.trust-icon { flex-shrink: 0; width: 2.75rem; display: flex; align-items: flex-start; justify-content: center; margin-top: 4px; }
.trust-icon svg { width: 2rem; height: 2rem; stroke: var(--color-primary); stroke-width: 1.75; }

/* About page value card icons */
.value-icon { display: block; margin-bottom: 0.875rem; }
.value-icon svg { width: 2rem; height: 2rem; stroke: var(--color-primary); stroke-width: 1.75; }

/* Contact strip icons */
.contact-item-icon { display: block; margin-bottom: 0.625rem; }
.contact-item-icon svg { width: 2.25rem; height: 2.25rem; stroke: var(--color-cta); stroke-width: 1.5; }

/* Contact info sidebar icons (.cii-icon) */
.cii-icon { flex-shrink: 0; margin-top: 2px; }
.cii-icon svg { width: 1.5rem; height: 1.5rem; stroke: var(--color-primary); stroke-width: 1.75; }

/* Service timeframe badge clock icon */
.service-timeframe-badge svg { width: 1rem; height: 1rem; vertical-align: -0.125em; flex-shrink: 0; }

/* Response promise icon */
.response-promise svg { width: 1.25rem; height: 1.25rem; flex-shrink: 0; stroke: var(--color-cta); }

/* Thank you page check icon */
.thankyou-icon { display: block; margin-bottom: 1.5rem; }
.thankyou-icon svg { width: 5rem; height: 5rem; stroke: #22c55e; stroke-width: 1.5; }

/* About service area map pin */
.service-area-box > div:first-child { display: flex; align-items: center; justify-content: center; }
.service-area-box > div:first-child svg { width: 3rem; height: 3rem; stroke: var(--color-primary); stroke-width: 1.5; }

/* Maps placeholder map pin */
.maps-placeholder p svg { width: 2rem; height: 2rem; stroke: var(--color-text-muted); }

/* ============================================================
   HERO REDESIGN — depth, hierarchy, professional finish
   ============================================================ */

/* More impactful home hero padding */
.hero { padding: 7.5rem 1.5rem 6.5rem; background: #172e07; }

/* Richer layered gradient + subtle dot-grid texture */
.hero::before {
  background:
    linear-gradient(155deg, rgba(12,28,4,0.99) 0%, rgba(34,62,12,0.94) 48%, rgba(44,80,16,0.97) 100%),
    radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 100% 100%, 28px 28px;
}

/* Warm amber glow + green bottom anchor */
.hero::after {
  background:
    radial-gradient(ellipse 65% 80% at 82% 0%,   rgba(195,135,18,0.22)  0%, transparent 52%),
    radial-gradient(ellipse 45% 55% at 14% 100%,  rgba(70,130,30,0.15)   0%, transparent 46%),
    radial-gradient(ellipse 40% 50% at 50% -8%,   rgba(255,255,255,0.06) 0%, transparent 58%);
}

/* Deeper text shadow */
.hero h1 { position: relative; text-shadow: 0 2px 18px rgba(0,0,0,0.35); }

/* Accent line under home hero h1 */
.hero:not(.hero-service) .hero-inner > h1 { padding-bottom: 1.25rem; }
.hero:not(.hero-service) .hero-inner > h1::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 56px; height: 3px;
  background: var(--color-cta);
  border-radius: 2px;
}

/* Larger, more readable subtext */
.hero p { font-size: 1.25rem; line-height: 1.72; max-width: 580px; opacity: 0.92; }

/* Trust/location tagline pill */
.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.88);
  padding: 0.35rem 1rem 0.35rem 0.85rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.625rem;
  animation: heroBadgePop 0.5s var(--ease-out) both;
}
.hero-tagline svg { width: 0.9rem; height: 0.9rem; stroke: var(--color-cta); flex-shrink: 0; }

/* Service hero — more breathing room, distinct accent */
.hero-service { padding: 5.5rem 1.5rem 4.75rem; }
.hero-service::before {
  background: linear-gradient(158deg, rgba(10,24,3,0.99) 0%, rgba(38,68,14,0.95) 100%);
}
/* Accent bar at top of every service hero */
.hero-service::after {
  background:
    radial-gradient(ellipse 70% 50% at 75% -5%,  rgba(195,135,18,0.18)  0%, transparent 55%),
    radial-gradient(ellipse 40% 60% at 18% 110%,  rgba(60,120,25,0.12)   0%, transparent 50%);
  border-top: 3px solid var(--color-cta);
}

/* Glassmorphism timeframe badge */
.service-timeframe-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: rgba(255,255,255,0.95);
  padding: 0.45rem 1.25rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 1.5rem;
  letter-spacing: 0.01em;
}
.service-timeframe-badge svg {
  width: 0.9rem; height: 0.9rem;
  stroke: rgba(255,220,100,0.9);
}

/* Mobile hero tweaks */
@media (max-width: 640px) {
  .hero { padding: 5.5rem 1.25rem 5rem; }
  .hero-service { padding: 4.25rem 1.25rem 3.75rem; }
  .hero p { font-size: 1.0625rem; }
}
