/* =========================================================
   Constructive Painting & Decorating — hand-built static site
   Palette from the real logo: charcoal ink + Dulux-green accent.
   Type: Syne (display) + Karla (body).
   ========================================================= */

:root {
  --ink: #231916;
  --ink-soft: #4a3f3a;
  --paper: #f7f2e9;
  --paper-alt: #efe7d8;
  --card: #fffdf8;
  --green: #4f9420;
  --green-bright: #62ae25;
  --green-dark: #366414;
  --line: #e4d9c4;
  --shadow: 0 24px 48px -24px rgba(35, 25, 22, 0.32);
  --shadow-sm: 0 8px 20px -10px rgba(35, 25, 22, 0.25);
  --radius: 18px;
  --radius-sm: 10px;
  --maxw: 1200px;
  --ff-display: "Syne", sans-serif;
  --ff-body: "Karla", sans-serif;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
html, body { max-width: 100%; overflow-x: hidden; }

body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 700;
  line-height: 1.08;
  margin: 0;
  letter-spacing: -0.01em;
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; margin: 0; padding: 0; }

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

.i { width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Reveal (with safety net, per build-site floor) ---------- */
.reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s ease, transform .7s ease;
  }
  .reveal.in { opacity: 1; transform: none; }
}
/* Safety net: never leave content invisible if JS fails or is slow */
.no-js .reveal, .reveal.force-in { opacity: 1 !important; transform: none !important; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  padding: 14px 24px;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn .i { width: 1.05em; height: 1.05em; }
.btn--primary { background: var(--green-bright); color: #16210a; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--green); transform: translateY(-2px); box-shadow: 0 14px 26px -12px rgba(79,148,32,.55); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--paper); }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn--outline-light:hover { background: #fff; color: var(--ink); }
.btn--white { background: #fff; color: var(--ink); }
.btn--white:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn--sm { padding: 10px 18px; font-size: 0.85rem; }
.btn--lg { padding: 17px 30px; font-size: 1rem; }
.btn--xl { padding: 20px 36px; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--ink);
  color: #f3ead9;
  font-size: 0.8rem;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 38px;
  gap: 16px;
}
.topbar__left, .topbar__right { display: flex; align-items: center; gap: 14px; }
.topbar__item { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.topbar__item .i { color: var(--green-bright); }
.topbar__divider { width: 1px; height: 14px; background: rgba(255,255,255,.2); }
.topbar__badge .stars { color: var(--green-bright); letter-spacing: 1px; font-size: 0.75rem; }
.topbar__phone { font-weight: 700; }
.topbar__phone:hover { color: var(--green-bright); }
@media (max-width: 780px) { .topbar__left .topbar__item:first-child span, .topbar { display: none; } }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 242, 233, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.header.scrolled { border-color: var(--line); box-shadow: 0 6px 20px -14px rgba(35,25,22,.3); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
  gap: 20px;
}
.brand { display: flex; align-items: center; }
.brand__logo { height: 44px; width: auto; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav__link { font-family: var(--ff-display); font-weight: 600; font-size: 0.94rem; color: var(--ink-soft); }
.nav__link:hover { color: var(--green); }
.header__cta { display: flex; align-items: center; gap: 10px; }
.hamburger { display: none; }

@media (max-width: 980px) {
  .nav { display: none; }
  .header__cta .btn--ghost { display: none; }
  .header__inner { height: 70px; }
  .hamburger {
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 40px; height: 40px; border: none; background: none; padding: 0;
  }
  .hamburger span { width: 100%; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
  .hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

.drawer {
  position: fixed; top: 0; right: -100%; width: min(340px, 86vw); height: 100vh;
  background: var(--paper); z-index: 90; padding: 100px 28px 28px;
  transition: right .3s ease; box-shadow: -20px 0 40px rgba(0,0,0,.2);
  display: flex; flex-direction: column; gap: 26px;
}
.drawer.open { right: 0; }
.drawer__nav { display: flex; flex-direction: column; gap: 20px; }
.drawer__nav a { font-family: var(--ff-display); font-weight: 700; font-size: 1.2rem; }
.drawer__cta { display: flex; flex-direction: column; gap: 12px; }
.drawer__scrim {
  position: fixed; inset: 0; background: rgba(20,14,12,.5); z-index: 80;
  opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
.drawer__scrim.show { opacity: 1; pointer-events: auto; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 56px 0 90px; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,14,11,.88) 0%, rgba(20,14,11,.82) 38%, rgba(20,14,11,.94) 100%),
    linear-gradient(100deg, rgba(20,14,11,.6) 0%, rgba(20,14,11,.15) 55%);
}
.hero__inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: start;
  padding-top: 28px;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-display); font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--green-dark);
  background: rgba(79,148,32,.12);
  padding: 7px 14px; border-radius: 999px;
  margin-bottom: 18px;
}
.eyebrow--light { color: var(--green-bright); background: rgba(98,174,37,.16); }
.hero__title {
  color: #fbf6ec; font-size: clamp(2.3rem, 5vw, 3.6rem);
  margin-bottom: 20px; max-width: 15ch;
}
.hero__title .mark { color: var(--green-bright); font-style: italic; }
.hero__lead { color: #e7ddc9; font-size: 1.08rem; max-width: 46ch; margin-bottom: 26px; }
.hero__chips { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-bottom: 30px; }
.hero__chips li {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.88rem; font-weight: 600; color: #f3ead9;
}
.hero__chips .i { color: var(--green-bright); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.hero__rating { display: flex; align-items: center; gap: 10px; color: #e7ddc9; font-size: 0.92rem; }
.stars { color: var(--green-bright); letter-spacing: 2px; }
.stars--lg { font-size: 1.6rem; }

/* Lead capture card (trade route: floated on hero) */
.quotecard {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
  border: 1px solid rgba(35,25,22,.06);
}
.quotecard__head h2, .quotecard__head h3 { font-size: 1.3rem; margin-bottom: 6px; }
.quotecard__head p { color: var(--ink-soft); font-size: 0.9rem; margin-bottom: 20px; }

.qform { display: flex; flex-direction: column; gap: 14px; }
.qform--stack .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { position: relative; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--ff-body); font-size: 0.95rem;
  padding: 16px 14px 8px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: #fff; color: var(--ink); transition: border-color .18s ease;
}
.field textarea { resize: vertical; min-height: 70px; }
.field label {
  position: absolute; left: 14px; top: 15px; font-size: 0.95rem; color: var(--ink-soft);
  pointer-events: none; transition: transform .15s ease, font-size .15s ease, color .15s ease, top .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green); }
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label,
.field.filled label, .field select:focus + label {
  top: 6px; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--green-dark);
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234a3f3a' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; }
.field.error input, .field.error select, .field.error textarea { border-color: #c0392b; }
.qform__note { display: flex; align-items: center; gap: 7px; font-size: 0.78rem; color: var(--ink-soft); margin: 0; }
.qform__note .i { color: var(--green); flex-shrink: 0; }

@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero { padding-bottom: 60px; }
}
@media (max-width: 560px) {
  .qform--stack .field-row { grid-template-columns: 1fr; }
  .hero__chips { gap: 8px 14px; }
}

/* ---------- Trust strip ---------- */
.trust { background: var(--ink); padding: 30px 0; }
.trust__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.trust__item { display: flex; align-items: center; gap: 14px; }
.trust__item svg { width: 34px; height: 34px; padding: 8px; border-radius: 12px; background: rgba(98,174,37,.16); color: var(--green-bright); flex-shrink: 0; }
.trust__item strong { display: block; color: #fbf6ec; font-family: var(--ff-display); font-size: 0.98rem; }
.trust__item span { display: block; color: #cabfa9; font-size: 0.82rem; margin-top: 2px; }
@media (max-width: 900px) { .trust__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .trust__grid { grid-template-columns: 1fr; } }

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section--alt { background: var(--paper-alt); }
.section__head { max-width: 640px; margin: 0 auto 52px; text-align: center; }
.section__head .eyebrow { background: rgba(79,148,32,.1); }
.section__title { font-size: clamp(1.7rem, 3.4vw, 2.5rem); margin-bottom: 14px; }
.section__sub { color: var(--ink-soft); font-size: 1.02rem; }

/* ---------- Services ---------- */
.services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  gap: 22px;
}
.scard {
  background: var(--card);
  border-radius: var(--radius);
  padding: 30px 26px;
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.scard:hover { transform: translateY(-6px); box-shadow: var(--shadow-sm); }
.scard--feature { grid-column: span 2; grid-row: span 2; padding: 0; overflow: hidden; }
.scard__media { height: 180px; overflow: hidden; }
.scard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.scard--feature:hover .scard__media img { transform: scale(1.06); }
.scard__body { padding: 26px 28px 30px; }
.scard__icon {
  width: 52px; height: 52px; display: flex; align-items: center; justify-content: center;
  border-radius: 14px; background: rgba(79,148,32,.1); color: var(--green-dark); margin-bottom: 18px;
}
.scard__icon svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.scard h3 { font-size: 1.2rem; margin-bottom: 10px; }
.scard p { color: var(--ink-soft); font-size: 0.94rem; flex-grow: 1; }
.scard__link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-weight: 700; color: var(--green-dark); font-size: 0.9rem; }
.scard__link .i { transition: transform .18s ease; }
.scard__link:hover .i { transform: translateX(4px); }
.scard--cta { background: var(--ink); color: #fbf6ec; justify-content: center; text-align: center; gap: 14px; }
.scard--cta h3 { color: #fbf6ec; }
.scard--cta p { color: #cabfa9; margin-bottom: 6px; }

@media (max-width: 980px) {
  .services { grid-template-columns: repeat(2, 1fr); }
  .scard--feature { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 640px) {
  .services { grid-template-columns: 1fr; }
  .scard--feature { grid-column: span 1; }
}

/* ---------- Process steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.step {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 24px;
}
.step__num {
  display: block;
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--green);
  margin-bottom: 18px;
}
.step__icon {
  width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
  border-radius: 12px; background: rgba(79,148,32,.1); color: var(--green-dark); margin-bottom: 18px;
}
.step__icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step p { color: var(--ink-soft); font-size: 0.9rem; }

@media (max-width: 980px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Why us ---------- */
.why { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center; }
.why__media { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.why__media img { width: 100%; height: 460px; object-fit: cover; }
.why__badge {
  position: absolute; bottom: 20px; left: 20px; background: var(--green-bright);
  color: #16210a; border-radius: var(--radius-sm); padding: 16px 20px;
  display: flex; flex-direction: column; align-items: center; line-height: 1.1; box-shadow: var(--shadow-sm);
}
.why__badge-num { font-family: var(--ff-display); font-weight: 800; font-size: 2.1rem; }
.why__badge-num span { font-size: 1.2rem; }
.why__badge-label { font-size: 0.72rem; font-weight: 700; text-align: center; margin-top: 4px; }
.why__body .eyebrow { margin-bottom: 16px; }
.why__body .section__title { margin-bottom: 16px; }
.why__body .section__sub { margin-bottom: 30px; }
.feature-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 34px; }
.feature-list li { display: flex; gap: 16px; align-items: flex-start; }
.feature-list__ico {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: 12px;
  background: rgba(79,148,32,.1); color: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
}
.feature-list__ico svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2; }
.feature-list strong { display: block; font-family: var(--ff-display); font-size: 1.02rem; margin-bottom: 3px; }
.feature-list p { color: var(--ink-soft); font-size: 0.92rem; }
.why__actions { display: flex; flex-wrap: wrap; gap: 14px; }

@media (max-width: 980px) {
  .why { grid-template-columns: 1fr; gap: 36px; }
  .why__media img { height: 320px; }
}

/* ---------- Stats ---------- */
.stats { background: var(--ink); padding: 64px 0; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat__num { display: block; font-family: var(--ff-display); font-weight: 800; font-size: clamp(2rem, 4vw, 2.7rem); color: var(--green-bright); }
.stat__label { display: block; color: #cabfa9; font-size: 0.88rem; margin-top: 8px; }
@media (max-width: 760px) { .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; } }

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 18px;
}
.gallery__item {
  position: relative; margin: 0; border-radius: var(--radius-sm); overflow: hidden;
  cursor: zoom-in;
}
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery__item:hover img { transform: scale(1.07); }
.gallery__item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 14px 16px 12px;
  background: linear-gradient(0deg, rgba(20,14,11,.85), rgba(20,14,11,0));
  color: #fbf6ec; font-size: 0.82rem; font-weight: 600;
  opacity: 0; transform: translateY(6px); transition: opacity .2s ease, transform .2s ease;
}
.gallery__item:hover figcaption { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery__item--tall { grid-row: span 1; }
}
@media (max-width: 560px) {
  .gallery { grid-template-columns: 1fr; }
  .gallery__item--wide { grid-column: span 1; }
  .gallery__item figcaption { opacity: 1; transform: none; }
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; background: rgba(15,10,8,.94); z-index: 200;
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  opacity: 0; pointer-events: none; transition: opacity .25s ease;
}
.lightbox.show { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: min(88vw, 1000px); max-height: 78vh; border-radius: 10px; box-shadow: 0 30px 60px rgba(0,0,0,.5); }
.lightbox__caption { color: #f3ead9; margin-top: 16px; font-size: 0.9rem; }
.lightbox__close, .lightbox__nav {
  position: absolute; background: rgba(255,255,255,.08); color: #fff; border: none;
  border-radius: 999px; width: 46px; height: 46px; font-size: 1.5rem; display: flex; align-items: center; justify-content: center;
  transition: background .18s ease;
}
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255,255,255,.2); }
.lightbox__close { top: 24px; right: 24px; }
.lightbox__nav--prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 24px; top: 50%; transform: translateY(-50%); }
@media (max-width: 640px) { .lightbox__nav { width: 40px; height: 40px; } .lightbox__nav--prev { left: 10px; } .lightbox__nav--next { right: 10px; } }

/* ---------- Reviews band ---------- */
.reviews-band {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 56px 30px; text-align: center; max-width: 640px; margin: 0 auto; box-shadow: var(--shadow-sm);
}
.reviews-band__google { display: flex; justify-content: center; margin-bottom: 14px; }
.google-g { width: 34px; height: 34px; }
.reviews-band__lead { font-size: 1.2rem; margin: 14px 0 6px; }
.reviews-band__sub { color: var(--ink-soft); font-size: 0.94rem; margin-bottom: 24px; }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 780px; }
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 4px 22px;
}
.faq__item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 0; font-family: var(--ff-display); font-weight: 700; font-size: 1rem; cursor: pointer; list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__plus { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.faq__plus::before, .faq__plus::after { content: ""; position: absolute; background: var(--ink); border-radius: 2px; }
.faq__plus::before { width: 100%; height: 2px; top: 50%; left: 0; transform: translateY(-50%); }
.faq__plus::after { height: 100%; width: 2px; left: 50%; top: 0; transform: translateX(-50%); transition: transform .2s ease; }
.faq__item[open] .faq__plus::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq__a { padding-bottom: 20px; color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- Contact ---------- */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact__info .section__title { margin: 14px 0; }
.contact__info .section__sub { margin-bottom: 34px; max-width: 44ch; }
.contact__list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 34px; }
.contact__list li { display: flex; gap: 16px; align-items: center; }
/* The text column must be allowed to shrink/wrap -- flex items default to
   min-width:auto, which let the long email address overflow its row instead
   of wrapping (silently clipped by the page's overflow-x:hidden guard). */
.contact__list li > div { min-width: 0; }
.contact__list a, .contact__list strong { overflow-wrap: break-word; word-break: break-word; }
.contact__ico {
  width: 46px; height: 46px; flex-shrink: 0; border-radius: 12px;
  background: rgba(79,148,32,.1); color: var(--green-dark); display: flex; align-items: center; justify-content: center;
}
.contact__ico svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2; }
.contact__list span { display: block; font-size: 0.78rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .04em; }
.contact__list a, .contact__list strong { font-family: var(--ff-display); font-weight: 700; font-size: 1.02rem; }
.contact__list a:hover { color: var(--green-dark); }
.quotecard--solid { border: 1px solid var(--line); }

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

/* ---------- Map ---------- */
.mapsec { padding: 90px 0; background: var(--paper-alt); }
.mapsec__inner { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 48px; align-items: center; }
.mapsec__text .section__sub { margin: 12px 0 24px; }
.mapsec__frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); height: 340px; }
.mapsec__frame iframe { width: 100%; height: 100%; border: 0; }
@media (max-width: 900px) { .mapsec__inner { grid-template-columns: 1fr; } .mapsec__frame { height: 280px; } }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #cabfa9; padding: 70px 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer__brand p { margin-top: 18px; font-size: 0.9rem; max-width: 34ch; }
.brand__chip { display: inline-block; background: #fdfaf3; border-radius: 12px; padding: 12px 16px; }
.brand__chip img { height: 32px; width: auto; }
.footer__col h4 { color: #fbf6ec; font-size: 0.9rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 18px; }
.footer__col a { display: block; margin-bottom: 12px; font-size: 0.92rem; }
.footer__col a:hover { color: var(--green-bright); }
.footer__phone { font-family: var(--ff-display); font-weight: 700; font-size: 1.15rem; color: #fbf6ec; }
.footer__contact p { font-size: 0.88rem; margin-top: 10px; line-height: 1.6; }
.footer__bar { padding: 22px 0 26px; }
.footer__bar-inner { display: flex; justify-content: center; text-align: center; }
.footer__bar p { font-size: 0.8rem; color: #a8977e; }

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

/* ---------- Mobile sticky call bar ---------- */
.callbar { display: none; }
@media (max-width: 780px) {
  .callbar {
    display: grid; grid-template-columns: 1fr 1fr; position: fixed; bottom: 0; left: 0; right: 0;
    z-index: 70; box-shadow: 0 -10px 24px rgba(0,0,0,.18);
  }
  .callbar__btn { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 16px 0; font-family: var(--ff-display); font-weight: 700; font-size: 0.94rem; }
  .callbar__btn--call { background: var(--ink); color: #fbf6ec; }
  .callbar__btn--quote { background: var(--green-bright); color: #16210a; }
  body { padding-bottom: 58px; }
}

/* ---------- Toast ---------- */
.toast {
  position: fixed; left: 50%; bottom: 28px; transform: translate(-50%, 140%);
  background: var(--ink); color: #fbf6ec; padding: 16px 24px; border-radius: 999px;
  display: flex; align-items: center; gap: 10px; box-shadow: var(--shadow);
  font-size: 0.92rem; font-weight: 600; z-index: 150;
  transition: transform .35s ease, opacity .35s ease, visibility 0s linear .35s;
  max-width: 92vw;
  /* Hidden state must fully clear the viewport regardless of wrapped-text
     height (a %-based transform alone left a sliver poking up above the
     mobile sticky call bar on load) -- opacity/visibility is the real guard,
     the transform is just the slide-in motion once shown. */
  opacity: 0; visibility: hidden; pointer-events: none;
}
.toast .i { color: var(--green-bright); flex-shrink: 0; }
.toast.show {
  transform: translate(-50%, 0); opacity: 1; visibility: visible; pointer-events: auto;
  transition: transform .35s ease, opacity .35s ease, visibility 0s linear;
}
@media (max-width: 780px) { .toast { bottom: 74px; } }
