/* latin */
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/fonts/oswald-500-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin */
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/fonts/source-sans-3-400-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #F0EBE0;
  --bg-alt: #E4DCC6;
  --bg-deep: #1A2520;
  --green: #3A6B3E;
  --green-dark: #2C5430;
  --green-darker: #12351F;
  --green-light: #5E8B57;
  --green-soft: rgba(58, 107, 62, 0.10);
  --amber: #E0922E;
  --amber-dark: #C97D1E;
  --ink: #1A2520;
  --ink-2: #28352F;
  --muted: #4E5A50;
  --line: #D4CAB5;
  --gold: #A06B35;
  --font-h: 'Oswald', -apple-system, sans-serif;
  --font-b: 'Source Sans 3', -apple-system, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --max-w: 1180px;
  --r-sm: 4px;
  --r-md: 6px;
  --shadow-card: 0 1px 2px rgba(28,37,32,0.04), 0 4px 12px rgba(28,37,32,0.06);
  --shadow-elev: 0 2px 4px rgba(28,37,32,0.06), 0 8px 24px rgba(28,37,32,0.08);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 899px) {
  :root {
    --font-h: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-b: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  }
}

html { scroll-behavior: smooth; }
*, *::before, *::after { box-sizing: border-box; }
body {
  font-family: var(--font-b);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
@media (max-width: 768px) {
  body { padding-bottom: calc(70px + env(safe-area-inset-bottom)); }
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--green); color: white; }

h1, h2, h3, h4 {
  font-family: var(--font-h);
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.015em;
  font-weight: 700;
}
h1 { font-size: clamp(2.35rem, 6vw, 4.35rem); font-weight: 500; line-height: 1.02; text-transform: uppercase; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.85rem, 3.8vw, 2.75rem); font-weight: 500; text-transform: uppercase; }
h3 { font-size: 1.35rem; font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }
p { color: var(--ink-2); }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
section { padding: clamp(56px, 7vw, 96px) 0; }

/* TOP CALL BAR */
.callbar {
  background: var(--green);
  color: white;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-align: center;
}
.callbar a { color: white; font-weight: 700; text-decoration: underline; }
.callbar .sep { margin: 0 12px; opacity: 0.5; }

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 253, 251, 0.95);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.brand {
  font-family: var(--font-h);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.brand-mark {
  display: inline-block;
  width: 36px;
  height: 36px;
  background: var(--green);
  color: white;
  border-radius: 0px;
  text-align: center;
  line-height: 36px;
  font-size: 18px;
  margin-right: 10px;
  vertical-align: middle;
}
.brand-name { vertical-align: middle; font-size: 1.1rem; }
.brand-tagline {
  display: block;
  font-family: var(--font-b);
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: -2px;
  margin-left: 46px;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s var(--ease);
  letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--green); }
.nav-cta {
  background: #A65B12;
  color: white !important;
  padding: 10px 20px;
  border-radius: var(--r-md);
  font-size: 14px;
  font-weight: 700 !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s var(--ease);
  box-shadow: 0 4px 14px rgba(224, 146, 46, 0.25);
}
.nav-cta:hover { background: var(--amber-dark); color: white !important; transform: translateY(-1px); }
.nav-cta svg { flex-shrink: 0; }

@media (max-width: 768px) {
  .nav-inner { flex-wrap: wrap; }
  .nav-links {
    display: flex; flex-wrap: wrap; order: 3; width: 100%;
    gap: 8px 18px; margin-top: 10px; padding-top: 10px;
    border-top: 1px solid var(--line); justify-content: flex-start;
  }
  .nav-links li { flex: 0 0 auto; }
  .nav-links a { font-size: 13px; }
  .nav-cta { display: inline-flex; }
  .brand-tagline { display: none; }
}
@media (max-width: 520px) {
  html, body { overflow-x: hidden; }
  .callbar {
    padding: 8px 14px;
    line-height: 1.6;
  }
  .callbar .sep { margin: 0 7px; }
  .nav-inner {
    padding: 14px 24px;
    gap: 12px;
  }
  .brand-name { font-size: 1rem; }
  .nav-cta {
    flex-shrink: 0;
    padding: 10px 14px;
    font-size: 0;
    white-space: nowrap;
  }
  .nav-cta::after {
    content: "Call";
    font-size: 13px;
  }
  .hero h1 {
    font-size: 2.55rem;
    line-height: 1.06;
  }
  .hero p {
    max-width: 100%;
  }
  .trust-grid {
    font-size: 11px;
    line-height: 1.35;
  }
  .trust-grid > div {
    min-width: 0;
    text-align: center;
  }
}

