/* ==============================================================
   Montalvo Landscaping — Editorial Landing Page Styles
   Inspired by premium landscaping/handyman sites:
   big photography, serif italics, dark statement bands
   ============================================================== */

:root {
  --ls-green:        #1f3a2b;       /* deep forest */
  --ls-green-dark:   #15281e;
  --ls-green-light:  #2d5640;
  --ls-accent:       #4ea36c;       /* fresh green CTA */
  --ls-accent-hover: #3f8957;
  --ls-cream:        #f5efe6;
  --ls-cream-dark:   #ede4d2;
  --ls-text:         #1a1a1a;
  --ls-text-muted:   #5a5a5a;
  --ls-text-light:   #8a8a8a;
  --ls-border:       #e0d8c8;
  --ls-shadow-sm:    0 2px 12px rgba(31, 58, 43, 0.06);
  --ls-shadow-md:    0 8px 32px rgba(31, 58, 43, 0.10);
  --ls-shadow-lg:    0 24px 60px rgba(31, 58, 43, 0.18);

  --font-serif: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;
}

/* override body font for landing page */
.landing-body {
  font-family: var(--font-sans);
  color: var(--ls-text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  line-height: 1.55;
}

.landing-body h1, .landing-body h2, .landing-body h3, .landing-body h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1.15;
}
.landing-body h1, .landing-body h2, .landing-body h3, .landing-body h4 { color: var(--ls-text); }
/* Override for sections with dark/photo backgrounds */
.ls-hero h1, .ls-hero h2, .ls-hero h3, .ls-hero h4,
.ls-statement h1, .ls-statement h2, .ls-statement h3,
.ls-about-card h2, .ls-about-card h3,
.ls-trust h1, .ls-trust h2, .ls-trust h3, .ls-trust h4,
.ls-final-cta h1, .ls-final-cta h2, .ls-final-cta h3,
.ls-what-tile h3, .ls-footer h5 { color: white; }

.landing-body em {
  font-style: italic;
  font-weight: 400;
  color: inherit;
}

.ls-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ls-text-muted);
  margin-bottom: 18px;
}
.ls-eyebrow-light { color: rgba(255, 255, 255, 0.7); }

/* ============ INNER PAGE base (use .ls-page on body for non-hero pages) ============ */
.ls-page {
  font-family: var(--font-sans);
  color: var(--ls-text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  line-height: 1.55;
}
.ls-page h1, .ls-page h2, .ls-page h3, .ls-page h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1.15;
  color: var(--ls-text);
}
.ls-page em { font-style: italic; font-weight: 400; }
.ls-page .ls-nav { background: white; box-shadow: 0 2px 20px rgba(0,0,0,0.05); padding: 12px 0; }
.ls-page .ls-nav .ls-logo { color: var(--ls-green); }
.ls-page .ls-nav .ls-nav-links > a,
.ls-page .ls-nav .ls-nav-links .nav-dropdown-btn { color: var(--ls-text); }
.ls-page .ls-nav .ls-mobile-toggle { color: var(--ls-text); }

/* Page hero (slim title-only banner for non-homepage) */
.ls-page-hero {
  background: var(--ls-green);
  padding: 140px 28px 70px;
  text-align: center;
  color: white;
}
.ls-page-hero h1 {
  color: white;
  font-size: clamp(36px, 5.5vw, 64px);
  margin-bottom: 12px;
  font-weight: 400;
}
.ls-page-hero h1 em { font-weight: 600; }
.ls-page-hero p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}

