@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter+Tight:wght@400;500;600;700&display=swap');

/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */
:root {
  --primary:        #82B11C;
  --accent:         #599418;
  --primary-dark:   #6a9016;
  --canvas:         #FAF8F2;
  --surface:        #F1EDE3;
  --surface-2:      #E8E2D5;
  --ink:            #1A2010;
  --muted:          #5A5E4A;
  --muted-light:    #8a8f76;
  --border:         rgba(130,177,28,0.22);
  --border-ink:     rgba(26,32,16,0.12);
  --shadow-sm:      0 2px 12px rgba(26,32,16,0.08);
  --shadow-md:      0 8px 32px rgba(26,32,16,0.12);
  --shadow-lg:      0 18px 48px rgba(26,32,16,0.16);
  --rail-left:      72px;
  --radius:         6px;
  --header-height:  72px;
  --section-pad:    clamp(72px, 9vh, 120px);
  --max-w:          1240px;
  --max-w-wide:     1400px;
}

@media (max-width: 900px) {
  :root {
    --header-height: 60px;
    --rail-left:     24px;
  }
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Inter Tight', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--canvas);
  overflow-x: hidden;
}

/* Universal image cap */
img { max-width: 100%; height: auto; display: block; }

section img:not(.hero-bg):not([class*="full-bleed"]):not([class*="fullbleed"]) {
  max-height: 640px;
  object-fit: cover;
}

.nav img, header img, .header img, .nav-logo img, .logo img {
  max-height: 44px !important;
  max-width: 200px !important;
  width: auto !important;
  align-self: flex-start !important;
  object-fit: contain !important;
  flex: 0 0 auto !important;
}

.footer img, footer img {
  max-height: 48px !important;
  max-width: 200px !important;
  width: auto !important;
  align-self: flex-start !important;
  object-fit: contain !important;
  flex: 0 0 auto !important;
}

.hero { position: relative; overflow: hidden; }
.hero-bg, .hero > img:first-of-type {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero-inner, .hero > :not(img):not(.hero-bg):not(.hero-overlay) {
  position: relative; z-index: 2;
}
.hero-overlay { position: absolute; inset: 0; z-index: 1; pointer-events: none; }

/* Heading anchors */
h1 a, h2 a, h3 a, .hero-title a, .hero-eyebrow a, .hero-sub a {
  color: inherit; text-decoration: none; border-bottom: 0;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.display-h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.02em;
}

p { line-height: 1.7; }

strong { font-weight: 700; }

a { color: var(--ink); transition: color 150ms; text-decoration: none; }
a:hover { color: var(--primary); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }

/* Eyebrow label */
.eyebrow, .section-eyebrow, .about-feature-eyebrow, .hero-eyebrow,
.about-feature-eyebrow {
  display: inline-block;
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--primary);
  margin-bottom: 16px;
}

/* ============================================================
   LAYOUT CONTAINERS
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(24px, 5vw, 72px);
  padding-right: clamp(24px, 5vw, 72px);
}

.container-full {
  width: 100%;
  padding-left: clamp(24px, 5vw, 72px);
  padding-right: clamp(24px, 5vw, 72px);
}

.section-pad { padding-top: var(--section-pad); padding-bottom: var(--section-pad); }
.section-canvas { background: var(--canvas); }
.section-surface { background: var(--surface); }
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: clamp(24px, 5vw, 72px);
  padding-right: clamp(24px, 5vw, 72px);
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
}

/* ============================================================
   PAGE RAIL — continuous olive left-spine
   ============================================================ */
.page-rail {
  position: fixed;
  left: var(--rail-left);
  top: 0;
  bottom: 0;
  width: 2px;
  background: #82B11C;
  opacity: 0.35;
  z-index: 500;
  pointer-events: none;
}

@media (max-width: 640px) { .page-rail { display: none; } }

