:root {
  --green:        #1f7a3f;
  --green-dark:   #124f2a;
  --green-forest: #0d3b1e;
  --green-mid:    #2a9d52;
  --green-sage:   #4e8c5c;
  --green-light:  #edf8f0;
  --green-fresh:  #e2f2e9;
  --green-pale:   #f2faf5;
  --leaf:         #8ac146;
  --leaf-dark:    #6a9e30;
  --blue:         #225a87;
  --blue-soft:    #edf5fb;
  --yellow:       #f3c84b;
  --red:          #b84c3d;
  --ink:          #1d2b23;
  --muted:        #607064;
  --soft:         #f6f8f4;
  --line:         #dce7dd;
  --white:        #ffffff;
  --shadow:       0 22px 60px rgba(24, 44, 28, 0.14);
  --max-width:    1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.header-cta {
  min-height: 40px;
  padding: 0 18px;
  font-size: 0.92rem;
  white-space: nowrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 850;
  white-space: nowrap;
}

.brand-logo {
  width: 46px;
  height: 46px;
  display: block;
}


.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 2vw, 24px);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 750;
  white-space: nowrap;
}

.nav-links a {
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  color: var(--green-dark);
  border-color: var(--leaf);
}

.hero-map {
  display: grid;
  min-height: calc(100vh - 73px);
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  background:
    linear-gradient(90deg, rgba(31, 122, 63, 0.08), rgba(255, 255, 255, 0)),
    var(--white);
}

.planner-card {
  display: grid;
  align-content: center;
  gap: 22px;
  padding: clamp(34px, 6vw, 72px);
  border-right: 1px solid var(--line);
  background: var(--green-pale);
}

.eyebrow {
  margin: 0;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(3rem, 6vw, 6.1rem);
  line-height: 0.96;
}

h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.05rem, 4vw, 3.25rem);
  line-height: 1.06;
}

h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.15rem;
  line-height: 1.22;
}

.planner-card p,
.section-heading p,
.intro-copy p,
.service-card p,
.step p,
.detail-item p,
.contact-copy p,
.form-note {
  margin: 0;
  color: var(--muted);
}


.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--green-dark);
  border-radius: 8px;
  padding: 0 20px;
  font-weight: 850;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--green);
  color: var(--white);
}

.button.primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.button.secondary {
  background: var(--white);
  color: var(--green-dark);
}

.button.secondary:hover {
  border-color: var(--red);
  color: var(--red);
}

.photo-panel {
  display: grid;
  position: relative;
  min-height: 620px;
  padding: clamp(18px, 4vw, 42px);
  background: linear-gradient(135deg, var(--green-light), rgba(143, 193, 110, 0.1));
  overflow: hidden;
  place-items: center;
}

.stats-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 4vw, 40px);
  width: 100%;
  max-width: 600px;
}

.stat-card {
  display: grid;
  gap: 12px;
  padding: clamp(28px, 5vw, 40px);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
}

.stat-card.total {
  background: linear-gradient(135deg, var(--green), rgba(31, 122, 63, 0.95));
  color: var(--white);
}

.stat-card.total .stat-label,
.stat-card.total .stat-desc {
  color: rgba(255, 255, 255, 0.95);
}

.stat-value {
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: 900;
  line-height: 1;
  color: var(--green);
}

.stat-card.total .stat-value {
  color: var(--white);
}

.stat-label {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 850;
  color: var(--ink);
}

