:root {
  --bg-main: #000000;
  --bg-panel: #1a0826;
  --bg-panel-2: #14051f;
  --line: rgba(122, 60, 255, 0.35);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --neon: #7a3cff;
  --pink: #ff4da6;
  --font-title: Georgia, "Times New Roman", Times, serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --radius: 12px;
  --container: min(1160px, 100% - 40px);
  /* Pills: no stroke, same depth sitewide */
  --btn-shadow: 0 4px 14px rgba(0, 0, 0, 0.32);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.spa-site--noir {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg-main);
}

a { color: #d8c7ff; text-decoration: none; }
a:hover { color: #efe8ff; }

img { display: block; max-width: 100%; height: auto; }

.container { width: var(--container); margin-inline: auto; }
.narrow-noir { width: min(760px, 100% - 40px); margin-inline: auto; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* header + hero */
.site-header--over-hero {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 20;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.brand { display: inline-flex; align-items: center; }
.brand-logo--on-hero { max-height: 48px; width: auto; filter: drop-shadow(0 2px 8px rgba(0,0,0,.45)); }
.brand-wordmark--on-hero {
  font-family: var(--font-title);
  font-size: 1.8rem;
  color: #fff;
  letter-spacing: .08em;
}

.nav-main {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0.42rem 0.75rem;
  min-height: 2.375rem;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.35);
  color: #fff;
  background: rgba(0,0,0,.3);
  font-family: inherit;
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.2;
}

.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.25rem;
}
.nav-menu a {
  color: rgba(255,255,255,.9);
  font-size: .92rem;
  border-bottom: 2px solid transparent;
  padding: .25rem 0;
}
.nav-menu a:hover { border-bottom-color: var(--neon); }

.nav-lang--desktop {
  margin-left: 0.35rem;
  padding-left: 0.85rem;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
}
.nav-lang-select {
  appearance: none;
  -webkit-appearance: none;
  min-width: 7.5rem;
  max-width: 10rem;
  min-height: 2.375rem;
  padding: 0.42rem 1.85rem 0.42rem 0.65rem;
  font-family: inherit;
  font-size: 0.86rem;
  font-weight: 500;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.35);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23cdb8ff' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.45rem center;
  background-size: 12px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 10px;
  cursor: pointer;
  line-height: 1.2;
}
.nav-lang-select:hover,
.nav-lang-select:focus {
  border-color: rgba(255, 77, 166, 0.55);
  outline: none;
  box-shadow: 0 0 0 2px rgba(122, 60, 255, 0.25);
}
.nav-lang-select option {
  color: #1a0826;
  background: #fff;
}

@media (max-width: 900px) {
  /* 占满 logo 右侧；汉堡+语言成组靠右，间距收紧（不再用 ul flex:1 拉空档） */
  .header-inner .nav-main {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.35rem;
  }
  .nav-toggle {
    display: inline-flex;
    flex-shrink: 0;
  }
  .nav-menu {
    flex: 0 0 auto;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.35rem;
    position: static;
    padding: 0;
    margin: 0;
    background: transparent;
    border: none;
  }
  .nav-menu:not(.is-open) {
    min-width: min-content;
  }
  .nav-menu:not(.is-open) .nav-menu__link {
    display: none !important;
  }
  .nav-menu:not(.is-open) .nav-lang--desktop {
    display: flex !important;
    flex-shrink: 0;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0.5rem;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
  }
  .nav-menu.is-open {
    flex: 0 0 auto;
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 0.3rem;
    min-width: 220px;
    padding: 0.7rem;
    background: rgba(20, 5, 31, 0.96);
    border: 1px solid var(--line);
    border-radius: 12px;
  }
  .nav-menu.is-open .nav-menu__link {
    display: list-item !important;
  }
  .nav-menu.is-open .nav-lang--desktop {
    margin-left: 0;
    margin-top: 0.35rem;
    padding-left: 0;
    padding-top: 0.5rem;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }
  .nav-menu.is-open .nav-lang-select {
    width: 100%;
    max-width: none;
  }
}

.hero-spa {
  position: relative;
  overflow: hidden;
  min-height: min(86vh, 860px);
  display: flex;
  align-items: flex-end;
  padding: 120px 0 64px;
}
.hero-spa-photo {
  position: absolute;
  inset: 0;
  background-image: var(--hero-img, linear-gradient(145deg, #1a0826 0%, #2d1045 42%, #0b0311 100%));
  background-repeat: no-repeat;
  /* Bottom anchor: keep the lower half of the photo in frame; top crops with viewport (自适应上半) */
  background-size: cover;
  background-position: center bottom;
}
.hero-spa-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.5) 0%, rgba(26,8,38,.2) 35%, rgba(0,0,0,.7) 100%);
}
.hero-spa-inner { position: relative; z-index: 1; width: 100%; }
.hero-spa-copy { max-width: 760px; margin: 0 auto; text-align: center; }
.hero-spa-branch { margin: 0 0 .45rem; letter-spacing: .14em; text-transform: uppercase; color: #fff; opacity: .9; font-size: .84rem; }
.hero-spa-title {
  margin: 0 0 .8rem;
  font-family: var(--font-title);
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  font-weight: 600;
  line-height: 1.05;
}
.hero-spa-tagline {
  margin: 0 auto 1.2rem;
  max-width: 520px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.hero-spa-cta { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; align-items: center; }
.hero-spa-cta .contact-cta-row { margin-top: 0; }

.contact-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  justify-content: center;
  align-items: center;
  margin-top: .75rem;
}
.btn--with-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}
.btn-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.15em;
  height: 1.15em;
}
.btn-ico-svg,
.btn-ico .contact-cta-svg {
  width: 100%;
  height: 100%;
  display: block;
}
.contact-cta-svg {
  width: 1.12em;
  height: 1.12em;
  display: block;
}
.section-opening .contact-cta-row,
.promo-inner .contact-cta-row { margin-top: 1rem; }
.contact-cta-row--compact {
  margin-top: 0;
  gap: .4rem;
}
.contact-cta-row--compact .btn {
  padding: .45rem .85rem;
  font-size: .78rem;
}

