/* =============================================
   LONGIS BAY GARDEN SERVICES — Design System
   Based on YK Wellness template by Saturn Results
   ============================================= */

:root {
  --ivory:      #f7f9f4;
  --white:      #ffffff;
  --sand:       #d9e4d3;
  --stone:      #a8c09e;
  --sage:       #5a8a4a;
  --sage-dark:  #2d5a20;
  --sage-light: #eaf2e6;
  --charcoal:   #0e1a0a;
  --mid:        #3a5430;
  --light:      #6b8f60;
  --accent:     #7aaa66;
  --accent-lt:  #eaf2e6;
  --navy:       #0c1f3a;
  --cyan:       #11dbff;
  --gold:       #c9a855;

  --font-serif: 'Cormorant Garamond', 'Georgia', serif;
  --font-sans:  'DM Sans', 'Helvetica Neue', sans-serif;

  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.14);
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: clip; }
body {
  font-family: var(--font-sans);
  background: #060e04;
  color: var(--charcoal);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* Typography */
h1,h2,h3,h4,h5 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; }
p  { color: var(--mid); font-size: 1.05rem; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
}

.divider {
  width: 40px;
  height: 2px;
  background: var(--sage);
  border-radius: 2px;
  margin: 0.6rem 0;
}
.divider--center { margin: 0.6rem auto; }

/* Layout */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
section { padding: 6rem 0; }
.bg-white  { background: var(--white); }
.bg-ivory  { background: var(--ivory); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--sage);
  color: var(--white);
  border-color: var(--sage);
}
.btn-primary:hover {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(90,138,74,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-outline:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-white {
  background: var(--white);
  color: var(--sage-dark);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--ivory);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0.7rem 0;
  background: rgba(8, 18, 5, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), background 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(8, 18, 5, 0.98);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
  padding: 0.5rem 0;
}
.nav.nav--hidden { transform: translateY(-100%); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.nav__logo { flex-shrink: 0; display: flex; align-items: center; gap: 0.65rem; }
.nav__logo-img {
  height: 44px; width: 44px; border-radius: 50%; object-fit: cover;
  flex-shrink: 0;
}
.nav__logo-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.01em;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav__logo-sub {
  font-size: 0.65rem;
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav__links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  transition: var(--transition);
  position: relative;
  white-space: nowrap;
}
.nav__links a:hover, .nav__links a.active { color: var(--white); }
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0.75rem; right: 0.75rem;
  height: 1.5px;
  background: var(--cyan);
  transform: scaleX(0);
  transition: var(--transition);
  border-radius: 2px;
}
.nav__links a:hover::after, .nav__links a.active::after { transform: scaleX(1); }

.nav__cta {
  margin-left: 1rem;
  background: #67a0bb !important;
  border-color: #67a0bb !important;
  color: #fff !important;
}
.nav__cta:hover {
  background: #4d87a3 !important;
  border-color: #4d87a3 !important;
  box-shadow: 0 6px 20px rgba(103,160,187,0.35) !important;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 4.5px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 8px;
  cursor: pointer;
  padding: 9px 10px;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.nav__hamburger:hover { background: rgba(255,255,255,0.14); }
.nav__hamburger span {
  width: 18px; height: 1.5px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px; display: block;
  transition: var(--transition);
}

/* =============================================
   MOBILE NAV DRAWER
   ============================================= */
.nav__mobile-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  backdrop-filter: blur(3px);
}
.nav__mobile-overlay.open { display: block; }

.nav__mobile {
  display: flex; flex-direction: column;
  position: fixed; top: 0; right: 0; bottom: 0;
  height: 100dvh;
  width: min(85vw, 360px);
  background: #fff;
  z-index: 1001;
  overflow: hidden;
  transform: translateX(110%);
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -12px 0 48px rgba(0,0,0,0.2);
}
.nav__mobile.open { transform: translateX(0); }

.nav__mobile-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.4rem;
  background: #0e1a0a;
  flex-shrink: 0;
}
.nav__mobile-close {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 7px; cursor: pointer;
  color: rgba(255,255,255,0.85);
  transition: background 0.2s;
}
.nav__mobile-close:hover { background: rgba(255,255,255,0.2); }

