/* ═══════════════════════════════════════════════════
   BLUE SKY LANDSCAPING INC. v2
   Design System — OMNIUX-inspired Premium Layout
   Palette: #163124 Forest · #D9C7A7 Sand · #1D1D1D Charcoal
   © @giftedpixel2026
═══════════════════════════════════════════════════ */

/* ── Reset ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  background: #fff;
  color: #1D1D1D;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }

/* ── Tokens ────────────────────────────────────── */
:root {
  --forest:    #163124;
  --forest-dk: #0e2019;
  --forest-lt: #1e4533;
  --sand:      #D9C7A7;
  --sand-lt:   #ede3d0;
  --charcoal:  #1D1D1D;
  --mid:       #4a4a4a;
  --light:     #f5f4f1;
  --white:     #ffffff;

  --ff-head:  'DM Serif Display', Georgia, serif;
  --ff-body:  'DM Sans', system-ui, sans-serif;

  --gap: clamp(80px, 9vw, 130px);
  --wrap: 1260px;
  --px:   clamp(20px, 5vw, 64px);

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Utilities ─────────────────────────────────── */
.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--px);
}

.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 16px;
}
.eyebrow.light { color: var(--sand); }

.h2 {
  font-family: var(--ff-head);
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--charcoal);
}
.h2 em { font-style: italic; color: var(--forest); }
.h2.white { color: var(--white); }
em.sand { color: var(--sand); }

.section-head { margin-bottom: clamp(40px, 5vw, 72px); }
.section-head.centered { text-align: center; }
.section-sub {
  font-size: clamp(15px, 1.3vw, 18px);
  color: var(--mid);
  margin-top: 16px;
  font-weight: 300;
  max-width: 560px;
  line-height: 1.7;
}
.section-head.centered .section-sub { margin: 16px auto 0; }

.body-lg {
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 300;
  color: var(--mid);
  line-height: 1.8;
}

/* Buttons */
.btn-forest {
  display: inline-block;
  padding: 15px 32px;
  background: var(--forest);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: 2px solid var(--forest);
  transition: background .25s, color .25s, border-color .25s;
  cursor: pointer;
  white-space: nowrap;
}
.btn-forest:hover { background: var(--forest-lt); border-color: var(--forest-lt); }
.btn-forest.btn-sm { padding: 12px 24px; font-size: 13px; }
.btn-forest.btn-full { width: 100%; text-align: center; padding: 16px 32px; font-size: 15px; }