/* generic buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: .68rem 1.25rem;
  font-size: .9rem;
  font-weight: 600;
  border: none;
  box-shadow: var(--btn-shadow);
  transition: filter 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-sm { padding: .56rem 1.05rem; font-size: .84rem; }
.btn-noir-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  box-shadow: var(--btn-shadow);
}
.btn-noir-ghost:hover {
  filter: brightness(1.12);
}
.btn-noir-neon {
  background: linear-gradient(120deg, #7a3cff 0%, #5d26d9 100%);
  color: #fff;
  box-shadow: var(--btn-shadow);
}
.btn-noir-neon:hover {
  filter: brightness(1.08);
}
.btn-noir-pink {
  background: linear-gradient(120deg, #ff4da6 0%, #d73486 100%);
  color: #fff;
  box-shadow: var(--btn-shadow);
}
.btn-noir-pink:hover {
  filter: brightness(1.06);
}
/* Call / LINE / WhatsApp — solid fills, same pill + shadow as other .btn */
.btn-cta-call {
  background: #1d4ed8;
  color: #fff;
  box-shadow: var(--btn-shadow);
}
.btn-cta-call:hover {
  filter: brightness(1.08);
}
.btn-cta-call .contact-cta-svg--phone {
  color: #fff;
}
.btn-cta-line {
  background: #06c755;
  color: #fff;
  box-shadow: var(--btn-shadow);
}
.btn-cta-line:hover {
  filter: brightness(1.07);
}
.btn-cta-wa {
  background: #0f766e;
  color: #fff;
  box-shadow: var(--btn-shadow);
}
.btn-cta-wa:hover {
  filter: brightness(1.08);
}
.btn-cta-wa .contact-cta-svg--wa {
  color: #fff;
}
.btn-block { width: 100%; }

