/* ═══════════════════════════════════════════════════
   Sparkle Touch — inner pages
   Loaded after styles.css. Reuses its tokens, buttons,
   .thin/.bold headings, .reveal and .deco sparkles.
   ═══════════════════════════════════════════════════ */

/* ── active nav item ── */
.nav a[aria-current="page"] { color: var(--green); font-weight: 700; }

/* ═══════════ page hero (inner banner) ═══════════ */
.page-hero {
  position: relative;
  background: var(--cream);
  padding: 66px 0 74px;
  overflow: hidden;
  text-align: center;
}
.page-hero__inner { position: relative; }

.crumbs {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  font-size: 12.5px; color: #7d8280; margin-bottom: 18px;
}
.crumbs a:hover { color: var(--green); }
.crumbs b { color: var(--ink); font-weight: 600; }
.crumbs span { opacity: .5; }

.page-hero h1 { letter-spacing: -.02em; }
.page-hero__text {
  max-width: 640px; margin: 20px auto 0;
  font-size: 14px; line-height: 1.95; color: var(--body);
}
.page-hero .dots {
  position: absolute; width: 96px; height: 76px;
  left: -10px; bottom: -14px;
}
.deco--ph1 { left: 8%;  top: 26px;  width: 15px; height: 15px; }
.deco--ph2 { right: 9%; top: 54px;  width: 19px; height: 19px; fill: var(--ink); }
.deco--ph3 { right: 22%; bottom: 18px; width: 13px; height: 13px; }

/* ═══════════ generic section shells ═══════════ */
.sec       { padding: 88px 0; background: #fff; }
.sec--cream { background: var(--cream); }
.sec--grey  { background: var(--grey-bg); }
.sec--tight { padding: 62px 0; }

.sec-head { position: relative; max-width: 700px; margin: 0 auto 52px; text-align: center; }
.sec-head h2 { font-size: 44px; font-weight: 800; }
.sec-head .thin { font-size: 44px; }
.sec-head .bold { font-size: 47px; }
.sec-head p { margin-top: 16px; font-size: 13.5px; line-height: 1.95; color: var(--body); }
.sec-head--left { margin-inline: 0; text-align: left; }

/* eyebrow label above a heading */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--green); margin-bottom: 14px;
}
.eyebrow svg { width: 12px; height: 12px; fill: var(--green); }
.sec-head--left .eyebrow { margin-left: 0; }

/* ═══════════ two-column split ═══════════ */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.split--wide-text { grid-template-columns: 460px 1fr; }
.split__body > p { margin-top: 18px; font-size: 13.5px; line-height: 1.95; max-width: 520px; }
.split__body .ticks,
.split__body .checks { margin-top: 26px; }
.split__body .btn { margin-top: 32px; }
.split--flip .split__media { order: 2; }

.frame { margin: 0; border-radius: 14px; overflow: hidden; }
.frame img { width: 100%; height: 100%; object-fit: cover; }

/* stacked photo pair with the reference's offset look */
.stack-pair { position: relative; height: 470px; }
.stack-pair figure { position: absolute; margin: 0; border-radius: 14px; overflow: hidden; }
.stack-pair img { width: 100%; height: 100%; object-fit: cover; object-position: center 26%; }
.stack-pair__a { left: 0;    top: 0;   width: 74%; height: 330px; }
.stack-pair__b { right: 0;   bottom: 0; width: 54%; height: 268px; box-shadow: 0 0 0 8px #fff; }
.sec--cream .stack-pair__b { box-shadow: 0 0 0 8px var(--cream); }
.stack-pair .dots { position: absolute; left: 0; bottom: 6px; width: 84px; height: 68px; }

/* a small stat strip that can sit on any background */
.mini-stats {
  display: flex; flex-wrap: wrap; gap: 44px;
  margin-top: 36px; padding-top: 30px;
  border-top: 1px solid var(--line);
}
.mini-stats div b { display: block; font-size: 30px; font-weight: 800; color: var(--ink); letter-spacing: -.02em; }
.mini-stats div span { display: block; margin-top: 3px; font-size: 12px; color: var(--body); }

/* ═══════════ cards ═══════════ */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }

