/* =============================================================================
   SHERA CHIC — design tokens & base styles
   Maximalist whimsy. Hot pink + plum + peach + gold. Retro 70s flourishes.
   ========================================================================== */

:root {
  /* Default palette: Bubblegum Boulevard */
  --bg:        #FFE8F0;
  --bg-2:      #FFD6E5;
  --bg-3:      #FFC2D9;
  --paper:     #FFF6F0;
  --ink:       #2A0820;
  --plum:      #6B2D5C;
  --plum-deep: #4A1A3F;
  --hot:       #E91E63;
  --coral:     #FF6B9D;
  --peach:     #FFB347;
  --gold:      #F4C95D;
  --cream:     #FFF1DE;

  --shadow-pop: 6px 6px 0 var(--plum);
  --shadow-soft: 0 12px 32px rgba(74, 26, 63, .22);

  /* Type families — set by .theme-* classes */
  --font-display: 'Rye', 'Playfair Display', Georgia, serif;
  --font-deco:    'Yellowtail', 'Caveat', cursive;
  --font-body:    'Outfit', ui-sans-serif, system-ui, sans-serif;

  --radius:    18px;
  --maxw:      1240px;
}

/* ── Palette themes ─────────────────────────────────────────────────────── */

.palette-bubblegum {
  --bg:#FFE8F0; --bg-2:#FFD6E5; --bg-3:#FFC2D9; --paper:#FFF6F0;
  --ink:#2A0820; --plum:#6B2D5C; --plum-deep:#4A1A3F;
  --hot:#E91E63; --coral:#FF6B9D; --peach:#FFB347; --gold:#F4C95D;
  --cream:#FFF1DE;
}
.palette-honkytonk {
  --bg:#FFF1E0; --bg-2:#FFE0C2; --bg-3:#FBD0A8; --paper:#FFF7EB;
  --ink:#3A0F0A; --plum:#7A2828; --plum-deep:#5A1A1A;
  --hot:#D4574E; --coral:#F2A48A; --peach:#E8B968; --gold:#D4A155;
  --cream:#FFF1DE;
}
.palette-strawberry {
  --bg:#FBEEE6; --bg-2:#F6DCD0; --bg-3:#EFC4B2; --paper:#FFF8F2;
  --ink:#2D0F1A; --plum:#7A1F4A; --plum-deep:#52132F;
  --hot:#C13584; --coral:#E8A4B8; --peach:#F4C29A; --gold:#C99563;
  --cream:#FFF1DE;
}
.palette-disco {
  --bg:#180A26; --bg-2:#241036; --bg-3:#311548; --paper:#1F0D2E;
  --ink:#FFEAF5; --plum:#FFD93D; --plum-deep:#FFE85C;
  --hot:#FF3D8A; --coral:#FF85C0; --peach:#FFD93D; --gold:#FFD93D;
  --cream:#2A1240;
}

/* ── Type pairings ──────────────────────────────────────────────────────── */

.type-western {
  --font-display:'Rye', Georgia, serif;
  --font-deco:'Yellowtail', cursive;
  --font-body:'Outfit', sans-serif;
}
.type-nashville {
  --font-display:'Playfair Display', Georgia, serif;
  --font-deco:'Yellowtail', cursive;
  --font-body:'Outfit', sans-serif;
}
.type-showbiz {
  --font-display:'Abril Fatface', Georgia, serif;
  --font-deco:'Caveat', cursive;
  --font-body:'DM Sans', sans-serif;
}
.type-boutique {
  --font-display:'Boldonse', Georgia, serif;
  --font-deco:'Pinyon Script', cursive;
  --font-body:'Fraunces', Georgia, serif;
}

/* ── Reset / base ───────────────────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.55;
  overflow-x: hidden;
  text-wrap: pretty;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; margin: 0; line-height: 1.05; }
.type-nashville h1, .type-nashville h2, .type-nashville h3 { font-weight: 900; }
.type-boutique h1, .type-boutique h2, .type-boutique h3 { font-weight: 700; }

.deco { font-family: var(--font-deco); font-weight: 400; }

/* ── Layout ─────────────────────────────────────────────────────────────── */

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}

