/* Nooshki Homepage — layout styles, built on design-system tokens only. */

* { box-sizing: border-box; }
html, body { margin: 0; }
body {
  background: var(--cream);
  color: var(--text-body);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}
:root { --maxw: 1200px; --nav-h: 104px; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
.eyebrow {
  font-family: var(--font-ui); font-weight: 700; text-transform: uppercase;
  letter-spacing: var(--tracking-wider); font-size: 12px; color: var(--brown-mid);
}
.serif { font-family: var(--font-serif); }
em.warm { font-style: italic; color: var(--brown-mid); }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50; height: var(--nav-h);
  display: flex; align-items: center;
  background: color-mix(in srgb, var(--cream) 82%, transparent);
  backdrop-filter: saturate(1.1) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--duration-base) var(--ease-standard),
              background var(--duration-base) var(--ease-standard);
}
.nav.is-scrolled { border-bottom-color: var(--border-subtle); background: color-mix(in srgb, var(--cream) 92%, transparent); }
.nav__row { display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 24px; }
.nav__logo { display: flex; align-items: center; cursor: pointer; }
.nav__logo img { height: 94px; width: auto; display: block; }
.nav__links { display: flex; align-items: center; gap: 8px; }
.nav__link {
  background: var(--white); border: 1.5px solid var(--border-subtle); cursor: pointer;
  padding: 9px 19px; border-radius: var(--radius-pill);
  font-family: var(--font-ui); font-size: 16px; font-weight: 600; color: var(--text-body);
  transition: color var(--duration-fast) var(--ease-standard),
              background var(--duration-fast) var(--ease-standard),
              border-color var(--duration-fast) var(--ease-standard),
              transform var(--duration-fast) var(--ease-standard),
              box-shadow var(--duration-fast) var(--ease-standard);
}
.nav__link:hover { color: var(--brown-deep); background: var(--peach-soft); border-color: var(--peach-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.nav__link:active { transform: translateY(0); }
.nav__right { display: flex; align-items: center; gap: 20px; }
.nav__phone {
  display: inline-flex; align-items: center; gap: 8px; text-decoration: none; white-space: nowrap;
  font-family: var(--font-ui); font-size: 14.5px; font-weight: 600; color: var(--brown-deep);
}
.nav__phone svg { color: var(--peach-deep); }
@media (max-width: 1024px) { .nav__links, .nav__phone { display: none; } }

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(48px, 7vw, 96px) 0 clamp(56px, 6vw, 92px); overflow: hidden; }
.hero__bgwash {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(60% 70% at 82% 8%, var(--peach-soft) 0%, transparent 60%),
    radial-gradient(50% 60% at 8% 90%, var(--rose-soft) 0%, transparent 55%);
}
.hero__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 0.81fr 1.19fr; gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero__copy { max-width: 560px; }
.hero__eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 22px; }
.hero__eyebrow .eyebrow { font-size: 24px; }
.hero__eyebrow .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--peach-deep); }
.hero h1 {
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(46px, 6vw, 76px); line-height: 1.02; letter-spacing: -0.02em;
  color: var(--brown-deep); margin: 0 0 22px;
}
.hero__lead {
  font-family: var(--font-ui); font-size: clamp(17px, 1.4vw, 19px); line-height: 1.65;
  color: var(--text-body); margin: 0 0 34px; max-width: 480px;
}
.hero__cta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero__reassure {
  display: flex; align-items: center; gap: 10px; margin-top: 26px;
  font-family: var(--font-ui); font-size: 14px; color: var(--text-secondary);
}
.hero__reassure svg { color: var(--success); }

/* Hero image cluster */
.hero__media { position: relative; }
.hero__photo { width: 100%; aspect-ratio: 4 / 3; box-shadow: var(--shadow-lg); }
.hero__photo--main { border-radius: var(--radius-lg); }

