:root {
  --ink: #1c1c1c;
  --ink-soft: #4a4a4a;
  --green: #29700a;
  --green-dark: #1f5808;
  --green-tint: #eef4e8;
  --paper: #f5f2ea;
  --white: #ffffff;
  --muted: #6b7280;
  --line: #e3dece;
  --shadow: 0 1px 2px rgba(28, 28, 28, 0.04), 0 8px 24px rgba(28, 28, 28, 0.06);
  --radius: 10px;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { margin: 0 0 12px; line-height: 1.15; letter-spacing: -0.01em; }
h1 { font-size: clamp(32px, 5vw, 52px); font-weight: 800; }
h2 { font-size: clamp(26px, 3.4vw, 36px); font-weight: 800; }
h3 { font-size: 19px; font-weight: 700; }
p { margin: 0 0 16px; color: var(--ink-soft); }
.lede { font-size: 18px; color: var(--ink-soft); max-width: 640px; }
.intro-text { max-width: 820px; margin: 0 auto; text-align: center; }
.intro-text p { font-size: 18px; color: var(--ink-soft); }
.btn-row.center { justify-content: center; }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--green-tint);
  color: var(--green-dark);
  font-size: 12.5px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.status-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  padding: 13px 22px;
  font-weight: 700;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-dark); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- header / nav ---------- */
.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 40;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.site-header .logo img { height: 30px; width: auto; }
.site-nav { display: flex; align-items: center; gap: 32px; }
.site-nav a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-soft);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.site-nav a:hover, .site-nav a.active { color: var(--ink); border-color: var(--green); }
.nav-cta { display: flex; align-items: center; gap: 20px; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
}

