/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 100svh; /* full viewport height, accounts for site-mobile-nav browser UI */
  position: relative;
  display: flex;
  align-items: center; /* vertically centers the hero content with balanced breathing room */
  overflow: hidden;
}
.heroimage { position: absolute; inset: 0; background: var(--color-surface-raised); }
.heroimage img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.08) brightness(.48); /* darkens/contrasts photo so var(--color-white) text stays readable */
  animation: hero-zoom 22s ease-out forwards; /* slow Ken Burns drift on load */
}
@keyframes hero-zoom {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}
/* Gradient overlay: fades photo to black at the top and bottom for readability */
.heroimage:after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hero-image-overlay);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 72px), var(--content-max));
  margin: auto;
  padding: 88px 0 76px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center; /* centers all hero content */
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--text-hero); /* scales fluidly between site-mobile-nav and desktop */
  letter-spacing: -.04em;
  line-height: 1.0;
  margin: 0 auto 20px;
  max-width: 1050px;
}
.hero h1 em { font-style: italic; color: var(--color-accent-strong); }

/* Load sequence: hero content rises in staggered order */
.hero h1,
.hero-trust,
.hero-info,
.hero-book {
  opacity: 0;
  animation: hero-rise .9s cubic-bezier(.2,.7,.2,1) both;
}
.hero h1    { animation-delay: .1s; }
.hero-trust { animation-delay: .3s; }
.hero-info  { animation-delay: .45s; }
.hero-book  { animation-delay: .6s; }

@keyframes hero-rise {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Trust line — three bare facts, muted, directly under the headline */
.hero-trust {
  font-size: 14px;
  letter-spacing: .03em;
  color: var(--color-text-soft);
  margin-bottom: 22px;
}

/* Studio hours + address — tight two-line block below the headline */
.hero-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin: 0 0 30px;
  font-size: 14px;
  color: var(--color-text-muted);
  letter-spacing: .02em;
}

/* Hero booking button — centered below the headline ("Book a session") */
.hero-book {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 0; margin-bottom: 0;
}
.hero-book a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--color-surface-band);
  color: var(--color-text);
  padding: 16px 32px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast), transform var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
}
.hero-book a svg { width: 16px; height: 16px; flex-shrink: 0; }
.hero-book a:hover { background: var(--color-accent-strong); color: var(--color-white); transform: translateY(-2px); border-color: var(--color-accent-strong); }
.hero-book a:hover svg { transform: translateX(3px); transition: transform .2s; }

/* Secondary "See recent work" — outline-only so the primary stays dominant */
.hero-book a.ghost {
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text-soft);
}
.hero-book a.ghost:hover {
  background: transparent;
  border-color: var(--color-on-surface-band);
  color: var(--color-on-surface-band);
}

/* ============================================================
   SERVICE MARQUEE — full-bleed scrolling ticker
   ============================================================ */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--color-border-subtle);
  border-bottom: 1px solid var(--color-border-subtle);
  padding: 24px 0;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 32s linear infinite;
  will-change: transform;
}
.marquee__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
}
.marquee__group span {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1;
  color: var(--color-text-muted);
  padding: 0 26px;
}
.marquee__group .dot {
  color: var(--color-accent-strong);
  font-size: clamp(20px, 2.6vw, 34px);
  padding: 0;
}
@keyframes marquee-scroll {
  to { transform: translateX(-50%); }
}

/* ============================================================
   ABOUT / STUDIO SECTION
   ============================================================ */
.about {
  display: grid;
  grid-template-columns: .75fr 1.25fr; /* narrow heading column, wider site-footer__bottom column */
  gap: 100px;
  border-top: 1px solid var(--color-border);
  padding-top: 26px;
}
.about h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--text-h2);
  line-height: .82;
  letter-spacing: -.045em;
  margin: 24px 0 0;
}
.about h2 em { font-style: italic; color: var(--color-accent-strong); }
.aboutcopy p { font-size: 20px; line-height: 1.65; color: var(--color-text-soft); max-width: 720px; margin: 0 0 25px; }