.stat-desc {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.stat-card.total .stat-desc {
  color: rgba(255, 255, 255, 0.85);
}

.stat-controls {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  margin-top: 12px;
}

.stat-btn {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 2px solid var(--green);
  border-radius: 8px;
  background: var(--white);
  color: var(--green);
  font-size: 1.5rem;
  font-weight: 900;
  cursor: pointer;
  transition: all 160ms ease;
}

.stat-btn:hover {
  background: var(--green);
  color: var(--white);
  transform: scale(1.05);
}

.stat-btn:active {
  transform: scale(0.95);
}

.stat-date {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-card.total .stat-date {
  color: rgba(255, 255, 255, 0.75);
}

.stats-breakdown {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.breakdown-item {
  display: grid;
  gap: 2px;
  text-align: center;
}

.breakdown-item .label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  font-weight: 600;
}

.breakdown-item .value {
  font-size: 1.4rem;
  font-weight: 850;
  color: var(--white);
}

.stats-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(31, 122, 63, 0.15);
}

.admin-btn {
  background: var(--soft);
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: 6px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 160ms ease;
}

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

.last-update {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.admin-panel {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 10;
  white-space: nowrap;
}

.admin-panel.hidden {
  display: none;
}

.admin-panel h4 {
  margin: 0 0 12px 0;
  font-size: 0.9rem;
  color: var(--ink);
}

.admin-controls {
  display: grid;
  gap: 6px;
}

.admin-count-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
  align-self: center;
  text-align: center;
}

.admin-action {
  background: var(--green-light);
  border: 1px solid var(--green);
  color: var(--green-dark);
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 160ms ease;
}

.admin-action:hover {
  background: var(--green);
  color: var(--white);
}

.admin-action.danger {
  background: #ffebee;
  border-color: var(--red);
  color: var(--red);
}

.admin-action.danger:hover {
  background: var(--red);
  color: var(--white);
}


.area-alert,
.category-strip {
  width: min(calc(100% - 36px), var(--max-width));
  margin-right: auto;
  margin-left: auto;
}

.area-alert {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 20px;
  padding: 18px 20px;
  border: 1px solid rgba(31, 122, 63, 0.24);
  border-radius: 8px;
  background: var(--green-light);
}

.area-alert div {
  display: grid;
  gap: 4px;
}

.area-alert strong {
  color: var(--green-dark);
}

.area-alert span {
  color: var(--muted);
}

.area-alert a {
  display: inline-flex;
  min-height: 42px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 16px;
  background: var(--white);
  color: var(--green-dark);
  font-weight: 850;
}

.category-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.category-strip a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 16px;
  background: var(--white);
  color: var(--green-dark);
  font-weight: 850;
  box-shadow: 0 8px 18px rgba(24, 44, 28, 0.06);
}

.section {
  padding: 86px clamp(18px, 5vw, 72px);
}

.intro {
  display: grid;
  width: min(100%, var(--max-width));
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  margin: 0 auto;
}

.intro-copy {
  display: grid;
  gap: 18px;
  font-size: 1.08rem;
}

.section-heading {
  display: grid;
  gap: 14px;
  max-width: 760px;
}

.section-heading.centered {
  margin: 0 auto 38px;
  text-align: center;
}

.services-section {
  background: linear-gradient(180deg, var(--green-fresh), var(--soft));
}

.discount-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 16px;
  width: min(100%, var(--max-width));
  margin: 0 auto 28px;
  padding: 14px 20px;
  border: 2px solid var(--leaf);
  border-radius: 8px;
  background: var(--green-light);
  text-align: center;
}

.discount-banner strong {
  color: var(--green-dark);
  font-size: 1rem;
}

.discount-banner span {
  color: var(--muted);
  font-size: 0.92rem;
}

.service-price {
  margin: 0;
  color: var(--green-dark) !important;
  font-size: 1.2rem;
  font-weight: 900;
}

.price-split {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 4px;
  color: var(--green-dark);
  font-size: 0.95rem;
}

.price-split strong {
  font-weight: 900;
}

.service-grid {
  display: grid;
  width: min(100%, var(--max-width));
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0 auto;
}

.service-card {
  display: grid;
  gap: 14px;
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 28px rgba(24, 44, 28, 0.05);
}

.service-card:hover {
  border-color: rgba(31, 122, 63, 0.42);
  box-shadow: 0 18px 40px rgba(24, 44, 28, 0.12);
}


