/* Palette pulled from the brochure: lime green, sky blue, sunshine yellow, grass green, white */
:root {
  --lime:    #c4e533;
  --lime-2:  #a9cc23;
  --grass:   #3aa53a;
  --grass-2: #1f7a1f;
  --sky:     #79c6e8;
  --sky-2:   #b8e2f1;
  --sun:     #ffd400;
  --ink:     #1c2a1c;
  --ink-2:   #2f3a2f;
  --paper:   #fffdf3;
  --shadow:  0 6px 20px rgba(0,0,0,.18);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

a { color: var(--grass-2); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  isolation: isolate;
  border-bottom: 6px solid var(--sun);
}

.sky {
  position: relative;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(255,255,255,.85), transparent 55%),
    radial-gradient(ellipse at 80% 30%, rgba(255,255,255,.6), transparent 55%),
    linear-gradient(180deg, var(--sky-2) 0%, var(--sky) 70%);
  padding: clamp(2rem, 6vw, 5rem) clamp(1rem, 5vw, 4rem) clamp(3rem, 8vw, 6rem);
  overflow: hidden;
}

.tree {
  position: absolute;
  top: 8px;
  left: 8px;
  width: clamp(140px, 18vw, 240px);
  filter: drop-shadow(0 6px 8px rgba(0,0,0,.15));
  pointer-events: none;
  user-select: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: clamp(140px, 18vw, 260px);
}

h1 {
  margin: 0 0 .8rem;
  font-weight: 900;
  letter-spacing: .5px;
  text-transform: uppercase;
  font-style: italic;
  line-height: 1;
  font-size: clamp(2rem, 6vw, 4.5rem);
  color: var(--lime);
  -webkit-text-stroke: 2px var(--ink);
  text-shadow: 3px 3px 0 var(--ink);
}
h1 span { display: block; }
h1 .brand-3 {
  font-size: .42em;
  color: #ff2222;
  -webkit-text-stroke: 1px var(--ink);
  text-shadow: 2px 2px 0 #fff;
  letter-spacing: 2px;
  margin-top: .35em;
}

.tagline {
  font-size: clamp(1rem, 1.7vw, 1.3rem);
  color: var(--ink);
  background: rgba(255,255,255,.7);
  display: inline-block;
  padding: .35em .75em;
  border-radius: 4px;
  margin: 0 0 1.2rem;
}

.hero-cta {
  background: rgba(255,255,255,.85);
  border: 2px solid var(--ink);
  border-radius: 10px;
  padding: 1rem 1.1rem 1.1rem;
  margin: 0 0 1rem;
  max-width: 620px;
  box-shadow: var(--shadow);
}
.hero-cta-label {
  margin: 0 0 .7rem;
  font-weight: 700;
  color: var(--ink);
}
.hero-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}
.hero-cta-buttons .action { flex: 1 1 200px; }

.badges {
  margin: 0;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .5px;
  color: var(--ink-2);
  background: rgba(255,255,255,.6);
  display: inline-block;
  padding: .35em .8em;
  border-radius: 999px;
}

/* grass strip at bottom of hero */
.grass {
  height: 32px;
  background:
    radial-gradient(circle at 10% 0, var(--lime) 0 6px, transparent 7px),
    radial-gradient(circle at 25% 0, var(--lime-2) 0 8px, transparent 9px),
    radial-gradient(circle at 45% 0, var(--lime) 0 6px, transparent 7px),
    radial-gradient(circle at 65% 0, var(--lime-2) 0 9px, transparent 10px),
    radial-gradient(circle at 85% 0, var(--lime) 0 6px, transparent 7px),
    linear-gradient(180deg, var(--grass) 0%, var(--grass-2) 100%);
  background-size: 80px 100%, 80px 100%, 80px 100%, 80px 100%, 80px 100%, 100% 100%;
  background-repeat: repeat-x;
}

/* ---------- SECTIONS ---------- */
main { max-width: 1100px; margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2rem); }

section { padding: clamp(2.5rem, 6vw, 4.5rem) 0; border-bottom: 1px dashed rgba(31,122,31,.25); }
section:last-of-type { border-bottom: 0; }

