/* ============ ERIC & ERIC LAWN SERVICES ============ */
:root {
  --bg: #F7F3EC;
  --bg-alt: #EFE9DD;
  --ink: #1A1410;
  --ink-2: #3A2317;
  --ink-soft: #5A4A3F;
  --espresso: #2B1810;
  --brown: #3A2317;
  --lime: #8BC53F;
  --lime-2: #A8D860;
  --green: #3E8914;
  --green-dark: #2D6810;
  --cream: #FBF8F1;
  --line: rgba(58, 35, 23, 0.12);
  --line-soft: rgba(58, 35, 23, 0.08);
  --shadow-sm: 0 2px 8px rgba(58, 35, 23, 0.06);
  --shadow-md: 0 12px 32px rgba(58, 35, 23, 0.10);
  --shadow-lg: 0 24px 60px rgba(58, 35, 23, 0.16);
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 28px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

h1, h2, h3, h4, .brand-1 {
  font-family: 'Archivo Black', 'Inter', sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--espresso);
}
h1 { font-size: clamp(44px, 6vw, 84px); }
h2 { font-size: clamp(34px, 4.2vw, 60px); }
h3 { font-size: 22px; }
h4 { font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; }
em { font-style: italic; font-family: 'Fraunces', 'Georgia', serif; font-weight: 800; color: var(--green); letter-spacing: -0.015em;}
.hl { color: var(--green); }
.hl-lime { color: var(--lime); }

p { color: var(--ink-soft); }
a { color: inherit; text-decoration: none; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 22px; border-radius: 999px; font-weight: 700; font-size: 15px;
  border: 2px solid transparent; cursor: pointer; transition: all .2s ease;
  font-family: 'Inter', sans-serif; letter-spacing: 0.01em; white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-lg { padding: 18px 30px; font-size: 16px; }
.btn-full { width: 100%; }
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 12px 24px rgba(62,137,20,0.35); }
.btn-ghost { background: transparent; color: var(--espresso); border-color: var(--espresso); }
.btn-ghost:hover { background: var(--espresso); color: #fff; }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.btn-outline:hover { background: #fff; color: var(--espresso); border-color: #fff; }

/* ========== EYEBROW ========== */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--green); padding: 8px 14px; border: 1px solid var(--line);
  border-radius: 999px; background: rgba(139,197,63,0.08); margin-bottom: 24px;
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.eyebrow.light { color: var(--lime); border-color: rgba(255,255,255,0.18); background: rgba(139,197,63,0.12); }
.eyebrow.light .dot { background: var(--lime); }

/* ========== TOP STRIP ========== */
.top-strip {
  background: var(--espresso); color: #D9CFBE;
  font-size: 13px; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.top-strip-inner {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 32px; gap: 20px; flex-wrap: wrap;
}
.top-strip svg { width: 14px; height: 14px; color: var(--lime); vertical-align: -3px; margin-right: 6px; }
.top-strip-right { display: flex; gap: 24px; }
.top-strip a:hover { color: #fff; }

/* ========== NAV ========== */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247, 243, 236, 0.92);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: all .2s ease;
}
.nav-scrolled { border-bottom-color: var(--line); background: rgba(247, 243, 236, 0.96); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 32px; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 52px; height: 52px; border-radius: 50%; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-1 { font-size: 18px; color: var(--espresso); }
.brand-2 { font-size: 11px; font-weight: 700; color: var(--green); letter-spacing: 0.1em; margin-top: 4px; font-family: 'Inter'; }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  font-size: 14px; font-weight: 600; color: var(--ink); position: relative; padding: 6px 0;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--green); transition: width .2s;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; gap: 12px; align-items: center; }
.nav-phone {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14px;
  color: var(--espresso); padding: 10px 14px;
}
.nav-phone svg { width: 16px; height: 16px; color: var(--green); }
.nav-menu-btn { display: none; background: none; border: none; cursor: pointer; color: var(--espresso); padding: 8px; }
.nav-menu-btn svg { width: 28px; height: 28px; }

.mobile-menu {
  position: fixed; inset: 0; z-index: 200; background: var(--bg);
  display: flex; flex-direction: column;
  animation: slideIn .25s ease;
}
@keyframes slideIn { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: translateY(0); } }
.mobile-menu-head { display: flex; justify-content: space-between; align-items: center; padding: 18px 24px; border-bottom: 1px solid var(--line); }
.mobile-menu-head button { background: none; border: none; cursor: pointer; }
.mobile-menu-head svg { width: 24px; height: 24px; }
.mobile-menu ul { list-style: none; padding: 12px 0; }
.mobile-menu ul a { display: block; padding: 16px 24px; font-size: 20px; font-weight: 700; border-bottom: 1px solid var(--line-soft); }

