/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:       #4a7c2f;
  --green-dark:  #355c20;
  --green-light: #629940;
  --green-pale:  #f0f7ea;
  --green-mid:   #ddeecf;
  --bg:          #faf9f7;
  --bg2:         #f3f2ef;
  --text:        #1a1a18;
  --muted:       #5a5a54;
  --faint:       #9a9a90;
  --border:      #e4e2dc;
  --radius:      10px;
  --radius-lg:   16px;
  --shadow:      0 2px 12px rgba(74, 124, 47, 0.10);
  --shadow-lg:   0 8px 32px rgba(74, 124, 47, 0.14);
  --font:        'Instrument Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Lucide icon base ── */
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--green-pale);
  border: 1px solid var(--green-mid);
  border-radius: 10px;
  color: var(--green);
  flex-shrink: 0;
}
.icon i { width: 20px; height: 20px; }
.icon-sm { width: 32px; height: 32px; border-radius: 8px; }
.icon-sm i { width: 16px; height: 16px; }
.icon-lg { width: 52px; height: 52px; border-radius: 12px; }
.icon-lg i { width: 26px; height: 26px; }
.icon-white { background: white; border-color: var(--green); }

/* ── Layout ── */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { padding: 4rem 0; }
section + section { border-top: 1px solid var(--border); }

/* ── Nav ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 249, 247, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--green-dark);
  letter-spacing: -0.02em;
}

.nav-logo i { color: var(--green); width: 20px; height: 20px; }
.nav-logo span { color: var(--green-light); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.15s;
}

.nav-links a:hover { color: var(--green); text-decoration: none; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--green);
  color: white !important;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.45rem 1rem;
  border-radius: 8px;
  transition: background 0.15s, transform 0.1s;
}

.nav-cta:hover { background: var(--green-dark); text-decoration: none; transform: translateY(-1px); }

/* Hero photo */
.hero-photo {
  margin: 2.5rem auto 0;
  max-width: 1100px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04), 0 18px 38px rgba(53,92,32,0.12);
  background: var(--green-pale);
}
.hero-photo picture, .hero-photo img {
  display: block;
  width: 100%;
  height: auto;
}
.hero-photo figcaption {
  font-size: 0.78rem;
  color: var(--faint);
  padding: 0.55rem 0.9rem;
  background: white;
  border-top: 1px solid var(--border);
  letter-spacing: 0.01em;
}
@media (max-width: 720px) {
  .hero-photo { margin-top: 1.75rem; border-radius: 12px; }
}

/* Subscribe panel - frequency buttons + form hints */
.freq-btn {
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 0.85rem;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  background: white;
  color: var(--muted);
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.freq-btn:hover { border-color: var(--green-light); color: var(--green-dark); }
.freq-btn.active {
  background: var(--green);
  color: white;
  border-color: var(--green);
}
.freq-btn:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}
.form-hint {
  margin: 0.35rem 0 0;
  font-size: 0.78rem;
  color: var(--faint);
}

/* ── Hero ── */
.hero {
  padding: 5rem 0 4rem;
  border-top: none;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green-pale);
  border: 1px solid var(--green-mid);
  color: var(--green-dark);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  letter-spacing: 0.03em;
  margin-bottom: 1.5rem;
}

.hero-eyebrow i { width: 14px; height: 14px; }

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.0;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.hero h1 .accent { color: var(--green); }

.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green);
  color: white;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
  box-shadow: 0 2px 8px rgba(74,124,47,0.25);
  border: none;
  cursor: pointer;
  font-family: var(--font);
}

.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(74,124,47,0.3);
  text-decoration: none;
  color: white;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--green);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  border: 2px solid var(--green-mid);
  transition: border-color 0.15s, background 0.15s;
  cursor: pointer;
  font-family: var(--font);
}

.btn-secondary:hover {
  border-color: var(--green);
  background: var(--green-pale);
  text-decoration: none;
  color: var(--green-dark);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--bg2);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.825rem;
  font-weight: 500;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}

.badge i { width: 14px; height: 14px; }

.badge.green {
  background: var(--green-pale);
  border-color: var(--green-mid);
  color: var(--green-dark);
  font-weight: 600;
}

/* ── Section headers ── */
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 1rem;
}

.section-body {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 560px;
}

/* ── About ── */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2.5rem;
}

.about-quote {
  background: var(--green-pale);
  border-left: 4px solid var(--green);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 1.5rem 1.75rem;
}

.about-quote blockquote {
  font-size: 1.05rem;
  color: var(--green-dark);
  line-height: 1.7;
  font-style: italic;
  font-weight: 500;
}

