/* ═══════════════════════════════════════════════════════════════
   HOME RESET CLEANOUT  —  Stylesheet
   ═══════════════════════════════════════════════════════════════ */

/* ─── Tokens ─── */
:root {
  --ink:    #070E02;
  --dk2:    #0E1E05;
  --dk1:    #1A3208;
  --green:  #265800;
  --brand:  #387200;
  --leaf:   #62A820;
  --tan:    #C8A840;
  --cream:  #EDE4A8;
  --bark:   #885020;
  --light:  #f5f2e8;
  --cta:    #885020;
  --cta2:   #6B3D14;
  --white:  #ffffff;
  --text:   #1a1a1a;
  --muted:  #6b7a5e;
  --border: rgba(255,255,255,.1);
  --hh: 76px;
  --out: cubic-bezier(.22,1,.36,1);
  --radius: 14px;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); -webkit-font-smoothing: antialiased; }
img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; }

/* ─── Skip link ─── */
.skip-link { position: absolute; left: -100%; top: 1rem; background: var(--cta); color: #fff; padding: .5rem 1rem; border-radius: 4px; font-weight: 700; z-index: 10000; }
.skip-link:focus { left: 1rem; }

/* ─── Container ─── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .85rem 2rem; border-radius: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .95rem; font-weight: 700; letter-spacing: .01em;
  transition: transform .18s var(--out), box-shadow .18s var(--out), background .18s, color .18s;
  white-space: nowrap;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-cta    { background: var(--cta); color: #fff; box-shadow: 0 4px 24px rgba(136,80,32,.35); }
.btn-cta:hover { background: var(--cta2); box-shadow: 0 6px 32px rgba(136,80,32,.45); }

.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.7); }
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: #fff; }

.btn-dark { background: var(--dk1); color: #fff; }
.btn-dark:hover { background: var(--green); }

.btn-ghost { background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.2); }
.btn-ghost:hover { background: rgba(255,255,255,.18); }

.btn-xl  { padding: 1.05rem 2.4rem; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* ─── Section chrome ─── */
.section-dark  { background: var(--dk2); }
.section-light { background: var(--light); }
.section-contact { background: var(--ink); }

.section-dark,
.section-contact { color: #fff; }

.section-pad { padding: 6rem 0; }

/* ─── Eyebrow + headers ─── */
.eyebrow {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .72rem; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--tan); margin-bottom: .75rem;
}
.section-header {
  text-align: center; max-width: 640px; margin: 0 auto 3.5rem;
}
.section-header h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(1.9rem,4vw,2.9rem); font-weight: 800; line-height: 1.15; margin-bottom: 1rem; }
.section-header em { font-style: italic; color: var(--cream); }
.section-header p  { color: rgba(255,255,255,.65); font-size: 1.05rem; line-height: 1.7; }
.section-light .section-header h2 { color: var(--ink); }
.section-light .section-header p  { color: var(--muted); }
.section-light .eyebrow { color: var(--bark); }

/* ─── Scroll reveals ─── */
.sr { opacity: 0; transition: opacity .65s var(--out), transform .65s var(--out); transition-delay: var(--d, 0s); }
.sr.up    { transform: translateY(40px); }
.sr.left  { transform: translateX(-40px); }
.sr.right { transform: translateX(40px); }
.sr.vis   { opacity: 1; transform: none; }


/* ═══════════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════════ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--hh);
  transition: background .3s, box-shadow .3s, backdrop-filter .3s;
}
.header.scrolled {
  background: rgba(7,21,16,.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,.3);
}

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--hh);
  overflow: visible;
}

.logo-img { height: 88px; width: auto; }

.nav-links {
  display: flex; align-items: center; gap: .25rem;
}
.nav-link {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .85rem; font-weight: 700;
  color: rgba(255,255,255,.8); padding: .5rem .75rem; border-radius: 6px;
  transition: color .18s, background .18s;
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,.08); }

.nav-cta { padding: .6rem 1.2rem; font-size: .85rem; }

/* Facebook icon in nav */
.nav-fb-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 8px;
  color: rgba(255,255,255,.7);
  margin-right: .75rem;
  transition: color .18s, background .18s, transform .18s;
}
.nav-fb-link:hover {
  color: #1877F2;
  background: rgba(24,119,242,.12);
  transform: translateY(-2px);
}

