/* =========================================================
   ZINGCUTZ — street style / sleek barbershop site
   ========================================================= */

:root{
  --bg: #0a0a0a;
  --bg-alt: #131313;
  --bg-card: #17171a;
  --line: rgba(255,255,255,0.08);
  --white: #f4f4f2;
  --gray: #9a9a9a;
  --neon: #9dff1f;
  --neon-2: #c8ff5c;
  --neon-dim: rgba(157,255,31,0.14);
  --shadow-neon: 0 0 24px rgba(157,255,31,0.35);
  --radius: 14px;
  --maxw: 1180px;
  --font-display: "Anton", "Bebas Neue", Impact, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin: 0;
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ list-style: none; margin: 0; padding: 0; }
h1,h2,h3{ font-family: var(--font-display); font-weight: 400; letter-spacing: 0.5px; margin: 0; text-transform: uppercase; }

.accent{ color: var(--neon); }

/* ---------- grain overlay ---------- */
.grain{
  position: fixed; inset: 0; pointer-events: none; z-index: 999;
  opacity: 0.05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- buttons ---------- */
.btn{
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.9rem 1.8rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color .18s ease;
  white-space: nowrap;
}
.btn-primary{
  background: var(--neon);
  color: #0a0a0a;
  box-shadow: var(--shadow-neon);
}
.btn-primary:hover{ transform: translateY(-2px); box-shadow: 0 0 32px rgba(157,255,31,0.55); }
.btn-ghost{
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.25);
}
.btn-ghost:hover{ border-color: var(--neon); color: var(--neon); transform: translateY(-2px); }
.btn-lg{ padding: 1.15rem 2.4rem; font-size: 1.05rem; }

/* ---------- header ---------- */
.site-header{
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  background: rgba(10,10,10,0.55);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
  transition: background .25s ease;
}
/* ---------- promo banner ---------- */
.promo-banner{
  position: relative;
  display: flex; align-items: center; justify-content: center;
  gap: 0.9rem;
  background: linear-gradient(90deg, var(--neon), var(--neon-2));
  color: #0a0a0a;
  padding: 0.55rem 2.6rem;
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(0,0,0,0.15);
}
.promo-banner-link{
  display: flex; align-items: center; justify-content: center;
  gap: 0.7rem; flex-wrap: wrap; text-align: center;
  color: #0a0a0a;
}
.promo-banner-text strong{ font-weight: 900; }
.promo-banner-arrow{
  font-weight: 800; text-decoration: underline; text-underline-offset: 2px;
  white-space: nowrap;
}
.promo-banner-close{
  position: absolute; right: 0.7rem; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: #0a0a0a; opacity: 0.65;
  font-size: 1.2rem; line-height: 1; cursor: pointer; padding: 0.25rem 0.4rem;
  transition: opacity .2s ease;
}
.promo-banner-close:hover{ opacity: 1; }
.promo-banner.is-hidden{ display: none; }

.header-inner{
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.7rem 1.5rem;
}
.brand{ display: flex; align-items: center; gap: 0.6rem; }
.brand-logo{ width: 40px; height: 40px; object-fit: contain; }
.brand-text{
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.5px;
  color: var(--white);
}
.main-nav{ display: flex; align-items: center; gap: 2rem; }
.nav-link{
  font-size: 0.88rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--gray);
  position: relative;
  padding: 0.3rem 0;
  transition: color .2s ease;
}
.nav-link:hover, .nav-link.active{ color: var(--white); }
.nav-link::after{
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px;
  background: var(--neon); transition: right .25s ease;
}
.nav-link:hover::after{ right: 0; }
.nav-book-btn{
  background: var(--neon); color: #0a0a0a; font-weight: 800; font-size: 0.82rem;
  text-transform: uppercase; letter-spacing: 0.04em;
  padding: 0.6rem 1.3rem; border-radius: 999px;
  box-shadow: 0 0 16px rgba(157,255,31,0.3);
  transition: transform .18s ease, box-shadow .18s ease;
}
.nav-book-btn:hover{ transform: translateY(-2px); box-shadow: 0 0 26px rgba(157,255,31,0.5); }