/* "2017 Founded / LHR Gulberg III / 6+ Years" stat row under the About site-footer__bottom */
.meta {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  margin-top: 50px;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.meta div { padding: 18px 14px 18px 0; border-right: 1px solid var(--color-border); }
.meta div + div { padding-left: 18px; }
.meta div:last-child { border: 0; }
.meta strong { font-family: var(--font-display); font-size: 34px; font-weight: 400; display: block; }
.meta span { font-size: 9px; letter-spacing: .14em; text-transform: uppercase; color: var(--color-text-muted); }

/* Studio section — full-width surface-band */
.studio { background: var(--color-surface-band); color: var(--color-on-surface-band); }
.studio .eyebrow { color: var(--color-on-surface-band-subtle); }
.studio h2 { color: var(--color-on-surface-band); }
.studio .about { border-top-color: var(--color-border); }
.studio .aboutcopy p { color: var(--color-on-surface-band-subtle); }
.studio .meta { border-top-color: var(--color-border); border-bottom-color: var(--color-border); }
.studio .meta div { border-right-color: var(--color-border); }
.studio .meta strong { color: var(--color-on-surface-band); }
.studio .meta span { color: var(--color-on-surface-band-subtle); }

/* ============================================================
   WORK / PORTFOLIO GALLERY
   ============================================================ */
.work { padding-top: 40px; padding-bottom: 60px; background: var(--color-surface-band); }
.work .eyebrow { color: var(--color-on-surface-band-subtle); }
.work .sectionhead h2 { color: var(--color-on-surface-band); }

/* Filter buttons: All / Black & grey / Realism / Traditional / Colour */
.filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 34px; }
.filter {
  border: 1px solid var(--color-filter-border);
  background: transparent;
  color: var(--color-on-surface-band-subtle);
  padding: 10px 13px;
  font: inherit;
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
}
.filter.active, .filter:hover { border-color: var(--color-on-surface-band); color: var(--color-on-surface-band); }

/* Slider wrapper: contains the track and prev/next arrows.
   Sits outside .wrap (full-bleed) so the track fills the viewport width. */
.gallery-slider { position: relative; }
.gallery-track {
  --tile-w: clamp(280px, 38vw, 480px);   /* desktop tile width */
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;                  /* Firefox */
}
.gallery-track::-webkit-scrollbar { display: none; }  /* Chrome/Safari/Edge */

.tile {
  flex: 0 0 var(--tile-w);
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
  background: var(--color-surface-raised);
  cursor: pointer;
}
.tile img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2,.7,.2,1), filter .4s;
}
.tile:hover img { transform: scale(1.035); filter: brightness(.76); }
.tile .view {
  position: absolute;
  right: 14px; bottom: 14px;
  width: 36px; height: 36px;
  border: 1px solid var(--color-border-strong);
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateY(8px);
  transition: .25s;
}
.tile:hover .view { opacity: 1; transform: none; }

/* Prev / Next arrows — frosted-glass circles with chevron icons */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--color-border-strong);
  background: var(--color-arrow-background);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: var(--color-text);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
  transition: background .25s, color .25s, border-color .25s, box-shadow .25s, transform .25s;
}
.slider-arrow svg { display: block; width: 22px; height: 22px; }
.slider-arrow:hover,
.slider-arrow:focus-visible {
  background: var(--color-accent-strong);
  border-color: transparent;
  color: var(--color-white);
  box-shadow: 0 10px 28px rgba(0,0,0,0.5);
  transform: translateY(-50%) scale(1.05);
}
.slider-arrow:active { transform: translateY(-50%) scale(0.96); }
.slider-arrow:focus-visible { outline: var(--focus-ring); outline-offset: 2px; }
.slider-prev { left: 20px; }
.slider-next { right: 20px; }

/* ============================================================
   STUDIO SPACE — 1 hero + 2x2 grid
   ============================================================ */
.studio-grid { display: flex; flex-direction: column; gap: 12px; }
.studio-hero { overflow: hidden; }
.studio-hero img { width: 100%; aspect-ratio: 2/1; object-fit: cover; display: block; filter: brightness(.82); transition: .5s; }
.studio-hero:hover img { filter: brightness(.92); }
.studio-details { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.studio-thumb { overflow: hidden; }
.studio-thumb img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; filter: brightness(.78); transition: .5s; }
.studio-thumb:hover img { transform: scale(1.04); filter: brightness(.9); }

/* ============================================================
   SERVICES GRID (Tattoos / Piercing / Makeup / Temporary)
   ============================================================ */
