:root {
  --bg: #07080A;
  --surface: #0D0F12;
  --stroke: rgba(255, 255, 255, 0.10);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.65);

  --accent-steel: #B9C0C8;
  --accent-neon: #7AF7D6;
  --accent-warm: #C8A46A;

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-aggressive: 'Noto Sans JP', sans-serif;

  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-in-out-circ: cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  cursor: none;
  /* Hide default cursor */
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1,
h2,
h3,
h4,
.headline,
.section-title {
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.text-center {
  text-align: center;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mt-2 {
  margin-top: 2rem;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Base Layout & Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

.section-pad {
  padding: 120px 0;
}

/* Global Image Fade-In */
img:not(.hero-slide):not(.splash-logo) {
  opacity: 0;
  transition: opacity 0.9s ease;
}

img.img-visible:not(.hero-slide):not(.splash-logo) {
  opacity: 1;
}

/* Noise Overlay */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* Custom Cursor */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: var(--accent-neon);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 10000;
  transition: width 0.3s var(--ease-out-expo), height 0.3s var(--ease-out-expo), background-color 0.3s ease;
}

.cursor-outline {
  position: fixed;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  border: 1px solid var(--muted);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  transition: width 0.3s var(--ease-out-expo), height 0.3s var(--ease-out-expo), border-color 0.3s ease;
}

.cursor-hover .cursor-dot {
  width: 10px;
  height: 10px;
  background-color: var(--accent-warm);
}

.cursor-hover .cursor-outline {
  width: 50px;
  height: 50px;
  border-color: var(--accent-warm);
  background-color: rgba(200, 164, 106, 0.05);
}

/* Scroll Progress */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: var(--accent-warm);
  width: 0%;
  z-index: 9000;
  transition: width 0.1s linear;
}

/* Splash Intro */
.splash-intro {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg);
  z-index: 11000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 1s var(--ease-out-expo), visibility 1s;
}

.splash-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.splash-logo {
  max-width: 330px;
  height: auto;
  opacity: 0;
  transform: translateY(20px);
  animation: splashFadeIn 2s forwards var(--ease-out-expo);
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
}

.splash-text {
  font-size: 4rem;
  color: var(--text);
  opacity: 0;
  transform: translateY(20px);
  animation: splashFadeIn 2s 0.2s forwards var(--ease-out-expo);
  /* slight delay after logo */
}

@keyframes splashFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  50% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.skip-btn {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 10px;
  opacity: 0.5;
  transition: opacity 0.3s;
}

.skip-btn:hover {
  opacity: 1;
}

.splash-intro.hidden {
  opacity: 0;
  visibility: hidden;
}

/* Animations & Reveals */
.reveal,
.slide-left,
.slide-right,
.slide-up {
  opacity: 0;
  transition: opacity 0.85s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.85s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, opacity;
}

.slide-left {
  transform: translateX(-120px);
}

.slide-right {
  transform: translateX(120px);
}

.slide-up {
  transform: translateY(60px);
}

.reveal {
  transform: translateY(40px);
}

.reveal.is-visible,
.slide-left.is-visible,
.slide-right.is-visible,
.slide-up.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

.reveal-on-load {
  opacity: 0;
  transform: translateY(-20px);
  animation: loadReveal 1s 2.5s forwards var(--ease-out-expo);
}

@keyframes loadReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.split-text span {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
  animation: splitReveal 1s forwards var(--ease-out-expo);
}

@keyframes splitReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Buttons */
.magnetic-btn,
.magnetic-link {
  display: inline-block;
  transition: transform 0.3s var(--ease-out-expo);
}

.btn-primary,
.btn-secondary {
  padding: 16px 32px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 1px;
  border-radius: 4px;
  /* hard corners */
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  transform: translateZ(0);
  /* hardware accel */
}

.btn-primary {
  background-color: var(--text);
  color: var(--bg);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--text);
  border-color: var(--text);
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.1);
  transform: scale(0.98);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text);
  border: 1px solid var(--stroke);
}

.btn-secondary:hover {
  border-color: var(--accent-steel);
  color: var(--accent-steel);
  box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.05);
  transform: scale(0.98);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 30px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  mix-blend-mode: difference;
}

.logo {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: -1px;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent-warm);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.book-btn {
  font-size: 0.85rem;
  border: 1px solid var(--stroke);
  padding: 8px 16px;
  border-radius: 20px;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.book-btn:hover {
  border-color: var(--accent-warm);
  color: var(--accent-warm);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-image-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.hero-img {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 2.5s ease-in-out, transform 6s linear;
  transform: scale(1);
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1.05);
}

.headline {
  font-size: 5.5rem;
  line-height: 1.1;
  margin-bottom: 30px;
  color: var(--text);
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
}

.aggressive-headline {
  font-family: var(--font-aggressive);
  font-weight: 900;
  letter-spacing: 0.1em;
}

.sub-headline {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 100%;
  /* allow one line */
  margin-bottom: 40px;
}

.hero-tags {
  display: flex;
  gap: 12px;
  margin-bottom: 50px;
}

.tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  border: 1px solid var(--stroke);
  color: var(--accent-warm);
  border-radius: 20px;
}

