/* ============================================================
   JOHN'S MAINTENANCE & LANDSCAPING — styles.css
   ============================================================ */

:root {
  --green-900:  #0f2410;
  --green-800:  #1a3a1a;
  --green-700:  #25521f;
  --green-600:  #2d6627;
  --green-500:  #3d7a35;
  --green-400:  #5a9e50;
  --green-100:  #edf4ec;
  --gold-500:   #c8a84b;
  --gold-400:   #dbbf6a;
  --gold-300:   #f0d690;
  --cream:      #faf8f4;
  --white:      #ffffff;
  --ink-900:    #111a11;
  --ink-700:    #2e3d2e;
  --ink-400:    #6b7c6b;
  --ink-200:    #c8d8c8;
  --ink-100:    #e8f0e8;
  --border:     #dce8dc;
  --sh-sm:      0 2px 8px rgba(15,36,16,.08);
  --sh-md:      0 8px 32px rgba(15,36,16,.13);
  --sh-lg:      0 24px 64px rgba(15,36,16,.2);
  --r:          12px;
  --r-lg:       20px;
  --r-xl:       28px;
  --ease:       cubic-bezier(.4,0,.2,1);
  --t:          0.28s var(--ease);
  --ff-serif:   'Playfair Display', Georgia, serif;
  --ff-sans:    'Inter', system-ui, sans-serif;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--ff-sans); color: var(--ink-900); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- Layout ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }

/* ---- Typography helpers ---- */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-500);
  margin-bottom: 14px;
}
.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--green-500);
  border-radius: 2px;
}
.section-title {
  font-family: var(--ff-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--ink-900);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--ink-400);
  line-height: 1.75;
  max-width: 620px;
}
.section-header { text-align: center; margin: 0 auto 64px; }
.section-header .section-eyebrow { display: inline-flex; }
.section-header .section-subtitle { margin: 0 auto; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--ff-sans);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--t);
  white-space: nowrap;
}
.btn-primary {
  background: var(--green-500);
  color: var(--white);
  border-color: var(--green-500);
}
.btn-primary:hover { background: var(--green-800); border-color: var(--green-800); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(61,122,53,.35); }

.btn-gold {
  background: var(--gold-500);
  color: var(--ink-900);
  border-color: var(--gold-500);
  font-weight: 700;
}
.btn-gold:hover { background: var(--gold-300); border-color: var(--gold-300); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,168,75,.4); }

.btn-glass {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border-color: rgba(255,255,255,.4);
  backdrop-filter: blur(8px);
}
.btn-glass:hover { background: rgba(255,255,255,.22); border-color: rgba(255,255,255,.7); transform: translateY(-2px); }

.btn-glass-dark {
  background: rgba(255,255,255,.1);
  color: var(--white);
  border-color: rgba(255,255,255,.3);
}
.btn-glass-dark:hover { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.6); transform: translateY(-2px); }

.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   HEADER / NAV TABS
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 12px 0 0;
  transition: var(--t);
}
.site-header.scrolled {
  padding: 0;
  background: rgba(15,36,16,.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(0,0,0,.25);
}

.nav-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}
.logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
}
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name {
  font-family: var(--ff-serif);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--white);
}
.logo-sub {
  font-size: 0.76rem;
  color: rgba(255,255,255,.6);
}

/* ---- Tab-style nav ---- */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50px;
  padding: 5px;
  backdrop-filter: blur(8px);
}

.nav-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  letter-spacing: 0.02em;
  transition: var(--t);
  position: relative;
}
.tab-icon {
  width: 14px;
  height: 14px;
  opacity: 0.7;
  transition: var(--t);
}
.nav-tab:hover {
  color: var(--white);
  background: rgba(255,255,255,.12);
}
.nav-tab:hover .tab-icon { opacity: 1; }
.nav-tab.active {
  color: var(--white);
  background: rgba(255,255,255,.15);
}
.nav-tab.active .tab-icon { opacity: 1; }

