/* Self-hosted Google Fonts (latin subset, variable weight files). */
@font-face{font-family:'Cormorant Garamond';font-style:normal;font-weight:400 700;font-display:swap;src:url(/fonts/cormorant-garamond-variable.woff2) format('woff2')}
@font-face{font-family:'Cormorant Garamond';font-style:italic;font-weight:400 700;font-display:swap;src:url(/fonts/cormorant-garamond-italic-variable.woff2) format('woff2')}
@font-face{font-family:'Jost';font-style:normal;font-weight:300 700;font-display:swap;src:url(/fonts/jost-variable.woff2) format('woff2')}

/* Blooming Fantastic Garden Services — site styles.
   Palette comes straight off the logo: cream paper background, forest-green
   wordmark, blush-pink peony, and the small gold rays above the flower.
   Look: light and botanical. Cream pages, serif headings, soft arches on the
   photos, gold hairlines, green as the ink colour rather than a dark header. */

:root {
  --cream: #F8F1E8;
  --cream-2: #F2E8DB;
  --cream-3: #EADFCF;
  --paper: #FFFDFA;
  --green: #2F5238;
  --green-deep: #24412C;
  --green-2: #3D6646;
  --green-soft: #DCE6D8;
  --green-tint: #EEF3EB;
  --blush: #EBB9AC;
  --blush-deep: #D9968A;
  --blush-soft: #F7E3DC;
  --blush-text: #A8564B;   /* pink dark enough for small text on cream */
  --gold: #B3903F;
  --gold-soft: #E7D8B1;
  --ink: #23301F;
  --ink-2: #3A4A3A;
  --muted: #6B7568;
  --line: #E3D9CB;
  --white: #FFFFFF;
  --star: #E0A400;
  --radius: 10px;
  --radius-lg: 18px;
  --arch: 160px;
  --wrap: 1160px;
  --shadow: 0 22px 46px rgba(47, 82, 56, 0.16);
  --shadow-sm: 0 6px 18px rgba(47, 82, 56, 0.10);
  --font-head: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Jost", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.08;
  margin: 0 0 0.45em;
  color: var(--green);
  letter-spacing: 0.005em;
}
h1 { font-size: clamp(2.7rem, 6vw, 4.6rem); font-weight: 500; }
h2 { font-size: clamp(2.1rem, 4vw, 3.1rem); font-weight: 500; }
h3 { font-size: 1.5rem; }
h1 em, h2 em { font-style: italic; font-weight: 500; color: var(--blush-text); }
p { margin: 0 0 1em; }
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }
.section { padding: 92px 0; }
.section-paper { background: var(--paper); }
.section-green { background: var(--green); color: rgba(255, 255, 255, 0.86); }
.section-green h2, .section-green h3 { color: #fff; }
.section-blush { background: var(--blush-soft); }
.section-head { max-width: 700px; margin-bottom: 46px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.1rem; margin: 0; }
.section-green .section-head p { color: rgba(255, 255, 255, 0.74); }
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.kicker::before { content: ""; width: 28px; height: 1px; background: var(--gold); }
.section-head.center .kicker::after { content: ""; width: 28px; height: 1px; background: var(--gold); }
.section-green .kicker { color: var(--gold-soft); }
.section-green .kicker::before, .section-green .kicker::after { background: var(--gold-soft); }
.skip { position: absolute; left: -999px; top: 0; background: var(--green); color: #fff; padding: 10px 14px; z-index: 200; }
.skip:focus { left: 12px; top: 12px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 30px; border-radius: 999px; font-weight: 600; font-size: 0.98rem;
  text-decoration: none; border: 1.5px solid transparent; cursor: pointer; line-height: 1.2;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease, color .15s ease;
  font-family: var(--font-body); letter-spacing: 0.04em; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--green); color: #fff; box-shadow: 0 10px 22px rgba(47, 82, 56, 0.28); }
.btn-primary:hover { background: var(--green-2); }
.btn-blush { background: var(--blush); color: var(--green-deep); }
.btn-blush:hover { background: var(--blush-deep); color: #fff; }
.btn-ghost { background: transparent; color: var(--green); border-color: var(--green); }
.btn-ghost:hover { background: var(--green); color: #fff; }
.btn-light { background: #fff; color: var(--green); }
.btn-light:hover { background: var(--blush-soft); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.btn-outline-light:hover { background: #fff; color: var(--green); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(248, 241, 232, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s ease;
}
.site-header.is-stuck { box-shadow: 0 8px 24px rgba(47, 82, 56, 0.10); }
.header-row { display: flex; align-items: center; gap: 24px; min-height: 92px; }
.brand { display: inline-flex; align-items: center; gap: 14px; text-decoration: none; flex: 0 0 auto; }
.brand img { height: 74px; width: 74px; border-radius: 50%; border: 1px solid var(--gold-soft); background: var(--cream); }
.brand-name { font-family: var(--font-head); font-weight: 600; font-size: 1.5rem; color: var(--green); line-height: 1; }
.brand-name small { display: block; font-family: var(--font-body); font-weight: 600; font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-top: 6px; }
.nav { display: flex; gap: 4px; margin-left: auto; }
.nav a { color: var(--ink-2); text-decoration: none; font-weight: 500; padding: 10px 14px; border-radius: 999px; transition: background .15s ease, color .15s ease; letter-spacing: 0.02em; }
.nav a:hover { background: var(--green-tint); color: var(--green); }
.nav a[aria-current="page"] { color: var(--green); font-weight: 600; box-shadow: inset 0 -2px 0 var(--blush-deep); border-radius: 0; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.call-now {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--green); color: #fff; text-decoration: none; font-weight: 600;
  padding: 12px 22px; border-radius: 999px; white-space: nowrap;
  transition: background .15s ease, transform .15s ease;
}
.call-now:hover { background: var(--green-2); transform: translateY(-1px); }
.call-now svg { width: 18px; height: 18px; animation: ring 2.4s ease-in-out infinite; transform-origin: 50% 20%; }
.call-now .call-number { padding-left: 9px; border-left: 1px solid rgba(255, 255, 255, 0.35); }
@keyframes ring {
  0%, 60%, 100% { transform: rotate(0); }
  64% { transform: rotate(-14deg); } 68% { transform: rotate(12deg); } 72% { transform: rotate(-10deg); }
  76% { transform: rotate(8deg); } 80% { transform: rotate(-4deg); } 84% { transform: rotate(0); }
}
.nav-toggle { display: none; background: var(--green-tint); border: 1px solid var(--green-soft); color: var(--green); width: 46px; height: 46px; border-radius: 50%; cursor: pointer; align-items: center; justify-content: center; }
.nav-toggle svg { width: 24px; height: 24px; }
.nav-toggle .ico-close { display: none; }
.nav-toggle.is-open .ico-menu { display: none; }
.nav-toggle.is-open .ico-close { display: block; }

/* ---------- hero (home) ---------- */
.hero { position: relative; overflow: hidden; padding: 72px 0 96px; background: var(--cream); }
.hero::before {
  content: ""; position: absolute; right: -160px; top: -160px; width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(235, 185, 172, 0.45) 0%, rgba(235, 185, 172, 0) 70%);
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero h1 { margin-bottom: 20px; }
.hero .lead { font-size: 1.15rem; color: var(--ink-2); max-width: 540px; margin-bottom: 28px; font-weight: 400; }
.hero-proof { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 24px; margin-top: 30px; }
.rating-chip {
  display: inline-flex; align-items: center; gap: 8px; background: #fff; border-radius: 999px; border: 1px solid var(--line);
  padding: 9px 16px; text-decoration: none; color: var(--ink); box-shadow: var(--shadow-sm); font-size: 0.95rem;
}
.rating-chip .stars { color: var(--star); letter-spacing: 1px; font-size: 1rem; }
.rating-chip .src { font-weight: 600; color: var(--green); }
.hero-note { display: inline-flex; align-items: center; gap: 7px; color: var(--green); font-weight: 600; font-size: 0.95rem; }
.hero-note svg { width: 18px; height: 18px; color: var(--blush-deep); }
.hero-art { position: relative; }
.hero-photo {
  border-radius: var(--arch) var(--arch) var(--radius-lg) var(--radius-lg); overflow: hidden; box-shadow: var(--shadow);
  width: 78%; margin-left: auto; border: 6px solid #fff; position: relative; z-index: 1;
}
.hero-photo img { width: 100%; height: 560px; object-fit: cover; }
.hero-photo-2 {
  position: absolute; left: 0; bottom: -28px; width: 46%; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); border: 6px solid #fff; z-index: 2;
}
.hero-photo-2 img { width: 100%; height: 220px; object-fit: cover; }
.hero-mark { position: absolute; right: -24px; top: -30px; width: 150px; opacity: 0.9; z-index: 0; animation: floaty 7s ease-in-out infinite; }
@keyframes floaty { 0%, 100% { transform: translateY(0) rotate(-3deg); } 50% { transform: translateY(-10px) rotate(3deg); } }
.hero-badge {
  position: absolute; left: 6%; top: 28px; z-index: 3; background: var(--paper); color: var(--green);
  border-radius: 999px; padding: 10px 18px 10px 10px; box-shadow: var(--shadow); font-size: 0.9rem; line-height: 1.3;
  display: flex; align-items: center; gap: 10px; border: 1px solid var(--gold-soft);
}
.hero-badge img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.hero-badge strong { display: block; font-family: var(--font-head); font-size: 1.15rem; }
.hero-badge small { color: var(--muted); font-size: 0.82rem; }

/* ---------- trust strip ---------- */
.trust { padding: 22px 0; background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.trust li { display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--green); }
.trust .ico { width: 46px; height: 46px; border-radius: 50%; background: var(--blush-soft); color: var(--green); display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.trust .ico svg { width: 22px; height: 22px; }
.trust small { display: block; font-weight: 400; color: var(--muted); font-size: 0.88rem; }

/* ---------- services grid ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.svc-card {
  display: flex; flex-direction: column; background: var(--paper); border-radius: var(--radius-lg); padding: 28px 24px;
  text-decoration: none; color: var(--ink); border: 1px solid var(--line);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--blush); }
.svc-card .pic { display: block; margin: -28px -24px 0; height: 160px; border-radius: var(--radius-lg) var(--radius-lg) 0 0; overflow: hidden; background: var(--cream-3); }
.svc-card .pic img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.svc-card:hover .pic img { transform: scale(1.05); }
.svc-card .pic + .ico { position: relative; margin-top: -28px; border: 4px solid var(--paper); box-sizing: content-box; }
.svc-card .ico { width: 56px; height: 56px; border-radius: 50%; background: var(--green-tint); color: var(--green); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.svc-card .ico svg { width: 28px; height: 28px; }
.svc-card h3 { font-size: 1.45rem; margin-bottom: 8px; }
.svc-card p { color: var(--muted); font-size: 0.98rem; margin: 0 0 14px; flex: 1; }
.svc-card .more { font-weight: 600; color: var(--blush-text); font-size: 0.86rem; text-transform: uppercase; letter-spacing: 0.1em; }
.svc-card .more::after { content: " \2192"; }
.svc-cta { text-align: center; margin-top: 36px; }

/* ---------- split / about ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split .big { font-family: var(--font-head); font-size: 1.55rem; font-style: italic; color: var(--green); line-height: 1.35; }
.split p { color: var(--ink-2); }
.frame { position: relative; }
.frame > img { border-radius: var(--arch) var(--arch) var(--radius-lg) var(--radius-lg); box-shadow: var(--shadow); width: 100%; height: 560px; object-fit: cover; border: 6px solid #fff; }
.frame::after { content: ""; position: absolute; left: -18px; top: 18px; width: 100%; height: 100%; border: 1px solid var(--gold); border-radius: var(--arch) var(--arch) var(--radius-lg) var(--radius-lg); z-index: -1; }
.owner-badge {
  position: absolute; left: 22px; bottom: 22px; background: var(--paper); color: var(--green); border-radius: 999px;
  display: flex; align-items: center; gap: 12px; padding: 8px 20px 8px 8px; box-shadow: var(--shadow); border: 1px solid var(--gold-soft);
}
.owner-badge img { width: 48px; height: 48px; border-radius: 50%; border: 2px solid var(--blush); object-fit: cover; }
.owner-badge strong { display: block; font-family: var(--font-head); font-size: 1.2rem; }
.owner-badge small { color: var(--muted); font-size: 0.82rem; }
.ticks { list-style: none; padding: 0; margin: 22px 0 28px; display: grid; gap: 12px; }
.ticks li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-2); }
.ticks svg { width: 22px; height: 22px; flex: 0 0 auto; color: var(--green); background: var(--blush-soft); border-radius: 50%; padding: 4px; margin-top: 3px; }
.ticks strong { color: var(--green); font-weight: 600; }

/* ---------- why cards ---------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why-card { background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.14); border-radius: var(--radius-lg); padding: 32px 28px; }
.why-card .ico { width: 54px; height: 54px; border-radius: 50%; background: var(--blush); color: var(--green-deep); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.why-card .ico svg { width: 26px; height: 26px; }
.why-card h3 { font-size: 1.5rem; }
.why-card p { margin: 0; color: rgba(255, 255, 255, 0.76); }

/* ---------- quote band ---------- */
.quote-band { text-align: center; padding: 80px 0; background: var(--blush-soft); position: relative; overflow: hidden; }
.quote-band .mark { width: 120px; margin: 0 auto 10px; opacity: 0.95; }
.quote-band blockquote { margin: 0 auto; max-width: 780px; font-family: var(--font-head); font-size: clamp(1.6rem, 3vw, 2.3rem); font-style: italic; line-height: 1.35; color: var(--green); }
.quote-band cite { display: block; font-family: var(--font-body); font-style: normal; font-size: 0.85rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-top: 18px; font-weight: 600; }

/* ---------- reviews ---------- */
.reviews-wrap { margin-top: 8px; }
.rv-bar { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 28px; background: var(--paper); border-radius: var(--radius-lg); padding: 20px 26px; box-shadow: var(--shadow-sm); margin-bottom: 20px; border: 1px solid var(--line); }
.rv-score { display: flex; align-items: center; gap: 10px; }
.rv-score strong { font-family: var(--font-head); font-size: 2.3rem; line-height: 1; color: var(--green); }
.rv-stars { color: var(--star); letter-spacing: 2px; font-size: 18px; line-height: 1; white-space: nowrap; }
.rv-count { color: var(--muted); font-size: 0.95rem; }
.rv-src { font-weight: 600; color: var(--green); }
.rv-cta { margin-left: auto; }
.rv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; list-style: none; margin: 0; padding: 0; }
.rv-grid.one { grid-template-columns: minmax(0, 620px); justify-content: center; }
.rv-card { background: var(--paper); border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 10px; border: 1px solid var(--line); border-top: 3px solid var(--blush); }
.rv-head { display: flex; align-items: center; gap: 12px; }
.rv-avatar { flex: 0 0 auto; width: 44px; height: 44px; border-radius: 50%; background: var(--green); color: #fff; font-family: var(--font-head); font-weight: 600; font-size: 1.3rem; display: flex; align-items: center; justify-content: center; }
.rv-who { display: flex; flex-direction: column; min-width: 0; }
.rv-who strong { color: var(--ink); font-size: 1rem; line-height: 1.3; font-weight: 600; }
.rv-who small { color: var(--muted); font-size: 0.82rem; }
.rv-text { color: var(--ink); line-height: 1.5; margin: 0; flex: 1; font-family: var(--font-head); font-size: 1.25rem; }
.rv-source { display: inline-flex; align-items: center; gap: 6px; font-size: 0.76rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.rv-source::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--blush-deep); }
.review-links { text-align: center; margin-top: 28px; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
/* Placeholder for the Google reviews widget once there are Google reviews. */
.widget-placeholder { margin-top: 28px; border: 1.5px dashed var(--gold); border-radius: var(--radius-lg); padding: 30px 24px; text-align: center; color: var(--muted); background: rgba(255,255,255,0.55); }
.widget-placeholder strong { display: block; font-family: var(--font-head); color: var(--green); font-size: 1.4rem; margin-bottom: 4px; }
.widget-placeholder p { margin: 0; font-size: 0.95rem; }

/* ---------- before / after ---------- */
.ba-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.ba { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.ba figure { margin: 0; position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); background: var(--cream-3); }
.ba img { width: 100%; height: 300px; object-fit: cover; }
.ba figcaption { position: absolute; left: 12px; top: 12px; font-family: var(--font-body); text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.78rem; font-weight: 600; padding: 6px 14px; border-radius: 999px; background: rgba(35, 48, 31, 0.78); color: #fff; }
.ba figure.after figcaption { background: var(--blush); color: var(--green-deep); }
.ba-title { font-family: var(--font-head); font-size: 1.35rem; color: var(--green); margin: 14px 0 0; text-align: center; }

/* ---------- gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 240px; gap: 14px; }
.gallery figure { margin: 0; position: relative; border-radius: var(--radius-lg); overflow: hidden; background: var(--cream-3); }
.gallery figure.tall { grid-row: span 2; }
.gallery figure.wide { grid-column: span 2; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery figure:hover img { transform: scale(1.04); }
.gallery figcaption {
  position: absolute; left: 12px; bottom: 12px; background: rgba(255, 253, 250, 0.92); color: var(--green);
  font-family: var(--font-body); letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.74rem; font-weight: 600; padding: 6px 14px; border-radius: 999px;
}

/* ---------- steps ---------- */
.steps { list-style: none; counter-reset: step; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.steps li { counter-increment: step; background: var(--paper); border-radius: var(--radius-lg); padding: 36px 26px 26px; position: relative; border: 1px solid var(--line); }
.steps li::before {
  content: counter(step, decimal-leading-zero); position: absolute; top: -20px; left: 24px;
  background: var(--green); color: #fff; font-family: var(--font-head); font-weight: 600; font-size: 1.05rem;
  width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 14px rgba(47, 82, 56, 0.3);
}
.steps h3 { font-size: 1.45rem; margin-top: 4px; }
.steps p { color: var(--muted); margin: 0; }

/* ---------- area pills ---------- */
.area { text-align: center; }
.area-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 0 0 26px; padding: 0; list-style: none; }
.area-pills li { background: var(--paper); border: 1px solid var(--line); border-radius: 999px; padding: 9px 18px; font-weight: 500; color: var(--ink-2); }
.area-pills li.hi { background: var(--green); color: #fff; border-color: var(--green); }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 860px; }
.faq { display: grid; gap: 10px; }
.faq-item { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 0 24px; }
.faq-item summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 0; font-family: var(--font-head); font-weight: 600; font-size: 1.3rem; color: var(--green); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary svg { width: 22px; height: 22px; flex: 0 0 auto; color: var(--blush-deep); transition: transform .2s ease; }
.faq-item[open] summary svg { transform: rotate(180deg); }
.faq-item p { color: var(--ink-2); margin: 0 0 20px; }

/* ---------- inner page banner ---------- */
.banner { background: var(--cream); padding: 70px 0 56px; border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
.banner::before {
  content: ""; position: absolute; right: -120px; top: -180px; width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(235, 185, 172, 0.5) 0%, rgba(235, 185, 172, 0) 70%);
}
.banner .wrap { position: relative; }
.banner h1 { margin-bottom: 12px; }
.banner p { color: var(--ink-2); font-size: 1.15rem; max-width: 640px; margin-bottom: 20px; }
.banner .mark { position: absolute; right: 22px; top: -10px; width: 120px; opacity: 0.85; }

/* ---------- service detail rows ---------- */
.svc-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; padding: 44px 0; border-bottom: 1px solid var(--line); }
.svc-detail:last-of-type { border-bottom: 0; }
.svc-detail.flip .svc-detail-img { order: 2; }
.svc-detail-img img { border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); width: 100%; height: 360px; object-fit: cover; border: 6px solid #fff; }
.svc-detail.flip .svc-detail-img img { border-radius: var(--arch) var(--arch) var(--radius-lg) var(--radius-lg); }
.svc-detail h2 { font-size: 2.3rem; }
.svc-detail p { color: var(--ink-2); }
.svc-detail ul { color: var(--ink-2); padding-left: 20px; margin: 0 0 18px; }
.svc-detail .num { font-family: var(--font-body); font-weight: 600; font-size: 0.8rem; color: var(--gold); letter-spacing: 0.22em; margin-bottom: 8px; display: block; text-transform: uppercase; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--green); color: #fff; padding: 80px 0; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; left: -140px; bottom: -220px; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, rgba(235, 185, 172, 0.22) 0%, rgba(235, 185, 172, 0) 70%); }
.cta-band .wrap { position: relative; }
.cta-band h2 { color: #fff; }
.cta-band h2 em { color: var(--blush); }
.cta-band p { color: rgba(255, 255, 255, 0.8); max-width: 580px; margin: 0 auto 26px; font-size: 1.1rem; }
.cta-band .btn-row { justify-content: center; }

/* ---------- contact ---------- */
.contact { padding: 92px 0; background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 52px; align-items: start; }
.contact-info p { color: var(--ink-2); }
.contact-info .clist { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 18px; }
.contact-info .clist > li { display: flex; gap: 14px; align-items: flex-start; }
.contact-info .lbl { display: block; font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--gold); font-weight: 600; margin-bottom: 2px; }
.contact-info .val { display: block; font-size: 1.05rem; }
.contact-info .val a { color: var(--green); text-decoration: none; font-weight: 600; }
.contact-info .val a:hover { text-decoration: underline; }
.contact-info .ico { width: 46px; height: 46px; border-radius: 50%; background: var(--paper); border: 1px solid var(--line); display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; color: var(--green); }
.contact-info .ico svg { width: 20px; height: 20px; }
.form-card { background: var(--paper); border-radius: var(--radius-lg); padding: 38px; box-shadow: var(--shadow); position: relative; border: 1px solid var(--line); }
.form-card h3 { margin-bottom: 4px; font-size: 1.8rem; }
.form-card > p { color: var(--muted); margin-bottom: 20px; }
.field { display: grid; gap: 6px; margin-bottom: 16px; }
.field label { font-size: 0.9rem; font-weight: 600; color: var(--green); }
.field input, .field textarea {
  width: 100%; font: inherit; font-size: 16px; padding: 12px 16px; border: 1px solid var(--line); border-radius: var(--radius);
  background: #fff; color: var(--ink);
}
.field input:focus, .field textarea:focus { outline: 2px solid var(--blush); outline-offset: 1px; border-color: var(--blush-deep); }
.field textarea { min-height: 120px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #A5AC9F; opacity: 1; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.char-count { font-size: 12px; color: var(--muted); text-align: right; margin-top: -2px; }
.gotcha { position: absolute; left: -9999px; top: -9999px; height: 0; width: 0; opacity: 0; }
.form-error { display: none; color: #B42318; background: #FEF3F2; border: 1px solid #FECDCA; border-radius: var(--radius); padding: 10px 12px; font-size: 0.95rem; margin-bottom: 14px; }
.form-error.is-on { display: block; }
.form-error a { color: #B42318; font-weight: 600; }
.form-success { display: none; text-align: center; padding: 30px 10px; }
.form-success.is-on { display: block; }
.form-success .tick { width: 64px; height: 64px; border-radius: 50%; background: var(--blush-soft); color: var(--green); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.form-success .tick svg { width: 32px; height: 32px; }
.form-success h3 { margin-bottom: 8px; }
.form-success p { color: var(--muted); margin: 0; }
.form-success a { color: var(--green); font-weight: 600; }
.form-card .btn { width: 100%; }
.form-note { font-size: 0.85rem; color: var(--muted); text-align: center; margin: 12px 0 0; }

/* ---------- footer ---------- */
.site-footer { background: var(--green-deep); color: rgba(255, 255, 255, 0.8); padding: 64px 0 24px; border-top: 4px solid var(--blush); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 36px; border-bottom: 1px solid rgba(255, 255, 255, 0.14); }
.footer-logo { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 14px; text-decoration: none; color: #fff; }
.footer-logo img { height: 64px; width: 64px; border-radius: 50%; }
.footer-logo strong { font-family: var(--font-head); font-size: 1.4rem; font-weight: 600; }
.site-footer h4 { color: var(--blush); font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase; margin-bottom: 14px; font-weight: 600; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.site-footer a[href^="mailto"] { white-space: nowrap; }
@media (max-width: 420px) {
  .site-footer a[href^="mailto"] { font-size: 0.8rem; letter-spacing: -0.01em; }
  .contact-info .val a[href^="mailto"] { font-size: 0.9rem; }
}
.site-footer a { color: #fff; text-decoration: none; }
.site-footer ul a { display: inline-block; padding: 4px 0; }
.site-footer a:hover { text-decoration: underline; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; padding-top: 20px; font-size: 0.9rem; }
.footer-credit { color: #fff; }
.footer-credit a { color: #fff; text-decoration: underline; }

/* ---------- chat popup ---------- */
.chat-toggle {
  position: fixed; right: 20px; bottom: 20px; z-index: 150;
  width: 64px; height: 64px; border-radius: 50%; border: 3px solid var(--blush); padding: 0; cursor: pointer;
  background: var(--green); box-shadow: 0 10px 30px rgba(36, 65, 44, 0.35); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.chat-toggle img { width: 100%; height: 100%; object-fit: cover; }
.chat-toggle .ico-x { display: none; color: #fff; width: 26px; height: 26px; }
.chat-toggle.is-open img { display: none; }
.chat-toggle.is-open .ico-x { display: block; }
.chat-badge {
  position: fixed; right: 92px; bottom: 34px; z-index: 149; background: var(--paper); color: var(--green); border: 1px solid var(--gold-soft);
  font-size: 0.9rem; font-weight: 600; padding: 8px 16px; border-radius: 999px; box-shadow: 0 6px 18px rgba(36, 65, 44, 0.18); white-space: nowrap;
}
.chat-badge.is-hidden { display: none; }
.chat-panel {
  position: fixed; right: 20px; bottom: 96px; z-index: 150; width: 360px; max-width: calc(100vw - 40px);
  max-height: min(780px, calc(100vh - 116px)); overflow-y: auto;
  background: var(--paper); border-radius: var(--radius-lg); box-shadow: 0 20px 50px rgba(36, 65, 44, 0.3);
  display: none; border: 1px solid var(--line);
}
.chat-panel.is-open { display: block; }
.chat-head { display: flex; align-items: center; gap: 12px; background: var(--green); color: #fff; padding: 14px 16px; }
.chat-head img { width: 42px; height: 42px; border-radius: 50%; border: 2px solid var(--blush); object-fit: cover; }
.chat-head strong { display: block; font-size: 1.15rem; font-family: var(--font-head); }
.chat-head small { color: rgba(255, 255, 255, 0.78); font-size: 0.85rem; display: block; line-height: 1.3; }
.chat-close { margin-left: auto; background: none; border: 0; color: #fff; cursor: pointer; padding: 6px; }
.chat-close svg { width: 20px; height: 20px; }
.chat-body { padding: 16px; position: relative; }
.chat-body [data-form-intro] { font-size: 0.92rem; color: var(--muted); margin: 0 0 12px; }
.chat-body .field { margin-bottom: 10px; gap: 3px; }
.chat-body .field label { font-size: 0.82rem; }
.chat-body .field input, .chat-body .field textarea { padding: 9px 12px; }
.chat-body .field textarea { min-height: 70px; }
.chat-body .char-count { margin-top: -4px; }
.chat-body .btn { width: 100%; padding: 12px 20px; }
.chat-body .form-success { padding: 18px 6px; }
@media (max-height: 800px) {
  .chat-body [data-form-intro] { display: none; }
  .chat-body .field textarea { min-height: 56px; }
}

/* ---------- 404 ---------- */
.notfound { padding: 100px 0; text-align: center; }
.notfound p { color: var(--muted); max-width: 480px; margin: 0 auto 24px; }
.notfound .btn-row { justify-content: center; }
.notfound .mark { width: 140px; margin: 0 auto 10px; }

/* ---------- motion (opt-in from JS) ---------- */
.js-anim .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.js-anim .reveal.is-in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust ul { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .rv-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { margin-top: 24px; }
  .hero-photo { width: 100%; }
  .hero-photo img { height: 400px; }
  .hero-photo-2 { display: none; }
  .hero-mark { display: none; }
  .hero-badge { left: 12px; top: auto; bottom: 16px; }
  .brand-name { display: none; }
  .ba-grid { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%; background: var(--cream); flex-direction: column;
    padding: 12px 16px 18px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); gap: 2px;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 13px 14px; border-radius: var(--radius); }
  .nav a[aria-current="page"] { box-shadow: inset 3px 0 0 var(--blush-deep); padding-left: 18px; }
  .nav-toggle { display: inline-flex; order: 1; }
  .header-actions .call-now { order: 2; }
  .header-row { min-height: 76px; gap: 12px; }
  .brand img { height: 56px; width: 56px; }
  .call-now .call-number { display: none; }
  .section { padding: 64px 0; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .frame > img { height: 400px; }
  .svc-detail { grid-template-columns: 1fr; gap: 22px; padding: 30px 0; }
  .svc-detail.flip .svc-detail-img { order: 0; }
  .svc-detail-img img { height: 260px; }
  .contact-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 28px; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .form-card { padding: 26px 20px; }
  .rv-cta { margin-left: 0; width: 100%; }
  .banner .mark { display: none; }
}
@media (max-width: 560px) {
  :root { --arch: 110px; }
  .hero { padding: 40px 0 60px; }
  .hero-photo img { height: 300px; }
  .hero-badge { padding: 7px 12px 7px 7px; font-size: 0.82rem; }
  .svc-grid { grid-template-columns: 1fr; }
  .trust ul { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .gallery figure.wide { grid-column: span 2; }
  .rv-grid { grid-template-columns: 1fr; }
  .ba img { height: 200px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .btn { width: 100%; white-space: normal; }
  .btn-row { flex-direction: column; }
  .call-now { padding: 11px 14px; }
  .chat-badge { display: none; }
  .frame::after { display: none; }
  .quote-band { padding: 56px 0; }
}
@media (max-width: 360px) {
  .brand img { height: 48px; width: 48px; }
  .call-now { padding: 10px 12px; font-size: 0.92rem; }
  .nav-toggle { width: 42px; height: 42px; }
  .ba { grid-template-columns: 1fr; }
}

/* ---------- mobile: touch targets and vertical budget ---------- */
@media (max-width: 860px) {
  a[href^="tel:"], a[href^="mailto:"] { padding-block: 11px; }
  .contact-info .val a,
  .footer-credit a,
  .rating-chip { min-height: 44px; display: inline-flex; align-items: center; }
  .contact-info .val a { padding-block: 0; }
  .site-footer ul { gap: 0; }
  .site-footer ul a { padding: 11px 0; min-height: 44px; }
  .site-footer ul li:not(:has(a)) { padding: 11px 0; }
  .section { padding: 54px 0; }
  .section-head { margin-bottom: 32px; }
  .svc-card { padding: 22px 20px; }
  .svc-card .pic { margin: -22px -20px 0; height: 140px; }
  .steps li { padding: 30px 22px 22px; }
  .contact { padding: 56px 0; }
  .cta-band { padding: 56px 0; }
  .site-footer { padding: 44px 0 20px; }
  .footer-grid { padding-bottom: 28px; }
  .area-pills { gap: 8px; }
  .area-pills li { padding: 8px 14px; font-size: 0.95rem; }
}
@media (max-width: 560px) {
  .section { padding: 46px 0; }
  .banner { padding: 40px 0 32px; }
  .site-footer { padding-bottom: 84px; }
  .hero .kicker { margin-bottom: 12px; }
  .hero h1 { margin-bottom: 14px; }
  .hero .lead { font-size: 1.05rem; margin-bottom: 20px; }
}
