* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: #fafaf8;
  color: #2c2c2c;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
img[src*="photos/"] { cursor: pointer; }
a { text-decoration: none; color: inherit; }

header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 5vw; background: rgba(250,250,248,0.9); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.logo { font-family: 'Instrument Serif', serif; font-size: 1.9rem; font-weight: 900; letter-spacing: -0.5px; }
.logo-alex { color: #1a1a1a; }
.logo-gardening { color: #2d6a4f; }

nav a.header-cta { background: #2d6a4f; color: #fff; padding: 10px 24px; border-radius: 6px; font-weight: 500; font-size: 0.8rem; transition: background 0.2s, color 0.2s; }
nav a.header-cta:hover { background: #e8c84a; color: #1a3c2a; }
nav a:not(.header-cta) { display: none; }

.hero { height: 100vh; position: relative; display: flex; align-items: center; overflow: hidden; }
.hero-image { position: absolute; inset: 0; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,60,42,0.7) 0%, rgba(26,60,42,0.1) 50%, rgba(0,0,0,0.3) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 0 5vw; }
.hero-est { display: block; font-size: 0.7rem; letter-spacing: 4px; color: rgba(255,255,255,0.9); margin-bottom: 12px; transform: translateY(-4rem); }
.hero h1 { font-family: 'Instrument Serif', serif; font-size: clamp(2.5rem, 12vw, 3.5rem); line-height: 1.1; color: #fff; margin-bottom: 16px; }
.hero h1 span { font-style: italic; color: #e8c84a; }
.hero p { font-size: 1rem; font-weight: 600; color: #fff; margin-bottom: 28px; }
.hero-actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.hero-btn {
  display: inline-block;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 10px 24px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.hero-btn:hover { background: #e8c84a; color: #1a3c2a; border-color: #e8c84a; }
.hero-btn-solid { background: #7C5E3A; border-color: transparent; }
.hero-btn-solid:hover { background: #e8c84a; border-color: #e8c84a; }

.areas-banner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.4rem;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background: #e8c84a;
  color: #1a3c2a;
}
.areas-banner span {
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.areas-banner span:not(:last-child)::after {
  content: "•";
  margin-left: 1.4rem;
  color: rgba(26,60,42,0.55);
}

.container { padding: 0 20px; }
section { padding: 60px 0; }
.sec-tag { font-size: 0.65rem; letter-spacing: 3px; text-transform: uppercase; color: #7C5E3A; margin-bottom: 12px; }
h2 { font-family: 'Instrument Serif', serif; font-size: clamp(1.8rem, 8vw, 2.2rem); font-weight: 400; margin-bottom: 32px; color: #1a3c2a; }

.svc-grid { display: flex; flex-direction: column; gap: 16px; }
.svc-card { background: #fff; border-radius: 24px; padding: 28px; transition: transform 0.3s, box-shadow 0.3s, background 0.3s; border: 2px solid transparent; }
.svc-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(124,94,58,0.08); }
.svc-circle { width: 48px; height: 48px; border-radius: 50%; background: #f0e8d8; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.svc-circle span { font-size: 1.3rem; line-height: 1; }
.svc-card h3 { font-size: 1.1rem; margin-bottom: 8px; color: #1a3c2a; }
.svc-card p { font-size: 0.95rem; color: rgba(44,44,44,0.7); line-height: 1.7; }

.photo-strip { display: flex; flex-direction: column; gap: 4px; }
.photo-strip figure { position: relative; margin: 0; aspect-ratio: 4/3; overflow: hidden; border: 4px solid transparent; transition: border-color 0.3s; }
.photo-strip figure:hover { border-color: #e8c84a; }
.photo-strip img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; cursor: pointer; }
.photo-strip figure:hover img { transform: scale(1.06); }
.photo-strip figcaption { position: absolute; bottom: 0; left: 0; right: 0; padding: 14px; background: linear-gradient(transparent, rgba(26,60,42,0.7)); color: #fff; font-size: 0.8rem; font-family: 'Instrument Serif', serif; }

.about { background: #f5f2ec; }

.areas { text-align: center; background: #f0e8d8; }
.areas h2 { margin-bottom: 20px; }
.areas-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.areas-chips span { background: #fff; border-radius: 20px; padding: 8px 20px; font-size: 0.95rem; color: #1a3c2a; font-weight: 500; }

.seasons { background: #f5f2ec; }
.seasons-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.season-card { background: #fff; padding: 24px 20px; text-align: center; border-radius: 16px; transition: transform 0.3s, box-shadow 0.3s; }
.season-heading { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 10px; }
.season-icon { font-size: 1.7rem; line-height: 1; }
.season-label { font-family: 'Instrument Serif', serif; font-size: 1.7rem; line-height: 1; color: #2d6a4f; font-weight: 900; }
.season-card p { font-size: 0.9rem; color: rgba(44,44,44,0.7); line-height: 1.7; } 

.about-layout { display: flex; flex-direction: column; gap: 32px; }
.about-img-main { border-radius: 12px; overflow: hidden; }
.about-img-main img { width: 100%; height: 280px; object-fit: cover; }
.about-img-small { display: none; }
.about-text h2 { margin-bottom: 16px; }
.about-text p { font-size: 1rem; color: rgba(44,44,44,0.75); line-height: 1.8; margin-bottom: 16px; }
.about-text blockquote p { font-size: 1rem; font-style: italic; color: rgba(44,44,44,0.8); margin: 0; }
.about-text blockquote cite { display: block; margin-top: 8px; font-size: 0.85rem; color: rgba(44,44,44,0.55); font-style: normal; }
.about-stats {
  display: flex;
  gap: 32px;
  margin: 32px 0 24px;
  padding-top: 28px;
  border-top: 1px solid rgba(124,94,58,0.15);
}
.stat { display: flex; flex-direction: column; }
.stat-number {
  font-family: 'Instrument Serif', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a3c2a;
}
.stat-label { font-size: 0.85rem; color: rgba(44,44,44,0.7); margin-top: 2px; }
.about-footer { margin-top: 24px; }
.about-phone { font-family: 'Instrument Serif', serif; font-size: 1.5rem; color: #7C5E3A; }
.about-footer span { display: block; font-size: 0.85rem; color: rgba(44,44,44,0.55); margin-top: 4px; }

.reviews { background: #fff; }
.reviews-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review-card {
  background: #2d6a4f;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 8px 24px rgba(26,60,42,0.15);
  transition: transform 0.3s, box-shadow 0.3s;
}
.review-text {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 12px;
}
.review-stars { font-size: 1.1rem; margin-bottom: 8px; letter-spacing: 2px; }
.review-author {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}

.contact-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.contact-img-wrap {
  width: 160px;
  flex-shrink: 0;
}
.contact-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}
.contact-text { text-align: center; }
.contact-text h2 { margin-bottom: 12px; }
.contact-phone {
  display: inline-block;
  font-family: 'Instrument Serif', serif;
  font-size: 2rem;
  color: #7C5E3A;
  border: 2px solid #7C5E3A;
  border-radius: 12px;
  padding: 0.75rem 2rem;
  margin-bottom: 12px;
  transition: background 0.2s, color 0.2s;
  line-height: 1.2;
}
.contact-phone:hover { background: #7C5E3A; color: #fff; }
.contact-sub { font-size: 1rem; color: rgba(44,44,44,0.7); margin-bottom: 8px; }
.contact-area { font-size: 0.9rem; color: rgba(44,44,44,0.5); word-spacing: 0.35rem; }

footer { background: #3d2b17; color: rgba(255,255,255,0.55); padding: 24px 0; text-align: center; }
footer p { font-size: 0.85rem; }
footer a { color: rgba(255,255,255,0.65); }

@media (min-width: 769px) {
  header { padding: 18px 5vw; }
  nav { display: flex; align-items: center; gap: 28px; }
  nav a { display: inline-block; font-size: 0.8rem; color: #2c2c2c; font-weight: 500; transition: color 0.2s; }
  nav a:hover { color: #1a3c2a; }
  nav a:focus-visible { color: #1a3c2a; outline: 2px solid #2d6a4f; outline-offset: 4px; }
  nav a:not(.header-cta) { display: inline-block; }

  .hero-content { max-width: 500px; }
  .hero h1 { font-size: clamp(3rem, 7vw, 5rem); }
  .hero p { max-width: 450px; margin-bottom: 36px; }

  .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
  section { padding: 100px 0; }
  h2 { font-size: clamp(2.2rem, 4vw, 3.2rem); margin-bottom: 48px; }

  .svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .svc-card { padding: 36px 32px; }
  .svc-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(124,94,58,0.1); }

  .photo-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }

  .seasons-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .season-card { padding: 32px 24px; }
  .season-heading { gap: 12px; margin-bottom: 12px; }
  .season-icon { font-size: 2rem; }
  .season-label { font-size: 2rem; }
  .season-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(45,106,79,0.08); }

  .about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
  .about-stats { gap: 48px; }
  .stat-number { font-size: 2.2rem; }
  .about-img-main img { height: 450px; }
  .about-img-small { display: block; position: absolute; bottom: -20px; right: -20px; width: 180px; height: 180px; border-radius: 50%; overflow: hidden; border: 4px solid #f5f2ec; }
  .about-img-small img { width: 100%; height: 100%; object-fit: cover; }
  .about-images { position: relative; }

  .contact-phone { font-size: 2.8rem; padding: 1rem 3rem; }
  .contact-img-wrap { width: 220px; }
  .contact-img { border-radius: 32px; }
  .contact-layout { gap: 48px; }

  .reviews-grid { flex-direction: row; gap: 20px; }
  .review-card { flex: 1; padding: 2rem; box-shadow: 0 12px 32px rgba(26,60,42,0.18); }
  .review-card:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(124,94,58,0.2); }

  footer .container { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
  footer { text-align: inherit; }
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.lightbox.active { display: flex; }
.lb-img-wrap {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  cursor: default;
}
.lb-img {
  max-width: 100%;
  max-height: 80vh;
  display: block;
  border-radius: 4px;
}
.lb-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 1000;
  opacity: 0.6;
  transition: opacity 0.2s;
  line-height: 1;
}
.lb-close:hover { opacity: 1; }
.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #fff;
  font-size: 3rem;
  cursor: pointer;
  z-index: 1000;
  opacity: 0.4;
  transition: opacity 0.2s;
  padding: 16px 12px;
  line-height: 1;
}
.lb-nav:hover { opacity: 1; }
.lb-prev { left: 12px; }
.lb-next { right: 12px; }