.nav__mobile-body { flex: 1; min-height: 0; overflow-y: scroll; padding: 0.5rem 0 150px; }

.nav__mobile-link {
  display: block; padding: 1rem 1.4rem;
  font-family: var(--font-sans); font-size: 0.975rem; font-weight: 500;
  color: #0e1a0a;
  border-bottom: 1px solid #eef3ec;
  transition: background 0.15s;
}
.nav__mobile-link:hover { background: #f7f9f4; }

.nav__mobile-footer {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1rem 1.4rem 1.4rem;
  border-top: 1px solid #eef3ec;
  background: #fff;
  display: flex; flex-direction: column; gap: 0.6rem;
  z-index: 2;
}
.nav__mobile-wa-btn {
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  padding: 0.85rem 1.5rem;
  background: #25d366;
  color: #fff;
  border-radius: 10px;
  font-size: 0.92rem; font-weight: 600;
  transition: background 0.2s;
}
.nav__mobile-wa-btn:hover { background: #1da851; }
.nav__mobile-wa-full {
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  padding: 0.85rem 1.5rem;
  background: var(--sage-light);
  color: var(--sage-dark);
  border-radius: 10px;
  font-size: 0.92rem; font-weight: 600;
  border: 1px solid var(--sand);
  transition: background 0.2s;
}
.nav__mobile-wa-full:hover { background: var(--sand); }
.nav__mobile-footer .btn-primary {
  background: linear-gradient(160deg, #2a5018 0%, #0e1a0a 100%);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  width: 100%; justify-content: center;
  padding: 0.9rem 1.5rem; font-size: 0.95rem;
}

/* =============================================
   HERO SLIDER
   ============================================= */
.hero-slider {
  position: relative; width: 100%;
  background: #060e04;
  padding: 5.5rem 1.5rem 2rem;
  height: 100vh;
  height: 100svh;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.hero-slider__card {
  position: relative; overflow: hidden;
  border-radius: 18px;
  flex: 1;
  min-height: 0;
}
.hero-slide {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: center;
  opacity: 0; transition: opacity 1s ease; pointer-events: none;
}
.hero-slide.active {
  opacity: 1; pointer-events: auto;
  position: absolute; inset: 0;
}
.hero-slide__img {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0e1a0a 0%, #1a3010 40%, #243d18 70%, #2d4a1e 100%);
  background-size: cover; background-position: center;
}
.hero-slide__img--1 { background-image: url('images/main.avif'); }
.hero-slide__img--2 { background-image: url('images/tree-surgery.avif'); }
.hero-slide__img--3 { background-image: url('images/landscape.avif'); }

.hero-slide__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(6, 14, 4, 0.58) 0%,
    rgba(6, 14, 4, 0.30) 55%,
    rgba(6, 14, 4, 0.06) 100%
  );
}
.hero-slide__content {
  position: relative; z-index: 2;
  width: 100%; max-width: 1200px;
  margin: 0 auto; padding: 2rem 1.5rem;
  text-align: left;
}
.hero-slide__content h1 {
  color: #fff;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 400; line-height: 1.05;
  margin-bottom: 1rem; max-width: 560px;
}
.hero-slide__sub {
  color: rgba(255,255,255,0.92);
  font-size: 1rem; max-width: 440px;
  margin-bottom: 1.75rem; line-height: 1.7;
  font-weight: 500;
}
.btn-slide {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(90,138,74,0.28);
  color: #fff; border: 1px solid rgba(255,255,255,0.38);
  padding: 0.7rem 1.6rem; border-radius: 8px;
  font-size: 0.93rem; font-family: var(--font-sans); font-weight: 500;
  cursor: pointer; backdrop-filter: blur(6px);
  transition: background 0.25s, border-color 0.25s;
}
.btn-slide:hover {
  background: rgba(90,138,74,0.5); border-color: rgba(255,255,255,0.6); color: #fff;
}

/* Arrows */
.hero-slider__arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.22);
  color: #fff; width: 42px; height: 42px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  padding: 0; transition: background 0.2s; backdrop-filter: blur(6px);
}
.hero-slider__arrow:hover { background: rgba(255,255,255,0.22); }
.hero-slider__arrow--prev { left: 1rem; }
.hero-slider__arrow--next { right: 1rem; }

