/* ============================================================
   Dan the Moss Man's Roof Restoration
   Theme sampled from logo: navy, forest green, brown, steel/silver.
   Primary accent = dark forest green.
   ============================================================ */

:root {
  --navy-900: #00162b;
  --navy-800: #041d31;
  --navy-700: #0c2a44;
  --navy-600: #143a5c;
  --navy-500: #1d4d74;

  /* Forest-green accent scale (primary brand color) */
  --forest-900: #133416;
  --forest-700: #1c4a1f;   /* deep — eyebrows on light, link hover */
  --forest-600: #256a2a;   /* PRIMARY — CTAs, trust strip, icons, focus */
  --forest-500: #2f7d34;   /* hover / gradients */
  --leaf-400:   #6cae4f;   /* light leaf — accents on dark backgrounds */

  --green-700: #2f6b12;
  --green-800: #1e4a0a;

  --brown-600: #7a5546;

  --steel-600: #3c515d;
  --steel-500: #4c6472;
  --silver-400: #8a97a2;
  --silver-300: #aeb9c0;
  --mist-100: #eef2f3;
  --white: #ffffff;

  --ink: #10222f;        /* body text */
  --muted: #5a6b76;      /* secondary text */
  --line: #e2e8ea;

  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 8px rgba(0, 22, 43, .08);
  --shadow: 0 14px 40px rgba(0, 22, 43, .14);
  --shadow-lg: 0 30px 70px rgba(0, 22, 43, .28);
  --maxw: 1180px;

  --f-display: "Roboto", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --f-head: "Roboto", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --f-body: "Roboto", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
/* Cap "bold" at 500 per brand guideline — no heavier weights anywhere */
b, strong { font-weight: 500; }
h1, h2, h3, h4, h5, h6 { font-weight: 500; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

/* ---------- Typography helpers ---------- */
.eyebrow {
  font-family: var(--f-head);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 500;
  font-size: .82rem;
  color: var(--forest-700);
  margin: 0 0 .6rem;
}
.eyebrow--center { text-align: center; }
.eyebrow--onDark { color: var(--leaf-400); }

.section__title {
  font-family: var(--f-display);
  font-weight: 500;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: var(--navy-800);
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  line-height: 1.06;
  margin: 0 0 .5rem;
}
.section__title--onDark { color: var(--white); }
.section__sub {
  color: var(--muted);
  font-size: 1.06rem;
  max-width: 60ch;
  margin: 0;
}
.section__sub--onDark { color: var(--silver-300); }
.section__head { max-width: 760px; margin: 0 auto 2.6rem; text-align: center; }
.section__head .section__sub { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--f-head);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: .98rem;
  padding: .95rem 1.6rem;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--forest-600);
  color: #fff;
  box-shadow: 0 10px 24px rgba(37, 106, 42, .34);
}
.btn--primary:hover { background: var(--forest-500); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(37, 106, 42, .45); }
.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, .55);
}
.btn--ghost:hover { background: rgba(255, 255, 255, .12); border-color: #fff; transform: translateY(-2px); }
.btn--block { width: 100%; }
.btn--lg { padding: 1.1rem 2rem; font-size: 1.06rem; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--navy-900);
  color: var(--silver-300);
  font-size: .86rem;
}
.topbar__inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; min-height: 40px; }
.topbar__contact { display: flex; gap: 1.4rem; }
.topbar__link { color: var(--silver-300); font-weight: 500; transition: color .15s; }
.topbar__link:hover { color: var(--leaf-400); }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(4, 29, 49, .92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  transition: box-shadow .2s ease, background .2s ease;
}
.header.is-scrolled { box-shadow: 0 8px 26px rgba(0, 22, 43, .35); }
.header__inner { position: relative; display: flex; align-items: center; justify-content: center; min-height: 70px; gap: 1rem; }
.nav { display: flex; align-items: center; justify-content: center; gap: .3rem; flex-wrap: wrap; }
.nav__link {
  font-family: var(--f-head);
  text-transform: uppercase;
  letter-spacing: .03em;
  font-weight: 500;
  font-size: .9rem;
  color: var(--silver-300);
  padding: .55rem .7rem;
  border-radius: 8px;
  transition: color .15s, background .15s;
}
.nav__link:hover { color: #fff; background: rgba(255, 255, 255, .08); }
.nav__link--cta {
  background: var(--forest-600);
  color: #fff !important;
  margin-left: .5rem;
}
.nav__link--cta:hover { background: var(--forest-500); }

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

/* ---------- Landing (full page) ---------- */
.landing {
  position: relative;
  min-height: calc(100vh - 118px);
  min-height: calc(100svh - 118px);
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  padding: 34px 22px 78px;
}
.landing__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(1200px 720px at 50% 64%, rgba(0, 22, 43, .58), transparent 72%),
    linear-gradient(180deg, rgba(4, 29, 49, .82) 0%, rgba(4, 29, 49, .34) 38%, rgba(0, 22, 43, .62) 72%, rgba(0, 22, 43, .93) 100%),
    url("hero-house.jpg") center 32% / cover no-repeat;
}
.landing__logo-corner {
  position: absolute; top: 20px; left: 20px; z-index: 3;
  background: #fff; border-radius: 16px; line-height: 0;
  padding: 8px; box-shadow: 0 14px 34px rgba(0, 0, 0, .45);
  transition: transform .15s ease;
}
.landing__logo-corner:hover { transform: translateY(-2px); }
.landing__logo-corner img { width: clamp(88px, 11vw, 128px); height: auto; display: block; border-radius: 9px; }
.landing__inner { position: relative; max-width: 840px; }
.landing__title {
  font-family: var(--f-display);
  font-weight: 500;
  text-transform: uppercase;
  font-size: clamp(2.4rem, 6.2vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: .01em;
  margin: 0 0 .9rem;
  text-shadow: 0 2px 22px rgba(0, 0, 0, .5);
}
.landing__title .hl { color: var(--leaf-400); }
.landing__lead { font-size: 1.14rem; color: #e7edf0; max-width: 52ch; margin: 0 auto 1.7rem; text-shadow: 0 1px 12px rgba(0, 0, 0, .5); }
.landing__cta { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; margin-bottom: 1.7rem; }
.landing__chips {
  display: flex; flex-wrap: wrap; gap: .5rem 1.1rem; justify-content: center;
  font-family: var(--f-head); font-weight: 500; font-size: .92rem;
  color: #dbe3e7; text-shadow: 0 1px 10px rgba(0, 0, 0, .55);
}
.landing__chips li { display: flex; align-items: center; gap: .3rem; }
.landing__scroll {
  position: absolute; left: 50%; bottom: 20px; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  font-family: var(--f-head); text-transform: uppercase; letter-spacing: .12em;
  font-size: .72rem; color: var(--silver-400);
  animation: bob 1.8s ease-in-out infinite;
}
.landing__scroll svg { width: 22px; height: 22px; }
@keyframes bob { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 7px); } }