.nav-tab-cta {
  background: var(--gold-500) !important;
  color: var(--ink-900) !important;
  border-color: var(--gold-500);
  margin-left: 4px;
}
.nav-tab-cta .tab-icon { opacity: 1; color: var(--ink-900); }
.nav-tab-cta:hover {
  background: var(--gold-300) !important;
  color: var(--ink-900) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(200,168,75,.4);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  cursor: pointer;
  padding: 9px 10px;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--t); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10,28,10,.82) 0%,
    rgba(20,50,18,.75) 50%,
    rgba(10,28,10,.88) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 120px 24px 60px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(200,168,75,.18);
  border: 1px solid rgba(200,168,75,.35);
  color: var(--gold-300);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.hero-title {
  font-family: var(--ff-serif);
  font-size: clamp(3rem, 7.5vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-300);
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: rgba(255,255,255,.78);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-areas {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-areas span {
  font-size: 0.73rem;
  color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.04em;
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
  margin: 0 auto;
}
.scroll-dot {
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,.6);
  border-radius: 2px;
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot { 0%,100%{transform:translateY(0);opacity:.6} 50%{transform:translateY(8px);opacity:.15} }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--green-900);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 44px;
}
.stat-num {
  font-family: var(--ff-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-400);
  line-height: 1;
}
.stat-label {
  font-size: 0.74rem;
  color: rgba(255,255,255,.5);
  margin-top: 5px;
  letter-spacing: 0.04em;
  text-align: center;
}
.stat-sep { width: 1px; height: 44px; background: rgba(255,255,255,.1); }

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--cream); }

/* Featured cards */
.services-featured {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-bottom: 64px;
}
.service-featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--sh-md);
}
.service-featured-reverse { direction: rtl; }
.service-featured-reverse > * { direction: ltr; }

.sfc-image {
  position: relative;
  overflow: hidden;
  min-height: 380px;
}
.sfc-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.service-featured-card:hover .sfc-image img { transform: scale(1.04); }
.sfc-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--gold-500);
  color: var(--ink-900);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
}
.sfc-body {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}
.sfc-body h3 {
  font-family: var(--ff-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--ink-900);
}
.sfc-body p { color: var(--ink-400); line-height: 1.75; }
.sfc-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sfc-list li {
  font-size: 0.88rem;
  color: var(--ink-700);
  padding-left: 20px;
  position: relative;
}
.sfc-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-500);
  font-weight: 700;
  font-size: 0.8rem;
}

/* Service cards grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  padding: 32px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--t);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-500), var(--green-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.service-card:hover { border-color: var(--green-400); box-shadow: var(--sh-lg); transform: translateY(-6px); }

.service-card-img {
  margin: -32px -28px 16px;
  height: 180px;
  overflow: hidden;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card:hover::after { transform: scaleX(1); }

.service-icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--green-100);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--t);
}
.service-icon-wrap svg { width: 26px; height: 26px; color: var(--green-500); stroke: var(--green-500); }
.service-card:hover .service-icon-wrap { background: var(--green-500); }
.service-card:hover .service-icon-wrap svg { color: var(--white); stroke: var(--white); }

.service-card-body { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.service-card-body h3 { font-family: var(--ff-serif); font-size: 1.15rem; font-weight: 600; color: var(--ink-900); }
.service-card-body p { font-size: 0.87rem; color: var(--ink-400); line-height: 1.65; }
.service-card-body ul { display: flex; flex-direction: column; gap: 5px; margin-top: 6px; }
.service-card-body li { font-size: 0.8rem; color: var(--ink-700); padding-left: 16px; position: relative; }
.service-card-body li::before { content: '·'; position: absolute; left: 4px; color: var(--green-500); font-size: 1.1rem; line-height: 1.2; }

.service-cta {
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--green-500);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: var(--t);
  margin-top: 4px;
}
.service-cta span { transition: transform var(--t); }
.service-cta:hover { color: var(--green-800); }
.service-cta:hover span { transform: translateX(4px); }

/* ============================================================
   PROCESS
   ============================================================ */
