/* ==========================================================================
   C&S Junk Removal — Global Stylesheet
   Brand palette ONLY: green #1B7A3D, black #111111, white #FFFFFF
   Mobile-first, responsive, fast.
   ========================================================================== */

:root {
  --green: #1B7A3D;
  --green-dark: #14602F;
  --green-light: #E9F4ED;   /* tint of green (green mixed with white) for soft backgrounds */
  --black: #111111;
  --white: #FFFFFF;

  --ink-70: #3a3a3a;        /* black at reduced weight for body copy */
  --ink-50: #5f5f5f;
  --line: #e6e6e6;          /* subtle neutral border (grey, not an accent) */
  --surface: #f6f7f6;       /* near-white section background */

  --radius: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 8px rgba(17, 17, 17, 0.06);
  --shadow-md: 0 10px 30px rgba(17, 17, 17, 0.10);
  --shadow-lg: 0 24px 60px rgba(17, 17, 17, 0.16);

  --container: 1160px;
  --header-h: 76px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font: "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue",
          Arial, "Noto Sans", sans-serif;
}

/* --------------------------------------------------------------------------
   Reset / base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--black);
}

h1 { font-size: clamp(2rem, 6vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 2.2vw, 1.4rem); }

p { color: var(--ink-70); }

ul { padding-left: 1.1rem; }

:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 2px;
  border-radius: 4px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}

.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section--tint { background: var(--surface); }
.section--dark { background: var(--black); }
.section--dark h1,
.section--dark h2,
.section--dark h3 { color: var(--white); }
.section--dark p { color: rgba(255, 255, 255, 0.78); }

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.75rem;
}
.section--dark .eyebrow { color: #4fd07f; } /* lighter green tint for contrast on black */

.section-head { max-width: 720px; margin-bottom: 2.75rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { font-size: 1.075rem; margin-top: 0.85rem; }

.lead { font-size: 1.15rem; color: var(--ink-70); }

.text-green { color: var(--green); }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: inherit;
  font-weight: 700;
  font-size: 1.02rem;
  line-height: 1;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease),
              background 0.18s var(--ease), color 0.18s var(--ease);
  min-height: 52px;              /* comfortable tap target */
  white-space: nowrap;
}
.btn svg { width: 1.15em; height: 1.15em; }

.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(27, 122, 61, 0.28);
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(27, 122, 61, 0.36); }
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn-outline:hover { background: var(--black); color: var(--white); transform: translateY(-2px); }

.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}
.btn-ghost-light:hover { background: var(--white); color: var(--black); border-color: var(--white); }

.btn-lg { font-size: 1.1rem; padding: 1.1rem 2rem; min-height: 60px; }
.btn-block { width: 100%; }

/* --------------------------------------------------------------------------
   Header (sticky, on every page)
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: var(--header-h);
}
.brand { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.brand img { height: 52px; width: auto; }
.brand .brand-text { display: none; }

.main-nav { display: none; }
.main-nav ul { display: flex; align-items: center; gap: 1.35rem; list-style: none; padding: 0; margin: 0; }
.main-nav a {
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--black);
  padding: 0.4rem 0;
  position: relative;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--green);
  transition: width 0.22s var(--ease);
}
.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after { width: 100%; }
.main-nav a[aria-current="page"] { color: var(--green); }

.header-actions { display: flex; align-items: center; gap: 0.75rem; }

.header-phone {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--black);
}
.header-phone svg { width: 1.15rem; height: 1.15rem; color: var(--green); }
.header-phone:hover { color: var(--green); }

/* mobile call button (icon) */
.header-call-mobile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 999px;
  border: 2px solid var(--black);
  color: var(--black);
}
.header-call-mobile svg { width: 1.25rem; height: 1.25rem; }
.header-quote-btn { padding: 0.7rem 1.15rem; min-height: 48px; font-size: 0.95rem; }

/* hamburger */
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px; height: 48px;
  padding: 12px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block; height: 2.5px; width: 100%;
  background: var(--black);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* mobile drawer */
.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--white);
  z-index: 999;
  padding: 1.5rem 20px 2rem;
  transform: translateX(100%);
  transition: transform 0.3s var(--ease);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav ul { list-style: none; padding: 0; margin: 0; }