/* Rotating hero gallery */
.gallery { position: relative; }
.gallery__stage {
  position: relative; width: 100%; aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
}
.gallery__slot {
  opacity: 0; pointer-events: none;
  transition: opacity .6s cubic-bezier(0.33, 0, 0.2, 1);
}
.gallery__slot.is-active { opacity: 1; pointer-events: auto; }
.gallery__controls {
  position: absolute; left: 50%; bottom: 16px; transform: translateX(-50%);
  z-index: 4; display: flex; align-items: center; gap: 8px;
  padding: 7px 11px; border-radius: var(--radius-pill);
  background: color-mix(in srgb, var(--white) 86%, transparent);
  border: 1px solid var(--border-subtle); box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.gallery__dot {
  width: 9px; height: 9px; padding: 0; border: 0; cursor: pointer;
  border-radius: 50%; background: var(--rose);
  transition: transform .16s ease, background .16s ease;
}
.gallery__dot:hover { background: var(--peach-deep); }
.gallery__dot.is-active { background: var(--peach-deep); transform: scale(1.3); }
.gallery__sep { width: 1px; height: 16px; background: var(--border-subtle); }
.gallery__add {
  display: inline-flex; align-items: center; gap: 5px;
  border: 0; cursor: pointer; padding: 4px 9px; border-radius: var(--radius-pill);
  background: transparent; color: var(--text-secondary);
  font-family: var(--font-ui); font-size: 12px; font-weight: 700;
  transition: background .16s ease, color .16s ease;
}
.gallery__add svg { color: var(--peach-deep); }
.gallery__add:hover, .gallery__add.is-active { background: var(--peach-soft); color: var(--brown-deep); }
@media (prefers-reduced-motion: reduce) {
  .gallery__slot { transition: none; }
}
.hero__chip {
  position: absolute; left: -22px; bottom: 30px;
  background: var(--white); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md); box-shadow: var(--shadow-md);
  padding: 14px 18px; display: flex; align-items: center; gap: 13px;
}
.hero__chip .stars { display: flex; gap: 2px; color: var(--peach-deep); }
.hero__chip .stars svg { width: 15px; height: 15px; }
.hero__chip b { font-family: var(--font-serif); font-size: 22px; color: var(--brown-deep); line-height: 1; }
.hero__chip small { font-family: var(--font-ui); font-size: 12.5px; color: var(--text-secondary); }
.hero__chip .div { width: 1px; height: 30px; background: var(--border-subtle); }
@media (max-width: 1220px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { max-width: 460px; }
  .hero__copy { max-width: none; }
}

/* ---------- Trust strip ---------- */
.trust { border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); background: var(--cream-2); }
.trust__row { display: flex; align-items: center; justify-content: space-evenly; gap: 14px 0; padding: 22px 0; flex-wrap: wrap; }
.trust__item { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font-ui); font-size: 15px; font-weight: 600; color: var(--brown-deep); }
.trust__item svg { color: var(--peach-deep); flex: none; }
.trust__sep { width: 1px; height: 22px; background: var(--border-default); opacity: .6; }
@media (max-width: 760px) { .trust__sep { display: none; } .trust__row { gap: 16px 28px; justify-content: center; } }

/* ---------- Section scaffolding ---------- */
.section { padding: clamp(64px, 8vw, 120px) 0; }
.section--soft { background: var(--peach-light); }
.section__head { max-width: 640px; margin: 0 auto clamp(40px, 5vw, 64px); text-align: center; }
.section__head.left { margin-left: 0; text-align: left; }
.section__head .eyebrow { display: block; margin-bottom: 16px; }
.section__head h2 {
  font-family: var(--font-serif); font-weight: 500; font-size: clamp(34px, 4.4vw, 54px);
  line-height: 1.06; letter-spacing: -0.02em; color: var(--brown-deep); margin: 0 0 16px;
}
.section__head p { font-family: var(--font-ui); font-size: 17px; line-height: 1.65; color: var(--text-body); margin: 0; }

/* ---------- Services ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 920px) { .svc-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }
.svc {
  display: flex; flex-direction: column; background: var(--white);
  border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--duration-base) var(--ease-standard), transform var(--duration-base) var(--ease-standard), border-color var(--duration-base) var(--ease-standard);
}
.svc:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--rose); }
.svc__photo { width: 100%; aspect-ratio: 16 / 11; display: block; }
.svc__body { padding: 26px 26px 28px; display: flex; flex-direction: column; gap: 13px; flex: 1; }
.svc__ico {
  width: 46px; height: 46px; border-radius: var(--radius-md); margin-bottom: 2px;
  background: var(--peach-soft); color: var(--brown-deep); display: grid; place-items: center;
}
.svc__ico svg { width: 23px; height: 23px; }
.svc h3 { font-family: var(--font-serif); font-weight: 600; font-size: 26px; line-height: 1.1; color: var(--brown-deep); margin: 0; }
.svc p { font-family: var(--font-ui); font-size: 15px; line-height: 1.6; color: var(--text-body); margin: 0; }
.svc__link {
  margin-top: auto; padding-top: 8px; display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  background: none; border: none; cursor: pointer; align-self: flex-start;
  font-family: var(--font-ui); font-size: 14.5px; font-weight: 700; color: var(--brown-deep);
}
.svc__link svg { transition: transform var(--duration-fast) var(--ease-standard); }
.svc__link:hover svg { transform: translateX(4px); }

/* ---------- Why Nooshki ---------- */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 980px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .why-grid { grid-template-columns: 1fr; } }
.why {
  background: var(--white); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg);
  padding: 30px 26px; display: flex; flex-direction: column; gap: 12px;
}
.why__ico { width: 50px; height: 50px; border-radius: 999px; background: var(--peach); color: var(--brown-deep); display: grid; place-items: center; margin-bottom: 6px; }
.why__ico svg { width: 25px; height: 25px; }
.why h3 { font-family: var(--font-serif); font-weight: 600; font-size: 22px; color: var(--brown-deep); margin: 0; line-height: 1.15; }
.why p { font-family: var(--font-ui); font-size: 14.5px; line-height: 1.6; color: var(--text-body); margin: 0; }

