:root {
  --green: #17A345;
  --green-dark: #108137;
  --green-soft: #eaf7ee;
  --black: #0d0f10;
  --text: #11161a;
  --muted: #64717a;
  --line: rgba(17, 22, 26, 0.08);
  --white: #ffffff;
  --bg: #f6f8f7;
  --shadow: 0 18px 45px rgba(16, 30, 22, 0.10);
  --radius: 22px;
  --shell: 1240px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(23,163,69,0.10), transparent 28%),
    radial-gradient(circle at top right, rgba(139,220,165,0.12), transparent 22%),
    linear-gradient(180deg, #f8fbf8 0%, #eef5f0 100%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
.skip-link { position: absolute; left: -9999px; top: 0; }
.skip-link:focus {
  left: 16px; top: 16px; z-index: 9999;
  background: #fff; padding: 10px 14px; border-radius: 10px;
}
.shell { width: min(calc(100% - 32px), var(--shell)); margin: 0 auto; }
.card {
  background: rgba(255,255,255,0.94);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 54px; padding: 0 22px; border-radius: 14px;
  font-weight: 800; border: 0; cursor: pointer;
  transition: .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-dark); }
.btn-secondary {
  background: rgba(255,255,255,0.92); color: var(--text); border: 1px solid rgba(255,255,255,0.9);
}
.btn-secondary:hover { background: #fff; }
.btn-dark { background: var(--black); color: #fff; }
.dark-outline { border: 1px solid #d9e2dc; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  min-height: 34px; padding: 0 12px; border-radius: 999px;
  background: rgba(255,255,255,0.82); color: #1e2c24;
  font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
}
.eyebrow.green { background: var(--green-soft); color: var(--green-dark); }
h1, h2, h3 { margin: 0; letter-spacing: -0.03em; }
h1 { font-size: clamp(44px, 6vw, 78px); line-height: 0.96; }
h2 { font-size: clamp(32px, 4.5vw, 54px); line-height: 1; }
p { color: var(--muted); }

.site-header {
  position: sticky; top: 0; z-index: 1000;
  backdrop-filter: blur(16px);
  background: rgba(255,255,255,0.84);
  border-bottom: 1px solid rgba(17,22,26,0.06);
}
.nav-wrap {
  min-height: 86px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px;
}
.brand img { width: 250px; height: auto; }
.site-nav { display: flex; justify-content: center; gap: 28px; font-weight: 700; }
.site-nav a { color: #2c3a33; }
.site-nav a:hover { color: var(--green); }
.nav-actions { display: flex; gap: 12px; align-items: center; }
.nav-phone { font-weight: 800; color: #203128; }
.nav-quote {
  padding: 12px 18px; border-radius: 999px; background: var(--green); color: #fff; font-weight: 800;
}
.menu-toggle {
  display: none; width: 48px; height: 48px; border: 1px solid var(--line); border-radius: 12px; background: #fff;
}
.menu-toggle span { display: block; width: 20px; height: 2px; background: #213329; margin: 4px auto; }

.hero {
  position: relative; min-height: 860px; overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(16,23,20,0.75) 0%, rgba(16,23,20,0.52) 38%, rgba(16,23,20,0.18) 100%);
}
.hero-grid {
  position: relative; z-index: 1; min-height: 860px;
  display: grid; grid-template-columns: 1.15fr 410px; gap: 28px; align-items: center;
}
.hero-copy { max-width: 720px; color: #fff; padding: 90px 0 70px; }
.hero-copy h1 span { color: #a2ec76; }
.hero-copy p {
  color: rgba(255,255,255,0.92); font-size: clamp(18px, 2vw, 23px); max-width: 620px; margin: 18px 0 0;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero-points {
  list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 12px;
}
.hero-points li {
  color: rgba(255,255,255,0.96); font-weight: 600; position: relative; padding-left: 24px;
}
.hero-points li::before {
  content: ""; width: 10px; height: 10px; border-radius: 50%; background: #a2ec76;
  position: absolute; left: 0; top: 8px;
}
.quote-panel { padding: 28px; backdrop-filter: blur(14px); }
.glass-card { background: rgba(255,255,255,0.86); }
.quote-title { font-size: 28px; font-weight: 900; letter-spacing: -0.03em; }
.quote-form { display: grid; gap: 12px; margin-top: 16px; }
.quote-form input, .quote-form select, .quote-form textarea {
  width: 100%; min-height: 54px; padding: 0 14px; border-radius: 12px; border: 1px solid rgba(17,22,26,0.12); background: rgba(255,255,255,0.94);
}
.quote-form textarea { min-height: 110px; padding-top: 14px; resize: vertical; }
.estimate-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 4px; }
.estimate-box {
  display: none; padding: 14px 16px; border-radius: 14px; background: var(--green-soft); color: var(--green-dark); font-weight: 800;
}
.estimate-box.show { display: block; }

.trust-bar {
  margin-top: -38px; position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4,1fr); gap: 14px;
}
.trust-item {
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); border-radius: 18px; padding: 18px 20px;
}
.trust-item strong { display: block; font-size: 20px; margin-bottom: 2px; }
.trust-item span { color: var(--muted); }

.section { padding: 90px 0; }
.section-soft { background: linear-gradient(180deg, #edf6ef 0%, #f7fbf8 100%); }
.section-head {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 24px; align-items: end; margin-bottom: 30px;
}
.section-head.compact { grid-template-columns: 1fr; }
.section-head p { margin: 0; font-size: 18px; }

.work-grid {
  display: grid; grid-template-columns: 1.25fr .85fr .85fr; grid-auto-rows: 230px; gap: 16px;
}
.project-card {
  position: relative; overflow: hidden; min-height: 100%;
}
.project-card img {
  width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease;
}
.project-card:hover img { transform: scale(1.03); }
.project-feature { grid-row: span 2; }
.project-info {
  position: absolute; inset: auto 0 0 0; padding: 22px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(10,14,12,0.66) 100%); color: #fff;
}
.project-info span { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; opacity: .9; }
.project-info h3 { font-size: 30px; margin-top: 4px; }

.compare-grid {
  display: grid; grid-template-columns: .9fr 1.1fr; gap: 28px; align-items: center;
}
.compare-copy ul { margin: 18px 0 0; padding-left: 20px; color: var(--muted); }
.compare-card { padding: 14px; }
.compare {
  position: relative; overflow: hidden; border-radius: 18px; aspect-ratio: 3 / 2; background: #dfe8e1;
}
.compare-base, .compare-overlay img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.compare-overlay { position: absolute; inset: 0 auto 0 0; width: 50%; overflow: hidden; }
.compare-handle {
  position: absolute; top: 0; bottom: 0; width: 4px; background: #fff; left: 50%; transform: translateX(-50%); box-shadow: 0 0 0 1px rgba(0,0,0,.08);
}
.compare-handle::before {
  content: "↔"; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 44px; height: 44px; border-radius: 50%; background: #fff; color: var(--green-dark); display: grid; place-items: center; font-weight: 900; box-shadow: var(--shadow);
}
.compare-range {
  position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize;
}
.compare-label {
  position: absolute; bottom: 16px; padding: 9px 12px; border-radius: 999px; background: rgba(14,18,16,.72); color: #fff; font-size: 12px; font-weight: 800; letter-spacing: .08em;
}
.compare-label.left { left: 16px; }
.compare-label.right { right: 16px; }

.services-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 16px;
}
.service-card { padding: 24px; }
.service-card h3 { font-size: 24px; margin-bottom: 10px; }
.service-card p { margin: 0; }

.arnold-section {
  background: linear-gradient(180deg, #ffffff 0%, #eff7f1 100%);
}
.arnold-grid {
  display: grid; grid-template-columns: .9fr 1.1fr; gap: 24px; align-items: center;
}
.arnold-photo-wrap {
  min-height: 560px; border-radius: 28px; background: radial-gradient(circle at top, #dff0e4 0%, #c8ebd2 34%, #edf7ef 100%); box-shadow: var(--shadow);
  display: flex; align-items: end; justify-content: center; overflow: hidden;
}
.arnold-photo {
  max-height: 520px; width: auto; filter: drop-shadow(0 22px 28px rgba(14,22,16,.18));
}
.arnold-copy { padding: 34px; }
.arnold-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }

.reviews-grid {
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 16px;
}
.review-panel {
  padding: 28px; background: linear-gradient(135deg, #131816 0%, #223228 100%); color: #fff;
}
.review-stars { color: #ffd45c; letter-spacing: 4px; font-size: 26px; }
.review-text { color: #fff; font-size: 30px; line-height: 1.2; margin: 12px 0 24px; }
.review-meta { color: rgba(255,255,255,0.78); font-weight: 700; }
.review-controls { display: flex; gap: 10px; margin-top: 24px; }
.circle-btn {
  width: 46px; height: 46px; border-radius: 50%; border: 0; cursor: pointer; font-size: 22px; font-weight: 900;
}
.rating-panel {
  padding: 28px; display: flex; flex-direction: column; justify-content: center; gap: 8px;
}
.rating-number { font-size: 84px; line-height: 1; color: var(--green); font-weight: 900; }
.rating-copy strong { font-size: 24px; display: block; }

.area-grid {
  display: grid; grid-template-columns: .95fr 1.05fr; gap: 24px; align-items: center;
}
.area-card { overflow: hidden; }
.area-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.chips span {
  display: inline-flex; min-height: 42px; padding: 0 14px; border-radius: 999px; background: #fff; border: 1px solid var(--line); align-items: center; font-weight: 700;
}

.cta-band {
  display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: center; border-top: 1px solid var(--line);
}
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.site-footer {
  background: #f0f4f2; border-top: 1px solid rgba(17,22,26,0.06); padding: 44px 0 86px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.25fr .75fr .75fr; gap: 20px;
}
.footer-grid h3 { margin-bottom: 12px; font-size: 18px; }
.footer-grid a, .footer-grid span { display: block; color: var(--muted); margin-bottom: 8px; }
.footer-logo { width: 240px; margin-bottom: 14px; }
.sticky-call {
  position: fixed; right: 16px; bottom: 16px; z-index: 1200;
  display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: 0 20px;
  border-radius: 999px; background: var(--green); color: #fff; font-weight: 900; box-shadow: 0 18px 36px rgba(16, 129, 55, 0.35);
}



.section-work {
  position: relative;
}
.section-work::before,
.services-section::before,
.area-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.section-work > *,
.services-section > *,
.area-section > * {
  position: relative;
  z-index: 1;
}
.section-work::before {
  background:
    radial-gradient(circle at 10% 15%, rgba(23,163,69,0.09), transparent 20%),
    radial-gradient(circle at 85% 20%, rgba(165,232,186,0.25), transparent 22%);
}
.services-section {
  position: relative;
  background:
    linear-gradient(180deg, rgba(23,163,69,0.08) 0%, rgba(255,255,255,0.96) 100%);
  border-radius: 34px;
  padding-left: 20px;
  padding-right: 20px;
}
.services-section::before {
  background:
    radial-gradient(circle at 90% 15%, rgba(23,163,69,0.14), transparent 22%),
    radial-gradient(circle at 10% 90%, rgba(181,235,197,0.22), transparent 28%);
}
.service-card {
  background:
    linear-gradient(180deg, rgba(23,163,69,0.10), rgba(255,255,255,0.98));
}
.reviews-band {
  background:
    linear-gradient(180deg, rgba(17,163,69,0.04), rgba(255,255,255,0));
  border-radius: 34px;
}
.area-section::before {
  background:
    radial-gradient(circle at 15% 20%, rgba(23,163,69,0.10), transparent 20%),
    radial-gradient(circle at 90% 80%, rgba(181,235,197,0.22), transparent 24%);
}
.trust-item {
  border-top: 4px solid rgba(23,163,69,0.85);
}
.cta-band {
  background: linear-gradient(135deg, #133722 0%, #1a5a33 100%);
  border: 0;
  border-radius: 28px;
  padding: 36px;
  box-shadow: var(--shadow);
}
.cta-band h2,
.cta-band p,
.cta-band .eyebrow {
  color: #fff;
}
.cta-band p { color: rgba(255,255,255,0.82); }
.cta-band .eyebrow {
  background: rgba(255,255,255,0.14);
}
.cta-band .btn-secondary {
  background: rgba(255,255,255,0.14);
  color: #fff;
  border-color: rgba(255,255,255,0.22);
}
.site-footer {
  background: linear-gradient(180deg, #e9f3ec 0%, #ddece2 100%);
}

@media (max-width: 1120px) {
  .site-nav { gap: 18px; }
  .hero-grid, .section-head, .compare-grid, .arnold-grid, .reviews-grid, .area-grid, .cta-band, .footer-grid { grid-template-columns: 1fr; }
  .hero-grid { min-height: 0; padding: 130px 0 60px; }
  .trust-bar { grid-template-columns: repeat(2,1fr); }
  .work-grid { grid-template-columns: 1fr 1fr; }
  .project-feature { grid-row: span 1; grid-column: 1 / -1; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 860px) {
  .nav-wrap { grid-template-columns: auto auto; }
  .menu-toggle { display: block; justify-self: end; }
  .site-nav {
    display: none; position: absolute; left: 16px; right: 16px; top: 86px; background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); padding: 16px; flex-direction: column; align-items: flex-start;
  }
  .site-nav.open { display: flex; }
  .nav-actions { display: none; }
  .hero { min-height: auto; }
  .hero-copy { padding-top: 32px; }
}
@media (max-width: 640px) {
  .brand img { width: 208px; }
  .hero-grid { padding: 110px 0 40px; }
  .hero-copy p { font-size: 18px; }
  .trust-bar, .work-grid, .services-grid, .estimate-row { grid-template-columns: 1fr; }
  .quote-panel { padding: 20px; }
  .section { padding: 72px 0; }
  .review-text { font-size: 24px; }
  .sticky-call { left: 12px; right: 12px; }
}


.booking-grid {
  display: grid; grid-template-columns: .85fr 1.15fr; gap: 24px; align-items: stretch;
}
.booking-copy { padding: 28px; }
.booking-copy h3 { font-size: 28px; margin-bottom: 14px; }
.booking-copy ol { margin: 0; padding-left: 20px; color: var(--muted); display: grid; gap: 10px; }
.booking-embed { overflow: hidden; min-height: 760px; }
.booking-embed iframe { width: 100%; height: 100%; min-height: 760px; border: 0; background: #fff; }


.service-tag{
  display:inline-block;
  margin:.1rem 0 .8rem;
  background:#17A345;
  color:#fff;
  padding:.34rem .72rem;
  border-radius:999px;
  font-size:.82rem;
  font-weight:800;
  letter-spacing:.01em;
}
.cta-note{
  margin-top:.9rem;
  color:rgba(255,255,255,.9) !important;
  font-weight:600;
}
.hero-points li{
  font-weight:600;
}