/* ---------- hero ---------- */
.hero {
  background: var(--ink);
  border-bottom: 1px solid var(--line);
}
.hero .container.hero-stack {
  padding-top: 56px;
  padding-bottom: 56px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.hero h1, .hero .lede { color: var(--white); }
.hero .eyebrow { color: #8bc76b; }
.hero .btn-ghost { color: var(--white); border-color: rgba(255, 255, 255, 0.3); }
.hero .btn-ghost:hover { border-color: var(--white); }
.hero-logo-top { display: flex; justify-content: center; }
.hero-logo-top img { width: 100%; max-width: 520px; }
.hero-copy { max-width: 820px; margin: 0 auto; text-align: center; }
.hero-copy h1 { max-width: none; }
.hero-copy .lede { max-width: none; margin: 0 0 16px; }
.hero-copy .btn-row { justify-content: center; }
.hero-focus { font-size: clamp(24px, 3vw, 32px); font-weight: 800; color: var(--white); margin: 4px 0 8px; }
.hero-badges { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; }
.hero-lbp { display: flex; align-items: flex-start; gap: 16px; margin: 0; }
.hero-lbp img { width: 156px; height: auto; flex: none; }
.hero-lbp p { font-size: 11px; color: #9aa1a8; max-width: 220px; margin: 8px 0 0; }
.hero-badge-placeholder { flex: none; min-width: 156px; }
.page-hero {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 56px 0;
}

/* ---------- sections ---------- */
section { padding: 72px 0; }
.section-tight { padding: 48px 0; }
.section-head { max-width: 640px; margin-bottom: 40px; }
.section-alt { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}
.card .icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 9px;
  background: var(--green-tint);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 20px;
}
.card p:last-child { margin-bottom: 0; }
.price { font-size: 24px; font-weight: 800; color: var(--green); margin: 4px 0 10px; }
.price span { font-size: 13px; font-weight: 600; color: var(--muted); }
.price-note { font-size: 13px; color: var(--muted); max-width: 640px; margin: 28px 0 0; }
.extras-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  background: var(--green-tint);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin-top: 20px;
}
.extras-note p { margin: 0; color: var(--ink-soft); max-width: 560px; }
.extras-note .btn-ghost { flex: none; border-color: var(--green); color: var(--green); }
.extras-note .btn-ghost:hover { background: var(--green); color: var(--white); }

.cta-band {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  padding: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-band h2, .cta-band p { color: #fff; margin: 0; }
.cta-band p { color: #cfd3d8; margin-top: 6px; }

/* ---------- footer ---------- */
.site-footer {
  background: var(--ink);
  color: #cfd3d8;
  padding: 56px 0 28px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.site-footer img { height: 26px; margin-bottom: 14px; }
.site-footer h4 { color: #fff; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; margin: 0 0 14px; }
.site-footer a { color: #cfd3d8; font-size: 14px; }
.site-footer li { margin-bottom: 10px; }
.site-footer a:hover { color: #fff; }
.footer-bottom {
  padding-top: 22px;
  font-size: 13px;
  color: #9aa1a8;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* ---------- services list ---------- */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr auto;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.service-row .btn { justify-self: start; }
.service-row:last-child { border-bottom: none; }
.service-row .tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  background: var(--green-tint);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.check-list li {
  display: flex;
  gap: 10px;
  padding: 6px 0;
  font-size: 14.5px;
  color: var(--ink-soft);
}
.check-list li::before {
  content: "";
  flex: none;
  width: 8px;
  height: 8px;
  margin-top: 6px;
  border-radius: 2px;
  background: var(--green);
}

/* ---------- contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}
.form-field { margin-bottom: 16px; }
.form-field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 6px;
}
.form-field input, .form-field textarea, .form-field select {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  font-size: 15px;
  font-family: inherit;
  background: var(--paper);
}
.form-field textarea { resize: vertical; min-height: 110px; }
.contact-info-item { display: flex; gap: 14px; margin-bottom: 22px; }
.contact-info-item .icon-badge {
  width: 40px; height: 40px; border-radius: 8px;
  background: var(--green-tint); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  flex: none; font-size: 17px;
}
.contact-info-item h4 { margin: 0 0 3px; font-size: 14.5px; }
.contact-info-item p { margin: 0; font-size: 14px; }

/* ---------- about ---------- */
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.stat { text-align: left; }
.stat .num { font-size: 34px; font-weight: 800; color: var(--green); display: block; }
.stat .label { font-size: 13.5px; color: var(--muted); }

/* ---------- booking calendar ---------- */
.booking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.cal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.cal-month-label { font-weight: 700; font-size: 15px; }
.cal-nav {
  background: var(--paper); border: 1px solid var(--line); border-radius: 6px;
  width: 30px; height: 30px; font-size: 16px; cursor: pointer; color: var(--ink);
}
.cal-nav:hover { border-color: var(--green); color: var(--green); }
.cal-weekdays, .cal-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.cal-weekdays span { text-align: center; font-size: 11px; font-weight: 700; color: var(--muted); padding-bottom: 6px; }
.cal-day {
  aspect-ratio: 1; border: 1px solid transparent; border-radius: 7px; background: none;
  font-size: 13.5px; cursor: pointer; color: var(--ink);
}
.cal-day:not(.is-disabled):hover { border-color: var(--green); }
.cal-day.is-disabled { color: #c7c2b4; cursor: default; }
.cal-day.is-today { font-weight: 700; }
.cal-day.is-selected { background: var(--green); color: #fff; }
.cal-day.is-empty { visibility: hidden; }

.time-slots { display: flex; flex-wrap: wrap; gap: 8px; margin: 10px 0 20px; }
.time-slot {
  border: 1px solid var(--line); background: var(--paper); border-radius: 7px;
  padding: 9px 14px; font-size: 13.5px; font-weight: 600; cursor: pointer; color: var(--ink);
}
.time-slot:hover { border-color: var(--green); }
.time-slot.is-selected { background: var(--green); border-color: var(--green); color: #fff; }
.time-slots-empty { font-size: 13.5px; color: var(--muted); margin: 10px 0 20px; }

.booking-summary {
  font-size: 13.5px; color: var(--ink-soft); background: var(--paper);
  border: 1px solid var(--line); border-radius: 8px; padding: 12px 14px; margin-bottom: 18px;
}
.booking-summary strong { color: var(--ink); }

.booking-confirm { text-align: center; padding: 20px 4px; }
.booking-confirm .icon-badge { margin: 0 auto 14px; }
.demo-note {
  font-size: 12.5px; color: var(--muted); border-top: 1px dashed var(--line);
  margin-top: 20px; padding-top: 14px;
}

@media (max-width: 860px) {
  .site-nav { display: none; }
  .nav-cta .btn { display: none; }
  .nav-toggle { display: block; }
  .site-nav.nav-open {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 8px 24px 16px;
  }
  .site-nav.nav-open a { padding: 12px 0; border-bottom: 1px solid var(--line); width: 100%; }
  .hero .container.hero-stack { padding-top: 32px; gap: 24px; }
  .hero-logo-top img { max-width: 340px; }
  .hero-badges { flex-direction: column; align-items: center; gap: 20px; text-align: center; }
  .hero-lbp { flex-direction: column; align-items: center; text-align: center; }
  .hero-lbp img { width: 96px; }
  .hero-badge-placeholder { min-width: 0; }
  .grid-3, .grid-2, .grid-4, .footer-grid, .contact-grid, .stat-row, .booking-grid { grid-template-columns: 1fr; }
  .service-row { grid-template-columns: 1fr; gap: 16px; }
  .cta-band { flex-direction: column; align-items: flex-start; }
}