.process { background: var(--white); }
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
}
.step-num {
  font-family: var(--ff-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--green-100);
  line-height: 1;
  margin-bottom: -16px;
  position: relative;
  z-index: 1;
}
.step-icon {
  width: 68px;
  height: 68px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: var(--sh-sm);
  margin-bottom: 20px;
  transition: var(--t);
}
.step-icon svg { width: 30px; height: 30px; color: var(--green-500); stroke: var(--green-500); }
.process-step:hover .step-icon { background: var(--green-500); border-color: var(--green-500); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(61,122,53,.3); }
.process-step:hover .step-icon svg { color: var(--white); stroke: var(--white); }
.process-step h3 { font-family: var(--ff-serif); font-size: 1.15rem; font-weight: 600; margin-bottom: 10px; }
.process-step p { font-size: 0.88rem; color: var(--ink-400); line-height: 1.65; }
.process-connector {
  flex-shrink: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--green-400), var(--green-100));
  margin-top: 86px;
  border-radius: 2px;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.about-visual { position: relative; }
.about-photo-stack { position: relative; }
.about-photo-main {
  background: linear-gradient(145deg, var(--green-100), #cce4c8);
  border-radius: var(--r-xl);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--border);
}
.about-photo-main img {
  width: 55%;
  opacity: 0.75;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,.15));
}
.about-photo-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 52%;
  aspect-ratio: 4/3;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: var(--sh-lg);
}
.about-photo-accent img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute;
  top: 32px;
  left: -20px;
  background: var(--green-800);
  color: var(--white);
  border-radius: var(--r);
  padding: 18px 22px;
  box-shadow: var(--sh-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 3;
}
.badge-num { font-family: var(--ff-serif); font-size: 2.2rem; font-weight: 700; color: var(--gold-400); line-height: 1; }
.badge-label { font-size: 0.68rem; color: rgba(255,255,255,.7); margin-top: 4px; text-align: center; line-height: 1.4; text-transform: uppercase; letter-spacing: 0.06em; }

.about-content { display: flex; flex-direction: column; gap: 20px; padding-top: 40px; }
.about-content p { color: var(--ink-700); line-height: 1.78; font-size: 1rem; }

.about-values { display: flex; flex-direction: column; gap: 14px; }
.about-value {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: var(--white);
  border-radius: var(--r);
  border: 1px solid var(--border);
  transition: var(--t);
}
.about-value:hover { border-color: var(--green-400); box-shadow: var(--sh-sm); }
.value-icon { color: var(--green-500); font-size: 0.85rem; margin-top: 2px; flex-shrink: 0; }
.about-value strong { display: block; font-size: 0.92rem; color: var(--ink-900); font-weight: 600; }
.about-value span { font-size: 0.84rem; color: var(--ink-400); }

.owner-profile {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--green-100);
  border-radius: var(--r);
  padding: 20px 22px;
  border-left: 4px solid var(--green-500);
}
.owner-avatar {
  width: 52px;
  height: 52px;
  background: var(--green-500);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.owner-text { display: flex; flex-direction: column; }
.owner-text strong { font-family: var(--ff-serif); font-size: 1.05rem; color: var(--ink-900); }
.owner-text > span { font-size: 0.76rem; color: var(--green-500); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-top: 1px; }
.owner-creds { display: flex; flex-direction: column; gap: 2px; margin-top: 6px; }
.owner-creds span { font-size: 0.8rem; color: var(--ink-400); }

.service-areas { margin-top: 4px; }
.areas-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-400); margin-bottom: 10px; }
.areas-pills { display: flex; flex-wrap: wrap; gap: 7px; }
.areas-pills span {
  background: var(--white);
  color: var(--green-700);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid var(--ink-200);
}

/* ============================================================
   WHY US
   ============================================================ */