/* Booking page: ensure readability when book.html runs inside .ls-page light context */
.ls-page .book-main { background: white; padding-top: 40px; }
.ls-page .book-step h1 { color: var(--ls-text); font-family: var(--font-serif); font-weight: 600; }
.ls-page .book-step .step-header p { color: var(--ls-text-muted); }
.ls-page .step-circle { background: var(--ls-cream-dark); color: var(--ls-text-muted); }
.ls-page .progress-step.active .step-circle, .ls-page .progress-step.complete .step-circle { background: var(--ls-accent); color: white; }
.ls-page .progress-step span { color: var(--ls-text-muted); }
.ls-page .progress-step.active span { color: var(--ls-text); font-weight: 600; }
.ls-page .service-option-card,
.ls-page .time-slot-card,
.ls-page .day-option-card,
.ls-page .recurring-option-card,
.ls-page .confirm-card,
.ls-page .review-section,
.ls-page .form-section,
.ls-page .addons-section,
.ls-page .add-on-row {
  background: white;
  border-color: var(--ls-border);
  color: var(--ls-text);
}
.ls-page .service-option input:checked ~ .service-option-card,
.ls-page .time-slot-card.selected,
.ls-page .day-option-card.selected,
.ls-page .recurring-option-card.selected {
  border-color: var(--ls-accent);
  background: rgba(78, 163, 108, 0.06);
}
.ls-page .svc-info strong, .ls-page label, .ls-page input[type=text],
.ls-page input[type=email], .ls-page input[type=tel], .ls-page textarea, .ls-page select {
  color: var(--ls-text);
}
.ls-page .svc-info span, .ls-page .svc-min-note { color: var(--ls-text-muted); }
.ls-page input[type=text],
.ls-page input[type=email],
.ls-page input[type=tel],
.ls-page textarea,
.ls-page select {
  background: white;
  border: 1px solid var(--ls-border);
}
.ls-page input:focus, .ls-page textarea:focus, .ls-page select:focus {
  border-color: var(--ls-accent);
  outline: none;
}
.ls-page .btn-primary {
  background: var(--ls-accent) !important;
  color: white !important;
  border: none;
}
.ls-page .btn-primary:hover { background: var(--ls-accent-hover) !important; }
.ls-page .btn-ghost { color: var(--ls-text); border-color: var(--ls-border); }
.ls-page .confirm-section h3 { color: var(--ls-green); }
.ls-page .confirm-row span { color: var(--ls-text-muted); }
.ls-page .confirm-row strong { color: var(--ls-text); }
.ls-page .progress-line { background: var(--ls-cream-dark); }
.ls-page .svc-rate { color: var(--ls-green); font-weight: 700; }
.ls-page .svc-popular { background: var(--ls-accent); color: white; }

/* Quote/portal pages: similar light-themed override */
.ls-page .container, .ls-page main { color: var(--ls-text); }
.ls-page { --color-primary: var(--ls-accent); --color-primary-hover: var(--ls-accent-hover); }