.nav-toggle{
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; background: none; border: none; cursor: pointer; z-index: 501;
}
.nav-toggle span{ display: block; width: 24px; height: 2px; background: var(--white); transition: all .25s ease; }
.nav-toggle.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity: 0; }
.nav-toggle.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero{
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: 8.75rem 1.5rem 3rem;
  overflow: hidden;
  transition: padding-top .25s ease;
}
body.banner-dismissed .hero{ padding-top: 7rem; }
.hero-bg{ position: absolute; inset: 0; z-index: -2; }
.hero-bg img{ width: 100%; height: 100%; object-fit: cover; object-position: center 20%; filter: saturate(0.9) contrast(1.05); }
.hero-overlay{
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 20%, rgba(10,10,10,0.35), rgba(10,10,10,0.85) 65%),
    linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.65) 40%, rgba(10,10,10,0.97) 100%);
}
.hero-drip{
  position: absolute; left: 0; right: 0; bottom: -2px; height: 90px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 90' preserveAspectRatio='none'%3E%3Cpath fill='%230a0a0a' d='M0,20 C50,60 90,0 140,30 C180,55 210,10 260,25 C310,45 340,5 390,20 C440,40 470,0 520,15 C570,35 600,0 650,10 C700,25 730,60 780,35 C830,10 860,50 910,25 C960,5 990,45 1040,20 C1080,0 1110,40 1160,15 C1180,5 1190,20 1200,20 L1200,90 L0,90 Z'/%3E%3C/svg%3E");
  background-size: 100% 100%;
}
.hero-content{ position: relative; z-index: 2; max-width: 780px; }
.hero-eyebrow{
  font-family: var(--font-body); font-weight: 700; letter-spacing: 0.2em;
  color: var(--neon); font-size: 0.8rem; text-transform: uppercase; margin: 0 0 1rem;
}
.hero-logo{ width: min(58vw, 300px); margin: 0 auto; filter: drop-shadow(0 10px 40px rgba(157,255,31,0.25)); }
.hero-tagline{
  font-size: clamp(1rem, 2vw, 1.25rem); color: var(--white); opacity: 0.9;
  margin: 1.3rem 0 2rem; font-weight: 500;
}
.hero-cta{ display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.8rem; }
.hero-ig{
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.9rem; font-weight: 600; color: var(--gray);
  transition: color .2s ease;
}
.hero-ig:hover{ color: var(--neon); }

.scroll-cue{
  position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid rgba(255,255,255,0.35); border-radius: 20px;
  z-index: 2;
}
.scroll-cue span{
  position: absolute; top: 8px; left: 50%; width: 4px; height: 8px; background: var(--neon);
  border-radius: 2px; transform: translateX(-50%);
  animation: scrollcue 1.6s ease infinite;
}
@keyframes scrollcue{ 0%{ opacity: 1; top: 8px; } 70%{ opacity: 0; top: 20px; } 100%{ opacity: 0; top: 8px; } }

/* ---------- ticker ---------- */
.ticker{
  background: var(--neon); color: #0a0a0a;
  overflow: hidden; white-space: nowrap;
  padding: 0.65rem 0;
  border-top: 2px solid #0a0a0a; border-bottom: 2px solid #0a0a0a;
}
.ticker-track{
  display: inline-flex; gap: 0.7rem;
  animation: ticker 22s linear infinite;
  font-family: var(--font-display); font-size: 1rem; letter-spacing: 0.06em;
}
.ticker-track span{ padding: 0 0.2rem; }
@keyframes ticker{ from{ transform: translateX(0); } to{ transform: translateX(-50%); } }

/* ---------- section shared ---------- */
section{ padding: 6.5rem 1.5rem; max-width: var(--maxw); margin: 0 auto; }
.section-head{ text-align: center; max-width: 640px; margin: 0 auto 3.2rem; }
.kicker{
  color: var(--neon); font-weight: 800; font-size: 0.78rem; letter-spacing: 0.22em;
  text-transform: uppercase; margin: 0 0 0.6rem;
}
.section-head h2{ font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 0.9rem; }
.section-sub{ color: var(--gray); font-size: 1rem; }
.section-sub a{ color: var(--neon); font-weight: 600; }

