/* ===========================================================
   Unique+Fit — Sellersville, PA
   Plain CSS, no build tools. Red / white / black, high-energy.
=========================================================== */

:root {
  --bg: #0b0b0c;
  --bg-alt: #141415;
  --surface: #1a1a1b;
  --surface-2: #222223;
  --line: rgba(255, 255, 255, 0.12);
  --white: #f5f5f5;
  --muted: #c9c9c9;
  --muted-2: #8c8c8c;
  --accent: #e2231a;
  --accent-bright: #ff3b30;
  --accent-soft: rgba(226, 35, 26, 0.16);
  --ink: #0b0b0c;
  --green: #7fbf7f;

  --font-head: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --container: 1140px;
  --radius: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.08;
  margin: 0 0 0.5em;
}

p { margin: 0 0 1em; color: var(--muted); }

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 96px 0; position: relative; }
@media (max-width: 700px) {
  section { padding: 64px 0; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--accent);
  display: inline-block;
}

.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head.center { max-width: 640px; margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 4vw, 42px); }
.section-head p { font-size: 17px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 16px 30px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-bright); }

.btn-outline {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover { border-color: var(--white); }

.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: linear-gradient(to bottom, rgba(6, 6, 7, 0.95), rgba(6, 6, 7, 0));
  transition: background 0.25s ease, padding 0.25s ease, box-shadow 0.25s ease;
}
.site-header.scrolled {
  background: rgba(8, 8, 9, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 12px 0;
  box-shadow: 0 6px 24px rgba(0,0,0,0.35);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.site-header .logo { grid-column: 1; justify-self: start; }
.site-header .main-nav { grid-column: 2; justify-self: center; }
.site-header .header-cta { grid-column: 3; justify-self: end; }
@media (min-width: 900px) {
  .site-header .header-cta { margin-right: -140px; }
}

.logo {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
.logo img {
  height: 52px;
  width: auto;
  display: block;
  background: var(--white);
  border-radius: 50%;
  padding: 4px;
}
.site-footer .logo img { height: 68px; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  transition: color 0.15s ease;
}
.main-nav a:hover { color: var(--white); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 18px;
}
.header-phone {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.01em;
  white-space: nowrap;
  display: none;
}
@media (min-width: 900px) {
  .header-phone { display: inline-flex; align-items: center; gap: 8px; }
}
.header-phone .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  display: inline-block;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}
.nav-toggle span {
  width: 18px; height: 2px;
  background: var(--white);
  margin: 0 auto;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .main-nav {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    background: var(--bg-alt);
    border-left: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 100px 32px 32px;
    gap: 26px;
    transform: translateX(100%);
    transition: transform 0.28s ease;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { font-size: 16px; }
  .nav-toggle { display: flex; }
  .header-cta .btn-primary { padding: 12px 18px; font-size: 13px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 118px 0 60px;
  overflow: hidden;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-media-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6,6,7,0.92) 0%, rgba(6,6,7,0.6) 55%, rgba(6,6,7,0.35) 100%),
    linear-gradient(180deg, rgba(6,6,7,0.35) 0%, rgba(6,6,7,0.55) 60%, rgba(6,6,7,0.95) 100%);
}
.hero .wrap { position: relative; z-index: 1; width: 100%; }
.hero .eyebrow { font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
.hero-inner { max-width: 760px; }
.hero h1 {
  font-size: clamp(34px, 5.6vw, 62px);
  margin-bottom: 22px;
  color: var(--white);
}
.hero h1 em {
  font-style: normal;
  color: var(--accent-bright);
}
.hero .lead {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(17px, 2vw, 20px);
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 34px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 40px;
}
@media (max-width: 700px) {
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 28px 24px; }
  .hero-stats > div:nth-child(3) { grid-column: 1 / -1; }
}
.hero-stats .stat-num {
  font-family: var(--font-head);
  font-size: 30px;
  color: var(--white);
  display: block;
}
.hero-stats .stat-num .accent { color: var(--white); }
.hero-stats .stat-label {
  font-size: 13px;
  letter-spacing: 0.03em;
  color: var(--muted);
  text-transform: uppercase;
}

@media (max-width: 700px) {
  .hero-inner { max-width: 100%; text-align: center; margin: 0 auto; }
  .hero .eyebrow {
    justify-content: center;
    font-size: 11px;
    letter-spacing: 0.1em;
    margin-bottom: 14px;
  }
  .hero .eyebrow::before { display: none; }
  .hero h1 { font-size: clamp(28px, 8.5vw, 36px); line-height: 1.22; margin-bottom: 18px; }
  .hero .lead {
    font-size: 15px;
    line-height: 1.5;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; text-align: center; }
  .hero-stats > div { display: flex; flex-direction: column; align-items: center; }
}

/* ---------- About ---------- */
.about {
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.82) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.75) 30%, rgba(0,0,0,0.55) 55%, rgba(0,0,0,0.35) 80%, rgba(0,0,0,0.22) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cpath d='M20 15v10M15 20h10' stroke='%23ffffff' stroke-opacity='0.07' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E"),
    var(--bg-alt);
}
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}
.photo-frame {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
}
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