section { position: relative; }

/* ── Marquee ────────────────────────────────────────────────────────────── */

.marquee {
  background: var(--ink);
  color: var(--bg);
  overflow: hidden;
  border-bottom: 2px solid var(--hot);
  position: relative;
  z-index: 50;
}
.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  padding: 10px 0;
  animation: marquee 38s linear infinite;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: .04em;
}
.palette-disco .marquee-track { color: var(--peach); }
.marquee-item { display: inline-flex; align-items: center; gap: 16px; }
.marquee-item .dot { color: var(--hot); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Nav ────────────────────────────────────────────────────────────────── */

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  border-bottom: 1px dashed color-mix(in oklab, var(--plum) 35%, transparent);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 32px;
  max-width: var(--maxw); margin: 0 auto;
}
.brand {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: .02em;
  color: var(--hot);
  display: flex; align-items: center; gap: 10px;
}
.brand .dot { color: var(--plum); }
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  text-decoration: none; font-weight: 500; font-size: 15px;
  letter-spacing: .04em; text-transform: uppercase;
  color: var(--plum); position: relative;
}
.nav-links a:hover { color: var(--hot); }
.nav-links a:hover::after {
  content: '✦'; position: absolute; right: -14px; top: -6px;
  font-size: 10px; color: var(--gold);
}
.nav-cta {
  background: var(--hot); color: var(--paper);
  padding: 9px 18px; border-radius: 999px;
  text-decoration: none; font-weight: 600; font-size: 14px;
  letter-spacing: .04em; text-transform: uppercase;
  box-shadow: 3px 3px 0 var(--plum);
}

/* ── Hero — common ─────────────────────────────────────────────────────── */

.hero {
  position: relative;
  padding: 56px 0 80px;
  overflow: hidden;
}
.hero-eyebrow {
  font-family: var(--font-deco);
  color: var(--hot);
  font-size: 38px;
  line-height: 1;
  transform: rotate(-3deg);
  display: inline-block;
}
.hero h1 {
  font-size: clamp(56px, 9vw, 132px);
  letter-spacing: -.01em;
  color: var(--plum-deep);
}
.palette-disco .hero h1 { color: var(--peach); }
.hero h1 .em { color: var(--hot); font-style: italic; }
.hero-sub {
  font-size: 19px;
  max-width: 48ch;
  color: var(--plum);
  margin-top: 18px;
}
.palette-disco .hero-sub { color: var(--coral); }

.hero-cta-row { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px;
  text-decoration: none; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase;
  font-size: 14px; border: 0; cursor: pointer;
}
.btn-primary { background: var(--hot); color: var(--paper); box-shadow: 4px 4px 0 var(--plum); }
.btn-primary:hover { transform: translate(-1px, -1px); box-shadow: 5px 5px 0 var(--plum); }
.btn-ghost { background: transparent; color: var(--plum); border: 2px solid var(--plum); }
.palette-disco .btn-ghost { color: var(--peach); border-color: var(--peach); }

/* Hero variant 1 — Storefront */
.hero-v1 .hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
  align-items: center;
}
.hero-v1 .shop-frame {
  position: relative;
}
.hero-v1 .shop-frame .shop-frame-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 28px;
  overflow: hidden;
  border: 3px solid var(--plum-deep);
  background: var(--bg-2);
  box-shadow: var(--shadow-soft);
}
.hero-v1 .shop-frame .shop-frame-inner image-slot {
  position: absolute; inset: 0; width: 100%; height: 100%;
}

/* "EST. 2023" sticker — hangs off the top-right of the hero photo */
.est-badge {
  position: absolute;
  top: -22px; right: -22px;
  z-index: 3;
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--plum-deep);
  border: 4px solid var(--plum-deep);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; text-align: center;
  transform: rotate(10deg);
  font-family: var(--font-display);
  line-height: 1;
  box-shadow: 3px 3px 0 var(--plum-deep);
}
.est-badge .small { font-size: 11px; letter-spacing: .12em; }
.est-badge .big { font-size: 26px; margin-top: 2px; }