.service-number {
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.details-section > .section-heading,
.detail-grid {
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.process-section {
  background: linear-gradient(180deg, var(--soft), var(--green-fresh));
}

.steps {
  display: grid;
  width: min(100%, var(--max-width));
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0 auto;
}

.step {
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.step span {
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.details-section {
  background: linear-gradient(180deg, var(--green-pale), var(--white));
}

.details-section > .section-heading {
  margin-bottom: 30px;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.detail-item {
  display: grid;
  gap: 10px;
  padding: 22px;
  border-left: 4px solid var(--green);
  background: var(--white);
  box-shadow: 0 10px 26px rgba(24, 44, 28, 0.06);
}

.detail-item:nth-child(2) { border-left-color: var(--leaf); }
.detail-item:nth-child(3) { border-left-color: var(--green-mid); }
.detail-item:nth-child(4) { border-left-color: var(--green-sage); }

.detail-item strong {
  color: var(--green-dark);
}

.contact-section {
  display: grid;
  width: min(100%, var(--max-width));
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
  margin: 0 auto;
  padding: 86px clamp(18px, 5vw, 72px);
}

.contact-copy {
  display: grid;
  gap: 16px;
  align-content: start;
}

.form-wrapper {
  position: relative;
}

.form-success {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
  place-items: center;
}

.form-success.hidden {
  display: none;
}

.success-icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 900;
}

.availability-note {
  margin: 0;
  color: var(--green-dark);
  font-size: 0.92rem;
  font-weight: 700;
}

.availability-hint {
  margin: 0;
  padding: 12px 14px;
  border-left: 3px solid var(--leaf);
  background: var(--green-light);
  border-radius: 0 6px 6px 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.availability-hint strong {
  color: var(--green-dark);
}

.form-note {
  font-size: 0.92rem;
}

.form-note.error {
  color: var(--red);
}

.request-form.hidden {
  display: none;
}

.request-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.request-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

.field-hint {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
}

.request-form .checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 750;
}

.checkbox-label input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: var(--green);
}

.checkbox-label span {
  color: var(--ink);
}

.request-form input,
.request-form textarea {
  width: 100%;
  border: 1px solid #cfdace;
  border-radius: 8px;
  padding: 12px 13px;
  background: #fbfdfb;
  color: var(--ink);
  font-weight: 500;
  outline: none;
}

.request-form textarea {
  resize: vertical;
}

.request-form input:focus,
.request-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(31, 122, 63, 0.15);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.form-submit {
  width: fit-content;
}

.form-note {
  font-size: 0.92rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 5vw, 72px);
  background: var(--green-forest);
  color: rgba(255, 255, 255, 0.65);
}

.site-footer p {
  margin: 0;
  color: var(--white);
  font-weight: 850;
}

.site-footer a {
  overflow-wrap: anywhere;
  color: var(--leaf);
}

/* ── Plant decorations ────────────────────────────────────── */

.hero-map,
.services-section,
.process-section,
.details-section,
.site-footer {
  position: relative;
  overflow: hidden;
}

/* Keep all content above the plant layer */
.hero-map > *,
.services-section > *,
.process-section > *,
.details-section > *,
.site-footer > * {
  position: relative;
  z-index: 1;
}

/* Hero — tall fern frond cluster, bottom-right of photo panel */
.hero-map::after {
  content: "";
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 280px;
  height: 420px;
  opacity: 0.65;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 350'%3E%3Cpath d='M100 350 Q55 255 8 130 Q68 258 100 350Z' fill='%231f7a3f' opacity='0.17'/%3E%3Cpath d='M100 350 Q72 268 38 155 Q82 268 100 350Z' fill='%232a9d52' opacity='0.14'/%3E%3Cpath d='M100 350 Q94 248 78 110 Q102 250 100 350Z' fill='%231f7a3f' opacity='0.2'/%3E%3Cpath d='M100 350 Q106 248 122 110 Q98 250 100 350Z' fill='%231f7a3f' opacity='0.2'/%3E%3Cpath d='M100 350 Q128 268 162 155 Q118 268 100 350Z' fill='%232a9d52' opacity='0.14'/%3E%3Cpath d='M100 350 Q145 255 192 130 Q132 258 100 350Z' fill='%231f7a3f' opacity='0.17'/%3E%3Cpath d='M100 350 Q88 260 48 175 Q96 260 100 350Z' fill='%230d3b1e' opacity='0.11'/%3E%3Cpath d='M100 350 Q112 260 152 175 Q104 260 100 350Z' fill='%230d3b1e' opacity='0.11'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom right;
  pointer-events: none;
  z-index: 0;
}

/* Hero — arching branch, top-left */
.hero-map::before {
  content: "";
  position: absolute;
  top: -30px;
  left: -30px;
  width: 260px;
  height: 260px;
  opacity: 0.65;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath d='M10 10 Q80 60 160 190' stroke='%231f7a3f' stroke-width='7' fill='none' opacity='0.1' stroke-linecap='round'/%3E%3Cellipse cx='38' cy='38' rx='18' ry='9' fill='%238ac146' opacity='0.13' transform='rotate(-30 38 38)'/%3E%3Cellipse cx='72' cy='78' rx='16' ry='8' fill='%231f7a3f' opacity='0.12' transform='rotate(-10 72 78)'/%3E%3Cellipse cx='108' cy='120' rx='17' ry='8' fill='%238ac146' opacity='0.11' transform='rotate(20 108 120)'/%3E%3Cellipse cx='140' cy='158' rx='15' ry='8' fill='%231f7a3f' opacity='0.1' transform='rotate(40 140 158)'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  z-index: 0;
}

/* Services — drooping branch top-left */
.services-section::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: 340px;
  height: 260px;
  opacity: 0.65;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 220'%3E%3Cpath d='M0 0 Q120 40 200 220' stroke='%230d3b1e' stroke-width='8' fill='none' opacity='0.1' stroke-linecap='round'/%3E%3Cellipse cx='50' cy='24' rx='22' ry='10' fill='%231f7a3f' opacity='0.12' transform='rotate(20 50 24)'/%3E%3Cellipse cx='32' cy='12' rx='18' ry='8' fill='%238ac146' opacity='0.1' transform='rotate(-10 32 12)'/%3E%3Cellipse cx='100' cy='62' rx='20' ry='9' fill='%231f7a3f' opacity='0.11' transform='rotate(35 100 62)'/%3E%3Cellipse cx='88' cy='48' rx='17' ry='8' fill='%232a9d52' opacity='0.1' transform='rotate(10 88 48)'/%3E%3Cellipse cx='148' cy='112' rx='21' ry='9' fill='%231f7a3f' opacity='0.1' transform='rotate(50 148 112)'/%3E%3Cellipse cx='172' cy='150' rx='18' ry='8' fill='%238ac146' opacity='0.09' transform='rotate(60 172 150)'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  z-index: 0;
}

/* Services — grass clump, bottom-right */
.services-section::after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 300px;
  height: 220px;
  opacity: 0.65;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 280 200'%3E%3Cpath d='M40 200 Q30 155 10 90 Q46 156 40 200Z' fill='%231f7a3f' opacity='0.18'/%3E%3Cpath d='M70 200 Q78 148 100 65 Q74 150 70 200Z' fill='%232a9d52' opacity='0.15'/%3E%3Cpath d='M95 200 Q90 150 78 72 Q98 152 95 200Z' fill='%231f7a3f' opacity='0.2'/%3E%3Cpath d='M118 200 Q122 142 140 55 Q116 144 118 200Z' fill='%230d3b1e' opacity='0.14'/%3E%3Cpath d='M142 200 Q158 158 185 85 Q148 160 142 200Z' fill='%231f7a3f' opacity='0.17'/%3E%3Cpath d='M162 200 Q168 152 175 75 Q164 154 162 200Z' fill='%232a9d52' opacity='0.13'/%3E%3Cpath d='M182 200 Q195 162 220 100 Q188 164 182 200Z' fill='%231f7a3f' opacity='0.15'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom right;
  pointer-events: none;
  z-index: 0;
}