.cta-group {
  display: flex;
  gap: 20px;
  margin-bottom: 60px;
}

.hero-info {
  font-size: 0.85rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 15px;
}

.hero-info .dot {
  width: 4px;
  height: 4px;
  background-color: var(--accent-neon);
  border-radius: 50%;
}

/* Signature Section */
.section-title-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 60px;
}

.section-title-icon {
  width: 30px;
  height: auto;
  object-fit: contain;
}

.section-title {
  font-size: 3rem;
  color: var(--text);
  margin-bottom: 0;
  /* Override default mb for wrapped titles */
}

.signature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.sig-card {
  background: var(--surface);
  padding: 40px;
  border: 1px solid var(--stroke);
  border-radius: 4px;
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo), border-color 0.4s ease;
  position: relative;
  overflow: hidden;
}

.sig-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.sig-icon {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--accent-steel);
  opacity: 0.5;
  margin-bottom: 20px;
}

.sig-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--accent-warm);
}

.sig-card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.sig-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 2px;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.sig-card:hover .sig-img {
  filter: grayscale(0%);
}

/* Marquee */
.marquee-wrap {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
  white-space: nowrap;
  padding: 40px 0;
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
  margin-bottom: 80px;
  background: var(--surface);
}

.marquee {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px var(--stroke);
  animation: marquee 30s linear infinite;
  text-transform: uppercase;
}

.marquee span {
  padding-right: 2rem;
}

.hover-marquee:hover {
  -webkit-text-stroke: 1px var(--text);
  color: rgba(255, 255, 255, 0.05);
  animation-play-state: paused;
}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Shop Gallery */
.shop-gallery {
  background-color: var(--surface);
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 20px;
}

.bento-item {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s ease, border-color 0.4s ease;
}

.bento-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.2);
}

.bento-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(80%);
  transition: filter 0.5s ease, transform 0.8s var(--ease-out-expo);
}

.bento-item:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.bento-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out-expo);
}

.bento-item:hover .bento-overlay {
  transform: translateY(0);
}

.bento-overlay h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--text);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
}

.item-large {
  grid-column: span 2;
  grid-row: span 2;
}

.item-wide {
  grid-column: span 2;
  grid-row: span 1;
}

@media (max-width: 992px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }

  .item-large {
    grid-column: span 2;
    grid-row: span 2;
  }

  .item-wide {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 768px) {
  .bento-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }

  .item-large,
  .item-wide {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* Gallery Section */
.gallery-controls {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  background: none;
  border: 1px solid var(--stroke);
  color: var(--muted);
  padding: 8px 24px;
  border-radius: 20px;
  font-size: 0.85rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4/5;
  cursor: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo), filter 0.6s ease;
  filter: grayscale(80%);
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.gallery-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out-expo);
}

.gallery-item:hover .gallery-info {
  transform: translateY(0);
}

.gallery-info h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.gallery-info p {
  font-size: 0.8rem;
  color: var(--accent-warm);
  text-transform: uppercase;
}

/* Pricing */
.pricing-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.pricing-desc {
  color: var(--muted);
  margin-bottom: 60px;
  font-size: 1.1rem;
}

.price-list {
  list-style: none;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid var(--stroke);
  transition: padding-left 0.3s ease, border-color 0.3s ease;
}

.price-item:hover {
  padding-left: 20px;
  border-color: var(--accent-warm);
}

.price-info h4 {
  font-size: 1.5rem;
  letter-spacing: 1px;
  color: var(--text);
}

.price-info p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 5px;
}

.price-val {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-steel);
}

/* Barber */
.barber-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.barber-img-wrap {
  overflow: hidden;
  border-radius: 4px;
  /* Allow natural aspect ratio instead of pushing 3/4 */
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.barber-img {
  width: 100%;
  position: relative;
}

.barber-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
  /* Retain grayscale if preferred, or remove it */
  filter: grayscale(100%);
}

.barber-name {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.barber-name span {
  font-size: 1rem;
  color: var(--accent-warm);
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--font-body);
}

.barber-bio {
  color: var(--muted);
  margin-bottom: 30px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.barber-skills {
  list-style: none;
  color: var(--text);
  margin-bottom: 40px;
}

.barber-skills li {
  margin-bottom: 10px;
  font-family: var(--font-heading);
}

.social-link {
  display: inline-block;
  color: var(--text);
  border-bottom: 1px solid var(--accent-warm);
  padding-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
}


/* Access Section */
.access-grid-single {
  max-width: 1000px;
  margin: 0 auto;
}

.access-info {
  text-align: center;
}

.access-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.info-card {
  background: var(--surface);
  padding: 30px;
  border: 1px solid var(--stroke);
  border-radius: 4px;
  text-align: left;
}

.info-card h4 {
  color: var(--accent-warm);
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.info-card p {
  color: var(--muted);
  margin-bottom: 15px;
}

.map-link {
  color: var(--text);
  font-size: 0.85rem;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
}

.booking-methods {
  background: var(--surface);
  padding: 40px;
  border: 1px solid var(--stroke);
  border-radius: 4px;
  text-align: center;
}

.booking-methods h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.booking-desc {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 30px;
}

.booking-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.booking-icon-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.3s var(--ease-out-expo), opacity 0.3s ease;
}

.booking-icon-link:hover {
  opacity: 0.8;
}

.booking-icon-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 12px;
}