/* "old town clovis" chip — hangs off the bottom-left of the hero photo */
.oldtown-chip {
  position: absolute;
  bottom: -20px; left: 22px;
  z-index: 3;
  background: var(--paper);
  border: 3px solid var(--plum-deep);
  padding: 8px 22px;
  border-radius: 999px;
  font-family: var(--font-deco);
  color: var(--hot);
  font-size: 24px;
  transform: rotate(-3deg);
  box-shadow: 3px 3px 0 var(--coral);
  white-space: nowrap;
}

/* Hero variant 2 — Editorial split */
.hero-v2 .hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: stretch;
}
.hero-v2 .right-stack {
  display: grid; grid-template-rows: 1fr 1fr; gap: 16px;
}
.hero-v2 .shop-frame, .hero-v2 .product-frame {
  border-radius: var(--radius); overflow: hidden;
  border: 3px solid var(--plum-deep); position: relative;
  background: var(--bg-2);
}
.hero-v2 .shop-frame { aspect-ratio: 4/5; }
.hero-v2 .left { display: flex; flex-direction: column; justify-content: center; }

/* Hero variant 3 — Sticker stage */
.hero-v3 { padding-top: 40px; padding-bottom: 100px; }
.hero-v3 .center { text-align: center; }
.hero-v3 h1 { font-size: clamp(64px, 11vw, 168px); }
.hero-v3 .sticker-stage {
  position: relative; height: 320px; margin-top: 24px;
}
.hero-v3 .sticker-card {
  position: absolute; border-radius: 14px;
  border: 3px solid var(--plum-deep);
  background: var(--paper);
  box-shadow: 5px 5px 0 var(--plum-deep);
  overflow: hidden;
}

/* Hero variant 4 — Neon sign */
.hero-v4 {
  background:
    radial-gradient(ellipse at top, color-mix(in oklab, var(--coral) 25%, transparent), transparent 60%),
    var(--bg);
  text-align: center;
  padding-bottom: 100px;
}
.hero-v4 .sign {
  display: inline-block;
  border: 6px double var(--plum-deep);
  border-radius: 32px;
  padding: 38px 60px 32px;
  background: var(--paper);
  position: relative;
  box-shadow: var(--shadow-soft);
  margin-top: 14px;
}
.hero-v4 .sign h1 {
  font-size: clamp(56px, 8vw, 116px);
  text-shadow:
    2px 2px 0 var(--hot),
    4px 4px 0 var(--peach);
}
.hero-v4 .bulbs {
  position: absolute; inset: -16px; pointer-events: none;
}
.hero-v4 .bulbs .b {
  position: absolute; width: 14px; height: 14px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 14px var(--gold), 0 0 24px var(--peach);
  animation: blink 1.2s ease-in-out infinite alternate;
}
@keyframes blink { from {opacity:.5;} to {opacity:1;} }

/* ── Section header treatment ──────────────────────────────────────────── */

.section-head {
  text-align: center;
  margin: 0 auto 48px;
  max-width: 640px;
}
.section-eyebrow {
  font-family: var(--font-deco);
  color: var(--hot);
  font-size: 36px; line-height: 1;
  transform: rotate(-2deg);
  display: inline-block;
  margin-bottom: 8px;
}
.section-head h2 {
  font-size: clamp(40px, 6vw, 76px);
  color: var(--plum-deep);
  letter-spacing: -.01em;
}
.palette-disco .section-head h2 { color: var(--peach); }
.section-head p {
  font-size: 18px;
  color: var(--plum);
  margin: 16px auto 0;
  max-width: 52ch;
}
.palette-disco .section-head p { color: var(--coral); }

/* ── About ──────────────────────────────────────────────────────────────── */

#about {
  padding: 96px 0 80px;
  background:
    radial-gradient(circle at 15% 80%, color-mix(in oklab, var(--peach) 30%, transparent), transparent 40%),
    radial-gradient(circle at 90% 20%, color-mix(in oklab, var(--coral) 30%, transparent), transparent 40%),
    var(--bg);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-grid > .about-text  { order: 1; }