/* ============================================================
   SITE HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--canvas);
  border-bottom: 1px solid var(--border-ink);
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
  gap: 32px;
}

.nav-logo {
  flex: 0 0 auto;
  text-decoration: none;
}

.nav-logo img {
  max-height: 44px !important;
  max-width: 200px !important;
  width: auto !important;
  object-fit: contain !important;
}

.nav-pages {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: center;
}

.nav-pages a {
  display: inline-block;
  padding: 6px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  transition: color 150ms;
}

.nav-pages a:hover {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.nav-pages a[aria-current="page"] {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
}

.nav-cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--ink);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  transition: filter 150ms;
}

.nav-cta:hover {
  color: var(--ink);
  filter: brightness(0.92);
  text-decoration: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--ink);
  font-size: 24px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
}

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

  .nav-pages {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--canvas);
    padding: 24px;
    gap: 8px;
    border-bottom: 1px solid var(--border-ink);
    z-index: 800;
    justify-content: flex-start;
  }

  .nav-pages.open { display: flex; }

  .nav-cta .nav-cta-label { display: none; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: filter 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.btn:hover { text-decoration: none; transform: translateY(-1px); }

.btn-primary {
  background: var(--primary);
  color: var(--ink);
}
.btn-primary:hover { filter: brightness(0.92); color: var(--ink); }

.btn-dark, .btn-ink {
  background: var(--ink);
  color: var(--canvas);
}
.btn-dark:hover, .btn-ink:hover { filter: brightness(1.15); color: var(--canvas); }

.btn-ghost-ink, .btn-outline-ink {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn-ghost-ink:hover, .btn-outline-ink:hover {
  background: var(--ink);
  color: var(--canvas);
}

.btn-phone {
  background: var(--primary);
  color: var(--ink);
}
.btn-phone:hover { filter: brightness(0.92); color: var(--ink); }

/* ============================================================
   MOBILE CALL PILL
   ============================================================ */
.mobile-call-pill {
  display: none;
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 999;
  background: var(--primary);
  color: var(--ink);
  padding: 14px 22px;
  border-radius: 999px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  align-items: center;
  gap: 8px;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
  transition: filter 150ms;
}
.mobile-call-pill:hover { filter: brightness(0.92); text-decoration: none; color: var(--ink); }
.mobile-call-pill svg { width: 18px; height: 18px; }

@media (max-width: 900px) { .mobile-call-pill { display: inline-flex; } }

/* ============================================================
   HERO
   ============================================================ */
#hero.hero {
  min-height: 94vh;
  display: flex;
  align-items: flex-end;
}

.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}

.hero-overlay {
  background: linear-gradient(
    135deg,
    rgba(26,32,16,0.72) 0%,
    rgba(26,32,16,0.55) 45%,
    rgba(26,32,16,0.12) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: clamp(48px, 7vw, 96px) clamp(24px, 7vw, 112px);
  max-width: 800px;
  padding-bottom: clamp(64px, 8vh, 112px);
}

.hero-eyebrow {
  color: var(--primary);
  margin-bottom: 20px;
}

.hero-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(56px, 9vw, 128px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--canvas);
  max-width: 14ch;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.6;
  color: rgba(250,248,242,0.85);
  max-width: 52ch;
  margin-bottom: 28px;
}

.hero-trust-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.trust-chip {
  display: inline-block;
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--canvas);
  border: 1px solid rgba(130,177,28,0.7);
  background: rgba(250,248,242,0.08);
  padding: 7px 14px;
  border-radius: var(--radius);
  backdrop-filter: blur(4px);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

@media (max-width: 640px) {
  .hero-inner { padding: 40px 24px 56px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--canvas);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

.trust-strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 72px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.trust-badge {
  display: inline-block;
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--ink);
  border: 1px solid var(--primary);
  padding: 8px 16px;
  border-radius: var(--radius);
  background: var(--canvas);
}

.trust-sep {
  width: 1px;
  height: 20px;
  background: var(--primary);
  opacity: 0.4;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .trust-sep { display: none; }
  .trust-badge { font-size: 11px; padding: 6px 12px; }
}

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee-strip {
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid var(--border-ink);
  border-bottom: 1px solid var(--border-ink);
  background: var(--surface);
  max-height: 64px;
  position: relative;
  z-index: 1;
}