.btn-outline-white {
  display: inline-block;
  padding: 15px 32px;
  background: transparent;
  color: var(--white);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
  border: 2px solid rgba(255,255,255,0.45);
  transition: border-color .25s, background .25s;
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

/* Scroll reveal */
.sr {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s var(--expo), transform .75s var(--expo);
}
.sr.in { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════════
   MOBILE STICKY BAR
══════════════════════════════════════════════ */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
}
.mobile-sticky-bar a {
  flex: 1;
  padding: 16px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.sticky-call { background: var(--charcoal); color: var(--white); }
.sticky-quote { background: var(--forest); color: var(--white); }

@media (min-width: 769px) {
  .mobile-sticky-bar { display: none !important; }
}

/* ══════════════════════════════════════════════
   NAV
══════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--px);
  transition: background .4s var(--ease), padding .35s, box-shadow .35s;
}
.nav.scrolled {
  background: rgba(22,49,36,0.97);
  backdrop-filter: blur(14px);
  padding-top: 14px;
  padding-bottom: 14px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-leaf { flex-shrink: 0; }
.logo-text {
  font-family: var(--ff-head);
  font-size: 22px;
  color: var(--white);
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.78);
  transition: color .2s;
}
.nav-links a:hover { color: var(--white); }

.nav-right { display: flex; align-items: center; gap: 16px; }

.nav-cta {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--white);
  padding: 10px 22px;
  background: var(--forest);
  border: 2px solid var(--forest);
  transition: background .2s, border-color .2s;
}
.nav-cta:hover { background: var(--forest-lt); border-color: var(--forest-lt); }

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.burger span { display: block; width: 22px; height: 1.5px; background: var(--white); transition: all .3s; }

/* Drawer */
.drawer {
  position: fixed;
  inset: 0;
  background: var(--forest-dk);
  z-index: 99;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 60px var(--px);
  gap: 0;
}
.drawer.open { display: flex; }
.drawer-close {
  position: absolute;
  top: 24px; right: var(--px);
  background: none;
  border: none;
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
  padding: 4px;
}
.drawer ul { list-style: none; width: 100%; }
.drawer ul li { border-bottom: 1px solid rgba(255,255,255,0.08); }
.drawer ul li a {
  display: block;
  font-family: var(--ff-head);
  font-size: clamp(28px, 6vw, 42px);
  font-weight: 400;
  color: var(--white);
  padding: 18px 0;
  transition: color .2s;
}
.drawer ul li a:hover { color: var(--sand); }
.drawer-cta {
  font-family: var(--ff-body) !important;
  font-size: 15px !important;
  letter-spacing: 0.06em;
  background: var(--forest);
  color: var(--white) !important;
  padding: 14px 28px !important;
  margin-top: 8px;
  border: 2px solid var(--forest);
  display: inline-block !important;
}
.drawer-contact {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.drawer-contact a, .drawer-contact span {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}
.drawer-contact a { color: var(--sand); }

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; }
.hero-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 55%;
  transform: scale(1.05);
  animation: heroZoom 9s var(--expo) forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }

.hero-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    170deg,
    rgba(14,32,25,0.35) 0%,
    rgba(14,32,25,0.6) 55%,
    rgba(14,32,25,0.93) 100%
  );
}

.hero-trust-bar {
  position: absolute;
  top: 90px; left: 0; right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 0 var(--px);
}
.trust-pill {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 7px 16px;
  white-space: nowrap;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--px) clamp(120px, 15vw, 180px);
  max-width: 860px;
}

.hero-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp .8s var(--expo) .1s forwards;
}