/* ---------- services ---------- */
.services{ background: var(--bg); }
.service-groups{
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.4rem 3rem;
}
.group-title{
  font-size: 1.3rem; color: var(--neon); margin-bottom: 1rem;
  padding-bottom: 0.6rem; border-bottom: 1px solid var(--line);
}
.service-list{ display: flex; flex-direction: column; gap: 0.9rem; }
.service-item{
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  padding: 0.9rem 1.1rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .2s ease, transform .2s ease;
}
.service-item:hover{ border-color: rgba(157,255,31,0.4); transform: translateY(-2px); }
.service-item.featured{ border-color: var(--neon); background: linear-gradient(135deg, rgba(157,255,31,0.08), var(--bg-card)); }
.service-info{ display: flex; flex-direction: column; gap: 0.25rem; }
.service-name{ font-weight: 700; font-size: 1rem; display: flex; align-items: center; gap: 0.5rem; }
.tag{
  font-size: 0.62rem; background: var(--neon); color: #0a0a0a; font-weight: 800;
  padding: 0.15rem 0.5rem; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.05em;
}
.service-meta{ font-size: 0.82rem; color: var(--gray); }
.service-price{ font-family: var(--font-display); font-size: 1.4rem; color: var(--white); white-space: nowrap; }

.services-cta{ text-align: center; margin-top: 3.4rem; }
.services-note{ color: var(--gray); font-size: 0.85rem; margin-top: 0.9rem; }

/* ---------- gallery ---------- */
.gallery{ background: var(--bg-alt); }
.gallery-grid{
  display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 260px; gap: 1rem;
  grid-auto-flow: dense;
}
.gallery-item{
  position: relative; overflow: hidden; border-radius: var(--radius);
  border: 1px solid var(--line);
}
.gallery-item.span-2{ grid-row: span 2; grid-column: span 1; }
.gallery-item.wide{ grid-column: span 2; }
.gallery-item img{ width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease, filter .5s ease; filter: grayscale(0.15); }
.gallery-item:hover img{ transform: scale(1.06); filter: grayscale(0) saturate(1.1); }
.gallery-overlay{
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(10,10,10,0.35); color: var(--neon);
  opacity: 0; transition: opacity .25s ease;
}
.gallery-item:hover .gallery-overlay{ opacity: 1; }

.gallery-item.video-item{ cursor: default; }
.gallery-item.video-item video{
  width: 100%; height: 100%; object-fit: cover; object-position: center 22%;
  display: block; background: #000;
}
.gallery-overlay.gallery-overlay-static{
  opacity: 1; background: transparent; align-items: flex-end; justify-content: flex-start;
  padding: 0.7rem; pointer-events: none;
}
.gallery-overlay-static svg{
  background: rgba(10,10,10,0.55); border-radius: 50%; padding: 0.4rem;
  width: 30px; height: 30px; color: var(--neon);
}

@media (max-width: 900px){
  .gallery-item.wide{ grid-column: span 2; }
}
@media (max-width: 760px){
  .gallery-item.wide{ grid-column: span 2; }
}
.gallery-more{ display: flex; width: max-content; margin: 2.6rem auto 0; }

/* Live Instagram embeds (populated by pasting official blockquotes — see HTML comment) */
.ig-embed-label{
  text-align: center; color: var(--neon); font-weight: 800; font-size: 0.78rem;
  letter-spacing: 0.22em; text-transform: uppercase; margin: 3.6rem 0 0;
}
.ig-embed-label:empty{ display: none; margin: 0; }
.ig-embed-grid{
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem; margin-top: 1.4rem;
  max-width: 1080px; margin-left: auto; margin-right: auto;
}
.ig-embed-grid:empty{ display: none; margin-top: 0; }
.ig-embed-grid iframe{ border-radius: var(--radius) !important; }
.ig-embed-grid .instagram-media{ margin: 0 !important; width: 100% !important; }