/* ========== HERO ========== */
.hero { position: relative; overflow: hidden; padding: 60px 0 0; }
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-stripes {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(135deg, transparent 0 48px, rgba(62,137,20,0.04) 48px 49px);
}
.hero-grass {
  position: absolute; bottom: 0; left: 0; right: 0; height: 120px;
  background:
    radial-gradient(ellipse 60% 100% at 20% 100%, rgba(139,197,63,0.18), transparent 60%),
    radial-gradient(ellipse 60% 100% at 80% 100%, rgba(62,137,20,0.12), transparent 60%);
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center;
  padding: 40px 32px 80px;
}
.hero-copy h1 { margin-bottom: 24px; }
.hero-sub { font-size: 19px; max-width: 560px; margin-bottom: 36px; color: var(--ink-soft); }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; padding-top: 28px; border-top: 1px solid var(--line); }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--ink-soft); }
.trust-item b { color: var(--espresso); }
.trust-item svg { width: 18px; height: 18px; color: var(--green); }
.trust-divider { width: 1px; height: 24px; background: var(--line); }
.stars { display: flex; gap: 2px; color: #E8A828; }
.stars svg { width: 16px; height: 16px; }

.hero-visual {
  position: relative; height: 520px;
}
.hero-card {
  position: absolute; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 8px solid #fff;
}
.hero-card-1 { top: 0; right: 0; width: 72%; height: 58%; transform: rotate(2deg); }
.hero-card-2 { bottom: 40px; left: 0; width: 58%; height: 46%; transform: rotate(-3deg); }
.hero-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.img-badge {
  position: absolute; top: 16px; left: 16px; z-index: 3;
  font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 700;
  color: #fff; background: rgba(26,20,16,0.82); padding: 7px 12px; border-radius: 6px;
  letter-spacing: 0.12em; white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.hero-badge {
  position: absolute; top: 48%; right: -16px; z-index: 3;
  width: 130px; height: 130px; border-radius: 50%;
  background: var(--espresso); color: var(--lime);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--lime);
  animation: spin 18s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.hero-badge-inner { text-align: center; animation: spin 18s linear infinite reverse; }
.hero-badge-num { font-family: 'Archivo Black'; font-size: 32px; line-height: 1; color: var(--lime); }
.hero-badge-label { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; margin-top: 6px; color: #D9CFBE; }

/* ========== PLACEHOLDERS (stand-in for real photography) ========== */
.placeholder {
  width: 100%; height: 100%; position: relative;
  display: flex; align-items: flex-start; justify-content: flex-start; padding: 20px;
  background:
    repeating-linear-gradient(45deg, rgba(0,0,0,0.04) 0 2px, transparent 2px 8px),
    linear-gradient(135deg, var(--lime-2), var(--green) 60%, var(--green-dark));
}
.placeholder-irrigation {
  background:
    repeating-linear-gradient(90deg, rgba(0,0,0,0.05) 0 2px, transparent 2px 10px),
    linear-gradient(160deg, #7FA8E8, #3E8914 70%);
}
.placeholder-why {
  background:
    repeating-linear-gradient(45deg, rgba(0,0,0,0.05) 0 2px, transparent 2px 8px),
    linear-gradient(180deg, #A8D860, #3E8914 80%);
  border-radius: var(--radius-lg); min-height: 440px; box-shadow: var(--shadow-lg);
  align-items: flex-end;
}
.placeholder-why .placeholder-label { align-self: flex-start; }
.placeholder-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; font-weight: 700; color: #fff;
  background: rgba(26,20,16,0.78); padding: 8px 14px; border-radius: 6px;
  letter-spacing: 0.12em; white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  position: relative; z-index: 3;
}

/* ========== MARQUEE ========== */
.hero-marquee {
  background: var(--espresso); color: var(--lime); overflow: hidden;
  padding: 18px 0; border-top: 4px solid var(--lime);
  position: relative; z-index: 2;
}
.marquee-track {
  display: flex; gap: 48px; white-space: nowrap;
  font-family: 'Archivo Black'; font-size: 20px; letter-spacing: 0.08em;
  animation: marquee 40s linear infinite;
}
.marquee-track span { flex-shrink: 0; }
.marquee-track .m-dot { color: var(--green); margin-left: 40px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ========== STATS ========== */
.stats { background: var(--espresso); color: #fff; padding: 0; }
.stats-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding: 60px 32px; gap: 32px;
}
.stat { text-align: center; border-right: 1px solid rgba(255,255,255,0.1); padding-right: 32px; }
.stat:last-child { border-right: 0; }
.stat-n {
  font-family: 'Archivo Black'; font-size: clamp(44px, 5vw, 64px);
  color: var(--lime); line-height: 1; margin-bottom: 8px;
}
.stat-l { font-size: 13px; color: #D9CFBE; letter-spacing: 0.05em; }

/* ========== SECTIONS ========== */
.section { padding: 120px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 72px; }
.section-head h2 { margin-bottom: 20px; }
.section-sub { font-size: 18px; color: var(--ink-soft); }

/* ========== SERVICES ========== */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 36px 32px;
  transition: all .3s ease; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--green); transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--green); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(139,197,63,0.12); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.service-icon svg { width: 28px; height: 28px; }
.service-tag {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--green);
  background: rgba(139,197,63,0.1); padding: 4px 10px; border-radius: 999px;
  margin-bottom: 12px;
}
.service-card h3 { margin-bottom: 12px; }
.service-card p { font-size: 15px; margin-bottom: 18px; }
.service-features { list-style: none; padding: 18px 0; border-top: 1px dashed var(--line); }
.service-features li {
  display: flex; gap: 10px; font-size: 13px; color: var(--ink);
  margin-bottom: 10px; align-items: flex-start;
}
.service-features svg { width: 16px; height: 16px; color: var(--green); flex-shrink: 0; margin-top: 2px; }
.service-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 14px; color: var(--espresso);
  padding-top: 6px;
}
.service-link svg { width: 16px; height: 16px; transition: transform .2s; }
.service-link:hover { color: var(--green); }
.service-link:hover svg { transform: translateX(4px); }

/* ========== SPLIT ========== */
.split { background: var(--bg-alt); }
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.split-card {
  padding: 56px 48px; border-radius: var(--radius-lg);
  display: flex; flex-direction: column;
}
.tone-cream { background: var(--cream); border: 1px solid var(--line); }
.tone-dark { background: var(--espresso); color: #D9CFBE; }
.tone-dark h3, .tone-dark .split-kicker { color: #fff; }
.tone-dark p { color: #BFB5A5; }
.tone-dark li { color: #D9CFBE; }
.tone-dark .split-icon { background: rgba(139,197,63,0.2); color: var(--lime); }
.split-icon {
  width: 64px; height: 64px; border-radius: 16px;
  background: rgba(139,197,63,0.15); color: var(--green);
  display: flex; align-items: center; justify-content: center; margin-bottom: 28px;
}
.split-icon svg { width: 32px; height: 32px; }
.split-kicker {
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--green); margin-bottom: 12px;
}
.split-card h3 { font-size: 32px; margin-bottom: 16px; }
.tone-dark h3 { color: #fff; }
.split-card > p { font-size: 16px; margin-bottom: 24px; }
.split-card ul { list-style: none; margin-bottom: 32px; flex-grow: 1; }
.split-card li { display: flex; gap: 10px; margin-bottom: 12px; font-size: 15px; }
.split-card li svg { width: 18px; height: 18px; color: var(--green); flex-shrink: 0; margin-top: 3px; }
.split-card .btn { align-self: flex-start; }

/* ========== AREAS ========== */
.areas-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: start; }
.map-wrap {
  background: var(--cream); border-radius: var(--radius-lg); padding: 32px;
  border: 1px solid var(--line); position: relative;
}
.map-label {
  font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; color: var(--ink-soft); margin-bottom: 12px;
  display: flex; align-items: center; gap: 6px;
}
.map-label svg { width: 14px; height: 14px; color: var(--green); }
.tx-map { width: 100%; height: auto; display: block; }
.tx-map-photo { position: relative; width: 100%; border-radius: var(--radius); overflow: hidden; }
.tx-map-photo img { width: 100%; height: auto; display: block; }
.tx-map-overlay { position: absolute; inset: 0; pointer-events: none; }
.map-pin { position: absolute; transform: translate(-50%, -50%); pointer-events: auto; }
.map-pin-dot {
  display: block; width: 14px; height: 14px; border-radius: 50%;
  background: var(--green); border: 3px solid #fff;
  box-shadow: 0 0 0 4px rgba(62,137,20,0.25), 0 2px 6px rgba(0,0,0,0.3);
  animation: mapPulse 2.4s ease-in-out infinite;
}
@keyframes mapPulse { 0%,100% { box-shadow: 0 0 0 4px rgba(62,137,20,0.25), 0 2px 6px rgba(0,0,0,0.3); } 50% { box-shadow: 0 0 0 10px rgba(62,137,20,0.08), 0 2px 6px rgba(0,0,0,0.3); } }
.map-pin-label {
  position: absolute; top: -28px; left: 50%; transform: translateX(-50%);
  font-size: 11px; font-weight: 700; color: #fff;
  background: var(--espresso); padding: 4px 8px; border-radius: 4px;
  white-space: nowrap; letter-spacing: 0.04em;
  opacity: 0; transition: opacity .2s;
}
.map-pin:hover .map-pin-label { opacity: 1; }
.map-pin:hover .map-pin-dot { background: var(--lime); }
.tx-shape { fill: rgba(62,137,20,0.08); stroke: var(--green); stroke-width: 2; }
.pin { cursor: pointer; transition: all .3s ease; }
.pin-dot { fill: var(--green); transition: all .2s; }
.pin-pulse { fill: var(--green); opacity: 0.15; animation: pulse 2.4s ease-in-out infinite; transform-origin: center; transform-box: fill-box;}
@keyframes pulse { 0%, 100% { opacity: 0.12; r: 14; } 50% { opacity: 0.28; r: 20; } }
.pin-label {
  font-family: 'Inter'; font-size: 11px; font-weight: 700; fill: var(--espresso);
  opacity: 0; transition: opacity .2s;
}
.pin-hover .pin-dot { fill: var(--lime); r: 8; }
.pin-hover .pin-label { opacity: 1; }

.cities { }
.cities-head {
  display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 24px;
  padding-bottom: 16px; border-bottom: 1px solid var(--line);
}
.cities-head h3 { font-size: 24px; }
.cities-count { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--green); font-weight: 700; }
.cities ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 20px; }
.cities li { display: flex; gap: 12px; align-items: flex-start; padding: 8px 0; }
.city-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); margin-top: 8px; flex-shrink: 0; }
.city-name { font-weight: 700; font-size: 15px; color: var(--espresso); }
.city-sub { font-size: 12px; color: var(--ink-soft); }
.cities-foot {
  margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--line);
  font-size: 14px; color: var(--ink-soft);
}
.cities-foot a { color: var(--green); font-weight: 700; }

