/* Great Plains Lawn Care LLC — palette from paulhermeslawncare.wixsite.com/website */
:root {
  --ink: #061e20;
  --teal-deep: #1e4c52;
  --teal: #2e5d63;
  --mist: #82acb1;
  --wheat: #f8e1af;
  --gold: #ab9567;
  --gold-deep: #7e6e4c;
  --cream: #f6f0e2;
  --paper: #fbf7ee;
  --white: #ffffff;
  --rule: rgba(171, 149, 103, 0.35);
  --shadow: 0 18px 40px rgba(6, 30, 32, 0.18);
  --font-serif: "Fraunces", "Source Serif 4", Georgia, serif;
  --font-sans: "Source Sans 3", "Segoe UI", Helvetica, Arial, sans-serif;
  --max: 1120px;
  --pad: clamp(1.1rem, 4vw, 2rem);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html:focus-within { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal-deep); }
a:hover { color: var(--gold-deep); }
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--wheat);
  color: var(--ink);
  padding: 0.5rem 0.8rem;
  z-index: 100;
}
.skip:focus { top: 1rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--ink);
  color: var(--wheat);
  border-bottom: 3px solid var(--gold);
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.7rem var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}
.brand img { width: 40px; height: 40px; border-radius: 7px; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  color: var(--wheat);
}
.brand-text span {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.18rem;
}
.nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}
.nav a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
}
.nav a:hover { color: var(--wheat); }
.nav .call {
  background: var(--gold);
  color: var(--ink);
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
}
.nav .call:hover { background: var(--wheat); color: var(--ink); }
.menu-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--wheat);
  padding: 0.35rem 0.6rem;
  font: inherit;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
}

@media (max-width: 760px) {
  .menu-btn { display: inline-block; }
  .nav {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 100%;
    background: #041516;
    flex-direction: column;
    align-items: stretch;
    padding: 0.6rem var(--pad) 1rem;
    gap: 0;
    border-bottom: 3px solid var(--gold);
  }
  .nav.open { display: flex; }
  .nav a { padding: 0.7rem 0; border-bottom: 1px solid rgba(248,225,175,0.12); }
  .nav .call { text-align: center; margin-top: 0.7rem; border: none; }
}

/* Hero */
.hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: grid;
  align-items: end;
  color: var(--cream);
  isolation: isolate;
}
.hero-photo {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 60%;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(6,30,32,0.18) 0%, rgba(6,30,32,0.28) 38%, rgba(6,30,32,0.88) 100%);
}
.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 5.5rem var(--pad) 3rem;
  width: 100%;
}
.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wheat);
  font-weight: 700;
  margin: 0 0 0.7rem;
}
.hero h1 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2.3rem, 7vw, 4.4rem);
  line-height: 1.05;
  margin: 0 0 0.8rem;
  max-width: 14ch;
  color: #fffdf6;
}
.hero .lede {
  max-width: 38rem;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  color: var(--wheat);
  margin: 0 0 1.4rem;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-decoration: none;
  padding: 0.75rem 1.15rem;
  border-radius: 3px;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid transparent;
}
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--wheat); color: var(--ink); }
.btn-ghost { background: transparent; color: var(--wheat); border-color: var(--gold); }
.btn-ghost:hover { background: rgba(248,225,175,0.12); color: #fff; }

/* Bars / sections */
.band {
  background: var(--teal-deep);
  color: var(--wheat);
}
.band-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem var(--pad);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem 1.4rem;
}
.band p { margin: 0; font-size: 0.95rem; }
.band strong { display: block; color: #fff; font-family: var(--font-serif); font-size: 1.15rem; font-weight: 600; }

section { padding: 4rem var(--pad); }
.wrap { max-width: var(--max); margin: 0 auto; }
.kicker {
  color: var(--gold-deep);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
  margin: 0 0 0.45rem;
}
h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.15;
  margin: 0 0 0.8rem;
  color: var(--ink);
}
.section-lead { max-width: 40rem; margin: 0 0 2rem; }

.split {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2.4rem;
  align-items: center;
}
.split figure { margin: 0; }
.split img {
  width: 100%;
  height: 100%;
  max-height: 620px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: var(--shadow);
}
.caption {
  font-size: 0.82rem;
  color: var(--teal);
  margin: 0.5rem 0 0;
  font-style: italic;
}

