/* ================================================
   SHANTELL'S BEAUTY GALLERY — CORRECTED STYLES
   All sections built as real HTML/CSS.
   Zero comp-crop images used as content.
   ================================================ */

/* --- DESIGN TOKENS --- */
:root {
  --black:  #050505;
  --ivory:  #F7F4EF;
  --gold:   #D9A92F;
  --pink:   #EC1977;
  --gray:   #B7B2B0;
  --white:  #ffffff;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Montserrat', Arial, sans-serif;
  --max-w:  1200px;
  --header-h: 90px;
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; } /* overflow-x on html, not body — avoids iOS Safari sticky+touch bug */
body {
  background: var(--black);
  color: var(--ivory);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* --- SCROLL MARGIN (prevents header from covering anchors) --- */
#about, #services, #gallery, #contact {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

/* --- SHARED EYEBROW --- */
.eyebrow {
  font: 700 10px/1 var(--font-sans);
  letter-spacing: .28em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 18px;
}
.eyebrow.pink  { color: var(--pink); }
.eyebrow.gold  { color: var(--gold); }
.eyebrow.white { color: rgba(255,255,255,.65); }

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  font: 700 9.5px/1 var(--font-sans);
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 16px 30px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .22s, color .22s, border-color .22s;
}
.btn-gold { background: var(--gold); color: var(--black); border-color: var(--gold); }
.btn-gold:hover { background: #c49a28; border-color: #c49a28; }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.4); }
.btn-ghost:hover { border-color: var(--white); }
.btn-outline-dark { background: transparent; color: var(--black); border: 1px solid rgba(0,0,0,.45); }
.btn-outline-dark:hover { background: var(--black); color: var(--white); border-color: var(--black); }


/* ================================================
   HEADER
   ================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--header-h);
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: box-shadow .3s;
}
.header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.5); }
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}
/* --- PRODUCTION LOGO --- */
.logo-img {
  display: block;
  width: auto;
  border: none;
  outline: none;
}
.logo-img--header { height: 80px; }  /* fits cleanly inside 90px header */
.logo-img--footer { height: 120px; }

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 34px;
}
.main-nav a {
  font: 600 10px/1 var(--font-sans);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  transition: color .2s;
}
.main-nav a:hover { color: var(--white); }
.btn-book {
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  padding: 10px 22px;
  font: 600 9.5px/1 var(--font-sans) !important;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: background .2s, color .2s !important;
  border-radius: 0;
}
.btn-book:hover { background: var(--gold) !important; color: var(--black) !important; }

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 4px;
  margin-left: auto;
  touch-action: manipulation;          /* prevents 300ms tap delay on iOS */
  -webkit-tap-highlight-color: transparent;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: rgba(255,255,255,.8);
  transition: all .25s;
}

/* --- MOBILE DRAWER --- */
.mobile-drawer {
  position: fixed;
  top: 0; right: 0;
  width: 260px; height: 100%;
  background: #0c0c0c;
  z-index: 300;
  padding: 72px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  transform: translateX(100%);
  transition: transform .3s ease;
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer a {
  font: 600 11px/1 var(--font-sans);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}
.drawer-book {
  color: var(--gold) !important;
  border: 1px solid var(--gold);
  padding: 12px 20px;
  text-align: center;
  margin-top: 8px;
  transition: background .2s;
}
.drawer-book:hover { background: var(--gold); color: var(--black) !important; }
.drawer-close {
  position: absolute;
  top: 20px; right: 22px;
  background: none;
  border: none;
  color: var(--gray);
  font-size: 17px;
  cursor: pointer;
  line-height: 1;
}
.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 250;
}
.drawer-overlay.visible { display: block; }


/* ================================================
   HERO — Full-width background-image layout
   Image sits behind all text. No <img> element.
   ================================================ */