h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin: 0 0 .5rem;
  color: var(--grass-2);
  text-transform: uppercase;
  letter-spacing: 1px;
  border-left: 8px solid var(--sun);
  padding-left: .6rem;
}
.lede { color: var(--ink-2); margin-top: 0; font-size: 1.1rem; }

/* services grid */
.grid {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.grid li {
  background: #fff;
  border: 2px solid var(--ink);
  border-top: 8px solid var(--lime);
  border-radius: 8px;
  padding: 1rem 1.1rem 1.1rem;
  box-shadow: 0 3px 0 var(--grass-2);
}
.grid h3 { margin: 0 0 .25rem; color: var(--grass-2); font-size: 1.1rem; }
.grid p  { margin: 0; color: var(--ink-2); font-size: .95rem; }

/* gallery */
.gallery {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.gallery h2 { grid-column: 1 / -1; }
.gallery figure {
  margin: 0;
  border: 4px solid var(--lime);
  outline: 2px solid var(--ink);
  background: #fff;
  border-radius: 4px;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.gallery img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}
.gallery figcaption {
  padding: .6rem .8rem;
  font-size: .9rem;
  color: var(--ink-2);
  background: var(--sun);
  border-top: 2px solid var(--ink);
}

/* why */
.why ul { list-style: none; padding: 0; margin: 1rem 0 0; display: grid; gap: .6rem; }
.why li {
  padding: .8rem 1rem;
  background: #fff;
  border-left: 6px solid var(--grass);
  border-radius: 4px;
  box-shadow: 0 1px 0 rgba(0,0,0,.06);
}
.why strong { color: var(--grass-2); }

/* contact */
.contact {
  text-align: center;
  background: linear-gradient(180deg, var(--sky-2), #fff);
  border-radius: 12px;
  margin-bottom: 2rem;
  padding: 3rem 1.5rem;
  border: 3px solid var(--lime);
}
.contact h2 { display: inline-block; border-left: 0; padding-left: 0; }
.big-phone { margin: 1rem 0 .5rem; }
.big-phone a {
  font-size: clamp(1.6rem, 5vw, 3rem);
  font-weight: 900;
  color: #fff;
  background: #e60000;
  padding: .25em .6em;
  border-radius: 12px;
  text-decoration: none;
  border: 4px solid var(--ink);
  display: inline-block;
  box-shadow: var(--shadow);
  letter-spacing: 2px;
  word-break: keep-all;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .8rem;
  margin: .5rem 0 1rem;
}
.action {
  flex: 0 1 200px;
  text-align: center;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: .85em 1.2em;
  border: 3px solid var(--ink);
  border-radius: 10px;
  text-decoration: none;
  box-shadow: var(--shadow);
}
.action.call { background: #e60000; color: #fff; }
.action.text { background: var(--lime); color: var(--ink); }
.action.call:hover { background: #ff1a1a; }
.action.text:hover { background: #d6f04a; }
.fineprint { color: var(--ink-2); margin-top: .5rem; }

/* footer */
footer {
  background: var(--grass-2);
  color: #fff;
  text-align: center;
  padding: 1.2rem;
  font-size: .9rem;
}
footer a { color: var(--sun); text-decoration: none; font-weight: 700; }

/* tablet */
@media (max-width: 900px) {
  .hero-inner { padding-left: clamp(120px, 22vw, 200px); }
  .gallery { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
}

/* mobile */
@media (max-width: 640px) {
  .hero-inner { padding-left: 0; padding-top: 130px; }
  .tree { width: 120px; top: 6px; left: 6px; }
  h1 {
    text-shadow: 2px 2px 0 var(--ink);
    -webkit-text-stroke: 1.5px var(--ink);
  }
  h1 .brand-3 { letter-spacing: 1px; }
  .hero-cta-buttons .action { flex: 1 1 100%; }
  .gallery img { height: 200px; }
  .grid { grid-template-columns: 1fr; }
  .action { flex: 1 1 100%; }
  section { padding: 2rem 0; }
  .contact { padding: 2rem 1rem; }
}

/* very small */
@media (max-width: 380px) {
  .badges span { font-size: .75rem; }
  .big-phone a { letter-spacing: 1px; padding: .25em .4em; }
}

/* respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