/* sections */
.section-opening {
  background: #0b0311;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.4rem 0 1.6rem;
  text-align: center;
}
.opening-hours-title {
  margin: 0 0 .4rem;
  font-family: var(--font-title);
  font-size: 1.6rem;
}
.opening-hours-text, .opening-address { margin: .15rem 0; color: var(--muted); }
.opening-voucher-hint {
  margin: 1rem auto 0;
  max-width: 38rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
  text-align: center;
}
.opening-voucher-hint strong { color: #ffe8f5; }
.link-inline-opening {
  color: #fff;
  font-weight: 600;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.45);
}
.link-inline-opening:hover { color: #ff9ecf; border-bottom-color: #ff4da6; }
.opening-menu-jump { margin-top: 0.85rem; }
.link-menu { display: inline-block; margin-top: .5rem; color: #fff; border-bottom: 1px dashed #fff; }

/* coupon / ticket — #book */
.section-voucher {
  padding: 2.25rem 0 2.5rem;
  background:
    radial-gradient(ellipse 80% 55% at 50% 0%, rgba(201, 168, 87, 0.18), transparent 55%),
    radial-gradient(circle at 50% 100%, rgba(122, 60, 255, 0.12), transparent 45%),
    #070210;
  border-bottom: 1px solid var(--line);
}
.section-voucher--coupon {
  padding-bottom: 2.75rem;
}
.voucher-ticket-wrap {
  max-width: 520px;
  margin: 0 auto;
  padding: 0 0.5rem;
  filter: drop-shadow(0 16px 36px rgba(0, 0, 0, 0.55));
}
.voucher-ticket {
  position: relative;
  text-align: center;
  padding: 1.35rem 1.35rem 1.25rem;
  border-radius: 10px;
  background:
    linear-gradient(168deg, #fffdf8 0%, #f7ead4 38%, #edd9bc 72%, #e2cfa8 100%);
  color: #1a0826;
  border: 2px solid #2a1820;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    inset 0 -1px 0 rgba(0, 0, 0, 0.06),
    0 0 0 4px rgba(201, 168, 87, 0.35),
    0 0 0 5px rgba(26, 8, 38, 0.9);
}
.voucher-ticket::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -12deg,
    transparent,
    transparent 11px,
    rgba(255, 255, 255, 0.04) 11px,
    rgba(255, 255, 255, 0.04) 12px
  );
  pointer-events: none;
}
.voucher-ticket-holes {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  margin: 0 0 0.65rem;
  padding: 0 0.15rem;
}
.voucher-ticket-hole {
  flex: 1;
  height: 10px;
  border-radius: 999px;
  background: radial-gradient(circle at 50% 50%, #1a0826 0 35%, #3d2840 36% 100%);
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.25);
}
.voucher-ticket-title {
  position: relative;
  margin: 0 0 0.65rem;
  font-family: var(--font-title);
  font-size: clamp(1.45rem, 4.2vw, 2rem);
  font-weight: 700;
  line-height: 1.15;
  color: #1a0826;
  letter-spacing: 0.02em;
}
.voucher-ticket-value {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.35rem 0.5rem;
  margin: 0 0 0.5rem;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(26, 8, 38, 0.06), rgba(26, 8, 38, 0.02));
  border: 1px dashed rgba(26, 8, 38, 0.28);
}
.voucher-ticket-value-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #8b4513;
}
.voucher-ticket-value-amount {
  font-family: var(--font-title);
  font-size: clamp(2.1rem, 6vw, 2.85rem);
  font-weight: 700;
  color: #1a0826;
  line-height: 1;
}
.voucher-ticket-value-note {
  width: 100%;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(26, 8, 38, 0.55);
}
.voucher-ticket-perf {
  position: relative;
  margin: 0.85rem -0.35rem 0.95rem;
  height: 0;
  border: none;
  border-top: 2px dashed rgba(26, 8, 38, 0.22);
  background: none;
}
.voucher-ticket-perf::before,
.voucher-ticket-perf::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 18px;
  height: 18px;
  margin-top: -9px;
  border-radius: 50%;
  background: #070210;
  border: 2px solid rgba(201, 168, 87, 0.35);
  box-sizing: border-box;
}
.voucher-ticket-perf::before {
  left: -10px;
}
.voucher-ticket-perf::after {
  right: -10px;
}
.voucher-ticket-copy {
  position: relative;
  margin: 0 auto 0.85rem;
  max-width: 42rem;
  text-align: left;
  font-size: 0.92rem;
  line-height: 1.65;
  color: #2d1f28;
}
.voucher-ticket-copy strong {
  color: #1a0826;
}
.voucher-ticket-actions {
  position: relative;
  margin: 0.35rem 0 0;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(26, 8, 38, 0.12);
}
.voucher-ticket-actions .contact-cta-row {
  margin-top: 0;
}
/* Light coupon: same shadow token as dark sections */
.voucher-ticket-actions .btn-cta-call,
.voucher-ticket-actions .btn-cta-line,
.voucher-ticket-actions .btn-cta-wa {
  box-shadow: var(--btn-shadow);
}