/* Dots */
.hero-slider__dots {
  position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; align-items: center; gap: 0.6rem;
}
.hero-slider__dot {
  width: 8px; height: 8px; border-radius: 50%; border: none;
  background: rgba(255,255,255,0.35); cursor: pointer;
  transition: background 0.25s, transform 0.25s; padding: 0;
}
.hero-slider__dot.active { background: #fff; transform: scale(1.25); }

@media (max-width: 768px) {
  .hero-slider { padding: 4.5rem 0.7rem 0.75rem; height: 100vh; height: 100svh; }
  .hero-slider__arrow { top: auto; bottom: 0.75rem; transform: none; width: 36px; height: 36px; }
  .hero-slider__arrow--prev { left: 1rem; right: auto; }
  .hero-slider__arrow--next { right: 1rem; left: auto; }
  .hero-slide__content { padding: 1.5rem 1rem; }
  .hero-slide__content h1 { font-size: clamp(2.4rem, 9.5vw, 3.2rem); }
}

/* =============================================
   TRUST BAR
   ============================================= */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--sand);
  padding: 1.2rem 0; overflow: hidden;
}
.trust-bar__track { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.trust-bar__inner {
  display: flex; align-items: center; justify-content: center;
  gap: 1.8rem; flex-wrap: nowrap;
}
.trust-item {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.85rem; font-weight: 500; color: var(--mid);
  white-space: nowrap; flex-shrink: 0;
}
.trust-item svg { color: var(--sage); flex-shrink: 0; }
.trust-divider { width: 1px; height: 20px; background: var(--sand); flex-shrink: 0; }
.trust-loop-only { display: none; }

@media (max-width: 768px) {
  .trust-bar { padding: 0.9rem 0; }
  .trust-bar__track { max-width: none; padding: 0; }
  .trust-loop-only { display: flex; }
  .trust-bar__inner {
    flex-wrap: nowrap; justify-content: flex-start; gap: 2rem;
    width: max-content; animation: trustScroll 20s linear infinite;
  }
  .trust-bar__inner:hover { animation-play-state: paused; }
}
@keyframes trustScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =============================================
   SECTION HEADERS
   ============================================= */
.section-header { margin-bottom: 4rem; }
.section-header--center { text-align: center; }
.section-header h2 { margin-top: 0.6rem; margin-bottom: 1rem; }
.section-header p { max-width: 560px; }
.section-header--center p { margin: 0 auto; }

/* =============================================
   SERVICE CARDS
   ============================================= */
.treatments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.treatment-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--sand);
  transition: var(--transition);
  display: flex; flex-direction: column;
}
.treatment-card:hover {
  box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--stone);
}
.treatment-card__visual {
  height: 200px;
  position: relative; overflow: hidden;
}
.treatment-card__visual img { transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.treatment-card:hover .treatment-card__visual img { transform: scale(1.06); }
.vis-lawn     { background: linear-gradient(135deg, #0e1a0a, #1a3010); }
.vis-tree     { background: linear-gradient(135deg, #0e1a0a, #243d18); }
.vis-landscape{ background: linear-gradient(135deg, #162408, #243d18); }
.vis-hedge    { background: linear-gradient(135deg, #0e1a0a, #1a3010); }
.vis-fencing  { background: linear-gradient(135deg, #162408, #2d4a1e); }
.vis-plants   { background: linear-gradient(135deg, #0e1a0a, #1a3010); }

.treatment-card__body { padding: 1.8rem; flex: 1; display: flex; flex-direction: column; }
.treatment-card__tag {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--sage); margin-bottom: 0.5rem;
}
.treatment-card h3 { margin-bottom: 0.75rem; font-size: 1.5rem; }
.treatment-card p { font-size: 0.95rem; flex: 1; }
.treatment-card__link {
  margin-top: 1.25rem;
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.88rem; font-weight: 600; color: var(--sage-dark);
  transition: var(--transition);
}
.treatment-card__link:hover { gap: 0.7rem; }

/* =============================================
   INTRO SPLIT
   ============================================= */
.intro-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.intro-split__visual { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.intro-split__box {
  background: linear-gradient(135deg, #0e1a0a 0%, #243d18 100%);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  position: relative; overflow: hidden;
}
.intro-split__box::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.3));
}
.intro-split__badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  background: var(--white); border-radius: var(--radius-md);
  padding: 1.1rem 1.4rem; box-shadow: var(--shadow-md); z-index: 2;
}
.intro-split__badge-num {
  font-family: var(--font-serif); font-size: 2.4rem;
  color: var(--gold); line-height: 1;
}
.intro-split__badge-label { font-size: 0.78rem; color: var(--light); margin-top: 0.2rem; }
.intro-split__text { display: flex; flex-direction: column; gap: 1.5rem; }
.intro-split__text h2 { margin-top: 0.4rem; }
.intro-split__text p { font-size: 1.05rem; }
.intro-split__stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; margin-top: 0.5rem;
}
.stat-box {
  background: var(--white); border: 1px solid var(--sand);
  border-radius: var(--radius-md); padding: 1.2rem;
}
.stat-box__num {
  font-family: var(--font-serif); font-size: 2.2rem;
  color: var(--gold); line-height: 1;
}
.stat-box__label { font-size: 0.82rem; color: var(--light); margin-top: 0.3rem; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials { background: var(--navy); }
.testimonials .eyebrow { color: var(--sage); }
.testimonials .section-header h2 { color: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg); padding: 2rem;
  transition: var(--transition);
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.14);
}
.testimonial-card__stars {
  display: flex; gap: 3px; margin-bottom: 1rem;
  color: #f5c842; font-size: 0.9rem;
}
.testimonial-card__quote {
  color: rgba(255,255,255,0.8); font-size: 1rem;
  line-height: 1.7; margin-bottom: 1.5rem; font-style: italic;
}
.testimonial-card__author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-card__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--sage); display: flex; align-items: center;
  justify-content: center; font-size: 1rem; font-weight: 600;
  color: var(--white); flex-shrink: 0;
}
.testimonial-card__name { font-weight: 600; font-size: 0.9rem; color: var(--white); }
.testimonial-card__via { font-size: 0.78rem; color: rgba(255,255,255,0.4); }

/* =============================================
   GALLERY STRIP
   ============================================= */
.gallery-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.gallery-strip-item {
  border-radius: var(--radius-md);
  overflow: hidden; border: 1px solid var(--sand);
  aspect-ratio: 3/2;
}
.gallery-strip-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.gallery-strip-item:hover img { transform: scale(1.06); }
@media (max-width: 768px) { .gallery-strip-grid { grid-template-columns: 1fr 1fr; } }

/* =============================================
   CTA BAND
   ============================================= */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, #0a4a6e 60%, #0c7a8a 100%);
  padding: 5rem 0; text-align: center;
}
.cta-band h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-band p { color: rgba(255,255,255,0.75); max-width: 500px; margin: 0 auto 2.5rem; }

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  padding: 10rem 0 5rem;
  background: linear-gradient(135deg, var(--navy) 0%, #0e1a0a 40%, #1a3010 100%);
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 70% 50%, rgba(90,138,74,0.15) 0%, transparent 55%);
}
.page-hero__content { position: relative; z-index: 2; }
.page-hero .eyebrow { color: var(--sage); margin-bottom: 1rem; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; font-size: clamp(2.2rem, 5vw, 4rem); }
.page-hero p { color: rgba(255,255,255,0.65); max-width: 560px; font-size: 1.1rem; }
.page-hero__actions { margin-top: 2rem; display: flex; gap: 1rem; flex-wrap: wrap; }

/* Services page hero image */
.page-hero--services {
  background:
    linear-gradient(to bottom, rgba(6,14,4,0.62) 0%, rgba(6,14,4,0.52) 100%),
    url('images/services image .jpeg') center center / cover no-repeat;
}
@media (max-width: 768px) {
  .page-hero--services {
    background:
      linear-gradient(to bottom, rgba(6,14,4,0.62) 0%, rgba(6,14,4,0.52) 100%),
      url('images/services image .jpeg') 30% center / cover no-repeat;
  }
}

/* =============================================
   SERVICE DETAIL (services page)
   ============================================= */
.service-detail-section { padding: 5rem 0; border-bottom: 1px solid var(--sand); }
.service-detail-section:nth-child(even) { background: var(--ivory); }
.service-detail-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.service-detail-inner.reverse { direction: rtl; }
.service-detail-inner.reverse > * { direction: ltr; }
.service-detail-text h2 { font-size: clamp(2rem, 3.5vw, 3rem); margin-bottom: 1rem; }
.service-detail-text p { font-size: 1rem; margin-bottom: 0.8rem; }
.service-detail-image {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--sand); aspect-ratio: 4/3;
}
.service-detail-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.service-detail-image:hover img { transform: scale(1.04); }
.service-list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.6rem; }
.service-list-item {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.95rem; color: var(--charcoal);
}
.service-list-item::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--sage); flex-shrink: 0;
}

