/* Phenomelawn marketing site */

:root {
  --green-dark: #2f6d3c;
  --green: #2e7d32;
  --green-bright: #5bbf4a;
  --green-deep: #1f4d29;
  --ink: #1c2419;
  --slate: #55624f;
  --cream: #f6f8f3;
  --white: #ffffff;
  --border: #e2e8dd;
  --shadow: 0 12px 30px rgba(31, 77, 41, 0.10);
  --radius: 16px;
  --maxw: 1120px;
  --font-head: "Poppins", system-ui, sans-serif;
  --font-body: "Source Sans 3", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 18px;
}

img { max-width: 100%; display: block; }

a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }

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

h1, h2, h3 { font-family: var(--font-head); line-height: 1.15; color: var(--ink); }

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
  text-align: center;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary { background: var(--green); color: #fff; box-shadow: 0 8px 20px rgba(46,125,50,.30); }
.btn-primary:hover { background: var(--green-dark); }
.btn-secondary { background: var(--green-deep); color: #fff; }
.btn-secondary:hover { background: #173a1f; }
.btn-ghost { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.75); }
.btn-ghost:hover { background: #fff; color: var(--green-dark); border-color: #fff; }
.btn-block { width: 100%; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand-logo { height: 46px; width: auto; }
.primary-nav { display: flex; align-items: center; gap: 28px; }
.primary-nav a {
  font-family: var(--font-head);
  font-weight: 500;
  color: var(--ink);
  font-size: .98rem;
}
.primary-nav a:hover { color: var(--green); text-decoration: none; }
.nav-cta {
  background: var(--green);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 999px;
}
.nav-cta:hover { background: var(--green-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: none; border: none; cursor: pointer;
}
.nav-toggle span {
  display: block; height: 3px; width: 26px;
  background: var(--green-dark); border-radius: 3px;
  transition: transform .2s ease, opacity .2s ease;
}

/* Hero */
.hero {
  position: relative;
  background:
    linear-gradient(90deg, rgba(15,32,18,.84) 0%, rgba(15,32,18,.62) 52%, rgba(15,32,18,.42) 100%),
    url("assets/photos/hero.jpg") left bottom / cover no-repeat;
  background:
    linear-gradient(90deg, rgba(15,32,18,.84) 0%, rgba(15,32,18,.62) 52%, rgba(15,32,18,.42) 100%),
    image-set(url("assets/photos/hero.webp") type("image/webp"), url("assets/photos/hero.jpg") type("image/jpeg")) left bottom / cover no-repeat;
  padding: 112px 0 96px;
}
.hero-inner { max-width: 760px; }
.definition {
  font-family: var(--font-head);
  margin: 0 0 22px;
  color: rgba(255,255,255,.85);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
}
.definition .word { color: var(--green-bright); font-weight: 700; font-size: 1.15rem; }
.definition .pron { font-style: italic; }
.definition .part { font-style: italic; }
.definition .meaning { color: #fff; font-weight: 600; }
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  margin: 0 0 20px;
  letter-spacing: -.5px;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0,0,0,.38);
}
.lead { font-size: 1.2rem; color: rgba(255,255,255,.94); margin: 0 0 28px; text-shadow: 0 1px 10px rgba(0,0,0,.3); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 22px; }
.serve { font-weight: 600; color: var(--green-bright); margin: 0; }

/* Sections */
.section { padding: 80px 0; }
.section h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin: 0 0 14px;
  text-align: center;
}
.section-intro {
  max-width: 680px;
  margin: 0 auto 44px;
  text-align: center;
  color: var(--slate);
  font-size: 1.12rem;
}
.section-cta { text-align: center; }

/* Narrow reading column (local turf content) */
.container.narrow { max-width: 760px; }
.body-text {
  color: var(--slate);
  font-size: 1.12rem;
  line-height: 1.75;
  margin: 0;
}

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-top: 1px solid var(--border);
  padding: 24px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  font-family: var(--font-head);
  margin: 0 0 10px;
}
.faq-item p { margin: 0; color: var(--slate); line-height: 1.7; }

/* Cards */
.cards { display: grid; gap: 24px; }
.cards.three { grid-template-columns: repeat(3, 1fr); }
.cards.two { grid-template-columns: repeat(2, 1fr); }
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}
.card h3 { font-size: 1.3rem; margin: 0 0 12px; font-weight: 700; }
.card p { margin: 0; color: var(--slate); }

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

/* Programs */
.programs .card.program { display: flex; flex-direction: column; position: relative; }
.program .tag {
  align-self: flex-start;
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
  letter-spacing: .3px;
}
.tag-pro { background: var(--green-deep); color: #fff; }
.tag-platinum { background: var(--green); color: #fff; }
.tag-organic { background: #e7f3e2; color: var(--green-deep); }
.program h3 { font-size: 1.55rem; }
.checklist { list-style: none; padding: 0; margin: 20px 0 26px; }
.checklist li { position: relative; padding-left: 30px; margin-bottom: 11px; color: var(--ink); }
.checklist li::before {
  content: "";
  position: absolute; left: 0; top: 7px;
  width: 18px; height: 10px;
  border-left: 3px solid var(--green-bright);
  border-bottom: 3px solid var(--green-bright);
  transform: rotate(-45deg);
}
.program .btn { margin-top: auto; }

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 5px solid var(--green-bright);
  border-radius: 12px;
  padding: 22px 24px;
  font-weight: 600;
  font-family: var(--font-head);
  box-shadow: var(--shadow);
}

/* Gallery */
.lawns { background: var(--cream); }
.faq { background: var(--cream); }

/* Areas we serve */
.areas-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; max-width: 920px; margin: 0 auto; }
.areas-grid a {
  display: block;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--green-dark);
  box-shadow: var(--shadow);
  transition: transform .12s ease, border-color .12s ease, color .12s ease;
}
.areas-grid a:hover { text-decoration: none; border-color: var(--green-bright); color: var(--green); transform: translateY(-2px); }
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery .shot {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
}
.gallery .shot img { width: 100%; height: 100%; object-fit: cover; }
.gallery .placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: repeating-linear-gradient(45deg, #e8efe4, #e8efe4 12px, #eef4ea 12px, #eef4ea 24px);
  color: var(--green-dark);
  font-family: var(--font-head);
  font-weight: 600;
  border: 1px dashed var(--green-bright);
}

/* Meet Garrett */
.meet-inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 44px;
  align-items: center;
  max-width: 940px;
  margin: 0 auto;
}
.meet-photo img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  display: block;
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
}
.meet-copy h2 { text-align: left; }
.meet-copy p { color: var(--slate); line-height: 1.7; margin: 0 0 1em; }
.meet-copy p:last-child { margin-bottom: 0; }

