/**
 * Alpines Tree Surgery — Site Stylesheet
 * ======================================
 * Reference stylesheet for building pages that match final_site_preview.html.
 *
 * Usage (from HTML in site/):
 *   <link rel="stylesheet" href="alpines-site.css" />
 *
 * Expected page structure:
 *   <main class="site-preview-root">
 *     <div class="wf-assembled-hero-shell" data-wf-section="hero">
 *       <section class="wf-hero">…</section>
 *     </div>
 *     <div class="site-section-wf site-section-wf--coordinated" data-wf-section="about">
 *       <div class="wf-section-body">
 *         <section class="about-section-v1">…</section>
 *       </div>
 *     </div>
 *     … services (services-section-v1), gallery (gallery-section-v2),
 *       cta (cta-section-v3), footer (footer-section-v1)
 *   </main>
 *
 * Optional scroll animations: add class "wf-anim-js" to <html> before body paint
 * and include the section IntersectionObserver script from final_site_preview.html.
 *
 * Asset paths are relative to this file (site/alpines-site.css).
 */

/* === Design tokens === */
:root {
  --ats-font-heading: 'Montserrat', 'Arial Black', sans-serif;
  --ats-font-body: 'Open Sans', 'Arial', sans-serif;
  --ats-font-hero: 'Arial', 'Helvetica Neue', Helvetica, sans-serif;

  --ats-green-primary: #2E8B2E;
  --ats-green-dark: #1A6B1A;
  --ats-green-bright: #4CAF4C;
  --ats-green-nav: #3a9c1f;
  --ats-green-nav-cta: #4db83a;
  --ats-green-check: #7ee84a;
  --ats-green-tagline: #d4f0c0;

  --ats-orange-brand: #E8720C;
  --ats-orange-logo: #e07820;

  --ats-red-badge: #c0392b;
  --ats-red-emergency: #C0392B;

  --ats-text-dark: #1A1A1A;
  --ats-text-muted: #E8E8E8;
  --ats-text-nav: #222;

  --ats-bg-white: #FFFFFF;
  --ats-bg-light: #F8F9FA;

  --ats-container-max: 1320px;
  --ats-container-pad: 24px;

  --ats-hero-bg-image: url("../input/herobg.jpeg");
  --ats-hero-height: 100vh;

  --ats-nav-layer: 10000;
  --ats-nav-logo-z: 1;
  --ats-nav-backdrop-z: 10001;
  --ats-nav-menu-z: 10002;
  --ats-nav-toggle-z: 10003;
}

/* === Base / preview shell === */
html {
  scroll-behavior: smooth;
  overscroll-behavior: none;
}
body {
  margin: 0;
  overscroll-behavior: none;
}
.site-preview-root {
  display: block;
}

/* Keep hero/nav appearance stable even if sections toggle page theme/color-scheme. */
.wf-assembled-hero-shell,
.wf-assembled-hero-shell * {
  color-scheme: normal !important;
}

/* Hide common model-added fixed “Press D / light–dark” hint UI; document-level key handlers still run */
.site-preview-root [aria-label*="Press D" i],
.site-preview-root [aria-label*="press d" i],
.site-preview-root [title*="Press D" i],
.site-preview-root [title*="light/dark" i],
.site-preview-root [title*="light / dark" i],
.site-preview-root [data-theme-toggle],
.site-preview-root [data-wf-theme-hint],
.site-preview-root .wf-theme-toggle-chip {
  display: none !important;
}

/* === section scroll animations === */
@keyframes wf-section-in {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

/*
 * wf-anim-js is added to <html> by a blocking <head> script before body renders.
 * Without it (no JS), nothing is hidden.
 *
 * Structure per section:
 *   [data-wf-section]     ← outer shell, background, never animated
 *     .wf-section-body    ← passthrough
 *       model root        ← owns background colour, never animated
 *         > children      ← hidden until in-view, then fade+lift
 */
html.wf-anim-js .site-preview-root [data-wf-section]:not(.wf-section--in) .wf-section-body > * > * {
  opacity: 0;
}

.site-preview-root [data-wf-section].wf-section--in .wf-section-body > * > * {
  animation: wf-section-in 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@media (prefers-reduced-motion: reduce) {
  html.wf-anim-js .site-preview-root [data-wf-section]:not(.wf-section--in) .wf-section-body > * > * {
    opacity: 1;
  }
  .site-preview-root [data-wf-section].wf-section--in .wf-section-body > * > * {
    animation: none;
  }
}

/* === Hero === */
.wf-hero *,
.wf-hero *::before,
.wf-hero *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.wf-hero {
  font-family: var(--ats-font-hero);
  width: 100%;
  min-height: auto;
  display: flex;
  flex-direction: column;
  background: var(--ats-bg-white);
}

.wf-hero:has(.wf-hero__body) {
  min-height: var(--ats-hero-height);
}

.wf-hero__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 40px;
  background: var(--ats-bg-white);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 100;
}

.wf-hero__nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.wf-hero__nav-logo a {
  display: block;
  line-height: 0;
  text-decoration: none;
}

.wf-hero__logo-img {
  display: block;
  height: 60px;
  width: auto;
  max-width: min(320px, 42vw);
}

.wf-hero__nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.wf-hero__nav-link {
  text-decoration: none;
  color: var(--ats-text-nav);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 10px;
  letter-spacing: 0.5px;
  transition: color 0.2s;
  white-space: nowrap;
}

.wf-hero__nav-link--active,
.wf-hero__nav-link:hover {
  color: var(--ats-green-nav);
}

.wf-hero__nav-cta {
  display: inline-block;
  background: var(--ats-green-nav-cta);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 11px 20px;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition: background 0.2s;
}

.wf-hero__nav-cta:hover {
  background: var(--ats-green-nav);
}

.wf-hero__nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--ats-text-nav);
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
  z-index: 120;
}

.wf-hero__nav-toggle:hover {
  background: rgba(0, 0, 0, 0.05);
}

.wf-hero__nav-toggle:focus-visible {
  outline: 2px solid var(--ats-green-nav);
  outline-offset: 2px;
}

.wf-hero__nav-toggle-box {
  position: relative;
  display: block;
  width: 26px;
  height: 18px;
}

.wf-hero__nav-toggle-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transform-origin: center;
  transition:
    transform 0.38s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.22s ease,
    top 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.wf-hero__nav-toggle-line:nth-child(1) {
  top: 0;
}

.wf-hero__nav-toggle-line:nth-child(2) {
  top: 8px;
}

.wf-hero__nav-toggle-line:nth-child(3) {
  top: 16px;
}

.wf-hero__nav--open .wf-hero__nav-toggle-line:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
}

.wf-hero__nav--open .wf-hero__nav-toggle-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.wf-hero__nav--open .wf-hero__nav-toggle-line:nth-child(3) {
  top: 8px;
  transform: rotate(-45deg);
}

.wf-hero__nav-backdrop {
  display: none;
}

.wf-hero__nav-menu {
  display: flex;
  align-items: center;
}

.wf-hero__body {
  position: relative;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.wf-hero__bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: var(--ats-hero-bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.wf-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to right,
    rgba(34, 100, 10, 0.88) 0%,
    rgba(34, 100, 10, 0.82) 35%,
    rgba(34, 100, 10, 0.45) 50%,
    transparent 62%
  );
}