/* ---------- Testimonials ---------- */
.tst-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 920px) { .tst-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; } }
/* keep the DS testimonial attribution stacking cleanly (name over location) */
.tst-grid .nsds-tst__person > span:not(.nsds-tst__avatar) { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
.tst-grid .nsds-tst__name, .tst-grid .nsds-tst__meta { display: block; white-space: nowrap; }

/* ---------- CTA band ---------- */
.cta-band { padding: clamp(56px, 7vw, 104px) 0; }
.cta-inner {
  position: relative; overflow: hidden;
  background: var(--brown-deep); border-radius: var(--radius-xl);
  padding: clamp(48px, 6vw, 80px); text-align: center;
}
.cta-inner__wash { position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(60% 120% at 50% -20%, color-mix(in srgb, var(--peach) 30%, transparent) 0%, transparent 60%); }
.cta-inner .eyebrow { color: var(--peach); }
.cta-inner h2 {
  position: relative; font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(36px, 5vw, 60px); line-height: 1.04; letter-spacing: -0.02em;
  color: var(--cream); margin: 14px auto 18px; max-width: 16ch;
}
.cta-inner p { position: relative; font-family: var(--font-ui); font-size: 18px; color: var(--rose); margin: 0 auto 32px; max-width: 46ch; line-height: 1.6; }
.cta-inner__btns { position: relative; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-inner__btns .nsds-btn--secondary { --_fg: var(--cream); --_bd: var(--brown-mid); }
.cta-inner__btns .nsds-btn--secondary:hover { --_bg: rgba(255,255,255,.08); --_bd: var(--rose); --_fg: var(--cream); }

/* ---------- Footer ---------- */
.footer { background: var(--cream-2); border-top: 1px solid var(--border-subtle); padding: 64px 0 32px; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid var(--border-subtle); }
@media (max-width: 820px) { .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; } }
.footer__brand img { height: 40px; margin-bottom: 18px; }
.footer__brand p { font-family: var(--font-ui); font-size: 14.5px; line-height: 1.65; color: var(--text-secondary); margin: 0 0 18px; max-width: 30ch; }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 40px; height: 40px; border-radius: 999px; display: grid; place-items: center;
  background: var(--white); border: 1px solid var(--border-subtle); color: var(--brown-deep);
  transition: background var(--duration-fast) var(--ease-standard), transform var(--duration-fast) var(--ease-standard);
}
.footer__social a:hover { background: var(--peach-soft); transform: translateY(-2px); }
.footer__col h3 { font-family: var(--font-ui); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: var(--tracking-wide); color: var(--brown-mid); margin: 0 0 16px; }
.footer__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.footer__col a, .footer__col li {
  font-family: var(--font-ui); font-size: 14.5px; color: var(--text-body); text-decoration: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 9px;
  transition: color var(--duration-fast) var(--ease-standard);
}
.footer__col a:hover { color: var(--brown-deep); }
.footer__col li svg { color: var(--peach-deep); flex: none; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 26px; flex-wrap: wrap; gap: 12px; }
.footer__bottom span, .footer__bottom a { font-family: var(--font-ui); font-size: 13px; color: var(--text-muted); text-decoration: none; }
.footer__bottom a:hover { color: var(--brown-mid); }