.hero-h1 {
  font-family: var(--ff-head);
  font-size: clamp(52px, 8.5vw, 116px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp .9s var(--expo) .25s forwards;
}
.hero-h1 em { font-style: italic; color: var(--sand); }

.hero-sub {
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 580px;
  opacity: 0;
  animation: fadeUp .9s var(--expo) .4s forwards;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .9s var(--expo) .55s forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Metrics bar */
.hero-metrics {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: stretch;
  background: var(--forest);
}
.metric {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px 16px;
  text-align: center;
  position: relative;
}
.metric-num {
  font-family: var(--ff-head);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  color: var(--white);
  line-height: 1;
}
.metric-suffix {
  font-family: var(--ff-head);
  font-size: clamp(20px, 2.5vw, 32px);
  color: var(--sand);
  line-height: 1;
}
.metric-label {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 6px;
}
.metric-sep {
  width: 1px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════
   LIFESTYLE
══════════════════════════════════════════════ */
.lifestyle {
  padding: var(--gap) 0;
  background: var(--light);
}
.lifestyle .wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}

.lifestyle-list {
  list-style: none;
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.lifestyle-list li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(29,29,29,0.1);
}
.lifestyle-list li:first-child { border-top: 1px solid rgba(29,29,29,0.1); }
.list-icon {
  font-size: 18px;
  color: var(--forest);
  flex-shrink: 0;
  margin-top: 2px;
  font-weight: 300;
}
.lifestyle-list strong {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.lifestyle-list p {
  font-size: 14px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.6;
  margin: 0;
}

.lifestyle-imgs {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: 280px 200px;
  gap: 12px;
}
.limg { overflow: hidden; position: relative; }
.limg img { transition: transform .7s var(--ease); }
.limg:hover img { transform: scale(1.05); }
.limg-main { grid-row: 1 / 3; }
.limg-label {
  position: absolute;
  bottom: 10px; left: 10px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(22,49,36,0.75);
  padding: 5px 10px;
}

/* ══════════════════════════════════════════════
   TRANSFORMATIONS
══════════════════════════════════════════════ */
.transformations {
  padding: var(--gap) 0;
  background: #fff;
}

/* Hero project card */
.project-hero-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  margin-bottom: clamp(40px, 5vw, 70px);
  background: var(--charcoal);
  overflow: hidden;
}
.phc-img { height: 100%; min-height: 460px; }
.phc-img img { width: 100%; height: 100%; object-fit: cover; }
.phc-info {
  padding: clamp(36px, 4vw, 60px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}
.project-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 16px;
}
.phc-info h3 {
  font-family: var(--ff-head);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 18px;
}
.phc-info > p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 28px;
}
.project-results {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px 0;
  margin-bottom: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.proj-result strong {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 3px;
}
.proj-result span {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
}

/* Projects grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: clamp(40px, 5vw, 60px);
}

.proj-card {
  background: var(--light);
  overflow: hidden;
  transition: box-shadow .35s, transform .35s var(--ease);
}
.proj-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  transform: translateY(-4px);
}
.proj-card-img { height: 240px; overflow: hidden; }
.proj-card-img img { transition: transform .7s var(--ease); }
.proj-card:hover .proj-card-img img { transform: scale(1.06); }
.proj-card-body { padding: 24px; }
.proj-card-body h4 {
  font-family: var(--ff-head);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 400;
  color: var(--charcoal);
  margin: 10px 0 10px;
  line-height: 1.2;
}
.proj-card-body p {
  font-size: 13px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 16px;
}
.proj-scope {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.proj-scope li {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--forest);
  background: rgba(22,49,36,0.09);
  padding: 4px 10px;
}

.projects-cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.projects-note {
  font-size: 13px;
  color: var(--mid);
  font-weight: 300;
}

/* ══════════════════════════════════════════════
   BEFORE / AFTER SLIDER
══════════════════════════════════════════════ */
.ba-section {
  padding: var(--gap) 0;
  background: var(--charcoal);
}
.ba-section .section-head.centered .h2 { color: var(--white); }
.ba-section .eyebrow { color: var(--sand); }
.ba-section .section-sub { color: rgba(255,255,255,0.55); }

.ba-slider-wrap { max-width: 900px; margin: 0 auto; }

.ba-slider {
  position: relative;
  height: clamp(320px, 45vw, 520px);
  overflow: hidden;
  cursor: col-resize;
  user-select: none;
  touch-action: none;
}
.ba-after, .ba-before {
  position: absolute;
  inset: 0;
}
.ba-before {
  width: 50%;
  overflow: hidden;
}
.ba-before img {
  width: auto;
  min-width: 900px;
  max-width: none;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.3) brightness(0.75);
}
.ba-label {
  position: absolute;
  top: 16px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(0,0,0,0.5);
  padding: 5px 12px;
}
.ba-label-after { left: 16px; }
.ba-label-before { right: 16px; }

.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  pointer-events: none;
}
.ba-handle-line {
  flex: 1;
  width: 2px;
  background: var(--white);
}
.ba-handle-btn {
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
  flex-shrink: 0;
}
.ba-caption {
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  margin-top: 16px;
}

/* ══════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════ */
.services {
  padding: var(--gap) 0;
  background: var(--light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.svc-card {
  background: var(--white);
  overflow: hidden;
  transition: box-shadow .35s;
}
.svc-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.1); }

.svc-img { height: 220px; overflow: hidden; }
.svc-img img { transition: transform .7s var(--ease); }
.svc-card:hover .svc-img img { transform: scale(1.05); }

.svc-body { padding: 28px; }
.svc-body h3 {
  font-family: var(--ff-head);
  font-size: clamp(20px, 1.7vw, 24px);
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 12px;
  line-height: 1.2;
}
.svc-body p {
  font-size: 14px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 20px;
}
.svc-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--forest);
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(22,49,36,0.3);
  padding-bottom: 2px;
  transition: border-color .2s, color .2s;
}
.svc-link:hover { border-color: var(--forest); color: var(--forest-lt); }