.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  width: max-content;
}

.marquee-strip:hover .marquee-track { animation-play-state: paused; }

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(12px, 1.2vw, 15px);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.2;
}

.marquee-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  background: var(--canvas);
}

.services .container {
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
}

.services .eyebrow,
.services .section-eyebrow {
  display: block;
  margin-bottom: 12px;
}

.services .display-h2 {
  margin-bottom: 40px;
}

.services-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--section-pad) clamp(24px, 5vw, 72px);
}

.section-head {
  margin-bottom: 40px;
}

.section-head .eyebrow { display: block; margin-bottom: 12px; }
.section-head h2 { font-size: clamp(36px, 5vw, 64px); }

/* Tab strip */
.services-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border-ink);
  padding-bottom: 20px;
}

.service-tab {
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 9px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border-ink);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  transition: background 180ms, border-color 180ms, color 180ms;
  white-space: nowrap;
}

.service-tab:hover {
  border-color: var(--primary);
  background: rgba(130,177,28,0.08);
}

.service-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--ink);
}

/* Service panels */
.services-panels { position: relative; }

.service-panel {
  display: none;
  grid-template-columns: 45% 1fr;
  gap: 0;
  min-height: 480px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-ink);
}

.service-panel.active { display: grid; }

.service-panel-img {
  position: relative;
  overflow: hidden;
  background: var(--surface-2);
  min-height: 480px;
}

.service-panel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
  position: absolute;
  inset: 0;
}

.service-panel-body {
  padding: clamp(28px, 4vw, 48px);
  background: var(--canvas);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.service-panel-body h3 {
  font-size: clamp(26px, 3.5vw, 40px);
  line-height: 1.05;
  margin-bottom: 8px;
}

.service-panel-body p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
}

.service-panel-body .btn {
  margin-top: 8px;
  align-self: flex-start;
}

/* Services.html visual panel (decorative) */
.service-panel-visual {
  position: relative;
  background: var(--surface);
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-panel-visual-bar {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--primary);
}

.service-panel-visual-shape {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 2px solid rgba(130,177,28,0.18);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.service-panel-visual-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  padding: 32px;
}

.service-num {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(64px, 8vw, 96px);
  line-height: 1;
  color: rgba(130,177,28,0.25);
  font-weight: 400;
}

.service-category-tag {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--primary);
  border: 1px solid var(--primary);
  padding: 6px 14px;
  border-radius: var(--radius);
}

@media (max-width: 900px) {
  .service-panel { grid-template-columns: 1fr; min-height: auto; }
  .service-panel-img { min-height: 260px; position: relative; }
  .service-panel-visual { min-height: 200px; }
}

/* ============================================================
   SERVICES HERO (services.html)
   ============================================================ */
.services-hero {
  background: var(--ink);
  padding: clamp(64px, 10vh, 120px) clamp(24px, 5vw, 72px);
}

.services-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.services-hero-inner h1 {
  font-size: clamp(48px, 7vw, 96px);
  color: var(--canvas);
  max-width: 16ch;
  line-height: 1.0;
  margin-top: 16px;
}

.services-hero-inner .eyebrow { color: var(--primary); }

.services-hero-inner p { color: rgba(250,248,242,0.75); font-size: 17px; max-width: 54ch; margin-top: 20px; }

/* ============================================================
   REVIEWS
   ============================================================ */
#reviews .container { padding-top: var(--section-pad); padding-bottom: var(--section-pad); }

#reviews .eyebrow { display: block; margin-bottom: 12px; }

#reviews > .container > h2,
#reviews > .container > .display-h2 {
  font-size: clamp(32px, 4.5vw, 56px);
  margin-bottom: 40px;
}

.reviews-rating-wrap {
  background: var(--surface);
  border-radius: 12px;
  padding: 36px clamp(24px, 5vw, 64px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
  border: 1px solid var(--border);
}

.reviews-rating-wrap a { text-decoration: none; }
.reviews-rating-wrap a:hover { text-decoration: none; }

.rating-stars {
  display: flex;
  gap: 4px;
  align-items: center;
}

.rating-stars svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
  fill: var(--primary);
}