.hero {
  position: relative;
  min-height: 700px;
  background-color: var(--black);
  background-image: url('assets/images/shantells-hero-clean.jpg');
  background-size: cover;
  background-position: right center;  /* vertically centered; woman right-anchored */
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Subtle gradient overlay — text reads on left, woman visible on right */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,.65) 0%,
    rgba(0,0,0,.45) 25%,
    rgba(0,0,0,.20) 45%,
    rgba(0,0,0,0)   70%
  );
  pointer-events: none;
  z-index: 0;
}

/* Text sits above both the background image and the overlay */
.hero-copy {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  /* Fluid padding: scales from 72px/20px (mobile) to 115px/40px (desktop) */
  padding: clamp(72px, 6vw + 22px, 115px) clamp(20px, 4vw, 40px);
}

/* Constrain copy to left half; 100% allows natural wrapping on narrow viewports */
.hero-copy > * { max-width: min(500px, 100%); }

.hero-eyebrow {
  font: 700 10px/1 var(--font-sans);
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero h1 {
  /* Fluid type: 34px @ 375px → 68px @ 1440px+ */
  font: 300 clamp(34px, 3vw + 22px, 68px)/1.05 var(--font-serif);
  color: var(--white);
  margin-bottom: 12px;
}
.hero h1 em { font-style: italic; font-weight: 400; color: var(--gold); }
.hero-sub {
  font: 700 10px/1 var(--font-sans);
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 30px;
}
.hero-tagline {
  font: 300 clamp(14px, 1vw + 10px, 17px)/1.7 var(--font-serif);
  color: rgba(255,255,255,.65);
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;  /* wraps naturally before explicit stacking breakpoint */
}


/* ================================================
   ABOUT
   ================================================ */
.about {
  background: var(--ivory);
  color: var(--black);
}
.about-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 96px 40px;
  display: grid;
  grid-template-columns: .85fr 1.35fr;
  gap: 72px;
  align-items: start;
}
.about-left h2 {
  font: 300 58px/1.05 var(--font-serif);
  color: var(--black);
  margin-bottom: 24px;
}
.about-left h2 em { font-style: italic; color: var(--pink); }
.about-accent {
  font: 400 italic 17px/1.55 var(--font-serif);
  color: #4a4540;
  padding-left: 18px;
  border-left: 2px solid var(--pink);
}
.about-right p {
  font: 300 14px/1.9 var(--font-sans);
  color: #3a3633;
  margin-bottom: 18px;
}
.about-right p:last-child { margin-bottom: 0; }


/* ================================================
   SERVICES
   ================================================ */
.services {
  background:
    radial-gradient(ellipse at 15% 50%, rgba(217,169,47,.045) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 50%, rgba(236,25,119,.04) 0%, transparent 55%),
    var(--black);
}
.services-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 96px 40px;
  text-align: center;
}
.services-inner h2 {
  font: 300 58px/1.05 var(--font-serif);
  color: var(--white);
  margin-bottom: 16px;
}
.services-inner h2 em { font-style: italic; color: var(--gold); }
.services-sub {
  font: 300 15px/1.75 var(--font-serif);
  color: var(--gray);
  max-width: 580px;
  margin: 0 auto 56px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}
.service-card {
  border: 1px solid rgba(217,169,47,.22);
  padding: 36px 28px 30px;
  background: rgba(255,255,255,.018);
  transition: border-color .25s, background .25s;
}
.service-card:hover {
  border-color: rgba(217,169,47,.5);
  background: rgba(255,255,255,.032);
}
.svc-icon { width: 50px; height: 50px; margin-bottom: 22px; }
.svc-icon svg { width: 100%; height: 100%; }
.service-card h3 {
  font: 500 19px/1.2 var(--font-serif);
  color: var(--white);
  margin-bottom: 12px;
}
.service-card p {
  font: 300 12px/1.8 var(--font-sans);
  color: var(--gray);
}


/* ================================================
   GALLERY — Photo placeholders only
   Zero comp-crop images used
   ================================================ */