/* Process — fern fronds, bottom-left */
.process-section::before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 260px;
  height: 320px;
  opacity: 0.65;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 180 280'%3E%3Cpath d='M60 280 Q20 210 0 110 Q45 212 60 280Z' fill='%231f7a3f' opacity='0.15'/%3E%3Cpath d='M60 280 Q50 205 30 120 Q62 206 60 280Z' fill='%232a9d52' opacity='0.12'/%3E%3Cpath d='M60 280 Q58 200 50 100 Q62 202 60 280Z' fill='%231f7a3f' opacity='0.18'/%3E%3Cpath d='M60 280 Q65 200 80 95 Q62 202 60 280Z' fill='%231f7a3f' opacity='0.18'/%3E%3Cpath d='M60 280 Q80 208 110 118 Q68 210 60 280Z' fill='%232a9d52' opacity='0.12'/%3E%3Cpath d='M60 280 Q90 212 130 120 Q76 214 60 280Z' fill='%231f7a3f' opacity='0.14'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom left;
  pointer-events: none;
  z-index: 0;
}

/* Details — large arching leaf, right side */
.details-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: -40px;
  width: 280px;
  height: 400px;
  opacity: 0.65;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 300'%3E%3Cpath d='M180 0 Q60 60 20 300' stroke='%231f7a3f' stroke-width='8' fill='none' opacity='0.09' stroke-linecap='round'/%3E%3Cellipse cx='148' cy='28' rx='24' ry='10' fill='%238ac146' opacity='0.1' transform='rotate(-50 148 28)'/%3E%3Cellipse cx='162' cy='14' rx='18' ry='8' fill='%231f7a3f' opacity='0.08' transform='rotate(-70 162 14)'/%3E%3Cellipse cx='112' cy='82' rx='26' ry='10' fill='%231f7a3f' opacity='0.09' transform='rotate(-35 112 82)'/%3E%3Cellipse cx='128' cy='66' rx='20' ry='9' fill='%232a9d52' opacity='0.08' transform='rotate(-55 128 66)'/%3E%3Cellipse cx='78' cy='152' rx='24' ry='10' fill='%238ac146' opacity='0.09' transform='rotate(-20 78 152)'/%3E%3Cellipse cx='56' cy='218' rx='22' ry='9' fill='%231f7a3f' opacity='0.08' transform='rotate(-10 56 218)'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  z-index: 0;
}