/* ---------- Enquiry modal ---------- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 100; display: none; place-items: center; padding: 24px;
  background: color-mix(in srgb, var(--brown-ink) 42%, transparent);
  backdrop-filter: blur(3px);
}
.modal-overlay.is-open { display: grid; }
.modal {
  width: 100%; max-width: 520px; max-height: calc(100vh - 48px); overflow-y: auto;
  background: var(--white); border-radius: var(--radius-xl); box-shadow: var(--shadow-xl);
  padding: 38px 38px 34px; position: relative;
}
.modal__close { position: absolute; top: 18px; right: 18px; }
.modal__eyebrow { display: block; margin-bottom: 10px; }
.modal h3 { font-family: var(--font-serif); font-weight: 500; font-size: 32px; line-height: 1.08; color: var(--brown-deep); margin: 0 0 8px; }
.modal__sub { font-family: var(--font-ui); font-size: 15px; line-height: 1.6; color: var(--text-secondary); margin: 0 0 26px; }
.modal__form { display: flex; flex-direction: column; gap: 18px; }
.modal__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 480px) { .modal__row { grid-template-columns: 1fr; } }
.modal__foot { display: flex; align-items: center; gap: 10px; margin-top: 4px; font-family: var(--font-ui); font-size: 12.5px; color: var(--text-secondary); }
.modal__foot svg { color: var(--success); flex: none; }

/* success state */
.modal__success { text-align: center; padding: 14px 6px 6px; }
.modal__success .tick { width: 64px; height: 64px; border-radius: 999px; background: var(--success-soft); color: var(--success); display: grid; place-items: center; margin: 0 auto 22px; }
.modal__success h3 { margin-bottom: 10px; }
.modal__success p { font-family: var(--font-ui); font-size: 15.5px; line-height: 1.6; color: var(--text-body); margin: 0 auto 26px; max-width: 34ch; }

/* image-slot default look inside frames */
image-slot { display: block; background: var(--peach-light); }

/* No scroll-reveal: content is statically visible. (This embed environment freezes
   both IntersectionObserver and the CSS animation clock, which would strand any
   opacity:0 entrance permanently hidden, so the visible state must be the default.) */
.reveal { opacity: 1; transform: none; }

/* ============================================================
   Multi-page additions
   ============================================================ */

/* Nav as anchors */
.nav__logo { text-decoration: none; }
.nav__link { text-decoration: none; position: relative; }
.nav__link--active { color: var(--brown-deep); background: var(--peach); border-color: var(--peach-deep); box-shadow: var(--shadow-xs); }
.nav__link--active:hover { background: var(--peach); border-color: var(--peach-deep); }
.footer__col a { background: none; border: none; }

/* Page hero */
.hero--page { padding: clamp(44px, 6vw, 84px) 0 clamp(48px, 5vw, 80px); }
.hero--page h1 { font-size: clamp(40px, 5vw, 64px); }
.hero__badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; align-items: center; }
.hero__stars { display: flex; gap: 5px; margin-bottom: 16px; color: #f5b301; }
.hero__stars svg { width: 28px; height: 28px; }
.hero__rating-row { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; position: relative; }
.hero__rating-row .hero__stars { margin-bottom: 0; position: relative; z-index: 2; }
.hero__rating-row .hero__brandlogo { position: relative; z-index: 0; background: var(--cream); }
.hero__rating-row .hero__brandlogo::part(frame) { background: var(--cream); }
.hero__rating-row .hero__brandlogo::part(image) { mix-blend-mode: multiply; }
/* keep the headline above the (larger) logo slot when they overlap */
.hero--page h1 { position: relative; z-index: 1; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 7px; white-space: nowrap;
  background: var(--white); border: 1px solid var(--border-subtle); border-radius: var(--radius-pill);
  padding: 7px 12px; font-family: var(--font-ui); font-size: 13px; font-weight: 600; color: var(--brown-deep);
  box-shadow: var(--shadow-xs);
}
.hero__badge svg { color: var(--peach-deep); }
.hero__chip .ico-tile { width: 38px; height: 38px; border-radius: 999px; background: var(--peach); color: var(--brown-deep); display: grid; place-items: center; flex: none; }

/* Feature grid */
.feat-grid { display: grid; gap: 24px; }
.feat-grid--3 { grid-template-columns: repeat(3, 1fr); }
.feat-grid--4 { grid-template-columns: repeat(4, 1fr); }
.feat-grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 920px) { .feat-grid--3, .feat-grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .feat-grid { grid-template-columns: 1fr !important; } }
.feat {
  background: var(--white); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg);
  padding: 28px 26px; display: flex; flex-direction: column; gap: 11px;
  transition: box-shadow var(--duration-base) var(--ease-standard), transform var(--duration-base) var(--ease-standard), border-color var(--duration-base) var(--ease-standard);
}
.feat:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--rose); }
.feat__ico { width: 48px; height: 48px; border-radius: var(--radius-md); background: var(--peach-soft); color: var(--brown-deep); display: grid; place-items: center; margin-bottom: 4px; }
.feat__ico svg { width: 24px; height: 24px; }
.feat h3 { font-family: var(--font-serif); font-weight: 600; font-size: 22px; line-height: 1.12; color: var(--brown-deep); margin: 0; }
.feat p { font-family: var(--font-ui); font-size: 14.5px; line-height: 1.6; color: var(--text-body); margin: 0; }
.section--soft .feat { background: var(--white); }