.about { background: var(--cream); }

/* Services */
.services { background: var(--paper); }
.service {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.8rem;
  align-items: center;
  padding: 2rem 0;
  border-top: 1px solid var(--rule);
}
.service:last-child { border-bottom: 1px solid var(--rule); }
.service.reverse { grid-template-columns: 1.1fr 0.9fr; }
.service.reverse .service-copy { order: 2; }
.service h3 {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  margin: 0 0 0.55rem;
  font-weight: 600;
}
.service p { margin: 0 0 0.7rem; }
.service ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.service li {
  background: rgba(46, 93, 99, 0.09);
  color: var(--teal-deep);
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
}
.service figure { margin: 0; }
.service img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 2px;
}
.service.no-photo {
  grid-template-columns: 1fr;
  background:
    linear-gradient(180deg, transparent, transparent),
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 10px,
      rgba(171,149,103,0.05) 10px,
      rgba(171,149,103,0.05) 11px
    );
}
.service.no-photo .service-copy {
  max-width: 46rem;
  padding: 0.4rem 0;
}

.note {
  font-size: 0.88rem;
  color: var(--teal);
}

/* Gallery */
.yard {
  background: var(--ink);
  color: var(--cream);
}
.yard h2 { color: var(--wheat); }
.yard .section-lead { color: var(--mist); }
.gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: auto auto;
  gap: 0.7rem;
}
.gallery figure { margin: 0; position: relative; }
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 220px;
  max-height: 360px;
}
.gallery figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.4rem 0.8rem 0.6rem;
  background: linear-gradient(transparent, rgba(6,30,32,0.85));
  font-size: 0.82rem;
  color: var(--wheat);
}
.gallery .tall img { min-height: 460px; max-height: none; object-position: 50% 40%; }
.gallery .tall { grid-row: 1 / span 2; }

/* Contact */
.contact { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
  align-items: start;
}
.big-phone {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  text-decoration: none;
  color: var(--ink);
  display: inline-block;
  margin: 0.3rem 0 0.6rem;
  font-weight: 600;
}
.big-phone:hover { color: var(--teal); }
.contact-list { list-style: none; padding: 0; margin: 1rem 0 0; }
.contact-list li { margin: 0 0 0.7rem; }
.contact-list span {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 700;
}
.contact form {
  background: var(--paper);
  padding: 1.3rem;
  border: 1px solid var(--rule);
  box-shadow: var(--shadow);
}
.contact label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  margin: 0.7rem 0 0.25rem;
}
.contact input, .contact textarea {
  width: 100%;
  font: inherit;
  padding: 0.6rem 0.7rem;
  border: 1px solid #c9b992;
  background: #fff;
  color: var(--ink);
  border-radius: 3px;
}
.contact textarea { min-height: 8rem; resize: vertical; }
.contact button {
  margin-top: 1rem;
  width: 100%;
  cursor: pointer;
  font-family: inherit;
}
.form-note { font-size: 0.8rem; color: var(--teal); margin: 0.6rem 0 0; }

footer {
  background: var(--ink);
  color: var(--mist);
  padding: 2rem var(--pad);
  font-size: 0.9rem;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
footer a { color: var(--wheat); text-decoration: none; }
footer strong { color: var(--wheat); font-family: var(--font-serif); }

.mobile-call {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--gold);
  color: var(--ink);
  text-align: center;
  padding: 0.85rem 1rem;
  font-weight: 800;
  text-decoration: none;
  z-index: 50;
  letter-spacing: 0.03em;
}
.mobile-call:hover { color: var(--ink); background: var(--wheat); }

@media (max-width: 860px) {
  .band-inner, .split, .service, .service.reverse, .contact-grid, .gallery {
    grid-template-columns: 1fr;
  }
  .service.reverse .service-copy { order: 0; }
  .gallery .tall { grid-row: auto; }
  .gallery .tall img { min-height: 280px; max-height: 420px; }
  .service img { height: 220px; }
}

@media (max-width: 640px) {
  .band-inner { grid-template-columns: 1fr; }
  section { padding: 3rem var(--pad); }
  .hero-inner { padding-top: 4.2rem; }
  body { padding-bottom: 3.6rem; }
  .mobile-call { display: block; }
}

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