/* ================= service page templates — shared shell ================= */
html, body { min-height: 100%; }
body {
  background-color: #060606;
  /* root-absolute so this resolves the same wherever the stylesheet ends up */
  background-image: url("/images/bg-texture.webp");
  background-repeat: repeat;
}


/* ---------- shared marks ---------- */
/* 38px matches the homepage's inline value. These were 44 vs 38, so the accent
   rule visibly changed width when you moved between pages. */
.sec-rule { display: block; width: 38px; height: 1px; background: var(--accent); margin-bottom: 1rem; }
.sec { padding: clamp(1.75rem, 3.5vw, 2.75rem) 0; border-bottom: 1px solid var(--accent); }
.sec-h {
  margin: 0 0 1.25rem;
  font-family: Georgia, serif; font-weight: 400;
  font-size: clamp(1.3rem, 2.1vw, 1.75rem);
  letter-spacing: -.02em; color: #f7f9fc;
}
h1 {
  margin: 0;
  font-family: Georgia, serif; font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.02; letter-spacing: -.035em; color: #f7f9fc;
}
.lede {
  margin: .95rem 0 0; max-width: 46ch;
  font-size: 1rem; line-height: 1.6; color: rgba(244,247,251,.62);
}
.foot-note { margin: 1.35rem 0 0; font-size: .86rem; color: rgba(244,247,251,.45); }
.foot-note a { color: #8fbaff; }

/* ---------- buttons (same family as the homepage) ---------- */
.cta, .cta-ghost {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  min-height: 50px; padding: 0 1.15rem;
  border-radius: 999px; border: 1px solid transparent;
  font-family: inherit; font-weight: 700; font-size: .92rem; letter-spacing: .012em;
  white-space: nowrap; text-decoration: none; isolation: isolate; cursor: pointer;
  transition: transform .22s cubic-bezier(.2,.7,.3,1), box-shadow .22s ease,
              background-color .22s ease, border-color .22s ease;
}
.cta > *, .cta-ghost > * { position: relative; z-index: 2; }
.cta:hover, .cta-ghost:hover { transform: translateY(-2px); }
.cta:active, .cta-ghost:active { transform: translateY(0) scale(.985); }
.arw { flex: none; transition: transform .22s cubic-bezier(.2,.7,.3,1); }
.cta:hover .arw { transform: translateX(3px); }
.cta {
  background: linear-gradient(180deg, #3d78ff 0%, #1743b8 100%); color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.32), inset 0 -1px 0 rgba(0,0,0,.25),
              0 8px 22px rgba(24,75,194,.45);
}
.cta:hover { box-shadow: inset 0 1px 0 rgba(255,255,255,.4), 0 13px 32px rgba(47,107,255,.6); }
.cta::after {
  content: ""; position: absolute; inset: -1px; z-index: 1;
  background: linear-gradient(105deg, transparent 32%, rgba(255,255,255,.5) 48%, transparent 64%);
  transform: translateX(-130%); transition: transform .75s cubic-bezier(.2,.7,.3,1);
}
.cta:hover::after { transform: translateX(130%); }
.cta-ghost {
  background: rgba(255,255,255,.05); color: #fff; border-color: rgba(255,255,255,.22);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
}
.cta-ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.42); }
.header-actions .cta { min-height: 44px; padding: 0 1.2rem; }

/* ---------- size picker ---------- */
.sz-row { margin-bottom: 1.5rem; }
.sz-lbl {
  display: block; margin-bottom: .6rem;
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(244,247,251,.42);
}
.sz-opts { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: .5rem; max-width: 560px; }
.sz {
  appearance: none; cursor: pointer; font: inherit; text-align: left;
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.13);
  color: rgba(244,247,251,.72); border-radius: 10px; padding: .7rem .8rem;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}