.pull-quote {
  font-family: var(--font-head);
  font-size: clamp(22px, 2.6vw, 30px);
  color: var(--white);
  text-transform: none;
  letter-spacing: 0.01em;
  border-left: 3px solid var(--accent);
  padding-left: 20px;
  margin: 28px 0;
}

.mini-stats {
  display: flex;
  gap: 20px;
  flex-wrap: nowrap;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.mini-stats .mini {
  font-family: var(--font-head);
  font-size: 19px;
  color: var(--white);
  flex: 1 1 0;
  min-width: 0;
}
@media (max-width: 560px) {
  .mini-stats { flex-wrap: wrap; }
  .mini-stats .mini { flex: 1 1 45%; }
}
.mini-stats .mini small {
  display: block;
  font-family: var(--font-body);
  font-size: 12.5px;
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

/* ---------- Classes ---------- */
.classes {
  position: relative;
  background:
    linear-gradient(to bottom, transparent 0%, transparent 65%, rgba(0,0,0,0.88) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cpath d='M20 15v10M15 20h10' stroke='%23ffffff' stroke-opacity='0.07' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E"),
    var(--bg-alt);
}
.classes::before,
.classes::after {
  content: "";
  position: absolute;
  top: 0;
  width: 60px;
  height: 60px;
  z-index: 2;
}
.classes::before {
  left: 0;
  background: radial-gradient(circle at 60px 60px, transparent 59px, #f4f3f1 60px);
}
.classes::after {
  right: 0;
  background: radial-gradient(circle at 0 60px, transparent 59px, #f4f3f1 60px);
}
.class-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 860px) { .class-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .class-grid { grid-template-columns: 1fr; } }

.class-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.class-card:hover { border-color: rgba(226,35,26,0.55); transform: translateY(-3px); }
.class-card.spotlight {
  background: linear-gradient(160deg, rgba(226,35,26,0.18), var(--surface));
  border-color: rgba(226,35,26,0.45);
}
.class-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  color: var(--accent-bright);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 18px;
  margin-bottom: 18px;
}
.class-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--white);
}
.class-card p { font-size: 14.5px; margin-bottom: 0; }
.badge {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--accent);
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}