.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 32px; padding: 4px; }
.nav-toggle span { display: block; height: 2px; background: #fff; border-radius: 2px; transition: transform .25s, opacity .25s, width .25s; }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; width: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ═══════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative; height: 100dvh; min-height: 620px;
  display: flex; align-items: center;
  overflow: hidden; background: var(--ink);
}

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

.hero-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(100deg, rgba(7,21,16,.95) 0%, rgba(7,21,16,.80) 45%, rgba(7,21,16,.45) 75%, rgba(7,21,16,.25) 100%),
    linear-gradient(to top, rgba(7,21,16,.6) 0%, transparent 50%);
}

.hero-body {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding-top: calc(var(--hh) + 2rem);
  padding-bottom: 4rem;
  max-width: 100%;
}

.hero-left { display: flex; flex-direction: column; }

.hero-right {
  display: flex; align-items: center; justify-content: center;
  animation: fadeUp .9s .35s var(--out) both;
}

.hero-logo-big {
  width: clamp(260px, 38vw, 500px);
  height: auto;
  filter: drop-shadow(0 16px 80px rgba(0,0,0,.75)) drop-shadow(0 0 40px rgba(61,160,110,.18));
}

.hero-badge {
  display: inline-flex; align-items: center; gap: .6rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 100px; padding: .4rem 1rem;
  color: rgba(255,255,255,.9);
  font-size: .78rem; font-weight: 600;
  margin-bottom: 1.5rem;
  animation: fadeUp .8s var(--out) both;
}
.hero-badge .stars { color: #ffd700; font-size: .9rem; letter-spacing: .05em; }

.hero-h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 900; line-height: 1.05;
  color: #fff; margin-bottom: 1.25rem;
  animation: fadeUp .85s .08s var(--out) both;
}
.hero-accent { color: var(--cream); }

.hero-sub {
  color: rgba(255,255,255,.7); font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.65; margin-bottom: 2.25rem;
  animation: fadeUp .85s .16s var(--out) both;
}

.hero-actions {
  display: flex; flex-wrap: wrap; gap: 1rem;
  margin-bottom: 2.5rem;
  animation: fadeUp .85s .24s var(--out) both;
}

.hero-trust {
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem;
  animation: fadeUp .85s .32s var(--out) both;
}
.hero-trust span {
  color: rgba(255,255,255,.6);
  font-size: .82rem; font-weight: 600;
}

.hero-scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 2; color: rgba(255,255,255,.4);
  animation: bounce 2.5s ease-in-out 1.5s infinite;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(10px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}


/* ═══════════════════════════════════════════════════════════════
   TRUST BAND
   ═══════════════════════════════════════════════════════════════ */
.trust-band {
  background: var(--green);
  padding: 2rem 0;
}

.trust-grid {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 0;
}

.trust-item {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: .75rem 2.5rem; gap: .2rem;
}
.trust-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem; font-weight: 900; color: #fff; line-height: 1;
}
.trust-plus { font-size: 1.4rem; }
.trust-label { font-size: .78rem; font-weight: 700; color: rgba(255,255,255,.75); text-transform: uppercase; letter-spacing: .08em; }
.trust-divider { width: 1px; height: 48px; background: rgba(255,255,255,.25); flex-shrink: 0; }


/* ═══════════════════════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════════════════════ */
.services-section { padding: 6rem 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.service-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: background .25s, border-color .25s, transform .25s;
}
.service-card:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(61,160,110,.4);
  transform: translateY(-4px);
}
.service-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.service-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem; font-weight: 800; color: #fff; margin-bottom: .6rem;
}
.service-card p { color: rgba(255,255,255,.6); font-size: .9rem; line-height: 1.65; }