.card {
  background: #fff; border: 1px solid var(--line);
  border-radius: 15px; padding: 30px 28px 32px;
  transition: box-shadow .3s var(--ease), transform .3s var(--ease), border-color .3s var(--ease);
}
.sec--cream .card, .sec--grey .card { border-color: #e6e3cf; }
.card:hover { box-shadow: 0 22px 44px -30px rgba(20,30,20,.45); border-color: #cfd6cd; }
.card h3 { font-size: 17px; font-weight: 700; }
.card p { margin-top: 11px; font-size: 13px; line-height: 1.9; }

.card__icon {
  display: grid; place-items: center;
  width: 48px; height: 48px; border-radius: 14px;
  margin-bottom: 20px;
  background: var(--green-soft); color: var(--green);
}
.card__icon svg { width: 24px; height: 24px; }
.card__icon--leaf   { background: #e2f2dd; color: #3f8f2f; }
.card__icon--amber  { background: #fdf0d5; color: #d99518; }
.card__icon--orange { background: #fde8d8; color: #e07b28; }

/* ═══════════ numbered process steps ═══════════ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; counter-reset: step; }
.step { position: relative; padding-top: 8px; }
.step__num {
  display: grid; place-items: center;
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--green); color: #fff;
  font-size: 17px; font-weight: 800;
  margin-bottom: 20px;
}
.step h3 { font-size: 16px; font-weight: 700; }
.step p { margin-top: 10px; font-size: 12.5px; line-height: 1.9; }
/* connector line between steps */
.step:not(:last-child)::after {
  content: ""; position: absolute; left: 66px; top: 27px; right: -30px; height: 1px;
  background: repeating-linear-gradient(90deg, #cfd3cb 0 5px, transparent 5px 11px);
}

/* ═══════════ team ═══════════ */
.member figure {
  margin: 0 0 18px; border-radius: 15px; overflow: hidden; aspect-ratio: .84;
}
.member img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; transition: transform .6s var(--ease); }
.member:hover img { transform: scale(1.06); }
.member h3 { font-size: 16px; font-weight: 700; }
.member p { margin-top: 4px; font-size: 12.5px; color: var(--green); font-weight: 600; }
.member small { display: block; margin-top: 10px; font-size: 12px; line-height: 1.85; color: var(--body); }

/* ═══════════ service cards ═══════════ */
.svc {
  position: relative; overflow: hidden;
  border-radius: 15px; background: #fff;
  border: 1px solid var(--line);
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.svc:hover { box-shadow: 0 24px 48px -32px rgba(20,30,20,.5); border-color: #cfd6cd; }
.svc figure { margin: 0; aspect-ratio: 1.5; overflow: hidden; }
.svc figure img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; transition: transform .7s var(--ease); }
.svc:hover figure img { transform: scale(1.06); }
.svc__body { padding: 26px 26px 28px; }
.svc__body h3 { font-size: 18px; font-weight: 700; }
.svc__body p { margin-top: 11px; font-size: 12.8px; line-height: 1.9; }
.svc__foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; margin-top: 22px; padding-top: 18px;
  border-top: 1px solid var(--line);
}
.svc__price { font-size: 13px; font-weight: 700; color: var(--ink); }
.svc__price em { font-style: normal; font-weight: 500; color: var(--body); font-size: 11.5px; }
.svc__more {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12.5px; font-weight: 700; color: var(--green);
}
.svc__more svg { width: 15px; height: 15px; transition: transform .25s var(--ease); }
.svc:hover .svc__more svg { transform: translateX(3px); }

/* ═══════════ checklist ═══════════ */
.checks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px 30px; }
.checks li {
  display: flex; align-items: flex-start; gap: 11px;
  font-size: 13px; font-weight: 500; color: #2f3a33; line-height: 1.6;
}
.checks svg { flex: none; width: 17px; height: 17px; margin-top: 1px; color: var(--green); }

/* ═══════════ stars ═══════════ */
.stars { display: inline-flex; align-items: center; gap: 3px; }
.stars svg { width: 15px; height: 15px; fill: var(--orange); }
.stars svg.is-off { fill: #d9d9d1; }
.stars--sm svg { width: 13px; height: 13px; }
.stars--lg svg { width: 20px; height: 20px; }

/* ═══════════ rating panel (reviews page) ═══════════ */
.rating-panel {
  display: grid; grid-template-columns: 232px 1fr 300px;
  gap: 52px; align-items: center;
  background: #fff; border: 1px solid var(--line);
  border-radius: 18px; padding: 34px 44px;
  box-shadow: 0 26px 54px -40px rgba(20,30,20,.42);
}
.rating-score { text-align: center; }
.rating-score b {
  display: block; font-size: 62px; line-height: 1; font-weight: 800;
  color: var(--ink); letter-spacing: -.03em;
}
.rating-score .stars { margin-top: 12px; }
.rating-score p { margin-top: 10px; font-size: 12px; color: var(--body); }

.rating-bars { display: grid; gap: 9px; }
.rating-bars li { display: grid; grid-template-columns: 46px 1fr 40px; align-items: center; gap: 14px; }
.rating-bars span { font-size: 12px; color: var(--body); display: flex; align-items: center; gap: 4px; }
.rating-bars span svg { width: 11px; height: 11px; fill: var(--orange); }
.rating-bars i {
  display: block; height: 8px; border-radius: 999px;
  background: #ecece5; position: relative; overflow: hidden;
}
.rating-bars i::after {
  content: ""; position: absolute; inset: 0 auto 0 0;
  width: var(--pct); border-radius: 999px; background: var(--green);
}
.rating-bars em { font-style: normal; font-size: 11.5px; color: var(--body); text-align: right; }

.rating-actions { display: grid; gap: 10px; }

/* platform buttons — real brand marks */
.platform-btn {
  display: flex; align-items: center; gap: 13px;
  padding: 12px 16px; border-radius: 12px;
  background: #fff; border: 1px solid var(--line);
  cursor: pointer; text-align: left;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background-color .25s var(--ease);
}
.platform-btn:hover { border-color: #c3cbc2; box-shadow: 0 12px 26px -18px rgba(20,30,20,.5); }
.platform-btn svg.brand { flex: none; width: 24px; height: 24px; }
.platform-btn b { display: block; font-size: 13px; font-weight: 700; color: var(--ink); }
.platform-btn small { display: block; margin-top: 2px; font-size: 11px; color: var(--body); }
.platform-btn .stars { margin-left: auto; }
.platform-btn--yelp:hover { border-color: #ffb3b3; }
.platform-btn--google:hover { border-color: #b9cdf6; }
.platform-btn--fb:hover { border-color: #b9cdf6; }

.platform-row { display: flex; flex-wrap: wrap; gap: 12px; }
.platform-row .platform-btn { flex: 1 1 240px; }

/* ═══════════ review cards ═══════════ */
/* flex column so the author row bottom-aligns across a whole row of cards */
.review {
  position: relative;
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line);
  border-radius: 15px; padding: 26px 26px 28px;
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
.sec--cream .review { border-color: #e6e3cf; }
.review:hover { box-shadow: 0 22px 44px -30px rgba(20,30,20,.45); }
.review__top { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.review__badge { flex: none; width: 21px; height: 21px; }
.review blockquote { margin: 15px 0 0; font-size: 13px; line-height: 1.92; color: #5f6467; }
.review__who { display: flex; align-items: center; gap: 11px; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); }
.review blockquote { margin-bottom: 20px; }
.review__who img { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; }
.review__who b { display: block; font-size: 12.5px; font-weight: 700; color: var(--ink); }
.review__who small { display: block; margin-top: 2px; font-size: 11px; color: #93979a; }

/* ═══════════ forms ═══════════ */
.form { display: grid; gap: 18px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 8px; }
.field > label { font-size: 12.5px; font-weight: 600; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px;
  font: inherit; font-size: 13px; color: var(--ink);
  background: #fff; border: 1px solid #e0e0d8; border-radius: 10px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { min-height: 132px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #a9adab; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(22,101,58,.12);
}
.form .btn { justify-self: start; }
.form__note { font-size: 11.5px; color: var(--body); }

/* star rating input.
   Inputs are in DOM order 5→1 and the row is reversed, so a hovered or checked
   star also lights every star visually to its left via the sibling selector. */
.rate { display: flex; flex-direction: row-reverse; justify-content: flex-end; gap: 4px; }
.rate input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.rate label { cursor: pointer; padding: 2px; line-height: 0; }
.rate label svg { width: 27px; height: 27px; fill: #dcdcd4; transition: fill .15s var(--ease); }
.rate label:hover svg,
.rate label:hover ~ label svg,
.rate input:checked ~ label svg { fill: var(--orange); }
.rate input:focus-visible + label svg { outline: 2px solid var(--green); outline-offset: 2px; border-radius: 3px; }

/* ═══════════ contact info cards ═══════════ */
.info {
  display: flex; align-items: flex-start; gap: 16px;
  background: #fff; border: 1px solid var(--line);
  border-radius: 15px; padding: 26px 24px;
}
.sec--cream .info { border-color: #e6e3cf; }
.info__icon {
  flex: none; display: grid; place-items: center;
  width: 46px; height: 46px; border-radius: 13px;
  background: var(--green-soft); color: var(--green);
}
.info__icon svg { width: 22px; height: 22px; }
.info h3 { font-size: 15px; font-weight: 700; }
.info p, .info a { display: block; margin-top: 7px; font-size: 12.8px; line-height: 1.8; color: var(--body); }
.info a:hover { color: var(--green); }

/* ═══════════ map ═══════════ */
.map-embed {
  border-radius: 16px; overflow: hidden; border: 1px solid var(--line);
  background: var(--grey-bg); line-height: 0;
}
.map-embed iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ═══════════ FAQ ═══════════ */
.faq { max-width: 860px; margin-inline: auto; display: grid; gap: 12px; }
.faq details {
  background: #fff; border: 1px solid var(--line);
  border-radius: 13px; padding: 0 24px;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.sec--cream .faq details { border-color: #e6e3cf; }
.faq details[open] { border-color: #c6d1c5; box-shadow: 0 18px 38px -30px rgba(20,30,20,.4); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 21px 0; cursor: pointer; list-style: none;
  font-size: 14.5px; font-weight: 700; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary svg { flex: none; width: 17px; height: 17px; color: var(--green); transition: transform .25s var(--ease); }
.faq details[open] summary svg { transform: rotate(180deg); }
.faq p { padding: 0 0 22px; font-size: 13px; line-height: 1.95; max-width: 700px; }

/* ═══════════ blog ═══════════ */
.chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 44px; }
.chip {
  padding: 9px 20px; border-radius: 999px;
  border: 1px solid var(--line); background: #fff;
  font-size: 12.5px; font-weight: 600; color: #3b4340; cursor: pointer;
  transition: background-color .22s var(--ease), color .22s var(--ease), border-color .22s var(--ease);
}
.chip:hover { border-color: var(--green); color: var(--green); }
.chip.is-on { background: var(--green); border-color: var(--green); color: #fff; }

.featured {
  display: grid; grid-template-columns: 1.15fr 1fr;
  gap: 46px; align-items: center;
  margin-bottom: 58px;
}
.featured figure { margin: 0; border-radius: 16px; overflow: hidden; aspect-ratio: 1.5; }
.featured img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.featured:hover img { transform: scale(1.04); }
.featured h2 { margin-top: 16px; font-size: 32px; font-weight: 800; line-height: 1.28; }
.featured p { margin-top: 16px; font-size: 13.5px; line-height: 1.95; max-width: 520px; }

.post-meta { display: flex; align-items: center; gap: 14px; font-size: 11.5px; color: var(--body); }
.post-meta .tag {
  padding: 5px 12px; border-radius: 999px;
  background: var(--green-soft); color: var(--green);
  font-size: 11px; font-weight: 700;
}

.post {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line);
  border-radius: 15px; overflow: hidden;
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.post:hover { box-shadow: 0 24px 48px -32px rgba(20,30,20,.5); border-color: #cfd6cd; }
.post figure { margin: 0; aspect-ratio: 1.62; overflow: hidden; }
.post figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.post:hover figure img { transform: scale(1.06); }
.post__body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.post__body h3 { margin-top: 14px; font-size: 17px; font-weight: 700; line-height: 1.4; }
.post__body p { margin-top: 11px; font-size: 12.8px; line-height: 1.9; }
.post__more {
  display: inline-flex; align-items: center; gap: 7px; margin-top: auto; padding-top: 20px;
  font-size: 12.5px; font-weight: 700; color: var(--green);
}
.post__more svg { width: 15px; height: 15px; transition: transform .25s var(--ease); }
.post:hover .post__more svg { transform: translateX(3px); }

/* ═══════════ inline CTA band ═══════════ */
.cta-band {
  position: relative;
  border-radius: 18px; overflow: hidden;
  background: var(--green);
  padding: 52px 56px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(115deg, rgba(255,255,255,.06) 0 1px, transparent 1px 13px);
}
.cta-band > * { position: relative; }
.cta-band h2 { font-size: 32px; font-weight: 800; color: #fff; line-height: 1.28; }
.cta-band p { margin-top: 12px; font-size: 13.5px; line-height: 1.9; color: rgba(255,255,255,.76); max-width: 520px; }
.cta-band .btn--white { padding: 17px 32px; }

/* ═══════════ responsive ═══════════ */
@media (max-width: 1180px) {
  .rating-panel { grid-template-columns: 200px 1fr; gap: 40px; padding: 34px 32px; }
  .rating-actions { grid-column: 1 / -1; grid-template-columns: repeat(2, 1fr); }
  .split--wide-text { grid-template-columns: 380px 1fr; gap: 42px; }
  .checks { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1000px) {
  .sec { padding: 68px 0; }
  .sec-head h2 { font-size: 34px; }
  .sec-head .thin { font-size: 34px; } .sec-head .bold { font-size: 36px; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 34px; }
  .step:not(:last-child)::after { display: none; }
  .split, .split--wide-text, .featured { grid-template-columns: 1fr; gap: 36px; }
  .split--flip .split__media { order: 0; }
  .featured h2 { font-size: 26px; }
  .cta-band { padding: 40px 34px; }
  .cta-band h2 { font-size: 26px; }
  .stack-pair { height: 400px; }
}

@media (max-width: 860px) {
  .page-hero { padding: 46px 0 54px; }
  .page-hero .dots, .deco--ph1, .deco--ph2, .deco--ph3 { display: none; }
  .rating-panel { grid-template-columns: 1fr; gap: 28px; text-align: left; }
  .rating-actions { grid-template-columns: 1fr; }
  .map-embed iframe { height: 320px; }
}

@media (max-width: 560px) {
  .sec { padding: 52px 0; }
  .sec-head { margin-bottom: 36px; }
  .sec-head h2 { font-size: 27px; }
  .sec-head .thin { font-size: 26px; } .sec-head .bold { font-size: 28px; }
  .grid-2, .grid-3, .grid-4, .steps, .checks { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .mini-stats { gap: 26px; }
  .mini-stats div b { font-size: 24px; }
  .rating-score { text-align: left; }
  .rating-score b { font-size: 48px; }
  .rating-bars li { grid-template-columns: 40px 1fr 36px; gap: 10px; }
  .platform-row .platform-btn { flex: 1 1 100%; }
  .stack-pair { height: 330px; }
  .stack-pair__a { height: 220px; }
  .stack-pair__b { height: 180px; }
  .featured h2 { font-size: 22px; }
  .cta-band { padding: 32px 24px; }
  .cta-band h2 { font-size: 22px; }
  .card, .review, .svc__body, .post__body { padding-left: 22px; padding-right: 22px; }
}
