/* ------------------------------------------
   BarberWeb � White Clean Theme
   Red #D32F2F � Blue #1565C0 � Yellow #FFD600
------------------------------------------ */

/* -- RESET -- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --red:     #D32F2F;
  --red-l:   #FFEBEE;
  --blue:    #1565C0;
  --blue-l:  #E3F2FD;
  --yellow:  #FFD600;
  --yel-l:   #FFFDE7;
  --dark:    #111111;
  --mid:     #555555;
  --soft:    #888888;
  --border:  #E8E8E8;
  --bg:      #FFFFFF;
  --bg2:     #F7F7F7;
  --font-d:  'Bebas Neue', sans-serif;
  --font-b:  'Inter', sans-serif;
}
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  background: var(--bg);
  color: var(--dark);
  overflow-x: hidden;
}

/* -- INTRO PAPER HALVES (diagonal cut) -- */
/*
  Seam runs from (88%, 0%) ? (12%, 100%).
  Both divs cover the FULL screen; clip-path cuts them diagonally.
*/
#paper-top,
#paper-bot {
  position: fixed;
  inset: 0;
  background: #E0E0E0;
  z-index: 200;
  will-change: transform;
}
/* Left diagonal half */
#paper-top {
  clip-path: polygon(0% 0%, 88% 0%, 12% 100%, 0% 100%);
  filter: drop-shadow(3px 0 16px rgba(0,0,0,0.18));
  transform-origin: 0% 50%;
}
/* Right diagonal half */
#paper-bot {
  clip-path: polygon(88% 0%, 100% 0%, 100% 100%, 12% 100%);
  filter: drop-shadow(-3px 0 16px rgba(0,0,0,0.18));
  transform-origin: 100% 50%;
}

/* SPLIT: slide straight up / down — no spin, no fold */
#paper-top.split {
  transform: translateY(-105%);
  transition: transform 0.75s cubic-bezier(0.55, 0, 0.1, 1);
}
#paper-bot.split {
  transform: translateY(105%);
  transition: transform 0.75s cubic-bezier(0.55, 0, 0.1, 1);
}

/* cut-edge SVG � sits above paper */
#cut-line { display:none; }

/* -- SCISSORS CUTTER -- */
#scissors-cutter {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 300;
  pointer-events: none;
  /* transform set entirely by JS — DO NOT set here */
  transform-origin: 175px 65px;   /* pivot = centre screw (290x130 viewBox) */
  will-change: transform;
  /* let open blades render beyond the SVG bounds */
  overflow: visible;
  opacity: 0;   /* hidden until JS positions it */
}

/* -- CUT FLASH overlay -- */
#cut-flash {
  position: fixed; inset: 0; z-index: 290;
  pointer-events: none;
  background: radial-gradient(ellipse 55% 18% at 50% 50%,
    rgba(255,255,255,0.75), rgba(204,24,24,0.25) 50%, transparent 78%);
  opacity: 0;
  transition: opacity 0s;
}
#cut-flash.flash-active {
  animation: cutFlash 0.28s ease-out forwards;
}
@keyframes cutFlash {
  0%   { opacity: 0; }
  12%  { opacity: 1; }
  100% { opacity: 0; }
}

/* -- SCROLL INDICATOR -- */
#scroll-indicator {
  position: fixed;
  right: 18px;
  top: 0;
  height: 100vh;
  width: 44px;
  z-index: 50;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#scroll-track {
  position: absolute;
  top: 12%;
  bottom: 12%;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(to bottom, var(--red), var(--blue), var(--yellow));
  border-radius: 2px;
  opacity: 0.30;
  box-shadow: 0 0 6px rgba(211,47,47,0.2);
}
#scroll-scissors {
  position: absolute;
  top: 10%;               /* moved down a little so it's not clipped at very top */
  left: -25px;            /* final nudge per request */
    /* 78x34 SVG rotated 270deg so tip points upward */
      transform: rotate(270deg);
  transform-origin: 47px 17px;    /* pivot of 78x34 rendered scissors (290x130 viewBox) */
  transition: top 0.1s ease-out;
  filter: drop-shadow(0 1px 5px rgba(0,0,0,0.18));
}
#scroll-pct {
  position: absolute;
  bottom: 5%;
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  color: var(--soft);
  font-weight: 600;
}