.mobile-nav li { border-bottom: 1px solid var(--line); }
.mobile-nav a {
  display: block;
  padding: 1.1rem 0.25rem;
  font-size: 1.2rem;
  font-weight: 700;
}
.mobile-nav a[aria-current="page"] { color: var(--green); }
.mobile-nav .mobile-cta { margin-top: 1.75rem; display: grid; gap: 0.75rem; }
body.nav-open { overflow: hidden; }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 85% -10%, rgba(27, 122, 61, 0.55) 0%, rgba(27, 122, 61, 0) 55%),
    radial-gradient(90% 80% at 10% 110%, rgba(27, 122, 61, 0.30) 0%, rgba(27, 122, 61, 0) 60%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  gap: 2.5rem;
  padding: clamp(2.75rem, 7vw, 5.5rem) 0 clamp(3rem, 7vw, 5.5rem);
  align-items: center;
}
.hero h1 { color: var(--white); }
.hero h1 .hl { color: #4fd07f; }
.hero-sub { font-size: 1.2rem; color: rgba(255,255,255,0.82); margin-top: 1.15rem; max-width: 34ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 2rem; }
.hero-phone {
  display: inline-flex; align-items: center; gap: 0.6rem;
  margin-top: 1.6rem; font-weight: 700; font-size: 1.15rem; color: var(--white);
}
.hero-phone svg { width: 1.3rem; height: 1.3rem; color: #4fd07f; }
.hero-phone span.small { display:block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.6); }

.hero-points { list-style: none; padding: 0; margin: 1.75rem 0 0; display: grid; gap: 0.6rem; }
.hero-points li { display: flex; align-items: center; gap: 0.6rem; color: rgba(255,255,255,0.9); font-weight: 600; }
.hero-points svg { width: 1.25rem; height: 1.25rem; color: #4fd07f; flex-shrink: 0; }

.hero-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 1.75rem 1.5rem;
  color: var(--black);
}
.hero-card img { border-radius: var(--radius-sm); }

/* small inline quote form used in hero on larger screens */
.hero-form-card h3 { margin-bottom: 0.35rem; }
.hero-form-card p { font-size: 0.95rem; margin-bottom: 1rem; }

/* --------------------------------------------------------------------------
   Trust bar
   -------------------------------------------------------------------------- */
.trust-bar { background: var(--white); border-bottom: 1px solid var(--line); }
.trust-bar .container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: center;
  align-items: center;
  padding-block: 1.1rem;
}
.trust-item {
  display: flex; align-items: center; gap: 0.55rem;
  font-weight: 700; font-size: 0.95rem; color: var(--black);
}
.trust-item svg { width: 1.35rem; height: 1.35rem; color: var(--green); flex-shrink: 0; }
.trust-sep { width: 1px; height: 20px; background: var(--line); }
.stars { display: inline-flex; gap: 2px; color: var(--green); }
.stars svg { width: 1.05rem; height: 1.05rem; }

/* --------------------------------------------------------------------------
   Generic grids / cards
   -------------------------------------------------------------------------- */
.grid { display: grid; gap: 1.25rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), border-color 0.22s var(--ease);
  height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.card h3 { margin-bottom: 0.5rem; }
.card p { font-size: 0.98rem; }

.card-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--green-light);
  color: var(--green);
  margin-bottom: 1.1rem;
}
.card-icon svg { width: 1.7rem; height: 1.7rem; }

.card-list { list-style: none; padding: 0; margin: 0.75rem 0 0; display: grid; gap: 0.4rem; }
.card-list li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.95rem; color: var(--ink-70); }
.card-list svg { width: 1.05rem; height: 1.05rem; color: var(--green); flex-shrink: 0; margin-top: 0.28rem; }

/* --------------------------------------------------------------------------
   How it works — steps
   -------------------------------------------------------------------------- */
.steps { display: grid; gap: 1.5rem; grid-template-columns: 1fr; counter-reset: step; }
.step { position: relative; padding: 1.75rem 1.5rem 1.5rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 999px;
  background: var(--green); color: var(--white);
  font-weight: 800; font-size: 1.15rem; margin-bottom: 1rem;
}
.step h3 { margin-bottom: 0.4rem; }
.step p { font-size: 0.98rem; }

