/* ========== D1 ENHANCEMENTS — sticky bar, filter, faq, lightbox, policies ========== */

/* NOW BOOKING pill + pink ribbon under hero */
.d1-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  margin-bottom: 16px;
  background: rgba(0,231,255,0.12);
  border: 1px solid rgba(0,231,255,0.4);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blue);
}
.d1-hero-pill .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 0 var(--blue);
  animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(0,231,255,0.7); }
  70%  { box-shadow: 0 0 0 10px rgba(0,231,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,231,255,0); }
}

/* Sticky book bar (appears after hero scroll) */
.d1-sticky-bar {
  position: fixed;
  top: 80px; right: -400px;
  z-index: 90;
  display: flex; align-items: center; gap: 16px;
  padding: 12px 18px 12px 22px;
  background: rgba(7,5,8,0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,46,147,0.4);
  border-right: 0;
  border-radius: 999px 0 0 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: right 0.4s cubic-bezier(.5,1.5,.5,1);
  box-shadow: 0 6px 30px rgba(255,46,147,0.25);
}
.d1-sticky-bar.visible { right: 0; }
.d1-sticky-bar .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--pink); box-shadow: 0 0 10px var(--pink); }
.d1-sticky-bar .book {
  margin-left: 6px;
  padding: 8px 16px;
  background: var(--pink);
  color: #000;
  font-weight: 700;
  border-radius: 999px;
}
.d1-sticky-bar .book:hover { background: var(--blue); }
@media (max-width: 700px) {
  .d1-sticky-bar { display: none !important; }
}

