/* =====================================================================
   Let's Art Barbershop — mobile-first one-pager
   Theme: warm black interior · orange light · reclaimed red brick · plants
   ===================================================================== */

/* ---- Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Manrope:wght@300;400;500;600;700;800&family=Mr+Dafoe&display=swap');

/* ---- Tokens ---- */
:root {
  --bg:        #0a0806;
  --bg-2:      #130d09;
  --surface:   rgba(255, 244, 232, 0.035);
  --surface-2: rgba(255, 244, 232, 0.06);
  --ink:       #f4ece2;
  --ink-dim:   #cdbfb1;
  --muted:     #9a8b7c;

  --orange:        #ef8a3c;
  --orange-bright: #ffa654;
  --orange-deep:   #c5631f;
  --brick:         #9b3f2d;
  --brick-deep:    #5e261b;
  --green:         #7d9a5f;

  --line:    rgba(244, 236, 226, 0.10);
  --line-2:  rgba(244, 236, 226, 0.18);

  --maxw: 540px;
  --pad: 22px;

  --shadow: 0 24px 60px -24px rgba(0,0,0,0.85);
  --glow: 0 0 40px -6px rgba(239, 138, 60, 0.55);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  --font-display: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;
  --font-script: 'Mr Dafoe', cursive;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* ---------------------------------------------------------------
   Ambient animated background — orange light + drifting glows
   --------------------------------------------------------------- */
.ambient {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 50% -10%, #1c130c 0%, var(--bg) 55%),
    var(--bg);
}
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  mix-blend-mode: screen;
  will-change: transform;
}
.glow.g1 { width: 60vw; height: 60vw; max-width: 420px; max-height: 420px;
  background: radial-gradient(circle, var(--orange) 0%, transparent 70%);
  top: -8%; left: -12%; animation: drift1 18s ease-in-out infinite; }
.glow.g2 { width: 55vw; height: 55vw; max-width: 380px; max-height: 380px;
  background: radial-gradient(circle, var(--brick) 0%, transparent 70%);
  bottom: 6%; right: -16%; animation: drift2 22s ease-in-out infinite; }
.glow.g3 { width: 40vw; height: 40vw; max-width: 280px; max-height: 280px;
  background: radial-gradient(circle, var(--green) 0%, transparent 70%);
  top: 42%; left: 30%; opacity: 0.30; animation: drift3 26s ease-in-out infinite; }

@keyframes drift1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(8vw, 6vh) scale(1.15); } }
@keyframes drift2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-7vw, -5vh) scale(1.2); } }
@keyframes drift3 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-6vw, 8vh) scale(0.85); } }

/* film grain overlay */
.grain {
  position: fixed;
  inset: -50%;
  z-index: -1;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainShift 1.2s steps(4) infinite;
}
@keyframes grainShift {
  0%{transform:translate(0,0)} 25%{transform:translate(-4%,3%)}
  50%{transform:translate(3%,-2%)} 75%{transform:translate(-2%,-3%)} 100%{transform:translate(2%,2%)}
}

/* rising embers */
.embers { position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.ember {
  position: absolute; bottom: -10px; width: 3px; height: 3px; border-radius: 50%;
  background: var(--orange-bright);
  box-shadow: 0 0 6px 1px rgba(255,166,84,0.8);
  opacity: 0; animation: rise linear infinite;
}
@keyframes rise {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 0.9; }
  90% { opacity: 0.5; }
  100% { transform: translateY(-100vh) translateX(20px); opacity: 0; }
}

/* ---------------------------------------------------------------
   Shell — mobile column centered on big screens
   --------------------------------------------------------------- */
.shell {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  position: relative;
}
@media (min-width: 600px) {
  body::before, body::after {
    content: ''; position: fixed; top: 0; bottom: 0; width: 1px; z-index: 5;
    background: linear-gradient(var(--line), transparent);
    pointer-events: none;
  }
  body::before { left: calc(50% - var(--maxw)/2 - var(--pad)); }
  body::after  { right: calc(50% - var(--maxw)/2 - var(--pad)); }
}