.wf-hero__nav,
.wf-hero__content,
.wf-hero__text-col,
.wf-hero__tablet-preview {
  position: relative;
  z-index: 2;
}

.wf-hero__content {
  display: flex;
  flex: 1;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 109px 50px 60px;
  min-height: 0;
}

.wf-hero__left {
  flex: 0 0 58%;
  max-width: 58%;
}

.wf-hero__headline {
  font-size: 96px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -1px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  margin-bottom: 36px;
}

.wf-hero__subheadline {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 28px;
}

.wf-hero__services-wrapper {
  display: flex;
  gap: 0;
  margin-bottom: 20px;
}

.wf-hero__services {
  list-style: none;
  display: inline-block;
  vertical-align: top;
  margin-right: 56px;
  margin-bottom: 0;
}

.wf-hero__services--col2 {
  margin-right: 0;
}

.wf-hero__services li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.wf-hero__check {
  color: var(--ats-green-check);
  font-size: 24px;
  font-weight: 900;
  flex-shrink: 0;
}

.wf-hero__tagline {
  font-size: 20px;
  color: var(--ats-green-tagline);
  margin-top: 28px;
  line-height: 1.5;
}

.wf-hero__right {
  flex: 0 0 38%;
  max-width: 38%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  align-self: stretch;
  justify-content: flex-end;
  gap: 70px;
}

.wf-hero__badge-img {
  display: block;
  width: 280px;
  height: auto;
  filter: drop-shadow(0 6px 24px rgba(0, 0, 0, 0.35));
}

.wf-hero__badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--ats-red-badge);
  color: #fff;
  width: 195px;
  height: 195px;
  border-radius: 50%;
  clip-path: polygon(
    50% 0%, 61% 6%, 73% 3%, 80% 13%, 92% 15%, 95% 27%, 100% 37%,
    95% 48%, 97% 60%, 89% 68%, 87% 80%, 76% 84%, 70% 95%, 58% 95%,
    50% 100%, 42% 95%, 30% 95%, 24% 84%, 13% 80%, 11% 68%, 3% 60%,
    5% 48%, 0% 37%, 5% 27%, 8% 15%, 20% 13%, 27% 3%, 39% 6%
  );
  text-align: center;
  padding: 20px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

.wf-hero__badge-text {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 4px;
}

.wf-hero__badge-price {
  font-size: 46px;
  font-weight: 900;
  line-height: 1;
}

.wf-hero__quote-btn {
  display: inline-block;
  background: rgba(80, 180, 50, 0.85);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  padding: 16px 38px;
  border-radius: 40px;
  text-decoration: none;
  text-align: center;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
  border: 2px solid rgba(255, 255, 255, 0.25);
  transition: background 0.2s;
  white-space: nowrap;
  margin-bottom: 186px;
  margin-right: 16px;
}

.wf-hero__quote-btn:hover {
  background: rgba(58, 156, 31, 0.95);
}

@media (min-width: 901px) and (max-width: 1061px) {
  .wf-hero__headline {
    font-size: 84px;
  }
}

@media (max-width: 1071px) {
  .wf-assembled-hero-shell {
    position: relative;
    z-index: var(--ats-nav-layer);
  }

  .wf-hero__nav {
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: var(--ats-nav-layer);
  }

  .wf-hero__nav-logo {
    position: relative;
    z-index: var(--ats-nav-logo-z);
  }

  .wf-hero__nav-toggle {
    display: flex;
    margin-left: auto;
    position: relative;
    z-index: var(--ats-nav-toggle-z);
  }

  .wf-hero__nav--open .wf-hero__nav-toggle {
    position: relative;
    z-index: calc(var(--ats-nav-toggle-z) + 1);
  }

  .wf-hero__nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: var(--ats-nav-backdrop-z);
    pointer-events: none;
  }

  .wf-hero__nav--open .wf-hero__nav-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .wf-hero__nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: min(340px, 88vw);
    height: 100vh;
    height: 100dvh;
    align-items: stretch;
    background: #fff;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
    z-index: var(--ats-nav-menu-z);
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    padding: 88px 28px 40px;
    box-sizing: border-box;
  }

  .wf-hero__nav--open .wf-hero__nav-menu {
    transform: translateX(0);
  }

  .wf-hero__nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    width: 100%;
  }

  .wf-hero__nav-links li {
    opacity: 0;
    transform: translateX(20px);
    transition:
      opacity 0.32s ease,
      transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .wf-hero__nav--open .wf-hero__nav-links li {
    opacity: 1;
    transform: translateX(0);
  }

  .wf-hero__nav--open .wf-hero__nav-links li:nth-child(1) { transition-delay: 0.06s; }
  .wf-hero__nav--open .wf-hero__nav-links li:nth-child(2) { transition-delay: 0.1s; }
  .wf-hero__nav--open .wf-hero__nav-links li:nth-child(3) { transition-delay: 0.14s; }
  .wf-hero__nav--open .wf-hero__nav-links li:nth-child(4) { transition-delay: 0.18s; }
  .wf-hero__nav--open .wf-hero__nav-links li:nth-child(5) { transition-delay: 0.22s; }
  .wf-hero__nav--open .wf-hero__nav-links li:nth-child(6) { transition-delay: 0.26s; }
  .wf-hero__nav--open .wf-hero__nav-links li:nth-child(7) { transition-delay: 0.3s; }
  .wf-hero__nav--open .wf-hero__nav-links li:nth-child(8) { transition-delay: 0.34s; }

  .wf-hero__nav-link {
    display: block;
    padding: 14px 12px;
    font-size: 15px;
    border-radius: 8px;
    transition: color 0.2s ease, background 0.2s ease;
  }

  .wf-hero__nav-link:hover,
  .wf-hero__nav-link--active {
    background: rgba(58, 156, 31, 0.08);
  }

  .wf-hero__nav-cta {
    display: block;
    text-align: center;
    margin-top: 12px;
    padding: 14px 20px;
    border-radius: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wf-hero__nav-toggle-line,
  .wf-hero__nav-backdrop,
  .wf-hero__nav-menu,
  .wf-hero__nav-links li {
    transition-duration: 0.01ms !important;
    transition-delay: 0s !important;
  }
}

body.wf-nav-open {
  overflow: hidden;
}

@media (max-width: 900px) {
  .wf-hero:has(.wf-hero__body) {
    min-height: auto;
  }

  .wf-hero__body {
    min-height: clamp(520px, 88svh, 680px);
  }

  .wf-hero__bg-image {
    background-position: 72% 28%;
  }

  .wf-hero__overlay {
    background:
      linear-gradient(
        180deg,
        rgba(34, 100, 10, 0.35) 0%,
        rgba(28, 82, 12, 0.72) 42%,
        rgba(18, 52, 8, 0.94) 100%
      );
  }

  .wf-hero__content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px 20px 32px;
    gap: 0;
  }

  .wf-hero__left {
    display: contents;
  }

  .wf-hero__headline {
    order: 1;
    font-size: clamp(2.35rem, 11vw, 3.25rem);
    line-height: 0.95;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
  }

  .wf-hero__subheadline {
    order: 2;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    opacity: 0.92;
    margin-bottom: 14px;
  }

  .wf-hero__right {
    order: 7;
    max-width: 100%;
    flex: 0 0 auto;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 20px;
    margin-bottom: 0;
    padding: 14px 16px;
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }

  .wf-hero__badge-img {
    width: 88px;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
  }

  .wf-hero__quote-btn {
    flex: 1;
    min-width: 0;
    margin: 0;
    padding: 14px 18px;
    font-size: 15px;
    border-radius: 999px;
    white-space: normal;
    line-height: 1.25;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.28);
  }

  .wf-hero__services {
    order: 4;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 14px;
    width: 100%;
    margin-right: 0;
    margin-bottom: 8px;
  }

  .wf-hero__services--col2 {
    order: 5;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 14px;
    width: 100%;
    margin-right: 0;
    margin-bottom: 0;
  }

  .wf-hero__services li {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0;
    gap: 8px;
  }

  .wf-hero__check {
    font-size: 16px;
  }

  .wf-hero__tagline {
    order: 6;
    font-size: 14px;
    line-height: 1.45;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .wf-hero__tagline br {
    display: inline;
  }

  .wf-hero__tagline br::after {
    content: " ";
  }

  .wf-hero__logo-img {
    height: 44px;
    max-width: min(260px, 58vw);
  }
}