/* ═══════════════════════════════════════════════════════════════
   PROCESS
   ═══════════════════════════════════════════════════════════════ */
.process-section { padding: 6rem 0; }

.process-grid {
  display: flex; align-items: flex-start; gap: 0;
  flex-wrap: wrap; justify-content: center;
}

.process-step {
  flex: 1; min-width: 220px; max-width: 320px;
  text-align: center; padding: 2rem 1.5rem;
}
.step-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 4.5rem; font-weight: 900; line-height: 1;
  color: var(--green); margin-bottom: .75rem;
  opacity: .25;
}
.process-step h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.2rem; font-weight: 800; color: var(--ink); margin-bottom: .7rem;
}
.process-step p { color: var(--muted); font-size: .95rem; line-height: 1.7; }

.process-connector {
  flex-shrink: 0; width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--tan));
  margin-top: 5.5rem; opacity: .4;
}


/* ═══════════════════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════════════════ */
.about-section { padding: 6rem 0; }

.about-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}

.about-images { position: relative; }
.about-main-img {
  width: 100%; border-radius: var(--radius);
  aspect-ratio: 4/3; object-fit: cover;
  box-shadow: 0 24px 64px rgba(0,0,0,.5);
}
.about-float-img {
  position: absolute; bottom: -2rem; right: -2rem;
  width: 48%; border-radius: var(--radius);
  aspect-ratio: 4/3; object-fit: cover;
  border: 4px solid var(--dk2);
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
}

.about-content h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 800; color: #fff;
  line-height: 1.2; margin-bottom: 1.25rem;
}
.about-content > p { color: rgba(255,255,255,.65); line-height: 1.75; margin-bottom: 2rem; }

.why-list { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.why-list li { display: flex; gap: 1rem; align-items: flex-start; }
.why-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: .1rem; }
.why-list strong { display: block; color: #fff; font-weight: 700; margin-bottom: .2rem; font-family: 'Plus Jakarta Sans', sans-serif; }
.why-list span { color: rgba(255,255,255,.6); font-size: .9rem; line-height: 1.6; }


/* ═══════════════════════════════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════════════════════════════ */
.gallery-section { padding: 6rem 0; }

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

.gallery-item {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .45s var(--out);
}
.gallery-item:hover img { transform: scale(1.05); }

.gallery-tag {
  position: absolute; top: .75rem; left: .75rem;
  background: rgba(136,80,32,.9); color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: .3rem .75rem; border-radius: 100px;
}
.gallery-tag.after { background: rgba(38,122,82,.95); }


/* ═══════════════════════════════════════════════════════════════
   STATS BAND
   ═══════════════════════════════════════════════════════════════ */
.stats-band { background: var(--ink); padding: 4rem 0; }

.stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 2rem;
}

.stat-item { text-align: center; }
.stat-num {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 900; color: var(--tan);
  line-height: 1;  margin-bottom: .5rem;
}
.stat-label {
  font-size: .82rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: rgba(255,255,255,.5);
}


/* ═══════════════════════════════════════════════════════════════
   REVIEWS
   ═══════════════════════════════════════════════════════════════ */
.reviews-section { padding: 6rem 0; }

.reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.25rem;
}

.review-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius); padding: 2rem 1.75rem;
  display: flex; flex-direction: column; gap: .9rem;
  transition: transform .25s, background .25s;
}
.review-card:hover { transform: translateY(-3px); background: rgba(255,255,255,.08); }

.review-stars { color: #ffd700; font-size: 1.1rem; letter-spacing: .08em; }
.review-text { color: rgba(255,255,255,.75); font-size: .92rem; line-height: 1.7; flex: 1; }
.review-author { display: flex; align-items: center; gap: .9rem; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--green); color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.review-author strong { display: block; color: #fff; font-weight: 700; font-size: .9rem; }
.review-author span  { color: rgba(255,255,255,.45); font-size: .8rem; }


/* ═══════════════════════════════════════════════════════════════
   SERVICE AREAS
   ═══════════════════════════════════════════════════════════════ */
.areas-section { padding: 6rem 0; }

.areas-inner {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start;
}

.areas-content h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.8rem,3.5vw,2.4rem); font-weight: 800;
  color: var(--ink); line-height: 1.2; margin-bottom: 1rem;
}
.areas-content p { color: var(--muted); line-height: 1.7; margin-bottom: 1.75rem; }

