/* ================================================
   FLOW MIAMI BARBER SHOP — style.css
   Dark Purple / Neon theme
   ================================================ */

/* ── Tokens ── */
:root {
  --bg:      #06040C;
  --bg-2:    #0B0815;
  --bg-3:    #110D1E;
  --bg-card: #0E0A1A;

  --purple:      #9B3FD9;
  --purple-dim:  #7A2FB8;
  --purple-glow: rgba(155, 63, 217, 0.15);
  --pink:        #C03098;

  --gold: #C4A05C;

  --ink:   #F0EAF8;
  --ink-2: #9A85B8;
  --ink-3: #4A3870;

  --font-d:  'Cormorant Garamond', Georgia, serif;
  --font-b:  'DM Sans', system-ui, sans-serif;
  --font-ui: 'JetBrains Mono', monospace;

  --nav-h:  68px;
  --ease:   cubic-bezier(0.4, 0, 0.2, 1);
  --ease-o: cubic-bezier(0.0, 0, 0.2, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-b);
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Grain ── */
#grain {
  position: fixed; inset: 0; z-index: 9999;
  pointer-events: none; opacity: 0.028;
  mix-blend-mode: overlay;
}

/* ── Custom cursor ── */
#cursor {
  position: fixed; z-index: 9998; pointer-events: none;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid var(--purple);
  transform: translate(-50%, -50%);
  transition: transform 0.15s var(--ease), border-color 0.2s;
  opacity: 0;
}
#cursor.hovered { transform: translate(-50%,-50%) scale(1.7); border-color: var(--pink); }

/* ── Label ── */
.label {
  font-family: var(--font-ui);
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--purple);
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.4em;
  padding: 0.7em 1.6em; border-radius: 2px;
  font-family: var(--font-b); font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.04em; transition: opacity 0.2s, transform 0.2s;
  white-space: nowrap;
}
.btn:hover { opacity: 0.88; transform: translateY(-1px); }
.btn--primary { background: var(--purple); color: #fff; }
.btn--ghost {
  background: transparent; color: var(--ink);
  border: 1px solid rgba(155,63,217,0.4);
}
.btn--ghost:hover { border-color: var(--purple); }
.btn--nav { padding: 0.55em 1.3em; }

/* ── Section title ── */
.section-title {
  font-family: var(--font-d); font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 300; line-height: 1.1; letter-spacing: -0.01em;
  color: var(--ink);
}
.section-title em { font-style: italic; color: var(--purple); }

/* ── Reveal animations ── */
.reveal-up { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); transition-delay: var(--delay, 0ms); }
.reveal-fade { opacity: 0; transition: opacity 0.7s var(--ease); transition-delay: var(--delay, 0ms); }
.reveal-up.visible, .reveal-fade.visible { opacity: 1; transform: none; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: var(--nav-h);
  transition: background 0.3s, transform 0.3s;
}
.nav.scrolled { background: rgba(6,4,12,0.92); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid rgba(155,63,217,0.12); }
.nav.hidden { transform: translateY(-100%); }
.nav__inner {
  max-width: 1280px; margin: 0 auto; height: 100%;
  padding: 0 clamp(1.2rem, 4vw, 3rem);
  display: flex; align-items: center; gap: 2rem;
}
.nav__logo { display: flex; flex-direction: column; gap: 1px; }
.nav__logo-name { font-family: var(--font-d); font-size: 1.05rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.nav__logo-sub { font-family: var(--font-ui); font-size: 0.58rem; letter-spacing: 0.18em; color: var(--ink-2); text-transform: uppercase; }
.nav__links { display: none; margin-left: auto; gap: 2rem; }
@media (min-width: 900px) { .nav__links { display: flex; } }
.nav__link { font-size: 0.8rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-2); transition: color 0.2s; }
.nav__link:hover { color: var(--ink); }
.nav__burger { display: flex; flex-direction: column; gap: 5px; margin-left: auto; padding: 6px; }
@media (min-width: 900px) { .nav__burger { display: none; } }
.nav__burger span { display: block; width: 22px; height: 1.5px; background: var(--ink); transition: transform 0.3s, opacity 0.3s; }
.nav__overlay {
  position: fixed; inset: 0; z-index: 800;
  background: var(--bg); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1.6rem;
  transform: translateX(100%); transition: transform 0.4s var(--ease-o);
}
.nav__overlay.open { transform: none; }
.nav__overlay .nav__link { font-size: 1.1rem; }
@media (min-width: 900px) { .nav__overlay { display: none; } }

