/* Circle Leaf — light identity from scratch.
   Palette: deep pine green + fresh leaf green on warm cream. No webfonts. */

:root {
  --green-900: #1e3a2a;
  --green-700: #2c5a3c;
  --green-600: #3e7d4f;
  --green-100: #e3eee3;
  --cream: #faf8f1;
  --white: #ffffff;
  --ink: #26302a;
  --muted: #5c6b60;
  --whatsapp: #1f9d55;
  --star: #e8a412;
  --radius: 14px;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3 { font-family: var(--serif); color: var(--green-900); line-height: 1.15; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); margin: 0 0 .3em; }
a { color: var(--green-700); }

/* ---- placeholder tags: small amber chips so Dan can spot what's not final ---- */
.tag {
  display: inline-block;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: #92400e;
  background: #fdf0d2;
  border: 1px dashed #d9a441;
  border-radius: 999px;
  padding: .1em .7em;
  vertical-align: middle;
  white-space: nowrap;
}

/* ---- top bar ---- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: .7rem clamp(1rem, 4vw, 2.5rem);
  background: var(--cream);
  border-bottom: 1px solid var(--green-100);
}
.brand img { border-radius: 50%; }
.brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  color: var(--green-900);
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.1;
}
.brand em { display: block; font-family: var(--sans); font-style: normal; font-size: .68rem; font-weight: 500; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; }
.topbar nav { display: flex; gap: 1.2rem; margin-left: auto; }
.topbar nav a { text-decoration: none; font-weight: 500; font-size: .95rem; }
.topbar nav a:hover { color: var(--green-900); text-decoration: underline; }
.topbar > .btn { margin-left: .5rem; }

/* ---- buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .7rem 1.3rem;
  border-radius: 999px;
  font-weight: 650;
  font-size: 1rem;
  text-decoration: none;
  transition: transform .1s ease, box-shadow .1s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgb(30 58 42 / .18); }
.btn-call { background: var(--green-900); color: var(--white); }
.btn-whatsapp { background: var(--whatsapp); color: var(--white); }
.btn-email { background: var(--white); color: var(--green-900); border: 2px solid var(--green-900); }

/* ---- hero ---- */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 4.5rem) clamp(1rem, 4vw, 2.5rem);
}
.eyebrow {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-600);
  margin: 0 0 .5rem;
}
.hero h1 { font-size: clamp(2.2rem, 5.5vw, 3.4rem); margin: 0 0 .4em; }
.lede { font-size: 1.1rem; color: var(--muted); max-width: 34em; margin: 0 0 1.4rem; }
.cta-row { display: flex; flex-wrap: wrap; gap: .8rem; }
.trust-row { margin-top: 1.2rem; font-size: .92rem; color: var(--muted); }
.google-link { color: inherit; text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--green-600); }
.google-link:hover { color: var(--green-900); }
.stars { color: var(--star); letter-spacing: .1em; font-size: 1em; }
.hero-photo { margin: 0; }
.hero-photo img {
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgb(30 58 42 / .18);
}
.hero-photo figcaption { margin-top: .5rem; text-align: center; }

/* ---- sections ---- */
.section {
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1rem, 4vw, 2.5rem);
}
.section-alt {
  max-width: none;
  background: var(--green-100);
}
.section-alt > * { max-width: 1080px; margin-left: auto; margin-right: auto; }
.section-alt > h2, .section-alt > .section-intro, .section-alt > ul, .section-alt > div {
  padding-left: clamp(1rem, 4vw, 2.5rem);
  padding-right: clamp(1rem, 4vw, 2.5rem);
}
.section-intro { color: var(--muted); margin-top: 0; }

/* services */
.services-grid {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
}
.services-grid li {
  background: var(--white);
  border: 1px solid var(--green-100);
  border-radius: var(--radius);
  padding: 1.4rem 1.4rem 1.2rem;
}
.services-grid h3 { margin: .8rem 0 .3rem; font-size: 1.15rem; }
.services-grid p { margin: 0; font-size: .95rem; color: var(--muted); }

/* gallery — before/after pairs */
.gallery {
  list-style: none;
  margin: 2rem auto 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.8rem 1.5rem;
}
.ba-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; }
.ba-imgs figure { margin: 0; position: relative; }
.gallery img { border-radius: 10px; width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.ba-imgs figcaption {
  position: absolute;
  left: .5rem;
  bottom: .5rem;
  background: rgb(30 58 42 / .78);
  color: var(--white);
  font-size: .72rem;
  font-weight: 650;
  letter-spacing: .04em;
  padding: .15em .7em;
  border-radius: 999px;
}
.ba-caption { margin: .5rem .1rem 0; font-size: .92rem; color: var(--muted); }

/* why choose */
.why-grid {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem 2rem;
}
.why-grid .check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-700);
  font-weight: 700;
}
.why-grid h3 { margin: .6rem 0 .3rem; font-size: 1.1rem; }
.why-grid p { margin: 0; font-size: .95rem; color: var(--muted); }

/* reviews */
.reviews {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
}
.reviews li {
  background: var(--white);
  border: 1px solid var(--green-100);
  border-radius: var(--radius);
  padding: 1.4rem;
}
.reviews .stars { margin: 0 0 .5rem; }
.reviews blockquote { margin: 0 0 .8rem; font-family: var(--serif); font-size: 1.08rem; color: var(--green-900); }
.reviewer { margin: 0; font-size: .88rem; color: var(--muted); font-weight: 600; }

/* about */
.about {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.about figure { margin: 0; }
.about img { border-radius: 50%; }
.about figcaption { text-align: center; margin-top: .6rem; }

/* areas */
.chips {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}
.chips li {
  background: var(--white);
  border: 1px solid var(--green-100);
  border-radius: 999px;
  padding: .35rem 1rem;
  font-size: .95rem;
}

/* contact */
.contact { text-align: center; }
.cta-big { justify-content: center; margin-top: 1.5rem; }
.cta-big .btn { font-size: 1.1rem; padding: .9rem 1.7rem; }

/* footer */
footer { background: var(--green-900); color: #cfe0d2; }
.foot-inner { max-width: 1080px; margin: 0 auto; padding: 2.5rem clamp(1rem, 4vw, 2.5rem) 3rem; }
footer a { color: var(--white); }
footer p { margin: .3rem 0; }
.fineprint { font-size: .85rem; opacity: .8; }
footer .tag { background: transparent; color: #d9a441; border-color: #7a6a3a; }

/* sticky mobile CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  gap: .6rem;
  padding: .6rem .8rem calc(.6rem + env(safe-area-inset-bottom));
  background: var(--white);
  border-top: 1px solid var(--green-100);
  z-index: 20;
}
.sticky-cta .btn { flex: 1; justify-content: center; }

/* ---- responsive ---- */
@media (max-width: 840px) {
  .topbar nav { display: none; }
  .hero { grid-template-columns: 1fr; }
  .about { grid-template-columns: 1fr; text-align: center; }
  .about img { margin: 0 auto; max-width: 260px; }
}
@media (max-width: 720px) {
  .topbar > .btn { display: none; }
  .sticky-cta { display: flex; }
  body { padding-bottom: 4.5rem; }
}