.services { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.service {
  /* Each service card: photo on one side, text on the other */
  border: 1px solid var(--color-border-subtle);
  background: var(--color-surface-band);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 360px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}
.serviceimage { position: relative; overflow: hidden; background: var(--color-surface-raised); aspect-ratio: 1/1; align-self: start; }
.serviceimage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(.82);
  transition: transform .6s ease, filter .4s;
}
.service:hover .serviceimage img { transform: scale(1.04); filter: brightness(.95); }
.servicebody { padding: 28px; display: flex; flex-direction: column; align-items: flex-start; color: var(--color-on-surface-band); }
.servicebody .num { color: var(--color-on-surface-band-subtle); font-size: 9px; letter-spacing: .16em; } /* "01", "02"... */
.servicebody h3 { font-family: var(--font-display); font-weight: 400; font-size: var(--text-h3); line-height: .9; margin: 45px 0 18px; color: var(--color-on-surface-band); }
.servicebody p { font-size: 12px; line-height: 1.7; color: var(--color-text-muted); margin: 0 0 24px; }

/* ============================================================
   ARTISTS SECTION (2-column card grid)
   ============================================================ */
.artists { display: block; }
.artistcopy h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--text-h2-lg);
  line-height: .78;
  letter-spacing: -.05em;
  margin: 22px 0 35px;
}
.artistcopy h2 em { font-style: italic; color: var(--color-accent-strong); }
.artistcopy > p { color: var(--color-text-muted); line-height: 1.8; max-width: 600px; }

/* Artists carousel wrapper */
.artists-carousel { position: relative; margin-top: 42px; }
.artists-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.artists-track::-webkit-scrollbar { display: none; }

.artist-card {
  flex: 0 0 calc((100% - 24px) / 3);  /* 3 cards visible, 2 gaps of 12px */
  scroll-snap-align: start;
  border: 1px solid var(--color-border);
  background: var(--color-surface-band);
  color: var(--color-on-surface-band);
  overflow: hidden;
}
.artist-img {
  overflow: hidden;
  background: var(--color-surface-raised);
  aspect-ratio: 1/1;
}
.artist-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.artist-card:hover .artist-img img { transform: scale(1.04); }
.artist-info { padding: 14px 16px 16px; }
.artist-info h3 { font-family: var(--font-display); font-weight: 400; font-size: 17px; margin: 0 0 2px; color: var(--color-on-surface-band); }
.artist-role { display: block; font-size: 8px; letter-spacing: .12em; text-transform: uppercase; color: var(--color-accent-strong); margin-bottom: 6px; }
.artist-qual { display: block; font-size: 10px; color: var(--color-on-surface-band-subtle); line-height: 1.4; }

/* Artist cards link to their profile pages */
.artist-card__link { display: block; text-decoration: none; color: inherit; }
.artist-card__link:focus-visible { outline: var(--focus-ring); outline-offset: 2px; }

/* Artists carousel arrows */
.artists-arrow {
  position: absolute;
  top: calc(50% - 30px);  /* offset to account for info block below image */
  transform: translateY(-50%);
  z-index: 3;
  width: 38px;
  height: 38px;
  border: 1px solid var(--color-border-strong);
  background: var(--color-image-caption-background);
  color: var(--color-text);
  font-size: 16px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background .2s, opacity .2s;
}
.artists-arrow:hover { background: var(--color-text); color: var(--color-background); }
.artists-prev { left: -8px; }
.artists-next { right: -8px; }

/* ============================================================
   INSTAGRAM LINK
   ============================================================ */
/* Instagram CTA — gradient pill so it reads instantly as the studio's Instagram link */
.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 13px 26px 13px 18px;
  border-radius: 999px;
  color: var(--color-white);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .05em;
  background: linear-gradient(135deg, #F58529 0%, #DD2A7B 55%, #8134AF 100%);
  box-shadow: 0 8px 24px rgba(221, 42, 123, 0.35);
  transition: transform var(--transition-standard), box-shadow var(--transition-standard), filter var(--transition-standard);
}
.instagram-link:hover,
.instagram-link:focus-visible {
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(221, 42, 123, 0.45);
  filter: brightness(1.07);
}
.instagram-link:focus-visible { outline: var(--focus-ring); outline-offset: 3px; }
.instagram-icon { flex-shrink: 0; }
.instagram-arrow {
  flex-shrink: 0;
  opacity: .85;
  margin-left: 2px;
  transition: transform var(--transition-fast);
}
.instagram-link:hover .instagram-arrow { transform: translate(2px, -2px); }