/* ---------- Schedule ---------- */
.schedule { position: relative; background: #f4f3f1; }
.schedule .section-head h2 { color: var(--ink); }
.schedule .section-head p { color: #5c5a56; }
.schedule::before,
.schedule::after {
  content: "";
  position: absolute;
  top: 0;
  width: 60px;
  height: 60px;
  z-index: 2;
}
.schedule::before {
  left: 0;
  background: radial-gradient(circle at 60px 60px, transparent 59px, var(--bg-alt) 60px);
}
.schedule::after {
  right: 0;
  background: radial-gradient(circle at 0 60px, transparent 59px, var(--bg-alt) 60px);
}
.schedule-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.schedule-day-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0 auto 16px;
  max-width: 800px;
}
.schedule-day-tab {
  font-family: var(--font-head);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--surface-2);
  color: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 18px;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.schedule-day-tab:hover { border-color: var(--accent); }
.schedule-day-tab.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.schedule-widget-wrap {
  background: #ffffff;
  border-color: #d9d7d3;
  padding: 24px;
  min-height: 200px;
  max-height: 640px;
  overflow-y: auto;
  max-width: 800px;
  margin: 0 auto;
}

/* ---- Restyle the embedded Mindbody widget to match the site ---- */
.schedule-widget-wrap .bw-widget__header {
  padding-bottom: 16px !important;
  border-bottom: 1px solid #e5e3df !important;
  margin-bottom: 12px !important;
}
.schedule-widget-wrap .bw-header__title {
  font-family: var(--font-head) !important;
  font-size: 20px !important;
  color: var(--ink) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.02em !important;
}
.schedule-widget-wrap .bw-widget__date {
  font-family: var(--font-head) !important;
  font-size: 13px !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  color: #fff !important;
  background: var(--ink) !important;
  padding: 10px 16px !important;
  border-radius: 8px !important;
  margin: 22px 0 10px !important;
}
.schedule-widget-wrap .bw-session {
  border: 1px solid #ece9e4 !important;
  border-radius: 12px !important;
  padding: 16px 18px !important;
  margin-bottom: 10px !important;
  background: #fdfcfb !important;
}
.schedule-widget-wrap .bw-session__time {
  font-family: var(--font-head) !important;
  color: var(--accent) !important;
  font-size: 13.5px !important;
  letter-spacing: 0.02em !important;
}
.schedule-widget-wrap .bw-session__name {
  font-family: var(--font-head) !important;
  font-size: 17px !important;
  color: var(--ink) !important;
  margin: 4px 0 !important;
}
.schedule-widget-wrap .bw-session__staff {
  color: #6b6862 !important;
  font-size: 14px !important;
}
.schedule-widget-wrap .bw-session__availability .hc_availability {
  display: inline-block;
  font-size: 12px !important;
  color: #6b6862 !important;
  background: #f1efeb !important;
  padding: 3px 10px !important;
  border-radius: 999px !important;
}
.schedule-widget-wrap .bw-widget__cta,
.schedule-widget-wrap .bw-widget__signup-now {
  font-family: var(--font-head) !important;
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  color: #fff !important;
  border-radius: 999px !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  font-size: 13px !important;
  padding: 10px 20px !important;
}
.schedule-widget-wrap .bw-widget__cta:hover {
  background: var(--accent-bright) !important;
  border-color: var(--accent-bright) !important;
}
.schedule-widget-wrap .bw-session__detail-link {
  color: #8c8880 !important;
}
.schedule-widget-wrap .bw-calendar__day--current > span,
.schedule-widget-wrap .bw-filter-count {
  background-color: var(--accent) !important;
}
.schedule-widget-wrap .bw-fullcal-button,
.schedule-widget-wrap .bw-calendar__heading--current {
  color: var(--accent) !important;
}
table.schedule-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}
table.schedule-table th, table.schedule-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
  vertical-align: top;
}
table.schedule-table th {
  font-family: var(--font-head);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--accent-bright);
  background: var(--surface-2);
}
table.schedule-table tr:last-child td { border-bottom: none; }
table.schedule-table td.day-cell {
  font-family: var(--font-head);
  color: var(--white);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
table.schedule-table td .time-slot {
  display: inline-block;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 10px;
  margin: 2px 4px 2px 0;
  font-size: 13px;
  color: var(--muted);
  white-space: nowrap;
}
.schedule-note {
  margin-top: 20px;
  font-size: 14px;
  color: #6b6b6b;
  text-align: center;
}
.schedule-note a { color: var(--accent-bright); text-decoration: underline; }

/* ---------- Pricing ---------- */
.pricing { background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: stretch;
  max-width: 760px;
  margin: 0 auto;
}
@media (max-width: 720px) {
  .price-grid { grid-template-columns: 1fr; max-width: 460px; }
}
.price-card {
  background: linear-gradient(160deg, var(--surface), var(--surface-2));
  border: 1px solid rgba(226,35,26,0.4);
  border-radius: 20px;
  padding: 44px 38px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 48px rgba(0,0,0,0.35);
  border-color: rgba(226,35,26,0.8);
}
.price-card-side {
  border-color: var(--line);
  background: var(--surface);
}
.price-card-side:hover { border-color: rgba(226,35,26,0.55); }
.price-card-side .price-amount { font-size: 40px; }
.price-card .eyebrow::before { display: none; }
.price-ribbon {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-head);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  white-space: nowrap;
  border: 1px solid var(--accent);
}
.price-amount {
  font-family: var(--font-head);
  font-size: 58px;
  line-height: 1;
  color: var(--white);
  margin-top: 12px;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.price-amount span { font-size: 18px; color: var(--muted-2); text-transform: none; }
.price-sub { color: var(--muted); margin-bottom: 28px; min-height: 52px; }
.price-features {
  list-style: none;
  padding: 0; margin: 0 0 32px;
  text-align: left;
  display: grid;
  gap: 12px;
  flex-grow: 1;
  align-content: start;
}
.price-card .btn-block { margin-top: auto; }
.price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--white);
}
.price-features li::before {
  content: "\2713";
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1px solid rgba(226,35,26,0.6);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  color: transparent;
  transition: background 0.35s ease, border-color 0.35s ease, color 0.35s ease, transform 0.35s ease;
}
.price-card:hover .price-features li::before {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: scale(1.1);
}
.price-features li:nth-child(1)::before { transition-delay: 0.05s; }
.price-features li:nth-child(2)::before { transition-delay: 0.15s; }
.price-features li:nth-child(3)::before { transition-delay: 0.25s; }
.price-features li:nth-child(4)::before { transition-delay: 0.35s; }
.price-features li:nth-child(5)::before { transition-delay: 0.45s; }

