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

:root {
  --black: #0a0a0a;
  --deep: #111111;
  --card: #161616;
  --gold: #C9A84C;
  --gold-light: #e4c97e;
  --white: #f5f0e8;
  --white-dim: rgba(245, 240, 232, 0.6);
  --white-faint: rgba(245, 240, 232, 0.08);
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Montserrat', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

/* ===== NOISE OVERLAY ===== */
.noise {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' 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='1'/%3E%3C/svg%3E");
}

/* ===== CUSTOM CURSOR ===== */
.cursor {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s;
}
.cursor-follower {
  width: 32px; height: 32px;
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: all 0.12s ease;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 4rem;
  transition: background 0.4s, padding 0.4s;
}
.nav.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  padding: 1rem 4rem;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-uk {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  font-weight: 400;
}
.nav-logo-barber {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.2em;
  color: var(--white);
  font-weight: 600;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.nav-links a {
  color: var(--white-dim);
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--black) !important;
  padding: 0.6rem 1.5rem;
  font-weight: 500 !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.nav-hamburger span {
  width: 24px; height: 1px;
  background: var(--white);
  display: block;
  transition: all 0.3s;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.1em;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(201,168,76,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(201,168,76,0.04) 0%, transparent 50%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.7) 60%, rgba(10,10,10,0.85) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 4rem;
  max-width: 900px;
}
.hero-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 9rem);
  font-weight: 300;
  line-height: 0.88;
  margin-bottom: 1.5rem;
}
.hero-title-line {
  display: block;
  opacity: 0;
  animation: fadeUp 0.8s forwards;
}
.hero-title-line:nth-child(1) { animation-delay: 0.5s; }
.hero-title-line:nth-child(2) { animation-delay: 0.7s; color: var(--gold); font-style: italic; }
.hero-title-line:nth-child(3) { animation-delay: 0.9s; }
.hero-sub {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--white-dim);
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 0.8s 1.1s forwards;
}
.hero-actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 1.3s forwards;
}
.btn-primary {
  background: var(--gold);
  color: var(--black);
  text-decoration: none;
  padding: 1rem 2.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.3s;
  font-family: var(--font-body);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-ghost {
  border: 1px solid rgba(245,240,232,0.3);
  color: var(--white);
  text-decoration: none;
  padding: 1rem 2.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
  transition: all 0.3s;
  font-family: var(--font-body);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.hero-scroll {
  position: absolute;
  bottom: 3rem;
  left: 4rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  animation: fadeUp 0.8s 1.6s forwards;
}
.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--white-dim);
  text-transform: uppercase;
}
.scroll-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  animation: scrollPulse 2s infinite;
}
.hero-badge {
  position: absolute;
  bottom: 3rem;
  right: 4rem;
  z-index: 2;
  width: 80px;
  height: 80px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: fadeIn 1s 2s forwards, rotateSlow 20s linear infinite;
}
.badge-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.badge-inner span {
  font-size: 0.5rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
}
.badge-year {
  font-family: var(--font-display) !important;
  font-size: 0.9rem !important;
  color: var(--white) !important;
}

/* ===== MARQUEE ===== */
.marquee-wrapper {
  background: var(--gold);
  overflow: hidden;
  padding: 0.8rem 0;
}
.marquee {
  display: flex;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
}
.marquee span {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--black);
  font-weight: 600;
  text-transform: uppercase;
  flex-shrink: 0;
  padding-right: 0;
}

/* ===== SECTION COMMONS ===== */
.section-label {
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--gold); }

/* ===== ABOUT ===== */
.about {
  padding: 8rem 4rem;
  background: var(--deep);
}
.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--card);
  border: 1px solid rgba(201,168,76,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.about-img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.05) 0%, transparent 60%);
}
.img-scissors {
  font-size: 4rem;
  color: rgba(201,168,76,0.2);
  transform: rotate(-45deg);
}
.about-stat {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--gold);
  color: var(--black);
  padding: 1.5rem 2rem;
  text-align: center;
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 0.3rem;
  font-weight: 600;
}
.about-text {
  color: var(--white-dim);
  font-size: 0.85rem;
  line-height: 1.9;
  margin-bottom: 1.2rem;
}
.about-stats-row {
  display: flex;
  gap: 3rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--white-faint);
}
.astat span {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold);
  font-weight: 400;
}
.astat p {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--white-dim);
  text-transform: uppercase;
  margin-top: 0.3rem;
}