.rating-big {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(36px, 5vw, 56px);
  color: var(--ink);
  line-height: 1;
}

.rating-sub {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.rating-link { display: block; }

.reviews-pull {
  background: var(--surface);
  border-radius: 12px;
  padding: 40px clamp(24px, 4vw, 56px);
  border-left: 3px solid var(--primary);
  max-width: 680px;
  margin: 0 auto;
}

.reviews-pull-quote {
  font-family: 'DM Serif Display', Georgia, serif;
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 20px;
}

.reviews-pull-attr {
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

/* ============================================================
   GALLERY
   ============================================================ */
#gallery .container { padding-top: var(--section-pad); padding-bottom: var(--section-pad); }
#gallery .eyebrow { display: block; margin-bottom: 12px; }
#gallery .display-h2 { margin-bottom: 36px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  position: relative;
}

.gallery-grid img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  max-height: none;
  border-radius: var(--radius);
  display: block;
  transition: transform 400ms ease;
}

.gallery-grid img:hover { transform: scale(1.01); }

.gallery-stat {
  border-radius: var(--radius);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.gallery-stat-ink {
  background: var(--ink);
}

.gallery-stat-olive {
  background: var(--primary);
}

.gallery-stat-num {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 400;
  line-height: 1;
  color: var(--canvas);
}

.gallery-stat-ink .gallery-stat-num { color: var(--canvas); }
.gallery-stat-olive .gallery-stat-num { color: var(--ink); }

.gallery-stat-label {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 10px;
}

.gallery-stat-ink .gallery-stat-label { color: rgba(250,248,242,0.65); }
.gallery-stat-olive .gallery-stat-label { color: var(--ink); opacity: 0.75; }

@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid img { height: 260px; }
  .gallery-stat { min-height: 200px; }
}

/* ============================================================
   SERVICE AREAS BAND
   ============================================================ */
.areas-band {
  background: var(--surface);
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.areas-band .container-full {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.areas-band .eyebrow {
  display: block;
}

.areas-line {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(22px, 3.5vw, 40px);
  color: var(--ink);
  line-height: 1.15;
  max-width: 60ch;
  text-align: center;
}

.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 8px;
}

.area-chip {
  display: inline-block;
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
  border: 1px solid var(--primary);
  padding: 10px 24px;
  border-radius: 999px;
  background: var(--canvas);
}

/* ============================================================
   FAQ
   ============================================================ */
#faq .container { padding-top: var(--section-pad); padding-bottom: var(--section-pad); }
#faq .eyebrow { display: block; margin-bottom: 12px; }
#faq > .container > h2 { font-size: clamp(32px, 4.5vw, 52px); margin-bottom: 48px; }

.faq-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
}

details {
  border-bottom: 1px solid var(--border-ink);
  padding: 18px 0;
}

details > summary {
  cursor: pointer;
  font-family: 'Inter Tight', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}

details > summary::-webkit-details-marker { display: none; }

.faq-arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--primary);
  transition: transform 200ms ease;
}

details[open] > summary .faq-arrow { transform: rotate(45deg); }

.faq-body {
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  padding-right: 32px;
}

@media (max-width: 900px) {
  .faq-cols { grid-template-columns: 1fr; }
}

/* ============================================================
   CONTACT BAND
   ============================================================ */
.contact-band {
  background: var(--primary);
  padding: var(--section-pad) 0;
}

.contact-band > .container { padding-top: 0; padding-bottom: 0; }

.contact-heading {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(36px, 5vw, 64px);
  color: var(--canvas);
  line-height: 1.0;
  margin-bottom: 48px;
}

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Left: info */
.contact-info {
  color: var(--ink);
}

.contact-phone-link {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(36px, 5.5vw, 64px);
  color: var(--ink);
  line-height: 1.0;
  display: block;
  text-decoration: none;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  transition: opacity 150ms;
}