/* Booking cards */
.booking-cards {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.booking-card {
  border: 1px solid var(--sand); border-radius: var(--radius-lg);
  padding: 2.2rem; transition: var(--transition);
}
.booking-card:hover { box-shadow: var(--shadow-md); border-color: var(--stone); transform: translateY(-3px); }
.booking-card h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.booking-card p { font-size: 0.95rem; margin-bottom: 1.5rem; }
.booking-card .price {
  font-family: var(--font-serif); font-size: 2.2rem;
  color: var(--charcoal); line-height: 1; margin-bottom: 0.25rem;
}
.booking-card .unit { font-size: 0.8rem; color: var(--light); margin-bottom: 1.5rem; }
.book-btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.7rem 1.5rem; border-radius: 100px;
  font-size: 0.88rem; font-weight: 600;
  background: var(--charcoal); color: #fff;
  transition: var(--transition);
}
.book-btn:hover { background: var(--sage-dark); }

/* Shop grid */
.shop-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--sand);
  border: 1px solid var(--sand); border-radius: var(--radius-lg);
  overflow: hidden; margin-top: 2.5rem;
}
.shop-card { padding: 2rem 1.5rem; background: var(--white); transition: background 0.2s; }
.shop-card:hover { background: var(--ivory); }
.shop-card h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.shop-card p { font-size: 0.88rem; line-height: 1.6; }
.shop-note {
  margin-top: 2rem; padding: 1.5rem 2rem;
  background: var(--ivory); border: 1px solid var(--sand);
  border-radius: var(--radius-md);
  font-size: 0.92rem; color: var(--mid); line-height: 1.65;
}

