/* ============================================
   Oakes and Acres Lawncare - Premium design
   ============================================ */
:root {
  --green-950: #0d2818;
  --green-900: #143b22;
  --green-800: #1a472a;
  --green-700: #2d5a3d;
  --green-600: #3d7a52;
  --green-500: #4d9a64;
  --green-200: #c5e1cc;
  --green-100: #e8f2ec;
  --green-50: #f2f8f4;
  --gold: #c9a227;
  --gold-light: #e8d48a;
  --cream: #faf8f5;
  --oat: #f5f1eb;
  --text: #1a2520;
  --text-muted: #4a5d52;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(26, 71, 42, 0.06);
  --shadow: 0 4px 20px rgba(26, 71, 42, 0.08);
  --shadow-lg: 0 12px 40px rgba(26, 71, 42, 0.12);
  --radius: 10px;
  --radius-lg: 16px;
  --font-head: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 5rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
}

.skip-link {
  position: absolute;
  top: -3.5rem;
  left: var(--space-md);
  padding: var(--space-xs) var(--space-sm);
  background: var(--green-800);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  z-index: 100;
  border-radius: var(--radius);
  transition: top 0.2s;
}
.skip-link:focus {
  top: var(--space-sm);
}

/* ---------- Header ---------- */
.site-header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  max-width: 75rem;
  margin: 0 auto;
  padding: var(--space-md) var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.logo {
  text-decoration: none;
  color: var(--green-800);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  line-height: 1.2;
}
.logo-img {
  width: 2.5rem;
  height: auto;
  display: block;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 600;
}
.logo-tagline {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  font-weight: 500;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}
.header-phone {
  color: var(--green-800);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
}
.header-phone:hover {
  color: var(--green-600);
}
.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--green-800);
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
}

.nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--space-lg);
}
.nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav a:hover,
.nav a:focus {
  color: var(--green-800);
  border-bottom-color: var(--gold);
}

@media (max-width: 900px) {
  .header-cta {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    padding: var(--space-md) var(--space-lg);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.2s, opacity 0.2s, visibility 0.2s;
  }
  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .nav ul {
    flex-direction: column;
    gap: 0;
  }
  .nav a {
    display: block;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--green-100);
  }
  .nav a:last-child {
    border-bottom: none;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
  text-align: center;
}
.btn:hover,
.btn:focus {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-primary {
  background: var(--gold);
  color: var(--green-950);
}
.btn-primary:hover {
  background: var(--gold-light);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}
.btn-full {
  width: 100%;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-3xl) var(--space-lg) var(--space-2xl);
  color: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, var(--green-900) 0%, var(--green-800) 40%, var(--green-700) 100%);
  z-index: 0;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L30 60M0 30L60 30' stroke='rgba(255,255,255,0.03)' stroke-width='1' fill='none'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.hero-label {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 0.9;
  margin: 0 0 var(--space-md);
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5.5vw, 3.25rem);
  font-weight: 600;
  margin: 0 0 var(--space-md);
  line-height: 1.2;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 1.125rem;
  line-height: 1.7;
  opacity: 0.95;
  margin: 0 0 var(--space-xl);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
  margin-bottom: var(--space-2xl);
}

.hero-stats {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: var(--space-2xl);
  flex-wrap: wrap;
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255,255,255,0.2);
  max-width: 36rem;
  margin: 0 auto;
}
.stat {
  text-align: center;
}
.stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold-light);
}
.stat-label {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.85;
}

/* ---------- Sections ---------- */
.section {
  padding: var(--space-3xl) var(--space-lg);
}

.container {
  max-width: 72rem;
  margin: 0 auto;
}

.section-label {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--green-600);
  font-weight: 600;
  margin: 0 0 var(--space-xs);
  display: block;
}

.section h2 {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--green-800);
  margin: 0 0 var(--space-md);
  line-height: 1.25;
}

.section-intro {
  color: var(--text-muted);
  max-width: 40rem;
  margin: 0 0 var(--space-xl);
  font-size: 1.0625rem;
}

/* ---------- Services ---------- */
.section-services {
  background: var(--white);
}

.section-services .section-intro {
  margin-bottom: var(--space-2xl);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: var(--cream);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  border: 1px solid var(--green-100);
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--green-200);
}

.service-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--green-800);
  color: var(--white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}
.service-icon svg {
  flex-shrink: 0;
}

.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: var(--green-800);
  margin: 0 0 var(--space-sm);
  font-weight: 600;
}

.service-card > p {
  color: var(--text-muted);
  margin: 0 0 var(--space-md);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.service-details {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.service-details li {
  padding: 0.25rem 0;
  padding-left: 1.25rem;
  position: relative;
}
.service-details li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 5px;
  height: 5px;
  background: var(--green-600);
  border-radius: 50%;
}

/* ---------- Why Us ---------- */
.section-why {
  background: var(--green-50);
}

.section-why h2 {
  margin-bottom: var(--space-2xl);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-lg);
}