/* Service filter tabs */
.d1-svc-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.d1-svc-tab {
  padding: 10px 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  color: rgba(255,255,255,0.7);
  transition: all 0.2s;
}
.d1-svc-tab:hover { color: #fff; border-color: #fff; }
.d1-svc-tab.active {
  background: var(--pink);
  color: #000;
  border-color: var(--pink);
  box-shadow: 0 0 20px rgba(255,46,147,0.4);
}

/* Crew hover enhancement */
.d1-card .crew-cta {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 3;
  padding: 16px;
  background: linear-gradient(to top, rgba(255,46,147,0.95), rgba(255,46,147,0));
  transform: translateY(100%);
  transition: transform 0.3s;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  color: #000;
  font-weight: 700;
}
.d1-card:hover .crew-cta { transform: translateY(0); }
.d1-card:hover .d1-card-label { opacity: 0; transition: opacity 0.2s; }

/* Bio panel — full-card overlay revealed on hover for stylists with details */
.d1-card-bio {
  position: absolute;
  inset: 0;
  z-index: 4;
  background: linear-gradient(180deg, rgba(7,5,8,0.92) 0%, rgba(7,5,8,0.97) 100%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.25s ease;
  display: flex;
  align-items: stretch;
  pointer-events: none;
  border: 1px solid rgba(255,46,147,0.25);
}
.d1-card.has-bio:hover .d1-card-bio,
.d1-card.has-bio.is-open .d1-card-bio {
  opacity: 1;
  pointer-events: auto;
}
.d1-card.has-bio:hover .d1-card-label,
.d1-card.has-bio.is-open .d1-card-label { opacity: 0; }
.d1-card.has-bio { cursor: pointer; }

/* Touch: never trigger via :hover — only is-open works. Stops sticky-hover
   on iOS where a tap leaves the card in :hover state and ignores close. */
@media (hover: none) {
  .d1-card.has-bio:hover .d1-card-bio { opacity: 0; pointer-events: none; }
  .d1-card.has-bio:hover .d1-card-label { opacity: 1; }
  .d1-card.has-bio.is-open .d1-card-bio { opacity: 1; pointer-events: auto; }
  .d1-card.has-bio.is-open .d1-card-label { opacity: 0; }
}

/* Tap hint pill — visible on touch only, positioned top-right to avoid the name label */
.d1-card-tap-hint {
  display: none;
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  padding: 6px 10px;
  border: 1px solid rgba(255,46,147,0.7);
  border-radius: 999px;
  background: rgba(7,5,8,0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.22em;
  color: var(--pink);
  pointer-events: none;
  white-space: nowrap;
}
.d1-card.has-bio.is-open .d1-card-tap-hint { opacity: 0; }

/* Close button — visible only when bio is open */
.d1-card-bio-close {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 5;
  pointer-events: auto;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,46,147,0.15);
  border: 1px solid rgba(255,46,147,0.5);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  font-family: var(--font-mono);
  cursor: pointer;
  border-radius: 50%;
  padding: 0;
  transition: background 0.15s, transform 0.15s;
}
.d1-card-bio-close:hover {
  background: var(--pink);
  color: #000;
}
.d1-card-bio-inner {
  width: 100%;
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: auto;
}
.d1-card-bio-name {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
}
.d1-card-bio-hook {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.25;
  color: var(--pink);
  text-wrap: pretty;
}
.d1-card-bio-row {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.d1-card-bio-key {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.d1-card-bio-val {
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.45;
  color: rgba(255,255,255,0.85);
}
.d1-card-bio-ig {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px dashed rgba(255,255,255,0.4);
  align-self: flex-start;
  padding-bottom: 1px;
  transition: color 0.15s, border-color 0.15s;
}
.d1-card-bio-ig:hover {
  color: var(--pink);
  border-bottom-color: var(--pink);
}
.d1-card-bio-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #000;
  background: var(--pink);
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
}
.d1-card-bio-cta:hover {
  background: var(--gold);
  transform: translate(-2px,-2px);
  box-shadow: 3px 3px 0 #000;
}
@media (hover: none) {
  /* Touch: bio is hidden until the card is tapped (matches desktop hover).
     Show a tap-hint pill so users discover the interaction. */
  .d1-card-tap-hint { display: block; }
  .d1-card.has-bio.is-open .d1-card-bio-name { font-size: 20px; }
  .d1-card.has-bio.is-open .d1-card-bio-hook { font-size: 15px; }
}

/* Google maps iframe styling */
.d1-map-frame {
  position: relative;
  width: 100%; height: 100%;
  min-height: 420px;
  overflow: hidden;
}
.d1-map-frame iframe {
  width: 100%; height: 100%; min-height: 420px;
  border: 0;
  filter: invert(0.92) hue-rotate(180deg) saturate(0.8);
}
.d1-map-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top left, rgba(255,46,147,0.15), transparent 50%),
    radial-gradient(circle at bottom right, rgba(0,231,255,0.12), transparent 50%);
}

/* Lightbox */
.d1-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  cursor: zoom-out;
}
.d1-lightbox.open { display: flex; }
.d1-lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border: 1px solid rgba(255,46,147,0.4);
  box-shadow: 0 0 60px rgba(255,46,147,0.3);
}
.d1-lightbox .close {
  position: absolute;
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--pink);
  color: #000;
  font-family: var(--font-display);
  font-size: 24px;
  display: grid; place-items: center;
}
.d1-lightbox .nav-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 54px; height: 54px;
  border-radius: 50%;
  background: rgba(0,0,0,0.7);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-family: var(--font-display);
  font-size: 28px;
  display: grid; place-items: center;
  transition: all 0.2s;
}
.d1-lightbox .nav-arrow:hover { background: var(--pink); color: #000; }
.d1-lightbox .prev { left: 24px; }
.d1-lightbox .next { right: 24px; }
.d1-lightbox .count {
  position: absolute;
  bottom: 24px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--pink);
}
.d1-gal { cursor: zoom-in; }

/* FAQ */
.d1-faq {
  max-width: 900px;
  margin: 0 auto;
}
.d1-faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.d1-faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #fff;
  text-align: left;
  transition: color 0.2s;
}
.d1-faq-q:hover { color: var(--pink); }
.d1-faq-q .plus {
  width: 36px; height: 36px;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 20px;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 20px;
}
.d1-faq-item.open .d1-faq-q { color: var(--pink); }
.d1-faq-item.open .plus { transform: rotate(45deg); }
.d1-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s;
  font-family: var(--font-cond);
  font-size: 18px;
  line-height: 1.5;
  opacity: 0.85;
}
.d1-faq-item.open .d1-faq-a { max-height: 300px; padding-bottom: 24px; }

/* Policies */
.d1-pol {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 900px) { .d1-pol { grid-template-columns: 1fr; } }