.contact-phone-link:hover { opacity: 0.8; text-decoration: none; color: var(--ink); }

.contact-sub {
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  opacity: 0.85;
  margin-bottom: 24px;
}

.contact-data {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-data li {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  opacity: 0.8;
  line-height: 1.5;
}

.contact-data a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.contact-data a:hover { opacity: 0.7; }

/* Right: form */
.contact-form-panel {
  background: var(--canvas);
  border-radius: var(--radius);
  padding: 36px clamp(24px, 3vw, 40px);
  box-shadow: var(--shadow-lg);
}

.contact-form-panel form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-row label {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.form-row input,
.form-row select,
.form-row textarea {
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  color: var(--ink);
  background: var(--canvas);
  border: 1px solid var(--border-ink);
  border-radius: var(--radius);
  padding: 12px 16px;
  transition: border-color 150ms;
  width: 100%;
  appearance: none;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(130,177,28,0.15);
}

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

.contact-form-panel button[type="submit"],
.contact-form-panel .btn {
  width: 100%;
  justify-content: center;
  background: var(--ink);
  color: var(--canvas);
  padding: 16px 28px;
  font-size: 15px;
}

.contact-form-panel button[type="submit"]:hover { filter: brightness(1.15); }

@media (max-width: 900px) {
  .contact-split { grid-template-columns: 1fr; gap: 36px; }
}

/* ============================================================
   ABOUT FEATURE (about.html hero)
   ============================================================ */
.about-feature {
  position: relative;
  overflow: hidden;
  min-height: 72vh;
  display: flex;
  align-items: flex-end;
}

.about-feature > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
  max-height: none;
}

.about-feature-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(26,32,16,0.68) 0%, rgba(26,32,16,0.3) 100%);
  pointer-events: none;
}

.about-feature-inner {
  position: relative; z-index: 2;
  padding: clamp(48px, 7vw, 96px) clamp(24px, 7vw, 112px);
  max-width: 800px;
  padding-bottom: clamp(56px, 8vh, 96px);
}

.about-feature-eyebrow { color: var(--primary); margin-bottom: 16px; }

.about-feature-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(48px, 8vw, 112px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--canvas);
  max-width: 14ch;
  margin-bottom: 20px;
}

.about-feature-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: rgba(250,248,242,0.82);
  max-width: 50ch;
  line-height: 1.65;
  margin-bottom: 28px;
}

.about-feature-inner .btn { margin-top: 8px; }

/* ============================================================
   OUR STORY (about.html)
   ============================================================ */
.our-story {
  background: var(--surface);
}

.our-story .section-inner { padding-top: var(--section-pad); padding-bottom: var(--section-pad); }

.our-story-grid {
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.our-story-grid > img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius);
  max-height: none;
  order: 2;
}

.our-story-grid > div {
  order: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.our-story-grid .section-eyebrow { margin-bottom: 4px; }

.our-story-grid h2 {
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.05;
  margin-bottom: 8px;
}

.our-story-grid p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
}

.story-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.story-chip {
  display: inline-block;
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
  border: 1px solid var(--primary);
  padding: 8px 16px;
  border-radius: var(--radius);
  background: var(--canvas);
}

@media (max-width: 900px) {
  .our-story-grid { grid-template-columns: 1fr; }
  .our-story-grid > img { order: -1; height: 300px; }
  .our-story-grid > div { order: 1; }
}

/* ============================================================
   CREDENTIALS
   ============================================================ */
.credentials {
  background: var(--canvas);
}

.credentials .section-inner { padding-top: var(--section-pad); padding-bottom: var(--section-pad); }

.credentials > .section-inner > h2 {
  font-size: clamp(32px, 4.5vw, 52px);
  margin-bottom: 12px;
}

.credentials .section-eyebrow { margin-bottom: 12px; }

.credentials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
  margin-top: 40px;
}

.cred-group h3 {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--ink);
  border-bottom: 1px solid var(--border-ink);
  padding-bottom: 12px;
}