/* ── HERO ── */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
}
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,4,12,0.35) 0%, rgba(6,4,12,0.55) 40%, rgba(6,4,12,0.85) 75%, rgba(6,4,12,0.97) 100%);
}
.hero__overlay-bottom {
  position: absolute; bottom: 0; left: 0; right: 0; height: 220px;
  background: linear-gradient(to top, var(--bg), transparent);
}
.hero__layout {
  position: relative; z-index: 2;
  width: 100%; max-width: 1280px; margin: 0 auto;
  padding: calc(var(--nav-h) + 2rem) clamp(1.2rem,4vw,3rem) clamp(3rem,7vw,5rem);
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 0.6em;
  font-family: var(--font-ui); font-size: 0.68rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-2);
  margin-bottom: 1.5rem;
}
.hero__badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--purple); animation: pulse 2s infinite; flex-shrink: 0; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.4)} }
.hero__title {
  font-family: var(--font-d);
  font-size: clamp(3rem, 9vw, 7.5rem);
  font-weight: 200; line-height: 1.0; letter-spacing: -0.02em;
  color: var(--ink); margin-bottom: 1.6rem; overflow: hidden;
}
.hero__title em { font-style: italic; color: var(--purple); }
.hero__title-line { display: block; overflow: hidden; }
.hero__title-inner { display: block; transform: translateY(110%); transition: transform 0.85s var(--ease-o); }
.hero__title-line .hero__title-inner.visible { transform: none; }
.hero__sub { font-size: clamp(1rem, 2vw, 1.15rem); color: var(--ink-2); line-height: 1.6; max-width: 500px; margin-bottom: 2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-bottom: 2.5rem; }
.hero__trust {
  display: flex; flex-wrap: wrap; gap: 1.2rem;
  font-size: 0.82rem; color: var(--ink-2);
}
.hero__trust-icon { color: var(--purple); margin-right: 0.25em; }
.hero__scroll {
  position: absolute; right: clamp(1.2rem,4vw,3rem); bottom: clamp(2rem,5vw,3.5rem);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  font-family: var(--font-ui); font-size: 0.58rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink-3);
}
.hero__scroll-track { width: 1px; height: 48px; background: var(--ink-3); overflow: hidden; }
.hero__scroll-thumb { width: 100%; height: 50%; background: var(--purple); animation: scrollThumb 2s ease-in-out infinite; }
@keyframes scrollThumb { 0%{transform:translateY(-100%)} 100%{transform:translateY(200%)} }

/* ── TICKER ── */
.ticker { background: var(--purple); overflow: hidden; padding: 0.6rem 0; }
.ticker__track {
  display: flex; width: max-content;
  animation: ticker 28s linear infinite;
}
.ticker__item {
  flex-shrink: 0; padding: 0 2rem;
  font-family: var(--font-ui); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: #fff;
  white-space: nowrap;
}
.ticker__item::after { content: '✦'; margin-left: 2rem; opacity: 0.6; }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── HOW ── */
.how { background: var(--bg-2); padding-block: clamp(5rem,10vw,9rem); }
.how__inner { max-width: 1280px; margin: 0 auto; padding-inline: clamp(1.2rem,4vw,3rem); }
.how__header { margin-bottom: 3.5rem; }
.how__header .section-title { margin-top: 0.5rem; }
.how__steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 2.5rem; margin-bottom: 4rem; }
.how__step { border-top: 1px solid var(--purple-glow); padding-top: 1.5rem; }
.how__num { font-family: var(--font-ui); font-size: 0.7rem; color: var(--purple); letter-spacing: 0.1em; margin-bottom: 1rem; }
.how__step-title { font-family: var(--font-d); font-size: 1.35rem; font-weight: 400; margin-bottom: 0.6rem; }
.how__step-desc { font-size: 0.9rem; color: var(--ink-2); line-height: 1.65; }
.stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: rgba(155,63,217,0.12); border: 1px solid rgba(155,63,217,0.12); }
@media (min-width: 600px) { .stats { grid-template-columns: repeat(4,1fr); } }
.stat { background: var(--bg-2); padding: 2rem 1.5rem; text-align: center; }
.stat__num { font-family: var(--font-d); font-size: clamp(2rem,5vw,3rem); font-weight: 200; line-height: 1; }
.stat__label { font-family: var(--font-ui); font-size: 0.65rem; color: var(--ink-2); letter-spacing: 0.12em; text-transform: uppercase; margin-top: 0.5rem; }