.about-grid > .about-photo { order: 2; }
.about-grid > .about-photo .photo-inner { transform: rotate(2deg); }
.about-photo {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}
.about-photo .photo-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 3/5;
  border-radius: var(--radius);
  border: 3px solid var(--plum-deep);
  overflow: hidden;
  background: var(--bg-2);
  box-shadow: var(--shadow-pop);
}
.about-photo .photo-inner image-slot { position: absolute; inset: 0; }

/* "Best of Central California 2025" sticker overlay — sits outside the photo */
.bestof-badge {
  position: absolute;
  top: -28px; left: -28px;
  z-index: 4;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: var(--gold);
  border: 4px solid var(--plum-deep);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  transform: rotate(-12deg);
  box-shadow: 4px 4px 0 var(--plum-deep);
  font-family: var(--font-display);
  color: var(--plum-deep);
  line-height: 1.05;
  padding: 8px;
}
.bestof-badge .small {
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 700;
}
.bestof-badge .big { font-size: 19px; margin: 4px 0; }
.bestof-badge .yr { font-size: 26px; color: var(--hot); }

/* "hi, sugar!" chip — also sits outside, bottom-right */
.hi-sugar-chip {
  position: absolute;
  bottom: -18px; right: -22px;
  z-index: 4;
  background: var(--gold);
  border: 3px solid var(--plum-deep);
  padding: 10px 20px;
  border-radius: 999px;
  font-family: var(--font-display);
  color: var(--plum-deep);
  font-size: 18px;
  transform: rotate(8deg);
  box-shadow: 3px 3px 0 var(--plum-deep);
  white-space: nowrap;
}
.about-text h2 { font-size: clamp(40px, 5.5vw, 72px); color: var(--plum-deep); }
.palette-disco .about-text h2 { color: var(--peach); }
.about-text .lead {
  font-size: 22px; line-height: 1.45; color: var(--plum);
  font-family: var(--font-body);
  margin: 20px 0 14px;
  font-weight: 500;
}
.palette-disco .about-text .lead { color: var(--coral); }
.about-text p { font-size: 17px; color: color-mix(in oklab, var(--ink) 80%, var(--plum)); }
.about-pulls {
  display: flex; gap: 16px; flex-wrap: wrap; margin-top: 28px;
}
.pull-chip {
  padding: 10px 16px; border-radius: 999px;
  background: var(--paper);
  border: 2px solid var(--plum-deep);
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--plum-deep);
  box-shadow: 3px 3px 0 var(--coral);
}

/* ── Products ───────────────────────────────────────────────────────────── */

#products {
  padding: 96px 0 100px;
  background: var(--bg-2);
  border-top: 2px dashed color-mix(in oklab, var(--plum) 35%, transparent);
  border-bottom: 2px dashed color-mix(in oklab, var(--plum) 35%, transparent);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.product-card {
  position: relative;
  border-radius: var(--radius);
  background: var(--paper);
  border: 3px solid var(--plum-deep);
  overflow: hidden;
  box-shadow: var(--shadow-pop);
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
  cursor: pointer;
}
.product-card:hover { transform: translate(-2px, -3px) rotate(-.5deg); box-shadow: 7px 7px 0 var(--plum); }
.product-card:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.product-card .peek-hint {
  position: absolute; bottom: 14px; right: 14px;
  z-index: 3;
  background: var(--plum-deep);
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 12px;
  padding: 7px 13px;
  border-radius: 999px;
  letter-spacing: .04em;
  border: 2px solid var(--plum-deep);
  display: inline-flex; align-items: center; gap: 6px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .2s ease, transform .2s ease;
  pointer-events: none;
}
.product-card:hover .peek-hint,
.product-card:focus-visible .peek-hint { opacity: 1; transform: translateY(0); }
.product-card .ph {
  position: relative;
  aspect-ratio: 4/3;
  background:
    linear-gradient(135deg, color-mix(in oklab, var(--coral) 20%, var(--paper)) 0%,
                              color-mix(in oklab, var(--peach) 20%, var(--paper)) 100%);
  overflow: hidden;
}
.product-card .ph image-slot { position: absolute; inset: 0; }
.product-card .meta {
  padding: 18px 20px 22px;
  border-top: 3px solid var(--plum-deep);
  background: var(--paper);
}
.product-card h3 {
  font-size: 30px;
  color: var(--plum-deep);
  margin-bottom: 4px;
}
.product-card .tagline {
  font-family: var(--font-deco);
  color: var(--hot);
  font-size: 22px;
  line-height: 1; display: block;
  margin-bottom: 6px;
}
.product-card .desc { font-size: 14px; color: var(--plum); line-height: 1.45; }
.product-card .price {
  display: inline-block;
  margin-top: 12px;
  padding: 5px 12px;
  background: var(--hot);
  color: var(--paper);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 600;
}
.product-card .badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--gold); color: var(--plum-deep);
  font-family: var(--font-display);
  font-size: 14px; line-height: 1;
  padding: 8px 12px;
  border-radius: 999px;
  border: 2px solid var(--plum-deep);
  transform: rotate(8deg);
  z-index: 2;
}
.product-card.feature  { grid-column: span 6; }
.product-card.feature .ph { aspect-ratio: 16/11; }
.product-card.feature h3 { font-size: 40px; }
.product-card.std      { grid-column: span 6; }
.product-card.std .ph  { aspect-ratio: 4/3; }
.product-card.feature2 { grid-column: span 6; }
.product-card.std2     { grid-column: span 6; }