.cred-row {
  padding: 14px 0 14px 16px;
  border-bottom: 1px solid rgba(26,32,16,0.06);
  border-left: 3px solid var(--primary);
  margin-bottom: 8px;
  padding-left: 16px;
}

.cred-label {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
}

.cred-label span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-top: 3px;
}

@media (max-width: 900px) {
  .credentials-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================================
   SERVICE AREAS (about.html)
   ============================================================ */
.service-areas {
  background: var(--surface);
  text-align: center;
}

.service-areas .section-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding-top: 56px;
  padding-bottom: 56px;
}

.service-areas-line {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(20px, 3.5vw, 38px);
  color: var(--ink);
  line-height: 1.2;
  max-width: 60ch;
  text-align: center;
}

/* ============================================================
   CONTACT CTA (about.html + services.html)
   ============================================================ */
.contact-cta {
  background: var(--primary);
  padding: var(--section-pad) 0;
}

.contact-cta-band {
  background: var(--primary);
  padding: var(--section-pad) 0;
}

.contact-cta-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
}

.contact-cta-inner h2 {
  font-size: clamp(36px, 5.5vw, 72px);
  color: var(--canvas);
  max-width: 18ch;
  line-height: 1.0;
}

.contact-cta-text h2 {
  font-size: clamp(36px, 5.5vw, 72px);
  color: var(--canvas);
  max-width: 18ch;
  line-height: 1.0;
  margin-bottom: 12px;
}

.contact-cta-text p {
  color: rgba(26,32,16,0.75);
  font-size: 17px;
}

.contact-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  padding-top: 64px;
  padding-bottom: 0;
  border-top: 2px solid var(--primary);
}

/* index.html footer */
.site-footer > .container { padding-top: 0; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  padding-bottom: 48px;
}

.footer-grid > div { display: flex; flex-direction: column; gap: 16px; }

.footer-biz {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 26px;
  color: var(--canvas);
  line-height: 1.1;
}

.footer-brand-name {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 24px;
  color: var(--canvas);
}