/* ============================================================
   BOOKING / APPOINTMENTS BAND
   ============================================================ */
.booking {
  background: var(--color-surface-band);
}
.bookinggrid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 90px; align-items: end; }
.booking .eyebrow { color: var(--color-on-surface-band-subtle); }
.booking h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--text-title);
  line-height: .76;
  letter-spacing: -.055em;
  margin: 22px 0 40px;
  color: var(--color-on-surface-band);
}
.booking h2 em { font-style: italic; color: var(--color-accent-strong); }
.booking p { max-width: 500px; color: var(--color-on-surface-band-subtle); line-height: 1.8; }

/* WhatsApp booking card on the right side of the booking band */
.bookcard { border: 1px solid var(--color-border); padding: 28px; }
.bookcard h3 { font-family: var(--font-display); font-size: 40px; font-weight: 400; margin: 0 0 20px; color: var(--color-on-surface-band); }
.bookcard p { font-size: 12px; margin-bottom: 28px; color: var(--color-on-surface-band-subtle); }
.bookcard a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--color-cta-dark);
  color: var(--color-text);
  padding: 17px;
  font-size: 9px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

/* ============================================================
   CLIENT REVIEWS
   ============================================================ */
.reviews { display: grid; grid-template-columns: 1.1fr 1fr 1fr; gap: 12px; }
.reviews-more { display: flex; justify-content: center; margin-top: 56px; }
.review {
  border: 1px solid var(--color-border);
  padding: 28px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--color-surface-band);
  color: var(--color-on-surface-band);
}
/* All review cards share the surface-band treatment */
.review.featured { background: var(--color-surface-band); color: var(--color-on-surface-band); border-color: var(--color-border); }
.stars { font-size: 12px; letter-spacing: .16em; color: var(--color-focus); }
.review p { font-family: var(--font-body); font-weight: 400; font-size: 17px; line-height: 1.6; margin: 28px 0 22px; }

/* Reviewer identity row: avatar + name + source */
.reviewer { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  border-radius: var(--radius-round);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--color-text);
  background: var(--color-accent);
  overflow: hidden;          /* crops to fill the circle instead of squishing */
}
.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.featured .avatar { background: var(--color-background); color: var(--color-text); border-color: var(--color-border-subtle); }
.reviewer .who { display: flex; flex-direction: column; gap: 2px; }
.reviewer small { font-size: 9px; letter-spacing: .13em; text-transform: uppercase; color: var(--color-on-surface-band-subtle); }
.reviewer .source { font-size: 9px; letter-spacing: .1em; text-transform: uppercase; color: var(--color-on-surface-band-subtle); }

/* "4.8 / 270+ reviews" score shown next to the section heading */
.reviewscore { display: flex; align-items: end; gap: 20px; margin-bottom: 42px; }
.reviewscore strong { font-family: var(--font-display); font-size: 72px; font-weight: 400; line-height: .75; }
.reviewscore span { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--color-text-muted); }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq { border-top: 1px solid var(--color-border); }
.faqitem { border-bottom: 1px solid var(--color-border); }
.faqq {
  /* Clickable question row — toggles .open on its parent .faqitem via JS */
  width: 100%;
  background: none;
  border: 0;
  color: var(--color-text);
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font: inherit;
  cursor: pointer;
}
.faqq strong { font-family: var(--font-display); font-size: 27px; font-weight: 400; }
.faqq span { font-size: 22px; color: var(--color-accent-strong); transition: .25s; } /* the "+" icon */
.faqitem.open .faqq span { transform: rotate(45deg); } /* "+" rotates into an "×" when open */

.faqanswer { max-height: 0; overflow: hidden; transition: max-height .35s ease; } /* collapsed by default */
.faqanswer p { max-width: 720px; color: var(--color-text-muted); font-size: 13px; line-height: 1.8; padding: 0 50px 0 0; margin: 0 0 25px; }
.faqitem.open .faqanswer { max-height: 180px; } /* expands when parent has .open */

/* ============================================================
   LOCATION / MAP
   ============================================================ */
