*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #080808;
  --white: #f4f2ef;
  --grey-1: #1a1a1a;
  --grey-2: #2e2e2e;
  --grey-3: #5a5a5a;
  --grey-4: #8a8a8a;
  --grey-5: #c0bcb6;
  --accent: #d4c9b8;
  --font-display: 'Bebas Neue', sans-serif;
  --font-serif: 'Cormorant Garamond', serif;
  --font-mono: 'Space Mono', monospace;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; cursor: none; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-mono);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* CURSOR */
.cursor {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--white);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s var(--ease-out), height 0.3s var(--ease-out);
}

.cursor-follower {
  position: fixed;
  width: 36px; height: 36px;
  border: 1px solid rgba(244,242,239,0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: left 0.12s var(--ease-out), top 0.12s var(--ease-out), width 0.4s var(--ease-out), height 0.4s var(--ease-out), opacity 0.3s;
}

body:hover .cursor-follower { opacity: 1; }

/* NAV */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  mix-blend-mode: difference;
  pointer-events: none;
}

#navbar > * { pointer-events: all; }

.nav-logo img, .nav-logo-text {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: invert(1);
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 4px;
  color: var(--white);
}

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

.nav-links a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
}

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

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

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.nav-burger span {
  display: block;
  width: 24px; height: 1px;
  background: var(--white);
  transition: all 0.3s;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 800;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  clip-path: circle(0% at calc(100% - 60px) 60px);
  transition: clip-path 0.7s var(--ease-out);
  pointer-events: none;
}

.mobile-menu.open {
  clip-path: circle(150% at calc(100% - 60px) 60px);
  pointer-events: all;
}

.mm-link {
  font-family: var(--font-display);
  font-size: clamp(40px, 10vw, 72px);
  letter-spacing: 4px;
  color: var(--white);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s, transform 0.4s var(--ease-out);
}

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

.mobile-menu.open .mm-link:nth-child(1) { transition-delay: 0.2s; }
.mobile-menu.open .mm-link:nth-child(2) { transition-delay: 0.28s; }
.mobile-menu.open .mm-link:nth-child(3) { transition-delay: 0.36s; }
.mobile-menu.open .mm-link:nth-child(4) { transition-delay: 0.44s; }

/* HERO */
#hero {
  position: relative;
  width: 100%;
  height: 100dvh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.05);
  animation: heroZoom 14s ease-out forwards;
  filter: grayscale(1);
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1.0); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,8,8,0.35) 0%,
    rgba(8,8,8,0.15) 40%,
    rgba(8,8,8,0.6) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 1s var(--ease-out) 0.3s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(80px, 17vw, 200px);
  line-height: 0.88;
  letter-spacing: -2px;
  color: var(--white);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.1s var(--ease-out) 0.55s forwards;
}

.hero-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(14px, 2vw, 20px);
  color: var(--grey-5);
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 1s var(--ease-out) 0.8s forwards;
}

.btn-hero {
  margin-top: 12px;
  display: inline-block;
  padding: 14px 40px;
  border: 1px solid var(--white);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 1s var(--ease-out) 1.05s forwards;
  transition: color 0.4s;
}

.btn-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--white);
  transform: translateX(-101%);
  transition: transform 0.4s var(--ease-out);
}

.btn-hero:hover { color: var(--black); }
.btn-hero:hover::before { transform: translateX(0); }
.btn-hero span { position: relative; z-index: 1; }

.hero-ticker {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  overflow: hidden;
  padding: 12px 0;
  border-top: 1px solid rgba(244,242,239,0.15);
  background: rgba(8,8,8,0.5);
  backdrop-filter: blur(6px);
  z-index: 10;
}

.ticker-inner {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: ticker 22s linear infinite;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--grey-5);
}

.ticker-inner .sep { color: var(--accent); }

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

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

/* STATEMENT */
#statement {
  padding: 120px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--grey-2);
  overflow: hidden;
}

.statement-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--grey-4);
}

.stat-text {
  font-family: var(--font-display);
  font-size: clamp(52px, 9vw, 120px);
  line-height: 1;
  letter-spacing: -1px;
  color: var(--white);
}

.stat-text em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--grey-5);
}

/* SECTION LABEL */
.section-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--grey-4);
}

/* VISUAL GRID */
#work { padding: 80px 0 0; }

.grid-header {
  padding: 0 48px 32px;
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 320px 320px;
  gap: 4px;
}

.grid-item {
  position: relative;
  overflow: hidden;
  cursor: none;
}

.grid-item img {
  transition: transform 0.9s var(--ease-out), filter 0.5s;
  filter: grayscale(1);
}

.grid-item:hover img {
  transform: scale(1.07);
  filter: grayscale(0.2);
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,8,8,0.55);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s;
}

.grid-overlay span {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
}

.grid-item:hover .grid-overlay { opacity: 1; }