@media (max-width: 480px) {
  .wf-hero__body {
    min-height: clamp(480px, 86svh, 620px);
  }

  .wf-hero__content {
    padding: 24px 16px 28px;
  }

  .wf-hero__headline {
    font-size: clamp(2rem, 10.5vw, 2.65rem);
  }

  .wf-hero__right {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 12px;
    padding: 16px;
  }

  .wf-hero__badge-img {
    width: 96px;
    margin: 0 auto;
  }

  .wf-hero__services,
  .wf-hero__services--col2 {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .wf-hero__services li {
    font-size: 15px;
  }
}

/* === assembled preview layer (hero bg, sections, rhythm, responsive non-hero) === */
/* ========== Assembled preview: coordinated rest-of-site (variant CSS owns section backgrounds) ========== */
.site-preview-root {
  min-height: auto;
  background: #fff;
}

.wf-assembled-hero-shell {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}

.site-section-wf {
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-top: none;
  background: transparent;
  color: inherit;
}
@media (max-width: 900px) {
  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) {
    padding-left: max(0rem, env(safe-area-inset-left, 0px));
    padding-right: max(0rem, env(safe-area-inset-right, 0px));
  }

  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) img,
  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) video,
  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) svg {
    max-width: 100%;
    height: auto;
  }

  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) table {
    display: block;
    width: 100% !important;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 768px) {
  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) {
    min-width: 0;
  }

  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) [style*="display:grid"],
  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) [style*="display: grid"] {
    grid-template-columns: 1fr !important;
  }

  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) [style*="flex-direction:row"],
  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) [style*="flex-direction: row"] {
    flex-direction: column !important;
  }
}

@media (max-width: 480px) {
  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) button,
  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) .button,
  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) a[class*="btn"],
  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) a[class*="cta"] {
    max-width: 100%;
    box-sizing: border-box;
    word-break: break-word;
  }
}

/* === about_v1.css === */
.about-section-v1 {
  background: #FFFFFF;
  padding: 80px 0;
  position: relative;
}

.about-section-v1 .about-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.about-section-v1 .about-content {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 64px;
  align-items: center;
}

.about-section-v1 h2 {
  font-family: 'Montserrat', 'Arial Black', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: #1A1A1A;
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0 0 16px 0;
}

.about-section-v1 .about-subhead {
  font-family: 'Open Sans', 'Arial', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #2E8B2E;
  margin: 0 0 24px 0;
}

.about-section-v1 p {
  font-family: 'Open Sans', 'Arial', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #1A1A1A;
  line-height: 1.6;
  margin: 0 0 20px 0;
}

.about-section-v1 .about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.about-section-v1 .stat-item {
  background: #F8F9FA;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  border-left: 4px solid #2E8B2E;
}

.about-section-v1 .stat-number {
  display: block;
  font-family: 'Montserrat', 'Arial Black', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: #2E8B2E;
  line-height: 1;
}

.about-section-v1 .stat-label {
  display: block;
  font-family: 'Open Sans', 'Arial', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1A1A1A;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 8px;
}

.about-section-v1 .about-image {
  position: relative;
}

.about-section-v1 .about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

@media (max-width: 1024px) {
  .about-section-v1 .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-section-v1 .about-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .about-section-v1 {
    padding: 60px 0;
  }
  
  .about-section-v1 h2 {
    font-size: 36px;
  }
  
  .about-section-v1 .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* === about_v2.css === */
.about-section-v2 {
  background: var(--ats-bg-light);
  padding: 80px 0;
  position: relative;
}

.about-section-v2 .about-container {
  max-width: var(--ats-container-max);
  margin: 0 auto;
  padding: 0 var(--ats-container-pad);
}

.about-section-v2 .about-content {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 64px;
  align-items: center;
}

.about-section-v2 h2 {
  font-family: var(--ats-font-heading);
  font-size: 48px;
  font-weight: 900;
  color: var(--ats-text-dark);
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0 0 16px 0;
}

.about-section-v2 .about-subhead {
  font-family: var(--ats-font-body);
  font-size: 20px;
  font-weight: 600;
  color: var(--ats-green-primary);
  margin: 0 0 24px 0;
}

.about-section-v2 p {
  font-family: var(--ats-font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--ats-text-dark);
  line-height: 1.6;
  margin: 0 0 20px 0;
}

.about-section-v2 .about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.about-section-v2 .about-stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 2px solid rgba(46, 139, 46, 0.2);
}

.about-section-v2 .stat-item {
  flex: 1 1 25%;
  min-width: 120px;
  text-align: center;
  padding: 8px 16px;
  box-sizing: border-box;
  border-right: 1px solid rgba(26, 26, 26, 0.12);
}

.about-section-v2 .stat-item:last-child {
  border-right: none;
}

.about-section-v2 .stat-number {
  display: block;
  font-family: var(--ats-font-heading);
  font-size: 28px;
  font-weight: 900;
  color: var(--ats-green-primary);
  line-height: 1;
}

.about-section-v2 .stat-label {
  display: block;
  font-family: var(--ats-font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--ats-text-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 8px;
  line-height: 1.3;
}

@media (max-width: 1024px) {
  .about-section-v2 .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-section-v2 .about-image {
    order: -1;
  }

  .about-section-v2 .about-stats-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    border-top: none;
    padding-top: 8px;
  }

  .about-section-v2 .stat-item {
    border-right: none;
    border-left: 4px solid var(--ats-green-primary);
    background: var(--ats-bg-white);
    padding: 16px 12px;
    border-radius: 8px;
  }
}

@media (max-width: 768px) {
  .about-section-v2 {
    padding: 60px 0;
  }

  .about-section-v2 h2 {
    font-size: 36px;
  }

  .about-section-v2 .about-image img {
    height: 280px;
  }
}

/* === about_v3.css === */
.about-section-v3 {
  background: var(--ats-bg-white);
  padding: 80px 0 0;
  position: relative;
}

.about-section-v3 .about-container {
  max-width: var(--ats-container-max);
  margin: 0 auto;
  padding: 0 var(--ats-container-pad);
}

.about-section-v3 .about-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}

.about-section-v3 h2 {
  font-family: var(--ats-font-heading);
  font-size: 48px;
  font-weight: 900;
  color: var(--ats-text-dark);
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0 0 16px 0;
}

