/*
Theme Name: Hell's Kitchen Barber
Theme URI: https://www.hellskitchenbarbershop.com
Author: Hell's Kitchen Barber
Author URI: https://www.hellskitchenbarbershop.com
Description: A bold, premium WordPress theme for Hell's Kitchen Barber — NYC's finest barbershop at 667 9th Ave. Built for local SEO, mobile-first performance, and a distinctive old-school NYC editorial aesthetic.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: barbershop, local-business, dark, editorial, nyc
Text Domain: hkb
*/

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --black:       #0a0a0a;
  --dark:        #111111;
  --dark2:       #1a1a1a;
  --dark3:       #222222;
  --border:      #2a2a2a;
  --gold:        #C9A84C;
  --gold-light:  #E4C878;
  --red:         #8B0000;
  --white:       #F5F0E8;
  --muted:       #888880;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:   'DM Sans', 'Helvetica Neue', sans-serif;
  --font-mono:   'Courier New', monospace;
  --max-w:       1200px;
  --section-pad: 100px 40px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

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

/* Noise texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* ============================================================
   GOOGLE FONTS IMPORT
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=DM+Sans:wght@300;400;500&display=swap');

/* ============================================================
   UTILITY
   ============================================================ */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }
.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}
.gold { color: var(--gold); }
.btn {
  display: inline-block;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  color: var(--black);
  background: var(--gold);
  transition: all 0.25s ease;
  cursor: pointer;
}
.btn:hover { background: transparent; color: var(--gold); }
.btn-outline {
  background: transparent;
  color: var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--black); }
.divider {
  width: 60px; height: 1px;
  background: var(--gold);
  margin: 24px 0;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 40px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}
#site-header.scrolled {
  height: 64px;
  background: rgba(10,10,10,0.98);
}

.site-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}
.site-logo span { color: var(--gold); }
.logo-mark {
  width: 32px; height: 32px;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--black);
}

.main-nav { display: flex; align-items: center; gap: 36px; }
.main-nav a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.main-nav a:hover { color: var(--white); }
.main-nav a:hover::after { width: 100%; }

.nav-book {
  padding: 10px 24px;
  background: var(--gold);
  color: var(--black) !important;
  font-size: 12px !important;
  letter-spacing: 0.15em !important;
}
.nav-book::after { display: none !important; }
.nav-book:hover { background: var(--gold-light) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(135deg, rgba(201,168,76,0.05) 0%, transparent 50%),
    linear-gradient(to bottom, rgba(0,0,0,0) 60%, rgba(10,10,10,1) 100%);
}

/* Diagonal stripe accents */
.hero-bg::before {
  content: '';
  position: absolute;
  top: -200px; right: -100px;
  width: 600px; height: 800px;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(201,168,76,0.03) 40px,
    rgba(201,168,76,0.03) 41px
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  padding-top: 120px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  animation: fadeUp 0.8s ease both;
}
.hero-eyebrow-line {
  width: 40px; height: 1px;
  background: var(--gold);
}
.hero-eyebrow-text {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-title {
  font-size: clamp(52px, 10vw, 110px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
  animation: fadeUp 0.8s 0.1s ease both;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
  display: block;
}

.hero-sub {
  font-size: clamp(14px, 2vw, 18px);
  color: var(--muted);
  max-width: 480px;
  margin: 28px 0 48px;
  font-weight: 300;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.3s ease both;
}

.hero-meta {
  margin-top: 80px;
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.4s ease both;
  padding-bottom: 60px;
}
.hero-meta-item {}
.hero-meta-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.hero-meta-label {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.scroll-hint::before {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--gold));
}

/* ============================================================
   MARQUEE / TICKER
   ============================================================ */
.marquee-bar {
  background: var(--gold);
  color: var(--black);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  animation: marquee 25s linear infinite;
}
.marquee-item {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0 40px;
}
.marquee-dot {
  display: inline-block;
  width: 4px; height: 4px;
  background: var(--black);
  border-radius: 50%;
  vertical-align: middle;
  margin: 0 20px;
}

/* ============================================================
   ABOUT STRIP
   ============================================================ */
#about {
  padding: var(--section-pad);
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text h2 {
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 24px;
}
.about-text p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}
.value-item {
  border-left: 2px solid var(--gold);
  padding-left: 16px;
}
.value-item h4 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.value-item p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}
.about-visual {
  position: relative;
}
.about-img-frame {
  position: relative;
  aspect-ratio: 3/4;
  background: var(--dark2);
  overflow: hidden;
}
.about-img-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(20%) contrast(1.1);
}
.about-img-badge {
  position: absolute;
  bottom: 24px; right: 24px;
  background: var(--gold);
  color: var(--black);
  padding: 16px 20px;
  text-align: center;
}
.about-img-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}
.about-img-badge span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================================
   SERVICES
   ============================================================ */
#services {
  padding: var(--section-pad);
  background: var(--black);
}
.services-header {
  max-width: var(--max-w);
  margin: 0 auto 60px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
}
.services-header h2 { font-size: clamp(36px, 5vw, 56px); }