/* ── SERVICES ── */
.services { background: var(--bg); padding-block: clamp(5rem,10vw,9rem); }
.services__inner { max-width: 1280px; margin: 0 auto; padding-inline: clamp(1.2rem,4vw,3rem); }
.services__header { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; margin-bottom: 3rem; }
.services__header .section-title { margin-top: 0.5rem; }
.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
}
@media (min-width: 600px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .services__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) {
  .services__grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 340px; }
  .services__grid .svc-card:first-child { grid-column: span 2; }
}
.svc-card {
  position: relative; overflow: hidden;
  background: var(--bg-card); aspect-ratio: 4/3; cursor: pointer;
}
@media (min-width: 600px) { .svc-card { aspect-ratio: 3/4; } }
@media (min-width: 1024px) { .svc-card { aspect-ratio: unset; } }
.svc-card__img { position: absolute; inset: 0; }
.svc-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.svc-card:hover .svc-card__img img { transform: scale(1.07); }
.svc-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,4,12,0.1) 0%, rgba(6,4,12,0.55) 45%, rgba(6,4,12,0.97) 100%);
}
.svc-card__body { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 1.4rem; }
.svc-card__price { font-family: var(--font-ui); font-size: 0.68rem; color: var(--purple); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.3rem; }
.svc-card__title { font-family: var(--font-d); font-size: 1.35rem; font-weight: 400; margin-bottom: 0.4rem; text-shadow: 0 1px 8px rgba(0,0,0,0.8); }
.svc-card__desc { font-size: 0.82rem; color: #c8bedd; line-height: 1.5; margin-bottom: 0.8rem; text-shadow: 0 1px 6px rgba(0,0,0,0.9); }
.svc-card__cta { font-size: 0.78rem; font-weight: 600; color: var(--purple); letter-spacing: 0.06em; }
.services__note { margin-top: 1.5rem; font-size: 0.8rem; color: var(--ink-3); }

/* CTA initials badge */
.btn--primary::before {
  content: 'FM';
  font-family: var(--font-ui); font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.06em; opacity: 0.7; margin-right: 0.2em;
}

/* ── GALLERY ── */
.gallery { background: var(--bg-2); padding-block: clamp(5rem, 10vw, 9rem); }
.gallery__inner { max-width: 1280px; margin: 0 auto; padding-inline: clamp(1.2rem,4vw,3rem); }
.gallery__header { margin-bottom: 2.5rem; }
.gallery__filters {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem;
}
.gallery__filter {
  font-family: var(--font-ui); font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.5em 1.2em; border: 1px solid rgba(155,63,217,0.3);
  color: var(--ink-2); transition: all 0.2s; border-radius: 2px;
}
.gallery__filter.active, .gallery__filter:hover {
  background: var(--purple); color: #fff; border-color: var(--purple);
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px; gap: 4px;
}
.gallery__item {
  overflow: hidden; background: var(--bg-card); cursor: pointer;
  transition: opacity 0.3s;
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
@media (hover: hover) { .gallery__item:hover img { transform: scale(1.06); } }
.gallery__item--wide { grid-column: span 2; }
.gallery__item[data-filter] { opacity: 1; }

/* Before/After */
.ba { margin-top: 3rem; }
.ba__header { margin-bottom: 1.5rem; }
.ba__title { font-family: var(--font-d); font-size: 1.6rem; font-weight: 300; }
.ba__sub { font-size: 0.82rem; color: var(--ink-2); margin-top: 0.3rem; }
.ba__container {
  position: relative; overflow: hidden; border-radius: 2px;
  aspect-ratio: 16/7; user-select: none; cursor: ew-resize;
}
.ba__img { position: absolute; inset: 0; }
.ba__img img { width: 100%; height: 100%; object-fit: cover; }
.ba__img--after { clip-path: inset(0 50% 0 0); }
.ba__handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 2px; background: var(--purple); transform: translateX(-50%);
  cursor: ew-resize;
}
.ba__handle::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--purple); border: 2px solid #fff;
}
.ba__label {
  position: absolute; bottom: 1rem;
  font-family: var(--font-ui); font-size: 0.6rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  background: rgba(6,4,12,0.75); padding: 0.3em 0.8em; border-radius: 2px;
}
.ba__label--before { left: 1rem; }
.ba__label--after { right: 1rem; }

