/* ═══════════════════════════════════════════════════════════════════════════
   NORTHSTEAD LANDSCAPING — SERVICE PAGE STYLESHEET
   Shared styles for all individual service pages
═══════════════════════════════════════════════════════════════════════════ */

/* ── Custom Properties ──────────────────────────────────────────────────────── */
:root {
  --clr-bg:         #0a0a0a;
  --clr-bg-2:       #111111;
  --clr-bg-3:       #1a1a1a;
  --clr-surface:    #222222;
  --clr-border:     #2e2e2e;

  --clr-green:      #5c7a3e;
  --clr-green-lt:   #7a9f55;
  --clr-green-dk:   #3d5229;

  --clr-gold:       #c9a84c;
  --clr-gold-lt:    #e2c472;

  --clr-text:       #e8e4dc;
  --clr-text-muted: #9a9690;
  --clr-text-dark:  #c4bfb5;
  --clr-white:      #f5f2ec;

  --font-body:   'Montserrat', sans-serif;
  --font-serif:  'Lora', serif;

  --container:   1200px;
  --radius:      6px;
  --radius-lg:   12px;
  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.5);
}

/* ── Reset & Base ───────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 72px; }

body {
  font-family: var(--font-body);
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-body);
  font-weight: 700;
  line-height: 1.2;
  color: var(--clr-white);
}

h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
em { font-family: var(--font-serif); font-style: italic; color: var(--clr-gold); }
p  { color: var(--clr-text-dark); max-width: 68ch; }

.container {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 3rem);
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2.25rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--clr-green);
  color: #fff;
  border: 2px solid var(--clr-green);
}
.btn-primary:hover {
  background: var(--clr-green-lt);
  border-color: var(--clr-green-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(92,122,62,0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--clr-white);
  border: 2px solid rgba(255,255,255,0.35);
}
.btn-ghost:hover {
  border-color: var(--clr-white);
  background: rgba(255,255,255,0.07);
}

/* ═══════════════════════════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════════════════════════ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}

#site-header.scrolled {
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.6);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem clamp(1rem, 5vw, 3rem);
  gap: 2rem;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
  flex-shrink: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
}

/* New 2-color logo style */
.logo-main {
  display: block;
  color: var(--clr-white);
}
.logo-stead {
  color: var(--clr-green-lt);
}
.nav-logo small {
  display: block;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--clr-green-lt);
  text-transform: uppercase;
}

/* Legacy (kept for footer) */
.logo-north {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--clr-white);
}

.logo-sub {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--clr-green-lt);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  padding: 0.5rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--clr-text-dark);
  transition: color var(--transition);
  border-radius: var(--radius);
}
.nav-links a:hover { color: var(--clr-white); }

.nav-links .nav-cta {
  background: var(--clr-green);
  color: #fff;
  padding: 0.55rem 1.25rem;
  margin-left: 0.5rem;
  border-radius: var(--radius);
}
.nav-links .nav-cta:hover { background: var(--clr-green-lt); color: #fff; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-white);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(320px, 85vw);
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 5rem 2rem 2rem;
    background: var(--clr-bg-2);
    border-left: 1px solid var(--clr-border);
    transform: translateX(100%);
    transition: transform var(--transition);
    overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.1rem; width: 100%; padding: 0.75rem 1rem; }
  .nav-links .nav-cta { margin-left: 0; margin-top: 0.5rem; width: 100%; text-align: center; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   SERVICE PAGE HERO
═══════════════════════════════════════════════════════════════════════════ */
.sp-hero {
  position: relative;
  height: 80vh;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.sp-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: transform 6s ease;
}

.sp-hero-bg.loaded { transform: scale(1); }

.sp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0,0,0,0.3) 0%,
    rgba(0,0,0,0.55) 50%,
    rgba(0,0,0,0.82) 100%
  );
}

.sp-hero-content {
  position: relative;
  z-index: 1;
  padding: 0 clamp(1.5rem, 6vw, 5rem) clamp(3rem, 6vh, 5rem);
  width: 100%;
}

.sp-hero-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.5rem;
  transition: color var(--transition);
}
.sp-hero-back:hover { color: #fff; }

.sp-hero-eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 0.75rem;
}

.sp-hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
  margin-bottom: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   MAIN CONTENT AREA
═══════════════════════════════════════════════════════════════════════════ */
.sp-main {
  background: var(--clr-bg);
}

.sp-intro {
  padding: clamp(4rem, 7vw, 7rem) 0 clamp(3rem, 5vw, 5rem);
  background: var(--clr-bg-2);
}

.sp-intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 900px) {
  .sp-intro-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
  }
}

.sp-intro-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
  color: var(--clr-text-dark);
}

.sp-intro-text p:last-child { margin-bottom: 0; }

.sp-intro-aside {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-left: 4px solid var(--clr-green);
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
}

.sp-intro-aside h3 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-green-lt);
  margin-bottom: 1.25rem;
}

.sp-intro-aside ul {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  list-style: none;
  padding: 0;
}

.sp-intro-aside li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--clr-text-dark);
  line-height: 1.5;
}

.sp-intro-aside li::before {
  content: '✓';
  color: var(--clr-green-lt);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

/* ── Process Section ──────────────────────────────────────────────────────── */
.sp-process {
  padding: clamp(4rem, 7vw, 7rem) 0;
  background: var(--clr-bg);
}

.sp-section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clr-green-lt);
  margin-bottom: 0.75rem;
}

.sp-section-title {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 800;
  color: var(--clr-white);
  margin-bottom: 3rem;
}

.sp-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .sp-steps { grid-template-columns: repeat(4, 1fr); }
}