/* ===== SERVICES ===== */
.services {
  padding: 8rem 4rem;
  background: var(--black);
}
.services-container { max-width: 1200px; margin: 0 auto; }
.services-header { text-align: center; margin-bottom: 5rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.1);
}
.service-card {
  background: var(--deep);
  padding: 3rem 2.5rem;
  position: relative;
  transition: background 0.4s;
  overflow: hidden;
}
.service-card::before {
  content: attr(data-num);
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--white-faint);
  font-weight: 300;
  line-height: 1;
}
.service-card:hover { background: var(--card); }
.service-card:hover .service-icon { color: var(--gold); }
.service-icon {
  font-size: 1.5rem;
  color: rgba(201,168,76,0.4);
  margin-bottom: 1.5rem;
  display: block;
  transition: color 0.3s;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.8rem;
}
.service-card p {
  font-size: 0.8rem;
  color: var(--white-dim);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.service-price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold);
  font-weight: 600;
}

/* ===== GALLERY ===== */
.gallery {
  padding: 8rem 4rem;
  background: var(--deep);
}
.gallery-header { text-align: center; margin-bottom: 4rem; }
.gallery-grid {
  max-width: 1200px;
  margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 1.5px;
  background: rgba(201,168,76,0.1);
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--card);
}
.g1 { background: linear-gradient(135deg, #1a1a1a 0%, #222 100%); }
.g2 { background: linear-gradient(135deg, #161616 0%, #1e1e1e 100%); }
.g3 { background: linear-gradient(135deg, #1c1c1c 0%, #242424 100%); grid-row: span 2; }
.g4 { background: linear-gradient(135deg, #181818 0%, #202020 100%); }
.g5 { background: linear-gradient(135deg, #141414 0%, #1c1c1c 100%); }
.gallery-item::before {
  content: '✂';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(201,168,76,0.08);
}
.gallery-item::before { display: flex; }
.g3::before { font-size: 5rem; }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
}
.gallery-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--white-dim);
  margin-top: 2rem;
}
.gallery-note a {
  color: var(--gold);
  text-decoration: none;
}

/* ===== BOOKING ===== */
.booking {
  padding: 8rem 4rem;
  background: var(--black);
  position: relative;
}
.booking::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.booking-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: start;
}
.booking-sub {
  font-size: 0.82rem;
  color: var(--white-dim);
  line-height: 1.8;
  margin-bottom: 3rem;
}
.booking-info { display: flex; flex-direction: column; gap: 1rem; }
.binfo {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--white-dim);
}
.binfo span { font-size: 1rem; }
.booking-form-wrap { display: flex; flex-direction: column; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-dim);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--card);
  border: 1px solid rgba(201,168,76,0.15);
  color: var(--white);
  padding: 0.9rem 1.2rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group select option { background: var(--card); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-group input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.5) sepia(1) saturate(2) hue-rotate(10deg);
  cursor: pointer;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.btn-submit {
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 1.1rem 2rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 0.5rem;
}
.btn-submit:hover { background: var(--gold-light); transform: translateY(-2px); }
.booking-success {
  display: none;
  text-align: center;
  padding: 4rem 2rem;
  background: var(--card);
  border: 1px solid rgba(201,168,76,0.2);
}
.booking-success.show { display: block; }
.success-icon {
  width: 60px; height: 60px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
  margin: 0 auto 1.5rem;
}
.booking-success h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 0.8rem;
}
.booking-success p {
  font-size: 0.82rem;
  color: var(--white-dim);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--deep);
  border-top: 1px solid rgba(201,168,76,0.1);
}
.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 4rem 3rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.footer-brand p {
  font-size: 0.72rem;
  color: var(--white-dim);
  letter-spacing: 0.1em;
  margin-top: 0.8rem;
}
.footer-links, .footer-social {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.footer-links a, .footer-social a {
  color: var(--white-dim);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  transition: color 0.3s;
}
.footer-links a:hover, .footer-social a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--white-faint);
  padding: 1.5rem 4rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.65rem;
  color: rgba(245,240,232,0.3);
  letter-spacing: 0.1em;
  max-width: 100%;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleX(1); }
  50% { opacity: 0.4; transform: scaleX(0.6); }
}
@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-container,
  .booking-container { grid-template-columns: 1fr; gap: 4rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-img-wrap { max-width: 400px; }
}

@media (max-width: 768px) {
  .nav { padding: 1.2rem 1.5rem; }
  .nav.scrolled { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero-content { padding: 0 1.5rem; }
  .hero-scroll, .hero-badge { display: none; }
  .about, .services, .gallery, .booking { padding: 5rem 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .g3 { grid-row: span 1; }
  .footer-top { grid-template-columns: 1fr; padding: 3rem 1.5rem 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; padding: 1.5rem; }
  .about-stats-row { flex-wrap: wrap; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-ghost { text-align: center; }
  body { cursor: auto; }
  .cursor, .cursor-follower { display: none; }
}