/* ── TEAM ── */
.team { background: var(--bg); padding-block: clamp(5rem,10vw,9rem); }
.team__inner { max-width: 1280px; margin: 0 auto; padding-inline: clamp(1.2rem,4vw,3rem); }
.team__header { margin-bottom: 3rem; }
.team__header .section-title { margin-top: 0.5rem; }
.team__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 4px; }
.team-card { background: var(--bg-card); overflow: hidden; }
.team-card__photo { aspect-ratio: 4/5; overflow: hidden; }
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.team-card:hover .team-card__photo img { transform: scale(1.04); }
.team-card__body { padding: 1.4rem; border-top: 1px solid rgba(155,63,217,0.15); }
.team-card__name { font-family: var(--font-d); font-size: 1.25rem; font-weight: 400; }
.team-card__role { font-family: var(--font-ui); font-size: 0.65rem; color: var(--purple); letter-spacing: 0.12em; text-transform: uppercase; margin: 0.3rem 0 0.7rem; }
.team-card__bio { font-size: 0.85rem; color: var(--ink-2); line-height: 1.6; }

/* ── PRICING ── */
.pricing { background: var(--bg-2); padding-block: clamp(5rem,10vw,9rem); }
.pricing__inner { max-width: 1280px; margin: 0 auto; padding-inline: clamp(1.2rem,4vw,3rem); }
.pricing__header { margin-bottom: 3rem; }
.pricing__header .section-title { margin-top: 0.5rem; }
.pricing__grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 4px; }
.price-card { background: var(--bg-card); padding: 2.5rem; position: relative; }
.price-card--featured { border-top: 2px solid var(--purple); }
.price-card__badge {
  display: inline-block; margin-bottom: 1rem;
  font-family: var(--font-ui); font-size: 0.6rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--purple);
  border: 1px solid var(--purple); padding: 0.25em 0.8em; border-radius: 2px;
}
.price-card__name { font-family: var(--font-d); font-size: 1.5rem; font-weight: 300; margin-bottom: 0.5rem; }
.price-card__desc { font-size: 0.85rem; color: var(--ink-2); margin-bottom: 1.5rem; line-height: 1.55; }
.price-list { list-style: none; }
.price-item {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 0.8rem 0; border-bottom: 1px solid rgba(155,63,217,0.1);
  gap: 1rem;
}
.price-item:last-child { border-bottom: none; }
.price-item__name { font-size: 0.9rem; color: var(--ink-2); }
.price-item__price { font-family: var(--font-ui); font-size: 0.82rem; color: var(--ink); white-space: nowrap; }
.pricing__note { margin-top: 1.5rem; font-size: 0.8rem; color: var(--ink-3); }