/* =============================================
   GALLERY PAGE
   ============================================= */
.gallery-featured-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem; height: 600px;
}
.gallery-featured-item {
  border-radius: var(--radius-md); overflow: hidden;
  border: 1px solid var(--sand);
}
.gallery-featured-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.gallery-featured-item:hover img { transform: scale(1.04); }
.gallery-featured-item.main { grid-row: 1/3; }

.gallery-masonry { columns: 3; gap: 1rem; margin-top: 1.5rem; }
.gallery-item {
  break-inside: avoid; margin-bottom: 1rem;
  border-radius: var(--radius-md); overflow: hidden;
  border: 1px solid var(--sand);
  position: relative; cursor: pointer;
}
.gallery-item img { width: 100%; display: block; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: rgba(14,26,10,0);
  transition: background 0.3s;
  display: flex; align-items: flex-end; padding: 1rem;
}
.gallery-item:hover .gallery-item-overlay { background: rgba(14,26,10,0.28); }
.gallery-item-label {
  font-size: 0.75rem; font-weight: 600; color: #fff;
  opacity: 0; transition: opacity 0.3s;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.gallery-item:hover .gallery-item-label { opacity: 1; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 4rem; align-items: start;
}
.contact-methods { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.contact-methods--wide {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (max-width: 600px) {
  .contact-methods--wide { grid-template-columns: 1fr; }
}
.contact-method {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.2rem 1.5rem;
  border: 1px solid var(--sand); border-radius: var(--radius-md);
  transition: var(--transition);
}
.contact-method:hover { border-color: var(--stone); box-shadow: var(--shadow-sm); }
.contact-method-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--sage-light); display: flex;
  align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-method-icon svg { stroke: var(--sage-dark); }
.contact-method-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--light); margin-bottom: 0.2rem;
}
.contact-method-value { font-size: 0.95rem; font-weight: 600; color: var(--charcoal); }
.contact-method-value a:hover { color: var(--sage); }

