/*
Theme Name: Garden Fixers
Theme URI: https://gardenfixers.com
Author: Garden Fixers
Author URI: https://gardenfixers.com
Description: Professional gardening and landscaping theme for Garden Fixers London.
Version: 1.0.5
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: gardenfixers
Tags: landscaping, gardening, business, responsive
*/

/* ── CSS Variables ── */
:root {
  --moss:     #2d4a2f;
  --fern:     #3d6640;
  --sage:     #7a9e7e;
  --mist:     #eef3ec;
  --cream:    #f7f4ef;
  --earth:    #8c6f4e;
  --stone:    #4a4640;
  --chalk:    #fafaf8;
  --ink:      #1c1c1a;
  --warm-mid: #b5a897;
  --r:        4px;
  --fd:       'Cormorant Garamond', Georgia, serif;
  --fb:       'DM Sans', sans-serif;
  --ease:     0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--fb);
  background: var(--chalk);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--fd);
  font-weight: 500;
  line-height: 1.15;
  color: var(--moss);
}
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Layout ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
}
section { padding: 5rem 0; }

/* ── Utility ── */
.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fern);
  margin-bottom: 0.85rem;
}
.section-title {
  font-family: var(--fd);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 500;
  color: var(--moss);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.section-title em { font-style: italic; color: var(--earth); }
.section-intro {
  font-size: 0.95rem;
  color: var(--stone);
  font-weight: 300;
  max-width: 480px;
  margin-top: 0.85rem;
  line-height: 1.75;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-block;
  background: var(--moss);
  color: #fff;
  padding: 0.8rem 1.75rem;
  border-radius: var(--r);
  font-size: 0.88rem;
  font-weight: 500;
  transition: background var(--ease), transform var(--ease);
}
.btn-primary:hover { background: var(--fern); transform: translateY(-1px); color: #fff; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--moss);
  font-size: 0.88rem;
  font-weight: 500;
  transition: gap var(--ease), color var(--ease);
}
.btn-ghost:hover { gap: 0.65rem; color: var(--fern); }

/* ── NAV ── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  background: rgba(247, 244, 239, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(61, 102, 64, 0.1);
  transition: padding var(--ease);
}
.site-logo {
  font-family: var(--fd);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--moss);
  text-decoration: none;
}
.site-logo span { color: var(--earth); }

#primary-nav { display: flex; align-items: center; gap: 2rem; }
#primary-nav a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  transition: color var(--ease);
}
#primary-nav a:hover { color: var(--fern); }
#primary-nav .nav-cta {
  background: var(--moss);
  color: #fff;
  padding: 0.5rem 1.25rem;
  border-radius: var(--r);
  transition: background var(--ease);
}
#primary-nav .nav-cta:hover { background: var(--fern); color: #fff; }

/* ── Nav dropdown ── */
.nav-dropdown-wrap {
  position: relative;
}
.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color var(--ease);
}
.nav-dropdown-trigger:hover,
.nav-dropdown-wrap:hover .nav-dropdown-trigger { color: var(--fern); }
.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid #e8ede8;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  padding: 0.5rem 0;
  min-width: 220px;
  z-index: 200;
}
.nav-dropdown-wrap:hover .nav-dropdown,
.nav-dropdown-wrap:focus-within .nav-dropdown { display: block; }
.nav-dropdown a {
  display: block;
  padding: 0.55rem 1.25rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--stone);
  transition: background var(--ease), color var(--ease);
  white-space: nowrap;
}
.nav-dropdown a:hover {
  background: var(--sage);
  color: var(--fern);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--moss);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

#mobile-menu {
  display: none;
  position: fixed;
  top: 60px; left: 0; right: 0;
  z-index: 190;
  background: rgba(247, 244, 239, 0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(61, 102, 64, 0.12);
  padding: 1.5rem;
  flex-direction: column;
  gap: 0.5rem;
}
#mobile-menu.open { display: flex; }
#mobile-menu a {
  font-size: 1rem;
  color: var(--stone);
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(61, 102, 64, 0.08);
  display: block;
}
#mobile-menu a:last-of-type { border-bottom: none; }
#mobile-menu .m-cta {
  background: var(--moss);
  color: #fff;
  text-align: center;
  padding: 0.9rem;
  border-radius: var(--r);
  border-bottom: none;
  font-weight: 500;
  margin-top: 0.5rem;
}