.about-section-v3 .about-subhead {
  font-family: var(--ats-font-body);
  font-size: 20px;
  font-weight: 600;
  color: var(--ats-green-primary);
  margin: 0;
}

.about-section-v3 .about-image-feature {
  position: relative;
  margin-bottom: 48px;
}

.about-section-v3 .about-image-feature::before {
  content: "";
  position: absolute;
  inset: 12px -12px -12px 12px;
  border: 3px solid var(--ats-green-primary);
  border-radius: 16px;
  z-index: 0;
  pointer-events: none;
}

.about-section-v3 .about-image-feature img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.about-section-v3 .about-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 48px;
  max-width: 1080px;
  margin: 0 auto 56px;
}

.about-section-v3 .about-body p {
  font-family: var(--ats-font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--ats-text-dark);
  line-height: 1.6;
  margin: 0;
}

.about-section-v3 .about-stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  background: var(--ats-green-primary);
  margin-left: calc(-1 * var(--ats-container-pad));
  margin-right: calc(-1 * var(--ats-container-pad));
  padding: 40px var(--ats-container-pad);
  box-sizing: border-box;
}

.about-section-v3 .stat-item {
  text-align: center;
  padding: 0 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.about-section-v3 .stat-item:last-child {
  border-right: none;
}

.about-section-v3 .stat-number {
  display: block;
  font-family: var(--ats-font-heading);
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.about-section-v3 .stat-label {
  display: block;
  font-family: var(--ats-font-body);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 10px;
  line-height: 1.3;
}

@media (max-width: 1024px) {
  .about-section-v3 .about-stats-band {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 24px;
  }

  .about-section-v3 .stat-item {
    border-right: none;
  }
}

@media (max-width: 768px) {
  .about-section-v3 {
    padding-top: 60px;
  }

  .about-section-v3 h2 {
    font-size: 36px;
  }

  .about-section-v3 .about-image-feature img {
    height: 280px;
  }

  .about-section-v3 .about-image-feature::before {
    inset: 8px -8px -8px 8px;
  }

  .about-section-v3 .about-body {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }

  .about-section-v3 .about-stats-band {
    grid-template-columns: repeat(2, 1fr);
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .about-section-v3 .stat-number {
    font-size: 28px;
  }
}

/* === about page comparison labels (temporary) === */
.about-variations-stack,
.section-variations-stack {
  display: block;
}

.about-variation-label,
.section-variation-label {
  font-family: var(--ats-font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  color: var(--ats-text-dark);
  background: var(--ats-bg-light);
  padding: 14px var(--ats-container-pad);
  border-bottom: 3px solid var(--ats-green-primary);
}

.about-variations-stack .site-section-wf + .site-section-wf .about-variation-label,
.section-variations-stack .site-section-wf + .site-section-wf .section-variation-label {
  border-top: 1px solid rgba(26, 26, 26, 0.08);
}

/* === services_v1.css === */
.services-section-v1 {
  background: #F8F9FA;
  padding: 80px 0;
  position: relative;
}

.services-section-v1 .services-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.services-section-v1 .services-header {
  text-align: center;
  margin-bottom: 64px;
}

.services-section-v1 h2 {
  font-family: 'Montserrat', 'Arial Black', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: #1A1A1A;
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0 0 20px 0;
}

.services-section-v1 .services-header p {
  font-family: 'Open Sans', 'Arial', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #2E8B2E;
  line-height: 1.5;
  max-width: 680px;
  margin: 0 auto;
}

.services-section-v1 .services-bands {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.services-section-v1 .service-band {
  position: relative;
  padding: 40px 60px;
  display: flex;
  align-items: center;
  min-height: 120px;
  overflow: hidden;
}

.services-section-v1 .service-band.primary {
  background: #FFFFFF;
  justify-content: flex-start;
}

.services-section-v1 .service-band.secondary {
  background: linear-gradient(135deg, #E8F5E8 0%, #F0F8F0 100%);
  justify-content: flex-end;
}

.services-section-v1 .service-content {
  max-width: 600px;
  z-index: 2;
  position: relative;
}

.services-section-v1 .service-band.secondary .service-content {
  text-align: right;
}

.services-section-v1 h3 {
  font-family: 'Montserrat', 'Arial Black', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #1A1A1A;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 12px 0;
}

.services-section-v1 .service-content p {
  font-family: 'Open Sans', 'Arial', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #1A1A1A;
  line-height: 1.6;
  margin: 0;
}

.services-section-v1 .service-accent {
  position: absolute;
  width: 200px;
  height: 100%;
  top: 0;
  background: linear-gradient(45deg, #2E8B2E, #4CAF4C);
  opacity: 0.1;
}

.services-section-v1 .service-band.primary .service-accent {
  right: 0;
  clip-path: polygon(40% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.services-section-v1 .service-band.secondary .service-accent {
  left: 0;
  clip-path: polygon(0% 0%, 60% 0%, 100% 100%, 0% 100%);
}

@media (max-width: 768px) {
  .services-section-v1 {
    padding: 60px 0;
  }
  
  .services-section-v1 h2 {
    font-size: 36px;
  }
  
  .services-section-v1 .service-band {
    padding: 30px 24px;
    justify-content: center !important;
    text-align: center;
  }
  
  .services-section-v1 .service-band.secondary .service-content {
    text-align: center;
  }
  
  .services-section-v1 h3 {
    font-size: 20px;
  }
}

/* === services_v2.css === */
.services-section-v2 {
  background: var(--ats-bg-white);
  padding: 80px 0;
  position: relative;
}

.services-section-v2 .services-container {
  max-width: var(--ats-container-max);
  margin: 0 auto;
  padding: 0 var(--ats-container-pad);
}

.services-section-v2 .services-header {
  text-align: center;
  margin-bottom: 56px;
}

.services-section-v2 h2 {
  font-family: var(--ats-font-heading);
  font-size: 48px;
  font-weight: 900;
  color: var(--ats-text-dark);
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0 0 20px 0;
}

.services-section-v2 .services-header p {
  font-family: var(--ats-font-body);
  font-size: 20px;
  font-weight: 400;
  color: var(--ats-green-primary);
  line-height: 1.5;
  max-width: 680px;
  margin: 0 auto;
}

.services-section-v2 .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.services-section-v2 .service-card {
  background: var(--ats-bg-light);
  border-radius: 12px;
  padding: 28px 24px;
  border-top: 4px solid var(--ats-green-primary);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.services-section-v2 .service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.services-section-v2 h3 {
  font-family: var(--ats-font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--ats-text-dark);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.services-section-v2 .service-card p {
  font-family: var(--ats-font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--ats-text-dark);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .services-section-v2 .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-section-v2 {
    padding: 60px 0;
  }

  .services-section-v2 h2 {
    font-size: 36px;
  }

  .services-section-v2 .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .services-section-v2 .service-card {
    padding: 24px 20px;
  }
}

/* === services_v3.css === */
.services-section-v3 {
  background: var(--ats-bg-light);
  padding: 80px 0;
  position: relative;
}

.services-section-v3 .services-container {
  max-width: var(--ats-container-max);
  margin: 0 auto;
  padding: 0 var(--ats-container-pad);
}

.services-section-v3 .services-header {
  text-align: center;
  margin-bottom: 48px;
}

.services-section-v3 h2 {
  font-family: var(--ats-font-heading);
  font-size: 48px;
  font-weight: 900;
  color: var(--ats-text-dark);
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0 0 20px 0;
}

.services-section-v3 .services-header p {
  font-family: var(--ats-font-body);
  font-size: 20px;
  font-weight: 400;
  color: var(--ats-green-primary);
  line-height: 1.5;
  max-width: 680px;
  margin: 0 auto;
}

.services-section-v3 .services-list {
  list-style: none;
  margin: 0;
  padding: 0;
  background: var(--ats-bg-white);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.services-section-v3 .service-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  align-items: start;
  padding: 32px 36px;
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
}

.services-section-v3 .service-item:last-child {
  border-bottom: none;
}

.services-section-v3 .service-number {
  font-family: var(--ats-font-heading);
  font-size: 32px;
  font-weight: 900;
  color: var(--ats-green-primary);
  line-height: 1;
  opacity: 0.85;
}

.services-section-v3 h3 {
  font-family: var(--ats-font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--ats-text-dark);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.services-section-v3 .service-content p {
  font-family: var(--ats-font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--ats-text-dark);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .services-section-v3 {
    padding: 60px 0;
  }

  .services-section-v3 h2 {
    font-size: 36px;
  }

  .services-section-v3 .service-item {
    grid-template-columns: 56px 1fr;
    gap: 16px;
    padding: 24px 20px;
  }

  .services-section-v3 .service-number {
    font-size: 24px;
  }

  .services-section-v3 h3 {
    font-size: 18px;
  }

  .services-section-v3 .service-content p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .services-section-v3 .service-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .services-section-v3 .service-number {
    font-size: 20px;
  }
}

/* === gallery_v1.css === */
.gallery-section-v1 {
  background: var(--ats-bg-white);
  padding: 80px 0;
  position: relative;
}

.gallery-section-v1 .gallery-container {
  max-width: var(--ats-container-max);
  margin: 0 auto;
  padding: 0 var(--ats-container-pad);
}

.gallery-section-v1 .gallery-header {
  text-align: center;
  margin-bottom: 56px;
}

.gallery-section-v1 h2 {
  font-family: var(--ats-font-heading);
  font-size: 48px;
  font-weight: 900;
  color: var(--ats-text-dark);
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0 0 20px 0;
}

.gallery-section-v1 .gallery-header p {
  font-family: var(--ats-font-body);
  font-size: 18px;
  font-weight: 400;
  color: var(--ats-green-primary);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.gallery-section-v1 .gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-section-v1 .gallery-item {
  margin: 0;
}

.gallery-section-v1 .gallery-item img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.gallery-section-v1 .gallery-item figcaption {
  font-family: var(--ats-font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--ats-text-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 3px solid var(--ats-green-primary);
}

@media (max-width: 1024px) {
  .gallery-section-v1 .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery-section-v1 {
    padding: 60px 0;
  }

  .gallery-section-v1 h2 {
    font-size: 36px;
  }

  .gallery-section-v1 .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* === gallery_v2.css === */
.gallery-section-v2 {
  background: linear-gradient(135deg, #1A6B1A 0%, #2E8B2E 100%);
  padding: 80px 0;
  position: relative;
}

.gallery-section-v2 .gallery-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.gallery-section-v2 .gallery-intro {
  text-align: center;
  margin-bottom: 64px;
}

.gallery-section-v2 h2 {
  font-family: 'Montserrat', 'Arial Black', sans-serif;
  font-size: 50px;
  font-weight: 900;
  color: #FFFFFF;
  text-transform: uppercase;
  line-height: 1.05;
  margin: 0 0 24px 0;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.gallery-section-v2 .gallery-intro p {
  font-family: 'Open Sans', 'Arial', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #E8E8E8;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.gallery-section-v2 .gallery-showcase {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.gallery-section-v2 .featured-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

.gallery-section-v2 .featured-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.gallery-section-v2 .featured-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
  padding: 60px 40px 40px;
}

.gallery-section-v2 .featured-overlay h3 {
  font-family: 'Montserrat', 'Arial Black', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
  margin: 0 0 8px 0;
}

.gallery-section-v2 .featured-overlay p {
  font-family: 'Open Sans', 'Arial', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #E8E8E8;
  margin: 0;
}

.gallery-section-v2 .gallery-thumbnails {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gallery-section-v2 .thumbnail-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid transparent;
}

.gallery-section-v2 .thumbnail-item.active {
  border-color: #4CAF4C;
  box-shadow: 0 8px 24px rgba(76,175,76,0.4);
}

.gallery-section-v2 .thumbnail-item:hover {
  border-color: #E8720C;
  transform: scale(1.05);
}

.gallery-section-v2 .thumbnail-item img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  display: block;
}

.gallery-section-v2 .thumb-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.8);
  color: #FFFFFF;
  padding: 8px 12px;
  font-family: 'Open Sans', 'Arial', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 1024px) {
  .gallery-section-v2 .gallery-showcase {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .gallery-section-v2 .gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .gallery-section-v2 {
    padding: 60px 0;
  }
  
  .gallery-section-v2 h2 {
    font-size: 38px;
  }
  
  .gallery-section-v2 .featured-image img {
    height: 300px;
  }
  
  .gallery-section-v2 .gallery-thumbnails {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-section-v2 .featured-overlay {
    padding: 40px 24px 24px;
  }
  
  .gallery-section-v2 .featured-overlay h3 {
    font-size: 22px;
  }
}

/* === gallery_v3.css === */
.gallery-section-v3 {
  background: var(--ats-bg-light);
  padding: 80px 0;
  position: relative;
}

.gallery-section-v3 .gallery-container {
  max-width: var(--ats-container-max);
  margin: 0 auto;
  padding: 0 var(--ats-container-pad);
}

.gallery-section-v3 .gallery-header {
  text-align: center;
  margin-bottom: 48px;
}

.gallery-section-v3 h2 {
  font-family: var(--ats-font-heading);
  font-size: 48px;
  font-weight: 900;
  color: var(--ats-text-dark);
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0 0 20px 0;
}

.gallery-section-v3 .gallery-header p {
  font-family: var(--ats-font-body);
  font-size: 18px;
  font-weight: 400;
  color: var(--ats-green-primary);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.gallery-section-v3 .gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(180px, 1fr);
  gap: 16px;
}

.gallery-section-v3 .gallery-tile {
  position: relative;
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.gallery-section-v3 .gallery-tile img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-section-v3 .gallery-tile figcaption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 20px;
  background: linear-gradient(transparent 40%, rgba(0, 0, 0, 0.85));
  margin: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-section-v3 .gallery-tile-label {
  font-family: var(--ats-font-body);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 8px 14px;
  background: var(--ats-green-primary);
  border-radius: 6px;
}

.gallery-section-v3 .gallery-tile:hover img,
.gallery-section-v3 .gallery-tile:focus-within img {
  transform: scale(1.05);
}

.gallery-section-v3 .gallery-tile:hover figcaption,
.gallery-section-v3 .gallery-tile:focus-within figcaption {
  opacity: 1;
}

.gallery-section-v3 .gallery-tile--hero {
  grid-column: 1 / 8;
  grid-row: 1 / 3;
}

.gallery-section-v3 .gallery-tile:nth-child(2) {
  grid-column: 8 / 13;
  grid-row: 1 / 2;
}

.gallery-section-v3 .gallery-tile:nth-child(3) {
  grid-column: 8 / 13;
  grid-row: 2 / 3;
}

.gallery-section-v3 .gallery-tile:nth-child(4) {
  grid-column: 1 / 5;
  grid-row: 3 / 4;
}

.gallery-section-v3 .gallery-tile:nth-child(5) {
  grid-column: 5 / 9;
  grid-row: 3 / 4;
}

.gallery-section-v3 .gallery-tile:nth-child(6) {
  grid-column: 9 / 13;
  grid-row: 3 / 4;
}

.gallery-section-v3 .gallery-mosaic--page {
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: auto;
}

.gallery-section-v3 .gallery-mosaic--page .gallery-tile--hero,
.gallery-section-v3 .gallery-mosaic--page .gallery-tile:nth-child(n) {
  grid-column: auto;
  grid-row: auto;
}

.gallery-section-v3 .gallery-mosaic--page .gallery-tile img {
  aspect-ratio: 4 / 3;
  height: auto;
  min-height: 0;
}

.gallery-section-v3 .gallery-tile--video {
  aspect-ratio: 4 / 3;
  background: #1a1a1a;
}

.gallery-section-v3 .gallery-tile__video-trigger {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: none;
  margin: 0;
  background: none;
  cursor: pointer;
  position: relative;
  font: inherit;
  color: inherit;
  text-align: left;
}

.gallery-section-v3 .gallery-tile__video-trigger:focus-visible {
  outline: 3px solid var(--ats-green-primary);
  outline-offset: 3px;
}

.gallery-section-v3 .gallery-tile__video-preview {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  pointer-events: none;
  transition: transform 0.4s ease;
}

.gallery-section-v3 .gallery-tile__play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.32);
  transition: background 0.25s ease;
  pointer-events: none;
}

.gallery-section-v3 .gallery-tile__play-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(46, 139, 46, 0.95);
  color: #fff;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
  border: 3px solid rgba(255, 255, 255, 0.85);
  transition: transform 0.25s ease, background 0.25s ease;
}

.gallery-section-v3 .gallery-tile__play-icon svg {
  margin-left: 4px;
}

.gallery-section-v3 .gallery-tile--video:hover .gallery-tile__video-preview,
.gallery-section-v3 .gallery-tile--video:focus-within .gallery-tile__video-preview {
  transform: scale(1.05);
}

.gallery-section-v3 .gallery-tile--video:hover .gallery-tile__play-btn,
.gallery-section-v3 .gallery-tile--video:focus-within .gallery-tile__play-btn {
  background: rgba(0, 0, 0, 0.42);
}

.gallery-section-v3 .gallery-tile--video:hover .gallery-tile__play-icon,
.gallery-section-v3 .gallery-tile--video:focus-within .gallery-tile__play-icon {
  transform: scale(1.06);
  background: var(--ats-green-dark);
}

.gallery-video-modal {
  position: fixed;
  inset: 0;
  z-index: 11000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-sizing: border-box;
}

.gallery-video-modal[hidden] {
  display: none !important;
}

body.gallery-video-open {
  overflow: hidden;
}

.gallery-video-modal__backdrop {
  position: absolute;
  inset: 0;
  padding: 0;
  border: none;
  background: rgba(0, 0, 0, 0.82);
  cursor: pointer;
}

.gallery-video-modal__panel {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

.gallery-video-modal__video {
  display: block;
  width: 100%;
  max-height: min(80vh, 720px);
  vertical-align: top;
  background: #000;
}

.gallery-video-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease;
}

.gallery-video-modal__close:hover {
  background: rgba(0, 0, 0, 0.85);
}

.gallery-video-modal__close:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

@media (max-width: 768px) {
  .gallery-section-v3 .gallery-tile__play-icon {
    width: 56px;
    height: 56px;
  }

  .gallery-section-v3 .gallery-tile__play-icon svg {
    width: 24px;
    height: 24px;
  }

  .gallery-video-modal {
    padding: 16px;
  }

  .gallery-video-modal__video {
    max-height: 70vh;
  }
}

@media (max-width: 1024px) {
  .gallery-section-v3 .gallery-mosaic--page {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery-section-v3 .gallery-mosaic--page {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .gallery-section-v3 .gallery-mosaic--page {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .gallery-section-v3 .gallery-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
  }

  .gallery-section-v3 .gallery-tile--hero,
  .gallery-section-v3 .gallery-tile:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-section-v3 .gallery-tile--hero {
    grid-column: 1 / -1;
  }

  .gallery-section-v3 .gallery-tile img {
    min-height: 220px;
  }

  .gallery-section-v3 .gallery-tile figcaption {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .gallery-section-v3 {
    padding: 60px 0;
  }

  .gallery-section-v3 h2 {
    font-size: 36px;
  }

  .gallery-section-v3 .gallery-mosaic {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .gallery-section-v3 .gallery-tile img {
    min-height: 240px;
  }
}

/* === cta_v3.css === */
.cta-section-v3 {
  background: #2E8B2E;
  padding: 80px 0;
  position: relative;
}

.cta-section-v3::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 100px,
    rgba(76,175,76,0.05) 100px,
    rgba(76,175,76,0.05) 200px
  );
}

.cta-section-v3 .cta-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.cta-section-v3 .cta-header {
  text-align: center;
  margin-bottom: 64px;
}

.cta-section-v3 h2 {
  font-family: 'Montserrat', 'Arial Black', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: #FFFFFF;
  text-transform: uppercase;
  line-height: 1.05;
  margin: 0 0 20px 0;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.cta-section-v3 .cta-header p {
  font-family: 'Open Sans', 'Arial', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #E8E8E8;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.cta-section-v3 .cta-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}

.cta-section-v3 .cta-card {
  background: #FFFFFF;
  padding: 40px 32px;
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-section-v3 .cta-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.cta-section-v3 .cta-card.featured {
  background: linear-gradient(135deg, #FFFFFF 0%, #F0F8F0 100%);
  border: 2px solid #4CAF4C;
}

.cta-section-v3 .cta-card.emergency {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF5F5 100%);
  border: 2px solid #C0392B;
}

.cta-section-v3 .featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #4CAF4C;
  color: #FFFFFF;
  padding: 8px 20px;
  border-radius: 999px;
  font-family: 'Montserrat', 'Arial Black', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cta-section-v3 .card-icon {
  font-size: 48px;
  margin-bottom: 24px;
  display: block;
}

.cta-section-v3 h3 {
  font-family: 'Montserrat', 'Arial Black', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #1A1A1A;
  text-transform: uppercase;
  margin: 0 0 16px 0;
}

.cta-section-v3 .cta-card p {
  font-family: 'Open Sans', 'Arial', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #1A1A1A;
  line-height: 1.6;
  margin: 0 0 28px 0;
}

.cta-section-v3 .card-action {
  display: inline-block;
  background: #4CAF4C;
  color: #FFFFFF;
  font-family: 'Montserrat', 'Arial Black', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(76,175,76,0.3);
}

.cta-section-v3 .card-action:hover {
  background: #45A045;
  box-shadow: 0 6px 20px rgba(76,175,76,0.5);
  transform: translateY(-2px);
}

.cta-section-v3 .emergency-btn {
  background: #C0392B;
  box-shadow: 0 4px 16px rgba(192,57,43,0.3);
}

.cta-section-v3 .emergency-btn:hover {
  background: #A93226;
  box-shadow: 0 6px 20px rgba(192,57,43,0.5);
}

.cta-section-v3 .card-benefit {
  font-family: 'Open Sans', 'Arial', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #2E8B2E;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cta-section-v3 .trust-footer {
  background: rgba(255,255,255,0.1);
  padding: 32px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.cta-section-v3 .trust-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}

.cta-section-v3 .trust-point {
  font-family: 'Open Sans', 'Arial', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #FFFFFF;
  text-align: center;
}

@media (max-width: 1024px) {
  .cta-section-v3 .cta-cards {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 500px;
    margin: 0 auto 64px auto;
  }
}

@media (max-width: 768px) {
  .cta-section-v3 {
    padding: 60px 0;
  }
  
  .cta-section-v3 h2 {
    font-size: 36px;
  }
  
  .cta-section-v3 .cta-card {
    padding: 32px 24px;
  }
  
  .cta-section-v3 .trust-row {
    flex-direction: column;
    gap: 16px;
  }
}

/* === contact_v1.css === */
.contact-section-v1 {
  background: var(--ats-bg-white);
  padding: 80px 0;
  position: relative;
}

.contact-section-v1 .contact-container {
  max-width: var(--ats-container-max);
  margin: 0 auto;
  padding: 0 var(--ats-container-pad);
}

.contact-section-v1 .contact-header {
  text-align: center;
  margin-bottom: 56px;
}

.contact-section-v1 h2 {
  font-family: var(--ats-font-heading);
  font-size: 48px;
  font-weight: 900;
  color: var(--ats-text-dark);
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0 0 20px 0;
}

.contact-section-v1 .contact-header p {
  font-family: var(--ats-font-body);
  font-size: 18px;
  font-weight: 400;
  color: var(--ats-green-primary);
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto;
}

.contact-section-v1 .contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.contact-section-v1 .contact-details h3,
.contact-section-v1 .contact-form h3 {
  font-family: var(--ats-font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--ats-text-dark);
  text-transform: uppercase;
  margin: 0 0 24px 0;
}

.contact-section-v1 .contact-detail-list {
  list-style: none;
  margin: 0 0 32px 0;
  padding: 0;
}

.contact-section-v1 .contact-detail-list li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
  font-family: var(--ats-font-body);
  font-size: 16px;
  color: var(--ats-text-dark);
}

.contact-section-v1 .contact-detail-label {
  font-weight: 700;
  color: var(--ats-green-primary);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.05em;
}

.contact-section-v1 .contact-detail-list a {
  color: var(--ats-text-dark);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-section-v1 .contact-detail-list a:hover {
  color: var(--ats-green-primary);
}

.contact-section-v1 .contact-trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: var(--ats-font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--ats-green-primary);
}

.contact-section-v1 .contact-form {
  background: var(--ats-bg-light);
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
}

.contact-section-v1 .contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-section-v1 .contact-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.contact-section-v1 .contact-field-label {
  font-family: var(--ats-font-body);
  font-size: 13px;
  font-weight: 700;
  color: var(--ats-text-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contact-section-v1 .contact-field input,
.contact-section-v1 .contact-field textarea {
  font-family: var(--ats-font-body);
  font-size: 16px;
  color: var(--ats-text-dark);
  background: var(--ats-bg-white);
  border: 2px solid rgba(26, 26, 26, 0.1);
  border-radius: 8px;
  padding: 12px 14px;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
  width: 100%;
}

.contact-section-v1 .contact-field input:focus,
.contact-section-v1 .contact-field textarea:focus {
  outline: none;
  border-color: var(--ats-green-primary);
}

.contact-section-v1 .contact-submit {
  display: inline-block;
  width: 100%;
  margin-top: 8px;
  padding: 16px 32px;
  border: none;
  border-radius: 999px;
  background: var(--ats-green-bright);
  color: #fff;
  font-family: var(--ats-font-heading);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  box-shadow: 0 4px 16px rgba(76, 175, 76, 0.3);
}

.contact-section-v1 .contact-submit:hover {
  background: var(--ats-green-primary);
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .contact-section-v1 .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .contact-section-v1 {
    padding: 60px 0;
  }

  .contact-section-v1 h2 {
    font-size: 36px;
  }

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

  .contact-section-v1 .contact-detail-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .contact-section-v1 .contact-form {
    padding: 28px 20px;
  }
}

/* === contact_v3.css === */
.contact-section-v3 {
  background: var(--ats-bg-light);
  padding: 80px 0;
  position: relative;
}

.contact-section-v3 .contact-container {
  max-width: var(--ats-container-max);
  margin: 0 auto;
  padding: 0 var(--ats-container-pad);
}

.contact-section-v3 .contact-header {
  text-align: center;
  margin-bottom: 48px;
}

.contact-section-v3 h2 {
  font-family: var(--ats-font-heading);
  font-size: 48px;
  font-weight: 900;
  color: var(--ats-text-dark);
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0 0 20px 0;
}

.contact-section-v3 .contact-header p {
  font-family: var(--ats-font-body);
  font-size: 18px;
  font-weight: 400;
  color: var(--ats-green-primary);
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto;
}

.contact-section-v3 .contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.contact-section-v3 .contact-info-tile {
  background: var(--ats-bg-white);
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  border-top: 4px solid var(--ats-green-primary);
}

.contact-section-v3 .contact-info-tile--emergency {
  border-top-color: var(--ats-red-emergency);
}

.contact-section-v3 .contact-info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(46, 139, 46, 0.12);
  color: var(--ats-green-primary);
  font-family: var(--ats-font-heading);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.contact-section-v3 .contact-info-tile--emergency .contact-info-icon {
  background: rgba(192, 57, 43, 0.12);
  color: var(--ats-red-emergency);
}

.contact-section-v3 .contact-info-tile h3 {
  font-family: var(--ats-font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--ats-text-dark);
  text-transform: uppercase;
  margin: 0 0 10px 0;
}

.contact-section-v3 .contact-info-tile p {
  font-family: var(--ats-font-body);
  font-size: 14px;
  color: var(--ats-text-dark);
  line-height: 1.5;
  margin: 0 0 16px 0;
}

.contact-section-v3 .contact-info-link,
.contact-section-v3 .contact-info-static {
  font-family: var(--ats-font-body);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contact-section-v3 .contact-info-link {
  color: var(--ats-green-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-section-v3 .contact-info-link:hover {
  color: var(--ats-green-dark);
}

.contact-section-v3 .contact-info-link--emergency {
  color: var(--ats-red-emergency);
}

.contact-section-v3 .contact-info-link--emergency:hover {
  color: #922b21;
}

.contact-section-v3 .contact-info-static {
  color: var(--ats-text-dark);
}

.contact-section-v3 .contact-form-compact {
  background: var(--ats-bg-white);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

.contact-section-v3 .contact-form-compact-header {
  margin-bottom: 24px;
}

.contact-section-v3 .contact-form-compact-header h3 {
  font-family: var(--ats-font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--ats-text-dark);
  text-transform: uppercase;
  margin: 0 0 8px 0;
}

.contact-section-v3 .contact-form-compact-header p {
  font-family: var(--ats-font-body);
  font-size: 15px;
  color: var(--ats-text-dark);
  margin: 0;
  opacity: 0.85;
}

.contact-section-v3 .contact-form-compact-fields {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr auto;
  gap: 16px;
  align-items: end;
}

.contact-section-v3 .contact-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-section-v3 .contact-field--wide {
  grid-column: auto;
}

.contact-section-v3 .contact-field-label {
  font-family: var(--ats-font-body);
  font-size: 12px;
  font-weight: 700;
  color: var(--ats-text-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contact-section-v3 .contact-field input {
  font-family: var(--ats-font-body);
  font-size: 15px;
  color: var(--ats-text-dark);
  background: var(--ats-bg-light);
  border: 2px solid rgba(26, 26, 26, 0.1);
  border-radius: 8px;
  padding: 12px 14px;
  box-sizing: border-box;
  width: 100%;
  transition: border-color 0.2s ease;
}

.contact-section-v3 .contact-field input:focus {
  outline: none;
  border-color: var(--ats-green-primary);
}

.contact-section-v3 .contact-submit {
  padding: 14px 28px;
  border: none;
  border-radius: 999px;
  background: var(--ats-green-bright);
  color: #fff;
  font-family: var(--ats-font-heading);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease;
  box-shadow: 0 4px 16px rgba(76, 175, 76, 0.3);
}

.contact-section-v3 .contact-submit:hover {
  background: var(--ats-green-primary);
}

@media (max-width: 1024px) {
  .contact-section-v3 .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-section-v3 .contact-form-compact-fields {
    grid-template-columns: 1fr 1fr;
  }

  .contact-section-v3 .contact-field--wide {
    grid-column: 1 / -1;
  }

  .contact-section-v3 .contact-submit {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .contact-section-v3 {
    padding: 60px 0;
  }

  .contact-section-v3 h2 {
    font-size: 36px;
  }

  .contact-section-v3 .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-section-v3 .contact-form-compact {
    padding: 24px 20px;
  }

  .contact-section-v3 .contact-form-compact-fields {
    grid-template-columns: 1fr;
  }
}

/* === home page teasers & CTA === */
.site-preview-root--home .about-section-v2,
.site-preview-root--home .services-section-v1,
.site-preview-root--home .home-gallery-teaser {
  padding: 56px 0;
}

.site-preview-root--home .services-header {
  margin-bottom: 40px;
}

.site-preview-root--home .service-band {
  padding: 28px 40px;
  min-height: auto;
}

.home-section-action {
  margin: 28px 0 0;
}

.site-preview-root--home .about-section-v2 .home-section-action {
  margin-top: 48px;
}

.home-section-action--center {
  text-align: center;
}

.home-section-link {
  display: inline-block;
  font-family: var(--ats-font-heading);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ats-green-primary);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--ats-green-primary);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.home-section-link:hover {
  color: var(--ats-green-dark);
  border-color: var(--ats-green-dark);
}

.home-gallery-teaser {
  background: var(--ats-bg-white);
  padding: 56px 0;
}

.home-gallery-teaser .gallery-container {
  max-width: var(--ats-container-max);
  margin: 0 auto;
  padding: 0 var(--ats-container-pad);
}

.home-gallery-teaser .gallery-header {
  text-align: center;
  margin-bottom: 36px;
}

.home-gallery-teaser h2 {
  font-family: var(--ats-font-heading);
  font-size: 40px;
  font-weight: 900;
  color: var(--ats-text-dark);
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0 0 12px 0;
}

.home-gallery-teaser .gallery-header p {
  font-family: var(--ats-font-body);
  font-size: 17px;
  color: var(--ats-green-primary);
  margin: 0 auto;
  max-width: 520px;
}

.home-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.home-gallery-item {
  margin: 0;
}

.home-gallery-item img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.home-gallery-item figcaption {
  font-family: var(--ats-font-body);
  font-size: 13px;
  font-weight: 700;
  color: var(--ats-text-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 10px;
}

.home-cta-banner {
  background: linear-gradient(135deg, var(--ats-green-dark) 0%, var(--ats-green-primary) 100%);
  padding: 56px 0;
  text-align: center;
}

.home-cta-container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--ats-container-pad);
}

.home-cta-banner h2 {
  font-family: var(--ats-font-heading);
  font-size: 40px;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0 0 16px 0;
}

.home-cta-banner p {
  font-family: var(--ats-font-body);
  font-size: 17px;
  color: var(--ats-text-muted);
  line-height: 1.6;
  margin: 0 0 28px 0;
}

.home-cta-btn {
  display: inline-block;
  background: #fff;
  color: var(--ats-green-primary);
  font-family: var(--ats-font-heading);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 999px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
  .site-preview-root--home .about-section-v2,
  .site-preview-root--home .services-section-v1,
  .site-preview-root--home .home-gallery-teaser,
  .home-cta-banner {
    padding: 44px 0;
  }

  .home-gallery-teaser h2,
  .home-cta-banner h2 {
    font-size: 32px;
  }

  .home-gallery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .site-preview-root--home .service-band {
    padding: 24px 20px;
  }
}

/* === footer_v1.css === */
.footer-section-v1 {
  background: #1A6B1A;
  padding: 60px 0 32px;
  position: relative;
  color: #FFFFFF;
}

.footer-section-v1 .footer-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-section-v1 .footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-section-v1 .footer-brand h3 {
  font-family: 'Montserrat', 'Arial Black', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #E8720C;
  text-transform: uppercase;
  margin: 0 0 16px 0;
  letter-spacing: 0.02em;
}

.footer-section-v1 .footer-brand p {
  font-family: 'Open Sans', 'Arial', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #E8E8E8;
  line-height: 1.6;
  margin: 0;
  max-width: 350px;
}

.footer-section-v1 h4 {
  font-family: 'Montserrat', 'Arial Black', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
  margin: 0 0 20px 0;
  letter-spacing: 0.03em;
}

.footer-section-v1 .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section-v1 .footer-links li {
  margin-bottom: 12px;
}

.footer-section-v1 .footer-links a {
  font-family: 'Open Sans', 'Arial', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #E8E8E8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section-v1 .footer-links a:hover {
  color: #4CAF4C;
}

.footer-section-v1 .contact-info p {
  font-family: 'Open Sans', 'Arial', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #E8E8E8;
  margin: 0 0 12px 0;
  line-height: 1.5;
}

.footer-section-v1 .contact-info strong {
  color: #FFFFFF;
  font-weight: 600;
}

.footer-section-v1 .contact-info a {
  color: #E8E8E8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section-v1 .contact-info a:hover {
  color: #4CAF4C;
}

.footer-section-v1 .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 32px;
}

.footer-section-v1 .footer-legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-section-v1 .footer-legal p {
  font-family: 'Open Sans', 'Arial', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #E8E8E8;
  margin: 0;
}

.footer-section-v1 .legal-links {
  display: flex;
  gap: 24px;
}

.footer-section-v1 .legal-links a {
  font-family: 'Open Sans', 'Arial', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #E8E8E8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section-v1 .legal-links a:hover {
  color: #4CAF4C;
}

@media (max-width: 1024px) {
  .footer-section-v1 .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .footer-section-v1 .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .footer-section-v1 {
    padding: 48px 0 24px;
  }
  
  .footer-section-v1 .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-section-v1 .footer-brand {
    grid-column: span 1;
  }
  
  .footer-section-v1 .footer-legal {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  
  .footer-section-v1 .legal-links {
    justify-content: center;
  }
}