@media (min-width: 1100px) {
  .product-card.feature { grid-column: span 7; }
  .product-card.std { grid-column: span 5; }
  .product-card.feature2 { grid-column: span 5; }
  .product-card.std2 { grid-column: span 7; }
}

/* ── Press / testimonials ──────────────────────────────────────────────── */

#press {
  padding: 96px 0 100px;
  background: var(--bg);
}
.press-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 44px 22px;
  padding-top: 18px;
}
.press-card {
  background: var(--paper);
  border: 3px solid var(--plum-deep);
  border-radius: var(--radius);
  padding: 28px 26px;
  position: relative;
  box-shadow: var(--shadow-pop);
}
.press-card .quote-mark {
  position: absolute; top: -34px; left: 18px;
  font-family: var(--font-display);
  font-size: 96px; line-height: 1;
  color: var(--hot);
  background: transparent;
  padding: 0;
  pointer-events: none;
  text-shadow: 2px 2px 0 var(--plum-deep);
}
.press-card blockquote {
  margin: 14px 0 0;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.25;
  color: var(--plum-deep);
}
.press-card .src {
  margin-top: 18px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--hot);
  font-weight: 600;
}
.press-card.lg blockquote { font-size: 26px; }

.reviews-row {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review {
  display: flex; gap: 14px;
  padding: 18px;
  background: var(--paper);
  border: 2px solid var(--plum-deep);
  border-radius: 14px;
}
.review .avatar {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--paper);
  border: 2px solid var(--plum-deep);
}
.review p { margin: 0; font-size: 15px; color: var(--plum-deep); }
.review .stars { color: var(--gold); letter-spacing: 1px; font-size: 13px; margin-top: 4px; }

/* ── Events ─────────────────────────────────────────────────────────────── */

#events {
  padding: 96px 0 100px;
  background: var(--bg-3);
  background-image:
    radial-gradient(circle, color-mix(in oklab, var(--plum) 18%, transparent) 1px, transparent 1.5px);
  background-size: 28px 28px;
}
.palette-disco #events { background-image: radial-gradient(circle, color-mix(in oklab, var(--gold) 30%, transparent) 1px, transparent 1.5px); background-color: var(--bg-3); }
.events-list {
  display: flex; flex-direction: column; gap: 14px;
  max-width: 920px; margin: 0 auto;
}
.event {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 22px 28px;
  background: var(--paper);
  border: 3px solid var(--plum-deep);
  border-radius: var(--radius);
  box-shadow: 4px 4px 0 var(--plum-deep);
}
.event .date {
  text-align: center;
  font-family: var(--font-display);
  color: var(--hot);
  line-height: 1;
}
.event .date .m { font-size: 18px; letter-spacing: .08em; text-transform: uppercase; }
.event .date .d { font-size: 56px; color: var(--plum-deep); display: block; }
.event h3 { font-size: 26px; color: var(--plum-deep); margin-bottom: 4px; }
.event .when { font-size: 15px; color: var(--plum); font-weight: 500; }
.event .desc { font-size: 14px; color: color-mix(in oklab, var(--ink) 75%, var(--plum)); margin-top: 4px; }
.event .tag {
  font-family: var(--font-display);
  background: var(--gold);
  color: var(--plum-deep);
  border: 2px solid var(--plum-deep);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
}