/* Steps */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: s; }
@media (max-width: 920px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding: 30px 24px; background: var(--white); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); display: flex; flex-direction: column; gap: 10px; }
.step__num { font-family: var(--font-serif); font-size: 15px; font-weight: 600; color: var(--peach-deep); letter-spacing: .04em; }
.step__ico { width: 46px; height: 46px; border-radius: 999px; background: var(--peach); color: var(--brown-deep); display: grid; place-items: center; }
.step__ico svg { width: 23px; height: 23px; }
.step h3 { font-family: var(--font-serif); font-weight: 600; font-size: 21px; line-height: 1.12; color: var(--brown-deep); margin: 2px 0 0; }
.step p { font-family: var(--font-ui); font-size: 14.5px; line-height: 1.6; color: var(--text-body); margin: 0; }

/* What's included */
.incl__grid { display: grid; grid-template-columns: 1.55fr 1fr; gap: 40px; align-items: start; }
.incl__grid--full { grid-template-columns: 1fr; }
@media (max-width: 920px) { .incl__grid { grid-template-columns: 1fr; gap: 28px; } }
.incl__lists { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 36px; }
@media (max-width: 560px) { .incl__lists { grid-template-columns: 1fr; } }
.incl__group { break-inside: avoid; margin-bottom: 14px; }
.incl__group-title { display: flex; align-items: center; gap: 9px; font-family: var(--font-ui); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: var(--tracking-wide); color: var(--brown-mid); margin: 0 0 12px; }
.incl__group-title svg { color: var(--peach-deep); }
.incl__items { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.incl__items li { display: flex; align-items: flex-start; gap: 10px; font-family: var(--font-ui); font-size: 14.5px; line-height: 1.5; color: var(--text-body); }
.incl__check { flex: none; width: 18px; height: 18px; border-radius: 999px; background: var(--peach); color: var(--brown-deep); display: grid; place-items: center; margin-top: 1px; }
.incl__upload { background: var(--white); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); padding: 22px; box-shadow: var(--shadow-sm); position: sticky; top: 96px; }
.incl__upload h4 { display: flex; align-items: center; gap: 9px; font-family: var(--font-serif); font-weight: 600; font-size: 20px; color: var(--brown-deep); margin: 0 0 8px; }
.incl__upload h4 svg { color: var(--peach-deep); }
.incl__upload > p { font-family: var(--font-ui); font-size: 13.5px; line-height: 1.55; color: var(--text-secondary); margin: 0 0 16px; }
.incl__hint { display: inline-flex; align-items: center; gap: 7px; margin-top: 12px; font-family: var(--font-ui); font-size: 12.5px; color: var(--text-secondary); }
.incl__hint svg { color: var(--success); }
/* Variant switcher (General clean / Deep clean) */
.incl__lists--full { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 28px 44px; align-items: start; }
.incl__core { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px 36px; align-items: start; }
.incl__core--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.incl__core--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.incl__core--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 900px) { .incl__core--4, .incl__core--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 540px) { .incl__core, .incl__core--4, .incl__core--3, .incl__core--2 { grid-template-columns: 1fr; } }
/* Distinct box for optional extras / beyond-standard tasks */
.incl__extras {
  margin-top: 40px; background: var(--white); border: 1px solid var(--rose);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: 26px 30px 28px;
}
.incl__extras-eyebrow {
  display: block; font-family: var(--font-ui); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: var(--tracking-wider); color: var(--brown-mid); margin-bottom: 22px;
}
.incl__extras-groups { display: grid; grid-template-columns: 1fr 1fr; gap: 30px 44px; align-items: start; }
@media (max-width: 760px) { .incl__extras-groups { grid-template-columns: 1fr; } }
.incl__group-title--alt { color: var(--brown-deep); }
.incl__group-title--alt svg { color: var(--rose-deep, #c99) ; }
.incl__items--cols { display: block; column-count: 2; column-gap: 36px; }
.incl__items--cols li { break-inside: avoid; margin-bottom: 11px; }
@media (max-width: 520px) { .incl__items--cols { column-count: 1; } }
.incl__check--alt { background: var(--rose); }
.clean-toggle { display: inline-flex; gap: 6px; padding: 5px; margin-bottom: 22px;
  background: var(--white); border: 1px solid var(--border-subtle); border-radius: var(--radius-pill); box-shadow: var(--shadow-xs); }
.clean-toggle__btn {
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
  border: none; background: none; padding: 11px 26px; border-radius: var(--radius-pill);
  font-family: var(--font-ui); font-size: 15.5px; font-weight: 700; color: var(--brown-mid);
  transition: color var(--duration-fast) var(--ease-standard), background var(--duration-fast) var(--ease-standard),
              box-shadow var(--duration-fast) var(--ease-standard), transform var(--duration-fast) var(--ease-standard);
}
.clean-toggle__btn svg { width: 17px; height: 17px; }
.clean-toggle__btn:hover { color: var(--brown-deep); }
.clean-toggle__btn.is-active { background: var(--peach); color: var(--brown-deep); box-shadow: var(--shadow-sm); }
.clean-blurb { font-family: var(--font-ui); font-size: 15.5px; line-height: 1.6; color: var(--text-body); margin: 0 0 26px; max-width: 60ch; }
@media (max-width: 480px) { .clean-toggle { width: 100%; } .clean-toggle__btn { flex: 1; justify-content: center; padding: 11px 14px; } }

/* Quote section (inline form) */
.quote-sec { padding: clamp(56px, 7vw, 104px) 0; }
.quote-sec--dark { background: var(--brown-deep); }
.quote-sec__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
@media (max-width: 900px) { .quote-sec__grid { grid-template-columns: 1fr; } }
.quote-sec__intro .eyebrow { color: var(--peach); display: block; margin-bottom: 14px; }
.quote-sec:not(.quote-sec--dark) .quote-sec__intro .eyebrow { color: var(--brown-mid); }
.quote-sec__intro h2 { font-family: var(--font-serif); font-weight: 500; font-size: clamp(32px, 4vw, 48px); line-height: 1.06; letter-spacing: -0.02em; color: var(--cream); margin: 0 0 16px; }
.quote-sec:not(.quote-sec--dark) .quote-sec__intro h2 { color: var(--brown-deep); }
.quote-sec__sub { font-family: var(--font-ui); font-size: 16.5px; line-height: 1.6; color: var(--rose); margin: 0 0 24px; max-width: 42ch; }
.quote-sec:not(.quote-sec--dark) .quote-sec__sub { color: var(--text-body); }
.quote-sec__points { list-style: none; margin: 0 0 26px; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.quote-sec__points li { display: flex; align-items: flex-start; gap: 11px; font-family: var(--font-ui); font-size: 15px; color: var(--cream); }
.quote-sec:not(.quote-sec--dark) .quote-sec__points li { color: var(--text-body); }
.quote-sec__check { flex: none; width: 22px; height: 22px; border-radius: 999px; background: var(--peach); color: var(--brown-deep); display: grid; place-items: center; margin-top: 1px; }
.quote-sec__contact { display: flex; flex-wrap: wrap; gap: 14px 28px; }
.quote-sec__contact a { display: inline-flex; align-items: center; gap: 9px; text-decoration: none; font-family: var(--font-ui); font-size: 15px; font-weight: 600; color: var(--cream); }
.quote-sec:not(.quote-sec--dark) .quote-sec__contact a { color: var(--brown-deep); }
.quote-sec__contact a svg { color: var(--peach); }
.quote-sec:not(.quote-sec--dark) .quote-sec__contact a svg { color: var(--peach-deep); }
.quote-sec__card { background: var(--white); border-radius: var(--radius-xl); box-shadow: var(--shadow-xl); padding: 32px; }

/* Split feature */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.split--flip .split__media { order: 2; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split--flip .split__media { order: 0; } }
.split__copy .eyebrow { display: block; margin-bottom: 14px; }
.split__copy h2 { font-family: var(--font-serif); font-weight: 500; font-size: clamp(30px, 3.6vw, 46px); line-height: 1.08; letter-spacing: -0.02em; color: var(--brown-deep); margin: 0 0 16px; }
.split__copy > p { font-family: var(--font-ui); font-size: 16px; line-height: 1.65; color: var(--text-body); margin: 0 0 20px; }
.split__points { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.split__points li { display: flex; align-items: flex-start; gap: 10px; font-family: var(--font-ui); font-size: 15px; line-height: 1.5; color: var(--text-body); }
.split__photo { box-shadow: var(--shadow-lg); }

/* Contact specifics */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; column-gap: clamp(32px, 5vw, 56px); row-gap: 18px; align-items: stretch; }
.contact-cards { grid-column: 1; grid-row: 1; display: flex; flex-direction: column; justify-content: space-between; gap: 16px; }
.map-frame { grid-column: 2; grid-row: 1; align-self: start; max-width: 494px; margin: 0 auto; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border-subtle); box-shadow: var(--shadow-sm); }
.area-chips { grid-column: 2; grid-row: 2; display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; margin-top: 0; }
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-cards, .map-frame, .area-chips { grid-column: 1; grid-row: auto; }
  .contact-cards { justify-content: flex-start; }
}
.contact-card { display: flex; gap: 16px; align-items: flex-start; background: var(--white); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); padding: 22px 24px; box-shadow: var(--shadow-sm); text-decoration: none; }
.contact-card__ico { flex: none; width: 46px; height: 46px; border-radius: 999px; background: var(--peach); color: var(--brown-deep); display: grid; place-items: center; }
.contact-card__label { font-family: var(--font-ui); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: var(--tracking-wide); color: var(--brown-mid); margin: 2px 0 6px; }
.contact-card .big { font-family: var(--font-serif); font-size: 22px; font-weight: 600; color: var(--brown-deep); line-height: 1.15; overflow-wrap: anywhere; }
.contact-card .sub { font-family: var(--font-ui); font-size: 14px; color: var(--text-secondary); margin-top: 3px; }
.map-frame iframe { display: block; width: 100%; height: 420px; border: 0; filter: saturate(0.9); }
.map-slot { display: block; }
.area-chip { display: inline-flex; align-items: center; gap: 6px; padding: 7px 14px; border-radius: var(--radius-pill);
  background: var(--white); border: 1px solid var(--border-subtle); font-family: var(--font-ui); font-size: 13px; font-weight: 600; color: var(--brown-deep); }