/* ---------- Reviews ---------- */
.reviews {
  background: #f4f3f1;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.reviews-head {
  max-width: 820px;
  margin: 0 auto 48px;
  text-align: center;
}
.reviews-eyebrow {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(16px, 2vw, 20px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: 14px;
}
.reviews-head h2 {
  font-size: clamp(28px, 4.4vw, 46px);
  color: var(--ink);
}
.reviews-sub {
  margin-top: 22px;
  font-family: var(--font-head);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b6b6b;
}
.reviews-bottom .muted {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  color: #6b6b6b;
  text-transform: none;
}

.review-carousel {
  overflow: hidden;
  padding: 60px 0;
  margin: -60px 0;
  /* Force this masked box onto its own GPU layer up front. Safari/iOS has a
     known bug where mask-image on an element with continuously-animating
     content loses track of the layer on repaint (e.g. on scroll) and the
     content flashes invisible; pre-promoting the layer keeps it stable. */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}

.review-track {
  display: flex;
  gap: 22px;
  width: max-content;
}
.review-track.is-ready {
  animation: reviewScroll 58s linear infinite;
}
.review-track:hover { animation-play-state: paused; }
@keyframes reviewScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .review-track { animation: none; }
}

.review-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 26px 26px 24px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.06);
  flex: 0 0 360px;
  transition: transform 0.4s cubic-bezier(0.34, 1.4, 0.64, 1), box-shadow 0.4s ease;
  will-change: transform;
}
.review-card:hover {
  transform: translateY(-5px) scale(1.018);
  box-shadow: 0 16px 28px rgba(0,0,0,0.16);
  z-index: 2;
}
@media (max-width: 860px) {
  .review-card { flex: 0 0 82vw; }
}
.review-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.review-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-family: var(--font-head);
  font-size: 16px;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
}
.review-who { flex: 1; }
.review-name { font-family: var(--font-head); font-size: 15px; color: var(--ink); letter-spacing: 0.01em; }
.review-time { font-size: 12.5px; color: #8a8a8a; }
.g-icon { flex-shrink: 0; display: block; }
.review-stars { color: #f2b400; letter-spacing: 2px; font-size: 15px; margin-bottom: 10px; }
.review-text { color: #2c2c2c; font-size: 14.5px; margin-bottom: 0; }

.reviews-bottom {
  margin-top: 40px;
  text-align: center;
  font-family: var(--font-head);
  font-size: 22px;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.reviews-bottom-stars { color: #f2b400; letter-spacing: 2px; }

.wins-card {
  display: block;
  max-width: 840px;
  margin: 120px auto 0;
  background: #fbfaf8;
  border: 1px solid #d9d7d3;
  border-radius: 24px;
  padding: 30px 40px 34px;
  box-shadow: 0 14px 34px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wins-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(0,0,0,0.12);
}

.wins-photo-spread {
  position: relative;
  height: 190px;
  max-width: 420px;
  margin: -110px auto 26px;
}
.wp-card {
  position: absolute;
  top: 10px;
  width: 30%;
  aspect-ratio: 3 / 4;
  border-radius: 10px;
  border: 5px solid #fff;
  box-shadow: 0 12px 26px rgba(0,0,0,0.22);
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease, left 0.95s cubic-bezier(0.34, 1.56, 0.64, 1), top 0.95s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.wins-card:hover .wp-card { transform: translateY(-6px) scale(1.02) rotate(var(--r, 0deg)) !important; }

.wp-1 { left: 0%;   top: 22px; --r: -20deg; transform: rotate(-20deg); z-index: 1; transition-delay: 0.16s; }
.wp-2 { left: 18%;  top: 0;    --r: -10deg; transform: rotate(-10deg); z-index: 2; transition-delay: 0.08s; }
.wp-3 { left: 35%;  top: 0;    --r: 0deg;   transform: rotate(0deg);   z-index: 5; transition-delay: 0s; }
.wp-4 { left: 52%;  top: 0;    --r: 10deg;  transform: rotate(10deg);  z-index: 3; transition-delay: 0.08s; }
.wp-5 { left: 70%;  top: 22px; --r: 20deg;  transform: rotate(20deg);  z-index: 2; transition-delay: 0.16s; }

.wins-photo-spread.stacked .wp-card {
  left: 35% !important;
  top: 30px !important;
  transform: rotate(0deg) scale(0.82) !important;
  transition-delay: 0s !important;
}

.wins-card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}
.wins-card-body h3 { color: var(--ink); font-size: 22px; margin-bottom: 0; }
.wins-card-body p { color: #5c5a56; font-size: 14.5px; margin-bottom: 0; max-width: 480px; }
.wins-card-body .btn { flex-shrink: 0; pointer-events: none; }

/* ---------- Member Wins page ---------- */
.wins-hero, .page-hero {
  padding: 168px 0 40px;
  text-align: center;
  background: #ffffff;
}
.wins-hero h1, .page-hero h1 {
  font-size: clamp(34px, 5.6vw, 62px);
  color: var(--ink);
}
.wins-hero-sub, .page-hero-sub {
  max-width: 560px;
  margin: 18px auto 0;
  font-size: 17px;
  color: #55524f;
}

.wins-gallery { background: #ffffff; padding-top: 40px; }

@media (max-width: 700px) {
  .wins-hero, .page-hero { padding: 108px 0 24px; }
  .wins-hero h1, .page-hero h1 { font-size: clamp(30px, 9vw, 40px); line-height: 1.2; }
  .wins-hero-sub, .page-hero-sub { font-size: 15px; }
  .wins-gallery { padding-top: 20px; }
}

.win-wall {
  column-count: 3;
  column-gap: 22px;
}
@media (max-width: 900px) { .win-wall { column-count: 2; } }
@media (max-width: 560px) { .win-wall { column-count: 1; } }

.win-tile {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  margin-bottom: 22px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  display: inline-block;
  width: 100%;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.win-tile:hover { transform: translateY(-3px); box-shadow: 0 14px 28px rgba(0,0,0,0.14); }
.win-tile img { width: 100%; display: block; }
.win-tile .cap {
  padding: 14px 16px;
  font-size: 14.5px;
  color: #2c2c2c;
  margin: 0;
}

/* ---------- Contact ---------- */
.contact { background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
}
.contact-row {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.contact-row:last-of-type { border-bottom: none; }
.contact-row .ci {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  color: var(--accent-bright);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-head);
}
.contact-row .cl { font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted-2); margin-bottom: 3px; }
.contact-row .cv { color: var(--white); font-size: 15.5px; }
.contact-row .cv a:hover { color: var(--accent-bright); }

.social-row { display: flex; gap: 12px; margin-top: 24px; }
.social-btn {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.15s ease;
}
.social-btn svg { width: 28px; height: 28px; display: block; }
.social-btn:hover { transform: translateY(-2px); }

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 320px;
}
.map-frame iframe { width: 100%; height: 100%; min-height: 320px; border: 0; filter: grayscale(0.5) contrast(1.05); }

/* ---------- Final CTA ---------- */
.final-cta {
  background:
    radial-gradient(circle at 30% 30%, rgba(226,35,26,0.35), transparent 55%),
    var(--surface);
  border-top: 1px solid var(--line);
  text-align: center;
}
.final-cta h2 { font-size: clamp(30px, 5vw, 48px); margin-bottom: 16px; color: var(--white); }
.final-cta p { font-size: 17px; max-width: 520px; margin: 0 auto 34px; }
.final-cta .ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; gap: 30px; } }
.footer-grid h4 {
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--muted-2);
  margin-bottom: 16px;
}
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-links a { color: var(--muted); font-size: 14.5px; }
.footer-links a:hover { color: var(--accent-bright); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted-2);
}

/* ---------- Phone choice popover ---------- */
.phone-choice-popover {
  position: absolute;
  z-index: 500;
  display: flex;
  gap: 6px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 6px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
  animation: phonePopIn 0.15s ease;
}
@keyframes phonePopIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}
.phone-choice-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  white-space: nowrap;
}
.phone-choice-btn:hover { background: var(--accent); }