/* ── Visit / Hours ──────────────────────────────────────────────────────── */

#visit {
  padding: 96px 0 100px;
  background: var(--bg);
}
.visit-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
}
.visit-card {
  background: var(--paper);
  border: 3px solid var(--plum-deep);
  border-radius: var(--radius);
  padding: 36px 38px;
  box-shadow: var(--shadow-pop);
}
.visit-card h3 {
  font-size: 32px;
  color: var(--plum-deep);
  margin-bottom: 16px;
}
.visit-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 8px 14px;
  padding: 8px 0;
  border-bottom: 1px dashed color-mix(in oklab, var(--plum) 30%, transparent);
  align-items: baseline;
}
.visit-row:last-child { border-bottom: none; }
.visit-row .day {
  font-family: var(--font-display);
  color: var(--hot);
  font-size: 18px;
}
.visit-row .hrs { font-size: 18px; color: var(--plum-deep); font-weight: 500; }
.visit-row.closed .hrs { color: color-mix(in oklab, var(--plum) 60%, var(--bg)); font-style: italic; }
.visit-row.today {
  background: color-mix(in oklab, var(--gold) 40%, transparent);
  margin: 0 -16px;
  padding: 8px 16px;
  border-radius: 10px;
  border-bottom: 1px dashed color-mix(in oklab, var(--plum) 30%, transparent);
}

.open-indicator {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: .04em;
  border: 2px solid var(--plum-deep);
  background: var(--paper);
  margin-bottom: 14px;
}
.open-indicator.open { background: var(--gold); color: var(--plum-deep); }
.open-indicator .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #2A8C4A;
}
.open-indicator.closed .dot { background: var(--hot); }

.find-info { display: flex; flex-direction: column; gap: 18px; }
.find-info .row {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 18px;
  background: var(--paper);
  border: 2px solid var(--plum-deep);
  border-radius: 14px;
}
.find-info .ico {
  width: 36px; height: 36px;
  border-radius: 50%; background: var(--hot); color: var(--paper);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.find-info .label {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--hot);
  text-transform: uppercase;
  letter-spacing: .1em;
}
.find-info .val { font-size: 18px; color: var(--plum-deep); font-weight: 500; }
.find-info a { color: var(--plum-deep); text-decoration: none; }
.find-info a:hover { color: var(--hot); }

/* ── Footer ─────────────────────────────────────────────────────────────── */

footer.site-footer {
  background: var(--plum-deep);
  color: var(--bg);
  padding: 60px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.palette-disco footer.site-footer { background: #0E0418; }
.site-footer h2 {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 110px);
  color: var(--bg);
  line-height: .95;
}
.site-footer .tagline {
  font-family: var(--font-deco);
  color: var(--peach);
  font-size: 32px;
  margin-top: 8px;
  transform: rotate(-2deg);
  display: inline-block;
}
.site-footer .ig {
  display: inline-flex;
  align-items: center; gap: 10px;
  background: var(--hot); color: var(--paper);
  padding: 14px 26px; border-radius: 999px;
  text-decoration: none;
  font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase;
  margin-top: 26px;
  box-shadow: 4px 4px 0 var(--peach);
}
.site-footer .small {
  margin-top: 36px;
  font-size: 13px; opacity: .7;
}

/* ── Decorative SVG layer (sparkles + butterflies) ─────────────────────── */
.deco-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.deco-item {
  position: absolute;
  animation: float 6s ease-in-out infinite;
}
.deco-item.spin { animation: spin 18s linear infinite; }
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
  50%      { transform: translateY(-12px) rotate(calc(var(--r, 0deg) + 8deg)); }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes flutter {
  0%, 100% { transform: translate(0, 0) rotate(-4deg); }
  25%      { transform: translate(8px, -6px) rotate(6deg); }
  50%      { transform: translate(14px, 4px) rotate(-4deg); }
  75%      { transform: translate(4px, 10px) rotate(8deg); }
}
.butterfly { animation: flutter 5s ease-in-out infinite; }

/* ── image-slot defaults to match palette ──────────────────────────────── */
image-slot {
  --is-placeholder-bg: var(--bg-2);
  --is-placeholder-fg: var(--plum);
  width: 100%; height: 100%;
}

/* ── Mobile ─────────────────────────────────────────────────────────────── */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .hero-v1 .hero-grid,
  .hero-v2 .hero-grid,
  .about-grid,
  .visit-grid { grid-template-columns: 1fr; }
  .product-card.feature, .product-card.std,
  .product-card.feature2, .product-card.std2 { grid-column: span 12; }
  .press-grid { grid-template-columns: 1fr; }
  .reviews-row { grid-template-columns: 1fr; }
  .event { grid-template-columns: 80px 1fr; }
  .event .tag { grid-column: 2; justify-self: start; }
  .wrap { padding: 0 20px; }
}