/* ── HERO ── */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 62px;
  background: var(--cream);
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 3rem 4rem 5rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fern);
  background: rgba(61, 102, 64, 0.08);
  border: 1px solid rgba(61, 102, 64, 0.2);
  padding: 0.4rem 0.9rem;
  border-radius: 2rem;
  width: fit-content;
  margin-bottom: 1.75rem;
  animation: fadeUp 0.5s ease both;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--fern);
}
.hero-headline {
  font-family: var(--fd);
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--moss);
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
  animation: fadeUp 0.5s ease 0.1s both;
}
.hero-headline em { font-style: italic; color: var(--earth); }
.hero-sub {
  font-size: 1rem;
  color: var(--stone);
  font-weight: 300;
  max-width: 400px;
  margin-bottom: 2rem;
  animation: fadeUp 0.5s ease 0.2s both;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.5s ease 0.3s both;
}
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(61, 102, 64, 0.15);
  animation: fadeUp 0.5s ease 0.4s both;
  flex-wrap: wrap;
}
.stat-num {
  font-family: var(--fd);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--moss);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  color: var(--warm-mid);
  letter-spacing: 0.05em;
  margin-top: 0.2rem;
  text-transform: uppercase;
}
.hero-visual { position: relative; overflow: hidden; animation: fadeIn 0.7s ease 0.2s both; }
.hero-img-wrap {
  position: absolute;
  inset: 1.5rem 1.5rem 1.5rem 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--moss);
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45, 74, 47, 0.3) 0%, transparent 60%);
}
.hero-img-tag {
  position: absolute;
  bottom: 2.5rem; left: 1.5rem;
  background: rgba(247, 244, 239, 0.96);
  backdrop-filter: blur(8px);
  border-radius: var(--r);
  padding: 0.85rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-img-tag-icon {
  width: 34px; height: 34px;
  background: var(--moss);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-img-tag-icon svg { width: 17px; height: 17px; fill: #fff; }
.tag-title { font-weight: 500; color: var(--ink); font-size: 0.82rem; }
.tag-sub { color: var(--warm-mid); font-size: 0.7rem; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--moss);
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  padding: 0.4rem 1.25rem;
}
.trust-item svg { width: 14px; height: 14px; fill: rgba(255, 255, 255, 0.45); flex-shrink: 0; }
.trust-divider { width: 1px; height: 18px; background: rgba(255, 255, 255, 0.15); }

/* ── SERVICES ── */
.services { background: var(--chalk); }
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  gap: 2rem;
  flex-wrap: wrap;
}

/* Image card grid (front page) */
.services-img-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.service-img-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  display: block;
  text-decoration: none;
}
.service-img-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}
.service-img-card:hover .service-img-card-bg { transform: scale(1.05); }
.service-img-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,28,26,0.82) 0%, rgba(28,28,26,0.1) 60%, transparent 100%);
}
.service-img-card-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.25rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  color: #fff;
}
.service-img-card-label span {
  font-family: var(--fd);
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.2;
}
.service-img-card-label svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  opacity: 0.7;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.service-img-card:hover .service-img-card-label svg { transform: translateX(4px); opacity: 1; }

/* Extra services expandable list */
.services-extra-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 0.5rem;
}
.services-extra-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.1rem;
  background: var(--mist);
  border-radius: var(--r);
  border: 1px solid rgba(61,102,64,0.1);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--moss);
  text-decoration: none;
  transition: background var(--ease);
}
.services-extra-item:hover { background: rgba(61,102,64,0.12); }
.services-extra-item svg { color: var(--fern); }