.sz:hover { border-color: rgba(255,255,255,.3); color: #fff; }
.sz strong { display: block; font-size: .95rem; font-weight: 600; }
.sz em { display: block; font-style: normal; font-size: .7rem; color: rgba(244,247,251,.4); margin-top: 1px; }
.sz[aria-checked="true"] {
  background: rgba(47,107,255,.14); border-color: var(--accent); color: #fff;
}

/* ---------- trust strip ---------- */
.trust-strip { border-bottom: 1px solid rgba(255,255,255,.08); padding: .8rem 0; }
.trust-strip .container {
  display: flex; flex-wrap: wrap; align-items: center; gap: .5rem .8rem;
  font-size: .84rem; color: rgba(244,247,251,.55);
}
.trust-strip b { color: #fff; font-family: Georgia, serif; font-weight: 400; }
.trust-strip .stars { color: #fbbf24; letter-spacing: 1.5px; font-size: .8rem; }
.trust-strip .dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(244,247,251,.28); }

/* ---------- ticked lists ---------- */
.ticks { margin: 0; padding: 0; list-style: none; }
.ticks li {
  position: relative; padding: .35rem 0 .35rem 1.5rem;
  font-size: .875rem; line-height: 1.5; color: rgba(244,247,251,.62);
}
.ticks li::before {
  content: ""; position: absolute; left: 2px; top: .78em;
  width: 9px; height: 5px; border-left: 1.6px solid rgba(47,107,255,.95);
  border-bottom: 1.6px solid rgba(47,107,255,.95); transform: rotate(-45deg);
}

/* ---------- add-ons ---------- */
.chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip {
  display: inline-flex; align-items: baseline; gap: .5rem;
  padding: .6rem 1rem; border-radius: 999px;
  background: rgba(255,255,255,.028); border: 1px solid rgba(255,255,255,.12);
  font-size: .875rem; color: rgba(244,247,251,.62);
}
.chip b { color: #f4f7fb; font-weight: 600; }

/* ================= A · configurator ================= */
.hero-a { padding: clamp(1.75rem, 3.5vw, 2.75rem) 0; }
.hero-a-in {
  display: grid; grid-template-columns: minmax(0,1fr) minmax(0,.85fr);
  gap: clamp(1.5rem, 3vw, 2.75rem); align-items: center;
}
.hero-a-shot { width: 100%; height: auto; border-radius: 12px; border: 1px solid rgba(255,255,255,.12); display: block; }

.tier-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: .5rem; }
.tier {
  display: flex; flex-direction: column;
  padding: 1.4rem 1.35rem; border-radius: 14px;
  background: linear-gradient(178deg, #121824, #0b1017);
  border: 1px solid rgba(255,255,255,.11);
}
.tier-best { border-color: rgba(47,107,255,.5); background: linear-gradient(178deg, rgba(47,107,255,.1), #0b1017); }
.tier-lbl {
  display: flex; align-items: center; gap: .5rem;
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(244,247,251,.5);
}
.tier-lbl i {
  font-style: normal; font-size: .58rem; letter-spacing: .1em;
  color: #8fbaff; background: rgba(47,107,255,.14);
  border: 1px solid rgba(47,107,255,.32); border-radius: 999px; padding: 2px 7px;
}
.tier-price { margin: .6rem 0 0; font-family: Georgia, serif; font-size: 2.4rem; line-height: 1; color: #fff; }
.tier-price sup { font-size: 1.1rem; top: -.6em; color: rgba(244,247,251,.55); margin-right: 2px; }
.tier-time { margin: .3rem 0 0; font-size: .8rem; color: rgba(244,247,251,.45); }
.tier-blurb { margin: .8rem 0 .4rem; font-size: .875rem; color: rgba(244,247,251,.6); }
.tier .ticks { flex: 1; margin-top: .4rem; }
.tier-cta { margin-top: 1.15rem; width: 100%; }

/* ---------- footer ---------- */
.ft { padding: clamp(1.5rem, 3vw, 2rem) 0 0; }
.ft-bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: .5rem 1.5rem; padding: 1.15rem 0 clamp(1.5rem, 3vw, 2rem);
}
.ft-bottom p { margin: 0; font-size: .78rem; color: rgba(244,247,251,.35); }
.ft-by { font-family: Georgia, serif; font-style: italic; }

@media (max-width: 900px) {
  .hero-a-in { grid-template-columns: 1fr; }
  .tier-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .sz-opts { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .cta, .cta-ghost, .arw, .cta::after, .sz { transition: none !important; }
}

/* ================= template A additions ================= */

/* the longer pitch under the title */
.pitch { margin-top: 1.15rem; max-width: 48ch; }
.pitch p {
  margin: 0 0 .75rem;
  font-size: 1.02rem; line-height: 1.62;
  color: rgba(244,247,251,.66);
}
.pitch strong { font-weight: 700; color: rgba(244,247,251,.95); }
.pitch-kicker {
  margin-top: 1.1rem !important; padding-top: .95rem;
  border-top: 1px solid rgba(255,255,255,.1);
  font-family: Georgia, serif; font-style: italic;
  font-size: 1.12rem !important; color: #f4f7fb !important;
}

/* ---------- before / after ---------- */
.ba {
  position: relative; overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.13);
  box-shadow: 0 20px 46px rgba(0,0,0,.5);
  background: #000;
  cursor: ew-resize;
  touch-action: pan-y;
  user-select: none; -webkit-user-select: none;
}
.ba-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-after { position: absolute; inset: 0 auto 0 0; width: 50%; overflow: hidden; will-change: width; }
.ba-after .ba-img { width: auto; height: 100%; max-width: none; }
.ba-divider {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 2px; margin-left: -1px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 0 12px rgba(0,0,0,.65);
  will-change: left;
}
.ba-handle {
  position: absolute; top: 50%; left: 50%;
  width: 46px; height: 46px; margin: -23px 0 0 -23px;
  display: grid; place-items: center;
  border-radius: 50%; cursor: ew-resize; color: #fff;
  background: linear-gradient(180deg, #3d78ff 0%, #1743b8 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.35), 0 6px 20px rgba(0,0,0,.5);
  transition: transform .2s cubic-bezier(.2,.7,.3,1);
}
.ba:hover .ba-handle { transform: scale(1.08); }
.ba-handle:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
.ba-tag {
  position: absolute; top: 12px; z-index: 2; pointer-events: none;
  font-size: .62rem; letter-spacing: .16em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px;
  background: rgba(10,13,19,.62); border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  color: rgba(244,247,251,.88);
}
.ba-tag-l { left: 12px; } .ba-tag-r { right: 12px; }
/* fades out the moment the slider is touched */
.ba-hint {
  position: absolute; left: 50%; bottom: 12px; transform: translateX(-50%);
  z-index: 2; pointer-events: none;
  font-size: .6rem; letter-spacing: .22em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
  background: rgba(10,13,19,.62); border: 1px solid rgba(255,255,255,.16);
  color: rgba(244,247,251,.8);
  transition: opacity .3s ease;
}
.ba.touched .ba-hint { opacity: 0; }

/* ---------- scroll cue ---------- */
.cue {
  display: flex; flex-direction: column; align-items: center; gap: .55rem;
  width: max-content; margin: clamp(1.5rem, 3vw, 2.5rem) auto 0;
  text-decoration: none;
}
.cue-txt {
  font-size: .64rem; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(244,247,251,.42);
  transition: color .25s ease;
}
.cue:hover .cue-txt { color: rgba(244,247,251,.8); }
.cue-rail {
  position: relative; display: block;
  width: 1px; height: 34px;
  background: linear-gradient(180deg, rgba(47,107,255,.55), rgba(47,107,255,0));
  overflow: hidden;
}
.cue-dot {
  position: absolute; left: -1.5px; top: 0;
  width: 4px; height: 8px; border-radius: 2px;
  background: #4d81ff;
  animation: cueRun 1.9s cubic-bezier(.5,0,.5,1) infinite;
}
@keyframes cueRun {
  0%   { transform: translateY(-10px); opacity: 0; }
  35%  { opacity: 1; }
  100% { transform: translateY(34px); opacity: 0; }
}

/* ---------- what Basic does not cover ---------- */
.ticks li.no { color: rgba(244,247,251,.3); }
.ticks li.no::before {
  /* a dash, not a tick — same footprint so the list stays aligned */
  border: 0; transform: none;
  top: 1.02em; left: 1px;
  width: 10px; height: 1.4px;
  background: rgba(244,247,251,.28);
}

@media (prefers-reduced-motion: reduce) {
  .cue-dot { animation: none; opacity: .8; }
  .ba-handle, .ba-hint { transition: none !important; }
}

/* ---------- Basic: included beside not-included, so the card stays short ---------- */
.tier-cols {
  flex: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0 1.1rem;
  margin-top: .5rem;
}
.col-lbl {
  display: block; margin-bottom: .35rem;
  font-size: .58rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(244,247,251,.4);
}
.col-lbl-no { color: rgba(255,120,120,.62); }

.tier-cols .ticks li { padding: .28rem 0 .28rem 1.35rem; font-size: .79rem; line-height: 1.45; }
.tier-cols .ticks li::before { top: .72em; }

/* not included: a red cross, drawn from the two pseudo-elements */
.ticks li.no { color: rgba(255,128,128,.72); }
.ticks li.no::before,
.ticks li.no::after {
  content: ""; position: absolute;
  left: 1px; top: .95em;
  width: 10px; height: 1.5px;
  background: #ff6b6b;
  border: 0; border-radius: 1px;
}
.ticks li.no::before { transform: rotate(45deg); }
.ticks li.no::after  { transform: rotate(-45deg); }

/* Deep Clean has nothing excluded, so its list runs the full card width */
.tier-cols-one { grid-template-columns: 1fr; }

/* ---------- cross-sell to the other two services ---------- */
.sec-last { border-bottom: 0; }
.xsell { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; max-width: 620px; }
.xs {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1rem 1.2rem; border-radius: 10px; text-decoration: none;
  background: rgba(255,255,255,.026);
  border: 1px solid rgba(255,255,255,.12);
  transition: border-color .25s ease, background-color .25s ease, transform .25s cubic-bezier(.2,.7,.3,1);
}
.xs:hover { border-color: rgba(47,107,255,.55); background: rgba(255,255,255,.05); transform: translateY(-2px); }
.xs-name { font-family: Georgia, serif; font-size: 1rem; color: #f4f7fb; }
.xs-price { font-size: .82rem; color: rgba(244,247,251,.45); white-space: nowrap; }
@media (max-width: 700px) { .xsell { grid-template-columns: 1fr; } }


/* ================= full footer =================
   Ported from the homepage's inline block so every page carries the same
   footer. Four columns instead of three: gallery, reviews, add-ons and
   membership had no site-wide links at all before this, which left them
   orphaned for visitors and crawlers alike. */
.ft { padding: clamp(2.25rem, 4vw, 3.25rem) 0 0; }
.ft-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, .8fr) minmax(0, .7fr) minmax(0, .95fr);
  gap: clamp(1.5rem, 3vw, 2.75rem);
  align-items: start;
}
.ft-mark { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; }
.ft-mark img { width: 40px; height: 40px; border-radius: 9px; }
.ft-mark span { font-family: Georgia, serif; font-size: 1.08rem; color: #f4f7fb; letter-spacing: .01em; }
.ft-note { margin: .9rem 0 0; max-width: 42ch; font-size: .875rem; line-height: 1.6; color: rgba(244,247,251,.6); }
.ft-area { margin: .5rem 0 0; max-width: 46ch; font-size: .8rem; line-height: 1.6; color: rgba(244,247,251,.38); }

.ft-col { display: flex; flex-direction: column; align-items: flex-start; gap: .6rem; }
.ft-head {
  margin-bottom: .2rem;
  font-family: Georgia, serif; font-size: .68rem;
  letter-spacing: .22em; text-transform: uppercase; color: rgba(244,247,251,.38);
}
.ft-col a {
  position: relative; font-size: .9rem; color: rgba(244,247,251,.66);
  text-decoration: none; transition: color .22s ease;
}
.ft-col a:hover { color: #f4f7fb; }
.ft-col a::after {
  content: ""; position: absolute; left: 0; bottom: -3px;
  width: 0; height: 1px; background: var(--accent);
  transition: width .28s cubic-bezier(.2,.7,.3,1);
}
.ft-col a:hover::after { width: 100%; }
.ft-hours { font-size: .8rem; color: rgba(244,247,251,.38); }

.ft-social { display: flex; gap: .5rem; margin-top: .35rem; }
.ft-social a {
  width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.12);
  transition: background-color .22s ease, border-color .22s ease, transform .22s cubic-bezier(.2,.7,.3,1);
}
.ft-social a::after { display: none; }
.ft-social a:hover { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.32); transform: translateY(-2px); }
.ft-social img { width: 22px; height: 22px; object-fit: contain; }

.ft-bottom { margin-top: clamp(1.75rem, 3vw, 2.5rem); border-top: 1px solid rgba(255,255,255,.09); }
.ft-bottom p { margin: 0; font-size: .78rem; color: rgba(244,247,251,.35); }

@media (prefers-reduced-motion: reduce) {
  .ft-col a, .ft-col a::after, .ft-social a { transition: none !important; }
}


/* ================= add-on cards =================
   Add-ons used to be seven flat text chips with no page behind them. These are
   deliberately smaller than the service tiers — the point is to scan the whole
   menu at once, not to sell one item hard. */
/* 260px lands four across in the container, so the seven add-ons wrap 4+3
   rather than a lopsided 5+2. */
.ao-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: .75rem; margin-top: .25rem;
}
.ao {
  display: flex; flex-direction: column; gap: .3rem;
  padding: .95rem 1.05rem; border-radius: 11px;
  background: rgba(255,255,255,.028); border: 1px solid rgba(255,255,255,.12);
  text-decoration: none; color: inherit;
  transition: border-color .22s ease, background-color .22s ease, transform .22s cubic-bezier(.2,.7,.3,1);
}
a.ao:hover { border-color: rgba(255,255,255,.34); background: rgba(255,255,255,.055); transform: translateY(-2px); }
.ao-top { display: flex; align-items: baseline; justify-content: space-between; gap: .75rem; }
.ao-name { font-size: .95rem; font-weight: 600; color: #f4f7fb; }
.ao-price { font-family: Georgia, serif; font-size: 1.02rem; color: #fff; white-space: nowrap; }
.ao-note { margin: 0; font-size: .8rem; line-height: 1.5; color: rgba(244,247,251,.55); }

/* the compact strip used at the foot of each service page */
.ao-strip { display: grid; grid-template-columns: repeat(auto-fill, minmax(178px, 1fr)); gap: .6rem; }
.ao-strip .ao { padding: .7rem .85rem; }
.ao-strip .ao-name { font-size: .875rem; }
.ao-strip .ao-price { font-size: .92rem; }
.ao-more { margin: 1.1rem 0 0; font-size: .86rem; color: rgba(244,247,251,.5); }
.ao-more a { color: #8fbaff; }

@media (prefers-reduced-motion: reduce) { .ao { transition: none !important; } }


/* ================= membership plans ================= */
.pl-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1rem; margin-top: .5rem; }
.pl {
  display: flex; flex-direction: column;
  padding: 1.35rem 1.35rem 1.5rem; border-radius: 14px;
  background: #0b1017; border: 1px solid rgba(255,255,255,.12);
}
.pl-best { border-color: rgba(47,107,255,.5); background: linear-gradient(178deg, rgba(47,107,255,.1), #0b1017); }
.pl-name {
  display: flex; align-items: center; gap: .5rem;
  font-family: Georgia, serif; font-size: .72rem; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(244,247,251,.5);
}
.pl-name i {
  font-style: normal; font-size: .6rem; letter-spacing: .12em;
  padding: .2rem .5rem; border-radius: 999px;
  background: rgba(47,107,255,.22); color: #cfe0ff;
}
.pl-price { margin: .7rem 0 0; font-family: Georgia, serif; font-size: 2.4rem; line-height: 1; color: #fff; }
.pl-price sup { font-size: 1.1rem; top: -.6em; color: rgba(244,247,251,.55); margin-right: 2px; }
.pl-price span.per { font-family: system-ui, sans-serif; font-size: .82rem; color: rgba(244,247,251,.45); margin-left: .35rem; }
.pl-cadence { margin: .35rem 0 0; font-size: .8rem; color: rgba(244,247,251,.45); }
.pl-save {
  display: inline-block; margin: .65rem 0 0; padding: .22rem .6rem; border-radius: 999px;
  background: rgba(52,199,123,.14); border: 1px solid rgba(52,199,123,.35);
  font-size: .74rem; color: #7ee2ab;
}
.pl-blurb { margin: .85rem 0 .3rem; font-size: .875rem; line-height: 1.55; color: rgba(244,247,251,.6); }
.pl .ticks { flex: 1; margin-top: .5rem; }
.pl-cta { margin-top: 1.2rem; width: 100%; }

/* ---------- header nav fits at narrower desktop widths ----------
   .site-nav is absolutely positioned and centred, so it reserves no layout
   space and simply runs under the brand or the buttons once it grows. Adding
   Membership and Add-ons pushed it into the buttons at around 1100px. Tighten
   the gap first, then drop the header social icons — they are still in the
   footer, and Book Now is the button that matters. */
@media (max-width: 1200px) {
  .site-nav { gap: 1rem; }
}
@media (max-width: 1120px) {
  .site-nav { gap: 0.75rem; font-size: 0.94rem; }
  .header-actions .social-link,
  .header-actions .social-link1 { display: none; }
}