/* HERO */
.hero {
  background-color: #1A2520;
  background-image: linear-gradient(rgba(28, 37, 32, 0.65), rgba(28, 37, 32, 0.85)),
                    url('/images/resp/hero-720.webp');
  background-position: center;
  background-size: cover;
  color: white;
  padding: clamp(72px, 12vw, 140px) 0;
}
@media (min-width: 900px) {
  .hero { background-image: linear-gradient(rgba(28, 37, 32, 0.65), rgba(28, 37, 32, 0.85)), url('/images/resp/hero-1440.webp'); }
}
@media (min-width: 1400px) {
  .hero { background-image: linear-gradient(rgba(28, 37, 32, 0.65), rgba(28, 37, 32, 0.85)), url('/images/resp/hero-1920.webp'); }
}
.hero h1 { color: white; }
.hero h1 strong { color: #b8d4a8; font-weight: 800; }
.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-b);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b8d4a8;
  margin-bottom: 14px;
  font-weight: 600;
}
.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: rgba(255, 255, 255, 0.92);
  max-width: 620px;
  margin: 18px 0 32px;
  line-height: 1.6;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 999px;
  color: white;
  font-size: 14px;
  font-weight: 500;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero-rating .hr-stars { color: #E8A23A; letter-spacing: 1px; font-size: 13px; }
.hero-rating strong { font-weight: 700; }
.hero-rating .hr-sep { color: rgba(255, 255, 255, 0.5); }
.hero-rating .hr-text { color: rgba(255, 255, 255, 0.85); }
.btn-primary {
  background: #A65B12;
  color: white;
  padding: 16px 30px;
  border-radius: var(--r-md);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s var(--ease);
  box-shadow: 0 6px 22px rgba(224, 146, 46, 0.32);
}
.btn-primary:hover {
  background: #8F4A0C;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(224, 146, 46, 0.45);
}
.btn-primary:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}
.btn-primary svg { flex-shrink: 0; }
.btn-outline {
  background: var(--green);
  color: white;
  padding: 16px 30px;
  border-radius: var(--r-md);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  border: 1.5px solid var(--green);
  transition: all 0.2s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 22px rgba(45, 90, 46, 0.28);
}
.btn-outline:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: white;
  transform: translateY(-2px);
}
.btn-outline:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

/* TRUST STRIP */
.trust {
  background: var(--green);
  color: white;
  padding: 20px 0;
}
.trust-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(18, 53, 31, 0.95);
  color: white;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  margin-right: 4px;
}
.trust-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.trust-grid > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.trust-grid svg { flex-shrink: 0; }
@media (max-width: 768px) {
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 12px; font-size: 12px; }
}
@media (max-width: 520px) {
  .hero h1 {
    max-width: 300px;
    font-size: 1.65rem;
    line-height: 1.1;
  }
  .hero h1 strong { display: block; }
  .hero-sub {
    max-width: 260px;
    font-size: 14.5px;
    line-height: 1.55;
    overflow-wrap: anywhere;
  }
  .section-h {
    max-width: 300px;
  }
  .service-card {
    max-width: 342px;
  }
  .service-card p {
    overflow-wrap: anywhere;
  }
  .trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px 14px;
    font-size: 12px;
    line-height: 1.3;
  }
}
@media (max-width: 768px) {
  .hero h1 {
    max-width: 340px;
    font-size: 1.65rem;
    line-height: 1.1;
  }
  .hero h1 strong { display: block; }
  .hero-sub,
  .section-h {
    max-width: 320px;
  }
  .hero-sub {
    font-size: 14.5px;
    line-height: 1.55;
    overflow-wrap: anywhere;
  }
  .trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px 14px;
    font-size: 12px;
    line-height: 1.3;
  }
  .service-card {
    max-width: 342px;
  }
  .service-card p {
    overflow-wrap: anywhere;
  }
}