.area-chip svg { color: var(--peach-deep); }

/* Sticky CTA */
.sticky-cta {
  position: fixed; z-index: 60; right: 24px; bottom: 24px;
  display: flex; align-items: center; gap: 10px;
  padding: 9px 9px 9px 10px; border-radius: var(--radius-pill);
  background: color-mix(in srgb, var(--white) 88%, transparent);
  backdrop-filter: saturate(1.1) blur(10px);
  border: 1px solid var(--border-subtle); box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(16px); pointer-events: none;
}
.sticky-cta.is-visible { opacity: 1; visibility: visible; transform: none; pointer-events: auto; }
.sticky-cta__call {
  display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
  padding: 9px 14px; border-radius: var(--radius-pill);
  font-family: var(--font-ui); font-size: 14.5px; font-weight: 700; color: var(--brown-deep);
  transition: background var(--duration-fast) var(--ease-standard);
}
.sticky-cta__call svg { color: var(--peach-deep); }
.sticky-cta__call:hover { background: var(--peach-soft); }
.sticky-cta__btn {
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer; border: none;
  padding: 12px 22px; border-radius: var(--radius-pill);
  background: var(--peach); color: var(--brown-deep);
  font-family: var(--font-ui); font-size: 15px; font-weight: 700;
  box-shadow: var(--shadow-sm);
  transition: background var(--duration-fast) var(--ease-standard), transform var(--duration-fast) var(--ease-standard), box-shadow var(--duration-fast) var(--ease-standard);
}
.sticky-cta__btn svg { color: var(--brown-deep); }
.sticky-cta__btn:hover { background: var(--peach-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.sticky-cta__btn:active { transform: translateY(0); }
@media (max-width: 640px) {
  .sticky-cta {
    right: 0; left: 0; bottom: 0; border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    justify-content: stretch; gap: 10px; padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
    background: color-mix(in srgb, var(--white) 96%, transparent);
    box-shadow: 0 -8px 28px -12px rgba(111,91,81,.32);
    transform: translateY(100%);
  }
  .sticky-cta.is-visible { transform: none; }
  .sticky-cta__call { flex: 0 0 auto; padding: 12px 14px; border: 1px solid var(--border-subtle); }
  .sticky-cta__call-num { display: none; }
  .sticky-cta__btn { flex: 1; justify-content: center; padding: 14px 22px; }
}
@media (prefers-reduced-motion: reduce) {
  .sticky-cta { transition: none; }
}

/* GHL survey embed section */
.ghl__frame { max-width: 860px; margin: 0 auto; }
.ghl__placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 14px;
  min-height: 540px; padding: 48px 32px;
  background: var(--white);
  border: 2px dashed var(--border-accent); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.ghl__ico { width: 60px; height: 60px; border-radius: 999px; background: var(--peach-soft); color: var(--brown-deep); display: grid; place-items: center; }
.ghl__label { font-family: var(--font-ui); font-size: 15px; font-weight: 700; letter-spacing: 0.04em; color: var(--brown-deep); }
.ghl__hint { font-family: var(--font-ui); font-size: 14px; color: var(--text-secondary); max-width: 38ch; }
/* When the iframe is pasted in, make it fill the frame nicely */
.ghl__frame iframe { display: block; width: 100%; min-height: 600px; border: 0; border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-sm); }
.ghl__foot { display: flex; align-items: center; justify-content: center; gap: 8px; margin: 18px 0 0; font-family: var(--font-ui); font-size: 12.5px; color: var(--text-secondary); }
.ghl__foot svg { color: var(--success); }

/* GHL survey — multi-survey tabbed selector */
.ghl__tabs {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
  max-width: 860px; margin: 0 auto 26px;
}
.ghl__tab {
  flex: 1 1 220px; min-width: 200px; max-width: 280px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 3px;
  text-align: left; cursor: pointer;
  padding: 16px 20px;
  background: var(--white);
  border: 1.5px solid var(--border-subtle); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 180ms cubic-bezier(0.33,0,0.2,1), border-color 180ms cubic-bezier(0.33,0,0.2,1), background 180ms cubic-bezier(0.33,0,0.2,1);
}
.ghl__tab:hover { transform: translateY(-2px); border-color: var(--border-accent); }
.ghl__tab--active {
  background: var(--peach-soft);
  border-color: var(--peach);
  box-shadow: var(--shadow-md, var(--shadow-sm));
}
.ghl__tab-label { font-family: var(--font-serif); font-size: 21px; font-weight: 600; color: var(--brown-deep); letter-spacing: -0.01em; line-height: 1.1; }
.ghl__tab-desc { font-family: var(--font-ui); font-size: 13px; color: var(--text-secondary); line-height: 1.35; }
.ghl__panel--hidden { display: none; }
.ghl__iframe {
  display: block; width: 100%; min-height: 600px; border: 0;
  border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-sm);
}
/* GoHighLevel's form_embed.js hides the iframe off-screen until a reveal
   message fires (unreliable inside sandboxed previews). Force it visible —
   GHL's auto-height still applies on top of the min-height floor. */