.why-us {
  position: relative;
  background: var(--green-800);
  overflow: hidden;
}
.why-us-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 85%, rgba(90,158,80,.2) 0%, transparent 50%),
    radial-gradient(circle at 85% 15%, rgba(200,168,75,.1) 0%, transparent 50%);
  pointer-events: none;
}
.why-us .section-eyebrow { color: var(--gold-400); }
.why-us .section-eyebrow::before { background: var(--gold-400); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  transition: var(--t);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.why-card:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.2);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,.25);
}
.why-icon {
  width: 52px;
  height: 52px;
  background: rgba(200,168,75,.18);
  border: 1px solid rgba(200,168,75,.3);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-icon svg { width: 26px; height: 26px; color: var(--gold-400); stroke: var(--gold-400); }
.why-card h3 { font-family: var(--ff-serif); font-size: 1.15rem; color: var(--white); font-weight: 600; }
.why-card p { font-size: 0.87rem; color: rgba(255,255,255,.65); line-height: 1.68; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--white); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.testimonial-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: var(--t);
}
.testimonial-card:hover { border-color: var(--green-400); box-shadow: var(--sh-md); transform: translateY(-5px); }
.testimonial-featured {
  background: var(--green-800);
  border-color: var(--green-600);
  transform: translateY(-14px);
}
.testimonial-featured:hover { transform: translateY(-18px); }
.t-quote {
  font-family: var(--ff-serif);
  font-size: 4rem;
  line-height: 0.6;
  color: var(--green-100);
  font-weight: 700;
}
.testimonial-featured .t-quote { color: rgba(255,255,255,.15); }
.stars { font-size: 0.95rem; color: var(--gold-500); letter-spacing: 2px; }
blockquote {
  font-family: var(--ff-serif);
  font-size: 0.97rem;
  font-style: italic;
  color: var(--ink-700);
  line-height: 1.75;
}
.testimonial-featured blockquote { color: rgba(255,255,255,.85); }
.t-author { display: flex; align-items: center; gap: 12px; margin-top: 6px; }
.t-avatar {
  width: 42px;
  height: 42px;
  background: var(--green-100);
  color: var(--green-600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-featured .t-avatar { background: rgba(255,255,255,.15); color: var(--white); }
.t-author strong { display: block; font-size: 0.88rem; font-weight: 600; color: var(--ink-900); }
.testimonial-featured .t-author strong { color: var(--white); }
.t-author span { font-size: 0.76rem; color: var(--ink-400); }
.testimonial-featured .t-author span { color: rgba(255,255,255,.55); }

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip {
  background: linear-gradient(135deg, var(--green-600) 0%, var(--green-800) 100%);
  padding: 72px 0;
}
.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-strip-text h2 {
  font-family: var(--ff-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 8px;
}
.cta-strip-text p { font-size: 1rem; color: rgba(255,255,255,.75); }
.cta-strip-actions { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 72px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info > p { color: var(--ink-400); line-height: 1.7; }

.contact-cards { display: flex; flex-direction: column; gap: 12px; }
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 16px 18px;
  transition: var(--t);
}
a.contact-card:hover { border-color: var(--green-400); box-shadow: var(--sh-sm); }
.cc-icon {
  width: 42px;
  height: 42px;
  background: var(--green-100);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-500);
  flex-shrink: 0;
}
.cc-label { display: block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-400); }
.cc-value { display: block; font-size: 0.98rem; font-weight: 600; color: var(--ink-900); margin-top: 2px; }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 44px 40px;
  box-shadow: var(--sh-md);
  border: 1px solid var(--border);
}
.form-title { font-family: var(--ff-serif); font-size: 1.4rem; color: var(--ink-900); margin-bottom: 28px; font-weight: 600; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: var(--ink-700); letter-spacing: 0.02em; }
.req { color: var(--green-500); }
.form-group input, .form-group select, .form-group textarea {
  font-family: var(--ff-sans);
  font-size: 0.93rem;
  color: var(--ink-900);
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 11px 15px;
  transition: var(--t);
  width: 100%;
  appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--green-500);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(61,122,53,.1);
}
.form-group textarea { resize: vertical; min-height: 96px; }
.form-note { font-size: 0.76rem; color: var(--ink-400); text-align: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink-900); padding: 72px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand { display: flex; flex-direction: column; gap: 18px; }
.footer-logo-wrap { display: flex; align-items: center; gap: 12px; }
.footer-logo { width: 48px; height: 48px; object-fit: contain; border-radius: 10px; }
.footer-name { display: block; font-family: var(--ff-serif); font-size: 0.98rem; color: var(--white); font-weight: 700; }
.footer-sub { display: block; font-size: 0.76rem; color: rgba(255,255,255,.5); }
.footer-brand p { font-size: 0.87rem; color: rgba(255,255,255,.45); line-height: 1.7; max-width: 260px; }
.social-row { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.07);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  transition: var(--t);
}
.social-btn:hover { background: var(--green-500); color: var(--white); }

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: 0.87rem; color: rgba(255,255,255,.55); transition: var(--t); }
.footer-col a:hover { color: var(--white); padding-left: 4px; }
.fc-item { font-size: 0.87rem; color: rgba(255,255,255,.55); margin-bottom: 6px; }
.fc-item a { transition: var(--t); }
.fc-item a:hover { color: var(--white); }
.fc-areas { display: flex; flex-wrap: wrap; gap: 6px; margin: 10px 0; }
.fc-areas span { font-size: 0.72rem; background: rgba(255,255,255,.06); color: rgba(255,255,255,.4); padding: 3px 9px; border-radius: 50px; border: 1px solid rgba(255,255,255,.08); }
.btn-footer-cta {
  display: inline-block;
  margin-top: 6px;
  padding: 9px 20px;
  background: var(--green-500);
  color: var(--white);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: var(--t);
}
.btn-footer-cta:hover { background: var(--green-400); transform: translateY(-2px); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 0.76rem; color: rgba(255,255,255,.25); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; flex-direction: row; gap: 40px; }
  .footer-brand > p, .social-row { align-self: center; }
}