/* ── REVIEWS ── */
.reviews { background: var(--bg); padding-block: clamp(5rem,10vw,9rem); }
.reviews__inner { max-width: 1280px; margin: 0 auto; padding-inline: clamp(1.2rem,4vw,3rem); }
.reviews__header { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; margin-bottom: 3rem; }
.reviews__header .section-title { margin-top: 0.5rem; }
.reviews__rating { display: flex; align-items: center; gap: 0.8rem; font-family: var(--font-d); font-size: 2.5rem; font-weight: 200; }
.reviews__stars { color: var(--purple); font-size: 0.9rem; letter-spacing: 0.05em; }
.reviews__count { font-family: var(--font-ui); font-size: 0.65rem; color: var(--ink-2); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 0.2rem; }
.reviews__grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 4px; }
.review-card { background: var(--bg-card); padding: 2rem; }
.review-card__stars { color: var(--purple); font-size: 0.9rem; letter-spacing: 0.08em; margin-bottom: 1rem; }
.review-card__text { font-family: var(--font-d); font-size: 1.05rem; font-weight: 300; line-height: 1.65; color: var(--ink); margin-bottom: 1.2rem; }
.review-card__author { font-weight: 600; font-size: 0.88rem; }
.review-card__source { font-family: var(--font-ui); font-size: 0.62rem; color: var(--ink-3); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 0.2rem; }

/* ── FAQ ── */
.faq { background: var(--bg-2); padding-block: clamp(5rem,10vw,9rem); }
.faq__inner { max-width: 780px; margin: 0 auto; padding-inline: clamp(1.2rem,4vw,3rem); }
.faq__header { margin-bottom: 3rem; }
.faq__header .section-title { margin-top: 0.5rem; }
.faq__item { border-bottom: 1px solid rgba(155,63,217,0.15); }
.faq__q {
  width: 100%; text-align: left; padding: 1.3rem 0;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  font-size: 0.95rem; font-weight: 500; color: var(--ink);
  transition: color 0.2s;
}
.faq__q:hover { color: var(--purple); }
.faq__icon { font-size: 1.3rem; font-weight: 300; color: var(--purple); flex-shrink: 0; transition: transform 0.3s; }
.faq__item.open .faq__icon { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq__item.open .faq__a { max-height: 300px; }
.faq__a p { padding-bottom: 1.3rem; font-size: 0.9rem; color: var(--ink-2); line-height: 1.7; }

/* ── CTA ── */
.cta { background: var(--bg-3); padding-block: clamp(5rem,10vw,9rem); text-align: center; }
.cta__inner { max-width: 680px; margin: 0 auto; padding-inline: clamp(1.2rem,4vw,3rem); }
.cta__title { font-family: var(--font-d); font-size: clamp(2.2rem,6vw,4rem); font-weight: 200; line-height: 1.1; margin: 0.8rem 0 1rem; }
.cta__title em { font-style: italic; color: var(--purple); }
.cta__sub { font-size: 1rem; color: var(--ink-2); margin-bottom: 2rem; line-height: 1.6; }
.cta__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.8rem; }

/* ── LOCATION ── */
.location { background: var(--bg); padding-block: clamp(5rem,10vw,9rem); }
.location__inner { max-width: 1280px; margin: 0 auto; padding-inline: clamp(1.2rem,4vw,3rem); display: grid; gap: 4rem; }
@media (min-width: 900px) { .location__inner { grid-template-columns: 1fr 1fr; align-items: start; } }
.location__header { margin-bottom: 2.5rem; }
.location__header .section-title { margin-top: 0.5rem; }
.location__info { display: flex; flex-direction: column; gap: 1.8rem; }
.location__item { display: flex; gap: 1rem; align-items: flex-start; }
.location__item-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 0.1rem; }
.location__item-label { font-family: var(--font-ui); font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 0.3rem; }
.location__item-val { font-size: 0.95rem; line-height: 1.6; }
.location__item-val a { color: var(--purple); }
.location__hours { display: grid; grid-template-columns: max-content 1fr; gap: 0.3rem 1rem; font-size: 0.88rem; }
.location__hours-day { color: var(--ink-2); }
.location__hours-closed { color: var(--ink-3); }
.location__map iframe { width: 100%; height: 340px; border: none; border-radius: 2px; filter: grayscale(1) invert(0.9) hue-rotate(200deg); }