.d1-pol-nav {
  position: sticky;
  top: 90px;
  align-self: flex-start;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255,46,147,0.05), rgba(0,231,255,0.05));
}
.d1-pol-nav h4 {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.d1-pol-nav a {
  display: block;
  padding: 8px 0;
  font-family: var(--font-cond);
  font-size: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s;
}
.d1-pol-nav a:hover { color: var(--pink); }
.d1-pol-nav a:last-child { border-bottom: 0; }

.d1-pol-item {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.d1-pol-item:last-child { border-bottom: 0; }
.d1-pol-item h3 {
  font-family: var(--font-display);
  font-size: 40px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.d1-pol-item h3 .n {
  color: var(--pink);
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.3em;
  display: block;
  margin-bottom: 6px;
}
.d1-pol-item p {
  font-family: var(--font-cond);
  font-size: 18px;
  line-height: 1.55;
  opacity: 0.9;
}
.d1-pol-item em {
  background: rgba(255,46,147,0.2);
  color: #fff;
  padding: 0 4px;
  font-style: normal;
  font-weight: 700;
}
.d1-pol-item strong { color: var(--gold); }


/* ---- Pricing snapshot card (under About pricing) ---- */
.d1-pricing-card {
  margin: 36px auto 0;
  max-width: 720px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 46, 147, 0.4);
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255, 46, 147, 0.06), 0 8px 40px rgba(255, 46, 147, 0.08);
}
.d1-pricing-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px 12px;
  border-bottom: 1px dashed rgba(255, 46, 147, 0.3);
  flex-wrap: wrap;
}
.d1-pricing-kicker {
  font-family: 'Anton', 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--pink, #ff2e93);
  text-transform: uppercase;
}
.d1-pricing-note {
  font-family: var(--font-mono, 'Space Mono', monospace);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.d1-pricing-list {
  list-style: none;
  margin: 0;
  padding: 8px 0;
}
.d1-pricing-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 22px;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.08);
}
.d1-pricing-list li:last-child { border-bottom: 0; }
.d1-pl-name {
  font-family: var(--font-display, 'Anton', sans-serif);
  font-size: 18px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
  flex: 1;
}
.d1-pl-price {
  font-family: var(--font-mono, 'Space Mono', monospace);
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--blue, #00e7ff);
  white-space: nowrap;
  font-weight: 700;
}
.d1-pricing-foot {
  padding: 14px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 46, 147, 0.06);
  font-family: var(--font-mono, 'Space Mono', monospace);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}
.d1-pricing-foot a {
  color: var(--pink, #ff2e93);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}
.d1-pricing-foot a:hover { color: var(--blue, #00e7ff); }
@media (max-width: 560px) {
  .d1-pricing-list li { padding: 10px 16px; }
  .d1-pl-name { font-size: 15px; }
  .d1-pl-price { font-size: 13px; }
  .d1-pricing-head { padding: 14px 16px 10px; }
  .d1-pricing-kicker { font-size: 18px; }
}


/* ===== GOOGLE REVIEWS ===== */

/* Sticky-bar 4.9★ pill */
.d1-sticky-bar .d1-sticky-rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  margin-left: 4px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  text-decoration: none;
  background: rgba(255,255,255,0.04);
  transition: border-color 0.15s, background 0.15s;
}
.d1-sticky-bar .d1-sticky-rating:hover {
  border-color: var(--gold);
  background: rgba(247,201,72,0.08);
}
.d1-sticky-bar .d1-sticky-rating .g-stars {
  color: var(--gold);
  letter-spacing: 1px;
  font-size: 10px;
  text-shadow: 0 0 8px rgba(247,201,72,0.4);
}
.d1-sticky-bar .d1-sticky-rating .g-num {
  color: #fff;
}

/* Reviews hero block — big 4.9 score + caption */
.d1-rev-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  padding: 28px 32px;
  margin-bottom: 32px;
  border: 1px solid rgba(255,255,255,0.1);
  background:
    linear-gradient(135deg, rgba(247,201,72,0.06), rgba(255,46,147,0.04) 40%, transparent 80%),
    rgba(255,255,255,0.02);
  position: relative;
  overflow: hidden;
}
.d1-rev-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 50%, rgba(247,201,72,0.18), transparent 40%);
  pointer-events: none;
}
.d1-rev-score {
  display: flex;
  align-items: center;
  gap: 22px;
  position: relative;
}
.d1-rev-score-num {
  font-family: var(--font-display);
  font-size: clamp(72px, 10vw, 120px);
  line-height: 0.9;
  color: var(--gold);
  text-shadow:
    0 0 30px rgba(247,201,72,0.35),
    3px 3px 0 #000;
  letter-spacing: -0.02em;
}
.d1-rev-score-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.d1-rev-score-stars {
  color: var(--gold);
  letter-spacing: 4px;
  font-size: 22px;
  text-shadow: 0 0 12px rgba(247,201,72,0.4);
}
.d1-rev-score-caption {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.d1-rev-score-caption strong { color: #fff; font-weight: 700; }
.d1-rev-score-caption .g-mark {
  color: var(--gold);
  font-weight: 700;
}
.d1-rev-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #000;
  background: var(--gold);
  text-decoration: none;
  border: 2px solid var(--gold);
  transition: transform 0.15s, background 0.15s, box-shadow 0.15s;
  position: relative;
  z-index: 1;
}
.d1-rev-cta:hover {
  transform: translate(-2px,-2px);
  background: var(--pink);
  border-color: var(--pink);
  color: #000;
  box-shadow: 4px 4px 0 #000;
}

/* Quote card — Google-review style */
.d1-testi {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 1000px) { .d1-testi { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .d1-testi { grid-template-columns: 1fr; } }

.d1-quote {
  padding: 24px 24px 20px;
  border: 1px solid rgba(255,255,255,0.1);
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.01));
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s, transform 0.2s;
}
.d1-quote::before { display: none !important; } /* kill old big quote glyph */
.d1-quote:hover {
  border-color: rgba(247,201,72,0.4);
  transform: translateY(-2px);
}

