:root {
  --pine: #17301c;
  --pine-deep: #0f2013;
  --cream: #f6f3ea;
  --paper: #fffdf7;
  --grass: #3e8a4e;
  --grass-dark: #2f6b3a;
  --marigold: #e8a832;
  --marigold-dark: #c98f22;
  --ink: #1f2a1f;
  --ink-soft: #55604f;
  --line: #e0dccd;
  --cream-on-dark: #f2efe2;
  --sub-on-dark: #b9c6b4;
  --radius: 14px;
}

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

[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 16.5px;
}

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

h1, h2, h3, .wordmark, .footer-mark {
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.12;
  letter-spacing: -0.015em;
  font-weight: 600;
}

h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  color: var(--pine);
  margin-bottom: 1.5rem;
}

.overline {
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grass);
  margin-bottom: 0.6rem;
}

.overline--dark { color: var(--marigold); }

section { padding: 4.5rem 0; }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--pine);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}

.wordmark {
  font-size: 1.3rem;
  color: var(--cream-on-dark);
  text-decoration: none;
}

.wordmark em, .footer-mark em { font-style: italic; color: var(--marigold); }

.header-phone {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--cream-on-dark);
  text-decoration: none;
  border: 1.5px solid rgba(242, 239, 226, 0.35);
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
  transition: border-color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.header-phone:hover { border-color: var(--marigold); background: rgba(232, 168, 50, 0.12); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  background: var(--pine);
  background-image: radial-gradient(ellipse 90% 70% at 20% 0%, rgba(62, 138, 78, 0.35), transparent 60%);
  padding: 5.5rem 0 7.5rem;
}

.hero h1 {
  font-size: clamp(3rem, 9vw, 5.6rem);
  font-weight: 700;
  color: var(--cream-on-dark);
  margin-bottom: 1.4rem;
}

.kicker {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--marigold);
  margin-bottom: 1.1rem;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--sub-on-dark);
  max-width: 54ch;
  margin-bottom: 2.2rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.4rem;
}

.btn {
  display: inline-block;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1.02rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--marigold);
  color: var(--pine-deep);
}

.btn-primary:hover { background: var(--marigold-dark); }

.btn-ghost {
  background: transparent;
  color: var(--cream-on-dark);
  border-color: rgba(242, 239, 226, 0.4);
}

.btn-ghost:hover { border-color: var(--cream-on-dark); }

.btn-block { width: 100%; text-align: center; }

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  list-style: none;
  color: var(--sub-on-dark);
  font-weight: 500;
  font-size: 0.95rem;
}

.trust-strip li::before {
  content: "✓";
  color: var(--marigold);
  font-weight: 700;
  margin-right: 0.5rem;
}

/* grass silhouette edges */
.grass-edge {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 52px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 60' preserveAspectRatio='none'%3E%3Cpath d='M0,60 L0,32 L20,10 L38,36 L60,22 L80,40 L104,14 L122,36 L142,26 L164,42 L182,18 L202,38 L221,26 L240,32 L240,60 Z' fill='%23f6f3ea'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 240px 100%;
}

.grass-edge--flip {
  transform: scaleY(-1) scaleX(-1);
  top: auto;
  bottom: -1px;
}

/* ---------- services ---------- */
.services { padding-top: 5rem; }

.service-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 3.5rem;
  margin-top: 1rem;
}

.service-list li {
  display: flex;
  gap: 1.3rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}

.service-num {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.9rem;
  font-weight: 500;
  font-style: italic;
  color: var(--grass);
  line-height: 1;
  padding-top: 0.2rem;
  min-width: 2.6rem;
}

.service-list h3 {
  font-size: 1.2rem;
  color: var(--pine);
  margin-bottom: 0.3rem;
}

.service-list p { color: var(--ink-soft); font-size: 0.97rem; }

/* ---------- how it works ---------- */
.how {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  list-style: none;
  margin-top: 1rem;
}

.step-num {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-size: 3.4rem;
  font-weight: 500;
  color: var(--marigold);
  line-height: 1;
  margin-bottom: 0.8rem;
}

.steps h3 { color: var(--pine); margin-bottom: 0.4rem; font-size: 1.15rem; }
.steps p { color: var(--ink-soft); font-size: 0.97rem; }

/* ---------- about ---------- */
.about-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  align-items: center;
}

.about-photo img {
  width: 100%;
  border-radius: var(--radius);
  display: block;
  box-shadow: 0 14px 40px rgba(23, 48, 28, 0.18);
  transform: rotate(-1.5deg);
}

.about-copy p { color: var(--ink-soft); margin-bottom: 1rem; }
.about-copy p.overline { color: var(--grass); margin-bottom: 0.6rem; }
.about-copy p:last-child { margin-bottom: 0; }

/* ---------- gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
  margin-top: 1rem;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(23, 48, 28, 0.10);
}

.gallery-item.span2 { grid-column: span 2; grid-row: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.gallery-item:hover img { transform: scale(1.03); }

/* ---------- area ---------- */
.area {
  position: relative;
  padding-bottom: 7.5rem;
}