/* ── FOOTER ── */
footer { background: var(--bg-2); border-top: 1px solid rgba(155,63,217,0.12); padding-block: 2.5rem; }
.footer__inner { max-width: 1280px; margin: 0 auto; padding-inline: clamp(1.2rem,4vw,3rem); display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: center; justify-content: space-between; }
.footer__brand { font-family: var(--font-d); font-size: 1.1rem; font-weight: 400; }
.footer__sub { font-size: 0.8rem; color: var(--ink-2); margin-top: 0.2rem; }
.footer__links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer__link { font-size: 0.82rem; color: var(--ink-2); transition: color 0.2s; }
.footer__link:hover { color: var(--ink); }
.footer__copy { font-size: 0.75rem; color: var(--ink-3); width: 100%; }

/* ── MOBILE STICKY BAR ── */
.mobile-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 700;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; padding: 0.5rem; background: var(--bg);
  border-top: 1px solid rgba(155,63,217,0.2);
  transform: translateY(100%); transition: transform 0.35s var(--ease);
}
.mobile-bar.visible { transform: none; }
.mobile-bar .btn { justify-content: center; border-radius: 2px; width: 100%; }
@media (min-width: 900px) { .mobile-bar { display: none; } }

/* ── CHAT WIDGET ── */
.chat-btn {
  position: fixed; bottom: 1.8rem; right: 1.5rem; z-index: 600;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--purple); color: #fff; font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(155,63,217,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.chat-btn:hover { transform: scale(1.08); box-shadow: 0 6px 32px rgba(155,63,217,0.55); }
.chat-bubble {
  position: fixed; bottom: 5.5rem; right: 1.5rem; z-index: 600;
  width: min(360px, calc(100vw - 2rem));
  background: var(--bg-card); border: 1px solid rgba(155,63,217,0.25);
  border-radius: 4px; overflow: hidden;
  box-shadow: 0 8px 48px rgba(0,0,0,0.6);
  display: flex; flex-direction: column;
  opacity: 0; transform: translateY(12px) scale(0.97);
  pointer-events: none; transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.chat-bubble.open { opacity: 1; transform: none; pointer-events: all; }
.chat-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.2rem; background: var(--purple);
}
.chat-head__title { font-weight: 600; font-size: 0.9rem; }
.chat-head__sub { font-size: 0.75rem; opacity: 0.8; margin-top: 0.1rem; }
.chat-close { opacity: 0.7; font-size: 1rem; transition: opacity 0.2s; }
.chat-close:hover { opacity: 1; }
.chat-messages { height: 260px; overflow-y: auto; padding: 1rem; display: flex; flex-direction: column; gap: 0.6rem; }
.chat-msg { max-width: 82%; padding: 0.6rem 0.9rem; border-radius: 4px; font-size: 0.84rem; line-height: 1.55; }
.chat-msg--user { background: var(--purple); color: #fff; align-self: flex-end; }
.chat-msg--bot { background: var(--bg-3); color: var(--ink); align-self: flex-start; }
.chat-msg--typing { display: flex; gap: 4px; align-items: center; padding: 0.8rem; }
.chat-msg--typing span { width: 6px; height: 6px; border-radius: 50%; background: var(--ink-2); animation: dot 1.2s infinite; }
.chat-msg--typing span:nth-child(2){animation-delay:0.2s} .chat-msg--typing span:nth-child(3){animation-delay:0.4s}
@keyframes dot { 0%,80%,100%{opacity:0.3;transform:scale(1)} 40%{opacity:1;transform:scale(1.2)} }
.chat-footer { display: flex; gap: 0.5rem; padding: 0.8rem; border-top: 1px solid rgba(155,63,217,0.15); }
.chat-input { flex: 1; background: var(--bg-3); border: 1px solid rgba(155,63,217,0.2); border-radius: 2px; padding: 0.55rem 0.8rem; font: inherit; font-size: 0.84rem; color: var(--ink); outline: none; }
.chat-input:focus { border-color: var(--purple); }
.chat-send { background: var(--purple); color: #fff; border-radius: 2px; padding: 0.55rem 0.9rem; font-size: 0.9rem; transition: opacity 0.2s; }
.chat-send:hover { opacity: 0.85; }

/* ── Responsive ── */
@media (max-width: 767px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery__item--wide { grid-column: span 1; }
}
