:root {
  --ink: #495057;
  --muted: #6c757d;

  /* Masculine Pastels */
  --p-steel: #457b9d;
  --p-coral: #e63946;
  --p-sage: #f1faee;
  --p-dust: #a8dadc;
  --p-charcoal: #495057;
  --p-slate: #6c757d;

  --bg: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  --card: #ffffffee;
  --border: #dee2e6;
  --explosive-bg: linear-gradient(
    45deg,
    rgba(168, 218, 220, 0.3) 0%,
    rgba(69, 123, 157, 0.3) 25%,
    rgba(241, 250, 238, 0.3) 50%,
    rgba(230, 57, 70, 0.3) 75%,
    rgba(168, 218, 220, 0.3) 100%
  );

  /* width of the fixed "explosive" side bars */
  --side: 60px;

  /* Animation timing */
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ================= BASE STYLES ================= */
* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html,
body {
  margin: 0;
  padding: 0;
  position: relative;
  overflow-x: hidden;
  width: 100%;
}

body {
  font: 16px/1.6 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Arial, sans-serif;
  color: var(--ink);
  background: var(--bg) fixed;
  min-height: 100vh;
  padding-left: calc(var(--side) + 20px);
  padding-right: calc(var(--side) + 20px);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ================= Explosive Borders ================= */
body::before,
body::after {
  content: "";
  position: fixed;
  top: 0;
  width: var(--side);
  height: 100vh;
  z-index: 1;
  pointer-events: none;
}

body::before {
  left: 0;
  background: linear-gradient(
    180deg,
    var(--p-dust) 0%,
    var(--p-steel) 15%,
    var(--p-sage) 30%,
    var(--p-coral) 45%,
    var(--p-steel) 60%,
    var(--p-dust) 75%,
    var(--p-sage) 90%,
    var(--p-steel) 100%
  );
  animation: pulseLeft 4s ease-in-out infinite;
}

body::after {
  right: 0;
  background: linear-gradient(
    180deg,
    var(--p-steel) 0%,
    var(--p-coral) 15%,
    var(--p-dust) 30%,
    var(--p-sage) 45%,
    var(--p-steel) 60%,
    var(--p-coral) 75%,
    var(--p-dust) 90%,
    var(--p-sage) 100%
  );
  animation: pulseRight 4s ease-in-out infinite reverse;
}

@keyframes pulseLeft {
  0%,
  100% { opacity: 0.7; transform: scaleX(1); }
  50% { opacity: 0.9; transform: scaleX(1.05); }
}

@keyframes pulseRight {
  0%,
  100% { opacity: 0.7; transform: scaleX(1); }
  50% { opacity: 0.9; transform: scaleX(1.05); }
}

a {
  color: inherit;
  touch-action: manipulation;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
  text-decoration-skip-ink: auto;
  overflow-wrap: break-word;
  word-break: break-word;
}

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding-inline: clamp(16px, 4vw, 80px);
  position: relative;
  z-index: 2;
}

.center { text-align: center; }

/* ================= Header ================= */
.site-header {
  background: linear-gradient(90deg, var(--p-slate), var(--p-charcoal));
  color: #f8f9fa;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 16px;
  flex-wrap: wrap;
}
.site-header .brand {
  font-weight: 800;
  text-decoration: none;
  color: #f8f9fa;
  font-size: clamp(1.4rem, 4vw, 1.8rem);
  margin: 0;
}
.site-header .nav {
  display: flex;
  gap: clamp(0.5rem, 2vw, 2rem);
  flex-wrap: wrap;
  justify-content: center;
}
.site-header .nav-link {
  padding: 0.65rem 0.8rem;
  white-space: nowrap;
  color: #f8f9fa;
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-base), background var(--transition-base);
  border-radius: 8px;
  touch-action: manipulation;
  display: inline-block;
}
.nav-link:hover,
.nav-link:active { background: rgba(168, 218, 220, 0.2); color: var(--p-dust); }