/* ── Product lightbox (Instagram peek) ─────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0;
  background: color-mix(in oklab, var(--plum-deep) 78%, transparent);
  backdrop-filter: blur(8px) saturate(140%);
  -webkit-backdrop-filter: blur(8px) saturate(140%);
  z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 40px 24px;
  overflow-y: auto;
  animation: lb-fade .25s ease-out;
}
@keyframes lb-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.lightbox-card {
  background: var(--paper);
  border: 3px solid var(--plum-deep);
  border-radius: var(--radius);
  width: min(880px, 100%);
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
  padding: 28px 32px 32px;
  position: relative;
  animation: lb-pop .35s cubic-bezier(.16, 1.1, .3, 1);
}
@keyframes lb-pop {
  from { opacity: 0; transform: scale(.94) translateY(12px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.lightbox-card .close {
  position: absolute;
  top: 14px; right: 14px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--hot);
  color: var(--paper);
  border: 2px solid var(--plum-deep);
  font-size: 18px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 2px 2px 0 var(--plum-deep);
  transition: transform .15s ease;
}
.lightbox-card .close:hover { transform: rotate(90deg) scale(1.05); }

.lightbox-card .lb-head {
  display: flex; align-items: baseline; gap: 18px;
  padding-right: 50px;
  margin-bottom: 6px;
}
.lightbox-card .lb-head .eyebrow {
  font-family: var(--font-deco);
  color: var(--hot);
  font-size: 26px;
  transform: rotate(-2deg);
  display: inline-block;
}
.lightbox-card .lb-head h3 {
  font-family: var(--font-display);
  font-size: 38px;
  color: var(--plum-deep);
  margin: 0;
}
.lightbox-card .lb-desc {
  margin: 8px 0 16px;
  font-size: 15px;
  color: var(--plum);
  max-width: 60ch;
}
.ig-meta {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
  padding: 10px 14px;
  background: var(--bg-2);
  border-radius: 999px;
  font-size: 13px;
  color: var(--plum-deep);
  width: fit-content;
}
.ig-meta .dot {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
  display: flex; align-items: center; justify-content: center;
  color: var(--paper);
  font-size: 16px;
  font-weight: 700;
}
.ig-meta b { font-family: var(--font-display); font-weight: 400; font-size: 15px; }
.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}
.ig-tile {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid var(--plum-deep);
  background: var(--bg-2);
  transition: transform .2s ease;
}
.ig-tile:hover { transform: scale(1.02); }
.ig-tile image-slot { position: absolute; inset: 0; }
.lb-cta-row {
  display: flex; gap: 12px; align-items: center; flex-wrap: wrap;
}
.lb-note {
  font-family: var(--font-deco);
  color: var(--hot);
  font-size: 22px;
  transform: rotate(-2deg);
  display: inline-block;
}
@media (max-width: 600px) {
  .ig-grid { grid-template-columns: repeat(2, 1fr); }
  .lightbox-card { padding: 22px 18px 24px; }
  .lightbox-card .lb-head h3 { font-size: 28px; }
  .lightbox-card .lb-head { flex-direction: column; gap: 4px; }
}