/* SECTION HEADER */
.section-eyebrow {
  font-family: var(--font-b);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
}
.section-h h2 { margin-bottom: 14px; }
.section-h .lead {
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  color: var(--muted);
  max-width: 680px;
  line-height: 1.65;
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 44px;
}
.service-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s var(--ease);
  box-shadow: var(--shadow-card);
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--green);
  box-shadow: var(--shadow-elev);
}
.service-card .img-wrap {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-alt);
}
.service-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.service-card:hover .img-wrap img { transform: scale(1.05); }
.service-card .body {
  padding: 22px 24px 24px;
}
.service-card h3 {
  margin-bottom: 8px;
  color: var(--ink);
}
.service-card p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 14px;
}
.service-card .link {
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border: 1.5px solid var(--green);
  border-radius: 999px;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), gap 0.2s var(--ease);
}
.service-card .link:hover { background: var(--green); color: #fff; gap: 9px; }
.service-card .link:focus-visible { outline: 2px solid var(--green); outline-offset: 2px; }
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

/* WHY US */
#why .section-h { text-align: center; }
#why .section-h .lead { margin-left: auto; margin-right: auto; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 44px;
}
.why-card {
  text-align: center;
  padding: 28px 18px 24px;
  background: var(--bg-alt);
  border-radius: 12px;
}
.why-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-card h3 { margin-bottom: 8px; font-size: 1.05rem; }
.why-card p { font-size: 14px; color: var(--muted); line-height: 1.55; }
@media (max-width: 768px) { .why-grid { grid-template-columns: 1fr 1fr; } }

/* GALLERY */
.gallery-section { background: var(--bg-alt); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 44px;
}
.gallery-grid img {
  aspect-ratio: 1 / 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 25%;
  border-radius: 0px;
  background: var(--bg);
  transition: transform 0.4s var(--ease);
}
.gallery-grid img:hover { transform: scale(1.02); }
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
}
@media (max-width: 520px) { .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; } }

/* REVIEWS */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 44px;
}
.review-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px 26px 26px;
  transition: border-color 0.2s var(--ease);
}
.review-card:hover { border-color: var(--green); }
.review-stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.review-text {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.65;
  margin-bottom: 18px;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  font-family: var(--font-h);
}
.review-meta { line-height: 1.3; }
.review-meta strong { display: block; font-size: 14.5px; color: var(--ink); font-weight: 700; }
.review-meta small { font-size: 12.5px; color: var(--muted); }
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr; } }

/* SERVICE AREA */
.area-section { background: var(--bg-deep); color: white; }
.area-section h2 { color: white; }
.area-section .section-eyebrow { color: #b8d4a8; }
.area-section .section-h .lead { color: rgba(255, 255, 255, 0.9); }
.area-section p { color: rgba(255, 255, 255, 0.88); }
.area-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 44px;
}
.area-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 22px 18px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.25s var(--ease);
}
.area-card:hover {
  background: rgba(184, 212, 168, 0.1);
  border-color: #b8d4a8;
}
.area-card strong {
  display: block;
  font-family: var(--font-h);
  font-size: 1.05rem;
  color: white;
  margin-bottom: 4px;
  font-weight: 700;
}
.area-card small { color: rgba(255, 255, 255, 0.6); font-size: 12px; }
@media (max-width: 900px) { .area-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 500px) { .area-grid { grid-template-columns: 1fr 1fr; } }

