
/* ── PAGE HERO ── */
.results-hero {
  padding: 10rem 0 5rem;
  background: var(--black);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.results-hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--pink);
}
.results-hero-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,27,129,0.06) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}
.results-hero h1 { color: var(--white); margin-bottom: 1rem; }
.results-hero h1 em { color: var(--pink); font-style: italic; }
.results-hero p { color: rgba(255,255,255,0.6); max-width: 560px; margin: 0 auto 2.5rem; }
@media (max-width: 768px){
    .results-hero {
        padding:12rem 0 5rem;
        
    }
}

/* ── NUMBERS BAND ── */
.numbers-band {
  background: var(--pink);
  padding: 5rem 0;
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
@media (max-width: 680px) { .numbers-grid { grid-template-columns: repeat(2, 1fr); } }
.number-item {
  text-align: center;
  padding: 2rem 1rem;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.number-item:last-child { border-right: none; }
.number-big {
  font-family: var(--heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  display: block;
}
.number-label {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 0.5rem;
  display: block;
}

/* ── BEFORE & AFTER GALLERY (drag slider) ── */
.ba-section {
  background: var(--white);
  padding: 7rem 0;
}
.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
@media (max-width: 780px) { .ba-grid { grid-template-columns: 1fr; } }
.ba-card {
  background: var(--linen-pale);
  border: 1px solid var(--linen);
  overflow: hidden;
  transition: box-shadow var(--trans), transform var(--trans);
}
.ba-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}

/* Slider */
.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  cursor: ew-resize;
  touch-action: none;
  -webkit-user-select: none;
  user-select: none;
}
.ba-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
}
.ba-img-before {
  clip-path: inset(0 50% 0 0);
}
.ba-tag {
  position: absolute;
  top: 0.75rem;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  color: var(--white);
  z-index: 2;
  pointer-events: none;
}
.ba-tag.before { left: 0.75rem; background: rgba(0,0,0,0.55); }
.ba-tag.after  { right: 0.75rem; background: var(--pink); }

/* Handle appearance is set via inline styles directly on the elements
   (deliberately, not just classes) so it can never be hidden by an
   unrelated CSS rule elsewhere winning a specificity fight. */

.ba-caption {
  padding: 1.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.ba-caption-title {
  font-family: var(--heading);
  font-size: 1rem;
  color: var(--black);
}
.ba-caption-sub {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink-accessible, var(--pink));
}

/* ── TESTIMONIAL QUOTES SECTION ── */
.quotes-section {
  background: var(--linen-pale);
  padding: 7rem 0;
}
.quotes-carousel {
  position: relative;
  margin-top: 3.5rem;
}
.quotes-track {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 0.5rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.quotes-track::-webkit-scrollbar { display: none; }
.quotes-track .quote-card {
  flex: 0 0 calc(50% - 1rem);
  scroll-snap-align: start;
}
@media (max-width: 768px) {
  .quotes-track .quote-card { flex: 0 0 88%; }
}
.quotes-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--linen);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: all 0.2s ease;
}
.quotes-arrow:hover { background: var(--pink); border-color: var(--pink); }
.quotes-arrow:hover svg { stroke: white; }
.quotes-arrow svg { width: 18px; height: 18px; stroke: var(--black); transition: stroke 0.2s ease; }
.quotes-arrow.prev { left: -24px; }
.quotes-arrow.next { right: -24px; }
@media (max-width: 900px) {
  .quotes-arrow { display: none; }
}
.quotes-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.quotes-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--linen);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.25s ease;
}
.quotes-dot.active { background: var(--pink); width: 22px; border-radius: 4px; }

.quote-card {
  background: var(--white);
  border: 1px solid var(--linen);
  padding: 2.5rem;
  position: relative;
  transition: all 0.35s ease;
}
.quote-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 56px rgba(255,27,129,0.1);
  border-color: rgba(255,27,129,0.2);
}
.quote-card::before {
  content: '\201C';
  font-family: var(--heading);
  font-size: 6rem;
  color: rgba(255,27,129,0.1);
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  line-height: 1;
  pointer-events: none;
}
.quote-category {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.quote-category::before {
  content: '';
  width: 20px; height: 1px;
  background: var(--pink);
  flex-shrink: 0;
}
.quote-text {
  font-family: var(--heading);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--black);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.quote-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--linen);
}
.quote-name {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
}
.quote-location {
  font-size: 0.62rem;
  color: var(--grey);
}
.quote-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.quote-tag {
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--linen-pale);
  color: var(--grey);
  padding: 0.25rem 0.65rem;
  border: 1px solid var(--linen);
}

/* ── CLIENT STORY VIDEOS ── */
.video-section { background: var(--black); padding: 7rem 0; }
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (max-width: 860px) { .video-grid { grid-template-columns: 1fr; } }
.video-card {
  position: relative;
  aspect-ratio: 9 / 16;
  background: #111;
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}
.video-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-card-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem 1.25rem 1.25rem;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}
.video-card-name {
  font-family: var(--heading);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--white);
  display: block;
}
.video-card-sub {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  display: block;
  margin-top: 0.25rem;
}

/* ── SHORT CLIPS WALL ── */
.clips-section {
  background: var(--white);
  padding: 7rem 0;
}
.clips-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  margin-top: 3rem;
}
@media (max-width: 1100px) { .clips-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 768px)  { .clips-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px)  { .clips-grid { grid-template-columns: repeat(2, 1fr); } }

.clip-cell {
  position: relative;
  aspect-ratio: 9 / 16;
  background: var(--linen);
  overflow: hidden;
  cursor: pointer;
}
.clip-cell video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.clip-cell:hover video { transform: scale(1.04); }
.clip-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,27,129,0);
  transition: background 0.3s ease;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.clip-cell:hover .clip-overlay {
  background: rgba(255,27,129,0.2);
}
.clip-play {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
}
.clip-cell:hover .clip-play {
  opacity: 1;
  transform: scale(1);
}
.clip-play svg { width: 18px; height: 18px; color: var(--pink); margin-left: 3px; }

/* ── LIGHTBOX ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-inner {
  position: relative;
  width: min(420px, 90vw);
  aspect-ratio: 9/16;
}
.lightbox-inner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lightbox-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  font-family: var(--heading);
  line-height: 1;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.lightbox-nav:hover { background: var(--pink); border-color: var(--pink); }
.lightbox-prev { left: -3.5rem; }
.lightbox-next { right: -3.5rem; }
.lightbox-nav svg { width: 16px; height: 16px; }

/* ── INSTAGRAM SECTION ── */
.instagram-section { background: var(--linen-pale); padding: 6rem 0; }
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 3px;
  margin-top: 3rem;
}
@media (max-width: 768px) { .instagram-grid { grid-template-columns: repeat(3, 1fr); } }
.ig-cell {
  aspect-ratio: 1;
  background: var(--linen);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: block;
}
.ig-cell:hover .ig-overlay { opacity: 1; }
.ig-cell-inner {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.ig-cell-inner img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.ig-overlay {
  position: absolute; inset: 0;
  background: rgba(255,27,129,0.75);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.ig-overlay svg { width: 28px; height: 28px; color: white; }
.ig-follow { text-align: center; margin-top: 2rem; }
.ig-handle { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.14em; color: var(--grey); }
.ig-handle strong { color: var(--pink); }