.gallery {
  background: var(--ivory);
  color: var(--black);
  position: relative;
  overflow: hidden;
}
/* Decorative pink blush radials — CSS only, no images */
.gallery::before {
  content: '';
  position: absolute;
  top: -80px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(236,25,119,.055) 0%, transparent 65%);
  pointer-events: none;
}
.gallery::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -100px;
  width: 440px; height: 440px;
  background: radial-gradient(circle, rgba(236,25,119,.045) 0%, transparent 65%);
  pointer-events: none;
}
.gallery-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 96px 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.gallery-inner h2 {
  font: 300 58px/1.05 var(--font-serif);
  color: var(--black);
  margin-bottom: 48px;
}
.gallery-inner h2 em { font-style: italic; color: var(--pink); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 44px;
}
.gallery-card {
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.09);
  aspect-ratio: 3/4;
  position: relative;
}
/* Atmospheric placeholder backgrounds — different per card */
.gallery-card--1 {
  background: linear-gradient(145deg, #1a0f18 0%, #2a1728 60%, #180c18 100%);
}
.gallery-card--2 {
  background: linear-gradient(145deg, #12101a 0%, #1e1628 60%, #100e16 100%);
}
.gallery-card--3 {
  background: linear-gradient(145deg, #1a0e14 0%, #2a1520 60%, #130810 100%);
}
/* Placeholder content inside each card */
.photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.photo-placeholder span {
  font: 600 8.5px/1.5 var(--font-sans);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(217,169,47,.35);
  text-align: center;
}
/* When real photos are dropped in as <img>, the placeholder is automatically hidden */
.gallery-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-card:hover img { transform: scale(1.04); }

/* One VIEW FULL GALLERY button, below the grid */
.gallery-inner > .btn { display: inline-block; }


/* ================================================
   CTA — PINK BOOKING
   Pure CSS gradient. No reference screenshot used.
   ================================================ */
.cta-pink {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255,80,140,.3) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(255,30,100,.25) 0%, transparent 55%),
    linear-gradient(135deg, #d41469 0%, #EC1977 45%, #c21060 100%);
  padding: 96px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Decorative petal-like shapes — CSS only, no image with text */
.cta-pink::before {
  content: '';
  position: absolute;
  top: -60px; left: -60px;
  width: 320px; height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.08);
  pointer-events: none;
}
.cta-pink::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.06);
  pointer-events: none;
}
.cta-inner {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cta-inner h2 {
  font: 300 60px/1.08 var(--font-serif);
  color: var(--white);
  margin-bottom: 18px;
}
.cta-inner h2 em { font-style: italic; font-weight: 300; }
.cta-sub {
  font: 300 15px/1.6 var(--font-sans);
  color: rgba(255,255,255,.82);
  margin-bottom: 36px;
}
.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--black);
  color: var(--gold);
  font: 700 15px/1 var(--font-sans);
  letter-spacing: .05em;
  padding: 18px 44px;
  border-radius: 50px;
  border: none;
  margin-bottom: 26px;
  transition: background .2s;
  cursor: pointer;
}
.btn-phone:hover { background: #1c1c1c; }
.cta-address {
  font: 400 10.5px/1.6 var(--font-sans);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}


/* ================================================
   FOOTER
   Clean section — completely separate from CTA
   ================================================ */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 54px 40px 38px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}