/* ---------- about ---------- */
.about{
  display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center;
}
.about-media{ border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.about-media img{ width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
.about-content h2{ font-size: clamp(1.9rem, 3.6vw, 2.6rem); margin-bottom: 1.1rem; }
.about-content p{ color: var(--gray); margin-bottom: 1rem; font-size: 1.02rem; }
.about-content strong{ color: var(--white); }
.about-stats{ display: flex; gap: 2.2rem; margin: 1.8rem 0 2rem; }
.stat{ display: flex; flex-direction: column; }
.stat-num{ font-family: var(--font-display); font-size: 1.7rem; color: var(--neon); }
.stat-label{ font-size: 0.78rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.05em; }

/* ---------- book band ---------- */
.book-band{
  max-width: none; padding: 5.5rem 1.5rem;
  background:
    radial-gradient(circle at 15% 30%, rgba(157,255,31,0.14), transparent 45%),
    radial-gradient(circle at 85% 70%, rgba(157,255,31,0.1), transparent 45%),
    #0e0e0e;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  text-align: center;
}
.book-band-inner{ max-width: 640px; margin: 0 auto; }
.book-band h2{ font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: 0.9rem; }
.book-band p{ color: var(--gray); margin-bottom: 2rem; }
.book-band-call{
  display: block; margin-top: 1.1rem; color: var(--gray); font-size: 0.9rem; font-weight: 600;
  transition: color .2s ease;
}
.book-band-call:hover{ color: var(--neon); }

/* ---------- location ---------- */
.location{ display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.location-info h2{ font-size: clamp(1.7rem, 3.2vw, 2.3rem); margin-bottom: 1.6rem; line-height: 1.25; }
.location-details{ display: flex; flex-direction: column; gap: 0.9rem; margin-bottom: 2rem; }
.location-details li{ display: flex; gap: 0.8rem; align-items: baseline; font-size: 0.98rem; }
.location-details strong{ color: var(--gray); min-width: 90px; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; }
.location-details a:hover{ color: var(--neon); }
.location-map{ border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 4/3; }
.location-map iframe{ width: 100%; height: 100%; border: 0; filter: grayscale(0.4) invert(0.92) contrast(0.9); }

/* ---------- footer ---------- */
.site-footer{ background: #060606; border-top: 1px solid var(--line); padding: 3.2rem 1.5rem 1.6rem; }
.footer-inner{
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.6rem;
  padding-bottom: 2rem; border-bottom: 1px solid var(--line);
}
.footer-brand .brand-logo{ width: 34px; height: 34px; }
.footer-nav{ display: flex; gap: 1.6rem; flex-wrap: wrap; }
.footer-nav a{ color: var(--gray); font-size: 0.88rem; font-weight: 600; transition: color .2s ease; }
.footer-nav a:hover{ color: var(--neon); }
.footer-ig{
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); color: var(--gray);
  transition: all .2s ease;
}
.footer-ig:hover{ color: #0a0a0a; background: var(--neon); border-color: var(--neon); }
.footer-bottom{
  max-width: var(--maxw); margin: 1.4rem auto 0;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.4rem;
  color: var(--gray); font-size: 0.78rem;
}

/* ---------- sticky mobile book button ---------- */
.sticky-book{
  position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 400;
  background: var(--neon); color: #0a0a0a; font-weight: 800; text-transform: uppercase;
  font-size: 0.85rem; letter-spacing: 0.04em;
  padding: 0.85rem 1.3rem; border-radius: 999px;
  box-shadow: 0 6px 24px rgba(157,255,31,0.45);
  display: none;
}

/* ---------- reveal animation ---------- */
.reveal{ opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in-view{ opacity: 1; transform: translateY(0); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px){
  .service-groups{ grid-template-columns: 1fr; }
  .about{ grid-template-columns: 1fr; }
  .about-media{ order: -1; }
  .location{ grid-template-columns: 1fr; }
  .gallery-grid{ grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery-item.span-2{ grid-row: span 2; }
}

@media (max-width: 760px){
  .main-nav{
    position: fixed; top: 0; right: -100%; height: 100svh; width: min(78vw, 320px);
    background: #0d0d0d; border-left: 1px solid var(--line);
    flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 1.6rem; padding: 2rem;
    transition: right .3s ease;
    z-index: 500;
  }
  .main-nav.open{ right: 0; }
  .nav-link{ font-size: 1.1rem; }
  .nav-book-btn{ margin-top: 0.6rem; }
  .nav-toggle{ display: flex; }
  .sticky-book{ display: inline-flex; align-items: center; }
  section{ padding: 4.5rem 1.3rem; }
  .gallery-grid{ grid-template-columns: 1fr 1fr; grid-auto-rows: 170px; }

  .promo-banner{ padding: 0.6rem 2.3rem; font-size: 0.72rem; gap: 0.4rem; }
  .promo-banner-link{ gap: 0.35rem 0.5rem; }
  .hero{ padding-top: 10.5rem; }
  body.banner-dismissed .hero{ padding-top: 7rem; }
}

@media (max-width: 480px){
  .hero-cta{ flex-direction: column; width: 100%; }
  .hero-cta .btn{ width: 100%; }
  .about-stats{ gap: 1.4rem; flex-wrap: wrap; }
}
