:root {
  --sage: #768950;
  --lime: #94bf3d;
  --teal: #599baa;
  --slate: #526c91;
  --mauve: #a36187;
  --terra: #bf6943;
  --gold: #9e865e;
  --yellow-green: #bbbb3e;
  --text-dark: #333333;
  --text-mid: #666666;
  --bg-light: #f5f7f0;
  --bg-teal: #eef6f8;
  --bg-mauve: #f7f2f5;
  --white: #ffffff;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Avenir Next', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.75;
  font-size: 17px;
}

h1, h2, h3, blockquote p {
  font-family: 'PT Serif', Georgia, 'Times New Roman', serif;
}

a { color: var(--sage); text-decoration: none; }
a:hover { color: var(--lime); }

.container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Navigation ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid #e4e8da;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 2.5rem;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
}

.logo { height: 100px; margin-bottom: -18px; }

.nav-tagline {
  font-size: 0.72rem;
  color: var(--text-mid);
  letter-spacing: 0.03em;
  padding-left: 1.75rem;
  margin-top: 0;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  transition: color 0.2s;
}

nav a:hover { color: var(--sage); }

/* ── Hero ── */
#hero {
  background-image:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.15) 0%,
      rgba(0, 0, 0, 0.30) 100%
    ),
    url('assets/hero-field.jpg');
  background-size: cover;
  background-position: center 60%;
  padding: 9rem 2rem;
  text-align: center;
}

#hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 400;
  color: var(--white);
  max-width: 680px;
  margin: 0 auto 1rem;
  line-height: 1.35;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

#hero p.sub {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  margin-bottom: 2.25rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.btn {
  display: inline-block;
  background: var(--lime);
  color: var(--white);
  padding: 0.75rem 2rem;
  border-radius: 3px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s;
}

.btn:hover { background: #7da832; color: var(--white); }

/* ── Shared section styles ── */
section { padding: 5.5rem 0; }

section h2 {
  font-size: 1.6rem;
  color: var(--sage);
  margin-bottom: 1.5rem;
  font-weight: 700;
  padding-bottom: 0.6rem;
  border-bottom: 3px solid var(--lime);
  display: inline-block;
}

#about h2    { border-bottom-color: var(--teal); }
#services h2 { border-bottom-color: var(--lime); }
#how-i-work h2   { border-bottom-color: var(--slate); }
#testimonials h2 { border-bottom-color: var(--mauve); }
#contact h2      { border-bottom-color: rgba(255,255,255,0.4); }

/* ── About ── */
#about { background: var(--white); }

.about-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 10px;
}

.about-photo {
  margin-top: 9px;
}

.about-photo img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
}

#about p {
  font-size: 1.05rem;
  color: var(--text-dark);
  max-width: 720px;
}

@media (max-width: 680px) {
  .about-layout {
    grid-template-columns: 1fr;
  }
  .about-photo {
    max-width: 220px;
    margin: 0 auto;
  }
}

/* ── Services ── */
#services { background: var(--bg-light); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1rem;
  margin-top: 0.5rem;
}

.service-item {
  background: var(--white);
  border-left: 4px solid var(--lime);
  padding: 1rem 1.25rem;
  border-radius: 2px;
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.5;
}

.service-item:nth-child(1) { border-left-color: var(--teal); }
.service-item:nth-child(2) { border-left-color: var(--lime); }
.service-item:nth-child(3) { border-left-color: var(--terra); }
.service-item:nth-child(4) { border-left-color: var(--slate); }
.service-item:nth-child(5) { border-left-color: var(--mauve); }
.service-item:nth-child(6) { border-left-color: var(--gold); }
.service-item:nth-child(7) { border-left-color: var(--yellow-green); }

/* ── How I Work ── */
#how-i-work { background: var(--bg-teal); }

#how-i-work p {
  font-size: 1.05rem;
  max-width: 720px;
}

/* ── Testimonials ── */
#testimonials { background: var(--bg-mauve); }

.testimonial-cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 0.5rem;
}

blockquote {
  background: var(--white);
  border-left: 3px solid var(--sage);
  padding: 1.5rem 1.75rem;
  border-radius: 2px;
}

blockquote p {
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  line-height: 1.65;
}

blockquote cite {
  font-size: 0.85rem;
  color: var(--text-mid);
  font-style: normal;
}

/* ── Contact ── */
#contact {
  background: var(--sage);
  text-align: center;
}

#contact h2 { color: var(--white); }

#contact p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  margin-top: 0.75rem;
}

#contact a {
  color: var(--lime);
  font-weight: 600;
}

#contact a:hover { color: var(--white); }

/* ── Footer ── */
footer {
  background: #2e2e2e;
  color: #888;
  text-align: center;
  padding: 2rem 1rem 1.5rem;
  font-size: 0.8rem;
}

.footer-logo {
  height: 60px;
  display: block;
  margin: 0 auto 1rem;
  opacity: 0.85;
}

/* ── Mobile ── */
@media (max-width: 640px) {
  nav { padding: 0.75rem 1.25rem; }
  nav ul { display: none; }
  #hero { padding: 5rem 1.5rem; }
  section { padding: 3.5rem 0; }
  .container { padding: 0 1.25rem; }
}
