:root {
  --void: #070707;
  --black: #0d0e10;
  --panel: #15171b;
  --steel: #9da3ad;
  --fog: #e8e8e1;
  --muted: #7b8088;
  --red: #ff3048;
  --ice: #c8fff5;
  --line: rgba(232, 232, 225, 0.14);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
}

* { box-sizing: border-box; }

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  margin: 0;
  color: var(--fog);
  background: var(--void);
  font-family: "Inter", system-ui, sans-serif;
  overflow-x: hidden;
}

img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }

.noise {
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none;
  opacity: 0.12;
  mix-blend-mode: screen;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.8' numOctaves='3' type='fractalNoise' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
}

.cursor-blade {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 35;
  width: 86px;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: 0.45;
  transform: translate(-50%, -50%) rotate(-24deg);
}

.blade-field {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.blade-field span {
  position: absolute;
  width: 1px;
  height: 72vh;
  background: linear-gradient(transparent, rgba(255, 48, 72, 0.34), transparent);
  transform-origin: center;
}

.blade-field span:nth-child(1) { left: 12%; top: 8%; transform: rotate(28deg); }
.blade-field span:nth-child(2) { left: 32%; top: 28%; transform: rotate(-18deg); }
.blade-field span:nth-child(3) { left: 54%; top: -8%; transform: rotate(14deg); }
.blade-field span:nth-child(4) { left: 78%; top: 18%; transform: rotate(-31deg); }
.blade-field span:nth-child(5) { left: 94%; top: -4%; transform: rotate(20deg); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(18px, 4vw, 58px);
  mix-blend-mode: difference;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 900;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.brand span {
  width: 34px;
  height: 10px;
  border: 1px solid currentColor;
  transform: skewX(-22deg);
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 34px);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.book-link {
  border: 1px solid currentColor;
  padding: 10px 16px;
}

.hero {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  overflow: hidden;
  background: var(--black);
}

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

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.92), rgba(7, 7, 7, 0.5) 48%, rgba(7, 7, 7, 0.2)),
    linear-gradient(180deg, transparent 42%, #070707 100%);
}

.hero-bg img {
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
  filter: grayscale(0.35) contrast(1.08);
}

.hero-grid {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: clamp(24px, 5vw, 70px);
  align-items: end;
  padding: 118px clamp(18px, 5vw, 72px) 118px;
}