.contact-form-wrap {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2.5rem; border: 1px solid var(--sand); box-shadow: var(--shadow-sm);
}
.contact-form-wrap h3 { font-size: 1.8rem; margin-bottom: 0.5rem; }
.contact-form-wrap > p { font-size: 0.95rem; margin-bottom: 2rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--mid); margin-bottom: 0.5rem;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; background: var(--ivory);
  border: 1.5px solid var(--sand); border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  font-family: var(--font-sans); font-size: 0.97rem; color: var(--charcoal);
  transition: border-color 0.2s, box-shadow 0.2s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--sage); box-shadow: 0 0 0 3px rgba(90,138,74,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.submit-btn {
  width: 100%; padding: 0.95rem;
  background: var(--charcoal); color: #fff;
  font-family: var(--font-sans); font-size: 0.95rem; font-weight: 600;
  border: none; border-radius: var(--radius-md); cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  margin-top: 0.5rem;
}
.submit-btn:hover { background: var(--sage-dark); transform: translateY(-2px); }

/* Payment section */
.payment-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--sand);
  border: 1px solid var(--sand); border-radius: var(--radius-lg); overflow: hidden;
  margin-top: 2.5rem;
}
.payment-card { padding: 2rem 1.5rem; background: var(--white); transition: background 0.2s; }
.payment-card:hover { background: var(--ivory); }
.payment-card h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.payment-card p { font-size: 0.88rem; line-height: 1.6; }

/* Location card */
.location-card {
  margin-top: 2.5rem; border: 1px solid var(--sand); border-radius: var(--radius-lg);
  overflow: hidden; display: grid; grid-template-columns: 1fr 1fr;
}
.location-map {
  background: var(--sage-light); min-height: 280px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.location-map-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--sand) 1px, transparent 1px),
    linear-gradient(90deg, var(--sand) 1px, transparent 1px);
  background-size: 32px 32px;
}
.location-map-pin {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--sage); display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 2;
  box-shadow: 0 0 0 12px rgba(90,138,74,0.15), 0 0 0 24px rgba(90,138,74,0.07);
}
.location-map-pin svg { stroke: #fff; }
.location-info { padding: 2.5rem; border-left: 1px solid var(--sand); }
.location-info h3 { font-size: 1.6rem; margin-bottom: 1rem; }
.location-detail {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.92rem; color: var(--mid); margin-bottom: 0.75rem; line-height: 1.5;
}
.location-detail svg { stroke: var(--sage); flex-shrink: 0; margin-top: 2px; }
.location-detail a:hover { color: var(--sage); }

/* =============================================
   JOB VACANCY
   ============================================= */
.vacancy-wrap {
  max-width: 680px; margin: 0 auto; text-align: center;
}
.vacancy-inner {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--sand); padding: 3.5rem 3rem;
  box-shadow: var(--shadow-md);
}
.vacancy-title {
  font-size: clamp(2rem, 4vw, 2.8rem); color: var(--charcoal); margin: 0.5rem 0 0.4rem;
}
.vacancy-sub {
  font-family: var(--font-sans); font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--sage);
  margin-bottom: 2rem;
}
.vacancy-body { text-align: left; }
.vacancy-body p { margin-bottom: 1.25rem; font-size: 1.05rem; color: var(--mid); }
.vacancy-list {
  list-style: none; padding: 0; margin: 0 0 1.75rem; display: flex; flex-direction: column; gap: 0.6rem;
}
.vacancy-list li {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 1rem; font-weight: 500; color: var(--charcoal);
}
.vacancy-list li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--sage); flex-shrink: 0;
}
.vacancy-contact { font-weight: 500; color: var(--charcoal); text-align: center; }
.vacancy-ctas {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 1.5rem;
}

