/* Stonefern Landscaping – mobile-first styles */
:root {
  --green-900: #1f3d27;
  --green-800: #2f5d3a;
  --green-700: #3b7148;
  --green-600: #4a8a57;
  --green-100: #e6efe3;
  --green-50:  #f3f7f1;
  --sand:      #f7f4ec;
  --soil:      #6b4f36;
  --text:      #22301f;
  --muted:     #5c6a58;
  --border:    #cfdac9;
  --error:     #b3261e;
  --radius:    14px;
  --shadow:    0 1px 2px rgba(31,61,39,.06), 0 4px 14px rgba(31,61,39,.07);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text);
  background: var(--sand);
}
img { max-width: 100%; display: block; }
a { color: var(--green-800); }
h1, h2 { line-height: 1.15; margin: 0 0 .5em; }

.container { width: 100%; max-width: 1080px; margin: 0 auto; padding: 0 1.1rem; }
.container.narrow { max-width: 760px; }

.visually-hidden, .hp {
  position: absolute !important; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0; padding: 0; margin: -1px;
}

/* Top bar */
.topbar { background: var(--green-900); color: #fff; position: sticky; top: 0; z-index: 10; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: .75rem; min-height: 58px; }
.brand { display: flex; align-items: center; gap: .55rem; color: #fff; text-decoration: none; min-width: 0; }
.brand-mark { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 10px; background: var(--green-600); color: #fff; flex: none; }
.brand-name { font-weight: 700; font-size: .95rem; line-height: 1.1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.brand-name small { display: block; font-weight: 500; font-size: .72rem; opacity: .8; letter-spacing: .06em; text-transform: uppercase; }
.topbar-cta {
  flex: none; color: var(--green-900); background: #fff; text-decoration: none; font-weight: 700;
  font-size: .85rem; padding: .5rem .9rem; border-radius: 999px; white-space: nowrap;
}
.topbar-cta:hover { background: var(--green-100); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font: inherit; font-weight: 700; border: 0; border-radius: 999px; cursor: pointer;
  padding: .8rem 1.4rem; text-decoration: none; transition: background .15s, transform .05s;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--green-700); color: #fff; box-shadow: 0 4px 12px rgba(47,93,58,.25); }
.btn-primary:hover { background: var(--green-800); }
.btn-secondary { background: var(--green-100); color: var(--green-900); }
.btn-lg { font-size: 1.08rem; padding: 1rem 1.7rem; min-height: 54px; }
.btn-block { width: 100%; }
:focus-visible { outline: 3px solid #e2b93b; outline-offset: 2px; }

/* Hero */
.hero {
  color: #fff;
  background:
    radial-gradient(ellipse at 85% 0%, rgba(160,200,120,.28), transparent 55%),
    linear-gradient(160deg, var(--green-800) 0%, var(--green-900) 100%);
  padding: 2.6rem 0 3.4rem;
  position: relative;
  overflow: hidden;
}
.hero::after { /* gentle "lawn" curve into the next section */
  content: ""; position: absolute; left: -5%; right: -5%; bottom: -30px; height: 60px;
  background: var(--sand); border-radius: 50% 50% 0 0;
}
.hero h1 { font-size: clamp(1.9rem, 7.5vw, 3.2rem); letter-spacing: -.01em; }
.hero-pitch { font-size: 1.12rem; max-width: 34em; margin: 0 0 1.5rem; opacity: .95; }
.hero .btn-primary { background: #fff; color: var(--green-900); box-shadow: 0 6px 18px rgba(0,0,0,.2); }
.hero .btn-primary:hover { background: var(--green-100); }

/* Quote section */
.quote { padding: 1.5rem 0 3rem; }
.quote h2 { font-size: 1.7rem; color: var(--green-900); }
.section-intro { color: var(--muted); margin: 0 0 1.4rem; }

.card-block {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.1rem 1rem 1.2rem; margin: 0 0 1rem; box-shadow: var(--shadow); min-width: 0;
}
legend {
  float: left; width: 100%; padding: 0; margin: 0 0 .7rem;
  font-weight: 700; font-size: 1.08rem; color: var(--green-900); display: flex; align-items: center; gap: .55rem;
}
legend + * { clear: both; }
.step { display: inline-grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; background: var(--green-100); color: var(--green-800); font-size: .85rem; flex: none; }
.req { color: var(--error); }
.optional { color: var(--muted); font-weight: 400; font-size: .9em; }
.hint { color: var(--muted); font-size: .88rem; margin: .1rem 0 .8rem; }

/* Service cards */
.service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }
.service-card { position: relative; cursor: pointer; display: block; }
.service-card input { position: absolute; opacity: 0; inset: 0; margin: 0; pointer-events: none; }
.service-inner {
  display: flex; flex-direction: column; align-items: flex-start; gap: .35rem; height: 100%;
  padding: .8rem .75rem .85rem; border: 2px solid var(--border); border-radius: 12px; background: var(--green-50);
  font-weight: 600; font-size: .93rem; line-height: 1.25; position: relative;
  transition: border-color .15s, background .15s, box-shadow .15s; -webkit-tap-highlight-color: transparent;
}
.service-icon { font-size: 1.45rem; line-height: 1; }
.service-inner::after { /* tick badge */
  content: ""; position: absolute; top: .55rem; right: .55rem; width: 22px; height: 22px; border-radius: 50%;
  border: 2px solid var(--border); background: #fff;
}
.service-card:hover .service-inner { border-color: var(--green-600); }
.service-card input:checked + .service-inner { border-color: var(--green-700); background: var(--green-100); box-shadow: 0 0 0 1px var(--green-700) inset; }
.service-card input:checked + .service-inner::after {
  content: "✓"; color: #fff; background: var(--green-700); border-color: var(--green-700);
  display: grid; place-items: center; font-size: .75rem; font-weight: 800;
}
.service-card input:focus-visible + .service-inner { outline: 3px solid #e2b93b; outline-offset: 2px; }

/* Pills (radio) */
.pill-group { display: flex; flex-wrap: wrap; gap: .5rem; }
.pill { position: relative; cursor: pointer; }
.pill input { position: absolute; opacity: 0; inset: 0; margin: 0; pointer-events: none; }
.pill span {
  display: inline-flex; align-items: center; min-height: 44px; padding: .5rem 1rem; border-radius: 999px;
  border: 2px solid var(--border); background: var(--green-50); font-weight: 600; font-size: .93rem;
  transition: all .15s; -webkit-tap-highlight-color: transparent;
}
.pill input:checked + span { background: var(--green-700); border-color: var(--green-700); color: #fff; }
.pill input:focus-visible + span { outline: 3px solid #e2b93b; outline-offset: 2px; }

/* Fields */
.field { margin: 0 0 .95rem; min-width: 0; }
.field:last-child { margin-bottom: 0; }
.field label, .field .label { display: block; font-weight: 600; font-size: .95rem; margin: 0 0 .35rem; }
input[type="text"], input[type="tel"], input[type="email"], select, textarea {
  width: 100%; font: inherit; font-size: 16px; /* 16px stops iOS zooming on focus */
  color: var(--text); background: #fff; border: 1.5px solid var(--border); border-radius: 10px;
  padding: .75rem .85rem; min-height: 48px; transition: border-color .15s, box-shadow .15s;
  -webkit-appearance: none; appearance: none;
}
textarea { resize: vertical; min-height: 130px; }
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%233b7148' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .8rem center; padding-right: 2rem;
}
input::placeholder, textarea::placeholder { color: #93a08e; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--green-700); box-shadow: 0 0 0 3px rgba(59,113,72,.18); }
.field-row { display: flex; flex-wrap: wrap; gap: 0 .75rem; }
.field-row > .field { margin-bottom: .95rem; }
.field-row .grow { flex: 1 1 100%; }
.field-row .fixed-sm { flex: 1 1 calc(50% - .4rem); }
.is-invalid, .is-invalid:focus { border-color: var(--error) !important; box-shadow: 0 0 0 3px rgba(179,38,30,.12) !important; }
.field-error { color: var(--error); font-size: .88rem; font-weight: 600; margin: .4rem 0 0; }
.form-error-summary { background: #fdecea; color: var(--error); border: 1px solid #f3b8b3; border-radius: 10px; padding: .8rem 1rem; margin: 0 0 1rem; font-weight: 600; }

/* Upload */
.upload-zone {
  display: flex !important; flex-direction: column; align-items: center; text-align: center; gap: .2rem;
  padding: 1.3rem 1rem; border: 2px dashed var(--green-600); border-radius: 12px; background: var(--green-50);
  cursor: pointer; margin: 0 !important; transition: background .15s;
}
.upload-zone:hover { background: var(--green-100); }
#photos:focus-visible + .upload-zone { outline: 3px solid #e2b93b; outline-offset: 2px; }
.upload-icon { font-size: 1.8rem; line-height: 1; }
.upload-title { font-weight: 700; color: var(--green-800); }
.upload-sub { font-size: .85rem; color: var(--muted); font-weight: 400; }
.thumbs { list-style: none; padding: 0; margin: .75rem 0 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(84px, 1fr)); gap: .5rem; }
.thumbs:empty { display: none; }
.thumbs li { position: relative; aspect-ratio: 1; border-radius: 10px; overflow: hidden; background: var(--green-100); border: 1px solid var(--border); }
.thumbs img { width: 100%; height: 100%; object-fit: cover; }
.thumb-remove {
  position: absolute; top: 4px; right: 4px; width: 28px; height: 28px; border-radius: 50%; border: 0;
  background: rgba(20,30,20,.75); color: #fff; font-size: 1rem; line-height: 1; cursor: pointer; display: grid; place-items: center;
}
.thumb-count { grid-column: 1 / -1; font-size: .85rem; color: var(--muted); aspect-ratio: auto !important; background: none !important; border: 0 !important; }

.fine-print { text-align: center; color: var(--muted); font-size: .85rem; margin: .8rem 0 0; }

/* Thank you */
.thank-you {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 2rem 1.3rem; text-align: center; outline: none;
}
.thank-you-icon { width: 64px; height: 64px; margin: 0 auto 1rem; border-radius: 50%; background: var(--green-700); color: #fff; display: grid; place-items: center; font-size: 2rem; font-weight: 800; }
.thank-you h2 { font-size: 1.4rem; }
.thank-you p { color: var(--muted); margin: 0 0 1.3rem; }

/* Footer */
.footer { background: var(--green-900); color: rgba(255,255,255,.85); padding: 2rem 0 1.5rem; font-size: .95rem; }
.footer p { margin: 0 0 .35rem; }
.footer a { color: #fff; text-decoration: none; }
.footer a:hover { text-decoration: underline; }
.footer-inner { display: grid; gap: 1rem; }
.footer-brand { font-weight: 700; color: #fff; font-size: 1.05rem; }
.footer-small { font-size: .8rem; opacity: .7; border-top: 1px solid rgba(255,255,255,.15); padding-top: 1rem; margin-top: .25rem !important; }

/* Larger screens */
@media (min-width: 600px) {
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .field-row .grow { flex: 1 1 0; }
  .field-row .fixed-sm { flex: 0 0 130px; }
  .card-block { padding: 1.4rem 1.5rem 1.5rem; }
}
@media (min-width: 900px) {
  .container { padding: 0 1.5rem; }
  .hero { padding: 4.5rem 0 5rem; }
  .hero-pitch { font-size: 1.3rem; }
  .service-grid { grid-template-columns: repeat(4, 1fr); }
  .quote { padding-top: 2rem; }
  .quote h2 { font-size: 2rem; }
  .footer-inner { grid-template-columns: 1fr auto; align-items: start; }
  .footer-small { grid-column: 1 / -1; }
  .footer-contact { text-align: right; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { transition: none !important; animation: none !important; } }

/* Refinements after preview review */
@media (min-width: 900px) {
  .hero { text-align: center; }
  .hero-pitch { margin-left: auto; margin-right: auto; }
}

/* Keep scrolled-to targets clear of the sticky top bar */
[id], .card-block, input, select, textarea { scroll-margin-top: 76px; }
.footer-area { font-size: .88rem; opacity: .8; }

/* ---------- Services: featured Landscaping card + wide "Other" ---------- */
.service-text { display: flex; flex-direction: column; gap: .2rem; min-width: 0; }
.service-desc { font-weight: 400; font-size: .85rem; color: var(--muted); line-height: 1.35; }
.service-tag {
  align-self: flex-start; margin-top: .35rem; font-size: .72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  color: #6b4a1f; background: #f3e4c9; border: 1px solid #e3cc9f; padding: .15rem .55rem; border-radius: 999px;
}
.service-card--featured, .service-card--wide { grid-column: 1 / -1; }
.service-card--featured .service-inner {
  flex-direction: row; align-items: center; gap: .9rem; padding: 1rem 3rem 1rem 1rem;
  background: linear-gradient(135deg, #fff 0%, var(--green-50) 100%); border-color: var(--green-600);
}
.service-card--featured .service-icon {
  font-size: 1.9rem; width: 56px; height: 56px; flex: none; display: grid; place-items: center;
  background: var(--green-100); border-radius: 14px;
}
.service-card--featured .service-name { font-size: 1.1rem; color: var(--green-900); }
.service-card--featured .service-inner::after { top: 50%; margin-top: -11px; right: .9rem; }
.service-card--wide .service-inner { flex-direction: row; align-items: center; gap: .6rem; padding-right: 3rem; }
.service-card--wide .service-inner::after { top: 50%; margin-top: -11px; }

/* ---------- Step 2: conditional follow-up blocks ---------- */
.followup-wrap {
  display: grid; grid-template-rows: 0fr; opacity: 0;
  transition: grid-template-rows .32s ease, opacity .25s ease;
}
.followup-wrap.is-open { grid-template-rows: 1fr; opacity: 1; }
.followup-wrap > .followup { overflow: hidden; min-height: 0; }
.followup {
  border: 0; padding: 0; margin: 0; min-width: 0;
}
.followup-wrap.is-open > .followup {
  margin-top: .9rem; padding: 1rem .9rem 1.05rem; border: 1.5px solid var(--border); border-radius: 12px; background: var(--green-50);
}
.followup-wrap.is-first-open > .followup { margin-top: 0; }
.followup-title {
  float: left; width: 100%; margin: 0 0 .7rem; padding: 0; font-size: 1rem; color: var(--green-800);
  display: flex; align-items: center; gap: .45rem;
}
.followup-title + * { clear: both; }
.q { margin: 0 0 .9rem; }
.q:last-child { margin-bottom: 0; }
.q-label { display: block; font-weight: 600; font-size: .93rem; margin: 0 0 .45rem; }
.q-note { margin: .2rem 0 0; }
.pill-group--sm { gap: .4rem; }
.pill-group--sm .pill span { min-height: 42px; padding: .4rem .85rem; font-size: .9rem; background: #fff; }
.chip input:checked + span::before { content: "✓"; margin-right: .35rem; font-weight: 800; }

@media (min-width: 600px) {
  .service-card--wide { grid-column: span 2; }
  .followup-wrap.is-open > .followup { padding: 1.1rem 1.2rem 1.2rem; }
}
@media (min-width: 900px) {
  .service-card--featured { grid-column: span 2; }
  .service-card--wide { grid-column: span 2; }
  /* Featured card tightened so the row stays compact (grid layout: see 'Services: 3 top-level cards' below) */
  .service-grid { grid-auto-rows: 1fr; }
  .service-card--featured .service-inner { padding: .8rem 2.8rem .8rem .8rem; gap: .75rem; }
  .service-card--featured .service-icon { width: 46px; height: 46px; font-size: 1.6rem; border-radius: 12px; }
  .service-card--featured .service-text { flex-direction: row; flex-wrap: wrap; align-items: center; column-gap: .5rem; row-gap: .15rem; }
  .service-card--featured .service-name { font-size: 1.05rem; }
  .service-card--featured .service-tag { order: 1; margin-top: 0; align-self: center; }
  .service-card--featured .service-desc { order: 2; flex-basis: 100%; font-size: .82rem; }
}

/* ---------- Hero actions ---------- */
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: .6rem 1.4rem; }

/* ---------- Our work ---------- */
.work { padding: .5rem 0 3rem; }
.work h2 { font-size: 1.7rem; color: var(--green-900); }
.ba, .work-tile { margin: 0 0 1.4rem; }
.ba-pair { display: grid; grid-template-columns: 1fr; gap: .6rem; }
.ba-item { position: relative; border-radius: 12px; overflow: hidden; background: var(--green-100); box-shadow: var(--shadow); }
.ba-item img, .work-tile img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.ba-label {
  position: absolute; top: .6rem; left: .6rem; z-index: 1; font-size: .75rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  color: #fff; background: rgba(34,48,31,.78); padding: .25rem .6rem; border-radius: 999px;
}
.ba-label--after { background: var(--green-700); }
.ba figcaption, .work-tile figcaption { font-size: .92rem; color: var(--muted); margin-top: .55rem; }
.work-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.work-tile { margin: 0; }
.work-tile img { border-radius: 12px; box-shadow: var(--shadow); background: var(--green-100); }
.work-tile figcaption { font-size: .85rem; }
.work-cta { text-align: center; margin: 1.6rem 0 0; }

@media (min-width: 640px) {
  .ba-pair { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .work { padding-bottom: 4rem; }
  .work h2 { font-size: 2rem; }
  .hero-actions { justify-content: center; }
}

/* ---------- How it works (compact strip between hero and form) ---------- */
.how { padding: .9rem 0 0; position: relative; z-index: 1; }
.how-title { font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--green-700); margin: 0 0 .55rem; }
.how-steps {
  list-style: none; margin: 0; padding: .35rem 1rem; display: grid; gap: 0;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow);
}
.how-steps li { display: flex; align-items: flex-start; gap: .7rem; padding: .6rem 0; }
.how-steps li + li { border-top: 1px dashed var(--border); }
.how-num {
  flex: none; display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%;
  background: var(--green-700); color: #fff; font-weight: 800; font-size: .88rem; margin-top: .05rem;
}
.how-steps p { margin: 0; font-size: .93rem; line-height: 1.4; color: var(--muted); }
.how-steps strong { color: var(--green-900); }
.how + .quote { padding-top: 1.6rem; }

@media (min-width: 700px) {
  .how-steps { grid-template-columns: repeat(3, 1fr); gap: 1.1rem; padding: 1rem 1.2rem; }
  .how-steps li { flex-direction: column; gap: .5rem; padding: 0; }
  .how-steps li + li { border-top: 0; border-left: 1px dashed var(--border); padding-left: 1.1rem; }
}
@media (min-width: 900px) {
  .how { padding-top: 1.2rem; }
  .how-title { text-align: center; }
  .how + .quote { padding-top: 2rem; }
}

/* ---------- Sending states ---------- */
.btn.is-sending { opacity: .85; cursor: progress; }
.btn.is-sending::before {
  content: ""; width: 18px; height: 18px; border-radius: 50%; border: 2.5px solid rgba(255,255,255,.45); border-top-color: #fff;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.btn:disabled { cursor: progress; }
.send-status { text-align: center; color: var(--muted); font-size: .9rem; margin: .6rem 0 0; }
.send-error { background: #fdecea; border: 1px solid #f3b8b3; color: #7a1d17; border-radius: 12px; padding: .85rem 1rem; margin: .9rem 0 0; font-size: .93rem; }
.send-error p { margin: 0 0 .35rem; }
.send-error p:last-child { margin: 0; }
.send-error a { color: #7a1d17; font-weight: 700; word-break: break-word; }

/* ---------- Trust strip (tick points, just below the hero) ---------- */
.trust { position: relative; z-index: 1; padding: .35rem 0 0; }
.trust-points {
  list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center;
  gap: .45rem 1.4rem; font-size: .9rem; font-weight: 600; color: var(--green-900);
}
.trust-points li { display: flex; align-items: center; gap: .45rem; }
.trust-points li::before {
  content: "✓"; flex: none; display: grid; place-items: center; width: 20px; height: 20px; border-radius: 50%;
  background: var(--green-700); color: #fff; font-size: .72rem; font-weight: 800;
}
.trust + .how { padding-top: 1.4rem; }

/* ---------- Seasonal line (just under the hero, above the trust strip) ---------- */
.season { position: relative; z-index: 1; padding: 0 0 .6rem; text-align: center; }
.season-line { margin: 0; }
.season-line a {
  display: inline-block; max-width: 100%; padding: .4rem .9rem; border-radius: 10px;
  background: var(--green-50); border: 1px solid var(--border); color: var(--green-900);
  font-size: .88rem; line-height: 1.4; text-decoration: none; text-wrap: balance; overflow-wrap: anywhere;
}
.season-line a:hover { background: var(--green-100); text-decoration: underline; }
@media (min-width: 900px) { .season-line a { font-size: .92rem; } }

/* ---------- Climate note (under How it works) ---------- */
.climate-note {
  display: flex; align-items: flex-start; gap: .5rem; margin: .8rem 0 0; padding: 0 .25rem;
  font-size: .9rem; line-height: 1.45; color: var(--muted); text-wrap: pretty;
}
@media (max-width: 599px) {
  /* Stack the ticks as a tidy left-aligned list inside a centred block on phones */
  .trust-points { flex-direction: column; align-items: flex-start; width: fit-content; margin: 0 auto; }
}
@media (min-width: 900px) {
  .trust-points { font-size: .95rem; gap: .5rem 2rem; }
  .trust + .how { padding-top: 1.8rem; }
  .climate-note { display: block; max-width: 44em; margin: 1rem auto 0; text-align: center; text-wrap: balance; }
}

/* ---------- Form feedback (validation + send states) ---------- */
.card-block.is-invalid { border-color: var(--error) !important; box-shadow: 0 0 0 3px rgba(179,38,30,.12), var(--shadow) !important; }
.send-error:focus { outline: none; }
.thank-you p.thanks-skipped {
  color: #6b4a1f; background: #fbf1dc; border: 1px solid #ecd6a6; border-radius: 10px;
  padding: .7rem .9rem; font-size: .93rem; text-align: left; overflow-wrap: anywhere;
}
.thanks-skipped a { color: #6b4a1f; font-weight: 700; }

/* ---------- Services: 3 top-level cards + Garden maintenance sub-choices ---------- */
/* Phone: one card per row (Landscaping, Garden maintenance, its sub-choices, Other).
   600px+: Landscaping full row, then [Garden maintenance x2][Other], sub-choices below.
   900px+: [Landscaping][Garden maintenance][Other] in one row, sub-choices below. */
.service-grid { grid-template-columns: 1fr; grid-auto-flow: row dense; } /* dense: Other fills the slot beside Garden maintenance */
.service-card--garden .service-desc { font-size: .83rem; }
.garden-subs-wrap { grid-column: 1 / -1; display: none; }
.garden-subs-wrap.is-open { display: block; animation: gardenSubsIn .25s ease; }
@keyframes gardenSubsIn { from { opacity: 0; transform: translateY(-6px); } }
.garden-subs {
  margin: 0; min-width: 0; padding: .8rem .85rem .9rem; border: 1.5px solid var(--green-600); border-radius: 12px; background: #fff;
}
.garden-subs-title { float: left; width: 100%; padding: 0; margin: 0 0 .6rem; font-weight: 600; font-size: .93rem; color: var(--green-900); }
.garden-subs-title + * { clear: both; }
.garden-often { margin: .9rem 0 0; padding-top: .8rem; border-top: 1px dashed var(--border); }
.garden-subs.is-invalid { border-color: var(--error) !important; box-shadow: 0 0 0 3px rgba(179,38,30,.12); }
@media (min-width: 600px) {
  .service-grid { grid-template-columns: 1fr 1fr minmax(8.5rem, .6fr); }
  .service-card--featured { grid-column: 1 / -1; }
  .service-card--garden { grid-column: span 2; }
  .service-card--wide:not(.service-card--garden) { grid-column: span 1; }
  .service-card--wide:not(.service-card--garden) .service-inner { justify-content: flex-start; }
}
@media (min-width: 900px) {
  .service-grid { grid-template-columns: 1fr 1fr minmax(8.5rem, .5fr); grid-auto-rows: auto; }
  .service-card--featured, .service-card--garden, .service-card--wide:not(.service-card--garden) { grid-column: span 1; }
  .garden-subs { padding: .9rem 1.1rem 1rem; }
}