/* ================= Hero ================= */
.hero {
  padding: clamp(40px, 8vw, 72px) 0 clamp(32px, 6vw, 56px);
  background: linear-gradient(135deg, var(--p-charcoal) 0%, var(--p-slate) 100%);
  color: #fff;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.hero .wrap { max-width: 860px; }
.hero h1 {
  margin: 0.25rem 0 1rem;
  font-size: clamp(2rem, 5vw, 3rem);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.hero p { font-size: clamp(1rem, 2vw, 1.2rem); opacity: 0.9; margin-bottom: 2rem; }

.btn {
  display: inline-block;
  margin-top: 0.75rem;
  padding: clamp(0.8rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  border-radius: 50px;
  background: linear-gradient(45deg, var(--p-coral), var(--p-steel));
  border: none; text-decoration: none; color: #fff;
  font-weight: 700; font-size: clamp(1rem, 2vw, 1.1rem);
  box-shadow: 0 6px 18px rgba(230, 57, 70, 0.3);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  touch-action: manipulation; min-height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(230, 57, 70, 0.4); }
.btn:active { transform: translateY(0); }

.ghost {
  background: var(--p-dust);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.6rem 0.9rem;
  font-weight: 600; cursor: pointer; color: var(--ink);
  transition: all var(--transition-base);
  touch-action: manipulation; min-height: 44px;
}
.ghost:hover, .ghost:active { background: var(--p-steel); color: #fff; }

.muted { color: var(--muted); }
.section-title {
  margin: 28px 0 16px;
  color: var(--ink);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  text-shadow: 2px 2px 4px rgba(168, 218, 220, 0.3);
  text-align: center;
}

/* ================= Content Areas ================= */
.about, .shop-section, .booking-section, .image-strip {
  background: var(--explosive-bg);
  position: relative; overflow: hidden;
  margin: clamp(24px, 4vw, 36px) 0;
  padding: clamp(1.5rem, 3vw, 2rem) 0;
  border-radius: clamp(16px, 2vw, 20px);
}
.about::before, .shop-section::before, .booking-section::before, .image-strip::before{
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(circle at 20% 30%, rgba(168,218,220,.4) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(69,123,157,.4) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(230,57,70,.4) 0%, transparent 50%),
    radial-gradient(circle at 60% 20%, rgba(241,250,238,.4) 0%, transparent 50%);
  animation: float 6s ease-in-out infinite; pointer-events:none;
}
@keyframes float { 0%,100%{transform:translateY(0) rotate(0)} 50%{transform:translateY(-20px) rotate(180deg)} }

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px; position: relative; z-index: 1;
}
.about-text, .about-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 16px;
  padding: clamp(1rem, 2vw, 1.25rem); box-shadow: 0 10px 30px rgba(0,0,0,.1);
  backdrop-filter: blur(10px);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.about-text:hover, .about-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(69,123,157,.2); }
.about-text h2, .about-card h3 { margin-top: 0; color: var(--ink); }

/* ================= Shop grid ================= */
.grid{
  display:grid;
  grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
  gap: clamp(14px, 2vw, 20px); margin: 20px 0 40px; position: relative; z-index: 1;
}
.product{
  background:var(--card); border:2px solid transparent; border-radius:16px;
  padding: clamp(10px, 2vw, 16px); box-shadow:0 10px 30px rgba(0,0,0,.1);
  display:grid; gap:.8rem; align-content:start; backdrop-filter: blur(10px);
  transition:all var(--transition-base);
}
.product:hover{ transform:translateY(-10px) scale(1.02); box-shadow:0 20px 50px rgba(69,123,157,.3); border-color:var(--p-steel) }
.product-art{
  height: clamp(120px, 20vw, 180px);
  border-radius:12px; border:1px solid var(--border);
  background:
    radial-gradient(100px 60px at 20% 30%, var(--p-coral), transparent 60%),
    radial-gradient(120px 80px at 80% 70%, var(--p-dust), transparent 60%),
    radial-gradient(80px 60px at 50% 40%, var(--p-sage), transparent 60%),
    var(--p-steel);
  display:flex; align-items:center; justify-content:center;
  color:#fff; font-weight:700; font-size:clamp(1rem, 2vw, 1.1rem);
}
.product-art-img{
  width:100%; height:auto; aspect-ratio:4/3; object-fit:cover;
  border-radius:12px; border:1px solid var(--border); display:block; background:#ddd;
}
.price{ font-weight:700; color:var(--p-steel); font-size:clamp(1rem, 2vw, 1.2rem) }
.purchase h4{ margin:.2rem 0; color:var(--ink) }
.purchase ul{ margin:.2rem 0 .6rem .95rem }

/* ================= Videos ================= */
.video-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap:20px; margin:14px 0 34px; position:relative; z-index:1;
}
.video-card{
  background:var(--card); border:2px solid transparent; border-radius:16px; padding:12px;
  box-shadow:0 10px 30px rgba(0,0,0,.1); backdrop-filter: blur(10px); transition:all var(--transition-base);
}
.video-card:hover{ transform:translateY(-5px); border-color:var(--p-steel); box-shadow:0 20px 40px rgba(69,123,157,.2) }
.video-embed{
  position:relative; width:100%; padding-top:56.25%; overflow:hidden; border-radius:12px; border:1px solid var(--border); background:var(--p-charcoal);
}
.video-embed iframe{ position:absolute; inset:0; width:100%; height:100%; border:0 }

/* ================= Info block ================= */
.shop-info{
  background:var(--card); border:1px solid var(--border); border-radius:16px;
  padding:clamp(1rem, 2vw, 1.25rem); margin:10px 0 40px; box-shadow:0 10px 30px rgba(0,0,0,.1);
  backdrop-filter: blur(10px); position:relative; z-index:1;
}

/* ================= Booking Section ================= */
.booking-section .wrap{ position:relative; z-index:1 }
.booking-grid{ display:grid; grid-template-columns:repeat(auto-fit, minmax(280px,1fr)); gap:clamp(1.5rem,3vw,3rem); margin-top:2rem }
.booking-about,.booking-info{
  background:var(--card); border:1px solid var(--border); border-radius:16px; padding:clamp(1.25rem,3vw,2rem);
  box-shadow:0 10px 30px rgba(0,0,0,.1); backdrop-filter: blur(10px);
  transition:transform var(--transition-base), box-shadow var(--transition-base);
}
.booking-about:hover,.booking-info:hover{ transform:translateY(-5px); box-shadow:0 20px 40px rgba(69,123,157,.2) }
.booking-about h3,.booking-info h3{ margin-top:0; margin-bottom:1.5rem; color:var(--ink); font-size:clamp(1.3rem,3vw,1.5rem) }
.booking-about h4,.booking-info h4{ color:var(--p-steel); margin:1.5rem 0 .8rem; font-size:clamp(1rem,2vw,1.1rem) }
.booking-about p,.booking-info p{ color:var(--muted); line-height:1.7; margin-bottom:1rem }
.performance-highlights ul{ color:var(--muted); margin:1rem 0 0 1.5rem; line-height:1.6 }
.performance-highlights li{ margin-bottom:.5rem }
.booking-step{ margin-bottom:2rem; padding-bottom:1.5rem; border-bottom:1px solid var(--border) }
.booking-step:last-of-type{ border-bottom:none; margin-bottom:1.5rem }
.booking-contact{ background:rgba(69,123,157,.1); border-radius:12px; padding:clamp(1rem,2vw,1.5rem); margin:2rem 0 }
.booking-contact h4{ margin-top:0; color:var(--p-steel) }
.booking-contact p{ margin-bottom:.5rem }
.booking-contact a{ color:var(--p-steel); text-decoration:none; font-weight:600; transition:color var(--transition-base) }
.booking-contact a:hover{ color:var(--p-coral); text-decoration:underline }
.booking-contact ul{ list-style:none; padding-left:0; margin:.25rem 0 0 }
.booking-contact li + li{ margin-top:.35rem }
.booking-btn{
  display:block; text-align:center; margin-top:1.5rem; background:linear-gradient(45deg,var(--p-steel),var(--p-coral));
  border:none; color:#fff; padding:clamp(.8rem,2vw,1rem) clamp(1.5rem,3vw,2rem); border-radius:50px; font-weight:700; font-size:clamp(.95rem,2vw,1rem);
  text-decoration:none; transition:transform var(--transition-base), box-shadow var(--transition-base); box-shadow:0 6px 18px rgba(69,123,157,.3);
  touch-action:manipulation; min-height:44px;
}
.booking-btn:hover{ transform:translateY(-2px); box-shadow:0 10px 25px rgba(69,123,157,.4) }
.booking-btn:active{ transform:translateY(0) }

/* ================= Image Strips ================= */
.image-strip .wrap { position:relative; z-index:1; text-align:center }

.strip{
  display:flex; gap:16px; overflow-x:auto; padding:12px 20px;
  scrollbar-width:thin; scrollbar-color:var(--p-steel) transparent;
  justify-content:flex-start; -webkit-overflow-scrolling:touch;
}
.strip::-webkit-scrollbar{ height:8px }
.strip::-webkit-scrollbar-thumb{ background:var(--p-steel); border-radius:4px }

.strip-card{
  flex:0 0 auto;
  width: clamp(160px, 30vw, 240px);   /* general strips (not Moments) */
  background:var(--card); border:1px solid var(--border); border-radius:14px;
  box-shadow:0 8px 22px rgba(0,0,0,0.1); overflow:hidden;
  transition:transform var(--transition-base), box-shadow var(--transition-base);
  text-align:center; backdrop-filter: blur(8px);
}
.strip-card img{ display:block; width:100%; height:clamp(120px, 20vw, 180px); object-fit:cover }
.strip-card figcaption{ padding:.5rem; font-size:clamp(.8rem,1.5vw,.9rem); color:var(--muted) }
.strip-card:hover{ transform:translateY(-5px); box-shadow:0 14px 30px rgba(69,123,157,.3) }

/* ---- SPECIAL: Moments strip (works on all sizes) ---- */
.image-strip.moments .strip{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:10px; padding:0 16px; overflow:visible; justify-content:center;
}
.image-strip.moments .strip-card{
  /* cancel global width from .strip-card */
  width:100%; min-width:0; flex:unset;
  position:relative; aspect-ratio:1 / 1; border-radius:12px; overflow:hidden;
}
.image-strip.moments .strip-card img{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover; display:block;
}

/* ================= Footer ================= */
.site-footer{
  border-top:1px solid var(--border);
  background:linear-gradient(90deg, var(--p-charcoal), var(--p-slate));
  color:#fff; margin-top:28px;
}
.site-footer .wrap{
  display:flex; justify-content:center; align-items:center; min-height:70px; padding:1rem;
}

/* ================= MOBILE STYLES ================= */

/* Tablet */
@media (max-width: 900px){
  :root{ --side:40px }
  .about-grid, .booking-grid{ grid-template-columns:1fr }
}

/* Phone */
@media (max-width: 600px){
  :root{ --side:0px }

  body{ padding-left:0; padding-right:0 }
  body::before, body::after{ display:none }

  /* Optional colored bars top/bottom */
  body{ border-top:8px solid var(--p-steel); border-bottom:8px solid var(--p-coral) }

  .site-header .wrap{ flex-direction:column; padding:1rem; min-height:auto }
  .site-header .brand{ font-size:1.5rem; margin-bottom:.5rem }
  .site-header .nav{ width:100%; justify-content:center; gap:.5rem }
  .site-header .nav-link{ padding:.6rem .8rem; font-size:.9rem; min-height:44px; flex:1 1 auto; text-align:center }

  .grid{ grid-template-columns:repeat(2, 1fr); gap:12px }
  .product{ padding:10px }

  .video-grid{ grid-template-columns:1fr }

  /* ---- Moments on mobile: 4 squares in a centered row with side whitespace ---- */
  .image-strip.moments .strip{
    /* responsive square size + gap */
    --tile: clamp(72px, 21vw, 96px);
    --gap: clamp(8px, 3.5vw, 12px);

    display:grid !important;
    grid-template-columns: repeat(4, var(--tile)) !important;
    gap: var(--gap) !important;

    /* exact width = 4 tiles + 3 gaps → center it, guaranteeing left/right space */
    width: calc(4 * var(--tile) + 3 * var(--gap)) !important;
    margin-inline: auto !important;
    padding-inline: 0 !important;
    overflow: visible !important;
    box-sizing: content-box !important;
  }
  .image-strip.moments .strip-card{
    all: unset;                 /* wipe conflicting flex/width from global .strip-card */
    display: block;
    width: var(--tile) !important;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    background: var(--card);
    border: 1px solid var(--border);
    box-shadow: 0 8px 22px rgba(0,0,0,.1);
  }
  .image-strip.moments .strip-card img{
    width:100%; height:100%; object-fit:cover; display:block;
  }

  /* Tame heavy effects on mobile */
  .about::before, .shop-section::before, .booking-section::before, .image-strip::before{
    animation:none; opacity:.3;
  }
}

/* Small phones */
@media (max-width: 380px){
  .site-header .nav-link{ font-size:.8rem; padding:.5rem .6rem }
  .grid{ grid-template-columns:repeat(2, 1fr); gap:10px }
  /* keep Moments using the same centered row sizing; tile size will shrink via clamp() */
}

/* Focus styles */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.ghost:focus-visible{
  outline:2px solid var(--p-steel);
  outline-offset:2px; border-radius:6px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  *,*::before,*::after{ animation:none !important; transition:none !important }
  .btn,.ghost,.nav-link{ transition: opacity .2s !important; }
}

/* Print */
@media print{
  body::before, body::after{ display:none !important }
  .site-header{ position:static }
  .btn{ border:2px solid currentColor }
  .about::before, .shop-section::before, .booking-section::before, .image-strip::before{ display:none }
  body{ color:#000; background:#fff !important }
  .about-text, .about-card, .product, .video-card, .shop-info, .booking-about, .booking-info{
    background:#fff !important; border:1px solid #000 !important; box-shadow:none !important;
  }
}

/* Firefox backdrop-filter fallback */
@-moz-document url-prefix(){
  .about-text, .about-card, .product, .video-card, .shop-info, .booking-about, .booking-info, .strip-card{
    backdrop-filter:none; background:#ffffffee;
  }
}
/* ===================== MOMENTS STRIP (final) ===================== */
/* Desktop / tablet: 4 landscape tiles across, centered, no overflow */
.image-strip.moments .strip {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: clamp(10px, 2vw, 24px) !important;
  padding: clamp(8px, 2vw, 24px) !important;
  margin: 0 auto !important;
  width: 100% !important;
  box-sizing: border-box !important;
  overflow: visible !important; /* prevent clipping of shadows */
}

/* Cancel global flex/width clamps from generic strip styles */
.image-strip.moments .strip-card {
  width: 100% !important;
  min-width: 0 !important;
  flex: 0 0 auto !important;
  border-radius: 12px;
  overflow: hidden;
  /* Landscape like your screenshot */
  aspect-ratio: 16 / 10;
}

.image-strip.moments .strip-card img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block;
}

/* Mobile: keep 4 across, scaled to fit with side padding (no overflow) */
@media (max-width: 600px) {
  .image-strip.moments .strip {
    gap: 8px !important;
    padding: 0 12px !important;   /* even left/right breathing room */
  }
  /* If you prefer perfect squares on phones, keep this 1/1.
     If you'd rather keep landscape, change to 16/10 here too. */
  .image-strip.moments .strip-card { aspect-ratio: 1 / 1; }
}
/* FINAL OVERRIDE — Moments: always 4 across, no overflow, all visible */
.image-strip.moments .strip,
.image-strip.moments .strip.scroller {
  /* nuke the flex scroller behavior */
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 12px !important;
  padding: 0 12px !important;      /* small side breathing room */
  margin: 0 auto !important;
  width: 100% !important;
  max-width: 100% !important;
  overflow: visible !important;    /* don't clip shadows */
  box-sizing: border-box !important;
}

/* cancel any width clamps / flex sizing coming from generic .strip-card */
.image-strip.moments .strip-card {
  width: 100% !important;
  min-width: 0 !important;
  flex: 0 0 auto !important;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 10;           /* landscape like your screenshot */
}

/* image fully fills its tile */
.image-strip.moments .strip-card img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

/* If you want squares on phones, switch to 1/1 here */
@media (max-width: 600px) {
  .image-strip.moments .strip-card { aspect-ratio: 1 / 1; }
  .image-strip.moments .strip { gap: 8px !important; padding: 0 10px !important; }
}
/* ================== MOMENTS STRIP (match your 2nd screenshot) ================== */
/* Works on desktop + mobile. Always 4 tiles in one row, centered, no overflow.  */
.image-strip.moments .strip,
.image-strip.moments .strip.scroller {
  /* kill the default flex scroller */
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: clamp(10px, 2vw, 24px) !important;

  /* align with the curved container and keep both sides visible */
  padding-inline: clamp(12px, 3vw, 32px) !important;
  margin: 0 auto !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  overflow: visible !important; /* keep the soft shadows */
}

/* cancel the global width clamp/flex sizing on cards */
.image-strip.moments .strip-card {
  width: 100% !important;
  min-width: 0 !important;
  flex: 0 0 auto !important;

  /* landscape tiles like your screenshot */
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  overflow: hidden;
}

/* image should fully cover its tile */
.image-strip.moments .strip-card img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

/* On small phones keep 4 across and tighten the gutters a bit */
@media (max-width: 600px) {
  .image-strip.moments .strip { gap: 8px !important; padding-inline: 10px !important; }
}
/* ==== MOMENTS STRIP — 4 across, centered, no overflow (matches your HTML) ==== */
/* <section class="image-strip moments"> ... <div class="strip scroller"> ...  */

.image-strip.moments .strip,
.image-strip.moments .strip.scroller {
  /* replace the old flex scroller with a fixed 4-col grid */
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: clamp(10px, 2vw, 18px) !important;

  /* keep visible space on both sides inside the rounded container */
  padding-inline: clamp(12px, 4vw, 24px) !important;

  /* make sure nothing pushes wider than the container */
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto !important;
  box-sizing: border-box !important;

  /* neutralize previous horizontal scroll behavior */
  overflow-x: clip !important;
  justify-content: center; /* centers if rounding causes sub-pixel differences */
}

/* cancel the generic card width clamp and flex sizing */
.image-strip.moments .strip-card {
  width: 100% !important;
  min-width: 0 !important;
  flex: 0 0 auto !important;

  /* landscape tiles like your desktop screenshot */
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  overflow: hidden;
}

/* make images fill their tiles */
.image-strip.moments .strip-card img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

/* small phones: tighten the gutters a touch but keep 4 across */
@media (max-width: 600px) {
  .image-strip.moments .strip {
    gap: 8px !important;
    padding-inline: 10px !important;
  }
}
/* ==== Moments strip: force 4 images across, no overflow ==== */
.image-strip.moments .strip,
.image-strip.moments .strip.scroller {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: clamp(8px, 2vw, 14px) !important;

  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto !important;
  padding: 0 clamp(8px, 3vw, 16px) !important;
  box-sizing: border-box !important;

  /* override scroller styles */
  overflow: hidden !important;
  justify-content: center;
}

.image-strip.moments .strip-card {
  width: 100% !important;
  aspect-ratio: 1 / 1;       /* keeps perfect squares */
  border-radius: 12px;
  overflow: hidden;
  flex: unset !important;
}

.image-strip.moments .strip-card img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

/* ======== FINAL, HIGH-SPECIFICITY OVERRIDE (do not remove) ======== */
/* Ensures exactly 4 tiles, centered, with even side padding on ALL sizes. */
.image-strip.moments :is(.strip, .strip.scroller){
  display:grid !important;
  grid-template-columns:repeat(4, minmax(0,1fr)) !important;
  gap:clamp(10px, 2.5vw, 22px) !important;
  padding-inline:clamp(12px, 3.5vw, 28px) !important;
  width:100% !important;
  max-width:100% !important;
  margin:0 auto !important;
  box-sizing:border-box !important;
  overflow:visible !important;
}
.image-strip.moments :is(.strip, .strip.scroller) > .strip-card{
  width:100% !important;
  min-width:0 !important;
  flex:unset !important;
  border-radius:12px;
  overflow:hidden;
  aspect-ratio:16/10 !important;   /* desktop/tablet look */
}
.image-strip.moments :is(.strip, .strip.scroller) > .strip-card img{
  width:100% !important; height:100% !important; object-fit:cover !important; display:block !important;
}
@media (max-width:600px){
  .image-strip.moments :is(.strip, .strip.scroller){ gap:10px !important; padding-inline:12px !important; }
  .image-strip.moments :is(.strip, .strip.scroller) > .strip-card{ aspect-ratio:1/1 !important; } /* squares on phones */
}
/* Moments strip — exactly 3 images, centered, no zoom */
.image-strip.moments .strip,
.image-strip.moments .strip.scroller {
  display: flex !important;          /* use flex instead of grid */
  justify-content: center !important; /* center the row */
  gap: 20px !important;               /* space between images */
  padding: 0 16px !important;         /* breathing room on sides */
  flex-wrap: nowrap !important;       /* keep all 3 in one row */
}

.image-strip.moments .strip-card {
  flex: 0 0 auto !important;          /* don’t stretch */
  width: clamp(200px, 25%, 280px);    /* keeps natural size */
  aspect-ratio: 16 / 10;              /* consistent landscape */
  border-radius: 12px;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: 0 8px 22px rgba(0,0,0,.1);
}

.image-strip.moments .strip-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Moments strip — exactly 3 images, centered, fixed size, no zoom */
.image-strip.moments .strip,
.image-strip.moments .strip.scroller {
  display: flex !important;
  justify-content: center !important;   /* center the row */
  gap: 20px !important;                 /* spacing between images */
  padding: 0 16px !important;           /* side breathing room */
  flex-wrap: nowrap !important;
}

.image-strip.moments .strip-card {
  flex: 0 0 auto !important;            /* don’t stretch */
  width: clamp(200px, 22vw, 260px);     /* natural fixed size */
  aspect-ratio: 16 / 10;                /* landscape proportion */
  border-radius: 12px;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: 0 8px 22px rgba(0,0,0,.1);
}

.image-strip.moments .strip-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;                   /* keep proportions, no zooming */
  display: block;
}
@media (max-width: 600px) {
  .image-strip.moments .strip-card {
    width: clamp(100px, 28vw, 140px);  /* shrink on phones */
    aspect-ratio: 1 / 1;               /* make them square if you prefer */
  }
}
/* Moments strip: always 3 images in one row, even on phones */
@media (max-width: 600px) {
  .image-strip.moments .strip,
  .image-strip.moments .strip.scroller {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important; /* 3 per row */
    gap: 8px !important;
    padding-inline: 10px !important;
    justify-content: center !important;
  }

  .image-strip.moments .strip-card {
    width: 100% !important;
    aspect-ratio: 1 / 1;  /* make them square for phones */
  }

  .image-strip.moments .strip-card img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }
}
/* --- HARD FIX: Moments on phones = 3 images in one row, centered, no zoom --- */
@media (max-width: 600px) {
  .image-strip.moments .strip,
  .image-strip.moments .strip.scroller {
    /* kill the old flex scroller and force a 3-col grid */
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 8px !important;
    padding-inline: 10px !important;   /* little side breathing room */
    margin: 0 auto !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: visible !important;
    box-sizing: border-box !important;
    justify-content: center !important;
    align-items: start !important;
  }

  /* reset any leftover width/ratio from previous rules */
  .image-strip.moments .strip-card {
    all: unset;                    /* wipe conflicting props */
    display: block !important;
    width: 100% !important;        /* fill its grid cell */
    border-radius: 12px !important;
    overflow: hidden !important;
  }

  /* do NOT zoom/crop on phones; show full image (may letterbox slightly) */
  .image-strip.moments .strip-card img {
    display: block !important;
    width: 100% !important;
    height: auto !important;       /* keep natural aspect ratio */
    object-fit: contain !important;/* no zoom/crop */
  }
}
/* === FINAL PHONE FIX: Moments = 3 images in one row, centered, no zoom/crop === */
@media (max-width: 600px) {
  .image-strip.moments .strip,
  .image-strip.moments .strip.scroller {
    /* kill the old scroller / 4-col rules */
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 10px !important;
    padding-inline: 10px !important;
    margin: 0 auto !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: visible !important;
    box-sizing: border-box !important;
    justify-content: center !important;
    align-items: start !important;
  }

  /* reset any leftover sizing from previous moments rules */
  .image-strip.moments .strip-card {
    all: unset;                          /* wipe conflicting props */
    display: block !important;
    width: 100% !important;              /* each card fills its grid cell */
    border-radius: 12px !important;
    border: 1px solid var(--border) !important;
    background: var(--card) !important;
    overflow: hidden !important;
  }

  /* MOST IMPORTANT: undo the absolute, cover-crop image rule on phones */
  .image-strip.moments .strip-card img {
    position: static !important;         /* override earlier position:absolute */
    inset: auto !important;
    width: 100% !important;
    height: auto !important;             /* keep natural aspect ratio */
    object-fit: contain !important;      /* no zoom/crop */
    display: block !important;
  }
}
/* Contact & Booking: stack cards on mobile */
@media (max-width: 600px) {
  #contact .grid {
    grid-template-columns: 1fr !important; /* one column */
    gap: 12px;                              /* keep spacing */
  }
  #contact .product {
    width: 100%;
  }
}