/* ========== PROCESS ========== */
.process { background: var(--bg-alt); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.process-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 36px 28px; position: relative;
}
.process-n {
  font-family: 'Archivo Black'; font-size: 48px; color: var(--green);
  line-height: 1; margin-bottom: 16px; opacity: 0.9;
}
.process-card h3 { font-size: 20px; margin-bottom: 10px; }
.process-card p { font-size: 14px; }
.process-arrow {
  position: absolute; right: -16px; top: 50%; transform: translateY(-50%);
  width: 32px; height: 32px; background: var(--green); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  z-index: 2; box-shadow: var(--shadow-sm);
}
.process-arrow svg { width: 14px; height: 14px; }

/* ========== WHY ========== */
.why {
  background: var(--espresso); color: #D9CFBE;
  position: relative; overflow: hidden;
}
.why::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(135deg, transparent 0 60px, rgba(139,197,63,0.03) 60px 61px);
}
.why-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center;
  position: relative;
}
.light { color: #fff; }
.light em { color: var(--lime); }
.light-sub { font-size: 18px; color: #BFB5A5; margin-bottom: 36px; }
.why-points { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.why-point { display: flex; gap: 14px; }
.why-check {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(139,197,63,0.15); color: var(--lime);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.why-check svg { width: 16px; height: 16px; }
.why-point h4 { color: #fff; margin-bottom: 6px; text-transform: none; letter-spacing: 0; font-size: 16px; font-family: 'Archivo Black'; }
.why-point p { color: #A8998A; font-size: 14px; }

.why-visual { position: relative; }
.why-photo { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); min-height: 440px; }
.why-photo img { width: 100%; height: 100%; min-height: 440px; object-fit: cover; display: block; }
.why-card-float {
  position: absolute; bottom: -30px; left: -30px;
  background: #fff; color: var(--ink);
  padding: 24px 28px; border-radius: var(--radius); max-width: 300px;
  box-shadow: var(--shadow-lg);
}
.why-card-float .stars { margin-bottom: 10px; }
.why-card-float p { font-size: 14px; color: var(--espresso); font-weight: 500; line-height: 1.45; margin-bottom: 10px; }
.why-card-sig { font-size: 12px; color: var(--ink-soft); font-weight: 700; }

/* ========== TESTIMONIALS ========== */
.testimonials { background: var(--cream); }
.t-wrap {
  max-width: 820px; margin: 0 auto; position: relative;
  padding: 48px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); min-height: 280px;
}
.t-quote-mark {
  position: absolute; top: -20px; left: 40px; font-family: 'Archivo Black';
  font-size: 120px; line-height: 1; color: var(--lime); opacity: 0.6;
}
.t-card { display: none; position: relative; z-index: 2; }
.t-card.t-active { display: block; animation: fadeIn .4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.t-card .stars { margin-bottom: 20px; }
.t-card .stars svg { width: 20px; height: 20px; }
.t-card p {
  font-family: 'Fraunces', Georgia, serif; font-size: 26px; line-height: 1.4;
  color: var(--espresso); margin-bottom: 28px; font-weight: 500;
}
.t-name { font-family: 'Archivo Black'; font-size: 16px; color: var(--espresso); }
.t-city { font-size: 13px; color: var(--green); font-weight: 700; letter-spacing: 0.05em; }
.t-dots { display: flex; gap: 8px; justify-content: center; margin-top: 32px; }
.t-dot {
  width: 32px; height: 4px; border-radius: 2px; border: none;
  background: var(--line); cursor: pointer; transition: all .2s;
}
.t-dot.active { background: var(--green); width: 48px; }

/* ========== FAQ ========== */
.faq-container { max-width: 900px; }
.faq-list { }
.faq-item {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: #fff; margin-bottom: 12px; overflow: hidden;
  transition: border-color .2s;
}
.faq-item.open { border-color: var(--green); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 24px 28px; background: none; border: none; cursor: pointer;
  text-align: left; font-family: 'Archivo Black'; font-size: 18px;
  color: var(--espresso); gap: 20px;
}
.faq-icon {
  width: 36px; height: 36px; border-radius: 50%; background: var(--bg-alt);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: all .3s;
}
.faq-icon svg { width: 16px; height: 16px; transition: transform .3s; }
.faq-item.open .faq-icon { background: var(--green); color: #fff; }
.faq-item.open .faq-icon svg { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height .3s ease;
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { padding: 0 28px 24px; font-size: 15px; line-height: 1.65; }

/* ========== QUOTE FORM ========== */
.quote {
  background: linear-gradient(165deg, var(--espresso) 0%, #1A0F0A 100%);
  color: #fff; position: relative; overflow: hidden;
}
.quote::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(139,197,63,0.12), transparent 70%);
}
.quote-grid {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px;
  position: relative; z-index: 2;
}
.quote-side .light-sub { color: #BFB5A5; }
.quote-contact { margin-top: 40px; display: flex; flex-direction: column; gap: 16px; }
.quote-contact-row {
  display: flex; gap: 14px; align-items: center;
  padding: 16px 18px; border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); background: rgba(255,255,255,0.04);
  transition: all .2s;
}
a.quote-contact-row:hover { border-color: var(--lime); background: rgba(139,197,63,0.08); }
.qc-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(139,197,63,0.15); color: var(--lime);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.qc-icon svg { width: 18px; height: 18px; }
.qc-label { font-size: 11px; color: #A8998A; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 2px; }
.qc-val { font-weight: 700; color: #fff; font-size: 15px; }

.quote-form {
  background: #fff; color: var(--ink); padding: 40px;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.field { display: flex; flex-direction: column; margin-bottom: 16px; position: relative; }
.field.flex-2 { grid-column: span 2; }
.form-row .field { margin-bottom: 0; }
.form-row .flex-2 { grid-column: 1 / 2; }
.field label {
  font-size: 13px; font-weight: 700; color: var(--espresso);
  margin-bottom: 8px; letter-spacing: 0.02em;
}
.label-sub { font-weight: 400; color: var(--ink-soft); font-size: 12px; }
.field input, .field textarea {
  padding: 14px 16px; border: 1.5px solid var(--line);
  border-radius: 10px; font-size: 15px; font-family: inherit;
  background: var(--cream); color: var(--ink);
  transition: all .2s;
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--green); background: #fff;
  box-shadow: 0 0 0 4px rgba(62,137,20,0.08);
}
.field.err input, .field.err textarea { border-color: #D4480F; }
.err-msg {
  font-size: 12px; color: #D4480F; margin-top: 6px; font-weight: 600;
}
.chip-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 14px; border-radius: 999px; border: 1.5px solid var(--line);
  background: var(--cream); color: var(--ink); font-size: 13px; font-weight: 600;
  cursor: pointer; transition: all .15s; font-family: inherit;
}
.chip svg { width: 14px; height: 14px; color: var(--green); }
.chip:hover { border-color: var(--green); }
.chip-on { background: var(--green); color: #fff; border-color: var(--green); }
.chip-on svg { color: #fff; }

.form-fine { font-size: 12px; color: var(--ink-soft); margin-top: 14px; text-align: center; }

.quote-success {
  max-width: 640px; margin: 0 auto; text-align: center; color: #fff;
  padding: 40px; position: relative; z-index: 2;
}
.success-check {
  width: 80px; height: 80px; margin: 0 auto 28px; border-radius: 50%;
  background: var(--green); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 12px rgba(62,137,20,0.15);
}
.success-check svg { width: 40px; height: 40px; }
.quote-success h2 { color: #fff; margin-bottom: 16px; }
.quote-success p { color: #BFB5A5; font-size: 17px; margin-bottom: 28px; }
.quote-success a { color: var(--lime); font-weight: 700; }
.quote-success .btn-outline { color: #fff; }

/* ========== FINAL CTA ========== */
.final-cta {
  background: var(--lime); color: var(--espresso);
  padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.final-cta::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent 0 20px, rgba(43,24,16,0.04) 20px 21px);
}
.final-cta-inner { position: relative; z-index: 2; }
.final-cta h2 { font-size: clamp(32px, 4vw, 56px); margin-bottom: 16px; }
.final-cta em { color: var(--espresso); text-decoration: underline; text-decoration-thickness: 4px; text-underline-offset: 8px; text-decoration-color: var(--green); }
.final-cta p { font-size: 18px; color: var(--brown); margin-bottom: 32px; font-weight: 500; }
.final-cta .hero-cta { justify-content: center; }
.final-cta .btn-outline { color: var(--espresso); border-color: var(--espresso); }
.final-cta .btn-outline:hover { background: var(--espresso); color: var(--lime); }

/* ========== FOOTER ========== */
.footer { background: #140C08; color: #A8998A; padding: 80px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 60px;
}
.footer-brand { display: flex; gap: 16px; align-items: flex-start; }
.footer-brand img { width: 64px; height: 64px; border-radius: 50%; }
.footer-tag { font-family: 'Fraunces', serif; font-style: italic; font-size: 14px; color: #8A7E70; margin-top: 12px; max-width: 260px; }
.footer h4 { color: #fff; margin-bottom: 20px; font-family: 'Archivo Black'; font-size: 13px; letter-spacing: 0.1em; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer ul a, .footer ul li { font-size: 14px; color: #A8998A; transition: color .15s; }
.footer ul a:hover { color: var(--lime); }
.footer-bar { border-top: 1px solid rgba(255,255,255,0.06); padding: 24px 0; }
.footer-bar-inner { display: flex; justify-content: space-between; font-size: 12px; color: #6A5F53; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .nav-links, .nav-phone { display: none; }
  .nav-menu-btn { display: block; }
  .hero-inner, .why-grid, .quote-grid, .areas-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
  .split-grid { grid-template-columns: 1fr; }
  .hero-visual { height: 420px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; padding: 0; }
  .why-points { grid-template-columns: 1fr; }
  .process-arrow { display: none; }
}
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .section { padding: 80px 0; }
  .top-strip-right { display: none; }
  .services-grid, .process-grid, .cities ul, .form-row { grid-template-columns: 1fr; }
  .form-row .flex-2 { grid-column: 1; }
  .hero { padding-top: 24px; }
  .hero-inner { padding: 24px 20px 60px; }
  .hero-visual { height: 380px; }
  .hero-card-1 { width: 84%; height: 52%; }
  .hero-card-2 { width: 68%; height: 42%; }
  .hero-badge { width: 100px; height: 100px; right: -8px; }
  .hero-badge-num { font-size: 26px; }
  .split-card { padding: 36px 28px; }
  .t-wrap { padding: 36px 24px; }
  .t-card p { font-size: 20px; }
  .quote-form { padding: 28px 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .footer-bar-inner { flex-direction: column; gap: 8px; text-align: center; }
  .why-card-float { position: static; max-width: 100%; margin-top: -30px; margin-left: 0; }
}
