:root {
  --green-dark: #0d2818;
  --green: #123524;
  --green-mid: #1b4332;
  --lime: #c5f542;
  --lime-soft: #e8ffb0;
  --cream: #f7f8f4;
  --white: #ffffff;
  --text-dark: #10160f;
  --text-muted: #5a6a63;
  --shadow: 0 10px 30px rgba(13, 40, 24, 0.12);
  --radius: 16px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

a { text-decoration: none; color: inherit; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; }
}

/* Promo bar */
.promo-bar {
  background: var(--lime);
  color: var(--green-dark);
  text-align: center;
  padding: 9px 16px;
  font-size: 0.9rem;
  font-weight: 600;
}
.promo-bar a {
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 700;
}
.promo-bar a:hover { opacity: 0.75; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: padding 0.25s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  transition: height 0.25s ease;
}

.site-header.condensed .header-inner { height: 60px; }

.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  display: flex;
  gap: 6px;
  color: var(--green-dark);
}
.logo-accent {
  background: linear-gradient(100deg, var(--green-mid), var(--lime), var(--green-mid));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 6s linear infinite;
}

@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.main-nav {
  display: flex;
  gap: 28px;
}
.main-nav a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: color 0.2s;
}
.main-nav a:hover { color: var(--green-mid); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 18px;
}
.phone-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--green);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 26px;
  height: 3px;
  background: var(--green);
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--green-mid);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(27,67,50,0.3);
}
.btn-primary:hover { background: var(--green-dark); }

.btn-outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); }

.btn-light {
  background: var(--lime);
  color: var(--green-dark);
}
.btn-light:hover { background: var(--lime-soft); }

.btn-outline-light {
  background: transparent;
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.12); }

.btn-outline-dark {
  background: var(--white);
  border-color: var(--green-mid);
  color: var(--green-mid);
}

.btn-lg { padding: 16px 32px; font-size: 1.05rem; }

/* Hero */
.hero {
  position: relative;
  padding: 110px 0 90px;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, var(--green-dark), var(--green-mid) 35%, var(--green) 60%, #2d6a4f 80%, var(--green-dark));
  background-size: 300% 300%;
  animation: gradientDrift 18s ease infinite;
}

.hero-gradient::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 25% 30%, rgba(197,245,66,0.25), transparent 45%),
              radial-gradient(circle at 80% 70%, rgba(197,245,66,0.15), transparent 50%);
  animation: gradientDrift 22s ease-in-out infinite reverse;
}

@keyframes gradientDrift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-inner { max-width: 780px; margin: 0 auto; }

.hero-kicker {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2.6rem, 6.5vw, 4.6rem);
  margin-bottom: 22px;
}

.hero-sub {
  font-size: 1.2rem;
  color: #e3ede7;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Trust strip */
.trust-strip {
  background: var(--green-dark);
  padding: 32px 0;
}
.trust-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 36px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--lime-soft);
  font-weight: 500;
  font-size: 0.95rem;
}
.trust-emoji { font-size: 1.2rem; }

/* Sections */
.section { padding: 100px 0; }
.section-alt { background: var(--white); }

.section h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  text-align: center;
  color: var(--green-dark);
}

.section-sub {
  text-align: center;
  color: var(--text-muted);
  max-width: 560px;
  margin: 14px auto 48px;
}

.placeholder-note { font-style: italic; font-size: 0.9rem; opacity: 0.75; }

.grid { display: grid; gap: 28px; }

.services-grid { grid-template-columns: repeat(3, 1fr); }
.pricing-grid { grid-template-columns: repeat(5, 1fr); }
.steps-grid { grid-template-columns: repeat(3, 1fr); }
.gallery-grid { grid-template-columns: repeat(4, 1fr); }

.card, .price-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.section-alt .card, .section-alt .price-card { background: var(--cream); }

.card:hover, .price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(13,40,24,0.16);
}

.card-icon, .price-icon { font-size: 2.2rem; margin-bottom: 14px; }

