/* ===== Déjà Vu Beautiplex — custom styles ===== */

html { scroll-behavior: smooth; }
body { -webkit-font-smoothing: antialiased; }

/* numeric font-weight helpers */
.font-300 { font-weight: 300; }
.font-400 { font-weight: 400; }
.font-500 { font-weight: 500; }
.font-600 { font-weight: 600; }
.font-700 { font-weight: 700; }

/* Offset in-page anchors for the fixed navbar */
section[id] { scroll-margin-top: 70px; }

/* ===== Nav links ===== */
.nav-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(35,34,33,0.8);
  transition: color .2s ease;
}
.nav-link:hover { color: #e07b39; }

/* ===== Navbar blur fallback ===== */
#navbar {
  border-bottom: 1px solid rgba(35,34,33,0.06);
}
@supports not (backdrop-filter: blur(12px)) {
  #navbar { background: rgba(253,243,236,0.95) !important; }
  #mobile-menu { background: rgba(253,243,236,0.95) !important; }
}

/* ===== Hero gradient (measured from source) ===== */
.hero-gradient {
  background:
    radial-gradient(120% 90% at 50% 0%, #fbe7da 0%, rgba(251,231,218,0) 60%),
    linear-gradient(180deg, #f9e1d1 0%, #f5d4c0 45%, #f2cdb8 100%);
}

/* ===== Marquee ===== */
.marquee { width: 100%; }
.marquee__track { animation: marquee-scroll 32s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  font-size: 12px; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(35,34,33,0.55); padding: 0 0.25rem;
}
.marquee__dot { color: #e07b39; padding: 0 1.25rem; }
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== Image placeholder system =====
   Add a real file at the img src path to replace the placeholder. */
.ph-box { position: relative; overflow: hidden; background: #f3e7dd; }
.ph-box.is-empty { background: linear-gradient(135deg, #f7e4d6 0%, #f1d3c0 100%); }
.ph-box.is-empty::after {
  content: attr(data-label);
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 1rem; text-align: center;
  font-family: "Dancing Script", cursive; font-size: 22px;
  color: rgba(200,102,42,0.55); letter-spacing: .01em;
}
.ph-box.is-empty::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.5) 0 2px, transparent 3px),
    radial-gradient(circle at 70% 60%, rgba(255,255,255,.35) 0 2px, transparent 3px);
  background-size: 26px 26px; opacity: .5;
}

/* ===== Service card ===== */
.service-card {
  background: #fff; border-radius: 18px; overflow: hidden;
  box-shadow: 0 10px 30px rgba(60,40,20,0.06);
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 18px 45px rgba(60,40,20,0.12); }

/* ===== Pricing card ===== */
.pricing-card {
  background: #fff; border-radius: 18px; padding: 28px 26px;
  box-shadow: 0 10px 30px rgba(60,40,20,0.06);
  border: 1px solid rgba(224,123,57,0.08);
  display: flex; flex-direction: column;
}
.price-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center;
  background: #fbe7da; color: #e07b39; margin-bottom: 18px;
}
.price-cat {
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: #e07b39;
}
.price-list { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.price-list li {
  position: relative; padding-left: 20px;
  font-size: 13.5px; font-weight: 300; color: rgba(35,34,33,0.7);
}
.price-list li::before {
  content: ""; position: absolute; left: 0; top: 7px;
  width: 7px; height: 7px; border-radius: 999px; background: #e07b39; opacity: .7;
}
.price-from {
  margin-top: 22px; font-size: 11px; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(35,34,33,0.45);
}
.price-amt { font-family: "Cormorant Garamond", serif; font-size: 30px; font-weight: 600; color: #232221; }
.price-btn {
  margin-top: 18px; text-align: center; border-radius: 999px;
  background: #e07b39; color: #fff; font-size: 13px; font-weight: 500;
  padding: 11px 0; box-shadow: 0 8px 20px rgba(224,123,57,0.28);
  transition: background .2s ease;
}
.price-btn:hover { background: #c8662a; }

/* ===== Testimonials ===== */
.star { font-size: 16px; line-height: 1; }
.t-dot {
  width: 8px; height: 8px; border-radius: 999px; background: rgba(224,123,57,0.3);
  cursor: pointer; transition: all .2s ease;
}
.t-dot.active { background: #e07b39; width: 22px; border-radius: 999px; }

/* ===== Contact cards ===== */
.contact-card {
  background: #fff; border-radius: 18px; padding: 28px 24px; text-align: center;
  box-shadow: 0 10px 30px rgba(60,40,20,0.05);
  display: flex; flex-direction: column; align-items: center;
  transition: transform .25s ease, box-shadow .25s ease;
}
.contact-card:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(60,40,20,0.10); }
.contact-icon {
  width: 46px; height: 46px; border-radius: 999px; display: grid; place-items: center;
  background: #fbe7da; color: #e07b39; margin-bottom: 16px;
}
.contact-title { font-family: "Cormorant Garamond", serif; font-size: 20px; font-weight: 600; color: #232221; }
.contact-text { margin-top: 8px; font-size: 13px; font-weight: 300; line-height: 1.7; color: rgba(35,34,33,0.65); }

/* ===== Form ===== */
.form-label { display: block; font-size: 12.5px; font-weight: 500; color: rgba(35,34,33,0.75); margin-bottom: 7px; }
.form-input {
  width: 100%; border: 1px solid rgba(35,34,33,0.14); border-radius: 12px;
  padding: 11px 14px; font-size: 13.5px; font-weight: 300; color: #232221;
  background: #fffdfb; transition: border-color .2s ease, box-shadow .2s ease;
}
.form-input::placeholder { color: rgba(35,34,33,0.4); }
.form-input:focus { outline: none; border-color: #e07b39; box-shadow: 0 0 0 3px rgba(224,123,57,0.12); }
.form-select { 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='%23232221' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px;
}

/* ===== Footer ===== */
.footer-head { font-size: 13px; font-weight: 600; letter-spacing: 0.04em; color: #232221; }
.footer-link { font-size: 13px; font-weight: 300; color: rgba(35,34,33,0.6); transition: color .2s ease; }
.footer-link:hover { color: #e07b39; }
.social-btn {
  width: 38px; height: 38px; border-radius: 999px; display: grid; place-items: center;
  background: #fff; color: #e07b39; box-shadow: 0 6px 16px rgba(60,40,20,0.06);
  transition: all .2s ease;
}
.social-btn:hover { background: #e07b39; color: #fff; transform: translateY(-2px); }

@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

/* ==================================================================
   FULL MENU PAGE (menu.html) — styled to match the printed catalogue
   ================================================================== */

/* Cream watercolor "paper" background */
.menu-paper {
  position: relative;
  background:
    radial-gradient(130% 80% at 50% -8%, #fdf9f4 0%, rgba(253,249,244,0) 55%),
    linear-gradient(180deg, #fdf6f0 0%, #faf0e9 55%, #f7ebe2 100%);
}

/* Botanical corner sprigs (decorative, non-interactive) */
.sprig { position: absolute; z-index: 0; pointer-events: none; opacity: .5; }
.sprig--bl { left: -10px;  bottom: -20px; width: 150px; transform: rotate(6deg); }
.sprig--tr { right: -6px;  top: -18px;    width: 120px; transform: rotate(190deg); }
@media (min-width: 768px) {
  .sprig--bl { width: 210px; }
  .sprig--tr { width: 160px; }
}

/* Faint gold speckle accents */
.speckle { position: absolute; z-index: 0; pointer-events: none; opacity: .55; }

/* Section eyebrow + titles (match catalogue serif-italic headings) */
.menu-eyebrow { font-family: "Dancing Script", cursive; font-size: 26px; color: #e07b39; }
.menu-title {
  font-family: "Cormorant Garamond", serif; font-style: italic; font-weight: 600;
  color: #6b6661; letter-spacing: .01em;
}

/* Decorative flourish glyph before each course/category name */
.glyph {
  display: inline-block; color: #e07b39; font-size: 20px; line-height: 1;
  transform: translateY(1px); margin-right: 10px;
}

/* Menu "card" — one per category / course */
.menu-card {
  position: relative; z-index: 1;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(224,123,57,0.14);
  border-radius: 18px; padding: 26px 26px 24px;
  box-shadow: 0 10px 30px rgba(60,40,20,0.06);
  backdrop-filter: blur(2px);
}
.menu-card__head {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 16px;
  flex-wrap: wrap;
}
.menu-card__name {
  font-family: "Cormorant Garamond", serif; font-weight: 700; font-size: 24px;
  color: #232221; line-height: 1.15;
}
.menu-card__desc { margin-top: 4px; font-size: 12.5px; font-weight: 300; color: rgba(35,34,33,0.6); }

/* Right-aligned duration / fees block (exactly like the catalogue) */
.pricebox { text-align: right; white-space: nowrap; }
.pricebox .dur { font-size: 12px; font-weight: 400; color: rgba(35,34,33,0.55); }
.pricebox .fee {
  font-family: "Cormorant Garamond", serif; font-weight: 600; font-size: 26px; color: #e07b39;
  line-height: 1.1;
}
.pricebox .from { font-size: 10.5px; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(35,34,33,0.45); }

/* Bulleted feature / item list */
.feat-list { margin-top: 16px; display: grid; gap: 9px; }
.feat-list.two-col { grid-template-columns: 1fr; }
@media (min-width: 640px) { .feat-list.two-col { grid-template-columns: 1fr 1fr; column-gap: 28px; } }
.feat-list li {
  position: relative; padding-left: 20px;
  font-size: 13.5px; font-weight: 300; color: rgba(35,34,33,0.78); line-height: 1.5;
}
.feat-list li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 6px; height: 6px; border-radius: 999px; background: #e07b39; opacity: .75;
}

/* Priced item row (dotted leader) for salon service items */
.item-row { display: flex; align-items: baseline; gap: 8px; padding: 3px 0; }
.item-row .nm { font-size: 13.5px; font-weight: 400; color: rgba(35,34,33,0.82); }
.item-row .ldr { flex: 1 1 auto; border-bottom: 1px dotted rgba(35,34,33,0.28); transform: translateY(-3px); }
.item-row .pr { font-size: 13.5px; font-weight: 500; color: #c8662a; white-space: nowrap; }

/* Sticky mini contact bar */
.menu-topbar { background: rgba(253,243,236,0.92); backdrop-filter: blur(8px); }
.pill-call, .pill-wa {
  display: inline-flex; align-items: center; gap: 7px; border-radius: 999px;
  padding: 9px 16px; font-size: 13px; font-weight: 500; transition: all .2s ease;
}
.pill-call { background: #fff; color: #e07b39; border: 1px solid rgba(224,123,57,0.3); box-shadow: 0 6px 16px rgba(60,40,20,0.06); }
.pill-call:hover { background: #fbe7da; transform: translateY(-1px); }
.pill-wa { background: #25D366; color: #fff; box-shadow: 0 8px 20px rgba(37,211,102,0.28); }
.pill-wa:hover { background: #1eb457; transform: translateY(-1px); }

/* "View Full Service Menu" style link used on the home page */
.menu-outline-btn {
  display: inline-flex; align-items: center; gap: 8px; border-radius: 999px;
  border: 1px solid rgba(35,34,33,0.25); background: #fff;
  padding: 12px 26px; font-size: 14px; font-weight: 500; color: #232221;
  transition: all .2s ease;
}
.menu-outline-btn:hover { border-color: #e07b39; color: #e07b39; transform: translateY(-2px); box-shadow: 0 10px 26px rgba(60,40,20,0.08); }

/* ==================================================================
   VISIT US — premium two-column layout with live map & open status
   ================================================================== */
.visit-card {
  background: #fff; border-radius: 22px; padding: 40px 36px;
  box-shadow: 0 14px 40px rgba(60,40,20,0.08);
  border: 1px solid rgba(224,123,57,0.08);
  display: flex; flex-direction: column;
}
.visit-row { display: flex; align-items: flex-start; gap: 16px; }
.visit-ic {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 999px;
  display: grid; place-items: center; background: #fbe7da; color: #e07b39;
}
.visit-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(35,34,33,0.45); margin-bottom: 3px;
}
.visit-value { font-size: 14.5px; font-weight: 400; line-height: 1.6; color: rgba(35,34,33,0.8); }

/* Live open / closed status pill */
.open-status { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; }
.open-status .status-dot { width: 9px; height: 9px; border-radius: 999px; flex-shrink: 0; }
.open-status.is-open  .status-dot { background: #22c55e; animation: livepulse 2s infinite; }
.open-status.is-open  .status-text { color: #15803d; }
.open-status.is-closed .status-dot { background: #ef4444; }
.open-status.is-closed .status-text { color: #b91c1c; }
@keyframes livepulse {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,0.55); }
  70%  { box-shadow: 0 0 0 7px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

/* Get Directions button */
.get-dir-btn {
  display: inline-flex; align-items: center; gap: 9px; border-radius: 999px;
  background: #e07b39; color: #fff; font-size: 14px; font-weight: 500;
  padding: 12px 24px; box-shadow: 0 8px 20px rgba(224,123,57,0.28);
  transition: all .2s ease;
}
.get-dir-btn:hover { background: #c8662a; transform: translateY(-2px); }

/* Map frame */
.map-frame {
  position: relative; border-radius: 22px; overflow: hidden;
  min-height: 380px; box-shadow: 0 14px 40px rgba(60,40,20,0.10);
  border: 1px solid rgba(224,123,57,0.10); background: #f3e7dd;
}
.map-frame iframe { display: block; width: 100%; height: 100%; min-height: 380px; }
@media (min-width: 1024px) { .map-frame, .map-frame iframe { min-height: 100%; } }

/* ==================================================================
   MOBILE UX UPGRADES — carousel, accordion, gallery, quick-nav, reveal
   (mobile-only behavior; desktop keeps existing grid layouts)
   ================================================================== */

/* ---- Sticky quick-nav (mobile) ---- */
.quicknav {
  position: fixed; top: 76px; left: 0; right: 0; z-index: 40;
  display: flex; align-items: center; justify-content: center; gap: 22px;
  height: 44px; padding: 0 16px;
  background: rgba(253,243,236,0.82);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(35,34,33,0.06);
}
.quicknav a {
  font-size: 12px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(35,34,33,0.62); transition: color .2s ease; position: relative; padding: 4px 0;
}
.quicknav a:hover, .quicknav a.active { color: #e07b39; }
.quicknav a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; border-radius: 2px; background: #e07b39;
}

/* ---- Mobile-only service carousel (native scroll-snap) ---- */
@media (max-width: 767px) {
  .snap-carousel {
    position: relative;
    display: flex !important; flex-wrap: nowrap;
    overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; scroll-behavior: smooth;
    gap: 14px !important; padding: 6px 8vw 10px;
    scrollbar-width: none;
  }
  .snap-carousel::-webkit-scrollbar { display: none; }
  .snap-carousel > * {
    flex: 0 0 84%; scroll-snap-align: center; will-change: transform, opacity;
  }
}

/* ---- Carousel dots ---- */
.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 18px; }
.carousel-dots .cdot {
  width: 8px; height: 8px; border: 0; padding: 0; border-radius: 999px;
  background: rgba(224,123,57,0.3); cursor: pointer;
  transition: width .3s ease, background .3s ease;
}
.carousel-dots .cdot.active { width: 22px; background: #e07b39; }
@media (min-width: 768px) { .carousel-dots { display: none !important; } }

/* ---- Pricing accordion (mobile only) ---- */
.pa-head { display: block; }              /* desktop: icon stacks above category (unchanged) */
.pa-toggle {
  display: none; margin-left: auto; width: 30px; height: 30px; border-radius: 999px;
  align-items: center; justify-content: center; color: #e07b39; background: #fbe7da;
  border: 0; cursor: pointer; flex-shrink: 0;
}
.pa-toggle svg { transition: transform .3s ease; }
.pricing-card.pa-open .pa-toggle svg { transform: rotate(180deg); }
@media (max-width: 767px) {
  .pricing-card.pa-enabled .pa-head {
    display: flex; align-items: center; gap: 12px; cursor: pointer;
  }
  .pricing-card.pa-enabled .pa-head .price-icon { margin-bottom: 0; }
  .pricing-card.pa-enabled .pa-toggle { display: inline-flex; }
  .pricing-card.pa-enabled .pa-body { overflow: hidden; }
}

/* ---- Gallery: category filter tabs ---- */
.g-filter { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 30px; }
.g-filter__btn {
  font-family: "Poppins", sans-serif; font-size: 12.5px; font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase; color: #6b6661; background: transparent;
  border: 1px solid rgba(35,34,33,0.14); padding: 8px 20px; border-radius: 999px;
  cursor: pointer; transition: color .3s ease, background .3s ease, border-color .3s ease, box-shadow .3s ease, transform .12s ease;
}
.g-filter__btn:hover { color: #232221; border-color: rgba(224,123,57,0.5); }
.g-filter__btn:active { transform: scale(0.96); }
.g-filter__btn.is-active { color: #fff; background: #e07b39; border-color: #e07b39; box-shadow: 0 8px 20px rgba(224,123,57,0.28); }

/* ---- Gallery: editorial masonry mosaic ---- */
.g-grid { column-count: 2; column-gap: 16px; }
@media (min-width: 640px) { .g-grid { column-count: 3; } }
@media (min-width: 1024px) { .g-grid { column-count: 4; column-gap: 18px; } }

.g-item {
  position: relative; display: block; margin: 0 0 16px; break-inside: avoid; -webkit-column-break-inside: avoid;
  border-radius: 18px; overflow: hidden; cursor: zoom-in; background: #faf0e9;
  box-shadow: 0 10px 30px rgba(60,40,20,0.06);
  transition: box-shadow .45s ease, transform .45s cubic-bezier(.2,.7,.2,1);
  will-change: transform;
}
@media (min-width: 1024px) { .g-item { margin-bottom: 18px; } }
.g-item img { display: block; width: 100%; height: auto; border-radius: 18px; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.g-item:hover { box-shadow: 0 22px 50px rgba(60,40,20,0.17); transform: translateY(-5px); }
.g-item:hover img { transform: scale(1.07); }

.g-overlay {
  position: absolute; inset: 0; z-index: 1; display: flex; flex-direction: column; justify-content: flex-end;
  gap: 3px; padding: 18px; border-radius: 18px; color: #fff; opacity: 0; transition: opacity .45s ease;
  background: linear-gradient(to top, rgba(35,34,33,0.74) 0%, rgba(35,34,33,0.18) 46%, rgba(35,34,33,0) 72%);
}
.g-item:hover .g-overlay { opacity: 1; }
.g-tag { font-size: 10.5px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: #f0a16f; transform: translateY(9px); transition: transform .5s ease .04s; }
.g-cap { font-family: "Cormorant Garamond", serif; font-style: italic; font-size: 21px; font-weight: 600; line-height: 1.08; transform: translateY(11px); transition: transform .5s ease .1s; }
.g-item:hover .g-tag, .g-item:hover .g-cap { transform: translateY(0); }
.g-zoom {
  position: absolute; top: 14px; right: 14px; z-index: 2; width: 34px; height: 34px; border-radius: 999px;
  display: grid; place-items: center; background: rgba(253,246,240,0.94); color: #232221;
  opacity: 0; transform: scale(0.7); transition: opacity .4s ease, transform .4s ease;
}
.g-item:hover .g-zoom { opacity: 1; transform: scale(1); }

.g-item.is-hidden { display: none; }
.gallery-more { display: flex; justify-content: center; margin-top: 20px; }

/* ---- Lightbox (with prev/next, caption, counter) ---- */
.glightbox { position: fixed; inset: 0; z-index: 90; display: none; align-items: center; justify-content: center; padding: 20px; }
.glightbox.open { display: flex; }
.glightbox__bg { position: absolute; inset: 0; background: rgba(28,26,25,0.82); backdrop-filter: blur(6px); }
.gclose { width: 40px; height: 40px; border-radius: 999px; display: grid; place-items: center; background: #fff; color: #232221; box-shadow: 0 6px 16px rgba(0,0,0,0.18); cursor: pointer; border: none; font-size: 24px; line-height: 1; transition: transform .2s ease; }
.gclose:hover { transform: scale(1.06); }
.glightbox__stage { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; max-width: 92vw; }
.glightbox__img { max-width: 92vw; max-height: 82vh; border-radius: 14px; box-shadow: 0 30px 80px rgba(0,0,0,0.5); }
.glightbox__cap { margin-top: 14px; text-align: center; color: #fdf6f0; display: flex; flex-direction: column; gap: 2px; }
.glightbox__tag { font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: #f0a16f; }
.glightbox__title { font-family: "Cormorant Garamond", serif; font-style: italic; font-size: 24px; font-weight: 600; }
.glightbox__count { font-size: 12px; font-weight: 300; color: rgba(253,246,240,0.6); letter-spacing: 0.04em; }
.glightbox__close { position: absolute; top: 18px; right: 18px; z-index: 3; }
.glightbox__nav {
  position: absolute; top: 50%; z-index: 3; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 999px;
  display: grid; place-items: center; border: none; cursor: pointer; font-size: 28px; line-height: 1;
  background: rgba(253,246,240,0.92); color: #232221; box-shadow: 0 6px 18px rgba(0,0,0,0.22); transition: transform .2s ease, background .2s ease;
}
.glightbox__nav:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.glightbox__prev { left: 16px; }
.glightbox__next { right: 16px; }
@media (min-width: 768px) { .glightbox__prev { left: 28px; } .glightbox__next { right: 28px; } }

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  .g-item, .g-item img, .g-overlay, .g-tag, .g-cap, .g-zoom, .g-filter__btn, .gclose, .glightbox__nav { transition: none !important; }
  .g-item:hover { transform: none; }
  .g-item:hover img { transform: none; }
}

/* ---- Tap / press feedback ---- */
.tap-fx { transition: transform .12s ease; }
.tap-fx:active { transform: scale(0.97); }

/* ---- Tighter mobile vertical rhythm ---- */
@media (max-width: 767px) {
  section.py-24 { padding-top: 3.5rem !important; padding-bottom: 3.5rem !important; }
  section h2.font-serif { font-size: 31px !important; line-height: 1.14 !important; }
  section[id] { scroll-margin-top: 124px; }
}