/* -- SITE -- */
#site { opacity: 0; transition: opacity 0.4s ease; }
#site.visible { opacity: 1; }

/* -- NAVBAR -- */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 5rem;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: padding 0.3s ease, box-shadow 0.3s ease;
}
#navbar.scrolled {
  padding: 0.7rem 5rem;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.nav-logo {
  font-family: var(--font-d);
  font-size: 1.9rem; letter-spacing: 0.1em; color: var(--dark);
}
.nav-logo span { color: var(--red); }
.nav-links { list-style: none; display: flex; gap: 2.5rem; align-items: center; }
.nav-links a {
  color: var(--mid); text-decoration: none;
  font-size: 0.87rem; letter-spacing: 0.04em; font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--dark); }
.btn-nav {
  background: var(--red) !important;
  color: #fff !important;
  padding: 0.5rem 1.4rem; border-radius: 50px;
  font-weight: 700 !important;
  box-shadow: 0 3px 14px rgba(211,47,47,0.3);
  transition: box-shadow 0.2s, transform 0.2s !important;
}
.btn-nav:hover {
  box-shadow: 0 6px 24px rgba(211,47,47,0.45) !important;
  transform: translateY(-1px);
}

/* -- HERO ----------------------------------------------------------------- */
#hero {
  min-height: 100vh;
  padding-top: 140px;
  padding-bottom: 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: #fff;
  padding-left: 2rem;
  padding-right: 2rem;
}
.hero-bg-overlay {
  position: absolute; inset: 0; z-index: 0;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.58;
  pointer-events: none;
}
/* Very light wash — keeps photo prominent */
#hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: rgba(255,255,255,0.10);
}
.hero-left {
  position: relative; z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-block;
  border: 1.5px solid var(--yellow);
  background: var(--yel-l);
  color: #7a6000;
  padding: 0.28rem 0.9rem; border-radius: 50px;
  font-size: 0.73rem; letter-spacing: 0.22em; text-transform: uppercase;
  margin-bottom: 1.5rem; font-weight: 600;
}
#hero h1 {
  font-family: var(--font-d);
  font-size: clamp(4.31rem, 11.13vw, 10.32rem);
  line-height: 0.88; letter-spacing: 0.03em;
  color: var(--red);
  -webkit-text-stroke: 2px #7a0000;
  text-shadow: 0 4px 32px rgba(211,47,47,0.22);
}
.h-red    { color: var(--red); }
.h-blue   { color: var(--blue); }
.h-yellow { color: #c6a500; }

.hero-sub {
  display: inline-block;
  margin: 1.2rem 0 1.5rem;
  font-size: 1.11rem; letter-spacing: 0.06em;
  color: #7a0000;
  background: var(--yel-l);
  border: 2px solid var(--yellow);
  border-radius: 50px;
  padding: 0.45rem 1.6rem;
  font-weight: 600;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

.hero-scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  font-size: 0.72rem; letter-spacing: 0.28em; color: var(--soft);
  text-transform: uppercase; z-index: 1;
  animation: nudge 2s ease-in-out infinite;
}
@keyframes nudge {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

/* -- BUTTONS -- */
.btn-primary {
  padding: 0.85rem 2.2rem; border-radius: 50px;
  background: var(--red); color: #fff; text-decoration: none;
  font-weight: 700; font-size: 0.92rem; letter-spacing: 0.04em;
  display: inline-block; border: none; cursor: pointer;
  font-family: var(--font-b);
  transition: transform 0.22s, box-shadow 0.22s;
  box-shadow: 0 4px 18px rgba(211,47,47,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(211,47,47,0.5); }
.btn-ghost {
  padding: 0.85rem 2.2rem; border-radius: 50px;
  border: 1.5px solid #ccc; color: var(--dark);
  text-decoration: none; font-weight: 600; font-size: 0.92rem;
  display: inline-block; transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--red); color: var(--red); }

/* -- SECTION COMMONS -- */
section { padding: 4rem 5rem; }
.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-label {
  font-size: 0.7rem; letter-spacing: 0.38em; text-transform: uppercase;
  color: var(--red); margin-bottom: 0.6rem; font-weight: 700;
}
h2 {
  font-family: var(--font-d);
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1; letter-spacing: 0.03em; color: var(--dark);
}

/* -- ABOUT / STATS -- */
#about { background: #fff; }

.stats-bar {
  display: flex;
  gap: 0.9rem;
  max-width: 1160px;
  margin: 0 auto 2.5rem;
  padding: 0 2rem;
}
.stats-bar .stat-card { flex: 1; }
.about-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start;
}
.about-text h2 { margin-bottom: 0.8rem; }
.about-text p { color: var(--mid); line-height: 1.75; font-size: 0.98rem; margin-bottom: 1rem; }
.about-list { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.about-list li { color: var(--mid); font-size: 0.93rem; }
.check { color: var(--red); margin-right: 0.6rem; font-weight: 700; }

.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.about-shop-pic {
  width: 80%;
  border-radius: 16px;
  object-fit: cover;
  margin-top: 1.2rem;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  display: block;
}
.stat-card {
  border-radius: 16px; padding: 1.4rem 1rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stat-card:hover { transform: translateY(-4px); box-shadow: 0 12px 35px rgba(0,0,0,0.1); }
.red-stat    { background: var(--red-l);  border: 1px solid rgba(211,47,47,0.15); }
.blue-stat   { background: var(--blue-l); border: 1px solid rgba(21,101,192,0.15); }
.yellow-stat { background: var(--yel-l);  border: 1px solid rgba(198,165,0,0.2); }
.stat-num {
  font-family: var(--font-d);
  font-size: 3.5rem; line-height: 1;
}
.red-stat  .stat-num { color: var(--red); }
.blue-stat .stat-num { color: var(--blue); }
.yellow-stat .stat-num { color: #b8900a; }
.stat-label { font-size: 0.75rem; color: var(--soft); margin-top: 0.5rem; letter-spacing: 0.12em; text-transform: uppercase; }


#gallery { background: var(--bg2); padding-bottom: 3rem; border-top: 3px solid var(--red); }

.gallery-strip-wrap {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  padding-bottom: 52px;   /* room for scissor handle + track */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

.gallery-strip {
  display: flex;
  gap: 14px;
  transition: transform 0.4s cubic-bezier(0.25,0.8,0.25,1);
  will-change: transform;
  padding: 0 40px;
}

.gallery-strip .g-photo {
  flex: 0 0 300px;
  height: 420px;
  border-radius: 16px;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
  transition: transform 0.25s, box-shadow 0.25s;
  user-select: none;
  pointer-events: none;
}
.gallery-strip .g-photo:hover { transform: scale(1.03); box-shadow: 0 12px 36px rgba(0,0,0,0.18); }

/* horizontal track line */
.gallery-track {
  position: absolute;
  bottom: 16px;
  left: 40px;
  right: 40px;
  height: 2px;
  background: linear-gradient(to right, var(--red), var(--blue), var(--yellow));
  border-radius: 2px;
  opacity: 0.35;
}

/* scissor handle on track */
.gallery-scissor-wrap {
  position: absolute;
  bottom: 0px;
  left: 40px;           /* JS will update via style.left */
  cursor: grab;
  transform: rotate(180deg);   /* pointing left */
  transform-origin: 47px 16px;
  z-index: 10;
  transition: left 0.08s linear;
  user-select: none;
  opacity: 0;           /* hidden until JS positions it */
}
.gallery-scissor-wrap:active { cursor: grabbing; }

/* -- REVIEWS -------------------------------------------------------------- */
#reviews { background: #fff; border-top: 3px solid var(--red); }

.stars-row {
  margin-top: 0.6rem;
  font-size: 1.4rem; color: var(--yellow);
  display: flex; align-items: center; gap: 0.5rem; justify-content: center;
}
.stars-row span { font-size: 0.85rem; color: var(--mid); font-family: var(--font-b); }

.reviews-carousel-wrap {
  display: flex; align-items: center; gap: 1rem;
  max-width: 1100px; margin: 0 auto;
}

.reviews-overflow {
  flex: 1;
  overflow: hidden;
}

.rev-arrow {
  flex: 0 0 44px; height: 44px; border-radius: 50%;
  background: var(--bg2); border: 1px solid var(--border);
  font-size: 1.6rem; line-height: 44px; text-align: center;
  cursor: pointer; color: var(--dark);
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0; z-index: 2;
}
.rev-arrow:hover { background: var(--red); color: #fff; border-color: var(--red); }

.reviews-track {
  display: flex;
  gap: 1.4rem;
  transition: transform 0.45s cubic-bezier(0.25,0.8,0.25,1);
  will-change: transform;
}

.review-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.3rem 1.2rem;
  display: flex; flex-direction: column; gap: 0.6rem;
  transition: box-shadow 0.25s, transform 0.25s;
  box-sizing: border-box;
  flex-shrink: 0;
}
.review-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.08); transform: translateY(-3px); }

.rev-header { display: flex; align-items: center; gap: 0.85rem; }
.rev-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
  border: 2px solid var(--border);
}
.rev-meta { display: flex; flex-direction: column; }
.rev-stars { color: var(--yellow); font-size: 1.1rem; letter-spacing: 0.1em; }
.rev-text  { color: var(--mid); line-height: 1.75; font-size: 0.91rem; flex: 1; font-style: italic; }
.rev-author { font-weight: 700; font-size: 0.88rem; color: var(--dark); }
.rev-sub   { font-weight: 400; color: var(--soft); font-size: 0.78rem; }

.rev-dots {
  display: flex; gap: 6px; justify-content: center; margin-top: 1.5rem;
}
.rev-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border); cursor: pointer; border: none; padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.rev-dot.active { background: var(--red); transform: scale(1.3); }

/* -- BOOKING -------------------------------------------------------- */
#book {
  background: linear-gradient(135deg, #fdf6ee 0%, #f5e9d8 100%);
  padding: 5rem 2rem 6rem;
  border-top: 3px solid var(--red);
}

.book-hero {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.5rem;
}

.book-hero-text {
  text-align: center;
}
.book-hero-text .section-label {
  color: var(--red);
}
.book-hero-text h2 {
  color: var(--dark);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 0.8rem;
}
.book-sub {
  color: #5a3e28;
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.book-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}

.book-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  aspect-ratio: 3 / 3.2;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.08);
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  background: rgba(255,255,255,0.45);
  padding: 1.2rem;
}
.book-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 20px;
}
.book-card--male::before  { background: linear-gradient(135deg, rgba(21,101,192,0.18), transparent); }
.book-card--female::before { background: linear-gradient(135deg, rgba(211,47,47,0.18), transparent); }
.book-card:hover { transform: translateY(-6px); }
.book-card:hover::before { opacity: 1; }
.book-card--male:hover  { border-color: var(--blue); box-shadow: 0 20px 50px rgba(21,101,192,0.25); }
.book-card--female:hover { border-color: var(--red);  box-shadow: 0 20px 50px rgba(211,47,47,0.25); }