.areas-list { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.areas-col h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .9rem; font-weight: 800; color: var(--green);
  text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: .85rem; padding-bottom: .5rem;
  border-bottom: 2px solid var(--green);
}
.areas-col ul { display: flex; flex-direction: column; gap: .45rem; }
.areas-col li { font-size: .9rem; color: var(--muted); }


/* ═══════════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════════ */
.faq-section { padding: 6rem 0; }

.faq-inner { max-width: 860px; margin: 0 auto; }

.faq-grid { display: flex; flex-direction: column; gap: .75rem; margin-top: 1rem; }

.faq-item {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius); overflow: hidden;
}
.faq-item summary {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.02rem; font-weight: 700; color: #fff;
  padding: 1.35rem 1.5rem; cursor: pointer;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
  transition: background .2s;
}
.faq-item summary::after {
  content: '+'; font-size: 1.5rem; font-weight: 300; color: var(--tan);
  transition: transform .25s; flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { background: rgba(255,255,255,.04); }

.faq-body {
  padding: 0 1.5rem 1.35rem;
  color: rgba(255,255,255,.65); line-height: 1.75; font-size: .95rem;
}


/* ═══════════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════════ */
.section-contact { padding: 6rem 0; }

.contact-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
}

.contact-left h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.9rem,3.5vw,2.6rem); font-weight: 800;
  color: #fff; line-height: 1.2; margin-bottom: 1rem;
}
.contact-left > p { color: rgba(255,255,255,.65); line-height: 1.7; margin-bottom: 2rem; }

.contact-phone-block { margin-bottom: 1.75rem; }
.contact-phone {
  display: flex; align-items: center; gap: .75rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem; font-weight: 900; color: var(--cta);
  margin-bottom: .35rem; transition: color .2s;
}
.contact-phone:hover { color: var(--tan); }
.contact-phone-block > span { color: rgba(255,255,255,.45); font-size: .85rem; }

.contact-details { display: flex; flex-direction: column; gap: .6rem; }
.contact-details li { color: rgba(255,255,255,.65); font-size: .9rem; display: flex; align-items: center; gap: .6rem; }

/* Form */
.contact-form {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); padding: 2.25rem 2rem;
  display: flex; flex-direction: column; gap: 1.1rem;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label {
  font-size: .82rem; font-weight: 700; color: rgba(255,255,255,.75);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.form-group label span { color: var(--cta); }

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,255,255,.15);
  border-radius: 8px; padding: .8rem 1rem;
  color: #fff; font-size: .95rem; font-family: 'Inter', sans-serif;
  transition: border-color .2s, background .2s;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.3); }