.about-quote cite {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.825rem;
  color: var(--green);
  font-style: normal;
  font-weight: 600;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.stat-tile {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  text-align: center;
}

.stat-value {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--green);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.775rem;
  color: var(--faint);
  margin-top: 0.25rem;
  line-height: 1.3;
}

/* ── Services ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: box-shadow 0.2s, transform 0.2s;
}

.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.service-card.featured {
  background: var(--green-pale);
  border-color: var(--green-mid);
  grid-column: span 2;
}

.service-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.service-desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.service-price {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--green-dark);
  background: var(--green-pale);
  border: 1px solid var(--green-mid);
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
}

.service-price i { width: 12px; height: 12px; }

.service-card.featured .service-price {
  background: white;
  border-color: var(--green);
  color: var(--green);
}

.featured-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.5rem;
  align-items: start;
}

.featured-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: white;
  border: 2px solid var(--green);
  border-radius: 14px;
  color: var(--green);
}
.featured-icon i { width: 28px; height: 28px; }

/* ── Level system ── */
.levels-wrapper {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.level-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  transition: box-shadow 0.15s;
}

.level-row.current {
  background: var(--green-pale);
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(74,124,47,0.1);
}

.level-row.locked {
  opacity: 0.55;
}

.level-info { flex: 1; }

.level-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.level-desc {
  font-size: 0.825rem;
  color: var(--muted);
}

.level-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  white-space: nowrap;
  flex-shrink: 0;
}

.level-badge i { width: 12px; height: 12px; }

.level-badge.active {
  background: var(--green);
  color: white;
}

.level-badge.goal {
  background: var(--green-pale);
  color: var(--green-dark);
  border: 1px solid var(--green-mid);
}

.level-badge.locked {
  background: var(--bg2);
  color: var(--faint);
  border: 1px solid var(--border);
}

.progress-section {
  margin-top: 1.5rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
}

.progress-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.625rem;
}

.progress-label-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}

.progress-count {
  font-size: 0.825rem;
  color: var(--green);
  font-weight: 700;
}

.progress-bar-track {
  height: 10px;
  background: var(--green-mid);
  border-radius: 100px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  width: 40%;
  background: linear-gradient(90deg, var(--green), var(--green-light));
  border-radius: 100px;
  transition: width 1s ease;
}

.progress-caption {
  font-size: 0.775rem;
  color: var(--faint);
  margin-top: 0.5rem;
}

/* ── Reviews (empty state) ── */
.reviews-empty {
  margin-top: 2.5rem;
  background: white;
  border: 2px dashed var(--green-mid);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
}

.reviews-empty .icon { margin: 0 auto 1.25rem; width: 56px; height: 56px; border-radius: 14px; }
.reviews-empty .icon i { width: 28px; height: 28px; }

.reviews-empty-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.reviews-empty-body {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 420px;
  margin: 0 auto 1.5rem;
}

.reviews-empty .btn-primary { font-size: 0.9rem; padding: 0.6rem 1.25rem; }

.reviews-trust {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--green-dark);
}

.trust-item .icon-sm { width: 28px; height: 28px; }
.trust-item .icon-sm i { width: 14px; height: 14px; }

/* ── Service Area ── */
.area-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 2rem;
}

.area-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.area-chip i { width: 14px; height: 14px; color: var(--green); flex-shrink: 0; }

.area-chip:hover {
  border-color: var(--green-mid);
  color: var(--green-dark);
  background: var(--green-pale);
}

.area-note {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green-pale);
  border: 1px solid var(--green-mid);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: var(--green-dark);
  font-weight: 500;
}

.area-note i { width: 16px; height: 16px; flex-shrink: 0; }

/* ── Address Autocomplete ── */
.autocomplete-wrap { position: relative; }
.autocomplete-list {
  position: absolute; top: 100%; left: 0; right: 0; z-index: 50;
  background: white; border: 1.5px solid var(--border); border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  max-height: 220px; overflow-y: auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  display: none;
}
.autocomplete-list.open { display: block; }
.autocomplete-item {
  padding: 0.6rem 1rem; cursor: pointer; font-size: 0.9rem;
  color: var(--text); border-bottom: 1px solid var(--bg2);
  display: flex; align-items: center; gap: 0.5rem;
}
.autocomplete-item:last-child { border-bottom: none; }
.autocomplete-item:hover, .autocomplete-item.active {
  background: var(--bg2); color: var(--green);
}
.autocomplete-item .ac-icon {
  flex-shrink: 0; width: 16px; height: 16px; color: var(--muted);
}

/* ── Quote Calculator ── */
.quote-calc {
  background: var(--green-pale);
  border: 1px solid var(--green-mid);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-top: 2rem;
}

.quote-calc-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.quote-calc-title i { width: 18px; height: 18px; }