/* ══════════════════════════════════════════════
   WHY US
══════════════════════════════════════════════ */
.why-us {
  position: relative;
  padding: var(--gap) 0;
  overflow: hidden;
}
.why-bg { position: absolute; inset: 0; }
.why-bg img { object-position: center 40%; }
.why-overlay { position: absolute; inset: 0; background: rgba(14,32,25,0.91); }
.why-inner { position: relative; z-index: 1; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  margin-top: clamp(40px, 5vw, 64px);
}
.why-card {
  padding: clamp(28px, 3vw, 44px);
  background: rgba(14,32,25,0.5);
  transition: background .3s;
}
.why-card:hover { background: rgba(22,49,36,0.7); }
.why-num {
  font-family: var(--ff-head);
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--sand);
  margin-bottom: 18px;
  opacity: 0.7;
}
.why-card h4 {
  font-family: var(--ff-head);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}
.why-card p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.58);
  line-height: 1.75;
}

/* ══════════════════════════════════════════════
   PROCESS
══════════════════════════════════════════════ */
.process {
  padding: var(--gap) 0;
  background: #fff;
}
.process-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.process-steps { display: flex; flex-direction: column; gap: 0; }

.ps {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  padding: clamp(24px, 2.5vw, 36px) 0;
  border-bottom: 1px solid rgba(29,29,29,0.1);
  align-items: start;
}
.ps:last-child { border-bottom: none; }

.ps-marker {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--forest);
  padding-top: 5px;
  background: rgba(22,49,36,0.07);
  text-align: center;
  padding: 8px 0;
}
.ps-content h4 {
  font-family: var(--ff-head);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 10px;
  line-height: 1.2;
}
.ps-content p {
  font-size: 14px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.75;
}

.process-img-col { position: sticky; top: 110px; }
.process-img { height: 420px; overflow: hidden; margin-bottom: 20px; }
.process-img img { transition: transform .7s var(--ease); }
.process-img:hover img { transform: scale(1.04); }

.process-callout {
  background: var(--forest);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.callout-num {
  font-family: var(--ff-head);
  font-size: 48px;
  color: var(--sand);
  line-height: 1;
  font-style: italic;
}
.callout-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
}
.process-callout p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  margin-bottom: 20px;
}

/* ══════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════ */
.testimonials {
  padding: var(--gap) 0;
  background: var(--light);
}
.testi-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
}
.testi-stack { display: flex; flex-direction: column; gap: 24px; }

.testi-card {
  background: var(--white);
  padding: clamp(28px, 3vw, 44px);
  position: relative;
  transition: box-shadow .3s;
}
.testi-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.08); }

.stars { color: #f4a100; font-size: 16px; letter-spacing: 2px; margin-bottom: 20px; }

.testi-card blockquote {
  font-family: var(--ff-head);
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
  color: var(--charcoal);
  border: none;
  padding: 0;
  margin-bottom: 24px;
}
.testi-author { display: flex; align-items: center; gap: 14px; margin-bottom: 0; }
.testi-avatar {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: var(--forest);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.05em;
}
.testi-author strong { display: block; font-size: 14px; font-weight: 500; color: var(--charcoal); }
.testi-author span { font-size: 12px; color: var(--mid); font-weight: 300; }

.testi-img {
  margin-top: 24px;
  height: 200px;
  overflow: hidden;
}
.testi-img img { transition: transform .6s var(--ease); }
.testi-card:hover .testi-img img { transform: scale(1.04); }

/* ══════════════════════════════════════════════
   SERVICE AREAS
══════════════════════════════════════════════ */
.areas {
  padding: var(--gap) 0;
  background: #fff;
  border-top: 1px solid rgba(29,29,29,0.08);
}
.areas-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.area-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(29,29,29,0.08);
  font-size: 15px;
  font-weight: 400;
  color: var(--charcoal);
}
.area-item:nth-child(odd) { padding-right: 20px; border-right: 1px solid rgba(29,29,29,0.08); }
.area-item:nth-child(even) { padding-left: 20px; }
.area-dot {
  width: 7px; height: 7px;
  background: var(--forest);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════
   FINAL CTA
══════════════════════════════════════════════ */
.final-cta {
  position: relative;
  padding: var(--gap) 0;
  overflow: hidden;
}
.final-cta-bg { position: absolute; inset: 0; }
.final-cta-bg img { object-position: center 65%; }
.final-cta-overlay { position: absolute; inset: 0; background: rgba(14,32,25,0.91); }

.final-cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}