/* ---------- Lead Modal ---------- */
.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.lead-modal.is-open { opacity: 1; pointer-events: auto; }

.lead-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 6, 7, 0.7);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.lead-modal-dialog {
  position: relative;
  width: 100%;
  max-width: 460px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: linear-gradient(160deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 40px 34px 34px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.5);
  transform: translateY(16px) scale(0.97);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.lead-modal.is-open .lead-modal-dialog { transform: translateY(0) scale(1); opacity: 1; }

.lead-modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  color: var(--muted);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.lead-modal-close:hover { border-color: var(--accent); color: var(--white); }

.lead-modal-body { text-align: center; }
.lead-modal-body h3 { font-size: 24px; color: var(--white); margin-bottom: 10px; }
.lead-modal-body > p { font-size: 14.5px; margin-bottom: 26px; }
.lead-modal-body form { text-align: left; }

.form-row { margin-bottom: 16px; }
.form-row label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 7px;
}
.form-row label .optional { text-transform: none; font-weight: 400; letter-spacing: 0; color: var(--muted-2); }
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--white);
  font-family: inherit;
  font-size: 15px;
  resize: vertical;
  transition: border-color 0.15s ease;
}
.form-row select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%237d8189' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
.form-row select option { background: var(--surface); color: var(--white); }
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-row input::placeholder,
.form-row textarea::placeholder { color: var(--muted-2); }
.form-row input:invalid.touched,
.form-row textarea:invalid.touched { border-color: var(--accent); }