@media (max-width: 900px) {
  .service-featured-card { grid-template-columns: 1fr; }
  .service-featured-reverse { direction: ltr; }
  .sfc-image { min-height: 260px; }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-visual { max-width: 480px; margin: 0 auto; }
  .process-steps { flex-direction: column; align-items: center; }
  .process-connector { width: 2px; height: 40px; background: linear-gradient(180deg, var(--green-400), var(--green-100)); margin: 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-wrap { padding: 32px 24px; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  .nav-links {
    display: none;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(10,28,10,.98);
    backdrop-filter: blur(14px);
    flex-direction: column;
    padding: 16px;
    gap: 6px;
    border-radius: 0;
    border: none;
    border-top: 1px solid rgba(255,255,255,.1);
  }
  .nav-links.open { display: flex; }
  .nav-tab { flex-direction: row; justify-content: flex-start; border-radius: 10px; padding: 12px 16px; font-size: 0.88rem; }
  .tab-icon { width: 16px; height: 16px; }
  .nav-tab-cta { margin-left: 0 !important; }
  .nav-toggle { display: flex; }

  .stats-grid { flex-wrap: wrap; }
  .stat { padding: 20px 28px; }
  .stat-sep { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-featured { transform: none; }

  .cta-strip-inner { flex-direction: column; text-align: center; }
  .cta-strip-actions { justify-content: center; }

  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { flex-direction: column; grid-column: auto; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .about-photo-accent { width: 48%; right: -12px; bottom: -18px; }
  .about-badge { left: -10px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.6rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-badge { font-size: 0.66rem; }
  .sfc-body { padding: 28px 24px; }
  .sfc-body h3 { font-size: 1.4rem; }
}