/* ── ABOUT ── */
.about { background: var(--cream); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-image-block { position: relative; padding-bottom: 2rem; padding-right: 2rem; }
.about-img-primary { width: 100%; aspect-ratio: 4/5; border-radius: 8px; object-fit: cover; display: block; }
.about-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 52%; aspect-ratio: 1;
  border-radius: 8px;
  border: 5px solid var(--cream);
  object-fit: cover;
}
.about-checklist { list-style: none; margin-top: 1.75rem; display: flex; flex-direction: column; gap: 0.7rem; }
.about-checklist li { display: flex; align-items: center; gap: 0.7rem; font-size: 0.88rem; color: var(--stone); }
.check-icon {
  width: 20px; height: 20px;
  background: rgba(61, 102, 64, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.check-icon svg { width: 10px; height: 10px; fill: var(--fern); }
.about-accred {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  background: var(--chalk);
  border-radius: var(--r);
  border: 1px solid rgba(61, 102, 64, 0.12);
}
.accred-badge {
  width: 44px; height: 44px;
  background: var(--moss);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.accred-badge svg { width: 22px; height: 22px; fill: #fff; }
.accred-title { font-size: 0.85rem; font-weight: 500; color: var(--ink); }
.accred-sub { font-size: 0.73rem; color: var(--warm-mid); margin-top: 2px; }

/* ── PROCESS ── */
.process { background: var(--moss); color: #fff; }
.process .section-tag { color: var(--sage); }
.process .section-title { color: #fff; }
.process .section-title em { color: var(--sage); }
.process .section-intro { color: rgba(255, 255, 255, 0.55); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 3.5rem;
  position: relative;
}
.process-steps::after {
  content: '';
  position: absolute;
  top: 2rem; left: 12.5%; right: 12.5%;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}
.process-step { padding: 0 1.75rem; text-align: center; }
.step-num-ring {
  width: 4rem; height: 4rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.4rem;
  font-family: var(--fd);
  font-size: 1.25rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  position: relative;
  z-index: 1;
}
.step-title { font-family: var(--fd); font-size: 1.15rem; font-weight: 600; color: #fff; margin-bottom: 0.45rem; }
.step-desc { font-size: 0.82rem; color: rgba(255, 255, 255, 0.5); font-weight: 300; line-height: 1.6; }

/* ── PROJECTS ── */
.projects { background: var(--chalk); }
.projects-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.projects-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 250px 250px;
  gap: 10px;
}
.project-item {
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--moss);
}
.project-item:first-child { grid-row: 1 / 3; }
.project-item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--ease); }
.project-item:hover img { transform: scale(1.04); }
.project-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(45, 74, 47, 0.92) 0%, transparent 100%);
  padding: 2rem 1.25rem 1.1rem;
  transform: translateY(30%);
  transition: transform var(--ease);
}
.project-item:hover .project-label { transform: translateY(0); }
.project-label-name { font-family: var(--fd); font-size: 1.05rem; font-weight: 500; color: #fff; }
.project-label-cat { font-size: 0.7rem; color: rgba(255, 255, 255, 0.6); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.15rem; }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--cream); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2.75rem; }
.testimonial-card {
  background: var(--chalk);
  border: 1px solid rgba(61, 102, 64, 0.1);
  border-radius: 8px;
  padding: 1.75rem 1.5rem;
}
.stars { display: flex; gap: 3px; margin-bottom: 0.85rem; }
.star { width: 13px; height: 13px; fill: var(--earth); }
.testimonial-text { font-family: var(--fd); font-size: 1rem; font-style: italic; color: var(--stone); line-height: 1.6; margin-bottom: 1.4rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.7rem; }
.author-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 500;
  background: rgba(61, 102, 64, 0.12);
  color: var(--fern);
  flex-shrink: 0;
}
.author-name { font-size: 0.83rem; font-weight: 500; color: var(--ink); }
.author-area { font-size: 0.72rem; color: var(--warm-mid); margin-top: 1px; }

/* ── CTA BANNER ── */
.cta-banner { background: var(--cream); padding: 0 0 5rem; }
.cta-inner {
  background: var(--moss);
  border-radius: 12px;
  padding: 4rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 3rem;
  position: relative;
  overflow: hidden;
}
.cta-inner::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
}
.cta-title { font-family: var(--fd); font-size: clamp(1.8rem, 2.8vw, 2.6rem); font-weight: 500; color: #fff; line-height: 1.2; }
.cta-title em { font-style: italic; color: var(--sage); }
.cta-sub { color: rgba(255, 255, 255, 0.5); font-size: 0.9rem; font-weight: 300; margin-top: 0.65rem; }
.cta-contact { margin-top: 1.5rem; display: flex; gap: 1.25rem; flex-wrap: wrap; }
.cta-contact a { display: inline-flex; align-items: center; gap: 0.45rem; color: rgba(255, 255, 255, 0.65); font-size: 0.85rem; }
.cta-contact a svg { width: 15px; height: 15px; fill: rgba(255, 255, 255, 0.35); }
.cta-form { display: flex; flex-direction: column; gap: 0.65rem; min-width: 270px; position: relative; z-index: 1; }
.cta-form input {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--r);
  padding: 0.75rem 1rem;
  font-family: var(--fb);
  font-size: 0.87rem;
  color: #fff;
  outline: none;
  transition: border-color var(--ease);
}
.cta-form input::placeholder { color: rgba(255, 255, 255, 0.38); }
.cta-form input:focus { border-color: rgba(255, 255, 255, 0.5); }
.cta-submit {
  background: #fff;
  color: var(--moss);
  border: none;
  border-radius: var(--r);
  padding: 0.8rem 1.25rem;
  font-family: var(--fb);
  font-size: 0.87rem;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--ease), color var(--ease);
}
.cta-submit:hover { background: var(--mist); color: var(--fern); }