/* FAQ */
.faq-list {
  margin-top: 36px;
  max-width: 820px;
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.faq-item summary {
  font-family: var(--font-h);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 24px;
  color: var(--green);
  font-weight: 400;
  transition: transform 0.2s var(--ease);
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  margin-top: 14px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 740px;
}

/* CONTACT */
.contact-section { background: var(--green); color: white; }
.contact-section h2 { color: white; }
.contact-section .section-eyebrow { color: #E3F1D8; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-top: 44px;
  align-items: start;
}
.contact-info p { color: rgba(255, 255, 255, 0.85); margin-bottom: 18px; max-width: 460px; line-height: 1.7; font-size: 15.5px; }
.contact-line {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 18px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  font-size: 15px;
}
.contact-line strong { color: white; font-weight: 700; }
.contact-line a { color: white; font-weight: 700; }

.form {
  background: white;
  padding: 32px 30px;
  border-radius: 14px;
  color: var(--ink);
}
.form h3 {
  font-size: 1.25rem;
  margin-bottom: 6px;
  color: var(--ink);
}
.form p { font-size: 13.5px; color: var(--muted); margin-bottom: 22px; }
.form-row { margin-bottom: 14px; }
.form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.form input, .form select, .form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 0px;
  font-family: var(--font-b);
  font-size: 14.5px;
  color: var(--ink);
  background: white;
  transition: border-color 0.2s var(--ease);
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none;
  border-color: var(--green);
}
.form textarea { min-height: 90px; resize: vertical; }
.form .submit {
  background: var(--green);
  color: white;
  padding: 14px 24px;
  border: 0;
  border-radius: 0px;
  font-size: 14.5px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  margin-top: 8px;
  transition: background 0.2s var(--ease);
}
.form .submit:hover { background: var(--green-dark); }
.form .privacy {
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 12px;
  text-align: center;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* FOOTER */
.foot {
  background: #131a17;
  color: rgba(255, 255, 255, 0.7);
  padding: 48px 0 24px;
  font-size: 14px;
}
.foot-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}
.foot h4 {
  color: white;
  font-size: 14px;
  margin-bottom: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.foot ul { list-style: none; line-height: 2; }
.foot li a { color: rgba(255, 255, 255, 0.65); transition: color 0.2s var(--ease); font-size: 13.5px; }
.foot li a:hover { color: white; }
.foot-brand p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13.5px;
  line-height: 1.65;
  margin-top: 14px;
  max-width: 320px;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-family: var(--font-h);
  font-size: 1.1rem;
}
.footer-logo img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  background: transparent;
}
.foot-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 18px 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 768px) {
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .foot-brand { grid-column: 1 / -1; }
}

/* Reveal */
.reveal { opacity: 1; transform: none; transition: opacity 0.25s var(--ease), transform 0.25s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* HERO VIDEO BACKGROUND (added 2026-05-20) */
.hero {
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(rgba(28,37,32,0.62), rgba(28,37,32,0.84)), url('/images/resp/hero-720.webp');
  background-position: center;
  background-size: cover;
}
@media (min-width: 900px) {
  .hero { background-image: linear-gradient(rgba(28,37,32,0.62), rgba(28,37,32,0.84)), url('/images/resp/hero-1440.webp'); }
}
@media (min-width: 1400px) {
  .hero { background-image: linear-gradient(rgba(28,37,32,0.62), rgba(28,37,32,0.84)), url('/images/resp/hero-1920.webp'); }
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.hero-video-mobile { display: block; }
.hero-video-desktop { display: none; }
@media (min-width: 900px) {
  .hero-video-mobile { display: none; }
  .hero-video-desktop { display: block; }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(rgba(28, 37, 32, 0.55), rgba(28, 37, 32, 0.82));
  z-index: 1;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }
@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none !important; }
}

/* LOGO MARK (img replacement for emoji) */
img.brand-mark {
  display: inline-block;
  width: 40px; height: 40px;
  margin-right: 12px;
  vertical-align: middle;
  object-fit: contain;
  background: transparent;
  border-radius: 0;
  line-height: 0;
}
img.brand-mark.placeholder {
  background: var(--green);
  border-radius: 0px;
  padding: 6px;
}