/* ---------------------------------------------------------------
   Top bar
   --------------------------------------------------------------- */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px var(--pad);
  max-width: var(--maxw); margin: 0 auto;
  transition: background .4s var(--ease), backdrop-filter .4s;
}
.topbar.scrolled {
  background: rgba(10, 8, 6, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.topbar .brand-mini {
  font-family: var(--font-display); font-size: 22px; letter-spacing: 2px;
  color: var(--ink); text-decoration: none; line-height: 1;
  opacity: 0; transform: translateY(-6px); transition: all .4s var(--ease);
}
.topbar.scrolled .brand-mini { opacity: 1; transform: none; }
.topbar .brand-mini b { color: var(--orange); font-weight: inherit; }

.bar-right { display: flex; align-items: center; gap: 10px; }

/* language toggle */
.lang {
  display: inline-flex; border: 1px solid var(--line-2); border-radius: 999px;
  overflow: hidden; font-size: 11px; font-weight: 700; letter-spacing: .5px;
  background: rgba(0,0,0,0.25); backdrop-filter: blur(6px);
}
.lang button {
  background: none; border: 0; color: var(--muted); cursor: pointer;
  padding: 6px 11px; font: inherit; transition: all .25s var(--ease);
}
.lang button.active { background: var(--orange); color: #1a0f06; }

/* ---------------------------------------------------------------
   Buttons
   --------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-weight: 700; font-size: 14px;
  letter-spacing: .3px; text-decoration: none; cursor: pointer;
  border-radius: 999px; padding: 14px 24px; border: 1px solid transparent;
  transition: transform .25s var(--ease), box-shadow .3s, background .3s;
  position: relative; overflow: hidden; white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; flex-shrink: 0; }
.btn-primary {
  background: linear-gradient(135deg, var(--orange-bright), var(--orange-deep));
  color: #1a0f06; box-shadow: var(--glow);
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0; transform: translateX(-130%);
  background: linear-gradient(110deg, transparent 35%, rgba(255,255,255,0.55) 50%, transparent 65%);
  animation: shimmer 4.5s ease-in-out infinite;
}
@keyframes shimmer { 0%,55% { transform: translateX(-130%);} 75%,100% { transform: translateX(130%);} }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 50px -4px rgba(239,138,60,0.8); }
.btn-ghost {
  background: var(--surface); color: var(--ink); border-color: var(--line-2);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--orange); color: var(--orange-bright); }
.btn-mini { padding: 9px 16px; font-size: 12px; }

/* ---------------------------------------------------------------
   Section scaffolding + reveal
   --------------------------------------------------------------- */
section { padding: 64px 0; position: relative; }
.eyebrow {
  font-family: var(--font-body); font-size: 12px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--orange);
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 14px;
}
.eyebrow::before { content: ''; width: 26px; height: 1px; background: var(--orange); display: inline-block; }
h2.title {
  font-family: var(--font-display); font-weight: 400; line-height: 0.92;
  font-size: clamp(40px, 13vw, 64px); letter-spacing: 1px; color: var(--ink);
  margin-bottom: 18px;
}
h2.title em { font-family: var(--font-script); font-style: normal; color: var(--orange);
  font-size: 0.78em; letter-spacing: 0; display: inline-block; transform: rotate(-3deg); }
.lead { color: var(--ink-dim); font-size: 16px; max-width: 42ch; }

/* reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .hero-logo, .hero-tag, .rating, .hero-cta, .scrollcue {
    opacity: 1 !important; transform: none !important;
  }
  .glow, .grain, .ember, .btn-primary::after,
  .hero-logo, .hero-tag, .rating, .hero-cta, .scrollcue,
  .scrollcue .mouse::after, .badge-open .pulse, .marquee-track {
    animation: none !important;
  }
}

/* ---------------------------------------------------------------
   HERO
   --------------------------------------------------------------- */
.hero {
  min-height: 100svh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 96px 0 60px;
}
.hero-logo {
  width: min(78vw, 360px); height: auto; display: block; margin: 0 auto 4px;
  mix-blend-mode: screen; /* drops the black bg, keeps white strokes */
  filter: drop-shadow(0 0 28px rgba(239,138,60,0.25));
  animation: logoIn 1.4s var(--ease) both;
}
@keyframes logoIn { from { opacity: 0; transform: scale(.92) translateY(10px); filter: blur(6px);} to { opacity: 1; transform: none; } }
.hero-tag {
  font-family: var(--font-body); font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; font-size: 12.5px; color: var(--ink-dim);
  margin-top: 10px; animation: fadeUp 1s var(--ease) .5s both;
}
.hero-city { color: var(--orange); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px);} to { opacity: 1; transform: none; } }

.rating {
  display: inline-flex; align-items: center; gap: 12px; margin-top: 26px;
  padding: 10px 18px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--line);
  backdrop-filter: blur(6px); animation: fadeUp 1s var(--ease) .7s both;
}
.rating .score { font-family: var(--font-display); font-size: 26px; line-height: 1; color: var(--orange-bright); }
.stars { display: inline-flex; gap: 2px; color: var(--orange-bright); }
.stars svg { width: 15px; height: 15px; }
.rating .count { font-size: 12.5px; color: var(--muted); }
.rating .count b { color: var(--ink); }