.footer-center { text-align: center; }
.footer-name {
  font: 400 italic 22px/1.2 var(--font-serif);
  color: var(--white);
  margin-bottom: 10px;
}
.footer-phone {
  display: block;
  font: 600 13px/1 var(--font-sans);
  color: var(--gold);
  letter-spacing: .05em;
  margin-bottom: 18px;
  transition: color .2s;
}
.footer-phone:hover { color: #c49a28; }
.footer-copy {
  font: 300 9px/1.5 var(--font-sans);
  letter-spacing: .06em;
  color: rgba(255,255,255,.28);
  text-transform: uppercase;
}
.footer-right { text-align: right; }
.footer-label {
  font: 700 9px/1 var(--font-sans);
  letter-spacing: .22em;
  color: var(--gold);
  margin-bottom: 12px;
}
address.footer-address {
  font: 300 12px/1.85 var(--font-sans);
  color: var(--gray);
  font-style: normal;
}


/* ================================================
   RESPONSIVE — TABLET  ≤ 900px
   ================================================ */
@media (max-width: 900px) {
  /* Hero — lighter overlay, shifted position to show more of the subject */
  .hero { min-height: 600px; background-position: 70% center; }
  .hero::before {
    background: linear-gradient(
      90deg,
      rgba(0,0,0,.60) 0%,
      rgba(0,0,0,.38) 28%,
      rgba(0,0,0,.14) 50%,
      rgba(0,0,0,0)   68%
    );
  }

  .about-inner { grid-template-columns: 1fr; gap: 40px; padding: 72px 32px; }
  .about-left h2 { font-size: 46px; }

  .services-inner { padding: 72px 32px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-inner h2 { font-size: 48px; }

  .gallery-inner { padding: 72px 32px; }
  .gallery-inner h2 { font-size: 48px; }

  .cta-pink { padding: 72px 32px; }
  .cta-inner h2 { font-size: 48px; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-right { grid-column: 1 / -1; text-align: center; }
}


/* ================================================
   RESPONSIVE — TABLET  ≤ 768px
   Narrower overlay; subject remains the focal point.
   ================================================ */
@media (max-width: 768px) {
  .hero { min-height: 560px; background-position: 70% center; }
  .hero::before {
    background: linear-gradient(
      90deg,
      rgba(0,0,0,.62) 0%,
      rgba(0,0,0,.40) 28%,
      rgba(0,0,0,.15) 48%,
      rgba(0,0,0,0)   65%
    );
  }
}


/* ================================================
   RESPONSIVE — MOBILE  ≤ 620px
   ================================================ */
@media (max-width: 620px) {
  :root { --header-h: 76px; }

  .header-inner { padding: 0 20px; }
  .main-nav { display: none; }
  .menu-toggle {
    display: flex;
    align-self: stretch;   /* fills the full 76px header height — large tap zone */
    padding: 0 20px;       /* wide hit area left and right of the bars */
    min-width: 60px;
  }

  /* Production logo — scale down on mobile */
  .logo-img--header { height: 60px; }
  .logo-img--footer { height: 90px; }

  /* Hero — lightest overlay; woman's face stays as the focal point */
  .hero { min-height: 520px; background-position: 65% center; }
  .hero::before {
    background: linear-gradient(
      90deg,
      rgba(0,0,0,.60) 0%,
      rgba(0,0,0,.35) 25%,
      rgba(0,0,0,.10) 42%,
      rgba(0,0,0,0)   58%
    );
  }
  /* Stack CTAs vertically; clamp() handles font-size and padding scaling */
  .hero-actions { flex-direction: column; align-items: flex-start; }

  .about-inner { padding: 56px 20px; }
  .about-left h2 { font-size: 38px; }

  .services-inner { padding: 56px 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .services-inner h2 { font-size: 38px; }

  .gallery-inner { padding: 56px 20px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-card { aspect-ratio: 4/3; }
  .gallery-inner h2 { font-size: 38px; }

  .cta-pink { padding: 64px 20px; }
  .cta-inner h2 { font-size: 40px; }
  .btn-phone { font-size: 13px; padding: 16px 28px; }

  .footer { padding: 44px 20px 30px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .logo-img--footer { margin: 0 auto; }  /* center footer logo on mobile */
  .footer-right { text-align: center; }
}

@media (max-width: 380px) {
  .services-grid { grid-template-columns: 1fr; }
  /* hero h1 handled by clamp(34px, …) — hits floor at 375px */
}


/* ================================================
   GALLERY LIGHTBOX
   ================================================ */

/* Modal root — hidden by default, fades in on .open */
.gm {
  position: fixed;
  inset: 0;
  z-index: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
}
.gm.open {
  opacity: 1;
  pointer-events: auto;
}

/* Backdrop */
.gm-bd {
  position: absolute;
  inset: 0;
  background: rgba(5,5,5,.97);
  cursor: pointer;
}

/* Shell — everything above the backdrop */
.gm-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1100px;
  height: 100%;
  padding: 18px 24px 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none; /* individual children re-enable */
}

/* ─── Top bar: counter + close ─── */
.gm-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.gm-counter {
  font: 400 10px/1 var(--font-sans);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
  pointer-events: none;
}

.gm-close {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  color: rgba(255,255,255,.6);
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
  pointer-events: auto;
}
.gm-close:hover,
.gm-close:focus-visible {
  background: rgba(217,169,47,.12);
  color: var(--gold);
  border-color: rgba(217,169,47,.35);
  outline: none;
}

/* ─── Stage: prev / image / next ─── */
.gm-stage {
  flex: 1;
  display: flex;
  align-items: center;
  min-height: 0;
  gap: 0;
  pointer-events: none;
}

/* Arrows */
.gm-arrow {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(217,169,47,.22);
  border-radius: 50%;
  color: var(--gold);
  cursor: pointer;
  transition: background .2s, border-color .2s, transform .12s;
  pointer-events: auto;
}
.gm-arrow:hover,
.gm-arrow:focus-visible {
  background: rgba(217,169,47,.12);
  border-color: rgba(217,169,47,.55);
  outline: none;
}
.gm-arrow:active { transform: scale(.92); }

/* Image wrapper */
.gm-img-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 0;
  min-width: 0;
  padding: 0 18px;
  pointer-events: none;
}

.gm-img {
  display: block;
  max-height: 70vh;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 2px;
  transition: opacity .22s ease;
}
.gm-img.fading { opacity: 0; }

.gm-caption {
  margin-top: 12px;
  font: 300 italic 14px/1 var(--font-serif);
  color: rgba(255,255,255,.38);
  text-align: center;
  letter-spacing: .02em;
}

/* ─── Thumbnail strip ─── */
.gm-thumbs {
  display: flex;
  gap: 8px;
  justify-content: center;
  overflow-x: auto;
  padding: 2px 0 6px;
  scrollbar-width: thin;
  scrollbar-color: rgba(217,169,47,.25) transparent;
  pointer-events: auto;
}
.gm-thumbs::-webkit-scrollbar { height: 3px; }
.gm-thumbs::-webkit-scrollbar-track { background: transparent; }
.gm-thumbs::-webkit-scrollbar-thumb {
  background: rgba(217,169,47,.25);
  border-radius: 2px;
}

.gm-thumb {
  flex-shrink: 0;
  width: 58px;
  height: 58px;
  border-radius: 2px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: .42;
  transition: opacity .2s, border-color .2s;
  background: none;
  padding: 0;
}
.gm-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gm-thumb.active  { border-color: var(--gold); opacity: 1; }
.gm-thumb:hover:not(.active) { opacity: .7; border-color: rgba(217,169,47,.3); }
.gm-thumb:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; opacity: 1; }

/* ─── Gallery card cursor + focus ─── */
.gallery-card[role="button"] {
  cursor: pointer;
}
.gallery-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .gm-shell { padding: 14px 16px 10px; gap: 10px; }
  .gm-img   { max-height: 65vh; }
  .gm-arrow { width: 46px; height: 46px; }
  .gm-img-wrap { padding: 0 10px; }
}

@media (max-width: 620px) {
  .gm-shell { padding: 12px 8px 8px; gap: 8px; }
  .gm-img   { max-height: 60vh; }
  .gm-arrow { width: 44px; height: 44px; }
  .gm-img-wrap { padding: 0 6px; }
  .gm-thumb { width: 48px; height: 48px; }
  .gm-caption { font-size: 13px; margin-top: 8px; }
}