.final-trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.final-trust span {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
}

/* Contact form card */
.contact-form-card {
  background: var(--white);
  padding: clamp(32px, 3.5vw, 52px);
}
.contact-form-card h3 {
  font-family: var(--ff-head);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.form-sub {
  font-size: 13px;
  color: var(--mid);
  margin-bottom: 28px;
  font-weight: 300;
}
form#contactForm {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cf-group { display: flex; flex-direction: column; gap: 7px; }
.cf-group label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid);
}
.cf-group input,
.cf-group select {
  padding: 13px 14px;
  border: 1.5px solid rgba(29,29,29,0.18);
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--charcoal);
  background: #fff;
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color .2s;
}
.cf-group input:focus,
.cf-group select:focus { border-color: var(--forest); }
.cf-group input::placeholder { color: rgba(29,29,29,0.3); }
.cf-group select {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234a4a4a' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 13px center;
  background-size: 16px;
  padding-right: 36px;
  cursor: pointer;
}
.cf-group select option { color: var(--charcoal); }
.form-note {
  font-size: 11px;
  color: rgba(29,29,29,0.4);
  text-align: center;
  margin-top: 4px;
  line-height: 1.6;
}
.form-success {
  text-align: center;
  padding: 48px 24px;
}
.success-mark {
  width: 56px; height: 56px;
  background: var(--forest);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--white);
  margin: 0 auto 20px;
}
.form-success h4 {
  font-family: var(--ff-head);
  font-size: 22px;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.form-success p { font-size: 14px; color: var(--mid); line-height: 1.7; }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.footer {
  background: var(--forest-dk);
  padding-top: clamp(60px, 7vw, 90px);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: clamp(40px, 6vw, 90px);
  padding-bottom: clamp(50px, 5vw, 70px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  max-width: 280px;
  margin-bottom: 24px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: border-color .2s, color .2s;
}
.footer-social a:hover { border-color: var(--sand); color: var(--sand); }

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.footer-cols > div h5 {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 18px;
}
.footer-cols ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-cols ul li, .footer-cols ul li a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  transition: color .2s;
}
.footer-cols ul li a:hover { color: var(--white); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); }
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}
.footer-bottom p {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.25);
}
.footer-bottom div { display: flex; gap: 20px; }
.footer-bottom div a {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  transition: color .2s;
}
.footer-bottom div a:hover { color: rgba(255,255,255,0.6); }

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1080px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .burger { display: flex; }

  .lifestyle .wrap { grid-template-columns: 1fr; }
  .lifestyle-imgs { margin-top: 40px; }

  .project-hero-card { grid-template-columns: 1fr; }
  .phc-img { min-height: 300px; }

  .process-layout { grid-template-columns: 1fr; }
  .process-img-col { position: static; }

  .testi-grid { grid-template-columns: 1fr; }
  .areas-layout { grid-template-columns: 1fr; }
  .final-cta-inner { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .projects-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .lifestyle-imgs { grid-template-columns: 1fr; grid-template-rows: 240px 180px; }
  .limg-main { grid-row: auto; }
  .hero-trust-bar { display: none; }
  .cf-row { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .area-item:nth-child(odd) { border-right: none; padding-right: 0; }
  .area-item:nth-child(even) { padding-left: 0; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-bottom-inner { flex-direction: column; gap: 10px; text-align: center; }
  .metric-sep { display: none; }
  .hero-metrics { flex-wrap: wrap; }
  .metric { min-width: 50%; border-bottom: 1px solid rgba(255,255,255,0.1); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