/* Also override the small-phone rule */
@media (max-width: 380px) {
  #contact .grid {
    grid-template-columns: 1fr !important;
  }
}
/* Listen: stack cards on mobile */
@media (max-width: 600px) {
  #music .grid {
    grid-template-columns: 1fr !important; /* one column */
    gap: 12px;
  }
  #music .product {
    width: 100%;
  }
}

@media (max-width: 380px) {
  #music .grid {
    grid-template-columns: 1fr !important;
  }
}
/* === Mobile: KEEP the side bars visible === */
@media (max-width: 600px) {
  /* show slimmer side bars on phones */
  :root { --side: 32px; }

  /* restore left/right padding for the side bars */
  body {
    padding-left: calc(var(--side) + 12px) !important;
    padding-right: calc(var(--side) + 12px) !important;
    border-top: none !important;      /* remove the mobile top/bottom bars */
    border-bottom: none !important;
  }

  /* make sure the gradient bars are not hidden on mobile */
  body::before,
  body::after {
    display: block !important;
    width: var(--side) !important;
    position: fixed !important;
    top: 0; height: 100vh; z-index: 1; pointer-events: none;
  }
}
/* === SHOW FULL IMAGES (no crop) ==========================
   Applies to: Moments strips + Photo Gallery grid
   Place these overrides at the very end of your stylesheet.  */