.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: var(--dk1); color: #fff; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--tan);
  background: rgba(255,255,255,.1);
}
.form-group input.invalid,
.form-group select.invalid { border-color: #f05050; }
.select-wrap { position: relative; }
.select-wrap::after {
  content: '▾'; position: absolute; right: 1rem; top: 50%; transform: translateY(-50%);
  color: rgba(255,255,255,.4); pointer-events: none; font-size: .9rem; margin-top: .9rem;
}

.field-err { color: #f88080; font-size: .8rem; min-height: 1em; }

.form-success {
  background: rgba(61,160,110,.15); border: 1px solid rgba(61,160,110,.3);
  border-radius: var(--radius); padding: 3rem 2rem;
  text-align: center; color: #fff;
}
.success-icon { display: block; font-size: 3rem; margin-bottom: 1rem; }
.form-success h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem; font-weight: 800; margin-bottom: .5rem;
}
.form-success p { color: rgba(255,255,255,.7); }
.form-success a { color: var(--cta); font-weight: 700; }


/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.footer { background: var(--ink); padding: 5rem 0 0; color: rgba(255,255,255,.7); border-top: 1px solid rgba(255,255,255,.07); }

.footer-inner {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr; gap: 3rem;
  margin-bottom: 4rem;
}

.footer-logo { height: 52px; width: auto; margin-bottom: 1rem; }
.footer-brand p { font-size: .9rem; line-height: 1.7; margin-bottom: 1rem; max-width: 260px; }
.footer-phone { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.3rem; font-weight: 800; color: var(--cta); }
.footer-phone:hover { color: var(--tan); }

.footer-social { display: flex; gap: .75rem; margin-top: 1.25rem; }
.social-link {
  display: inline-flex; align-items: center; gap: .55rem;
  color: rgba(255,255,255,.55);
  font-size: .82rem; font-weight: 600;
  transition: color .18s, transform .18s;
}
.social-link svg { flex-shrink: 0; transition: transform .18s; }
.social-link:hover { color: #1877F2; transform: translateY(-2px); }

.footer-links h4,
.footer-contact h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .82rem; font-weight: 800; color: #fff;
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a { font-size: .88rem; transition: color .18s; }
.footer-links a:hover { color: var(--tan); }

.footer-contact p { font-size: .9rem; margin-bottom: .4rem; }
.footer-contact a { color: var(--cta); font-weight: 700; }
.footer-contact a:hover { color: var(--tan); }
.footer-badges { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1rem; }
.footer-badges span {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px; padding: .25rem .75rem;
  font-size: .75rem; font-weight: 700; color: rgba(255,255,255,.65);
}

.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 1.25rem 0; }
.footer-bottom-inner { text-align: center; font-size: .82rem; color: rgba(255,255,255,.35); }


/* ═══════════════════════════════════════════════════════════════
   STICKY CALL BAR (mobile)
   ═══════════════════════════════════════════════════════════════ */
.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  display: flex; background: var(--ink);
  border-top: 1px solid rgba(255,255,255,.12);
  transform: translateY(100%); transition: transform .35s var(--out);
  padding-bottom: env(safe-area-inset-bottom);
}
.sticky-bar.visible { transform: translateY(0); }

.sticky-call {
  flex: 2; display: flex; align-items: center; justify-content: center;
  gap: .5rem; background: var(--cta); color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .9rem; font-weight: 800; padding: 1rem;
  transition: background .2s;
}
.sticky-call:hover { background: var(--cta2); }

.sticky-quote {
  flex: 1; display: flex; align-items: center; justify-content: center;
  background: var(--green); color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .9rem; font-weight: 800; padding: 1rem;
  transition: background .2s;
}
.sticky-quote:hover { background: var(--brand); }