/* --------------------------------------------------------------------------
   Gallery
   -------------------------------------------------------------------------- */
.gallery-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
.ba-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  background: var(--white);
}
.ba-pair { display: grid; grid-template-columns: 1fr 1fr; }
.ba-pair figure { margin: 0; position: relative; }
.ba-photo {
  aspect-ratio: 4 / 3;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-50);
  font-weight: 700; font-size: 0.9rem;
  text-align: center; padding: 1rem;
}
.ba-photo.before { background: repeating-linear-gradient(45deg, #ededed, #ededed 12px, #f6f6f6 12px, #f6f6f6 24px); }
.ba-photo.after { background: var(--green-light); color: var(--green); }
.ba-tag {
  position: absolute; top: 10px; left: 10px;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.3rem 0.6rem; border-radius: 999px;
  background: rgba(17,17,17,0.82); color: var(--white);
}
.ba-tag.is-after { background: var(--green); }
.ba-card figcaption { padding: 0.9rem 1.1rem; font-weight: 700; font-size: 0.95rem; }

/* placeholder note styling (flag-to-owner) */
.owner-note {
  border-left: 4px solid var(--green);
  background: var(--green-light);
  padding: 0.9rem 1.1rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.92rem;
  color: var(--ink-70);
}
.owner-note strong { color: var(--green-dark); }

/* --------------------------------------------------------------------------
   Service areas
   -------------------------------------------------------------------------- */
.town-grid { display: grid; gap: 0.9rem; grid-template-columns: 1fr 1fr; }
.town-chip {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.95rem 1.1rem;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--white); font-weight: 700; font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s var(--ease), border-color 0.18s var(--ease);
}
.town-chip:hover { transform: translateY(-2px); border-color: var(--green); }
.town-chip svg { width: 1.15rem; height: 1.15rem; color: var(--green); flex-shrink: 0; }

.area-section { padding-top: 2.5rem; border-top: 1px solid var(--line); }
.area-section:first-of-type { border-top: none; padding-top: 0; }

/* --------------------------------------------------------------------------
   Testimonials (placeholder — no fabricated reviews)
   -------------------------------------------------------------------------- */
.quote-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow-sm); height: 100%; }
.quote-card .stars { margin-bottom: 0.85rem; }
.quote-card blockquote { margin: 0 0 1rem; font-size: 1.05rem; color: var(--black); font-weight: 500; }
.quote-card cite { font-style: normal; font-weight: 700; font-size: 0.92rem; color: var(--ink-50); }

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */
.cta-band { background: var(--green); color: var(--white); }
.cta-band .container { text-align: center; padding-block: clamp(3rem, 7vw, 4.5rem); }
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,0.9); font-size: 1.1rem; margin: 0.75rem auto 1.75rem; max-width: 46ch; }
.cta-band .btn-primary { background: var(--white); color: var(--green-dark); box-shadow: 0 8px 24px rgba(0,0,0,0.18); }
.cta-band .btn-primary:hover { background: var(--black); color: var(--white); }
.cta-band .btn-ghost-light { border-color: rgba(255,255,255,0.75); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; justify-content: center; }

/* --------------------------------------------------------------------------
   Quote form
   -------------------------------------------------------------------------- */
.form-wrap { display: grid; gap: 2.5rem; grid-template-columns: 1fr; align-items: start; }
.quote-form { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-md); padding: 1.75rem; }
.hero-card .quote-form { border: none; box-shadow: none; padding: 0; }

.form-row { display: grid; gap: 1rem; grid-template-columns: 1fr; margin-bottom: 1rem; }
.field { display: grid; gap: 0.4rem; }
.field label { font-weight: 700; font-size: 0.92rem; }
.field .req { color: var(--green); }
.field input,
.field textarea {
  font-family: inherit; font-size: 1rem;
  padding: 0.85rem 0.95rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--black);
  width: 100%;
  min-height: 50px;
  transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus,
.field textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(27,122,61,0.15); }