.card h3, .price-card h3 {
  font-size: 1.1rem;
  color: var(--green-dark);
  margin-bottom: 10px;
}
.card p { color: var(--text-muted); font-size: 0.95rem; }

.price-card .price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--green-mid);
  margin-top: 8px;
}

.price-note {
  text-align: center;
  margin-top: 36px;
  color: var(--text-muted);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.steps-grid .step { text-align: center; }
.step-num {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--green-mid);
  color: var(--lime-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  margin: 0 auto 16px;
}
.step h3 { color: var(--green-dark); margin-bottom: 8px; }
.step p { color: var(--text-muted); }

/* Gallery */
.gallery-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.job-card {
  margin: 0;
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.job-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(13,40,24,0.16);
}

.job-card img {
  display: block;
  width: 100%;
  height: auto;
}

.job-card figcaption,
.pair-caption {
  padding: 16px 20px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  color: var(--green-dark);
  text-align: center;
}

.job-wide { grid-column: 1 / -1; }

.pair-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.pair-grid figure {
  position: relative;
  margin: 0;
}
.pair-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pair-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  background: var(--green-dark);
  color: var(--white);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}
.pair-tag-after {
  background: var(--lime);
  color: var(--green-dark);
}

/* Testimonials marquee */
.testimonials-section { background: var(--green-dark); overflow: hidden; }
.testimonials-section h2 { color: var(--white); }
.testimonials-section .section-sub { color: #b9c9bf; }

.marquee {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marqueeScroll 40s linear infinite;
}

.marquee:hover .marquee-track,
.marquee.paused .marquee-track {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.testimonial-card {
  flex: 0 0 320px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(197,245,66,0.2);
  border-radius: var(--radius);
  padding: 26px;
}
.testimonial-card p { color: #f0f5ee; font-style: italic; margin-bottom: 16px; }
.testimonial-card cite {
  color: var(--lime);
  font-weight: 600;
  font-style: normal;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.src-icon {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
  display: block;
}

/* What We Take */
.take-section { background: var(--green-dark); }
.take-section h2 { color: var(--white); }
.take-section .section-sub { color: #b9c9bf; }

.take-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 880px;
  margin: 0 auto;
}
.take-chip {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(197,245,66,0.25);
  color: #f0f5ee;
  border-radius: 999px;
  padding: 10px 20px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.take-chip:hover {
  transform: translateY(-3px);
  border-color: var(--lime);
  background: rgba(197,245,66,0.12);
}
.take-note {
  text-align: center;
  margin-top: 36px;
  color: #b9c9bf;
}
.take-note a { color: var(--lime); font-weight: 600; }

/* FAQ */
.faq-container { max-width: 760px; }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 48px;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--green-dark);
  position: relative;
  padding-right: 56px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--green-dark);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after {
  content: '−';
  transform: translateY(-50%) rotate(180deg);
}
.faq-item p {
  padding: 0 24px 22px;
  color: var(--text-muted);
}
.faq-item p a { color: var(--green-mid); font-weight: 600; }

/* Service area */
.area-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 820px;
  margin: 0 auto;
}
.area-chip {
  background: var(--cream);
  border: 1px solid #dde4df;
  color: var(--green-dark);
  border-radius: 999px;
  padding: 10px 22px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.area-chip:hover {
  transform: translateY(-3px);
  background: var(--lime-soft);
  border-color: var(--lime);
}
.area-note {
  text-align: center;
  margin-top: 36px;
  color: var(--text-muted);
}
.area-note a { color: var(--green-mid); font-weight: 600; }

/* Final CTA */
.final-cta {
  background: linear-gradient(120deg, var(--lime), #a9e62f);
  color: var(--green-dark);
  text-align: center;
  padding: 90px 0;
}
.final-cta h2 { color: var(--green-dark); margin-bottom: 12px; }
.final-cta p { margin-bottom: 32px; font-size: 1.1rem; }
.final-cta .btn-outline-light { border-color: var(--green-dark); color: var(--green-dark); }
.final-cta .btn-outline-light:hover { background: rgba(13,40,24,0.08); }

/* Contact */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-info h2 { text-align: left; margin-bottom: 16px; color: var(--green-dark); }
.contact-info p { color: var(--text-muted); margin-bottom: 24px; }

.contact-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.contact-list a { color: var(--green-mid); font-weight: 600; }

.quote-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.quote-form label { font-size: 0.9rem; font-weight: 600; color: var(--text-dark); }
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d8ddda;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
}
.quote-form button { margin-top: 8px; }
.form-note { font-size: 0.8rem; color: var(--text-muted); text-align: center; }
.hidden-field { display: none; }

.label-optional { font-weight: 400; color: var(--text-muted); }

.field-error {
  font-size: 0.82rem;
  color: #b3261e;
  font-weight: 600;
  margin-top: -6px;
}
.quote-form input.invalid {
  border-color: #b3261e;
  background: #fdf3f2;
}

.date-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.date-wrap[hidden] { display: none; }
.quote-form input[type="date"] {
  min-height: 42px;
  -webkit-appearance: none;
  appearance: none;
  background: var(--white);
}

.address-wrap { position: relative; }
.address-suggestions {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 20;
  list-style: none;
  background: var(--white);
  border: 1px solid #d8ddda;
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(13,40,24,0.18);
  max-height: 230px;
  overflow-y: auto;
  padding: 4px;
}
.address-suggestions li {
  padding: 10px 12px;
  border-radius: 7px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-dark);
}
.address-suggestions li:hover,
.address-suggestions li.active {
  background: var(--lime-soft);
}

.upload-zone {
  position: relative;
  border: 2px dashed #c4cfc8;
  border-radius: 10px;
  background: var(--cream);
  padding: 22px 16px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.upload-zone:hover,
.upload-zone.dragover {
  border-color: var(--green-mid);
  background: var(--lime-soft);
}
.upload-zone input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.upload-zone p { font-size: 0.92rem; color: var(--text-dark); line-height: 1.5; }
.upload-zone p span { font-size: 0.8rem; color: var(--text-muted); }

.upload-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.upload-thumbs:empty { display: none; }
.upload-thumb {
  position: relative;
  width: 68px;
  height: 68px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.upload-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.upload-thumb button {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 20px;
  height: 20px;
  border: none;
  border-radius: 50%;
  background: rgba(13,40,24,0.85);
  color: var(--white);
  font-size: 12px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.upload-thumb button:hover { background: #b3261e; }

.upload-error {
  font-size: 0.82rem;
  color: #b3261e;
  font-weight: 600;
}

.hidden-file {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.estimate-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  background: var(--cream);
  border-left: 3px solid var(--lime);
  border-radius: 6px;
  padding: 10px 14px;
  line-height: 1.5;
}

/* Footer */
.site-footer {
  background: var(--green-dark);
  color: #cfe3d8;
  padding: 40px 0 90px;
  text-align: center;
}
.site-footer .logo { justify-content: center; margin-bottom: 12px; display: inline-flex; color: var(--white); }
.site-footer a { color: var(--lime); font-weight: 600; }
.footer-copy { margin-top: 12px; font-size: 0.85rem; opacity: 0.75; }

/* Mobile sticky CTA bar */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--white);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.12);
  padding: 12px 16px;
  gap: 12px;
}
.mobile-cta-bar .btn { flex: 1; text-align: center; }

/* Responsive */
@media (max-width: 980px) {
  .main-nav { gap: 18px; }
  .main-nav a { font-size: 0.88rem; }
  .phone-link { display: none; }
}

@media (max-width: 900px) {
  .services-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-inner { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px 24px;
    gap: 16px;
    box-shadow: 0 12px 20px rgba(0,0,0,0.08);
    display: none;
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .header-cta { display: none; }
  .steps-grid, .services-grid, .pricing-grid { grid-template-columns: 1fr; }
  .gallery-showcase { grid-template-columns: 1fr; gap: 20px; }
  .pair-grid { grid-template-columns: 1fr; }

  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 76px; }
  .promo-bar { font-size: 0.78rem; padding: 7px 12px; }
}