/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-inner   { grid-template-columns: 1fr; gap: 3rem; }
  .about-images  { max-width: 560px; }
  .about-float-img { right: -1rem; }
  .footer-inner  { grid-template-columns: 1fr 1fr; }
  .areas-inner   { grid-template-columns: 1fr; gap: 3rem; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .stats-grid    { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  :root { --hh: 64px; }

  /* ── Nav ── */
  .nav-links {
    position: fixed; inset: var(--hh) 0 0 0;
    flex-direction: column; align-items: stretch;
    background: rgba(12,10,6,.98);
    padding: 1.5rem 1.25rem;
    transform: translateX(100%); transition: transform .35s var(--out);
    gap: .35rem; overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-link { padding: .85rem 1rem; font-size: .97rem; }
  .nav-fb-link { margin-right: 0; justify-content: flex-start; padding-left: 1rem; width: auto; }
  .nav-toggle { display: flex; }
  .nav-cta { justify-content: center; margin-top: .75rem; }

  /* ── Section padding ── */
  .section-pad { padding: 3.5rem 0; }
  .services-section,
  .process-section,
  .about-section,
  .gallery-section,
  .reviews-section,
  .areas-section,
  .faq-section,
  .section-contact { padding: 3.5rem 0; }
  .section-header { margin-bottom: 2.25rem; }

  /* ── Hero ── */
  .hero-h1 { font-size: clamp(2rem, 9vw, 3rem); }
  .hero-sub { font-size: .95rem; margin-bottom: 1.75rem; }
  .hero-body {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
    padding-top: calc(var(--hh) + 1.25rem);
    padding-bottom: 5rem;
  }
  .hero-badge { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; gap: .4rem 1rem; }
  .hero-trust span { font-size: .78rem; }
  .hero-right { order: -1; }
  .hero-logo-big { width: clamp(150px, 48vw, 240px); }

  /* ── Trust band ── */
  .trust-divider { display: none; }
  .trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
  .trust-item {
    flex-direction: column; text-align: center;
    padding: 1.1rem .75rem; gap: .25rem;
    border: 1px solid rgba(255,255,255,.07);
  }
  .trust-num { font-size: 1.75rem; }

  /* ── Services ── */
  .services-grid { grid-template-columns: 1fr; gap: .875rem; }
  .service-card { padding: 1.4rem 1.25rem; }

  /* ── Process ── */
  .process-grid { flex-direction: column; align-items: center; gap: 0; }
  .process-step { min-width: unset; max-width: 100%; width: 100%; padding: 1.5rem 1rem; }
  .process-connector { width: 2px; height: 32px; margin: 0; }

  /* ── Gallery ── */
  .gallery-grid { grid-template-columns: repeat(2,1fr); gap: .625rem; }

  /* ── Stats ── */
  .stats-band { padding: 3rem 0; }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 2rem 1.5rem; }

  /* ── Reviews ── */
  .reviews-grid { grid-template-columns: 1fr; gap: .875rem; }
  .review-card { padding: 1.4rem 1.25rem; }

  /* ── FAQ ── */
  .faq-q { padding: 1.1rem 1rem; font-size: .95rem; }
  .faq-a { padding: 0 1rem 1.25rem; }

  /* ── Form ── */
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 1.5rem 1.25rem; }

  /* ── Areas ── */
  .areas-list { grid-template-columns: repeat(2,1fr); }

  /* ── About ── */
  .about-float-img { display: none; }
  .about-section .about-inner { gap: 2rem; }

  /* ── Footer ── */
  .footer { padding: 3.5rem 0 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-logo { height: 44px; }
  .social-link span { display: none; }
}

@media (max-width: 480px) {
  :root { --hh: 60px; }

  /* ── Hero ── */
  .hero-h1 { font-size: clamp(1.85rem, 10vw, 2.6rem); }
  .hero-body { gap: 1.25rem; padding-bottom: 5.5rem; }
  .hero-logo-big { width: clamp(130px, 44vw, 200px); }
  .hero-actions { flex-direction: column; }
  .btn-xl { width: 100%; justify-content: center; }
  .hero-badge { font-size: .72rem; }

  /* ── Trust ── */
  .trust-item { padding: .9rem .5rem; }
  .trust-num { font-size: 1.55rem; }
  .trust-label { font-size: .68rem; }

  /* ── Services ── */
  .service-card { padding: 1.25rem 1rem; }
  .service-icon { font-size: 1.8rem; margin-bottom: .75rem; }

  /* ── Stats ── */
  .stats-grid { gap: 1.5rem 1rem; }

  /* ── Reviews ── */
  .review-card { padding: 1.25rem 1rem; }

  /* ── Gallery ── */
  .gallery-grid { grid-template-columns: 1fr; }

  /* ── Areas ── */
  .areas-list { grid-template-columns: 1fr; }

  /* ── Section ── */
  .section-header { margin-bottom: 2rem; }
  .section-header h2 { font-size: clamp(1.65rem, 8vw, 2.2rem); }

  /* ── Footer ── */
  .footer-bottom-inner { font-size: .74rem; }
}