/* Portal styles */
.ls-page .portal-main { background: white; padding-top: 40px; }
.ls-page #auth-screen, .ls-page #dash-screen { color: var(--ls-text); }
.ls-page .portal-card, .ls-page .booking-card, .ls-page .invoice-card, .ls-page .referral-card,
.ls-page .dash-section, .ls-page .inv-item, .ls-page .review-item, .ls-page .msg-thread {
  background: white; border: 1px solid var(--ls-border); color: var(--ls-text);
  border-radius: 16px;
}
.ls-page .portal-card h2, .ls-page .dash-section h3 { color: var(--ls-text); }
.ls-page .portal-card input, .ls-page .portal-card button, .ls-page .portal-card select {
  background: white;
}
.ls-page .portal-tabs { background: var(--ls-cream); border-radius: 999px; padding: 4px; display: inline-flex; }
.ls-page .portal-tab { color: var(--ls-text-muted); background: transparent; border: none; padding: 8px 18px; border-radius: 999px; font-weight: 600; cursor: pointer; }
.ls-page .portal-tab.active { background: white; color: var(--ls-text); box-shadow: var(--ls-shadow-sm); }
.ls-page .p-form input { background: white; border: 1px solid var(--ls-border); color: var(--ls-text); padding: 12px 14px; border-radius: 10px; width: 100%; font-family: var(--font-sans); }
.ls-page .p-form input:focus { outline: none; border-color: var(--ls-accent); }
.ls-page .dash-welcome { color: var(--ls-text); }
.ls-page .dash-phone { color: var(--ls-text-muted); }
.ls-page .signout-btn { background: var(--ls-cream); border: 1px solid var(--ls-border); color: var(--ls-text-muted); padding: 8px 16px; border-radius: 999px; cursor: pointer; }
.ls-page .inv-pay-btn { background: var(--ls-accent); color: white; }
.ls-page .inv-pay-btn:hover { background: var(--ls-accent-hover); }
.ls-page .inv-photos-btn { color: var(--ls-accent); border-color: var(--ls-border); }
.ls-page .inv-photos-btn:hover { background: rgba(78,163,108,0.08); border-color: var(--ls-accent); }
.ls-page .msg-bubble.client { background: var(--ls-accent); color: white; }
.ls-page .msg-bubble.admin { background: var(--ls-cream); color: var(--ls-text); }
.ls-page .inv-badge.inv-paid { background: rgba(78,163,108,0.15); color: var(--ls-accent); }
.ls-page .p-err { color: #ef4444; font-size: 13px; }
.ls-page .p-hint { color: var(--ls-text-muted); font-size: 13px; }

/* Quote styles */
.ls-page .quote-main { background: white; padding-top: 40px; }
.ls-page .q-card {
  background: white; border: 1px solid var(--ls-border); color: var(--ls-text);
  border-radius: 16px;
}
.ls-page .q-title { color: var(--ls-text); font-family: var(--font-serif); font-weight: 600; }
.ls-page .q-sub { color: var(--ls-text-muted); }
.ls-page .q-svc-card, .ls-page .q-svc-grid > * {
  background: white; border: 1px solid var(--ls-border); color: var(--ls-text);
  border-radius: 12px; transition: all 0.2s;
}
.ls-page .q-svc-card:hover, .ls-page .q-svc-grid > *:hover { border-color: var(--ls-accent); }
.ls-page .q-svc-card.selected, .ls-page .q-svc-grid > *.selected {
  border-color: var(--ls-accent); background: rgba(78,163,108,0.06);
}
.ls-page .q-label { color: var(--ls-text-muted); font-weight: 600; }
.ls-page input, .ls-page textarea, .ls-page select { background: white; border: 1px solid var(--ls-border); color: var(--ls-text); }
.ls-page input:focus, .ls-page textarea:focus, .ls-page select:focus { border-color: var(--ls-accent); outline: none; }
.ls-page .q-quote-total { color: var(--ls-green); }
.ls-page .q-line-val, .ls-page .q-rate { color: var(--ls-green); font-weight: 700; }

/* Existing booking progress lines should be visible */
.ls-page .progress-bar { padding: 20px 0; }

/* Mobile menu (shared by all pages) */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: white;
  border-top: 1px solid var(--ls-border);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  padding: 16px 20px 24px;
  gap: 2px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a:not(.btn):not(.btn-primary),
.mobile-menu a {
  padding: 14px 6px;
  text-decoration: none;
  color: var(--ls-green) !important;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-sans);
  border-bottom: 1px solid var(--ls-border);
  display: block;
}
.mobile-menu a:not(.btn):hover,
.mobile-menu a:not(.btn):active {
  color: var(--ls-green-dark) !important;
  background: var(--ls-cream);
  padding-left: 14px;
}
.mobile-menu a.btn,
.mobile-menu a.btn-primary {
  background: var(--ls-accent) !important;
  color: white !important;
  border: none;
  border-radius: 999px;
  text-align: center;
  margin-top: 14px;
  padding: 14px 24px;
  font-weight: 700;
}
.mobile-menu a.btn:hover {
  background: var(--ls-accent-hover) !important;
}