.footer-tagline {
  font-size: 14px;
  color: rgba(250,248,242,0.6);
  line-height: 1.6;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact-list li { font-size: 14px; color: rgba(250,248,242,0.7); line-height: 1.5; }
.footer-contact-list a { color: rgba(250,248,242,0.85); text-decoration: none; }
.footer-contact-list a:hover { color: var(--primary); text-decoration: none; }

.footer-col-label {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 8px;
}

.footer-links-list, .footer-creds-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-list li, .footer-creds-list li {
  font-size: 14px;
  color: rgba(250,248,242,0.65);
  line-height: 1.5;
}

.footer-links-list a, .footer-creds-list a {
  color: rgba(250,248,242,0.65);
  text-decoration: none;
  transition: color 150ms;
}

.footer-links-list a:hover, .footer-creds-list a:hover {
  color: var(--primary);
  text-decoration: none;
}

.footer-creds-list strong { color: rgba(250,248,242,0.85); font-weight: 600; }

.footer-bottom {
  border-top: 1px solid rgba(250,248,242,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom span, .footer-bottom p {
  font-size: 12px;
  color: rgba(250,248,242,0.4);
  font-family: 'Inter Tight', sans-serif;
}

/* services.html footer */
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 72px) 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-brand h3 {
  font-size: 24px;
  color: var(--canvas);
}

.footer-brand p { font-size: 14px; color: rgba(250,248,242,0.6); }

.footer-address {
  font-size: 14px;
  color: rgba(250,248,242,0.65);
  line-height: 1.7;
}

.footer-address a { color: rgba(250,248,242,0.75); text-decoration: none; }
.footer-address a:hover { color: var(--primary); text-decoration: none; }

.footer-contact-line {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-contact-line a { color: rgba(250,248,242,0.75); text-decoration: none; font-size: 14px; }
.footer-contact-line a:hover { color: var(--primary); text-decoration: none; }

.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links li { font-size: 14px; }
.footer-links a { color: rgba(250,248,242,0.65); text-decoration: none; }
.footer-links a:hover { color: var(--primary); text-decoration: none; }

.footer-certs { display: flex; flex-direction: column; gap: 10px; }
.footer-certs h4 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
}

.footer-certs p { font-size: 13px; color: rgba(250,248,242,0.6); line-height: 1.6; }
.footer-certs a { color: rgba(250,248,242,0.65); }
.footer-certs a:hover { color: var(--primary); text-decoration: none; }

.footer-logo { margin-bottom: 8px; }
.footer-logo img { max-height: 44px !important; }

.footer-nav { display: flex; flex-direction: column; gap: 12px; }
.footer-nav h4 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
}
.footer-nav ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { font-size: 14px; color: rgba(250,248,242,0.65); text-decoration: none; }
.footer-nav a:hover { color: var(--primary); text-decoration: none; }

.footer-social { display: flex; gap: 12px; margin-top: 8px; }
.footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(250,248,242,0.2);
  color: rgba(250,248,242,0.6);
  text-decoration: none;
  font-size: 16px;
  transition: border-color 150ms, color 150ms;
}
.footer-social a:hover { border-color: var(--primary); color: var(--primary); text-decoration: none; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   ANIMATION UTILITIES
   ============================================================ */
.fade-up, .fade-left, .fade-right, .scale-in {
  opacity: 0;
  transition: opacity 600ms ease, transform 600ms ease;
}

.fade-up    { transform: translateY(28px); }
.fade-left  { transform: translateX(-28px); }
.fade-right { transform: translateX(28px); }
.scale-in   { transform: scale(0.94); }

.fade-up.visible, .fade-left.visible, .fade-right.visible, .scale-in.visible {
  opacity: 1;
  transform: none;
}

.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.stagger.visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0ms; }
.stagger.visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 80ms; }
.stagger.visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 160ms; }
.stagger.visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 240ms; }
.stagger.visible > *:nth-child(5) { opacity: 1; transform: none; transition-delay: 320ms; }
.stagger.visible > *:nth-child(6) { opacity: 1; transform: none; transition-delay: 400ms; }

/* ============================================================
   SERVICE CARD HOVER
   ============================================================ */
.service-card {
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(0,0,0,0.18);
}

/* ============================================================
   SECTION HEADING UTILITY
   ============================================================ */
.section-heading {
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.05;
  margin-bottom: 40px;
}

/* ============================================================
   TABLE CELLS (scoped to thead)
   ============================================================ */
.services-table thead .col-service,
.services-table thead .col-desc,
.services-table thead .col-timeline,
.services-table thead .col-price {
  background: var(--ink);
  color: var(--canvas);
  font-weight: 600;
}

/* ============================================================
   GRAIN TEXTURE OVERLAY
   ============================================================ */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.022;
  pointer-events: none;
  z-index: 9998;
  mix-blend-mode: multiply;
}

/* ============================================================
   MEDIA QUERIES — MOBILE REFINEMENTS
   ============================================================ */
@media (max-width: 640px) {
  .trust-strip-inner { gap: 6px; }
  .services-tabs { gap: 6px; }
  .service-tab { font-size: 12px; padding: 8px 12px; }
  .contact-split { grid-template-columns: 1fr; }
  .faq-cols { grid-template-columns: 1fr; }
  .area-chips { flex-direction: column; align-items: center; }
  .hero-trust-chips { gap: 8px; }
  .trust-chip { font-size: 11px; padding: 6px 10px; }
}

@media (min-width: 641px) and (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.gallery-main { grid-column: 1 / -1; }
.gallery-stat-ink { grid-column: 1 / -1; }
.gallery-stat-olive { grid-column: 1 / -1; }
.contact-info { grid-column: 1 / -1; }
.contact-form-panel { grid-column: 1 / -1; }
.cred-group { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.footer-certs { grid-column: 1 / -1; }
.footer-brand { grid-column: 1 / -1; }
.footer-nav { grid-column: 1 / -1; }