/* Quote */
.quote { background: var(--green-deep); color: #fff; }
.quote h2 { color: #fff; text-align: left; }
.quote-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.quote-copy p { color: #d8e6d3; font-size: 1.12rem; }
.contact-list { list-style: none; padding: 0; margin: 28px 0 0; }
.contact-list li {
  display: flex;
  flex-direction: column;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,.16);
}
.contact-list span { font-size: .85rem; text-transform: uppercase; letter-spacing: .5px; color: #9fc096; }
.contact-list a { color: #fff; font-size: 1.25rem; font-family: var(--font-head); font-weight: 600; }
.contact-list a:hover { color: var(--green-bright); }

.quote-form {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
}
.field { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  color: var(--ink);
  margin-bottom: 7px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(46,125,50,.15);
}
.field textarea { resize: vertical; }
.form-note { margin: 14px 0 0; font-size: .92rem; color: var(--slate); text-align: center; }
.form-note.error { color: #b3261e; }
.form-note.success { color: var(--green-dark); font-weight: 600; }

/* Footer */
.site-footer { background: var(--ink); color: #cfd6cb; padding: 48px 0 24px; }
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: center;
}
.footer-brand { display: flex; align-items: center; gap: 16px; max-width: 520px; }
.footer-mark { width: 52px; height: 52px; }
.footer-brand p { margin: 0; font-size: 1.02rem; }
.footer-brand .footer-name { font-family: var(--font-head); font-weight: 700; color: #fff; font-size: 1.15rem; margin: 0 0 4px; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; text-align: right; }
.footer-contact a { color: #fff; font-family: var(--font-head); font-weight: 500; }
.footer-contact a:hover { color: var(--green-bright); }
.copyright {
  text-align: center;
  margin: 36px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .9rem;
  color: #8b948440;
  color: #8b9484;
}

/* Responsive */
@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .primary-nav {
    position: fixed;
    inset: 76px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 8px 24px 20px;
    box-shadow: var(--shadow);
    transform: translateY(-130%);
    transition: transform .25s ease;
  }
  .primary-nav.open { transform: translateY(0); }
  .primary-nav a { padding: 14px 0; border-bottom: 1px solid var(--border); }
  .nav-cta { text-align: center; margin-top: 12px; border-bottom: none !important; }

  .cards.three, .cards.two { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .quote-inner { grid-template-columns: 1fr; gap: 32px; }
  .quote h2 { text-align: center; }
  .meet-inner { grid-template-columns: 1fr; gap: 28px; }
  .meet-photo { max-width: 280px; margin: 0 auto; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-brand { flex-direction: column; text-align: center; }
  .footer-contact { text-align: center; }
}

@media (max-width: 520px) {
  body { font-size: 17px; }
  .section { padding: 56px 0; }
  .hero { padding: 48px 0 60px; }
  .field-row { grid-template-columns: 1fr; }
  .services-grid, .gallery { grid-template-columns: 1fr; }
  .hero-cta .btn { width: 100%; }
}