.area > .container > p { color: var(--ink-soft); }

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  list-style: none;
  margin: 1.4rem 0 1rem;
}

.area-list li {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.4rem 1.05rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--pine);
}

.area-note { font-size: 0.95rem; }
.area-note a { color: var(--grass-dark); font-weight: 600; }

/* ---------- quote ---------- */
.quote {
  background: var(--pine);
  background-image: radial-gradient(ellipse 80% 60% at 85% 100%, rgba(62, 138, 78, 0.3), transparent 60%);
  padding: 5.5rem 0;
}

.quote-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3.5rem;
  align-items: start;
}

.quote-copy h2 { color: var(--cream-on-dark); }
.quote-copy p { margin-bottom: 1rem; color: var(--sub-on-dark); }
.quote-copy strong { color: var(--cream-on-dark); }
.quote-copy a { color: var(--marigold); font-weight: 600; }

.quote-form {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: 0 20px 50px rgba(15, 32, 19, 0.35);
}

/* step wizard */
.wiz-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.wiz-progress {
  flex: 1;
  height: 6px;
  border-radius: 999px;
  background: var(--line);
  overflow: hidden;
}

.wiz-bar {
  display: block;
  height: 100%;
  width: 20%;
  border-radius: 999px;
  background: var(--grass);
  transition: width 0.3s ease;
}

.wiz-count {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-soft);
  white-space: nowrap;
}

.wiz-step { display: none; }

.wiz-step.active {
  display: block;
  animation: wiz-in 0.3s ease;
}

@keyframes wiz-in {
  from { opacity: 0; transform: translateX(14px); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .wiz-step.active { animation: none; }
}

.wiz-step h3 {
  font-size: 1.35rem;
  color: var(--pine);
  margin-bottom: 0.9rem;
}

.wiz-hint {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin: -0.5rem 0 0.9rem;
}

.wiz-choices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.wiz-choices button {
  font: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 0.6rem;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--pine);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.wiz-choices button:hover {
  border-color: var(--grass);
  background: #f2f7f0;
}

.wiz-choices button.selected {
  border-color: var(--grass);
  background: #e8f2ea;
  box-shadow: inset 0 0 0 1px var(--grass);
}

.wiz-choices button.selected::before {
  content: "✓ ";
  color: var(--grass-dark);
  font-weight: 700;
}

.wiz-error {
  margin-top: 0.8rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #a33b2e;
}

.wiz-step input[type="text"],
.wiz-step input[type="tel"],
.wiz-step textarea {
  width: 100%;
}

.wiz-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 1.4rem;
}

.wiz-nav .wiz-next { margin-left: auto; }

.wiz-back {
  font: inherit;
  font-weight: 600;
  background: none;
  border: none;
  color: var(--ink-soft);
  cursor: pointer;
  padding: 0.5rem 0;
  text-decoration: underline;
}

.quote-form label {
  display: grid;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--pine);
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  font: inherit;
  font-weight: 400;
  padding: 0.7rem 0.85rem;
  border: 1.5px solid var(--line);
  border-radius: 9px;
  background: #fff;
  color: var(--ink);
  transition: border-color 0.15s ease;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: var(--grass);
  box-shadow: 0 0 0 3px rgba(62, 138, 78, 0.18);
}

.hp {
  position: absolute !important;
  left: -9999px !important;
  height: 0;
  width: 0;
  border: 0;
  padding: 0;
}

.form-success {
  background: #e8f2ea;
  color: var(--pine);
  border-radius: 9px;
  padding: 0.85rem 1rem;
  font-weight: 500;
}

/* ---------- footer ---------- */
.site-footer {
  background: var(--pine-deep);
  color: var(--sub-on-dark);
  padding: 2.5rem 0 3.5rem;
}

.footer-inner { display: grid; gap: 0.4rem; }

.footer-mark {
  font-size: 1.25rem;
  color: var(--cream-on-dark);
}

.site-footer a { color: var(--marigold); font-weight: 600; text-decoration: none; }
.site-footer .fine { font-size: 0.85rem; opacity: 0.7; }

/* ---------- sticky mobile CTA ---------- */
.sticky-cta {
  display: none;
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 30;
  text-align: center;
  background: var(--marigold);
  color: var(--pine-deep);
  font-weight: 700;
  padding: 1rem;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(15, 32, 19, 0.4);
}

/* ---------- scroll reveal ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .reveal.revealed {
    opacity: 1;
    transform: none;
  }
}

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  .service-list { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 1.8rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .quote-inner { grid-template-columns: 1fr; gap: 2.2rem; }
}

@media (max-width: 720px) {
  section { padding: 3.2rem 0; }
  .hero { padding: 3.8rem 0 6rem; }
  .about-inner { grid-template-columns: 1fr; gap: 1.6rem; }
  .about-photo { max-width: 300px; }
  .sticky-cta { display: block; }
  body { padding-bottom: 4.8rem; }
  .gallery-item.span2 { grid-column: span 2; grid-row: auto; }
}