.lead-modal-body .btn { margin-top: 6px; }
.lead-form-error {
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--accent-bright);
  text-align: center;
}
.lead-form-error a { color: inherit; text-decoration: underline; }
.lead-modal-fineprint {
  margin: 14px 0 0;
  font-size: 12.5px;
  color: var(--muted-2);
  text-align: center;
}

.lead-modal-success { text-align: center; padding: 10px 0 4px; }
.lead-success-icon {
  width: 60px; height: 60px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
}
.lead-modal-success h3 { font-size: 22px; color: var(--white); margin-bottom: 10px; }
.lead-modal-success p { font-size: 14.5px; margin-bottom: 24px; }
.lead-modal-success a { color: var(--accent-bright); text-decoration: underline; }

@media (max-width: 700px) {
  .lead-modal { padding: 16px; }
  .lead-modal-dialog {
    max-height: calc(100dvh - 32px);
    padding: 28px 22px 24px;
  }
  .lead-modal-body h3 { font-size: 20px; margin-bottom: 6px; }
  .lead-modal-body > p { margin-bottom: 16px; }
  .form-row { margin-bottom: 12px; }
}

/* ---------- Sign Up page ---------- */
.signup-hero { background: #f4f3f1 !important; }
.signin-section { background: #f4f3f1; padding: 20px 0 110px; }
.signin-card-wrap {
  max-width: 980px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #d9d7d3;
  border-radius: var(--radius);
  padding: 60px 80px;
  min-height: 260px;
  box-shadow: 0 20px 44px rgba(0,0,0,0.10);
}
.signin-note {
  text-align: center;
  max-width: 980px;
  margin: 24px auto 0;
  color: #6b6862;
  font-size: 14.5px;
}
.signin-note a { color: var(--accent); }
@media (max-width: 700px) {
  .signin-section { padding: 4px 0 70px; }
  .signin-card-wrap { padding: 22px; }
}

/* Two-column field layout on wider screens so the form fills the card
   instead of stacking into a narrow phone-shaped strip. */
.signin-card-wrap .hc_registration {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  column-gap: 32px !important;
  row-gap: 6px !important;
  grid-auto-flow: dense !important;
}
.signin-card-wrap .hc-label,
.signin-card-wrap .hc-address,
.signin-card-wrap .hc-country,
.signin-card-wrap .hc-prospect-comment,
.signin-card-wrap .communication-wrapper,
.signin-card-wrap .hc-actions {
  grid-column: 1 / -1 !important;
}
.signin-card-wrap .communication-settings { margin-bottom: 20px !important; }
@media (max-width: 640px) {
  .signin-card-wrap .hc_registration { grid-template-columns: 1fr !important; }
}

/* ---- Restyle the embedded Mindbody registration widget to match the site ---- */
.signin-card-wrap .healcode-registration-promo-text {
  font-family: var(--font-head) !important;
  font-size: 19px !important;
  color: var(--ink) !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  text-align: center !important;
  margin: 0 0 22px !important;
  padding-bottom: 18px !important;
  border-bottom: 1px solid #ece9e4 !important;
}
.signin-card-wrap .hc-label {
  font-family: var(--font-head) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  color: var(--accent) !important;
  margin: 36px 0 18px !important;
}
.signin-card-wrap .hc-label:first-of-type { margin-top: 0 !important; }
.signin-card-wrap div.hc-registration-field,
.signin-card-wrap .hc-prospect-comment {
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
}
.signin-card-wrap div.hc-registration-field::before,
.signin-card-wrap .hc-prospect-comment::before {
  order: -1;
  font-family: var(--font-head) !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  color: var(--ink) !important;
  margin-bottom: 7px !important;
}
.signin-card-wrap .hc-first-name::before { content: "First Name"; }
.signin-card-wrap .hc-last-name::before { content: "Last Name"; }
.signin-card-wrap .hc-mobile-phone::before { content: "Mobile Phone"; }
.signin-card-wrap .hc-email::before { content: "Email"; }
.signin-card-wrap .hc-address::before { content: "Address"; }
.signin-card-wrap .hc-city::before { content: "City"; }
.signin-card-wrap .hc-country::before { content: "Country"; }
.signin-card-wrap .hc-postal-code::before { content: "Postal Code"; }
.signin-card-wrap .hc-prospect-comment::before { content: "Comment"; }
.signin-card-wrap div.hc-registration-field input,
.signin-card-wrap div.hc-registration-field select,
.signin-card-wrap .hc-prospect-comment textarea {
  width: 100% !important;
  font-family: var(--font-body) !important;
  font-size: 16px !important;
  padding: 16px 18px !important;
  border: 1px solid #d9d7d3 !important;
  border-radius: 10px !important;
  margin-bottom: 22px !important;
  background: #fdfcfb !important;
  color: var(--ink) !important;
  box-sizing: border-box !important;
  appearance: auto !important;
}
.signin-card-wrap div.hc-registration-field input:focus,
.signin-card-wrap div.hc-registration-field select:focus,
.signin-card-wrap .hc-prospect-comment textarea:focus {
  outline: none !important;
  border-color: var(--accent) !important;
}
.signin-card-wrap .hc-prospect-comment textarea { min-height: 80px !important; resize: vertical !important; }
.signin-card-wrap label[for="a_comment_body"] { display: none !important; }

.signin-card-wrap .communication-wrapper {
  margin-top: 10px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}
.signin-card-wrap .communication-settings {
  margin-bottom: 0 !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-wrap: wrap !important;
  gap: 12px 20px !important;
  padding: 14px 16px !important;
  background: #fafaf8 !important;
  border: 1px solid #ece9e4 !important;
  border-radius: 10px !important;
}
.signin-card-wrap .communication-text {
  font-family: var(--font-body) !important;
  font-size: 13.5px !important;
  color: var(--ink) !important;
  margin-bottom: 0 !important;
  flex: 1 1 240px !important;
}
.signin-card-wrap .checkbox-wrapper {
  display: flex !important;
  flex-direction: row !important;
  gap: 18px !important;
  flex-shrink: 0 !important;
}
.signin-card-wrap .checkbox-wrapper span {
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 6px !important;
  font-family: var(--font-body) !important;
  font-weight: 600 !important;
  font-size: 13.5px !important;
  color: var(--ink) !important;
  white-space: nowrap !important;
}
.signin-card-wrap .checkbox-wrapper input[type="checkbox"] {
  width: 17px !important;
  height: 17px !important;
  margin: 0 !important;
  accent-color: var(--accent) !important;
}

.signin-card-wrap .hc-actions { margin-top: 20px !important; }
.signin-card-wrap input[type="submit"],
.signin-card-wrap button,
.signin-card-wrap .c-button {
  font-family: var(--font-head) !important;
  background: var(--accent) !important;
  border: none !important;
  color: #fff !important;
  border-radius: 999px !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  font-size: 13.5px !important;
  padding: 13px 22px !important;
  cursor: pointer !important;
  width: 100% !important;
  box-sizing: border-box !important;
  text-align: center !important;
  transition: background 0.15s ease !important;
}
.signin-card-wrap input[type="submit"]:hover,
.signin-card-wrap button:hover,
.signin-card-wrap .c-button:hover {
  background: var(--accent-bright) !important;
}
.signin-card-wrap .c-button--outline {
  background: transparent !important;
  border: 1px solid var(--accent) !important;
  color: var(--accent) !important;
}
.signin-card-wrap #hc-register-actions-9693084919d { margin-bottom: 8px !important; }
.signin-card-wrap #hc-register-actions-9693084919d .c-button {
  width: auto !important;
  display: inline-block !important;
  padding: 10px 18px !important;
}

.signin-card-wrap .hc-privacy-footer {
  margin-top: 18px !important;
  padding-top: 14px !important;
  border-top: 1px solid #ece9e4 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}
.signin-card-wrap .hc-privacy-footer img { height: 16px !important; }
.signin-card-wrap .privacy-policy-link {
  font-size: 12px !important;
  color: #9a978f !important;
}

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 90;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