.ghl__iframe {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  position: relative !important;
  left: auto !important;
  top: auto !important;
}
.ghl__live { display: block; }
.ghl__fallback { margin: 12px 0 0; text-align: center; font-family: var(--font-ui); font-size: 13px; color: var(--text-secondary); }
.ghl__fallback a { color: var(--brown-deep); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.ghl__fallback a:hover { color: var(--peach-deep); }
@media (max-width: 620px) {
  .ghl__tabs { flex-direction: column; }
  .ghl__tab { max-width: none; width: 100%; }
}

/* Choose your service (homepage) */
.choose-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 980px) { .choose-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .choose-grid { grid-template-columns: 1fr; } }
a.svc { text-decoration: none; }
.choose-grid .svc__body { padding: 24px 24px 26px; }
.choose-grid .svc h3 { font-size: 24px; }
.choose-grid .svc__link { color: var(--brown-deep); }
.map-cap { display: flex; align-items: center; gap: 9px; padding: 14px 18px; background: var(--white); font-family: var(--font-ui); font-size: 14px; color: var(--text-body); }
.map-cap svg { color: var(--peach-deep); }

/* SEO prose / content block */
.prose { max-width: 770px; }
.prose .eyebrow { display: block; margin-bottom: 14px; }
.prose h2 { font-family: var(--font-serif); font-weight: 500; font-size: clamp(30px, 3.6vw, 46px); line-height: 1.08; letter-spacing: -0.02em; color: var(--brown-deep); margin: 0 0 20px; }
.prose h3 { font-family: var(--font-serif); font-weight: 600; font-size: 24px; color: var(--brown-deep); margin: 28px 0 10px; }
.prose p { font-family: var(--font-ui); font-size: 17px; line-height: 1.75; color: var(--text-body); margin: 0 0 18px; }
.prose p:last-child { margin-bottom: 0; }
.prose a { color: var(--brown-deep); font-weight: 600; text-decoration: underline; text-decoration-color: var(--rose); text-underline-offset: 3px; text-decoration-thickness: 1.5px; transition: text-decoration-color var(--duration-fast) var(--ease-standard); }
.prose a:hover { text-decoration-color: var(--peach-deep); }

/* ---------- CTA buttons: small dark bordered + deeper shadow ---------- */
/* Applies to the primary peach CTAs (nav, hero, modal, CTA band) and the
   custom floating sticky CTA. Dark = deep warm brown to stay on-brand.
   Compound selector (.nsds-btn.nsds-btn--primary) raises specificity above
   the design-system bundle's runtime-injected styles. */
.nsds-btn.nsds-btn--primary {
  --_bd: var(--brown-deep);
  box-shadow: 0 2px 6px rgba(58, 42, 34, 0.28), var(--shadow-sm);
}
.nsds-btn.nsds-btn--primary:hover:not([disabled]) {
  --_bd: var(--brown-deep);
  box-shadow: 0 4px 12px rgba(58, 42, 34, 0.32), var(--shadow-md);
}
.sticky-cta__btn {
  border: 1.5px solid var(--brown-deep);
  box-shadow: 0 2px 6px rgba(58, 42, 34, 0.28), var(--shadow-sm);
}
.sticky-cta__btn:hover {
  box-shadow: 0 4px 12px rgba(58, 42, 34, 0.32), var(--shadow-md);
}