.hero-cta { display: flex; flex-direction: column; gap: 12px; width: 100%; max-width: 320px;
  margin-top: 32px; animation: fadeUp 1s var(--ease) .9s both; }

.scrollcue { margin-top: 46px; display: flex; flex-direction: column; align-items: center;
  gap: 8px; color: var(--muted); font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  animation: fadeUp 1s var(--ease) 1.1s both; }
.scrollcue .mouse { width: 22px; height: 34px; border: 1.5px solid var(--line-2); border-radius: 12px; position: relative; }
.scrollcue .mouse::after { content: ''; position: absolute; left: 50%; top: 7px; width: 3px; height: 6px;
  border-radius: 2px; background: var(--orange); transform: translateX(-50%); animation: wheel 1.6s ease-in-out infinite; }
@keyframes wheel { 0%{ opacity:0; transform: translate(-50%,0);} 30%{opacity:1;} 100%{ opacity:0; transform: translate(-50%,12px);} }

/* ---------------------------------------------------------------
   Marquee strip
   --------------------------------------------------------------- */
.marquee {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 0; overflow: hidden; white-space: nowrap;
  background: linear-gradient(90deg, rgba(155,63,45,0.12), rgba(239,138,60,0.12));
}
.marquee-track { display: inline-flex; align-items: center; gap: 0; animation: marquee 26s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { font-family: var(--font-display); font-size: 30px; letter-spacing: 2px;
  color: var(--ink); padding: 18px 26px; display: inline-flex; align-items: center; }
.marquee-track .dot { color: var(--orange); padding: 0; font-size: 14px; }
@keyframes marquee { from { transform: translateX(0);} to { transform: translateX(-50%);} }

/* ---------------------------------------------------------------
   About + interior slots
   --------------------------------------------------------------- */
.about .lead { margin-bottom: 26px; }
.interior-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.interior-grid image-slot { width: 100%; }
.interior-grid .tall { grid-row: span 2; }
.feature-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 600;
  color: var(--ink-dim); padding: 9px 15px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--line);
}
.chip .ico { width: 7px; height: 7px; border-radius: 50%; }

/* ---------------------------------------------------------------
   Services / pricing
   --------------------------------------------------------------- */
.svc-list { margin-top: 8px; border-top: 1px solid var(--line); }
.svc {
  display: flex; align-items: baseline; gap: 14px; padding: 20px 4px;
  border-bottom: 1px solid var(--line); cursor: default; position: relative;
  transition: padding-left .35s var(--ease);
}
.svc::before {
  content: ''; position: absolute; left: -4px; top: 0; bottom: 0; width: 2px;
  background: var(--orange); transform: scaleY(0); transform-origin: top;
  transition: transform .35s var(--ease);
}
.svc:hover { padding-left: 16px; }
.svc:hover::before { transform: scaleY(1); }
.svc-name { font-size: 16px; font-weight: 700; color: var(--ink); }
.svc-en { display: block; font-size: 12px; font-weight: 500; color: var(--muted); margin-top: 2px; }
.svc-dots { flex: 1; border-bottom: 1px dotted var(--line-2); transform: translateY(-4px); }
.svc-meta { text-align: right; flex-shrink: 0; }
.svc-price { font-family: var(--font-display); font-size: 26px; line-height: 1; color: var(--orange-bright); }
.svc-time { font-size: 11px; color: var(--muted); margin-top: 3px; }

/* ---------------------------------------------------------------
   Gallery
   --------------------------------------------------------------- */
.gallery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.gallery-grid image-slot { width: 100%; }
.gallery-note { margin-top: 16px; font-size: 12.5px; color: var(--muted); text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 8px; }

/* ---------------------------------------------------------------
   Reviews
   --------------------------------------------------------------- */
.reviews-head { display: flex; align-items: center; gap: 18px; margin-bottom: 26px; flex-wrap: wrap; }
.big-score { font-family: var(--font-display); font-size: 72px; line-height: .8; color: var(--orange-bright);
  text-shadow: 0 0 30px rgba(239,138,60,0.4); }
.score-meta .stars svg { width: 18px; height: 18px; }
.score-meta .count { font-size: 13px; color: var(--muted); margin-top: 4px; }
.score-meta .count b { color: var(--ink); }