.sp-step {
  background: var(--clr-bg-3);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  position: relative;
  transition: border-color var(--transition), transform var(--transition);
}

.sp-step:hover {
  border-color: var(--clr-green);
  transform: translateY(-4px);
}

.sp-step-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--clr-green);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 0.75rem;
  font-family: var(--font-body);
}

.sp-step h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}

.sp-step p {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
  max-width: none;
}

/* ── Gallery Section ──────────────────────────────────────────────────────── */
.sp-gallery {
  padding: clamp(4rem, 7vw, 7rem) 0;
  background: var(--clr-bg-2);
}

.sp-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .sp-gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .sp-gallery-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
  .sp-gallery-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
}

.sp-gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--clr-bg-3);
  position: relative;
}

.sp-gallery-item.wide {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

.sp-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.sp-gallery-item:hover img { transform: scale(1.05); }

/* ── Testimonial ──────────────────────────────────────────────────────────── */
.sp-testimonials {
  padding: clamp(3rem, 5vw, 5rem) 0;
  background: var(--clr-bg);
}

.sp-testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .sp-testimonials-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1100px) {
  .sp-testimonials-grid { grid-template-columns: 1fr 1fr 1fr; }
}

.sp-testimonial {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: border-color var(--transition), transform var(--transition);
}
.sp-testimonial:hover { border-color: var(--clr-green); transform: translateY(-4px); }

.sp-stars {
  color: var(--clr-gold);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
}
.sp-stars::before {
  content: '\2605\2605\2605\2605\2605';
}

.sp-testimonial blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--clr-text);
  flex: 1;
}

.sp-testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.sp-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--clr-green-dk);
  color: var(--clr-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.sp-testimonial-author strong { display: block; font-size: 0.9rem; color: var(--clr-white); }
.sp-testimonial-author span { font-size: 0.78rem; color: var(--clr-text-muted); }

/* ── CTA Section ──────────────────────────────────────────────────────────── */
.sp-cta {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--clr-bg-3);
  text-align: center;
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}

.sp-cta h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.sp-cta p {
  font-size: 1.1rem;
  color: var(--clr-text-muted);
  max-width: 50ch;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.sp-cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════════════════ */
.site-footer {
  background: #0a0a0a;
  border-top: 1px solid var(--clr-border);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-top: 3.5rem;
  padding-bottom: 2.5rem;
}

@media (min-width: 600px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .footer-inner { grid-template-columns: 2fr 1fr 1fr 1.5fr; } }

.footer-brand .logo-north { font-size: 1.4rem; }
.footer-brand p { font-size: 0.8rem; color: var(--clr-text-muted); margin-top: 0.25rem; max-width: none; }
.footer-tagline { font-style: italic; font-family: var(--font-serif); color: var(--clr-gold) !important; margin-top: 0.5rem !important; }

.footer-links h4, .footer-contact h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-bottom: 1rem;
}

.footer-links ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a, .footer-contact a { font-size: 0.9rem; color: var(--clr-text-muted); transition: color var(--transition); }
.footer-links a:hover, .footer-contact a:hover { color: var(--clr-white); }
.footer-contact p { font-size: 0.9rem; color: var(--clr-text-muted); margin-bottom: 0.5rem; max-width: none; }

.footer-bottom { border-top: 1px solid var(--clr-border); padding: 1.25rem 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom p { font-size: 0.78rem; color: var(--clr-text-muted); max-width: none; }

/* ── Scroll animation ─────────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* -- Lightbox ------------------------------------------------ */
#sp-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
#sp-lightbox.active { display: flex; }

.sp-lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.92);
}

.sp-lb-img {
  position: relative;
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.8);
  z-index: 2;
}

.sp-lb-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
  z-index: 3;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.sp-lb-close:hover { opacity: 1; }

.sp-lb-prev,
.sp-lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  width: 46px;
  height: 46px;
  cursor: pointer;
  z-index: 3;
  transition: background 0.2s;
}
.sp-lb-prev:hover,
.sp-lb-next:hover { background: rgba(212,175,55,0.3); }
.sp-lb-prev { left: 18px; }
.sp-lb-next { right: 18px; }

/* ═══════════════════════════════════════════════════════════════════════════
   SMS FLOATING BUTTON — Chat Bubble Style
═══════════════════════════════════════════════════════════════════════════ */
.sms-fab {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 9999;
  display: none;
  align-items: center;
  gap: 0;
  text-decoration: none;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
  transition: transform 0.2s;
}
.sms-fab:hover { transform: scale(1.08); }

.sms-fab svg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  background: #5c7a3e;
  color: #fff;
  border-radius: 50%;
  padding: 16px;
  box-sizing: border-box;
  flex-shrink: 0;
  transition: background 0.2s;
}
.sms-fab:hover svg { background: #7a9f55; }

.sms-fab-label {
  position: absolute;
  right: 74px;
  background: transparent;
  color: #fff;
  white-space: nowrap;
  padding: 0.5rem 0.85rem;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
  pointer-events: auto;
  opacity: 0;
  transform: translateX(6px);
  transition: opacity 0.2s, transform 0.2s;
}
.sms-fab-label::after { display: none; }
.sms-fab:hover .sms-fab-label { opacity: 1; transform: translateX(0); }

@media (max-width: 899px) {
  .sms-fab { display: flex; bottom: 1.25rem; right: 1.25rem; }
  .sms-fab svg { width: 58px; height: 58px; padding: 14px; }
  .sms-fab-label { opacity: 1; transform: translateX(0); font-size: 0.75rem; right: 68px; }
}