/* Footer — subtle grass silhouette */
.site-footer::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: clamp(80px, 15vw, 200px);
  width: 220px;
  height: 90px;
  opacity: 0.55;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 80'%3E%3Cpath d='M30 80 Q22 55 8 20 Q34 56 30 80Z' fill='%238ac146' opacity='0.18'/%3E%3Cpath d='M52 80 Q58 50 74 12 Q52 52 52 80Z' fill='%232a9d52' opacity='0.15'/%3E%3Cpath d='M72 80 Q68 52 60 18 Q74 54 72 80Z' fill='%238ac146' opacity='0.2'/%3E%3Cpath d='M92 80 Q96 48 108 10 Q90 50 92 80Z' fill='%231f7a3f' opacity='0.18'/%3E%3Cpath d='M112 80 Q124 54 148 22 Q116 56 112 80Z' fill='%232a9d52' opacity='0.15'/%3E%3Cpath d='M130 80 Q134 52 140 20 Q130 54 130 80Z' fill='%238ac146' opacity='0.14'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom center;
  pointer-events: none;
  z-index: 0;
}

/* ── Age / legal note ─────────────────────────────────────── */

.legal-note {
  display: block;
  margin-top: 4px;
  padding: 8px 12px;
  border-left: 3px solid var(--yellow);
  background: #fffbea;
  border-radius: 0 6px 6px 0;
  color: #7a6020;
  font-size: 0.82rem;
  font-weight: 600;
}

/* ── Service button selectors ─────────────────────────────── */

.field-group {
  display: grid;
  gap: 10px;
}

.field-label {
  margin: 0;
  font-weight: 800;
  color: var(--ink);
}