.section-promo {
  padding: 1.75rem 0 2rem;
  background: linear-gradient(180deg, #12051b 0%, #0b0311 100%);
  border-bottom: 1px solid var(--line);
}
.promo-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 0 .5rem;
}
.promo-title {
  margin: 0 0 .85rem;
  font-family: var(--font-title);
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
  color: #fff;
}
.promo-lead {
  margin: 0 auto 1.1rem;
  max-width: 38rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
  text-align: center;
}
.promo-list {
  margin: 0 0 1rem;
  padding: 0 0 0 1.15rem;
  text-align: left;
  color: var(--muted);
  line-height: 1.65;
  font-size: .95rem;
}
.promo-list li { margin: .35rem 0; }
.promo-hours,
.promo-address {
  margin: .5rem 0;
  color: #e8dff5;
  font-size: .95rem;
  line-height: 1.55;
}
.promo-actions {
  margin: 1rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  justify-content: center;
}
.promo-footnote {
  margin: 1rem 0 0;
  font-size: .82rem;
  color: var(--muted);
}

.section-noir { padding: 3.8rem 0; background: var(--bg-main); }
.section-noir--elevated { background: var(--bg-panel); border-block: 1px solid var(--line); }
/* Pricing (#services) ends on pure black — clear handoff to elevated Find us */
#services.section-noir {
  border-bottom: 1px solid rgba(122, 60, 255, 0.22);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.55);
}
.title-noir {
  margin: 0 0 .65rem;
  font-family: var(--font-title);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  text-align: center;
}
.lead-noir { margin: 0 auto 1.7rem; max-width: 760px; text-align: center; color: var(--muted); }
.lead-noir--center { text-align: center; }
.service-table-wrap--pricing-block .lead-noir--pricing-note {
  margin: 0;
  padding: 0.55rem 1rem 0.35rem;
  max-width: none;
  font-size: 0.88rem;
  text-align: center;
  border-bottom: 1px solid rgba(122, 60, 255, 0.15);
}