/* ============ NAV ============ */
.ls-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s, backdrop-filter 0.3s;
  padding: 16px 0;
}
.ls-nav.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  padding: 10px 0;
}
.ls-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.ls-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: white;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  transition: color 0.3s;
}
.ls-nav.scrolled .ls-logo { color: var(--ls-green); }
.ls-logo-img {
  width: 40px; height: 40px;
  border-radius: 8px;
  object-fit: cover;
  object-position: center 30%;
}
.ls-nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}
.ls-nav-links > a, .ls-nav-links .nav-dropdown-btn {
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: opacity 0.2s, color 0.3s;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-sans);
}
.ls-nav.scrolled .ls-nav-links > a,
.ls-nav.scrolled .ls-nav-links .nav-dropdown-btn { color: var(--ls-text); }
.ls-nav-links > a:hover, .ls-nav-links .nav-dropdown-btn:hover { opacity: 0.7; }

.ls-nav .nav-dropdown { position: relative; }
.ls-nav .nav-dropdown-menu {
  position: absolute; top: calc(100% + 12px); right: 0;
  background: white;
  border: 1px solid var(--ls-border);
  border-radius: 14px;
  box-shadow: 0 12px 36px rgba(31, 58, 43, 0.18);
  padding: 8px;
  min-width: 220px;
  display: flex; flex-direction: column;
  gap: 2px;
  opacity: 0; visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s, transform 0.2s, visibility 0s linear 0.2s;
}
.ls-nav .nav-dropdown:hover .nav-dropdown-menu,
.ls-nav .nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
  transition: opacity 0.2s, transform 0.2s, visibility 0s;
}
.ls-nav .nav-dropdown-menu a {
  padding: 11px 16px;
  border-radius: 10px;
  color: var(--ls-green) !important;       /* dark forest green for strong contrast */
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.15s, color 0.15s, padding-left 0.15s;
  border-left: 3px solid transparent;
}
.ls-nav .nav-dropdown-menu a:hover {
  background: var(--ls-cream);
  color: var(--ls-green-dark) !important;
  border-left-color: var(--ls-accent);
  padding-left: 18px;
}
.ls-nav .nav-dropdown-menu a:not(:last-child) {
  border-bottom: 1px solid rgba(224, 216, 200, 0.4);
}

.ls-cta-btn {
  background: var(--ls-accent);
  color: white;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.2s, transform 0.2s;
  font-family: var(--font-sans);
}
.ls-cta-btn:hover { background: var(--ls-accent-hover); transform: translateY(-1px); }

.ls-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 8px;
}
.ls-nav.scrolled .ls-mobile-toggle { color: var(--ls-text); }

/* ============ HERO ============ */
.ls-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 28px 80px;
  overflow: hidden;
  color: white;
}
.ls-hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.ls-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%; /* favor the upper-middle portion (sky/structure) of portrait photos */
}
.ls-hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(21, 40, 30, 0.45) 0%, rgba(21, 40, 30, 0.75) 80%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.5) 100%);
}
.ls-hero-content {
  position: relative;
  z-index: 1;
  max-width: 880px;
  text-align: center;
}
.ls-hero-content .ls-eyebrow { color: rgba(255, 255, 255, 0.85); }
.ls-hero-title {
  font-size: clamp(40px, 7vw, 84px);
  line-height: 1.05;
  font-weight: 400;
  color: white;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.ls-hero-title em {
  font-style: italic;
  font-weight: 600;
  color: white;
}
.ls-hero-sub {
  font-size: clamp(15px, 1.6vw, 19px);
  color: rgba(255, 255, 255, 0.92);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.6;
}
.ls-hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.ls-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s, border-color 0.2s;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: var(--font-sans);
}
.ls-btn-primary {
  background: var(--ls-accent);
  color: white;
}
.ls-btn-primary:hover { background: var(--ls-accent-hover); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(78, 163, 108, 0.35); }
.ls-btn-outline {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
}
.ls-btn-outline:hover { background: rgba(255, 255, 255, 0.1); border-color: white; }
.ls-btn-green {
  background: var(--ls-accent);
  color: white;
  margin-top: 8px;
}
.ls-btn-green:hover { background: var(--ls-accent-hover); transform: translateY(-2px); }
.ls-btn-large { padding: 18px 44px; font-size: 17px; }

