/* ═══════════════════════════════════════════════════════════════════════════
   Murdoch's Lawn & Hedge
   Palette:
     Forest green:  #2d6a2d    Leaf green:   #4a9e3f
     Lime accent:   #7bc143    Orange CTA:   #e8862a
     Warm yellow:   #f5c34a    Dark text:    #1a2e1a
     Light bg:      #f8faf6    Card bg:      #fff
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Reset ───────────────────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: #1a2e1a;
  background: #f8faf6;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

/* ── Header ──────────────────────────────────────────────────────────────── */
.site-header {
  background: #fff;
  border-bottom: 3px solid #2d6a2d;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 24px;
  height: 72px;
}

.logo-link {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo { /* no border-radius — logo is already circular with transparent bg */ }

.header-brand-text {
  display: flex;
  flex-direction: column;
}

.header-brand-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: #2d6a2d;
  line-height: 1.2;
  letter-spacing: -0.3px;
}

.header-brand-tagline {
  font-size: 0.78rem;
  color: #4a9e3f;
  font-weight: 600;
}

.header-nav {
  flex: 1;
  display: flex;
  gap: 24px;
  padding-left: 16px;
}

.header-nav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: #2d6a2d;
  transition: color 0.2s;
  letter-spacing: 0.3px;
}

.header-nav a:hover { color: #e8862a; }

.header-cta {
  flex-shrink: 0;
  background: #e8862a;
  color: #fff;
  padding: 9px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: background 0.2s, transform 0.1s;
  white-space: nowrap;
}

.header-cta:hover {
  background: #d0751f;
  transform: translateY(-1px);
}

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: url('assets/hero-lawn.png') center center / cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 100px 24px 80px;
  min-height: 420px;
  display: flex;
  align-items: center;
}

/* Fallback gradient — sits behind the background-image, only visible if image fails */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2d6a2d 0%, #4a9e3f 50%, #7bc143 100%);
  z-index: -1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 46, 26, 0.45) 0%,
    rgba(26, 46, 26, 0.25) 40%,
    rgba(26, 46, 26, 0.5) 100%
  );
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-logo {
  width: 220px;
  height: auto;
  margin: 0 auto 16px;
  display: block;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.5));
}

.hero h2 {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 14px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero p {
  font-size: 1.1rem;
  opacity: 0.95;
  max-width: 560px;
  margin: 0 auto 28px;
  line-height: 1.6;
  text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
  cursor: pointer;
}

.btn-primary {
  background: #e8862a;
  color: #fff;
  box-shadow: 0 4px 14px rgba(232, 134, 42, 0.4);
}

.btn-primary:hover {
  background: #d0751f;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(232, 134, 42, 0.5);
}

.btn-secondary {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}

/* ── Section Titles ──────────────────────────────────────────────────────── */
.section-title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 800;
  color: #2d6a2d;
  margin-bottom: 40px;
}

.section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 4px;
  background: #e8862a;
  border-radius: 2px;
  margin: 10px auto 0;
}

/* ── Services ────────────────────────────────────────────────────────────── */
.services {
  padding: 80px 0;
  background: #fff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: #f8faf6;
  border: 1px solid #e4eede;
  border-radius: 14px;
  padding: 28px 22px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(45, 106, 45, 0.1);
}

.service-card--cta {
  border-color: #e8862a;
  background: #fef8f2;
}

.service-icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.service-card h3 {
  font-size: 1.1rem;
  color: #2d6a2d;
  margin-bottom: 8px;
  font-weight: 700;
}

.service-card--cta h3 { color: #e8862a; }

.service-card p {
  font-size: 0.9rem;
  color: #445;
  line-height: 1.55;
}

/* ── What to Expect ──────────────────────────────────────────────────────── */
.expect {
  padding: 70px 0;
  background: #f8faf6;
}

.expect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.expect-item {
  text-align: center;
  position: relative;
}

.expect-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #2d6a2d;
  color: #fff;
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 14px;
}

.expect-item h3 {
  font-size: 1.05rem;
  color: #2d6a2d;
  margin-bottom: 6px;
  font-weight: 700;
}

.expect-item p {
  font-size: 0.88rem;
  color: #556;
  line-height: 1.5;
}

/* ── Service Area ────────────────────────────────────────────────────────── */
.service-area {
  padding: 60px 0;
  background: #fff;
  text-align: center;
}

.area-text {
  font-size: 1.05rem;
  color: #445;
  margin-bottom: 20px;
}

.suburbs {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.suburb-tag {
  background: #2d6a2d;
  color: #fff;
  padding: 8px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
}

.area-note {
  font-size: 0.85rem;
  color: #888;
  font-style: italic;
}

/* ── Contact ─────────────────────────────────────────────────────────────── */
.contact {
  padding: 80px 0;
  background: linear-gradient(135deg, #2d6a2d 0%, #3d8a3d 100%);
  color: #fff;
}

.contact .section-title { color: #fff; }
.contact .section-title::after { background: #f5c34a; }

.contact-intro {
  text-align: center;
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 32px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

.contact-methods {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 18px 28px;
  transition: background 0.2s, transform 0.1s;
  min-width: 220px;
}

.contact-card:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.contact-detail { display: flex; flex-direction: column; }
.contact-detail strong {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.75;
}
.contact-detail span { font-size: 1rem; font-weight: 600; }

/* ── Footer ──────────────────────────────────────────────────────────────── */
.site-footer {
  background: #1a2e1a;
  color: #aaa;
  padding: 24px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo { opacity: 0.9; }

.footer-brand-text {
  display: flex;
  flex-direction: column;
}

.footer-name {
  font-weight: 700;
  color: #9bc89b;
  font-size: 1rem;
}

.footer-tagline {
  font-size: 0.78rem;
  color: #7aa87a;
  margin-top: 2px;
}

.footer-copy {
  font-size: 0.75rem;
  opacity: 0.4;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .header-inner { padding: 8px 16px; }
  .header-nav { display: none; }
  .logo { width: 42px; height: 42px; }
  .header-brand-name { font-size: 1.1rem; }
  .header-brand-tagline { font-size: 0.7rem; }
  .brand-name { font-size: 1.1rem; }

  .hero { padding: 70px 20px 60px; min-height: auto; }
  .hero-logo { width: 100px; }
  .hero h2 { font-size: 1.5rem; }
  .hero p { font-size: 0.95rem; }

  .section-title { font-size: 1.4rem; }
  .services { padding: 60px 0; }
  .services-grid { grid-template-columns: 1fr 1fr; }

  .expect { padding: 50px 0; }
  .expect-grid { grid-template-columns: 1fr; gap: 24px; }

  .contact-methods { flex-direction: column; align-items: center; }
  .contact-card { width: 100%; max-width: 320px; }

  .footer-inner { justify-content: center; text-align: center; }
  .footer-copy { width: 100%; text-align: center; }
}

@media (max-width: 480px) {
  .hero { padding: 56px 16px 48px; }
  .hero h2 { font-size: 1.3rem; }
  .hero-logo { width: 80px; }

  .services-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; justify-content: center; }
  .header-cta { padding: 8px 14px; font-size: 0.85rem; }
}