/* ---------- Trust strip ---------- */
.trust { background: var(--forest-600); }
.trust__inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  text-align: center; gap: 1rem;
  padding: 1.3rem 22px;
}
.trust__item { display: flex; flex-direction: column; color: #fff; }
.trust__item strong { font-family: var(--f-display); font-size: 1.5rem; line-height: 1; letter-spacing: .02em; }
.trust__item span { font-family: var(--f-head); font-weight: 500; font-size: .82rem; text-transform: uppercase; letter-spacing: .05em; opacity: .9; }

/* ---------- Sections ---------- */
.section { padding: clamp(3.4rem, 7vw, 6rem) 0; }
.section--dark { background: linear-gradient(165deg, var(--navy-800), var(--navy-900)); color: #fff; }
.section--tint { background: var(--mist-100); }

/* ---------- Why clean ---------- */
.why__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 2.6rem; align-items: center; }
.why__figure {
  margin: 0; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--line); background: #000;
}
.why__figure img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.why__cap {
  font-family: var(--f-head); font-weight: 500; font-size: .85rem;
  color: #fff; background: var(--navy-800);
  padding: .7rem 1rem; text-align: center; letter-spacing: .02em;
}
.why__copy p { color: var(--muted); margin: 0 0 1rem; }
.why__list { display: grid; gap: .7rem; margin: 1.2rem 0; }
.why__list li { display: flex; align-items: flex-start; gap: .6rem; font-weight: 500; color: var(--ink); }
.why__ic { flex: 0 0 auto; }
.why-leadin {
  margin-top: 3rem;
  background: linear-gradient(150deg, var(--navy-700), var(--navy-900));
  border-radius: var(--radius-lg);
  padding: 2.2rem clamp(1.4rem, 4vw, 3rem);
  text-align: center; color: #fff;
  display: flex; flex-direction: column; align-items: center; gap: 1.3rem;
}
.why-leadin p { margin: 0; font-size: 1.16rem; max-width: 62ch; color: var(--silver-300); }
.why-leadin strong { color: #fff; }

/* ---------- The Moss Man Difference ---------- */
.diff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: .5rem; }
.diff-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  padding: 2.1rem 1.7rem;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.diff-card:hover { transform: translateY(-6px); border-color: rgba(108, 174, 79, .5); background: rgba(255, 255, 255, .06); }
.diff-card__icon {
  width: 60px; height: 60px; border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(150deg, var(--forest-500), var(--forest-900));
  color: #fff; margin-bottom: 1.15rem;
  box-shadow: 0 8px 18px rgba(19, 52, 22, .45);
}
.diff-card__icon svg { width: 30px; height: 30px; }
.diff-card__title { font-family: var(--f-head); font-weight: 500; text-transform: uppercase; letter-spacing: .02em; color: #fff; font-size: 1.22rem; margin: 0 0 .55rem; }
.diff-card__text { color: var(--silver-300); margin: 0; font-size: .98rem; }
.diff-card__text strong { color: var(--leaf-400); }
.difference__cta { text-align: center; margin-top: 2.6rem; }

/* ---------- Grids ---------- */
.grid { display: grid; gap: 1.4rem; }
.grid--services { grid-template-columns: repeat(3, 1fr); }
.grid--gallery { grid-template-columns: repeat(3, 1fr); }
.grid--reviews { grid-template-columns: repeat(3, 1fr); }

/* ---------- Service cards ---------- */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.9rem 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(37, 106, 42, .4); }
.card__icon {
  width: 58px; height: 58px; border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(150deg, var(--forest-500), var(--forest-900));
  color: #fff; margin-bottom: 1.1rem;
  box-shadow: 0 8px 18px rgba(19, 52, 22, .3);
}
.card__icon svg { width: 30px; height: 30px; }
.card__title { font-family: var(--f-head); font-weight: 500; text-transform: uppercase; letter-spacing: .02em; color: var(--navy-800); font-size: 1.22rem; margin: 0 0 .5rem; }
.card__text { color: var(--muted); margin: 0; font-size: .98rem; }