.d1-q-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.d1-q-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: #000;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.4) inset;
}
.d1-q-id { flex: 1; min-width: 0; }
.d1-q-author {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}
.d1-q-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}
.d1-q-g {
  width: 26px; height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Times New Roman', serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  background: linear-gradient(135deg, #4285F4 0%, #34A853 35%, #FBBC05 65%, #EA4335 100%);
  flex-shrink: 0;
  letter-spacing: 0;
}

.d1-q-rating {
  display: flex;
  align-items: center;
  gap: 10px;
}
.d1-q-rating .stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 14px;
}
.d1-q-when {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
}

.d1-quote p {
  font-family: var(--font-cond);
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255,255,255,0.92);
  margin: 0;
  text-wrap: pretty;
}

.d1-quote footer {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px dashed rgba(255,255,255,0.12);
}
.d1-quote footer strong {
  color: var(--pink);
  font-weight: 700;
}

.d1-rev-foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
}

@media (max-width: 640px) {
  .d1-rev-hero { padding: 22px 20px; }
  .d1-rev-score { gap: 16px; }
  .d1-rev-score-num { font-size: 76px; }
  .d1-rev-score-stars { font-size: 18px; letter-spacing: 3px; }
  .d1-rev-cta { width: 100%; justify-content: center; }
}


/* ===== MOBILE FOOTER FIXES ===== */
@media (max-width: 760px) {
  /* Footer bottom: stack © and city on narrow screens with breathing room */
  .d1-footer-bottom {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    text-align: left;
    padding-bottom: 90px; /* keep clear of the floating disco-ball button */
  }
  /* Visit column phone number: don't overflow the column.
     Apply only to the Visit column to avoid breaking 'Instagram'/'Facebook' in Follow. */
  .d1-footer .d1-footer-grid > div:nth-child(2) li,
  .d1-footer .d1-footer-grid > div:nth-child(2) li a {
    word-break: break-word;
    overflow-wrap: anywhere;
  }
  /* Allow Follow links to overflow the column rather than break the word */
  .d1-footer .d1-footer-grid > div:nth-child(4) li a {
    white-space: nowrap;
  }
  /* Footer CTA headline scales down on phones */
  .d1-footer-cta { font-size: 56px; line-height: 0.95; }
}

/* Disco-ball ("PRESS ME") button — make it smaller and lower z so it doesn't dominate the page on phones */
@media (max-width: 760px) {
  .halo-btn {
    width: 64px !important;
    height: 64px !important;
    bottom: 14px !important;
    right: 14px !important;
  }
  .halo-btn-label { font-size: 11px !important; margin-top: 18px !important; }
  .halo-btn-sub   { font-size: 8px  !important; margin-top: 1px  !important; }
}