.services-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.service-card {
  background: var(--dark);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
}
.service-card:hover { background: var(--dark2); }
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 3px;
  background: var(--gold);
  transition: width 0.35s ease;
}
.service-card:hover::before { width: 100%; }

.service-num {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 900;
  color: var(--dark3);
  line-height: 1;
  margin-bottom: 16px;
  transition: color 0.3s;
}
.service-card:hover .service-num { color: var(--border); }
.service-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}
.service-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
.service-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.service-price .from {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.service-price .amount {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
}

/* ============================================================
   BARBERS
   ============================================================ */
#barbers {
  padding: var(--section-pad);
  background: var(--dark);
  border-top: 1px solid var(--border);
}
.barbers-header {
  max-width: var(--max-w);
  margin: 0 auto 60px;
  text-align: center;
}
.barbers-header h2 { font-size: clamp(36px, 5vw, 56px); }
.barbers-header .divider { margin: 24px auto; }
.barbers-header p {
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto;
}

.barbers-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.barber-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.barber-img {
  aspect-ratio: 3/4;
  background: var(--dark2);
  overflow: hidden;
  position: relative;
}
.barber-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(30%);
  transition: all 0.5s ease;
}
.barber-card:hover .barber-img img {
  transform: scale(1.05);
  filter: grayscale(0%);
}
.barber-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
}
.barber-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
}
.barber-info h3 { font-size: 22px; margin-bottom: 4px; }
.barber-info span {
  font-size: 12px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* ============================================================
   REVIEWS
   ============================================================ */
#reviews {
  padding: var(--section-pad);
  background: var(--black);
  border-top: 1px solid var(--border);
}
.reviews-header {
  max-width: var(--max-w);
  margin: 0 auto 60px;
}
.reviews-header h2 { font-size: clamp(36px, 5vw, 56px); }
.stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 2px;
  margin: 8px 0;
}

.reviews-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.review-card {
  background: var(--dark);
  border: 1px solid var(--border);
  padding: 32px 28px;
  position: relative;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 24px;
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--dark3);
  line-height: 1;
  font-weight: 900;
}
.review-text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.review-author strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
}
.review-author span {
  font-size: 12px;
  color: var(--muted);
}

/* ============================================================
   LOCAL SEO SECTION (hidden, schema-focused)
   ============================================================ */
.seo-local {
  padding: 60px 40px;
  background: var(--dark);
  border-top: 1px solid var(--border);
  text-align: center;
}
.seo-local .container { max-width: var(--max-w); }
.seo-local h2 {
  font-size: clamp(24px, 4vw, 40px);
  margin-bottom: 16px;
}
.seo-local p {
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 32px;
}
.location-details {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.loc-item {
  text-align: center;
}
.loc-item .icon { font-size: 24px; margin-bottom: 8px; }
.loc-item strong { display: block; font-size: 15px; color: var(--white); }
.loc-item span { font-size: 13px; color: var(--muted); }

.map-embed {
  max-width: 800px;
  margin: 0 auto;
  aspect-ratio: 16/7;
  background: var(--dark2);
  border: 1px solid var(--border);
  overflow: hidden;
}
.map-embed iframe {
  width: 100%; height: 100%;
  border: none;
  filter: grayscale(80%) contrast(1.1) invert(0.9);
}

/* ============================================================
   PRESS / FEATURES
   ============================================================ */
.press-bar {
  padding: 50px 40px;
  background: var(--dark2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.press-bar .container {
  max-width: var(--max-w);
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: center;
}
.press-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.press-logos {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
.press-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark3);
  font-style: italic;
  transition: color 0.2s;
  white-space: nowrap;
}
.press-logo:hover { color: var(--muted); }

/* ============================================================
   CTA BLOCK
   ============================================================ */
#book {
  padding: 120px 40px;
  background: var(--dark);
  border-top: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}
#book::before {
  content: '✂';
  position: absolute;
  font-size: 400px;
  color: rgba(201,168,76,0.03);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
  pointer-events: none;
  line-height: 1;
}
#book h2 {
  font-size: clamp(40px, 7vw, 80px);
  margin-bottom: 20px;
  position: relative;
}
#book p {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 48px;
  position: relative;
}
.book-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
}

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 60px 40px 40px;
}
.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand h3 {
  font-size: 24px;
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 280px;
}
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 13px;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 12px; color: var(--muted); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Scroll-triggered fade */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   MOBILE RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  :root { --section-pad: 60px 24px; }
  .container { padding: 0 24px; }
  
  #site-header { padding: 0 24px; }
  .main-nav { display: none; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 80px 0 0 0;
    background: var(--black);
    padding: 40px 24px;
    gap: 24px;
    z-index: 999;
    border-top: 1px solid var(--border);
  }
  .main-nav.open a { font-size: 20px; }
  .hamburger { display: flex; }

  .hero-content { padding-top: 100px; }
  .hero-meta { gap: 32px; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { order: -1; }
  .about-img-frame { aspect-ratio: 4/3; }

  .services-grid { grid-template-columns: 1fr; }

  .reviews-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }

  .location-details { gap: 24px; }

  #book { padding: 80px 24px; }
}

@media (max-width: 600px) {
  .hero-title { font-size: 48px; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .services-grid { gap: 0; }
}