/* ============ STATEMENT BAND ============ */
.ls-statement {
  background: var(--ls-green);
  padding: 70px 28px;
  text-align: center;
  border-bottom: 4px solid var(--ls-accent);
}
.ls-statement-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.ls-statement h2 {
  color: white;
  font-size: clamp(28px, 4.5vw, 56px);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.ls-statement em {
  font-style: italic;
  font-weight: 600;
}

/* ============ ABOUT ============ */
.ls-about {
  background: var(--ls-cream);
  padding: 100px 28px;
}
.ls-about-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  position: relative;
}
.ls-about-photo {
  height: 540px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--ls-shadow-md);
}
.ls-about-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.ls-about-card {
  background: var(--ls-green);
  color: white;
  padding: 60px 56px;
  border-radius: 8px;
  box-shadow: var(--ls-shadow-lg);
  margin-left: -60px;
  align-self: center;
  position: relative;
  z-index: 2;
}
.ls-about-card h2 {
  color: white;
  font-size: clamp(28px, 3.5vw, 42px);
  margin-bottom: 20px;
  line-height: 1.2;
}
.ls-about-card p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  margin-bottom: 16px;
  line-height: 1.65;
}

/* ============ WHAT WE DO (4 photo tiles) ============ */
.ls-what {
  background: white;
  padding: 100px 28px;
}
.ls-section-title {
  font-size: clamp(34px, 5vw, 54px);
  text-align: center;
  margin-bottom: 56px;
  font-weight: 500;
}
.ls-what-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.ls-what-tile {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: block;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.3, 1);
}
.ls-what-tile:hover { transform: translateY(-6px); }
.ls-what-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.ls-what-tile:hover img { transform: scale(1.06); }
.ls-what-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(21, 40, 30, 0) 30%,
    rgba(21, 40, 30, 0.4) 65%,
    rgba(21, 40, 30, 0.85) 100%);
}
.ls-what-tile h3 {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  color: white;
  font-size: 22px;
  font-weight: 500;
  z-index: 1;
  margin: 0;
  line-height: 1.2;
}

/* ============ ALL SERVICES (detailed cards) ============ */
.ls-services {
  background: var(--ls-cream);
  padding: 100px 28px;
}
.ls-services .container {
  max-width: 1280px;
  margin: 0 auto;
}
.ls-section-head {
  text-align: center;
  margin-bottom: 56px;
}
.ls-section-head h2 {
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 500;
  margin-top: 8px;
}
.ls-section-lead {
  font-size: 16px;
  color: var(--ls-text-muted);
  margin-top: 12px;
}
.ls-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}
.ls-service-card {
  background: white;
  border-radius: 16px;
  padding: 28px;
  text-decoration: none;
  color: var(--ls-text);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
  border: 1px solid var(--ls-border);
}
.ls-service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ls-shadow-md);
  border-color: var(--ls-accent);
}
.ls-service-card.featured {
  background: linear-gradient(135deg, white 0%, #f9f4e8 100%);
  border-color: var(--ls-accent);
}
.ls-service-icon {
  width: 48px; height: 48px;
  background: var(--ls-green);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.ls-service-card.featured .ls-service-icon {
  background: var(--ls-accent);
}
.ls-service-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--ls-accent);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.05em;
}
.ls-service-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  line-height: 1.2;
  font-weight: 600;
}
.ls-service-card p {
  font-size: 14px;
  color: var(--ls-text-muted);
  flex: 1;
  margin: 0 0 18px;
  line-height: 1.55;
}
.ls-service-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--ls-border);
}
.ls-rate {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--ls-green);
}
.ls-rate small {
  font-size: 13px;
  font-weight: 500;
  color: var(--ls-text-muted);
}
.ls-min {
  font-size: 11px;
  color: var(--ls-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}
.ls-service-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--ls-accent);
  margin-top: auto;
}