/* photo upload dropzone (prominent) */
.dropzone {
  position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.5rem; text-align: center;
  padding: 1.6rem 1rem;
  border: 2.5px dashed var(--green);
  border-radius: var(--radius);
  background: var(--green-light);
  cursor: pointer;
  transition: background 0.18s var(--ease), border-color 0.18s var(--ease);
}
.dropzone:hover, .dropzone.dragover { background: #dcefe3; }
.dropzone input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.dropzone .dz-icon { width: 2.4rem; height: 2.4rem; color: var(--green); }
.dropzone .dz-title { font-weight: 800; color: var(--green-dark); font-size: 1.02rem; }
.dropzone .dz-hint { font-size: 0.85rem; color: var(--ink-70); }
.dz-previews { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 0.85rem; }
.dz-thumb { position: relative; width: 74px; height: 74px; border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--line); }
.dz-thumb img { width: 100%; height: 100%; object-fit: cover; }
.dz-thumb button {
  position: absolute; top: 2px; right: 2px;
  width: 22px; height: 22px; border-radius: 999px; border: none;
  background: rgba(17,17,17,0.75); color: #fff; cursor: pointer; font-size: 13px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
}

.form-note { font-size: 0.82rem; color: var(--ink-50); margin-top: 0.9rem; text-align: center; }
.form-success {
  display: none;
  background: var(--green-light);
  border: 1.5px solid var(--green);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}
.form-success.show { display: block; }
.form-success svg { width: 3rem; height: 3rem; color: var(--green); margin: 0 auto 0.75rem; }
.form-success h3 { color: var(--green-dark); }

/* Hero form + success titles rendered as non-heading text (keeps a clean heading outline) */
.hero-form-title, .form-success-title {
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  line-height: 1.12; letter-spacing: -0.02em; font-weight: 800;
  color: var(--black); margin: 0 0 0.35rem;
}
.form-success-title { color: var(--green-dark); }

/* form aside (contact facts) */
.form-aside { display: grid; gap: 1.25rem; align-content: start; }
.contact-fact { display: flex; gap: 0.85rem; align-items: flex-start; }
.contact-fact .ic {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px;
  background: var(--green-light); color: var(--green);
  display: flex; align-items: center; justify-content: center;
}
.contact-fact .ic svg { width: 1.4rem; height: 1.4rem; }
.contact-fact h4 { font-size: 1rem; margin-bottom: 0.15rem; }
.contact-fact p, .contact-fact a { font-size: 0.98rem; color: var(--ink-70); }
.contact-fact a:hover { color: var(--green); }

/* --------------------------------------------------------------------------
   Split feature (image + text)
   -------------------------------------------------------------------------- */
.split { display: grid; gap: 2.25rem; grid-template-columns: 1fr; align-items: center; }
.split .media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); background: var(--surface); }
.split .media img { width: 100%; }
.feature-list { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: 1rem; }
.feature-list li { display: flex; gap: 0.85rem; align-items: flex-start; }
.feature-list .fi {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 10px;
  background: var(--green-light); color: var(--green);
  display: flex; align-items: center; justify-content: center;
}
.feature-list .fi svg { width: 1.25rem; height: 1.25rem; }
.feature-list h4 { font-size: 1.05rem; margin-bottom: 0.15rem; }
.feature-list p { font-size: 0.95rem; }

/* pricing tiers (volume based, illustrative) */
.price-grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
.price-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow-sm); text-align: center; position: relative; }
.price-card.featured { border-color: var(--green); box-shadow: var(--shadow-md); }
.price-card .badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--green); color: #fff; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.3rem 0.8rem; border-radius: 999px; }
.price-card h3 { margin-bottom: 0.3rem; }
.price-card .price { font-size: 2rem; font-weight: 800; color: var(--green); }
.price-card .price small { display: block; font-size: 0.85rem; font-weight: 600; color: var(--ink-50); letter-spacing: 0.02em; }
.price-card ul { list-style: none; padding: 0; margin: 1.1rem 0 1.4rem; display: grid; gap: 0.55rem; text-align: left; }
.price-card ul li { display: flex; gap: 0.5rem; align-items: flex-start; font-size: 0.95rem; color: var(--ink-70); }
.price-card ul svg { width: 1.05rem; height: 1.05rem; color: var(--green); flex-shrink: 0; margin-top: 0.25rem; }