.kicker {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-title,
h2,
h3 {
  margin: 0;
  font-family: "Archivo Black", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-title {
  display: grid;
  max-width: 980px;
  font-size: clamp(62px, 10vw, 154px);
  line-height: 0.78;
}

.hero-title span {
  display: block;
  will-change: transform, opacity;
}

.hero-title span:nth-child(even) {
  color: transparent;
  -webkit-text-stroke: 1px var(--fog);
}

.hero-text {
  max-width: 590px;
  margin: 28px 0 0;
  color: rgba(232, 232, 225, 0.78);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  padding: 0 22px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.btn-primary {
  color: var(--void);
  border-color: var(--red);
  background: var(--red);
}

.btn-glass {
  color: var(--fog);
  background: rgba(232, 232, 225, 0.06);
  backdrop-filter: blur(12px);
}

.hero-panel {
  align-self: end;
  padding: 22px;
  border: 1px solid var(--line);
  background: rgba(13, 14, 16, 0.68);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-panel span,
.look-card span,
.service-card span {
  display: block;
  color: var(--steel);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  margin: 8px 0;
  color: var(--red);
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: 58px;
  line-height: 0.9;
}

.hero-panel p {
  margin: 0;
  color: rgba(232, 232, 225, 0.72);
}

.ticker {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 24px;
  z-index: 2;
  overflow: hidden;
  contain: paint;
  border-block: 1px solid rgba(232, 232, 225, 0.18);
  background: rgba(255, 48, 72, 0.08);
}

.ticker div {
  display: flex;
  width: max-content;
  gap: 28px;
  padding: 12px 0;
  white-space: nowrap;
}

.ticker span {
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(24px, 4vw, 54px);
  line-height: 1;
  text-transform: uppercase;
}

.intro,
.cut-stage,
.services,
.gallery-section,
.crew,
.booking {
  position: relative;
  z-index: 1;
}

.intro {
  min-height: 80vh;
  display: grid;
  align-content: center;
  padding: clamp(84px, 12vw, 170px) clamp(18px, 5vw, 72px);
  background: var(--void);
}

h2 {
  max-width: 1160px;
  font-size: clamp(42px, 6.4vw, 106px);
  line-height: 0.86;
  overflow-wrap: break-word;
}

.cut-lab {
  position: relative;
  z-index: 1;
  min-height: 260vh;
}

.cut-stage {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 36px;
  align-items: center;
  padding: 54px clamp(18px, 5vw, 72px);
  overflow: hidden;
  background:
    linear-gradient(135deg, #101114, #070707 60%),
    radial-gradient(circle at 70% 35%, rgba(255, 48, 72, 0.22), transparent 36%);
}

.cut-copy p:not(.kicker) {
  max-width: 520px;
  color: rgba(232, 232, 225, 0.68);
  font-size: 19px;
  line-height: 1.6;
}

.cut-visual {
  position: relative;
  height: min(76vh, 720px);
  min-height: 520px;
}

.head-shape {
  position: absolute;
  inset: 10% 18% 8%;
  border: 1px solid rgba(232, 232, 225, 0.24);
  border-radius: 44% 44% 36% 36%;
  background:
    linear-gradient(90deg, transparent 0 48%, rgba(255, 48, 72, 0.08) 48% 52%, transparent 52%),
    linear-gradient(180deg, #2a2b30, #111216);
  box-shadow: inset 0 0 70px rgba(0, 0, 0, 0.6), 0 40px 120px rgba(0, 0, 0, 0.45);
}

.clipper,
.cut-line,
.spark {
  position: absolute;
  display: block;
}

.clipper {
  width: 190px;
  height: 48px;
  border: 1px solid rgba(232, 232, 225, 0.34);
  background: linear-gradient(90deg, #d9d9d2, #535962 54%, #17191d);
  transform: skewX(-16deg);
}

.c1 { top: 18%; left: 4%; }
.c2 { right: 8%; bottom: 20%; }

.cut-line {
  left: 50%;
  width: 1px;
  height: 82%;
  background: linear-gradient(transparent, var(--red), transparent);
  transform-origin: center;
}

.l1 { top: 8%; transform: rotate(22deg); }
.l2 { top: 4%; transform: rotate(-15deg); }
.l3 { top: 14%; transform: rotate(4deg); }

.spark {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ice);
  box-shadow: 0 0 24px var(--ice);
}

.sp1 { top: 22%; left: 34%; }
.sp2 { top: 48%; right: 26%; }
.sp3 { bottom: 28%; left: 48%; }

.services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: var(--line);
}

.service-card {
  min-height: 360px;
  padding: clamp(24px, 4vw, 44px);
  background: var(--black);
}

.service-card h3,
.look-card strong,
.crew-card h3 {
  margin: 18px 0 0;
  font-size: clamp(29px, 3vw, 50px);
  line-height: 0.9;
}

.service-card p {
  max-width: 340px;
  margin: 24px 0 0;
  color: rgba(232, 232, 225, 0.68);
  line-height: 1.55;
}

.gallery-section {
  min-height: 220vh;
  background: #101114;
}

.gallery-head {
  padding: clamp(76px, 10vw, 140px) clamp(18px, 5vw, 72px) 36px;
}

.gallery-rail {
  display: flex;
  gap: 18px;
  width: max-content;
  padding: 0 clamp(18px, 5vw, 72px) 90px;
  will-change: transform;
}

.look-card {
  position: relative;
  width: min(72vw, 430px);
  height: 560px;
  overflow: hidden;
  background: var(--panel);
}

.look-card.wide { width: min(92vw, 680px); }
.look-card.tall { height: 640px; }

.look-card img {
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.15) contrast(1.05);
}

.look-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.78));
}

.look-card div {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
}

.look-card strong {
  display: block;
}

.crew {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 28px;
  padding: clamp(84px, 11vw, 150px) clamp(18px, 5vw, 72px);
  background: var(--void);
}

.crew-copy {
  min-width: 0;
}

.crew-copy h2,
.booking h2 {
  max-width: 100%;
}

.crew-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.crew-card {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.crew-card img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  filter: grayscale(0.35);
}

.crew-card p {
  margin: 8px 0 0;
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
}

.booking {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(24px, 6vw, 90px);
  padding: clamp(84px, 12vw, 160px) clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
}

.booking-form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--steel);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