.review-rail { display: flex; gap: 14px; overflow-x: auto; padding: 4px 4px 16px;
  margin: 0 calc(-1 * var(--pad)); padding-left: var(--pad); padding-right: var(--pad);
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
.review-rail::-webkit-scrollbar { height: 0; }
.review {
  flex: 0 0 84%; max-width: 360px; scroll-snap-align: start;
  background: var(--surface); border: 1px solid var(--line); border-radius: 18px;
  padding: 22px; position: relative;
}
.review .quote { position: absolute; top: 8px; right: 18px; font-family: var(--font-script);
  font-size: 64px; color: var(--orange); opacity: .2; line-height: 1; }
.review .stars { margin-bottom: 12px; }
.review .stars svg { width: 14px; height: 14px; }
.review p { font-size: 14.5px; color: var(--ink-dim); line-height: 1.6; }
.review .who { display: flex; align-items: center; gap: 11px; margin-top: 18px; }
.review .av { width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center; font-weight: 800; font-size: 14px; color: #1a0f06;
  background: linear-gradient(135deg, var(--orange-bright), var(--brick)); }
.review .who b { font-size: 13.5px; display: block; }
.review .who span { font-size: 11.5px; color: var(--muted); }

/* ---------------------------------------------------------------
   Map / visit
   --------------------------------------------------------------- */
.map-card { border-radius: 20px; overflow: hidden; border: 1px solid var(--line);
  background: var(--surface); box-shadow: var(--shadow); }
.map-embed { width: 100%; height: 280px; border: 0; display: block; filter: invert(0.92) hue-rotate(180deg) saturate(0.6) brightness(0.9); }
.map-info { padding: 22px; display: grid; gap: 16px; }
.info-row { display: flex; gap: 14px; align-items: flex-start; }
.info-row .ic { width: 38px; height: 38px; flex-shrink: 0; border-radius: 11px;
  display: grid; place-items: center; background: var(--surface-2); border: 1px solid var(--line); color: var(--orange); }
.info-row .ic svg { width: 18px; height: 18px; }
.info-row .lbl { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); }
.info-row .val { font-size: 15px; font-weight: 600; color: var(--ink); margin-top: 1px; }
.info-row a.val { text-decoration: none; }
.info-row a.val:hover { color: var(--orange-bright); }
.map-actions { display: flex; gap: 10px; margin-top: 4px; flex-wrap: wrap; }
.map-actions .btn { flex: 1; min-width: 140px; }

/* hours */
.hours { margin-top: 8px; border-radius: 16px; overflow: hidden; border: 1px solid var(--line); }
.hours-row { display: flex; justify-content: space-between; align-items: center;
  padding: 13px 18px; font-size: 14px; border-bottom: 1px solid var(--line); }
.hours-row:last-child { border-bottom: 0; }
.hours-row.today { background: rgba(239,138,60,0.10); }
.hours-row .day { font-weight: 600; color: var(--ink-dim); }
.hours-row.today .day { color: var(--orange-bright); }
.hours-row .hrs { color: var(--muted); font-variant-numeric: tabular-nums; }
.hours-row .closed { color: var(--brick); }
.badge-open { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 700;
  color: var(--green); margin-top: 4px; }
.badge-open .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 0 0 rgba(125,154,95,0.6); animation: pulse 2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(125,154,95,0.55);} 70%{box-shadow:0 0 0 10px rgba(125,154,95,0);} 100%{box-shadow:0 0 0 0 rgba(125,154,95,0);} }

/* ---------------------------------------------------------------
   Footer / final CTA
   --------------------------------------------------------------- */
.final-cta { text-align: center; padding: 72px 0 40px; }
.final-cta .brand-script { font-family: var(--font-script); font-size: 40px; color: var(--orange); transform: rotate(-3deg); display: inline-block; }
.footer { border-top: 1px solid var(--line); padding: 32px 0 130px; text-align: center; }
.footer-logo { width: 200px; max-width: 70%; mix-blend-mode: screen; opacity: .9; margin-bottom: 18px; }
.socials { display: flex; justify-content: center; gap: 12px; margin-bottom: 22px; }
.socials a { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid var(--line-2); color: var(--ink-dim); transition: all .25s var(--ease); }
.socials a:hover { border-color: var(--orange); color: var(--orange-bright); transform: translateY(-3px); }
.socials a svg { width: 19px; height: 19px; }
.foot-meta { font-size: 12px; color: var(--muted); line-height: 1.8; }
.foot-meta a { color: var(--ink-dim); text-decoration: none; }
.foot-meta a:hover { color: var(--orange-bright); }

/* sticky bottom booking bar (mobile) */
.dock {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 45;
  padding: 12px var(--pad) calc(12px + env(safe-area-inset-bottom));
  max-width: var(--maxw); margin: 0 auto;
  background: linear-gradient(transparent, rgba(10,8,6,0.92) 30%);
  transform: translateY(120%); transition: transform .45s var(--ease);
  pointer-events: none;
}
.dock.show { transform: none; }
.dock .btn { width: 100%; pointer-events: auto; padding: 16px; }

/* small screens tweak */
@media (max-width: 380px) {
  :root { --pad: 16px; }
  .review { flex-basis: 88%; }
}