/* Map embed */
.map-embed-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--sand);
  box-shadow: var(--shadow-md);
  margin-top: 2.5rem;
}
.map-embed-wrap iframe {
  width: 100%; height: 420px; display: block; border: none;
}
.map-embed-pill {
  position: absolute; bottom: 1.2rem; left: 1.2rem;
  background: var(--white); border-radius: 100px;
  padding: 0.6rem 1.1rem;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.85rem; font-weight: 600; color: var(--charcoal);
  pointer-events: none;
}
.map-embed-pill svg { color: var(--sage); flex-shrink: 0; }
/* Mobile map — swap iframe for a clean directions card */
.map-desktop { display: block; }
.map-mobile-card {
  display: none;
  background: var(--ivory);
  border: 1px solid var(--sand);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  margin-top: 2.5rem;
}
.map-mobile-card__pin {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--sage); margin: 0 auto 1.2rem;
  display: flex; align-items: center; justify-content: center;
}
.map-mobile-card__pin svg { stroke: #fff; }
.map-mobile-card h3 { font-size: 1.4rem; margin-bottom: 0.4rem; }
.map-mobile-card p { font-size: 0.95rem; margin-bottom: 1.75rem; }
@media (max-width: 768px) {
  .map-desktop { display: none; }
  .map-mobile-card { display: block; }
}

/* Garden Centre grid */
.garden-centre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
.garden-centre-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--sand);
  aspect-ratio: 4/3;
}
.garden-centre-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.garden-centre-img:hover img { transform: scale(1.04); }
@media (max-width: 768px) {
  .garden-centre-grid { grid-template-columns: 1fr; }
}

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: var(--charcoal);
  padding: 5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p { font-size: 0.92rem; color: rgba(255,255,255,0.5); margin-top: 1.2rem; line-height: 1.7; }
.footer-logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.5rem; }
.footer-logo-img {
  height: 52px; width: 52px; border-radius: 50%; object-fit: cover;
  flex-shrink: 0;
}
.footer-logo-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  line-height: 1.1;
  display: flex;
  flex-direction: column;
}
.footer-logo-sub {
  font-size: 0.6rem;
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.footer-col h5 {
  font-family: var(--font-sans); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin-bottom: 1.2rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col ul li a {
  font-size: 0.92rem; color: rgba(255,255,255,0.6); transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  padding: 1.8rem 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.82rem; color: rgba(255,255,255,0.3); gap: 1rem; flex-wrap: wrap;
}

.footer-built {
  text-align: center; padding: 1rem;
  font-size: 0.78rem; color: rgba(255,255,255,0.2);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-built a { color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-built a:hover { color: rgba(255,255,255,0.7); }

/* =============================================
   ANIMATIONS
   ============================================= */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1), transform 0.65s cubic-bezier(0.4,0,0.2,1);
}
.fade-up.visible { opacity: 1; transform: none; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
  .intro-split { grid-template-columns: 1fr; gap: 3rem; }
  .service-detail-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-detail-inner.reverse { direction: ltr; }
  .booking-cards { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .location-card { grid-template-columns: 1fr; }
  .location-info { border-left: none; border-top: 1px solid var(--sand); }
  .payment-grid { grid-template-columns: 1fr; }
  .gallery-featured-grid { grid-template-columns: 1fr; grid-template-rows: auto; height: auto; }
  .gallery-featured-item.main { grid-row: auto; height: 280px; }
  .gallery-featured-item { height: 200px; }
  .gallery-masonry { columns: 2; }
}
@media (max-width: 768px) {
  .nav .container { padding-left: 0.65rem; padding-right: 0.65rem; }
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  section { padding: 4rem 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 1; }
  .testimonials-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .shop-grid { grid-template-columns: 1fr; }
  .gallery-strip-grid { grid-template-columns: 1fr 1fr; }
  .intro-split__stats { grid-template-columns: 1fr 1fr; }
}