.location { display: grid; grid-template-columns: .8fr 1.2fr; gap: 12px; }
.locationcopy { border: 1px solid var(--color-border); padding: 30px; display: flex; flex-direction: column; }
.locationcopy h2 { font-family: var(--font-display); font-size: 65px; line-height: .8; font-weight: 400; letter-spacing: -.04em; margin: 22px 0 30px; }
.locationcopy p { color: var(--color-text-muted); font-size: 15px; line-height: 1.8; }
.locationcopy p strong { display: block; color: var(--color-text); font-size: 16px; margin-bottom: 2px; }
.mapwrap { min-height: 480px; background: var(--color-surface-raised); overflow: hidden; border: 1px solid var(--color-border); }
.mapwrap iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: 0;
  filter: grayscale(0.6) contrast(1.05); /* keeps the embedded Google Map on-brand (no bright map colors) */
}
.maplink { margin-top: auto; display: inline-flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--color-border); padding-bottom: 10px; font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }

/* ============================================================
   RESPONSIVE / MOBILE STYLES (≤850px, i.e. tablets & phones)
   ============================================================ */
@media (max-width: 850px) {

  /* --- hero --- */
  .hero-content { width: calc(100% - 34px); padding: 72px 0 56px; }
  .hero h1 { font-size: clamp(52px, 15vw, 92px); line-height: .95; margin-bottom: 32px; }
  .hero-book { margin-bottom: 64px; }

  /* --- section spacing & headings --- */
  section { padding: 90px 0; }
  .about, .artists, .bookinggrid { grid-template-columns: 1fr; gap: 45px; }
  .aboutcopy p { font-size: 17px; }
  .about, .artistcopy, .bookinggrid > div:first-child { text-align: center; }
  .meta { justify-content: center; }

  /* --- gallery slider (mobile) --- */
  .gallery-track {
    --tile-w: 84vw;
    gap: 10px;
    /* centre the first/last tile; every tile snaps to centre while scrolling */
    padding-inline: calc((100% - var(--tile-w)) / 2);
  }
  .tile { scroll-snap-align: center; }
  .slider-arrow { width: 44px; height: 44px; }
  .slider-arrow svg { width: 18px; height: 18px; }
  .slider-prev { left: 8px; }
  .slider-next { right: 8px; }
  .services { grid-template-columns: 1fr 1fr; gap: 7px; }
  .service {
    grid-template-columns: 1fr;
    min-height: 0;
    position: relative;
  }
  .serviceimage { aspect-ratio: 3/4; }
  .servicebody {
    position: absolute;
    inset: 0;
    padding: 12px;
    justify-content: flex-end;
    background: var(--image-overlay-soft);
  }
  .servicebody h3 { font-size: 17px; margin: 4px 0 0; color: var(--color-text); }
  .servicebody .num { font-size: 8px; color: var(--color-text-muted); }

  /* --- studio grid --- */
  .studio-hero img { aspect-ratio: 3/2; }
  .studio-details { grid-template-columns: 1fr 1fr; }

  /* --- artists carousel → 2-col grid (mobile) --- */
  .artists-carousel { margin-top: 28px; }
  .artists-track { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; overflow: visible; scroll-snap-type: none; padding-bottom: 0; }
  .artist-card { flex: auto; }
  .artists-arrow { display: none; }
  .artist-img { aspect-ratio: 3/4; }
  .artist-info { padding: 14px 16px 18px; }
  .artist-info h3 { font-size: 18px; }

  /* --- reviews, location, FAQ --- */
  .reviews { grid-template-columns: 1fr; }
  .review { min-height: 210px; }
  .review p { font-size: 16px; margin: 22px 0 18px; }
  .reviewscore { margin-bottom: 25px; }
  .location { grid-template-columns: 1fr; }
  .mapwrap, .mapwrap iframe { min-height: 380px; }
  .faqq strong { font-size: 23px; }
  .faqanswer p { padding-right: 10px; }
}

/* --- filters (phones): force a tidy 2×4 grid so the buttons never
       wrap to a third row or spill past the viewport --- */
@media (max-width: 600px) {
  .filters {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
  }
  .filter {
    padding: 9px 6px;
    font-size: 8px;
    letter-spacing: .08em;
    text-align: center;
    line-height: 1.35;
  }
}