/* --- MOMENTS: do not crop --- */
.image-strip.moments .strip-card {
  aspect-ratio: auto !important;      /* stop forcing 16:10 or 1:1 */
}
.image-strip.moments .strip-card img {
  width: 100% !important;
  height: auto !important;             /* keep natural ratio */
  object-fit: contain !important;      /* letterbox instead of crop */
  object-position: center center !important;
  display: block !important;
  background: #fff;                    /* clean letterbox bars */
}

/* --- GALLERY: do not crop --- */
#gallery .product-art-img {
  width: 100% !important;
  height: auto !important;             /* keep natural ratio */
  aspect-ratio: auto !important;       /* undo 4/3 constraint */
  object-fit: contain !important;      /* show entire photo */
  object-position: center center !important;
  display: block !important;
  background: #fff;                    /* clean letterbox bars */
}
/* === FIX: Moments on DESKTOP — show full image, no crop === */
@media (min-width: 901px) {
  /* center the image inside the existing tile without changing tile size */
  .image-strip.moments .strip-card {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .image-strip.moments .strip-card img {
    /* undo older absolute/cover rules */
    position: static !important;
    top: auto !important; right: auto !important; bottom: auto !important; left: auto !important;

    /* keep original image proportions; fit inside the tile */
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
    display: block !important;
  }
}
/* Desktop override — Featured Moments: show full image (no zoom/crop) */
@media (min-width: 901px) {
  section.image-strip.moments:first-of-type .strip-card {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  section.image-strip.moments:first-of-type .strip-card img {
    position: static !important;   /* undo absolute */
    inset: auto !important;
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;    /* fit inside the tile */
    max-height: 100% !important;
    object-fit: contain !important; /* never crop */
    object-position: center !important;
    display: block !important;
  }
}
/* ================= SHOP: Product images & WhatsApp action ================= */

/* Wrap for product image blocks that contain <img> */
.product-art {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #dde1e3;
  display: flex;
  align-items: center;
  justify-content: center;
  /* keep visuals consistent with cards */
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
}

/* Ensure images scale nicely without distortion */
.product-art > img {
  width: 100%;
  height: auto;              /* keep natural ratio */
  display: block;
  object-fit: contain;       /* show full image (no crop) */
  object-position: center;
  aspect-ratio: 4 / 3;       /* gentle frame for product shots */
  background: #fff;          /* clean letterbox if needed */
  border-radius: 12px;
}

/* Make product cards feel consistent with your glassy look */
.product h3 {
  margin: .25rem 0 .15rem;
  font-weight: 800;
  letter-spacing: .2px;
}

.product p {
  margin: 0 0 .35rem;
}

.product .price {
  font-weight: 800;
  color: var(--p-steel);
  letter-spacing: .3px;
}

/* Purchase block refinement */
.product .purchase {
  margin-top: .35rem;
  padding-top: .5rem;
  border-top: 1px solid var(--border);
}
.product .purchase ul {
  margin-left: 1.1rem;
  line-height: 1.5;
}
.product .purchase li::marker {
  color: var(--p-steel);
}

/* WhatsApp CTA variant (inherits .btn base) */
.btn.whatsapp {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: linear-gradient(45deg, #25d366, #128c7e); /* WhatsApp green */
  box-shadow: 0 6px 18px rgba(18, 140, 126, .35);
}
.btn.whatsapp:hover {
  box-shadow: 0 10px 26px rgba(18, 140, 126, .45);
  transform: translateY(-2px);
}

/* Simple WA icon bubble (no external asset needed) */
.btn.whatsapp::before {
  content: "🟢";
  font-size: 1rem;
  line-height: 1;
}

/* Tighten grid spacing just for shop sections (keeps your general grid) */
#cups.grid, #caps.grid, #tshirts.grid {
  gap: clamp(12px, 2vw, 18px);
}

/* On very small phones, make images a bit shorter so content stays above the fold */
@media (max-width: 380px) {
  .product-art > img { aspect-ratio: 3 / 2; }
}

/* Optional: if you want product images to softly lift on hover (desktop) */
@media (hover: hover) and (pointer: fine) {
  .product-art { transition: transform var(--transition-base), box-shadow var(--transition-base); }
  .product-art:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(69,123,157,.25);
  }
}
/* ===================== SHOP — MOBILE FIXES ===================== */
@media (max-width: 600px) {
  /* overall spacing */
  .wrap {
    padding-inline: 14px;
  }

  .section-title {
    margin: 18px 0 10px;
    font-size: clamp(1.4rem, 5vw, 1.7rem);
  }

  /* header tweaks */
  .site-header .wrap {
    gap: 8px;
    padding-block: 8px;
  }
  .site-header .nav {
    gap: 6px;
  }
  .site-header .nav-link {
    padding: 0.5rem 0.7rem;
    font-size: 0.9rem;
  }

  /* make shop sections single-column and comfy */
  #cups.grid,
  #caps.grid,
  #tshirts.grid,
  .grid {
    grid-template-columns: 1fr !important; /* force one card per row */
    gap: 12px !important;
    margin: 12px 0 24px;
  }

  /* product card readability */
  .product {
    padding: 12px;
    gap: 10px;
  }
  .product h3 {
    font-size: 1.05rem;
    line-height: 1.25;
    margin: 6px 0 2px;
    word-break: break-word;
  }
  .product .price {
    font-size: 1rem;
    margin-bottom: 6px;
  }
  .product p {
    margin-bottom: 8px;
  }

  /* product image wrapper */
  .product-art {
    border-radius: 10px;
  }
  .product-art > img {
    width: 100%;
    height: auto;             /* keep natural aspect */
    max-height: 52vw;         /* prevents giant images on tiny screens */
    object-fit: contain;      /* no cropping */
    border-radius: 10px;
    display: block;
    background: #fff;         /* neat letterbox background */
  }

  /* purchase area + CTA */
  .purchase {
    margin-top: 6px;
    padding-top: 8px;
    border-top: 1px solid var(--border);
  }
  .purchase ul {
    margin: 6px 0 10px 1rem;
    line-height: 1.45;
  }
  .btn,
  .btn.whatsapp,
  .purchase .btn {
    width: 100%;              /* full-width tap target */
    min-height: 44px;
    font-size: 1rem;
    padding: 0.9rem 1rem;
  }

  /* tighten site footer on mobile */
  .site-footer .wrap {
    padding: 10px;
    min-height: 56px;
    text-align: center;
  }
}

/* ultra-small phones */
@media (max-width: 380px) {
  .product-art > img {
    max-height: 58vw;         /* a bit taller allowance if screen is narrow */
  }
  .product h3 {
    font-size: 1rem;
  }
}