/* ── FOOTER ── */
#site-footer { background: var(--ink); color: rgba(255, 255, 255, 0.5); padding: 4rem 0 2rem; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-brand-logo { font-family: var(--fd); font-size: 1.35rem; font-weight: 600; color: rgba(255, 255, 255, 0.85); display: block; margin-bottom: 0.85rem; }
.footer-brand-logo span { color: var(--earth); }
.footer-brand p { font-size: 0.82rem; line-height: 1.7; color: rgba(255, 255, 255, 0.38); max-width: 220px; }
.footer-address { margin-top: 0.85rem; font-size: 0.79rem; color: rgba(255, 255, 255, 0.3); }
.footer-col-title { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255, 255, 255, 0.28); margin-bottom: 1.1rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-links a { color: rgba(255, 255, 255, 0.45); font-size: 0.83rem; transition: color var(--ease); }
.footer-links a:hover { color: rgba(255, 255, 255, 0.85); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.07); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom p { font-size: 0.76rem; color: rgba(255, 255, 255, 0.22); }

/* ── WordPress core ── */
.wp-block-image img { border-radius: 8px; }
.alignleft { float: left; margin-right: 1.5rem; }
.alignright { float: right; margin-left: 1.5rem; }
.aligncenter { margin-left: auto; margin-right: auto; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── SERVICE PAGES ── */
.service-hero { position:relative; min-height:55vh; display:flex; align-items:flex-end; padding-top:62px; overflow:hidden; }
.service-hero-bg { position:absolute; inset:0; background-size:cover; background-position:center; }
.service-hero-overlay { position:absolute; inset:0; background:linear-gradient(to top, rgba(28,28,26,0.88) 0%, rgba(28,28,26,0.3) 60%, transparent 100%); }
.service-hero-content { position:relative; z-index:1; padding:4rem 0 3.5rem; }
.service-hero-content .section-tag { color:var(--sage); }
.service-hero-title { font-family:var(--fd); font-size:clamp(2.2rem,4vw,3.8rem); font-weight:500; color:#fff; line-height:1.1; margin-bottom:1rem; }
.service-hero-tagline { font-size:1rem; color:rgba(255,255,255,0.7); font-weight:300; max-width:560px; margin-bottom:1.75rem; }
.service-hero-actions { display:flex; align-items:center; gap:1rem; flex-wrap:wrap; }
.btn-primary-light { display:inline-block; background:#fff; color:var(--moss); padding:0.8rem 1.75rem; border-radius:var(--r); font-size:0.88rem; font-weight:500; transition:background var(--ease); }
.btn-primary-light:hover { background:var(--mist); }
.btn-ghost-light { display:inline-flex; align-items:center; gap:0.4rem; color:rgba(255,255,255,0.75); font-size:0.88rem; font-weight:500; transition:color var(--ease); }
.btn-ghost-light:hover { color:#fff; }

.service-overview { background:var(--chalk); padding:5rem 0; }
.service-overview-inner { display:grid; grid-template-columns:1fr 1fr; gap:5rem; align-items:center; }
.service-desc-text { font-size:0.95rem; color:var(--stone); font-weight:300; line-height:1.85; }
.service-benefits { list-style:none; margin-top:1.75rem; display:flex; flex-direction:column; gap:0.7rem; }
.service-benefits li { display:flex; align-items:center; gap:0.7rem; font-size:0.88rem; color:var(--stone); }

.service-img-stack { position:relative; padding-bottom:2rem; padding-right:2rem; }
.service-img-main { width:100%; aspect-ratio:4/5; border-radius:8px; display:block; }
.service-img-accent { position:absolute; bottom:0; right:0; width:52%; aspect-ratio:1; border-radius:8px; border:5px solid var(--chalk); background-size:cover; background-position:center; }

.service-gallery { background:var(--cream); padding:5rem 0; }
.service-gallery-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; margin-top:2.5rem; }
.service-gallery-item { border-radius:6px; aspect-ratio:4/3; background-size:cover; background-position:center; background-color:var(--moss); }

/* ── SERVICES GRID (10 items) ── */
.services-grid--ten { grid-template-columns:repeat(5,1fr); }
.services-grid--ten .service-card { text-decoration:none; display:block; }

/* ── CHECKATRADE ── */
.checkatrade-badge { display:inline-block; margin-top:1rem; }
.checkatrade-review-prompt { margin-top:2.5rem; padding:1.5rem 2rem; background:var(--chalk); border-radius:8px; border:1px solid rgba(0,110,65,0.15); display:flex; align-items:center; justify-content:space-between; gap:1.5rem; flex-wrap:wrap; }
.checkatrade-review-prompt p { font-size:0.88rem; color:var(--stone); font-weight:300; margin:0; max-width:480px; }
.checkatrade-review-btn { display:inline-flex; align-items:center; gap:0.65rem; background:var(--moss); color:#fff; padding:0.7rem 1.25rem; border-radius:var(--r); font-size:0.85rem; font-weight:500; white-space:nowrap; transition:background var(--ease); flex-shrink:0; }
.checkatrade-review-btn:hover { background:var(--fern); color:#fff; }

@media (max-width:1024px) { .services-grid--ten { grid-template-columns:repeat(3,1fr); } }
@media (max-width:768px) {
  .service-overview-inner { grid-template-columns:1fr; gap:2.5rem; }
  .service-img-stack { padding-bottom:2.5rem; padding-right:2.5rem; }
  .service-img-main { aspect-ratio:3/2; }
  .service-gallery-grid { grid-template-columns:repeat(2,1fr); }
  .services-grid--ten { grid-template-columns:1fr; }
  .checkatrade-review-prompt { flex-direction:column; align-items:flex-start; }
}
@media (max-width:480px) { .service-gallery-grid { grid-template-columns:1fr; } }

/* ── Placeholder image classes (Unsplash) ── */
.img-lawn      { background-image: url('https://images.unsplash.com/photo-1458245201577-fc8a130b8829?auto=format&fit=crop&w=1400&q=80'); background-size:cover; background-position:center; }
.img-paving    { background-image: url('https://images.unsplash.com/photo-1603518147332-ba54b96276a3?auto=format&fit=crop&w=1000&q=80'); background-size:cover; background-position:center; }
.img-fencing   { background-image: url('https://images.unsplash.com/photo-1687341426785-40909d161ed9?auto=format&fit=crop&w=700&q=80');  background-size:cover; background-position:center; }
.img-jet       { background-image: url('https://images.unsplash.com/photo-1581883579507-019c44b711cb?auto=format&fit=crop&w=1000&q=80'); background-size:cover; background-position:center; }
.img-brickwork { background-image: url('https://images.unsplash.com/photo-1770398081867-10e295837e00?auto=format&fit=crop&w=1000&q=80'); background-size:cover; background-position:center; }

/* ── Animations — fast ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.hero-badge    { animation-duration: 0.25s; }
.hero-headline { animation-duration: 0.25s; animation-delay: 0.05s; }
.hero-sub      { animation-duration: 0.25s; animation-delay: 0.1s; }
.hero-actions  { animation-duration: 0.25s; animation-delay: 0.12s; }
.hero-stats    { animation-duration: 0.25s; animation-delay: 0.15s; }
.hero-visual   { animation-duration: 0.3s;  animation-delay: 0.05s; }

/* ════════════════════════════════
   RESPONSIVE
   ════════════════════════════════ */

@media (max-width: 1024px) {
  .container { padding: 0 2rem; }
  .hero-content { padding: 3rem 2rem 3rem 3rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .about-inner { gap: 3rem; }
}

@media (max-width: 768px) {
  #primary-nav { display: none; }
  .hamburger { display: flex; }
  #site-header { padding: 0.95rem 1.25rem; }

  .hero { grid-template-columns: 1fr; grid-template-rows: auto auto; min-height: auto; padding-top: 58px; }
  .hero-content { padding: 2.5rem 1.25rem 2rem; order: 1; }
  .hero-headline { font-size: 2.1rem; }
  .hero-sub { max-width: 100%; font-size: 0.95rem; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 0.75rem; }
  .btn-primary { text-align: center; padding: 1rem 1.5rem; font-size: 0.95rem; min-height: 48px; display: flex; align-items: center; justify-content: center; }
  .hero-stats { gap: 1.25rem; margin-top: 2rem; padding-top: 1.5rem; }
  .stat-num { font-size: 1.7rem; }
  .hero-visual { order: 2; height: 60vw; min-height: 220px; }
  .hero-img-wrap { inset: 0 0.75rem 0.75rem 0.75rem; border-radius: 6px; }
  .hero-img-tag { bottom: 1.4rem; left: 1.4rem; padding: 0.65rem 0.85rem; gap: 0.55rem; }
  .hero-img-tag-icon { width: 28px; height: 28px; }
  .hero-img-tag-icon svg { width: 14px; height: 14px; }

  .trust-bar { padding: 0.75rem 1rem; justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; }
  .trust-item { padding: 0.3rem 0.7rem; font-size: 0.67rem; white-space: nowrap; flex-shrink: 0; }
  .trust-divider { display: none; }

  section { padding: 3rem 0; }
  .container { padding: 0 1.1rem; }

  .services-header { flex-direction: column; align-items: flex-start; margin-bottom: 1.75rem; gap: 0.75rem; }
  .services-img-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .service-img-card { aspect-ratio: 3/2; }
  .service-img-card-label span { font-size: 0.95rem; }
  .services-extra-list { grid-template-columns: 1fr; }

  .about-inner { grid-template-columns: 1fr; gap: 2rem; }
  .about-image-block { padding-bottom: 2.5rem; padding-right: 2.5rem; }
  .about-img-primary { aspect-ratio: 3/2; }

  .process-steps { grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2rem; }
  .process-steps::after { display: none; }
  .process-step { padding: 0 0.25rem; }

  .projects-header { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .projects-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; gap: 8px; }
  .project-item { aspect-ratio: 4/3; }
  .project-item:first-child { grid-row: auto; grid-column: 1 / -1; aspect-ratio: 16/9; }
  .project-label { transform: translateY(0); }

  .testimonials-grid { grid-template-columns: 1fr; gap: 1rem; }
  .checkatrade-review-prompt { flex-direction: column; gap: 1rem; }

  .cta-banner { padding: 0 0 3.5rem; }
  .cta-inner { grid-template-columns: 1fr; padding: 2rem 1.25rem; gap: 1.75rem; border-radius: 8px; }
  .cta-contact { flex-direction: column; gap: 0.6rem; }
  .cta-contact a { font-size: 0.95rem; min-height: 44px; }
  .cta-form { min-width: unset; width: 100%; }
  .cta-form input { padding: 0.9rem 1rem; font-size: 1rem; min-height: 48px; }
  .cta-submit { padding: 1rem; font-size: 1rem; min-height: 52px; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.35rem; }
  .footer-links a { padding: 0.35rem 0; min-height: 40px; display: flex; align-items: center; }

  /* Mobile sticky CTA */
  .mobile-sticky-cta {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 300;
    padding: 0.75rem 1rem;
    background: rgba(247,244,239,0.97);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(61,102,64,0.12);
    gap: 0.6rem;
  }
  .mobile-sticky-cta a {
    flex: 1;
    text-align: center;
    padding: 0.85rem 0.5rem;
    border-radius: var(--r);
    font-size: 0.88rem;
    font-weight: 500;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mobile-sticky-cta .m-call { background: var(--mist); color: var(--moss); border: 1px solid rgba(61,102,64,0.2); }
  .mobile-sticky-cta .m-quote { background: var(--moss); color: #fff; }
  body { padding-bottom: 72px; }
}

@media (max-width: 380px) {
  .hero-headline { font-size: 2rem; }
  .hero-stats { flex-direction: column; gap: 0.85rem; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .trust-item { font-size: 0.62rem; padding: 0.3rem 0.5rem; }
}