.booking-icon-link span {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
}

/* FAQ */
.faq-section {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--stroke);
  padding: 20px 0;
}

.faq-item summary {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  color: var(--accent-warm);
  font-size: 1.5rem;
  transition: transform 0.3s;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin-top: 15px;
  color: var(--muted);
  line-height: 1.6;
  padding-right: 20px;
}

/* Access */
.access-content {
  display: flex;
  gap: 40px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: 4px;
  overflow: hidden;
}

.access-info {
  flex: 1;
  padding: 40px;
}

.access-info h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.access-info p {
  color: var(--muted);
  margin-bottom: 15px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.access-info i {
  color: var(--accent-warm);
  width: 20px;
  text-align: center;
}

.access-map {
  flex: 1;
  width: 100%;
  height: 100%;
  min-height: 350px;
}

.access-map iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
  display: block;
}

@media (max-width: 768px) {
  .access-content {
    flex-direction: column;
  }

  .access-info {
    padding: 30px 20px;
  }
}


/* Footer */
.footer {
  border-top: 1px solid var(--stroke);
  padding: 60px 0 40px;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  opacity: 0.5;
  margin-bottom: 10px;
}

.footer-slogan {
  color: var(--accent-warm);
  margin-bottom: 40px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 0.8rem;
  border-top: 1px solid var(--stroke);
  padding-top: 20px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a:hover {
  color: var(--text);
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  z-index: 20000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-out-expo), visibility 0.4s;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  color: var(--text);
  font-size: 3rem;
  cursor: pointer;
  line-height: 1;
}

.lightbox-caption {
  margin-top: 20px;
  font-family: var(--font-heading);
  color: var(--accent-warm);
  font-size: 1.2rem;
  text-transform: uppercase;
}

/* Responsive adjustments */
@media (max-width: 992px) {

  .signature-grid,
  .barber-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .access-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .barber-img-wrap {
    height: auto;
    max-width: 100%;
  }
}

/* Hamburger Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 40px;
  height: 30px;
  background: #000;
  border: 1px solid var(--stroke);
  padding: 8px;
  border-radius: 4px;
  z-index: 10001;
  transition: all 0.3s ease;
}

.menu-toggle .bar {
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Hamburger Animation to X */
.menu-toggle.active .line-1 {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.active .line-2 {
  opacity: 0;
}

.menu-toggle.active .line-3 {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile Menu Drawer */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: var(--bg);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.6s var(--ease-out-expo), visibility 0.6s;
  border-left: 1px solid var(--stroke);
}

.mobile-menu.active {
  transform: translateX(0);
  visibility: visible;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  width: 100%;
}

.mobile-menu-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  color: #fff;
  font-size: 3rem;
  cursor: pointer;
  line-height: 1;
  z-index: 10002;
}

.mobile-link {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text);
  letter-spacing: 2px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s var(--ease-out-expo);
}

.mobile-menu.active .mobile-link {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger link animations */
.mobile-menu.active .mobile-link:nth-child(1) {
  transition-delay: 0.1s;
}

.mobile-menu.active .mobile-link:nth-child(2) {
  transition-delay: 0.15s;
}

.mobile-menu.active .mobile-link:nth-child(3) {
  transition-delay: 0.2s;
}

.mobile-menu.active .mobile-link:nth-child(4) {
  transition-delay: 0.25s;
}

.mobile-menu.active .mobile-link:nth-child(5) {
  transition-delay: 0.3s;
}

.mobile-menu.active .mobile-btn {
  transition-delay: 0.35s;
}

.mobile-btn {
  margin-top: 20px;
  padding: 16px 40px;
  background: var(--text);
  color: var(--bg);
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 4px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s var(--ease-out-expo);
}

.mobile-menu.active .mobile-btn {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .headline {
    font-size: 2.1rem;
    /* Reduced to fit on 2 lines */
    word-break: keep-all;
    white-space: nowrap;
    /* Prevent unwanted wrapping */
  }

  .aggressive-headline {
    line-height: 1.3;
  }

  .sub-headline {
    font-size: 0.85rem;
    /* Reduced size */
    padding: 0 5px;
    word-break: keep-all;
  }

  .mobile-only {
    display: block;
    /* Show break on mobile */
  }

  .section-title {
    font-size: 2.2rem;
  }

  .navbar {
    flex-wrap: wrap;
    padding: 20px 5%;
  }

  .nav-links,
  .book-btn {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  /* Simplified mobile nav for now */
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  /* Disable cursor on mobile */
  * {
    cursor: auto !important;
  }

  .cursor-dot,
  .cursor-outline {
    display: none;
  }

  .access-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

  *,
  ::before,
  ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}