.legend-req {
  color: var(--red);
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.svc-item {
  display: flex;
  flex-direction: column;
}

.svc-qty-row {
  margin-top: 6px;
  padding: 8px 10px;
  border: 1.5px solid var(--green);
  border-radius: 0 0 8px 8px;
  border-top: none;
  background: var(--green-pale);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.qty-controls {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.qty-dec, .qty-inc {
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--green);
  border-radius: 6px;
  background: white;
  color: var(--green);
  font-size: 1rem;
  font-weight: 900;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 120ms;
  padding: 0;
}

.qty-dec:hover, .qty-inc:hover {
  background: var(--green);
  color: white;
}

.qty-num {
  min-width: 22px;
  text-align: center;
  font-weight: 900;
  font-size: 1rem;
  color: var(--ink);
}

.qty-unit {
  font-size: 0.78rem;
  color: var(--muted);
  flex: 1;
}

.qty-total {
  font-weight: 900;
  color: var(--green-dark);
  font-size: 0.9rem;
  margin-left: auto;
}

.qty-arrival {
  border: 1px dashed var(--muted);
  border-radius: 6px;
  background: white;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  cursor: pointer;
  transition: all 120ms;
  text-align: left;
}

.qty-arrival.active {
  border-color: var(--green);
  background: var(--green);
  color: white;
}

.svc-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 14px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  width: 100%;
  background: var(--white);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: border-color 140ms, background 140ms, color 140ms;
}

.svc-btn:hover {
  border-color: var(--green);
  background: var(--green-pale);
}

.svc-btn.selected {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
}

.svc-btn .svc-name {
  font-weight: 700;
  font-size: 0.88rem;
}

.svc-btn .svc-price {
  font-size: 0.78rem;
  font-weight: 700;
  opacity: 0.75;
  white-space: nowrap;
}

.svc-btn.selected .svc-price {
  opacity: 0.85;
}

/* ── Assistant widget ─────────────────────────────────────── */

.assistant-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.assistant-toggle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(31, 122, 63, 0.35);
  cursor: pointer;
  transition: background 140ms, transform 140ms;
}

.assistant-toggle:hover {
  background: var(--green-dark);
  transform: scale(1.06);
}

.assistant-panel {
  width: 320px;
  max-height: 440px;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 12px 48px rgba(24, 44, 28, 0.18);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.assistant-panel.hidden {
  display: none;
}

.assistant-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--green);
  color: var(--white);
  font-weight: 800;
  font-size: 0.95rem;
}

.assistant-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0 4px;
  opacity: 0.85;
  line-height: 1;
}

.assistant-close:hover { opacity: 1; }

.assistant-messages {
  flex: 1;
  overflow-y: auto;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 0;
}

.msg { display: flex; }
.msg.user { justify-content: flex-end; }
.msg.ai   { justify-content: flex-start; }

.msg-bubble {
  max-width: 82%;
  padding: 9px 13px;
  border-radius: 14px;
  font-size: 0.88rem;
  line-height: 1.45;
}

.msg.user .msg-bubble {
  background: var(--green);
  color: var(--white);
  border-bottom-right-radius: 4px;
}

.msg.ai .msg-bubble {
  background: var(--soft);
  color: var(--ink);
  border-bottom-left-radius: 4px;
}

.assistant-input-row {
  display: flex;
  gap: 8px;
  padding: 10px 12px;
  border-top: 1px solid var(--line);
}

.assistant-input-row input {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 12px;
  font: inherit;
  font-size: 0.88rem;
  outline: none;
  background: var(--white);
}

.assistant-input-row input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 2px rgba(31, 122, 63, 0.12);
}

.assistant-input-row button {
  padding: 8px 14px;
  border: none;
  border-radius: 8px;
  background: var(--green);
  color: var(--white);
  font-weight: 800;
  font-size: 0.88rem;
  cursor: pointer;
  transition: background 140ms;
}

.assistant-input-row button:hover  { background: var(--green-dark); }
.assistant-input-row button:disabled { opacity: 0.6; cursor: default; }

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr;
  }

  .nav-links {
    justify-content: flex-start;
    white-space: normal;
  }

  .hero-map {
    grid-template-columns: 1fr;
  }

  .planner-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 900px) {
  .service-grid,
  .steps,
  .detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro,
  .contact-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: static;
  }

  .nav-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 16px;
  }

  h1 {
    font-size: clamp(2.7rem, 14vw, 3.8rem);
  }

  .hero-actions,
  .hero-actions .button,
  .contact-copy .button,
  .form-submit {
    width: 100%;
  }

  .area-alert {
    align-items: flex-start;
    flex-direction: column;
  }

  .area-alert a {
    width: 100%;
  }

  .service-grid,
  .steps,
  .detail-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .section,
  .contact-section {
    padding-top: 66px;
    padding-bottom: 66px;
  }
}