/* ============ TRUST BAND ============ */
.ls-trust {
  background: var(--ls-green);
  color: white;
  padding: 100px 28px;
}
.ls-trust-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.ls-trust-inner h2 {
  color: white;
  font-size: clamp(34px, 5vw, 54px);
  margin-bottom: 56px;
  font-weight: 400;
}
.ls-trust-inner em { font-weight: 600; }
.ls-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.ls-trust-item h4 {
  color: white;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  margin-top: 16px;
}
.ls-trust-item p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin: 0;
}
.ls-trust-icon {
  width: 56px; height: 56px;
  background: rgba(78, 163, 108, 0.18);
  border: 2px solid var(--ls-accent);
  color: var(--ls-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

/* ============ REVIEWS ============ */
.ls-reviews {
  background: white;
  padding: 100px 28px;
}
.ls-reviews .container { max-width: 1100px; margin: 0 auto; }
.ls-review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ls-review-card {
  background: var(--ls-cream);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--ls-border);
}
.ls-review-stars {
  color: var(--ls-accent);
  font-size: 18px;
  margin-bottom: 16px;
}
.ls-review-card p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.55;
  color: var(--ls-text);
  margin: 0 0 16px;
}
.ls-review-author {
  font-size: 13px;
  font-weight: 600;
  color: var(--ls-text-muted);
}

/* ============ FINAL CTA ============ */
.ls-final-cta {
  position: relative;
  padding: 120px 28px;
  background: linear-gradient(rgba(21, 40, 30, 0.78), rgba(21, 40, 30, 0.85)),
              url('/api/before-after/4/after.jpg') center/cover;
  color: white;
  text-align: center;
}
.ls-final-inner {
  max-width: 720px;
  margin: 0 auto;
}
.ls-final-cta h2 {
  color: white;
  font-size: clamp(36px, 6vw, 64px);
  margin-bottom: 16px;
  font-weight: 400;
}
.ls-final-cta p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
}

/* ============ FOOTER ============ */
.ls-footer {
  background: var(--ls-green-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 70px 28px 24px;
}
.ls-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.ls-footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.ls-footer-logo {
  width: 50px; height: 50px;
  border-radius: 10px;
  object-fit: cover;
  object-position: center 30%;
}
.ls-footer-name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: white;
}
.ls-footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}
.ls-footer-cols h5 {
  color: white;
  font-family: var(--font-sans);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 16px;
  font-weight: 700;
}
.ls-footer-cols a {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 8px;
  transition: color 0.2s;
}
.ls-footer-cols a:hover { color: white; }
.ls-footer-area {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  display: block;
  margin-top: 8px;
  line-height: 1.5;
}
.ls-footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
}

/* ============ MOBILE / RESPONSIVE ============ */
@media (max-width: 960px) {
  .ls-nav-links { display: none; }
  .ls-mobile-toggle { display: block; margin-left: auto; }
  .ls-cta-btn { display: none; }

  .ls-hero { min-height: 90vh; padding: 100px 20px 60px; }

  .ls-about-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .ls-about-photo { height: 320px; border-radius: 8px 8px 0 0; }
  .ls-about-card {
    margin-left: 0;
    margin-top: -1px;
    border-radius: 0 0 8px 8px;
    padding: 40px 28px;
  }

  .ls-what-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .ls-what-tile { aspect-ratio: 1/1; }
  .ls-what-tile h3 { font-size: 18px; bottom: 18px; left: 18px; right: 18px; }

  .ls-trust-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .ls-review-grid { grid-template-columns: 1fr; }

  .ls-footer-cols { grid-template-columns: repeat(2, 1fr); gap: 28px; }

  .ls-statement { padding: 50px 20px; }
  .ls-about, .ls-what, .ls-services, .ls-trust, .ls-reviews { padding: 70px 20px; }
  .ls-final-cta { padding: 80px 20px; }
}
@media (max-width: 540px) {
  .ls-what-grid { grid-template-columns: 1fr; }
  .ls-trust-grid { grid-template-columns: 1fr; gap: 24px; }
  .ls-footer-cols { grid-template-columns: 1fr 1fr; }
}
