/* Precision Landscaping SC — Shared Stylesheet */
:root {
  --bg: #050d05;
  --bg2: #091409;
  --bg3: #0e1e0e;
  --gold: #7ab830;
  --gold-light: #96d040;
  --text: #f0f5ee;
  --text-muted: #a8bca6;
  --border: rgba(122,184,48,0.18);
  --card-bg: rgba(255,255,255,0.04);
  --radius: 10px;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
}

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.15; }
h1 { font-size: clamp(2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.6rem); margin-bottom: .6rem; }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }
p { color: var(--text-muted); }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); }

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ── Navigation ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(5,13,5,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.01em;
}

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

.nav-links a {
  color: var(--text-muted);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color .2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: .75rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all .2s;
  text-align: center;
}

.btn-primary {
  background: var(--gold);
  color: var(--bg);
  border: 2px solid var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--bg);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(122,184,48,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--bg);
  transform: translateY(-1px);
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1.5rem;
  background-image: url('https://images.unsplash.com/photo-1416879595882-3373a0480b5b?w=1400&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5,13,5,0.55) 0%,
    rgba(5,13,5,0.70) 60%,
    rgba(5,13,5,0.90) 100%
  );
}
.hero-content {
  position: relative;
  max-width: 800px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(122,184,48,0.12);
  border: 1px solid rgba(122,184,48,0.3);
  color: var(--gold);
  padding: .4rem 1rem;
  border-radius: 30px;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}
.hero h1 {
  color: #fff;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero p {
  color: rgba(240,245,238,0.85);
  font-size: 1.15rem;
  max-width: 560px;
  margin: 0 auto 2rem;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  padding: 7rem 2rem 3.5rem;
  text-align: center;
  background-image: url('https://images.unsplash.com/photo-1464226184884-fa280b87c399?w=1400&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  position: relative;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(5,13,5,0.78);
}
.page-hero > * { position: relative; }
.page-hero h1 { color: #fff; margin-bottom: .6rem; }
.page-hero p { font-size: 1.1rem; }

/* ── Section containers ── */
.section {
  padding: 5rem 1.5rem;
}
.section-alt {
  background: var(--bg2);
}
.container {
  max-width: 1100px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 { color: var(--text); }
.section-header p { max-width: 580px; margin: .75rem auto 0; }

/* ── Photo strip ── */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 2.5rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.photo-strip-item {
  height: 260px;
  border-radius: var(--radius);
  overflow: hidden;
}
.photo-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}
.photo-strip-item:hover img { transform: scale(1.04); }

/* ── Why Cards ── */
.why-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.why-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  text-align: center;
  transition: border-color .2s, transform .2s;
}
.why-card:hover {
  border-color: rgba(122,184,48,0.45);
  transform: translateY(-3px);
}
.why-icon {
  font-size: 2.6rem;
  margin-bottom: 1rem;
  display: block;
}
.why-card h3 { color: var(--gold); margin-bottom: .5rem; }
.why-card p { font-size: .95rem; }

/* ── Rating Badge ── */
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: .75rem 1.75rem;
  margin: 2.5rem auto;
}
.rating-stars { color: var(--gold); font-size: 1.3rem; letter-spacing: .05em; }
.rating-text { font-size: .95rem; color: var(--text); font-weight: 600; }
.rating-sub { font-size: .8rem; color: var(--text-muted); }

/* ── Services Grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color .2s, transform .2s;
}
.service-card:hover {
  border-color: rgba(122,184,48,0.45);
  transform: translateY(-3px);
}
.service-icon { font-size: 2.2rem; margin-bottom: .75rem; display: block; }
.service-card h3 { color: var(--text); font-size: 1.1rem; margin-bottom: .4rem; }
.service-card p { font-size: .9rem; margin-bottom: .5rem; }
.service-price {
  display: inline-block;
  color: var(--gold);
  font-weight: 700;
  font-size: .9rem;
  margin-top: .5rem;
}
.free-note {
  text-align: center;
  margin-top: 2.5rem;
  background: rgba(122,184,48,0.08);
  border: 1px solid rgba(122,184,48,0.2);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  color: var(--gold);
  font-weight: 600;
  font-size: 1rem;
}

/* ── Two-column About layout ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.about-photo {
  border-radius: var(--radius);
  overflow: hidden;
  height: 480px;
}
.about-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.about-text h2 { color: var(--text); margin-bottom: 1.2rem; }
.about-text p { margin-bottom: 1rem; }
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.75rem;
}
.badge {
  background: rgba(122,184,48,0.1);
  border: 1px solid rgba(122,184,48,0.25);
  color: var(--gold);
  padding: .4rem 1rem;
  border-radius: 30px;
  font-size: .85rem;
  font-weight: 600;
}

/* ── Reviews ── */
.reviews-hero {
  text-align: center;
  padding: 3rem 1.5rem 2rem;
  background: var(--bg2);
}
.score-display {
  font-family: var(--font-head);
  font-size: 5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.score-label {
  color: var(--text);
  font-size: 1.25rem;
  font-weight: 600;
  margin: .5rem 0 .25rem;
}
.score-sub { font-size: .95rem; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.review-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.review-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: .75rem; }
.review-text {
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: .95rem;
  line-height: 1.7;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.reviewer-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  color: var(--bg);
  flex-shrink: 0;
}
.reviewer-name { font-weight: 600; color: var(--text); font-size: .9rem; }
.reviewer-platform { font-size: .8rem; color: var(--text-muted); }

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
}
.contact-info h3 { color: var(--gold); margin-bottom: 1.25rem; }
.hours-table { width: 100%; border-collapse: collapse; margin-bottom: 1.75rem; }
.hours-table td {
  padding: .5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: .9rem;
  color: var(--text-muted);
}
.hours-table td:first-child { color: var(--text); font-weight: 500; }
.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: .5rem;
}
.chip {
  background: rgba(122,184,48,0.08);
  border: 1px solid rgba(122,184,48,0.2);
  color: var(--gold);
  padding: .3rem .85rem;
  border-radius: 20px;
  font-size: .82rem;
  font-weight: 500;
}

/* ── Form ── */
.form-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
}
.form-card h3 { color: var(--text); margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: .4rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  padding: .75rem 1rem;
  font-size: .95rem;
  font-family: var(--font-body);
  transition: border-color .2s;
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group select option { background: #0d1a0d; }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group .btn { width: 100%; margin-top: .5rem; }

/* ── Footer ── */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 2.5rem 1.5rem;
  text-align: center;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.footer-brand {
  font-family: var(--font-head);
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 700;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  color: var(--text-muted);
  font-size: .85rem;
  transition: color .2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy { color: var(--text-muted); font-size: .82rem; }

/* ── Demo banner ── */
.demo-banner {
  background: var(--gold);
  color: var(--bg);
  text-align: center;
  padding: .6rem 1rem;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  nav { padding: .9rem 1.25rem; }
  .nav-links { gap: 1.1rem; }
  .nav-links a { font-size: .78rem; }
  .photo-strip { grid-template-columns: 1fr; }
  .photo-strip-item { height: 200px; }
  .two-col { grid-template-columns: 1fr; }
  .about-photo { height: 300px; }
  .contact-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; }
  .score-display { font-size: 3.5rem; }
}
