/* Rake it Easy — hand-drawn, friendly, "for your yard" */
:root {
  --green: rgb(0, 150, 57);
  --green-dark: rgb(0, 110, 42);
  --green-deep: rgb(0, 80, 30);
  --gold: rgb(255, 209, 0);
  --gold-warm: rgb(255, 195, 0);
  --black: rgb(0, 0, 0);
  --ink: #f4f1ea;
  --paper: #0a0a0a;
  --paper-soft: #141414;
  --paper-light: #f7f4ec;
  --maxw: 1200px;
  --pad: clamp(1.25rem, 4vw, 3rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Nunito", "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* Typography */
h1, h2, h3 {
  font-family: "Fredoka", "Nunito", sans-serif;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  color: var(--ink);
}
h1 { font-size: clamp(2.6rem, 7vw, 5.5rem); }
h2 { font-size: clamp(1.9rem, 4.5vw, 3.25rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); }
p { margin: 0 0 1em; }

.accent {
  font-family: "Permanent Marker", "Fredoka", cursive;
  color: var(--gold);
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* Layout */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }
section { padding: clamp(3.5rem, 8vw, 7rem) 0; }
.section-light { background: var(--paper-light); color: #111; }
.section-light h1, .section-light h2, .section-light h3 { color: #111; }
.section-green { background: var(--green); color: #fff; }
.section-green h2, .section-green h3 { color: #fff; }

/* Header / nav */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid #222;
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem var(--pad); max-width: var(--maxw); margin: 0 auto;
  gap: 1rem;
}

/* Logo (mini version of the card) */
.brand { text-decoration: none; display: flex; align-items: center; gap: 0.6rem; }
.brand-logo {
  display: flex; align-items: baseline; gap: 0.3rem;
  line-height: 1;
}
.brand-rake {
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  font-size: 1.55rem;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--green);
  letter-spacing: -0.01em;
}
.brand-easy {
  font-family: "Permanent Marker", cursive;
  font-size: 1.45rem;
  color: var(--gold);
  letter-spacing: 0.02em;
  transform: translateY(-2px);
}
.brand-leaf { width: 32px; height: 32px; flex-shrink: 0; }

.nav-links { display: flex; gap: 1.5rem; align-items: center; }
.nav-links a {
  text-decoration: none;
  font-family: "Fredoka", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--ink);
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); border-color: var(--green); }
.nav-cta {
  background: var(--green); color: #fff !important;
  padding: 0.6rem 1.1rem !important;
  border-radius: 999px;
  border-bottom: 0 !important;
}
.nav-cta:hover { background: var(--gold); color: var(--black) !important; }

.nav-toggle { display: none; background: none; border: 0; font-size: 1.6rem; cursor: pointer; color: var(--ink); }

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--paper);
    flex-direction: column;
    padding: 1rem var(--pad) 1.5rem;
    border-bottom: 1px solid #222;
    gap: 1rem;
  }
  .nav-links.open { display: flex; }
}

/* Hero */
.hero {
  position: relative;
  background: var(--paper);
  color: #fff;
  overflow: hidden;
  min-height: 88vh;
  display: flex; align-items: center;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("../images/hero.jpg");
  background-size: cover; background-position: center;
  opacity: 0.45;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.85) 80%);
}
.hero .wrap { position: relative; z-index: 2; padding-top: 4rem; padding-bottom: 4rem; }