.book-card-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(4.5rem, 10.5vw, 8.25rem);
  line-height: 1;
  opacity: 0.45;
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
  user-select: none;
  transform: translateY(-15%);
}
.book-card:hover .book-card-icon {
  opacity: 0.55;
  transform: translateY(-15%) scale(1.06);
}
.book-card-badge {
  position: relative;
  z-index: 1;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 99px;
}
.book-card--male   .book-card-badge { background: rgba(21,101,192,0.2);  color: #64a6f4; }
.book-card--female .book-card-badge { background: rgba(211,47,47,0.2);  color: #f48080; }

.book-card h3 {
  position: relative;
  z-index: 1;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--dark);
  margin: 0.3rem 0 0;
}
.book-card p {
  font-size: 1rem;
  color: #5a3e28;
  line-height: 1.65;
  margin: 0;
  max-width: 280px;
}
.book-card-cta {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-top: 0.4rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: letter-spacing 0.2s ease;
}
.book-card--male   .book-card-cta { color: #64a6f4; }
.book-card--female .book-card-cta { color: #f48080; }
.book-card:hover .book-card-cta { letter-spacing: 0.1em; }

@media (max-width: 500px) {
  .book-cards { grid-template-columns: 1fr; max-width: 280px; }
  .book-card { padding: 1.5rem 1.2rem; aspect-ratio: 3 / 2.5; }
}

/* Facebook Booking Popup */
#fb-booking-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.65);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
#fb-booking-overlay.active { display: flex; }

.fb-booking-modal {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  max-width: 420px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
  animation: fbModalIn 0.25s ease;
}
@keyframes fbModalIn {
  from { opacity: 0; transform: scale(0.92) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.fb-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: #888;
  line-height: 1;
}
.fb-modal-close:hover { color: #333; }
.fb-modal-icon {
  font-size: 3rem;
  margin-bottom: 0.75rem;
}
.fb-booking-modal h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #111;
  margin: 0 0 0.75rem;
}
.fb-booking-modal p {
  color: #555;
  font-size: 1rem;
  line-height: 1.65;
  margin: 0 0 1.5rem;
}
.fb-modal-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #1877F2;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
  margin-bottom: 0.75rem;
}
.fb-modal-btn:hover { background: #1464d8; transform: translateY(-2px); }
.fb-modal-cancel {
  display: block;
  width: 100%;
  background: none;
  border: none;
  color: #888;
  font-size: 0.9rem;
  cursor: pointer;
  padding: 0.4rem;
}
.fb-modal-cancel:hover { color: #333; }

.book-solo { max-width: 700px; margin: 0 auto; }
.book-map-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start;
}
.map-col { display: flex; flex-direction: column; gap: 1rem; }
.map-info { text-align: center; }
.map-info p { color: var(--mid); font-size: 0.95rem; margin-top: 0.3rem; }
.map-social { display: flex; gap: 1rem; justify-content: center; margin-top: 0.8rem; }
.map-social a { color: var(--mid); display: flex; transition: color 0.2s, transform 0.2s; }
.map-social a:hover { color: var(--red); transform: scale(1.15); }
.map-social svg { width: 22px; height: 22px; }
.map-info a { color: var(--red); text-decoration: none; }
.map-info a:hover { text-decoration: underline; }
.book-col { display: flex; flex-direction: column; gap: 1.5rem; }

.gallery-item {
  border-radius: 16px; overflow: hidden;
  position: relative; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.35s cubic-bezier(.17,.67,.51,.98), box-shadow 0.35s ease;
}
.gallery-item:hover { transform: scale(1.03) translateY(-3px); box-shadow: 0 18px 50px rgba(0,0,0,0.15); }
.g-art { font-size: 5rem; opacity: 0.22; transition: transform 0.4s ease, opacity 0.4s ease; }
.gallery-item:hover .g-art { opacity: 0.07; transform: scale(1.18) rotate(8deg); }
.g1 { background: linear-gradient(145deg, #1565C0, #1976D2); }
.g2 { background: linear-gradient(145deg, #C62828, #E53935); }
.g3 { background: linear-gradient(145deg, #c6a500, #FFD600); grid-row: span 2; }
.g4 { background: linear-gradient(145deg, #283593, #3949AB); }
.g5 { background: linear-gradient(145deg, #6A1B9A, #8E24AA); }
.g6 { background: linear-gradient(145deg, #1565C0, #C62828); }
.g-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.65), transparent);
  padding: 1.2rem 1rem 0.9rem;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: #fff;
  opacity: 0; transition: opacity 0.3s ease;
}
.gallery-item:hover .g-label { opacity: 1; }

/* -- BOOKING -- */
.book-text h2 { margin-bottom: 1rem; }
.book-text p { color: var(--mid); line-height: 1.8; margin-bottom: 2rem; }
.book-hours { display: flex; flex-direction: column; gap: 0; }
.hour-row {
  display: flex; justify-content: space-between;
  font-size: 0.88rem; padding: 0.6rem 0;
  border-bottom: 1px solid var(--border); color: var(--mid);
}
.hour-day { color: var(--dark); font-weight: 600; }
.closed { color: var(--soft); }

.book-form { display: flex; flex-direction: column; gap: 0.9rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.book-form input,
.book-form select {
  padding: 0.85rem 1.1rem;
  background: #fff; border: 1px solid var(--border);
  border-radius: 10px; color: var(--dark); font-size: 0.9rem;
  font-family: var(--font-b); width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.book-form input::placeholder { color: var(--soft); }
.book-form input:focus,
.book-form select:focus {
  outline: none; border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(211,47,47,0.1);
  background: #fff;
}
.btn-full { width: 100%; padding: 1rem; border-radius: 10px; font-size: 1rem; }

/* -- LOCATION ------------------------------------------------------------ */
#location { background: #fff; border-top: 3px solid var(--red); }
.location-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 3fr 2fr; gap: 4rem; align-items: start;
}
.location-map { display: flex; flex-direction: column; gap: 1rem; }
.location-info { display: flex; flex-direction: column; gap: 1.2rem; }
.location-info h2 { margin-bottom: 0.3rem; }
.contact-block { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-item { display: flex; align-items: flex-start; gap: 0.9rem; font-size: 0.95rem; color: var(--mid); line-height: 1.65; }
.contact-icon { font-size: 1.2rem; flex-shrink: 0; }
.contact-item a { color: var(--red); text-decoration: none; font-weight: 600; }
.contact-item a:hover { text-decoration: underline; }
.contact-hours { border-left: 3px solid var(--red); padding-left: 1.2rem; display: flex; flex-direction: column; gap: 0.4rem; }
.contact-social { display: flex; flex-direction: column; gap: 0.9rem; margin-top: 0.5rem; }
.contact-social-link {
  display: flex; align-items: center; gap: 1rem;
  color: var(--dark); text-decoration: none; font-weight: 600;
  font-size: 0.97rem; transition: color 0.2s, transform 0.2s;
}
.contact-social-link:hover { color: var(--red); transform: translateX(4px); }
.contact-social-link svg { width: 28px; height: 28px; flex-shrink: 0; }

/* -- FOOTER -- */
footer { background: #111; padding: 2.5rem 5rem 1.5rem; }
.footer-top {
  display: grid; grid-template-columns: auto 1fr auto auto;
  align-items: center; gap: 2rem; margin-bottom: 1.5rem;
}
.footer-logo { font-family: var(--font-d); font-size: 2.5rem; color: #fff; }
.footer-logo span { color: var(--red); }
.footer-links { display: flex; gap: 2rem; align-items: center; padding-left: 2rem; }
.footer-links a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-contact p { color: rgba(255,255,255,0.38); font-size: 0.82rem; line-height: 2.1; }
.footer-social { display: flex; gap: 1rem; align-items: center; }
.footer-social a { color: rgba(255,255,255,0.4); display: flex; transition: color 0.2s, transform 0.2s; }
.footer-social a:hover { color: var(--red); transform: scale(1.15); }
.footer-social svg { width: 24px; height: 24px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07); padding-top: 1.5rem;
  display: flex; justify-content: space-between;
  color: rgba(255,255,255,0.2); font-size: 0.75rem;
}

/* -- RESPONSIVE -- */
@media (max-width: 960px) {
  #navbar, #navbar.scrolled { padding: 0.9rem 1.5rem; }
  .nav-links { gap: 1.2rem; }
  section { padding: 3rem 1.5rem; }
  #hero { padding: 100px 1.5rem 3rem; }
  .hero-left { max-width: 100%; }
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .book-map-inner { grid-template-columns: 1fr; gap: 3rem; }
  .location-inner { grid-template-columns: 1fr; gap: 3rem; }
  .review-card { min-width: unset; width: 100% !important; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .g3 { grid-row: auto; }
  .book-inner { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; text-align: center; gap: 1.5rem; }
  .footer-links { justify-content: center; padding-left: 0; }
  .footer-social { justify-content: center; }
  .footer-contact { text-align: center; }
  .footer-bottom { flex-direction: column; align-items: center; gap: 0.4rem; }
  #scroll-indicator { display: none; }
}

/* ═══════════════════════════════════════════════════════
   MOBILE FIXES  (≤ 640px)
   Desktop is UNCHANGED — all rules here are mobile-only.
═══════════════════════════════════════════════════════ */
@media (max-width: 640px) {

  /* ── 1. NAVBAR: hamburger-style stacked layout ── */
  #navbar {
    flex-wrap: wrap;
    padding: 0.75rem 1rem !important;
    gap: 0.5rem;
  }
  .nav-logo { font-size: 1.4rem; }
  .nav-links {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    justify-content: center;
    padding: 0.3rem 0 0.1rem;
  }
  .nav-links a { font-size: 0.78rem; }
  .btn-nav {
    padding: 0.35rem 0.9rem !important;
    font-size: 0.78rem !important;
  }

  /* ── 2. GALLERY: smaller cards, touch-friendly ── */
  .gallery-strip-wrap {
    padding-bottom: 44px;
    /* widen the visible strip on mobile */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 2%, black 98%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 2%, black 98%, transparent 100%);
  }
  .gallery-strip {
    gap: 10px;
    padding: 0 12px;
    /* enable native touch swipe as fallback */
    touch-action: pan-x;
  }
  .gallery-strip .g-photo {
    flex: 0 0 200px;   /* show ~1.5 cards at once so user knows it scrolls */
    height: 280px;
  }
  .gallery-track { left: 12px; right: 12px; }
  .gallery-scissor-wrap { left: 12px; }

  /* ── 3. CALENDLY: shorter widget so it fits without scrolling ── */
  .calendly-inline-widget {
    height: 500px !important;
    min-width: unset !important;
    width: 100% !important;
  }

  /* ── 4. REVIEWS: show 1 card + peek of next ── */
  .reviews-carousel-wrap {
    gap: 0.4rem;
    padding: 0 0.5rem;
  }
  .rev-arrow {
    flex: 0 0 36px;
    height: 36px;
    font-size: 1.2rem;
    line-height: 36px;
  }
  .reviews-track { gap: 0.75rem; }
  .review-card {
    /* 1.75 cards visible: (100vw - 2 arrows - gaps) / 1.75 */
    width: calc((100vw - 2 * 36px - 2 * 0.4rem - 2 * 0.5rem - 0.75rem) / 1.75) !important;
    min-width: unset !important;
    max-height: 200px;
    overflow: hidden;
    padding: 1rem;
  }
  .rev-text { font-size: 0.82rem; line-height: 1.55; }

  /* ── 5. SCROLL INDICATOR: tiny strip on the right edge ── */
  #scroll-indicator {
    display: flex !important;
    right: 3px;
    width: 18px;
    opacity: 0;
  }
  #scroll-track {
    width: 1px;
  }
  #scroll-scissors {
    display: none;
  }
  #scroll-pct {
    font-size: 0.48rem;
    letter-spacing: 0.04em;
  }

  /* ── General section breathing room ── */
  section { padding: 2.5rem 1rem; }
  #hero   { padding: 90px 1rem 2.5rem; }
  .section-header { margin-bottom: 1.5rem; }
  h2 { font-size: clamp(2rem, 8vw, 3rem); }
  #hero h1 { font-size: clamp(4.76rem, 18.22vw, 7.89rem); }

  /* ── Footer: fix cut-off on small screens ── */
  footer { padding: 2rem 1.2rem 1.2rem; }
  .footer-links {
    flex-wrap: wrap;
    gap: 0.6rem 1.2rem;
    justify-content: center;
  }
  .footer-contact p { font-size: 0.78rem; line-height: 1.8; word-break: break-word; }
  .footer-bottom {
    text-align: center;
    font-size: 0.7rem;
    word-break: break-word;
  }
}