input,
select {
  min-height: 54px;
  border: 1px solid var(--line);
  color: var(--fog);
  background: #111216;
  padding: 0 16px;
  font: inherit;
}

footer {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  body {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .blade-field {
    inset-inline: 0;
  }

  .blade-field span {
    opacity: 0.6;
  }

  .site-header {
    padding: 18px;
  }

  nav a:not(.book-link) {
    display: none;
  }

  .brand {
    max-width: 190px;
    font-size: 13px;
  }

  .hero-grid {
    display: flex;
    min-height: 100svh;
    align-items: flex-end;
    padding: 96px 18px 98px;
  }

  .hero-bg::after {
    background:
      linear-gradient(180deg, rgba(7, 7, 7, 0.18), rgba(7, 7, 7, 0.54) 43%, #070707 94%),
      radial-gradient(circle at 78% 30%, rgba(255, 48, 72, 0.3), transparent 32%);
  }

  .hero-title {
    font-size: clamp(58px, 18vw, 86px);
    line-height: 0.78;
  }

  .hero-text {
    max-width: 94%;
    font-size: 16px;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .hero-panel {
    position: absolute;
    top: 88px;
    right: 18px;
    width: 128px;
    padding: 14px;
  }

  .hero-panel strong {
    font-size: 34px;
  }

  .ticker {
    bottom: 16px;
  }

  .intro {
    min-height: 72vh;
    padding: 76px 18px;
  }

  h2 {
    font-size: clamp(42px, 13vw, 66px);
    line-height: 0.9;
  }

  .cut-lab {
    min-height: 260vh;
  }

  .cut-stage,
  .crew,
  .booking {
    grid-template-columns: 1fr;
  }

  .cut-stage {
    min-height: 100svh;
    align-content: space-between;
    padding: 80px 18px 28px;
  }

  .cut-copy p:not(.kicker) {
    font-size: 16px;
  }

  .cut-visual {
    height: 48vh;
    min-height: 410px;
  }

  .clipper {
    width: 130px;
    height: 38px;
  }

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

  .service-card {
    min-height: 280px;
  }

  .gallery-section {
    min-height: auto;
    overflow: hidden;
    contain: paint;
  }

  .gallery-head {
    padding: 78px 18px 28px;
  }

  .gallery-rail {
    width: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 0 18px 78px;
    overflow: hidden;
  }

  .look-card,
  .look-card.wide,
  .look-card.tall {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .look-card:nth-child(even) {
    margin-left: 28px;
    width: calc(100% - 28px);
  }

  .crew {
    padding: 78px 18px;
  }

  .booking {
    padding: 82px 18px;
  }

  footer {
    flex-direction: column;
    padding: 24px 18px;
  }
}

@media (max-width: 480px) {
  .cursor-blade {
    display: none;
  }

  .blade-field span:nth-child(5) {
    display: none;
  }

  .hero-title {
    font-size: clamp(56px, 19vw, 78px);
  }

  .hero-title span:nth-child(even) {
    -webkit-text-stroke-width: 0.8px;
  }

  .kicker {
    font-size: 11px;
  }

  .book-link {
    padding: 9px 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