.quote-calc-subtitle {
  font-size: 0.825rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.calc-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: end;
}

.calc-input-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.calc-input-group input {
  width: 100%;
  font-family: var(--font);
  font-size: 1rem;
  color: var(--text);
  background: white;
  border: 1.5px solid var(--green-mid);
  border-radius: var(--radius);
  padding: 0.65rem 0.875rem;
  outline: none;
  transition: border-color 0.15s;
}

.calc-input-group input:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(74,124,47,0.12); }

.calc-addons {
  margin-top: 0.75rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.calc-addon {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.825rem;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
}

.calc-addon input[type="checkbox"] { accent-color: var(--green); width: 16px; height: 16px; }

.calc-result {
  margin-top: 1rem;
  background: white;
  border: 2px solid var(--green);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  display: none;
}

.calc-result.visible { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem; }

.calc-result-label {
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--muted);
}

.calc-result-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: -0.03em;
}

.calc-result-note {
  width: 100%;
  font-size: 0.75rem;
  color: var(--faint);
}

/* ── Loading spinner ── */
.spinner {
  display: inline-block;
  width: 18px; height: 18px;
  border: 2.5px solid var(--green-mid);
  border-top-color: var(--green);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: middle;
  margin-right: 6px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Contact ── */
#contact {
  background: var(--bg2);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  margin-top: 2.5rem;
  align-items: start;
}

.contact-aside-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.contact-aside-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 0.15rem;
}

.contact-aside-value {
  font-size: 0.9375rem;
  color: var(--text);
  font-weight: 500;
  line-height: 1.4;
}

/* ── Form ── */
.form-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.1rem;
}

.form-group label {
  display: block;
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  font-family: var(--font);
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 0.65rem 0.875rem;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(74,124,47,0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--faint);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}

.form-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--green);
  color: white;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  padding: 0.875rem 1.5rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
  box-shadow: 0 2px 8px rgba(74,124,47,0.25);
  margin-top: 0.5rem;
}

.form-submit:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(74,124,47,0.3);
}

.form-submit i { width: 18px; height: 18px; }

.form-note {
  font-size: 0.775rem;
  color: var(--faint);
  text-align: center;
  margin-top: 0.75rem;
  line-height: 1.5;
}

/* Success state */
.form-success {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
}

.form-success.visible { display: block; }

.form-success .icon { margin: 0 auto 1rem; width: 56px; height: 56px; border-radius: 14px; }
.form-success .icon i { width: 28px; height: 28px; }

.success-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.success-body {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── Footer ── */
footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.75);
  padding: 2.5rem 0;
  border-top: none;
}

footer section {
  padding: 0;
  border-top: none;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: white;
  letter-spacing: -0.02em;
}

.footer-brand i { width: 18px; height: 18px; color: var(--green-light); }

.footer-meta {
  font-size: 0.8rem;
  line-height: 1.7;
}

.footer-meta a {
  color: rgba(255,255,255,0.6);
  transition: color 0.15s;
}

.footer-meta a:hover {
  color: white;
  text-decoration: none;
}

.footer-right {
  text-align: right;
  font-size: 0.8rem;
}

/* ── Mobile menu ── */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s;
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(250,249,247,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
}
.mobile-menu a:hover { color: var(--green); text-decoration: none; }
.mobile-menu .close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-size: 1.75rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  font-weight: 300;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .mobile-menu-btn { display: flex; }
  section { padding: 3rem 0; }

  .nav-links { display: none; }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card.featured {
    grid-column: span 1;
  }

  .featured-inner {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .area-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .calc-row {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-right {
    text-align: center;
  }

  .reviews-trust {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }

  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions a, .hero-actions .btn-primary, .hero-actions .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr;
  }

  .area-grid {
    grid-template-columns: 1fr 1fr;
  }

  .form-card {
    padding: 1.5rem;
  }

  .level-row {
    padding: 1rem 1.1rem;
    gap: 0.875rem;
  }
}

/* ── End-date picker (subscribe panel) ───────────────────────────── */
.picker-section {
  margin: 1rem 0 0.75rem;
}
.picker-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 0.45rem;
}
.end-select {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: white;
  font: inherit;
  font-size: 0.95rem;
  color: var(--text);
  cursor: pointer;
}
.end-select:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(74,124,47,0.15);
}
.custom-end-row[hidden] { display: none !important; }
.custom-end-row {
  margin-top: 0.55rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.custom-end-row label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
}
.custom-end-row input {
  padding: 0.55rem 0.75rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font: inherit;
}
.custom-end-row input:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(74,124,47,0.15);
}
.end-help {
  margin: 0.4rem 0 0;
  font-size: 0.8rem;
  color: var(--muted);
  min-height: 1.2rem;
}