.why-card {
  background: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--gold);
  transition: box-shadow 0.2s, transform 0.2s;
}
.why-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.why-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-200);
  line-height: 1;
  display: block;
  margin-bottom: var(--space-sm);
}

.why-card h3 {
  font-family: var(--font-head);
  font-size: 1.125rem;
  color: var(--green-800);
  margin: 0 0 var(--space-sm);
  font-weight: 600;
}

.why-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---------- About ---------- */
.section-about {
  background: var(--white);
}

.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  max-width: 75rem;
}

.about-content .section-label {
  margin-bottom: var(--space-xs);
}
.about-content h2 {
  margin-bottom: var(--space-lg);
}

.about-content p {
  margin: 0 0 var(--space-md);
  color: var(--text);
  line-height: 1.7;
}
.about-content .btn {
  margin-top: var(--space-md);
}

.about-side {
  position: relative;
  min-height: 280px;
}

.about-blob {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green-100) 0%, var(--green-50) 50%, var(--gold-light) 100%);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .about-wrap {
    grid-template-columns: 1fr;
  }
  .about-side {
    min-height: 200px;
    order: -1;
  }
}

/* ---------- Process ---------- */
.section-process {
  background: var(--oat);
}

.process-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 36rem;
}

.process-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-lg);
  align-items: start;
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--green-100);
}
.process-list li:last-child {
  border-bottom: none;
}

.process-step {
  width: 3rem;
  height: 3rem;
  background: var(--green-800);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  flex-shrink: 0;
}

.process-list h3 {
  font-family: var(--font-head);
  font-size: 1.125rem;
  color: var(--green-800);
  margin: 0 0 var(--space-xs);
  font-weight: 600;
}

.process-list p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---------- FAQ ---------- */
.section-faq {
  background: var(--white);
}

.section-faq h2 {
  margin-bottom: var(--space-xl);
}

.faq-list {
  margin: 0;
  max-width: 40rem;
}

.faq-item {
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--green-100);
}
.faq-item:last-child {
  border-bottom: none;
}

.faq-item dt {
  font-weight: 600;
  color: var(--green-800);
  font-size: 1rem;
  margin: 0 0 var(--space-xs);
  line-height: 1.4;
}

.faq-item dd {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
  padding-left: 0;
}

/* ---------- Contact ---------- */
.section-contact {
  background: var(--green-50);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-2xl);
  align-items: start;
  margin-top: var(--space-lg);
}

.contact-info {
  background: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.contact-info p {
  margin: 0 0 var(--space-sm);
  font-size: 0.9375rem;
}
.contact-info a {
  color: var(--green-800);
  font-weight: 600;
  text-decoration: none;
}
.contact-info a:hover {
  text-decoration: underline;
}
.contact-hours {
  margin-top: var(--space-md);
  color: var(--text-muted);
  font-size: 0.875rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  background: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.contact-form label {
  font-weight: 600;
  color: var(--green-800);
  font-size: 0.9375rem;
}

.contact-form input,
.contact-form textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--green-200);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(61, 122, 82, 0.15);
}

.contact-form button[type="submit"] {
  margin-top: var(--space-xs);
}

.contact-form .form-success {
  color: var(--green-700);
  font-weight: 500;
  margin-top: var(--space-sm);
  margin-bottom: 0;
}

@media (max-width: 700px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--green-900);
  color: var(--white);
  padding: 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-2xl);
  padding: var(--space-2xl) var(--space-lg);
  max-width: 75rem;
  margin: 0 auto;
}

.footer-brand .logo-text {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
}
.footer-brand .logo-tagline {
  color: var(--green-200);
  margin-bottom: var(--space-sm);
}
.footer-brand p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--green-200);
  line-height: 1.6;
  max-width: 20rem;
}

.footer-head {
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  margin: 0 0 var(--space-sm);
}

.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-links a {
  color: var(--green-200);
  text-decoration: none;
  font-size: 0.9375rem;
  display: block;
  padding: 0.2rem 0;
}
.footer-links a:hover {
  color: var(--white);
}

.footer-contact p {
  margin: 0 0 var(--space-xs);
  font-size: 0.9375rem;
  color: var(--green-200);
}
.footer-contact a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
}
.footer-contact a:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: var(--space-md) var(--space-lg);
}
.footer-bottom .container {
  max-width: 75rem;
  margin: 0 auto;
}
.footer-bottom p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--green-200);
  opacity: 0.9;
}

@media (max-width: 700px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .footer-brand p {
    max-width: none;
  }
}