/* FAQ */
.faq { display: grid; gap: 0.75rem; max-width: 760px; margin-inline: auto; }
.faq details { border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--white); box-shadow: var(--shadow-sm); }
.faq summary { cursor: pointer; list-style: none; padding: 1.1rem 1.25rem; font-weight: 700; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--green); font-size: 1.5rem; font-weight: 700; line-height: 1; transition: transform 0.2s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 1.25rem 1.25rem; font-size: 0.98rem; }

/* --------------------------------------------------------------------------
   Page hero (interior pages)
   -------------------------------------------------------------------------- */
.page-hero { background: var(--black); color: var(--white); position: relative; overflow: hidden; }
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(90% 120% at 90% -20%, rgba(27,122,61,0.5) 0%, rgba(27,122,61,0) 55%);
}
.page-hero .container { position: relative; padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.page-hero h1 { color: var(--white); max-width: 20ch; }
.page-hero p { color: rgba(255,255,255,0.82); font-size: 1.15rem; margin-top: 0.9rem; max-width: 52ch; }
.breadcrumb { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 0.9rem; }
.breadcrumb a:hover { color: #4fd07f; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--black); color: rgba(255,255,255,0.75); padding-top: clamp(3rem, 6vw, 4rem); }
.footer-grid { display: grid; gap: 2.25rem; grid-template-columns: 1fr; padding-bottom: 2.5rem; }
.footer-brand img { height: 74px; width: auto; background: #fff; border-radius: 12px; padding: 8px; }
.footer-brand p { margin-top: 1rem; font-size: 0.95rem; max-width: 34ch; }
.footer-col h4 { color: var(--white); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 0.02em; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.6rem; }
.footer-col a, .footer-col p { color: rgba(255,255,255,0.72); font-size: 0.95rem; }
.footer-col a:hover { color: #4fd07f; }
.footer-contact li { display: flex; gap: 0.6rem; align-items: flex-start; }
.footer-contact svg { width: 1.1rem; height: 1.1rem; color: #4fd07f; flex-shrink: 0; margin-top: 0.25rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-block: 1.5rem;
  display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem; justify-content: space-between; align-items: center;
  font-size: 0.85rem; color: rgba(255,255,255,0.55);
}
.footer-bottom a:hover { color: #4fd07f; }

/* --------------------------------------------------------------------------
   Sticky mobile call bar (bottom) — extra conversion aid on phones
   -------------------------------------------------------------------------- */
.mobile-callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 900;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; background: var(--white);
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 20px rgba(17,17,17,0.08);
}
.mobile-callbar a {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.95rem 0.5rem; font-weight: 800; font-size: 1rem; min-height: 56px;
}
.mobile-callbar svg { width: 1.2rem; height: 1.2rem; }
.mobile-callbar .mc-call { color: var(--black); }
.mobile-callbar .mc-quote { background: var(--green); color: #fff; }
@media (min-width: 700px) { .mobile-callbar { display: none; } }
body { padding-bottom: 0; }
@media (max-width: 699px) { body { padding-bottom: 56px; } }

/* --------------------------------------------------------------------------
   Reveal-on-scroll animation
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* --------------------------------------------------------------------------
   Responsive breakpoints
   -------------------------------------------------------------------------- */
@media (min-width: 560px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .town-grid { grid-template-columns: 1fr 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .form-row.two { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .price-grid { grid-template-columns: repeat(3, 1fr); }
  .split { grid-template-columns: 1fr 1fr; }
  .split.reverse .media { order: 2; }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.4fr; }
  .town-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 900px) {
  :root { --header-h: 84px; }
  .brand img { height: 60px; }
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; }
  .form-wrap { grid-template-columns: 1.4fr 1fr; }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1000px) {
  .main-nav { display: block; }
  .nav-toggle { display: none; }
  .header-phone { display: inline-flex; }
  .header-call-mobile { display: none; }
}

@media (min-width: 1100px) {
  .gallery-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
}