/* HattiePicksItUp cross-sell — purple sister-brand accent strip */
#pickup-crosssell {
  padding: 2rem 0 3rem;
  background: #f4eef8;
}
.pickup-crosssell-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem 1.75rem;
  background: white;
  border: 1px solid #e2d3ed;
  border-radius: 14px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03), 0 8px 24px rgba(0,0,0,0.04);
  max-width: 920px;
  margin: 0 auto;
}
.pickup-crosssell-icon {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #f4eef8;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pickup-crosssell-icon i {
  color: #6b3fa0;
  width: 28px;
  height: 28px;
}
.pickup-crosssell-body {
  flex: 1 1 auto;
}
.pickup-crosssell-eyebrow {
  color: #6b3fa0 !important;
}
.pickup-crosssell-title {
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0.4rem 0 0.5rem;
  color: var(--text);
}
.pickup-crosssell-accent {
  color: #6b3fa0;
}
.pickup-crosssell-desc {
  font-size: 1rem;
  color: var(--muted);
  margin: 0 0 1.1rem;
  line-height: 1.6;
}
.pickup-crosssell-desc strong {
  color: var(--text);
}
.btn-primary.pickup-crosssell-cta {
  background: #6b3fa0;
  border: none;
  display: inline-flex;
}
.btn-primary.pickup-crosssell-cta:hover {
  background: #4f2d7a;
}
@media (max-width: 600px) {
  .pickup-crosssell-card {
    flex-direction: column;
    gap: 0.9rem;
    padding: 1.5rem 1.25rem;
  }
  .pickup-crosssell-title {
    font-size: 1.35rem;
  }
}

/* Bundle add-on: HattiePicksItUp checkbox + dog/freq pickers in subscribe panel */
.bundle-addon {
  margin: 1rem 0;
  padding: 1rem 1.1rem;
  background: #f4eef8;
  border: 1px solid #e2d3ed;
  border-radius: 10px;
}
.bundle-toggle {
  display: flex;
  gap: 0.7rem;
  cursor: pointer;
  align-items: flex-start;
}
.bundle-toggle input[type="checkbox"] {
  margin-top: 0.25rem;
  accent-color: #6b3fa0;
  width: 18px;
  height: 18px;
}
.bundle-toggle-label {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.bundle-brand {
  color: #6b3fa0;
  font-weight: 700;
  font-size: 0.95rem;
}
.bundle-blurb {
  font-size: 0.85rem;
  color: var(--muted);
}
.bundle-config {
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid #e2d3ed;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.bundle-config[hidden] { display: none; }
.bundle-row {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.bundle-pick-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #4f2d7a;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.bundle-pick-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.bundle-pick {
  flex: 1 1 auto;
  background: white;
  border: 1.5px solid #e2d3ed;
  color: #4f2d7a;
  border-radius: 8px;
  padding: 0.5rem 0.7rem;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.bundle-pick:hover {
  border-color: #9d6dc9;
}
.bundle-pick[aria-pressed="true"] {
  background: #6b3fa0;
  color: white;
  border-color: #6b3fa0;
}
.bundle-summary {
  font-size: 0.92rem;
  color: var(--text);
}
.bundle-summary strong {
  color: #6b3fa0;
}

/* Preferred-day chips (subscribe panel + /account) */
.days-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.4rem 0;
}
.day-chip {
  flex: 1 1 70px;
  min-width: 60px;
  padding: 0.5rem 0.6rem;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.day-chip:hover {
  border-color: var(--green-mid);
  color: var(--green-dark);
}
.day-chip.active {
  background: var(--green);
  border-color: var(--green);
  color: white;
}
.timing-note {
  width: 100%;
  min-height: 70px;
  padding: 0.6rem 0.75rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font);
  font-size: 0.92rem;
  color: var(--text);
  resize: vertical;
  background: white;
}
.timing-note:focus {
  outline: 2px solid var(--green);
  outline-offset: 2px;
  border-color: var(--green-mid);
}
.day-hint {
  margin: 0.35rem 0 0;
  font-size: 0.78rem;
  color: var(--faint);
}

/* "What you get" — Phase 2 marketing band */
#experience .experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.1rem;
  margin-top: 1.6rem;
}
.experience-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.4rem 1.3rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.experience-card:hover {
  border-color: var(--green-mid);
  box-shadow: 0 1px 2px rgba(0,0,0,0.03), 0 8px 20px rgba(74,124,47,0.08);
}
.experience-card .icon { margin-bottom: 0.3rem; }
.experience-name {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
}
.experience-desc {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
}
.experience-desc a { font-weight: 600; }