/* tables */
.service-table-wrap { margin-bottom: 2rem; }
.service-cat-title { margin: 0 0 .7rem; font-family: var(--font-title); font-size: 1.35rem; color: #fff; }
.service-table-wrap--pricing-block {
  margin-bottom: 2rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #12051b;
}
.service-table-wrap--pricing-block .service-cat-title--pricing-head {
  margin: 0;
  padding: .7rem 1rem;
  border-radius: 0;
  background: linear-gradient(105deg, rgba(122, 60, 255, 0.38) 0%, rgba(26, 8, 38, 0.92) 48%, rgba(122, 60, 255, 0.12) 100%);
  color: #fff;
  font-size: 1.05rem;
  letter-spacing: .04em;
  text-transform: none;
  border-bottom: 1px solid rgba(122, 60, 255, 0.45);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 0 24px rgba(122, 60, 255, 0.12);
}
.service-table-wrap--pricing-block .service-table-scroll {
  border: none;
  border-radius: 0;
  border-top: 1px solid rgba(122,60,255,.2);
}
.service-table-scroll {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #12051b;
}
.service-table { width: 100%; min-width: 560px; border-collapse: collapse; font-size: .92rem; }
.service-table.service-table--pricing { min-width: 280px; }
.service-table th, .service-table td { padding: .78rem .92rem; border-bottom: 1px solid rgba(122,60,255,.25); }
.service-table thead th { color: #ceb9ff; font-size: .8rem; text-transform: uppercase; letter-spacing: .04em; text-align: right; }
.service-table thead th:first-child,
.service-table tbody th { text-align: left; }
.service-table tbody th { color: #fff; font-weight: 500; }
.service-table tbody td { text-align: right; color: #fff; font-weight: 600; }
.service-table tbody tr:last-child th, .service-table tbody tr:last-child td { border-bottom: none; }

/* packages */
.packages-cta-center {
  margin: 1.5rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  justify-content: center;
  align-items: center;
}
.packages-list-noir {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 980px) { .packages-list-noir { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .packages-list-noir { grid-template-columns: 1fr; } }
.packages-item-noir {
  padding: 1.15rem;
  border-radius: var(--radius);
  background: #0f0418;
  border: 1px solid var(--line);
}
.packages-item-title { margin: 0 0 .45rem; font-family: var(--font-title); font-size: 1.26rem; }
.packages-item-lines { margin: 0 0 .5rem; padding-left: 1rem; color: var(--muted); }
.link-inline-neon { color: #b997ff; font-weight: 600; }

/* map and gallery */
.venue-noir { margin: 0 0 .4rem; text-align: center; font-size: 1.1rem; color: #fff; }
.map-embed-wrap {
  margin: 1.2rem 0 .8rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.map-embed-wrap--noir { background: #12051b; }
.map-embed { width: 100%; height: 380px; border: 0; }
.findus-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.65rem;
  justify-content: center;
  align-items: center;
  margin: 1rem auto 0;
  max-width: 880px;
}
.findus-actions > .contact-cta-row {
  margin-top: 0;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
}
.findus-actions .btn {
  min-height: 2.75rem;
  box-sizing: border-box;
  padding-top: 0.62rem;
  padding-bottom: 0.62rem;
}

.gallery-grid-noir {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
@media (max-width: 900px) { .gallery-grid-noir { grid-template-columns: repeat(2, 1fr); } }
.gallery-cell-noir { margin: 0; aspect-ratio: 1; overflow: hidden; border-radius: 6px; }
.gallery-cell-noir img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-cell-noir:hover img { transform: scale(1.04); }
.gallery-empty-note {
  margin: 0 auto;
  max-width: 520px;
  text-align: center;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.65;
}
.gallery-empty-note code { font-size: .85em; color: #cdb8ff; word-break: break-all; }
#gallery .contact-cta-row { margin-top: 1.25rem; }

/* guest reviews — theme (noir + neon) */
.section-reviews {
  padding: 2.75rem 0 3.25rem;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(122, 60, 255, 0.22), transparent 55%),
    linear-gradient(180deg, #12051b 0%, #0b0311 100%);
  color: var(--text);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.reviews-inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.reviews-eyebrow-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin: 0 0 0.65rem;
}
.reviews-eyebrow-line {
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(122, 60, 255, 0.55), transparent);
}
.reviews-eyebrow {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #cdb8ff;
}
.reviews-title {
  margin: 0 0 1rem;
  font-family: var(--font-title);
  font-size: clamp(2rem, 5vw, 2.85rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 1.12;
  text-shadow: 0 0 40px rgba(122, 60, 255, 0.25);
}
.reviews-summary {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin: 0 0 2rem;
}
.reviews-google-wrap {
  display: inline-flex;
  align-items: center;
}
.reviews-google-g {
  display: block;
  flex-shrink: 0;
}
.reviews-google-g--sm {
  opacity: 0.95;
}
.reviews-stars {
  display: inline-flex;
  gap: 0.08rem;
  color: #f0c85c;
  font-size: 1.15rem;
  line-height: 1;
  letter-spacing: 0.02em;
  filter: drop-shadow(0 0 10px rgba(255, 200, 100, 0.35));
}
.reviews-stars--sm {
  font-size: 0.95rem;
  gap: 0.02rem;
}
.reviews-star {
  color: #f0c85c;
}
.reviews-rating-line {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
}
.reviews-rating-line--soft {
  max-width: 38rem;
  text-align: center;
  line-height: 1.65;
  font-size: 0.88rem;
}
.reviews-maps-inline {
  color: #d8c7ff;
  font-weight: 600;
  border-bottom: 1px dashed rgba(205, 184, 255, 0.45);
}
.reviews-maps-inline:hover {
  color: #fff;
  border-bottom-color: #ff4da6;
}
.reviews-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
  text-align: left;
}
@media (max-width: 720px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 721px) {
  .reviews-grid--five .reviews-card:last-child {
    grid-column: 1 / -1;
    max-width: min(480px, 100%);
    margin-inline: auto;
  }
}
.reviews-card {
  margin: 0;
  padding: 1.05rem 1.15rem 1rem;
  background: linear-gradient(165deg, rgba(26, 8, 38, 0.65), rgba(9, 2, 15, 0.92));
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: 0 0 28px rgba(122, 60, 255, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.reviews-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
}
.reviews-card-text {
  margin: 0 0 0.85rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--muted);
}
.reviews-card-meta {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.reviews-avatar {
  flex-shrink: 0;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(122, 60, 255, 0.85), rgba(255, 77, 166, 0.45));
  border: 1px solid rgba(122, 60, 255, 0.45);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-shadow: 0 0 16px rgba(122, 60, 255, 0.35);
}
.reviews-meta-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.12rem;
  min-width: 0;
}
.reviews-name {
  font-size: 0.86rem;
  font-weight: 600;
  color: #fff;
  word-break: break-word;
}
.reviews-date {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}
.reviews-date--muted {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
}

/* prefooter and footer */
.prefooter-cta { position: sticky; bottom: 0; z-index: 30; background: rgba(10, 2, 15, .94); border-top: 1px solid var(--line); }
.prefooter-cta-inner {
  display: flex;
  gap: .55rem;
  justify-content: center;
  align-items: center;
  padding: .6rem 0;
  flex-wrap: wrap;
}
.prefooter-cta-label {
  font-size: .88rem;
  color: var(--muted);
  margin-right: .25rem;
}

.site-footer--noir { background: #050108; padding: 2.6rem 0 1rem; border-top: 1px solid var(--line); }
.footer-noir-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 1.6rem; }
@media (max-width: 1000px) { .footer-noir-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .footer-noir-grid { grid-template-columns: 1fr; } }
.footer-noir-col h3 { margin: 0 0 .5rem; font-family: var(--font-title); font-size: 1.2rem; color: #fff; }
.footer-tagline-noir { margin: .6rem 0 0; color: var(--muted); }
.footer-logo-noir { max-height: 48px; width: auto; }
.footer-wordmark-noir { margin: 0; font-family: var(--font-title); font-size: 1.45rem; }
.footer-list-noir { list-style: none; margin: 0; padding: 0; }
.footer-list-noir li { margin: .35rem 0; color: var(--muted); }
.footer-list-noir a { color: var(--muted); }
.footer-list-noir a:hover { color: #fff; }
.footer-mini-h { margin: .8rem 0 .25rem; font-size: .86rem; text-transform: uppercase; letter-spacing: .05em; color: #cdb8ff; }
.footer-social-noir { list-style: none; margin: .5rem 0 0; padding: 0; display: flex; gap: .45rem; }
.footer-social-link-noir { width: 2.3rem; height: 2.3rem; border: 1px solid var(--line); border-radius: 10px; display: inline-flex; align-items: center; justify-content: center; color: #fff; }
.footer-social-icon-svg { width: 1.2rem; height: 1.2rem; }
.copyright--noir { margin: 1.25rem 0 0; text-align: center; color: rgba(255,255,255,.52); font-size: .84rem; }

/* floating */
/* modal + form */
.lead-modal[hidden] { display: none !important; }
.lead-modal:not([hidden]) {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.lead-modal-backdrop { position: absolute; inset: 0; background: rgba(0, 0, 0, .72); }
.lead-modal-panel--noir {
  position: relative;
  z-index: 1;
  width: min(520px, calc(100% - 2rem));
  max-height: 92vh;
  overflow-y: auto;
  background: #12051b;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 24px 62px rgba(0,0,0,.55);
}
.lead-modal-head { padding: 1rem 2.6rem .7rem 1rem; border-bottom: 1px solid var(--line); }
.lead-modal-title { margin: 0; text-align: center; font-family: var(--font-title); font-size: 1.45rem; }
.lead-modal-hint {
  margin: 0;
  padding: .55rem 1.1rem .75rem;
  text-align: center;
  font-size: .86rem;
  color: var(--muted);
  line-height: 1.5;
  border-bottom: 1px solid var(--line);
}
.footer-list-noir--contact { margin-top: .25rem; }
.footer-list-noir--contact a { color: #cdb8ff; }
.footer-list-noir--contact a:hover { color: #fff; }
.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.1rem;
  flex-wrap: wrap;
}
.footer-contact-ico {
  display: inline-flex;
  flex-shrink: 0;
  width: 1.15em;
  height: 1.15em;
  align-items: center;
  justify-content: center;
}
.footer-contact-ico .contact-cta-svg {
  width: 100%;
  height: 100%;
}
.footer-contact-sep {
  font-weight: 600;
  opacity: 0.88;
  user-select: none;
}
.footer-contact-num {
  font-weight: 500;
}
.footer-contact-line-qr {
  margin: 0.35rem 0 0.5rem;
}
.footer-line-qr-img {
  display: block;
  max-width: 112px;
  height: auto;
  border-radius: 8px;
  border: 1px solid var(--line);
}
.footer-contact-line-qr-link {
  display: inline-block;
}
.footer-contact-line-qr-link:hover .footer-line-qr-img {
  filter: brightness(1.08);
}
.lead-modal-close {
  position: absolute; top: .65rem; right: .55rem;
  width: 2.2rem; height: 2.2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255,255,255,.04);
  font-size: 1.35rem;
}
.lead-form--noir { padding: 1rem 1.2rem 1.2rem; display: flex; flex-direction: column; gap: .95rem; }
.lead-form--noir label { display: flex; flex-direction: column; gap: .35rem; color: var(--muted); font-size: .88rem; }
.field-label-row { display: flex; justify-content: space-between; }
.lead-form--noir input,
.lead-form--noir textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #0b0311;
  color: #fff;
  padding: .66rem .72rem;
  font: inherit;
}
.lead-form--noir input:focus,
.lead-form--noir textarea:focus {
  outline: 2px solid rgba(122, 60, 255, .35);
  border-color: var(--neon);
}
.lead-form--noir .req { color: #ff8bc6; }
.country-combobox { position: relative; }
.country-search-input { padding-right: 2.2rem; }
.country-combobox-chevron {
  position: absolute;
  right: .65rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.1rem;
  height: 1.1rem;
  pointer-events: none;
  opacity: .65;
  background: no-repeat center / contain
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23a89bc4' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='m19.5 8.25-7.5 7.5-7.5-7.5'/%3E%3C/svg%3E");
}
.country-listbox {
  position: absolute;
  left: 0; right: 0; top: calc(100% + 4px);
  z-index: 50;
  list-style: none;
  margin: 0; padding: .35rem 0;
  max-height: 260px;
  overflow-y: auto;
  background: #12051b;
  border: 1px solid var(--line);
  border-radius: 10px;
}
.country-listbox [role="option"] { padding: .45rem .75rem; cursor: pointer; color: #e8e0f4; }
.country-listbox [role="option"]:hover,
.country-listbox [role="option"].is-highlighted { background: rgba(122, 60, 255, .25); color: #fff; }

.hp-field { position: absolute; left: -9999px; opacity: 0; width: 0; height: 0; pointer-events: none; }
.form-error,.form-thanks { margin: 0 0 .7rem; padding: .62rem .72rem; border-radius: 10px; font-size: .9rem; }
.form-error { background: rgba(255, 77, 166, .12); border: 1px solid rgba(255, 77, 166, .35); color: #ffc8e8; }
.form-thanks { background: rgba(122, 60, 255, .14); border: 1px solid rgba(122, 60, 255, .35); color: #e8d9ff; }
.form-error--detail { white-space: pre-wrap; }

/* keep thank-you/404 usable */
.thank-you-body, .http-404-body { margin: 0; min-height: 100vh; font-family: var(--font-body); background: var(--bg-main); color: #fff; }
.thank-you-body .site-header, .http-404-body .site-header {
  position: sticky; top: 0; z-index: 10;
  background: rgba(10,2,15,.95);
  border-bottom: 1px solid var(--line);
}
.thank-you-main, .http-404-main { padding: 4rem 0; }
.thank-you-card, .http-404-card {
  padding: 2.4rem 2rem; border-radius: 12px;
  background: #12051b; border: 1px solid var(--line); text-align: center;
}
.thank-you-title, .http-404-title { margin: 0 0 .7rem; font-family: var(--font-title); font-size: 1.9rem; }
.thank-you-lead, .http-404-meta { color: var(--muted); margin: 0 0 1.2rem; }
.http-404-code { margin: 0 0 .4rem; font-family: var(--font-title); font-size: 3.2rem; color: #b997ff; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .7rem 1.35rem;
  border-radius: 999px;
  border: none;
  box-shadow: var(--btn-shadow);
  color: #fff;
  background: linear-gradient(120deg, #ff4da6, #d73486);
}
.btn-primary:hover {
  filter: brightness(1.06);
}
