:root {
  --black: #060606;
  --soft-black: rgba(0, 0, 0, 0.35);
  --white: #ffffff;
  --muted: #d4d4d8;
  --muted-dark: #a1a1aa;
  --gold: #fcd34d;
  --gold-soft: rgba(252, 211, 77, 0.14);
  --border: rgba(255, 255, 255, 0.11);
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(0, 0, 0, 0.72);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; }
html, body { margin: 0; height: 100%; overflow: hidden; background: var(--black); color: var(--white); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
button, a { font: inherit; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
svg { width: 1.25rem; height: 1.25rem; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.site-shell { position: relative; width: 100vw; height: 100vh; overflow: hidden; background: var(--black); }
.glow, .grid-bg { position: absolute; inset: 0; pointer-events: none; }
.glow-one { background: radial-gradient(circle at 20% 15%, rgba(245, 158, 11, 0.22), transparent 32%); }
.glow-two { background: radial-gradient(circle at 85% 60%, rgba(255, 255, 255, 0.10), transparent 30%); }
.grid-bg { opacity: 0.08; background-image: linear-gradient(to right, #fff 1px, transparent 1px), linear-gradient(to bottom, #fff 1px, transparent 1px); background-size: 64px 64px; }

.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 40; display: flex; align-items: center; justify-content: space-between; padding: 20px clamp(20px, 4vw, 48px); }
.brand { display: flex; align-items: center; gap: 12px; background: transparent; border: 0; color: var(--white); padding: 0; }
.brand-mark { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 18px; background: var(--gold); color: #000; box-shadow: 0 12px 32px rgba(252, 211, 77, 0.2); }
.brand-text { display: flex; flex-direction: column; text-align: left; line-height: 1; }
.brand-text strong { font-size: 37px; letter-spacing: -0.04em; }
.brand-text small { margin-top: 5px; color: #fde68a; font-size: 23px; text-transform: uppercase; letter-spacing: 0.35em; }
.desktop-nav { display: flex; align-items: center; gap: 8px; padding: 8px; border: 1px solid var(--border); background: rgba(0,0,0,0.35); border-radius: 999px; backdrop-filter: blur(18px); }
.desktop-nav button, .mobile-menu button { border: 0; }
.desktop-nav button { padding: 10px 16px; border-radius: 999px; color: var(--muted); background: transparent; font-size: 0.9rem; font-weight: 700; transition: 0.2s ease; }
.desktop-nav button:hover { background: rgba(255,255,255,0.1); color: #fff; }
.desktop-nav button.active { background: #fff; color: #000; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.book-link { display: inline-flex; justify-content: center; align-items: center; border-radius: 999px; background: var(--gold); color: #000; padding: 13px 22px; font-size: 0.9rem; font-weight: 900; box-shadow: 0 18px 40px rgba(252, 211, 77, 0.18); transition: 0.2s ease; }
.book-link:hover, .primary-cta:hover, .compact-cta:hover { transform: translateY(-2px); background: #fde68a; }
.mobile-menu-toggle { display: none; width: 48px; height: 48px; border-radius: 999px; border: 1px solid var(--border); background: rgba(0,0,0,0.35); color: #fff; align-items: center; justify-content: center; backdrop-filter: blur(18px); }
.mobile-menu-toggle .close-icon { display: none; }
.mobile-menu-toggle.open .menu-icon { display: none; }
.mobile-menu-toggle.open .close-icon { display: block; }
.mobile-menu { position: fixed; top: 96px; left: 16px; right: 16px; z-index: 50; display: none; padding: 16px; border-radius: 28px; border: 1px solid var(--border); background: rgba(0,0,0,0.92); box-shadow: var(--shadow); backdrop-filter: blur(20px); }
.mobile-menu.open { display: block; animation: menuIn 0.22s ease both; }
.mobile-menu button, .mobile-menu a { display: block; width: 100%; padding: 14px 16px; border-radius: 18px; background: transparent; color: #fff; text-align: left; font-weight: 800; }
.mobile-menu button:hover { background: rgba(255,255,255,0.1); }
.mobile-menu a { margin-top: 8px; background: var(--gold); color: #000; text-align: center; }

.slides-track { position: relative; z-index: 10; display: flex; width: max-content; height: 100%; transform: translateX(0); transition: transform 760ms cubic-bezier(.22,1,.36,1); }
.slide { width: 100vw; height: 100vh; flex: 0 0 100vw; overflow: hidden; padding: 24px clamp(20px, 4vw, 48px); }
.slide-inner { height: 100%; padding-top: 86px; }
.two-col { display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: clamp(28px, 5vw, 70px); }
.hero-copy { max-width: 780px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; margin: 0 0 20px; padding: 9px 16px; border: 1px solid rgba(252, 211, 77, 0.32); border-radius: 999px; background: var(--gold-soft); color: #fde68a; font-size: 0.9rem; font-weight: 800; }
h1, h2 { margin: 0; font-size: clamp(3.15rem, 7vw, 7rem); line-height: 0.92; letter-spacing: -0.07em; font-weight: 950; }
h2 { font-size: clamp(2.5rem, 5.5vw, 5rem); }
.lead { max-width: 690px; margin: 24px 0 0; color: var(--muted); font-size: clamp(1rem, 1.5vw, 1.25rem); line-height: 1.65; }
.small-lead { max-width: 590px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.primary-cta, .secondary-cta, .compact-cta { display: inline-flex; align-items: center; justify-content: center; gap: 9px; border-radius: 999px; padding: 15px 26px; font-weight: 950; transition: 0.22s ease; }
.primary-cta, .compact-cta { background: var(--gold); color: #000; box-shadow: 0 22px 50px rgba(252, 211, 77, 0.18); }
.secondary-cta { border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.1); color: #fff; }
.secondary-cta:hover { transform: translateY(-2px); background: rgba(255,255,255,0.16); }
.link-style { text-decoration: none; }
.hero-image-wrap { position: relative; height: min(72vh, 720px); min-height: 460px; }
.hero-halo { position: absolute; inset: 0; transform: rotate(3deg); border-radius: 48px; background: rgba(252,211,77,0.19); filter: blur(28px); }
.hero-image-wrap img { position: relative; width: 100%; height: 100%; object-fit: cover; border-radius: 48px; border: 1px solid var(--border); box-shadow: var(--shadow); }
.image-caption { position: absolute; left: 24px; right: 24px; bottom: 24px; padding: 20px; border: 1px solid var(--border); border-radius: 28px; background: rgba(0,0,0,0.62); backdrop-filter: blur(20px); }
.image-caption small { display: block; color: #fde68a; text-transform: uppercase; letter-spacing: 0.35em; font-size: 0.78rem; }
.image-caption strong { display: block; margin-top: 8px; font-size: 1.55rem; }

.gallery-slide { display: flex; flex-direction: column; justify-content: center; }
.section-heading { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 24px; }
.section-kicker { margin: 0 0 12px; color: #fde68a; text-transform: uppercase; letter-spacing: 0.35em; font-size: 0.83rem; font-weight: 900; }
.section-heading p:not(.section-kicker) { max-width: 720px; color: var(--muted); line-height: 1.6; }
code { color: #fde68a; }
.haircut-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; max-height: 62vh; overflow-y: auto; padding-right: 8px; }
.haircut-card { position: relative; min-height: 255px; overflow: hidden; border-radius: 32px; border: 1px solid var(--border); background: var(--panel); }
.haircut-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.72s ease; }
.haircut-card:hover img { transform: scale(1.1); }
.haircut-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, #000, rgba(0,0,0,0.35), transparent); }
.haircut-card div { position: absolute; z-index: 2; left: 20px; right: 20px; bottom: 20px; }
.haircut-card small { color: #fde68a; text-transform: uppercase; letter-spacing: 0.3em; font-size: 0.72rem; font-weight: 900; }
.haircut-card h3 { margin: 8px 0 0; font-size: 1.45rem; }

.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 34px; }
.stats-grid div, .feature-list div { border: 1px solid var(--border); background: var(--panel); border-radius: 28px; padding: 20px; backdrop-filter: blur(18px); }
.stats-grid strong { display: block; color: #fde68a; font-size: 2rem; }
.stats-grid span { display: block; margin-top: 8px; color: var(--muted); font-size: 0.92rem; }
.feature-list { display: grid; gap: 16px; }
.feature-list div { display: flex; align-items: flex-start; gap: 16px; }
.feature-list span { display: grid; place-items: center; flex: 0 0 40px; height: 40px; border-radius: 16px; background: var(--gold); color: #000; font-weight: 950; }
.feature-list p { margin: 0; color: #f4f4f5; font-size: 1.08rem; line-height: 1.5; font-weight: 750; }

.location-grid { grid-template-columns: 0.9fr 1.1fr; }
.contact-list { margin-top: 28px; display: grid; gap: 14px; color: var(--muted); font-size: 1.12rem; }
.contact-list p { display: flex; align-items: center; gap: 12px; margin: 0; }
.contact-list svg { color: #fde68a; flex: 0 0 auto; }
.map-card { overflow: hidden; padding: 12px; border-radius: 48px; border: 1px solid var(--border); background: var(--panel); box-shadow: var(--shadow); backdrop-filter: blur(18px); }
.map-card iframe { width: 100%; height: min(58vh, 620px); min-height: 420px; border: 0; border-radius: 38px; }

.slider-controls { position: fixed; left: 50%; bottom: 20px; z-index: 30; display: flex; align-items: center; gap: 12px; transform: translateX(-50%); padding: 8px 14px; border: 1px solid var(--border); border-radius: 999px; background: rgba(0,0,0,0.35); backdrop-filter: blur(18px); }
.slider-controls button { display: grid; place-items: center; width: 34px; height: 34px; border: 0; border-radius: 999px; background: transparent; color: #fff; transition: 0.18s ease; }
.slider-controls button:hover:not(:disabled) { background: rgba(255,255,255,0.1); }
.slider-controls button:disabled { opacity: 0.3; cursor: not-allowed; }
.slider-controls span { color: var(--muted); font-size: 0.75rem; font-weight: 900; letter-spacing: 0.28em; }
.slide-dots { position: fixed; right: 24px; bottom: 28px; z-index: 30; display: flex; gap: 12px; }
.slide-dots button { display: flex; flex-direction: column; align-items: center; gap: 7px; border: 0; background: transparent; color: #fff; }
.slide-dots button::after { content: ""; width: 40px; height: 8px; border-radius: 999px; background: rgba(255,255,255,0.24); transition: 0.2s ease; }
.slide-dots button.active::after { background: var(--gold); }
.slide-dots span { opacity: 0; padding: 4px 10px; border-radius: 999px; background: rgba(0,0,0,0.72); font-size: 0.73rem; font-weight: 800; transition: 0.2s ease; }
.slide-dots button:hover span { opacity: 1; }

.reveal { opacity: 0; transform: translateY(24px); animation: revealIn 0.68s ease forwards; }
.delay-one { animation-delay: 0.09s; }
.delay-two { animation-delay: 0.18s; }

@keyframes revealIn { to { opacity: 1; transform: translateY(0); } }
@keyframes menuIn { from { opacity: 0; transform: translateY(-14px); } to { opacity: 1; transform: translateY(0); } }

.site-copyright {
  position: fixed;
  left: 24px;
  bottom: 18px;
  z-index: 999;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.02em;
  pointer-events: none;
}

@media (max-width: 768px) {
  .site-copyright {
    left: 16px;
    bottom: 14px;
    font-size: 11px;
  }
}

@media (max-width: 1024px) {
  .desktop-nav, .desktop-book, .slide-dots { display: none; }
  .mobile-menu-toggle { display: flex; }
  .two-col, .location-grid { grid-template-columns: 1fr; }
  .hero-image-wrap { display: none; }
  .haircut-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); max-height: 58vh; }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .map-card iframe { height: 36vh; min-height: 260px; }
}

@media (max-width: 680px) {
  .site-header { padding: 16px; }
  .brand-mark { width: 44px; height: 44px; }
  .brand-text strong { font-size: 1.05rem; }
  .slide { padding: 18px 16px; overflow-y: auto; }
  .slide-inner { padding-top: 92px; min-height: 100%; }
  html, body { overflow: hidden; }
  h1 { font-size: clamp(3rem, 15vw, 4.6rem); }
  h2 { font-size: clamp(2.45rem, 12vw, 3.7rem); }
  .lead { font-size: 1rem; line-height: 1.6; }
  .cta-row { flex-direction: column; }
  .primary-cta, .secondary-cta, .compact-cta { width: 100%; padding: 14px 18px; }
  .haircut-grid { grid-template-columns: 1fr; max-height: none; overflow: visible; padding-bottom: 92px; }
  .haircut-card { min-height: 230px; }
  .stats-grid { grid-template-columns: 1fr; }
  .feature-list { padding-bottom: 92px; }
  .slider-controls { bottom: 14px; }
  .location-grid { align-content: start; }
  .map-card { border-radius: 32px; margin-bottom: 88px; }
  .map-card iframe { border-radius: 24px; height: 300px; min-height: 300px; }
}