/* SERVICE CARD META ROW (team size + duration) */
.service-card .meta-row {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-family: var(--font-b);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--muted);
}
.service-card .meta-row span { display: inline-flex; align-items: center; gap: 5px; color: var(--green); }
.service-card .meta-row span::before {
  content: ""; display: inline-block;
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
}

/* SERVICES MONTAGE VIDEO BLOCK */
.work-video-section {
  background: var(--bg-deep);
  padding: 0;
  position: relative;
  overflow: hidden;
}
.work-video-section .video-wrap {
  position: relative;
  max-height: 540px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.work-video-section video {
  width: 100%;
  max-width: 1180px;
  height: auto;
  display: block;
}
.work-video-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: linear-gradient(rgba(28, 37, 32, 0.4), rgba(28, 37, 32, 0.7));
  color: white;
  text-align: center;
  padding: 32px 24px;
  z-index: 2;
}
.work-video-overlay .eyebrow {
  font-family: var(--font-b);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b8d4a8;
  font-weight: 700;
  margin-bottom: 12px;
}
.work-video-overlay h2 {
  color: white;
  font-size: clamp(1.65rem, 3.3vw, 2.2rem);
  margin-bottom: 14px;
  max-width: 680px;
}
.work-video-overlay p {
  color: rgba(255,255,255,0.92);
  max-width: 540px;
  font-size: 15px;
  line-height: 1.6;
}

/* SATISFACTION GUARANTEE BLOCK */
.guarantee-section {
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
  padding: clamp(48px, 7vw, 80px) 0;
}
.guarantee-card {
  max-width: 880px;
  margin: 0 auto;
  background: #fffdf7;
  border: 2px solid var(--green);
  border-radius: 18px;
  padding: clamp(28px, 4vw, 40px);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(18px, 3vw, 28px);
  align-items: center;
  box-shadow: 0 18px 44px rgba(28, 28, 28, 0.08);
}
.guarantee-seal {
  width: 126px; height: 126px;
  border-radius: 18px;
  background: var(--green);
  color: white;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.25;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.24);
}
.guarantee-card h3 {
  font-family: var(--font-h);
  font-size: clamp(1.3rem, 2.6vw, 1.65rem);
  margin-bottom: 8px;
  color: var(--ink);
}
.guarantee-card p {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}
@media (max-width: 720px) {
  .guarantee-card { grid-template-columns: 1fr; text-align: center; }
  .guarantee-seal { margin: 0 auto; }
}

/* SERVICE CARD — BEFORE/AFTER SPLIT */
.service-card .img-wrap.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--ink);
}
.service-card .img-wrap.split > div {
  position: relative;
  overflow: hidden;
}
.service-card .img-wrap.split img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.service-card:hover .img-wrap.split img { transform: scale(1.05); }
.service-card .img-wrap.split .ba-label {
  position: absolute;
  bottom: 8px;
  left: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
  background: rgba(28, 37, 32, 0.85);
  padding: 4px 8px;
}

/* CONTACT LINE ICONS (monochrome — replaces colored emoji on the green band) */
.contact-line .ci {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.92);
  margin-top: 1px;
}

/* MOBILE STICKY CTA BAR */
.mobile-bar { display: none; }
@media (max-width: 768px) {
  .mobile-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 200;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(253, 253, 251, 0.96);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border-top: 1px solid var(--line);
    box-shadow: 0 -4px 18px rgba(28, 37, 32, 0.13);
  }
  .mobile-bar a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 50px;
    border-radius: var(--r-md);
    font-family: var(--font-b);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: background 0.15s var(--ease);
  }
  .mobile-bar svg { flex-shrink: 0; }
  .mobile-bar .mb-call {
    background: #A65B12;
    color: #fff;
    box-shadow: 0 4px 14px rgba(224, 146, 46, 0.30);
  }
  .mobile-bar .mb-call:active { background: #8F4A0C; }
  .mobile-bar .mb-quote {
    background: var(--green);
    color: #fff;
    box-shadow: 0 4px 14px rgba(45, 90, 46, 0.28);
  }
  .mobile-bar .mb-quote:active { background: var(--green-dark); }
}