.gi-tall  { grid-column: span 3; grid-row: span 2; }
.gi-wide  { grid-column: span 6; grid-row: span 1; }
.gi-square{ grid-column: span 3; grid-row: span 1; }

/* STYLISTS */
#stylists {
  padding: 100px 48px;
  border-top: 1px solid var(--grey-2);
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 60px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  letter-spacing: 1px;
  color: var(--white);
}

.stylist-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}

.stylist-card {
  position: relative;
  overflow: hidden;
  cursor: none;
}

.stylist-img-wrap {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}

.stylist-img-wrap img {
  filter: grayscale(1);
  transition: transform 0.9s var(--ease-out), filter 0.5s;
}

.stylist-card:hover .stylist-img-wrap img {
  transform: scale(1.06);
  filter: grayscale(0.3);
}

.stylist-info {
  padding: 16px 0 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid var(--grey-2);
  margin-top: 1px;
}

.stylist-name {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
}

.stylist-role {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey-4);
}

/* SPACE */
#space {
  padding: 100px 48px;
  border-top: 1px solid var(--grey-2);
}

.space-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4px;
  margin-top: 40px;
}

.space-main {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.space-main img {
  filter: grayscale(1);
  transition: transform 0.9s var(--ease-out);
}

.space-main:hover img { transform: scale(1.04); }

.space-side {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.space-sm {
  flex: 1;
  overflow: hidden;
  min-height: 0;
}

.space-sm img {
  height: 100%;
  filter: grayscale(1);
  transition: transform 0.9s var(--ease-out);
}

.space-sm:hover img { transform: scale(1.06); }

.space-quote {
  margin-top: 40px;
  padding: 32px 0;
  border-top: 1px solid var(--grey-2);
}

.space-quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(20px, 3vw, 32px);
  color: var(--grey-4);
  text-align: center;
}

/* CONTACT */
#contact {
  border-top: 1px solid var(--grey-2);
  padding: 100px 48px;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 90px);
  line-height: 0.95;
  letter-spacing: -1px;
  color: var(--white);
  margin: 16px 0 40px;
}

.contact-title em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--grey-5);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.detail-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--grey-4);
}

.detail-icon {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 1px;
}

.detail-row a {
  color: var(--grey-4);
  transition: color 0.3s;
}

.detail-row a:hover { color: var(--white); }

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  background: var(--white);
  color: var(--black);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s, transform 0.3s var(--ease-out);
  cursor: none;
}

.btn-cta:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-block;
  padding: 13px 30px;
  border: 1px solid var(--grey-3);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey-4);
  margin-top: 12px;
  margin-left: 12px;
  transition: border-color 0.3s, color 0.3s;
  cursor: none;
}

.btn-outline:hover {
  border-color: var(--white);
  color: var(--white);
}

.map-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border: 1px solid var(--grey-2);
  filter: grayscale(1) invert(0.92) contrast(1.1);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* FOOTER */
#footer {
  border-top: 1px solid var(--grey-2);
  padding: 32px 48px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 6px;
  color: var(--white);
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--grey-4);
}

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

.footer-links a {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey-4);
  transition: color 0.3s;
}

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

/* WA FLOAT */
.wa-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 800;
  width: 54px; height: 54px;
  background: var(--white);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 32px rgba(0,0,0,0.5);
  transition: transform 0.3s var(--ease-out), background 0.3s;
  cursor: none;
}

.wa-float:hover {
  transform: scale(1.12) translateY(-3px);
  background: #25D366;
  color: var(--white);
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* SCROLLBAR */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--grey-2); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: var(--grey-3); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .visual-grid {
    grid-template-rows: 260px 260px;
  }

  .stylist-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  #navbar {
    padding: 20px 24px;
    mix-blend-mode: normal;
    background: rgba(8,8,8,0.8);
    backdrop-filter: blur(8px);
  }

  .nav-links { display: none; }
  .nav-burger { display: flex; }

  .hero-title {
    font-size: clamp(64px, 20vw, 120px);
  }

  #statement { padding: 80px 24px; }

  .visual-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gi-tall  { grid-column: span 1; grid-row: span 2; }
  .gi-wide  { grid-column: span 2; grid-row: span 1; }
  .gi-square{ grid-column: span 1; grid-row: span 1; }

  .grid-header { padding: 0 24px 24px; }

  #stylists,
  #space,
  #contact,
  #footer { padding: 80px 24px; }

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

  .space-layout {
    grid-template-columns: 1fr;
  }

  .space-side {
    flex-direction: row;
    height: 200px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .wa-float { bottom: 24px; right: 20px; }

  .btn-outline { margin-left: 0; margin-top: 12px; }

  html { cursor: auto; }
  .cursor, .cursor-follower { display: none; }
}

@media (max-width: 480px) {
  .stylist-grid { grid-template-columns: 1fr 1fr; }
  .contact-title { font-size: 44px; }
  .space-side { flex-direction: column; height: auto; }
  .space-sm { aspect-ratio: 16/9; min-height: unset; }
}