/* ---------- Before / After slider ---------- */
.ba {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid rgba(255, 255, 255, .14);
  user-select: none;
  isolation: isolate;
}
.ba__img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.ba__before { clip-path: inset(0 calc(100% - var(--pos, 50%)) 0 0); }
.ba__tag {
  position: absolute; bottom: 12px;
  font-family: var(--f-head); font-weight: 500; text-transform: uppercase;
  letter-spacing: .08em; font-size: .74rem;
  padding: .3rem .7rem; border-radius: 999px;
  color: #fff; background: rgba(0, 22, 43, .72);
  backdrop-filter: blur(4px);
}
.ba__tag--before { left: 12px; }
.ba__tag--after { right: 12px; background: rgba(37, 106, 42, .92); color: #fff; }
.ba__range {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  margin: 0; opacity: 0; cursor: ew-resize; z-index: 3;
}
.ba__divider {
  position: absolute; top: 0; bottom: 0;
  left: var(--pos, 50%);
  width: 3px; margin-left: -1.5px;
  background: #fff; z-index: 2; pointer-events: none;
  box-shadow: 0 0 0 1px rgba(0, 22, 43, .15);
}
.ba__grip {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 42px; height: 42px; border-radius: 50%;
  background: #fff; color: var(--navy-800);
  display: grid; place-items: center;
  font-weight: 500; font-size: 1rem; letter-spacing: -1px;
  box-shadow: 0 6px 16px rgba(0, 22, 43, .35);
}

/* Themed placeholders (shown until the photo loads / if it is missing) */
.ph-roof-before { background-image: url("roof-before.jpg"), linear-gradient(150deg, #3d5a24, #223417 55%, #4a3320); }
.ph-roof-after  { background-image: url("roof-after.jpg"),  linear-gradient(150deg, #35617f, #1d4d74 55%, #9db6c4); }
.ph-gutter-before { background-image: url("gutter-before.jpg"), linear-gradient(150deg, #5a4a24, #3a2f17 55%, #4a3320); }
.ph-gutter-after  { background-image: url("gutter-after.jpg"),  linear-gradient(150deg, #35617f, #1d4d74 55%, #9db6c4); }
.ph-solar-before { background-image: url("solar-before.jpg"), linear-gradient(150deg, #4a4d3a, #2f2f22 55%, #55503a); }
.ph-solar-after  { background-image: url("solar-after.jpg"),  linear-gradient(150deg, #1f3f66, #0c2a44 55%, #4c6472); }

/* ---------- Gallery ---------- */
.ba-card { margin: 0; }
.ba-card__cap { font-family: var(--f-head); font-weight: 500; text-transform: uppercase; letter-spacing: .05em; color: var(--silver-300); text-align: center; margin: .9rem 0 0; font-size: .95rem; }
.gallery__cta { text-align: center; margin-top: 2.6rem; }

/* ---------- Process timeline ---------- */
.timeline {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem; position: relative; margin-top: 1rem;
}
.timeline::before {
  content: ""; position: absolute;
  top: 47px; left: 12.5%; right: 12.5%; height: 3px; z-index: 0;
  background: repeating-linear-gradient(90deg, var(--forest-500) 0 13px, transparent 13px 26px);
  opacity: .8;
}
.tl-step {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.tl-node {
  position: relative;
  width: 94px; height: 94px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(150deg, var(--forest-500), var(--forest-900));
  color: #fff; border: 5px solid #fff;
  box-shadow: 0 14px 30px rgba(19, 52, 22, .32);
  margin-bottom: 1.15rem;
  transition: transform .18s ease, box-shadow .18s ease;
}
.tl-step:hover .tl-node { transform: translateY(-5px); box-shadow: 0 20px 38px rgba(19, 52, 22, .42); }
.tl-node svg { width: 40px; height: 40px; }
.tl-num {
  position: absolute; top: -8px; right: -8px;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--navy-800); color: var(--leaf-400); border: 3px solid #fff;
  display: grid; place-items: center;
  font-family: var(--f-head); font-weight: 500; font-size: .85rem;
}
.tl-title { font-family: var(--f-head); text-transform: uppercase; letter-spacing: .02em; color: var(--navy-800); font-size: 1.18rem; margin: 0 0 .4rem; }
.tl-text { color: var(--muted); font-size: .95rem; max-width: 26ch; margin: 0; }

/* ---------- About ---------- */
.about__inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: 3rem; align-items: center; }
.about__media { display: flex; justify-content: center; }
.about__photo {
  margin: 0; position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--line); max-width: 420px; width: 100%;
}
.about__photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 26%; display: block; }
.about__photo-cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  font-family: var(--f-head); font-weight: 500; font-size: .82rem; color: #fff;
  padding: 1.4rem 1rem .7rem;
  background: linear-gradient(transparent, rgba(0, 22, 43, .82));
  text-align: center; letter-spacing: .02em;
}
.about__copy p { color: var(--muted); }
.about__copy .section__title { margin-bottom: 1rem; }
.about__list { margin: 1.2rem 0 1.6rem; display: grid; gap: .5rem; }
.about__list li { font-weight: 500; color: var(--ink); }

/* ---------- Reviews ---------- */
.review {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.7rem;
  box-shadow: var(--shadow-sm); margin: 0;
}
.review__stars { color: #f5a623; letter-spacing: .12em; margin-bottom: .6rem; font-size: 1.05rem; }
.review p { margin: 0 0 1rem; color: var(--ink); }
.review footer { font-family: var(--f-head); font-weight: 500; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; font-size: .86rem; }

/* ---------- Service area ---------- */
.area__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 2.4rem; align-items: center; }
.area__list { display: grid; grid-template-columns: repeat(3, 1fr); gap: .6rem 1rem; }
.area__list li {
  font-family: var(--f-head); font-weight: 500;
  color: var(--silver-300); padding-left: 1.2rem; position: relative;
}
.area__list li::before { content: "🐾"; position: absolute; left: 0; font-size: .8rem; }

/* ---------- Contact ---------- */
.contact__inner { display: grid; grid-template-columns: 1fr 1.05fr; gap: 3rem; align-items: start; }
.contact__info p { color: var(--muted); }
.contact__list { margin: 1.4rem 0; display: grid; gap: .8rem; }
.contact__list li { display: flex; align-items: center; gap: .7rem; font-weight: 500; }
.contact__ic { width: 34px; height: 34px; border-radius: 9px; background: var(--mist-100); display: grid; place-items: center; }
.contact__list a:hover { color: var(--forest-700); }
.contact__hint { font-size: .92rem; color: var(--muted); }

.quote {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 1.8rem;
  box-shadow: var(--shadow);
}
.quote__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: .35rem; margin-bottom: 1rem; }
.field span { font-family: var(--f-head); font-weight: 500; text-transform: uppercase; letter-spacing: .04em; font-size: .8rem; color: var(--navy-700); }
.field em { text-transform: none; color: var(--silver-400); font-style: normal; font-weight: 400; }
.field input, .field select, .field textarea {
  font-family: var(--f-body); font-size: 1rem;
  padding: .8rem .9rem; border: 1.5px solid var(--line);
  border-radius: 10px; background: #fbfdfd; color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--forest-600);
  box-shadow: 0 0 0 3px rgba(37, 106, 42, .2);
}
.field textarea { resize: vertical; }
.quote__status { margin: .9rem 0 0; font-weight: 500; min-height: 1.2em; }
.quote__status.is-ok { color: var(--forest-600); }
.quote__status.is-err { color: #c0392b; }
.quote__fineprint { font-size: .78rem; color: var(--silver-400); margin: .8rem 0 0; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-900); color: var(--silver-300); padding-top: 3.2rem; }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2rem; padding-bottom: 2.4rem; }
.footer__logo { height: 66px; width: auto; background: #fff; border-radius: 10px; padding: 6px 10px; }
.footer__tag { margin: 1rem 0 0; font-size: .92rem; max-width: 34ch; }
.footer__col h4 { font-family: var(--f-head); text-transform: uppercase; letter-spacing: .06em; color: #fff; font-size: .95rem; margin: 0 0 .9rem; }
.footer__col a, .footer__muted { display: block; color: var(--silver-300); font-size: .92rem; padding: .22rem 0; transition: color .15s; }
.footer__col a:hover { color: var(--leaf-400); }
.footer__muted { color: var(--silver-400); }
.footer__bar { border-top: 1px solid rgba(255, 255, 255, .09); }
.footer__barinner { display: flex; justify-content: space-between; gap: 1rem; padding: 1.1rem 22px; font-size: .82rem; }

/* ---------- Mobile floating CTA ---------- */
.mobile-cta {
  display: none;
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 55;
  text-align: center;
  background: var(--forest-600); color: #fff;
  font-family: var(--f-head); font-weight: 500; text-transform: uppercase; letter-spacing: .05em;
  padding: .95rem; border-radius: 999px;
  box-shadow: 0 12px 28px rgba(0, 22, 43, .4);
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .landing__scroll { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1040px) {
  .nav__link { padding: .5rem .55rem; font-size: .86rem; }
}

@media (max-width: 960px) {
  .why__inner { grid-template-columns: 1fr; gap: 1.8rem; }
  .why__figure { order: -1; }
  .diff-grid { grid-template-columns: 1fr; }
  .about__inner { grid-template-columns: 1fr; gap: 2rem; }
  .contact__inner { grid-template-columns: 1fr; }
  .area__inner { grid-template-columns: 1fr; }
  .grid--services, .grid--gallery, .grid--reviews { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); row-gap: 2.6rem; }
  .timeline::before { display: none; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .topbar__link--email { display: none; }
  .topbar__item { font-size: .8rem; }

  .nav {
    position: fixed; inset: 0 0 0 auto;
    width: min(80vw, 320px);
    flex-direction: column; align-items: stretch;
    gap: .3rem;
    background: var(--navy-800);
    padding: 90px 20px 30px;
    transform: translateX(100%);
    transition: transform .28s ease;
    box-shadow: var(--shadow-lg);
  }
  .nav.is-open { transform: none; }
  .nav__link { font-size: 1.05rem; padding: .8rem 1rem; }
  .nav__link--cta { margin: .6rem 0 0; text-align: center; }
  .nav-toggle { display: flex; z-index: 70; position: absolute; right: 16px; top: 50%; transform: translateY(-50%); }

  .trust__inner { grid-template-columns: repeat(2, 1fr); gap: 1.2rem .5rem; }
  .grid--services, .grid--gallery, .grid--reviews { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .quote__row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__barinner { flex-direction: column; text-align: center; gap: .3rem; }
  .mobile-cta { display: block; }
  body { padding-bottom: 76px; }
  .area__list { grid-template-columns: repeat(2, 1fr); }
  .landing__scroll { display: none; }
  /* Keep the corner logo from overlapping the centered headline on phones */
  .landing { align-items: start; padding-top: 150px; }
  .landing__logo-corner { top: 16px; left: 16px; }
  .landing__logo-corner img { width: 76px; }
}

@media (max-width: 420px) {
  .landing__cta .btn { width: 100%; }
}

/* ============================================================
   Additions: pricing, cost-of-waiting, guarantee, FAQ,
   streamlined quote, extra buttons
   ============================================================ */

.wrap--narrow { max-width: 860px; }

/* Extra button variants */
.btn--outline { background: transparent; color: var(--forest-700); border-color: var(--forest-600); }
.btn--outline:hover { background: var(--forest-600); color: #fff; transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--forest-700); box-shadow: 0 10px 24px rgba(0, 0, 0, .2); }
.btn--light:hover { background: #eef4ef; transform: translateY(-2px); }

/* Service card price tag */
.card { display: flex; flex-direction: column; }
.card__price {
  margin: 1rem 0 0; margin-top: auto; padding-top: .85rem;
  border-top: 1px solid var(--line);
  font-family: var(--f-head); font-weight: 500; letter-spacing: .02em;
  font-size: .9rem; color: var(--forest-700);
}

/* Cost of waiting */
.cost { margin-top: 2.6rem; }
.cost__intro { text-align: center; font-family: var(--f-head); font-weight: 500; color: var(--navy-800); font-size: 1.2rem; margin: 0 0 1.4rem; }
.cost__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.cost__col { border-radius: var(--radius); padding: 1.8rem; border: 1px solid var(--line); }
.cost__col--bad { background: #fbf1ee; border-color: #f0d9d2; }
.cost__col--good { background: #eef6ec; border-color: #d4e8cd; }
.cost__title { font-family: var(--f-head); font-weight: 500; font-size: 1.2rem; margin: 0 0 .25rem; color: var(--navy-800); }
.cost__note { margin: 0 0 1rem; color: var(--muted); font-size: .9rem; }
.cost__list { display: grid; gap: .6rem; margin: 0 0 1.2rem; }
.cost__list li { position: relative; padding-left: 1.5rem; color: var(--ink); font-size: .96rem; }
.cost__col--bad .cost__list li::before { content: "✕"; position: absolute; left: 0; color: #c0503a; font-weight: 500; }
.cost__col--good .cost__list li::before { content: "✓"; position: absolute; left: 0; color: var(--forest-600); font-weight: 500; }
.cost__figure { margin: 0; padding-top: 1rem; border-top: 1px dashed rgba(0, 0, 0, .12); display: flex; flex-direction: column; }
.cost__figure strong { font-family: var(--f-display); font-weight: 500; font-size: 1.9rem; color: #b8442c; line-height: 1; }
.cost__figure span { font-size: .82rem; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; margin-top: .25rem; }
.cost__figure--good strong { color: var(--forest-600); }

/* Pricing */
.grid--pricing { grid-template-columns: repeat(4, 1fr); margin-top: .8rem; }
.price-card {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.8rem 1.5rem;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.price-card--feature { border-color: var(--forest-500); box-shadow: 0 16px 40px rgba(37, 106, 42, .16); }
.price-card__badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--forest-600); color: #fff;
  font-family: var(--f-head); font-weight: 500; text-transform: uppercase; letter-spacing: .05em;
  font-size: .72rem; padding: .3rem .8rem; border-radius: 999px; white-space: nowrap;
}
.price-card__name { font-family: var(--f-head); font-weight: 500; text-transform: uppercase; letter-spacing: .02em; color: var(--navy-800); font-size: 1.05rem; margin: 0 0 .8rem; min-height: 2.7em; }
.price-card__amount { font-family: var(--f-display); font-weight: 500; color: var(--forest-600); font-size: 2.2rem; line-height: 1; margin: 0; }
.price-card__amount span { font-family: var(--f-body); font-weight: 500; font-size: .85rem; color: var(--muted); white-space: nowrap; }
.price-card__unit { margin: .4rem 0 0; font-size: .85rem; color: var(--muted); }
.price-card__list { display: grid; gap: .55rem; margin: 1.1rem 0 0; padding-top: 1.1rem; border-top: 1px solid var(--line); }
.price-card__list li { position: relative; padding-left: 1.4rem; font-size: .92rem; color: var(--ink); }
.price-card__list li::before { content: "✓"; position: absolute; left: 0; color: var(--forest-600); font-weight: 500; }
.pricing__foot { text-align: center; margin-top: 2.4rem; }
.pricing__foot > p { color: var(--muted); max-width: 62ch; margin: 0 auto 1.4rem; }
.pricing__foot strong { color: var(--navy-800); }
.pricing__cta { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; }

/* Guarantee band */
.guarantee { background: linear-gradient(150deg, var(--forest-600), var(--forest-900)); color: #fff; }
.guarantee__inner { display: flex; align-items: center; gap: 2rem; padding: 2.6rem 22px; }
.guarantee__seal { flex: 0 0 auto; width: 98px; height: 98px; border-radius: 50%; border: 3px dashed rgba(255, 255, 255, .6); display: grid; place-items: center; }
.guarantee__seal span { font-family: var(--f-display); font-weight: 500; font-size: 2.1rem; line-height: .85; text-align: center; display: flex; flex-direction: column; align-items: center; }
.guarantee__seal small { font-size: .55rem; letter-spacing: .12em; margin-top: 3px; }
.guarantee__copy { flex: 1; }
.guarantee__title { font-family: var(--f-display); font-weight: 500; text-transform: uppercase; color: #fff; font-size: clamp(1.5rem, 3vw, 2.1rem); margin: 0 0 .4rem; }
.guarantee__copy p { margin: 0; color: #e7edf0; max-width: 64ch; }

/* FAQ */
.faq__list { display: grid; gap: .8rem; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq__item summary { cursor: pointer; list-style: none; padding: 1.15rem 1.4rem; font-family: var(--f-head); font-weight: 500; color: var(--navy-800); font-size: 1.04rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-size: 1.5rem; color: var(--forest-600); transition: transform .2s ease; line-height: 1; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__a { padding: 0 1.4rem 1.3rem; }
.faq__a p { margin: 0; color: var(--muted); }
.faq__cta { text-align: center; margin-top: 2rem; }
.faq__cta p { font-family: var(--f-head); font-weight: 500; color: var(--navy-800); margin: 0 0 .9rem; }

/* Streamlined quote flow */
.next-steps { display: grid; gap: 1rem; margin: 1.6rem 0; }
.next-steps li { display: flex; gap: .9rem; align-items: flex-start; }
.next-steps__n { flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%; background: var(--forest-600); color: #fff; display: grid; place-items: center; font-family: var(--f-head); font-weight: 500; font-size: .9rem; margin-top: 2px; }
.next-steps li div strong { display: block; color: var(--navy-800); }
.next-steps li div span { color: var(--muted); font-size: .92rem; }
.contact__list em { color: var(--silver-400); font-style: normal; font-size: .85rem; }
.quote__lead { font-family: var(--f-head); font-weight: 500; text-transform: uppercase; letter-spacing: .03em; color: var(--navy-800); font-size: 1.05rem; margin: 0 0 1rem; }
.quote__optional { font-size: .85rem; color: var(--muted); margin: .2rem 0 1rem; padding-top: .9rem; border-top: 1px dashed var(--line); }
/* Honeypot spam trap — hidden from real users */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; overflow: hidden; }

/* Responsive for additions */
@media (max-width: 900px) {
  .grid--pricing { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .cost__grid { grid-template-columns: 1fr; }
  .grid--pricing { grid-template-columns: 1fr; }
  .guarantee__inner { flex-direction: column; text-align: center; }
  .guarantee__copy p { margin-inline: auto; }
}