/* Big logo lockup on hero */
.hero-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  position: relative;
}
.hero-logo .lock-row { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.hero-rake {
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  font-size: clamp(3.5rem, 9vw, 7rem);
  color: transparent;
  -webkit-text-stroke: 3px var(--green);
  line-height: 0.95;
  letter-spacing: -0.01em;
}
.hero-easy {
  font-family: "Permanent Marker", cursive;
  font-size: clamp(3.5rem, 9vw, 7rem);
  color: var(--gold);
  line-height: 0.95;
  letter-spacing: 0.01em;
  transform: rotate(-2deg);
  margin-left: 0.3em;
}
.hero-leaf {
  width: clamp(640px, 96vw, 1120px);
  height: auto;
  transform: translateX(200px);
}

.hero-tagline {
  font-family: "Permanent Marker", cursive;
  color: #fff;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  margin: 0.5rem 0 1.5rem;
  letter-spacing: 0.02em;
}

.hero-strap {
  font-family: "Permanent Marker", cursive;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 1.05;
  color: var(--gold);
  margin: 0.5rem 0 1.5rem;
  text-shadow: 0 4px 24px rgba(0,0,0,0.5);
  transform: rotate(-1.5deg);
  display: inline-block;
}

.hero p.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  max-width: 52ch;
  color: #e8e6e0;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Buttons */
.btn {
  display: inline-block;
  text-decoration: none;
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.95rem 1.75rem;
  border: 0;
  background: var(--gold);
  color: var(--black);
  cursor: pointer;
  border-radius: 999px;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 4px 0 rgba(0,0,0,0.25);
}
.btn:hover { background: var(--green); color: #fff; transform: translateY(-2px); box-shadow: 0 6px 0 rgba(0,0,0,0.3); }
.btn-outline { background: transparent; color: #fff; box-shadow: inset 0 0 0 2px #fff; }
.btn-outline:hover { background: #fff; color: var(--black); box-shadow: inset 0 0 0 2px #fff, 0 6px 0 rgba(0,0,0,0.3); }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--gold); color: var(--black); }

/* Eyebrow */
.eyebrow {
  display: inline-block;
  font-family: "Permanent Marker", cursive;
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}
.eyebrow-green { color: var(--green); }
.section-light .eyebrow { color: var(--green); }

/* Intro / two-col */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
@media (max-width: 800px) { .two-col { grid-template-columns: 1fr; } }
.two-col .image-block {
  background: var(--paper-soft);
  border-radius: 24px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.two-col .image-block img { width: 100%; height: 100%; object-fit: cover; }

.two-col ul { padding-left: 0; list-style: none; }
.two-col ul li {
  padding: 0.4rem 0 0.4rem 1.75rem;
  position: relative;
}
.two-col ul li::before {
  content: "✓";
  position: absolute; left: 0; top: 0.4rem;
  color: var(--green);
  font-weight: 700;
}

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.service-card {
  background: var(--paper-soft);
  border: 1px solid #222;
  padding: 1.75rem;
  border-radius: 20px;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.section-light .service-card { background: #fff; border-color: rgba(0,0,0,0.08); box-shadow: 0 4px 18px rgba(0,0,0,0.05); }
.service-card:hover { transform: translateY(-4px); border-color: var(--green); }
.service-card .num {
  font-family: "Permanent Marker", cursive;
  color: var(--gold);
  font-size: 1rem;
  display: block;
  margin-bottom: 0.5rem;
}
.section-light .service-card .num { color: var(--green); }
.service-card h3 { margin-bottom: 0.5rem; }
.service-card p { font-size: 0.98rem; margin: 0; opacity: 0.88; }

/* Big stripe / CTA band — matches the green stripe on the business card */
.stripe {
  background: var(--green);
  color: #fff;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  position: relative;
}
.stripe::before, .stripe::after {
  content: "";
  position: absolute; left: 0; right: 0; height: 6px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 14px, transparent 14px 28px);
}
.stripe::before { top: 0; }
.stripe::after { bottom: 0; }
.stripe .wrap { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.stripe h2 { margin: 0; color: #fff; max-width: 22ch; }
.stripe .btn { background: var(--gold); color: var(--black); }
.stripe .btn:hover { background: #fff; color: var(--green); }

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}
.gallery .tile {
  aspect-ratio: 1 / 1;
  background: var(--paper-soft);
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 24px rgba(0,0,0,0.35);
}
.gallery .tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery .tile:hover img { transform: scale(1.06); }
.gallery .tile.wide { grid-column: span 2; aspect-ratio: 2 / 1; }
@media (max-width: 600px) { .gallery .tile.wide { grid-column: span 1; aspect-ratio: 1 / 1; } }

/* Testimonials */
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.quote {
  border-radius: 20px;
  padding: 1.75rem;
  background: var(--paper-soft);
  border: 1px solid #222;
  position: relative;
}
.section-light .quote { background: #fff; border-color: rgba(0,0,0,0.08); box-shadow: 0 4px 18px rgba(0,0,0,0.05); }
.quote::before {
  content: "“";
  font-family: "Permanent Marker", cursive;
  font-size: 4rem;
  line-height: 0.6;
  color: var(--green);
  position: absolute;
  top: 1rem; left: 1.25rem;
}
.quote blockquote { margin: 2rem 0 0.75rem; font-size: 1.05rem; }
.quote cite { font-style: normal; font-family: "Permanent Marker", cursive; font-size: 0.95rem; color: var(--gold); }
.section-light .quote cite { color: var(--green); }

/* Contact form */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); }
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info p { margin-bottom: 0.5rem; }
.contact-info .label {
  display: block;
  font-family: "Permanent Marker", cursive;
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 0.2rem;
  margin-top: 1.25rem;
}
.contact-info .value { font-size: 1.3rem; font-weight: 600; font-family: "Fredoka", sans-serif; }
.contact-info .value a { text-decoration: none; }
.contact-info .value a:hover { color: var(--gold); }

form .field { margin-bottom: 1.25rem; }
form label {
  display: block;
  font-family: "Permanent Marker", cursive;
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
form input, form textarea {
  width: 100%;
  padding: 0.95rem 1.1rem;
  border: 1px solid #2a2a2a;
  background: var(--paper-soft);
  color: var(--ink);
  font: inherit;
  border-radius: 14px;
}
form input::placeholder, form textarea::placeholder { color: #777; }
form input:focus, form textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(0,150,57,0.25); }
form textarea { min-height: 170px; resize: vertical; }

/* Footer */
.site-footer {
  background: var(--paper);
  color: #fff;
  padding: 3.5rem 0 2rem;
  border-top: 1px solid #222;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 {
  font-family: "Permanent Marker", cursive;
  font-size: 1.05rem;
  color: var(--gold);
  margin: 0 0 0.75rem;
}
.site-footer a { color: #d8d6d0; text-decoration: none; display: block; padding: 0.2rem 0; }
.site-footer a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid #222;
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-size: 0.9rem;
  color: #888;
}
.footer-tagline {
  font-family: "Permanent Marker", cursive;
  color: var(--gold);
  font-size: 1.1rem;
  margin-top: 0.75rem;
}

/* Strapline band — "No X too Y" */
.strap {
  background: var(--paper);
  color: #fff;
  padding: clamp(3rem, 7vw, 5.5rem) 0;
  text-align: center;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
  position: relative;
}
.strap::before, .strap::after {
  content: "";
  position: absolute; left: 0; right: 0; height: 4px;
  background: repeating-linear-gradient(90deg, var(--green) 0 12px, transparent 12px 24px);
}
.strap::before { top: 0; }
.strap::after { bottom: 0; }
.strap-lines {
  display: flex; flex-direction: column; gap: 0.4rem;
  align-items: center;
}
.strap-line {
  font-family: "Permanent Marker", cursive;
  font-size: clamp(1.6rem, 4vw, 3rem);
  line-height: 1.15;
  color: #fff;
}
.strap-line .hl-gold { color: var(--gold); }
.strap-line .hl-green { color: var(--green); display: inline-block; transform: translateY(-2px); }
.strap-line:nth-child(2) { transform: rotate(-1deg); }
.strap-line:nth-child(3) { transform: rotate(0.5deg); }

/* Page header for inner pages */
.page-header {
  background: var(--paper);
  color: #fff;
  padding: clamp(4rem, 10vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
  position: relative;
  border-bottom: 1px solid #222;
}
.page-header::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0; height: 6px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 14px, transparent 14px 28px);
}
.page-header h1 { color: #fff; }
.page-header p { max-width: 52ch; font-size: 1.15rem; color: #d8d6d0; }
