:root {
  --color-bg: #050505;
  --color-bg-soft: #0b0b0b;
  --color-panel: #101010;
  --color-acid: #9eff00;
  --color-acid-strong: #b6ff00;
  --color-acid-muted: #8ebb05;
  --color-text: #f4f4f4;
  --color-muted: #a7a7a7;
  --color-line: rgba(255, 255, 255, 0.12);
  --color-acid-line: rgba(158, 255, 0, 0.32);
  --header-height: 76px;
  --section-x: clamp(18px, 5vw, 72px);
  --max-width: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  background: var(--color-bg);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--color-text);
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    var(--color-bg);
  background-size: 42px 42px;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.32;
  background-image: radial-gradient(rgba(255, 255, 255, 0.1) 0.8px, transparent 0.8px);
  background-size: 4px 4px;
}

body.is-wheel-locked {
  overscroll-behavior-y: contain;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 2px solid var(--color-acid);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: #050505;
  background: var(--color-acid);
  transform: translateY(-140%);
}

.skip-link:focus-visible {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  min-height: var(--header-height);
  padding: 14px var(--section-x);
  border-bottom: 1px solid var(--color-acid-line);
  background: rgba(5, 5, 5, 0.74);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: inline-flex;
  flex-direction: column;
  justify-self: start;
  gap: 1px;
  text-transform: uppercase;
}

.brand-mark span {
  color: var(--color-acid);
  font-size: 19px;
  font-weight: 950;
  letter-spacing: 0;
}

.brand-mark small {
  color: var(--color-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  justify-self: center;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav a {
  transition: color 180ms ease, transform 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--color-acid);
  transform: translateY(-1px);
}

.header-cta {
  justify-self: end;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid var(--color-acid);
  color: #050505;
  background: var(--color-acid);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--color-acid-strong);
  box-shadow: 0 0 32px rgba(158, 255, 0, 0.28);
  transform: translateY(-1px);
}

main {
  position: relative;
}

.section {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  scroll-margin-top: 0;
  scroll-snap-align: start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(125deg, rgba(158, 255, 0, 0.12), transparent 28%),
    linear-gradient(300deg, rgba(158, 255, 0, 0.08), transparent 30%);
  opacity: 0.46;
}

.section-inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max-width));
  min-height: 100svh;
  margin: 0 auto;
  padding: calc(var(--header-height) + 38px) var(--section-x) 56px;
}

.hero-grid,
.about-layout,
.works-layout {
  display: grid;
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
}

.hero-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.78fr);
}

.works-layout {
  grid-template-columns: minmax(260px, 0.68fr) minmax(360px, 1fr);
}

.about-layout {
  grid-template-columns: minmax(290px, 0.72fr) minmax(0, 1fr);
  align-items: start;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--color-acid);
  font-size: clamp(12px, 1.25vw, 14px);
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  max-width: 920px;
  margin-bottom: 20px;
  font-weight: 950;
  line-height: 0.92;
  text-transform: uppercase;
}

h1 {
  display: grid;
  gap: 3px;
  color: var(--color-text);
  font-size: clamp(44px, 5.3vw, 76px);
}

.hero-title-main,
.hero-title-sub {
  display: block;
}

.hero-title-main {
  color: var(--color-acid);
  white-space: nowrap;
}

.hero-title-sub {
  max-width: 700px;
  font-size: clamp(34px, 4.2vw, 60px);
}

h2 {
  font-size: clamp(36px, 5.2vw, 76px);
}

h3 {
  margin-bottom: 9px;
  font-size: clamp(20px, 2vw, 25px);
  line-height: 1.04;
}

.hero-lead,
.section-copy p,
.about-copy > p,
.booking-copy p {
  max-width: 650px;
  color: var(--color-muted);
  font-size: clamp(16px, 1.65vw, 21px);
}

.hero-actions,
.services-action,
.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 20px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 950;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #050505;
  background: var(--color-acid);
  box-shadow: 0 0 36px rgba(158, 255, 0, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--color-acid-strong);
}

.button-ghost {
  border-color: var(--color-line);
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.04);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: var(--color-acid);
  color: var(--color-acid);
}

.button-dark {
  color: var(--color-acid);
  background: #050505;
  border-color: #050505;
}

.button-light {
  color: #050505;
  background: transparent;
  border-color: rgba(5, 5, 5, 0.52);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.trust-list li {
  padding: 9px 12px;
  border: 1px solid var(--color-acid-line);
  color: var(--color-text);
  background: rgba(12, 12, 12, 0.72);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.portrait-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--color-acid-line);
  background: var(--color-panel);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.portrait-frame::after {
  position: absolute;
  inset: 10px;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(158, 255, 0, 0.4);
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.05);
}

.portrait-frame figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  padding-top: 16px;
  border-top: 2px solid var(--color-acid);
  text-transform: uppercase;
}

.portrait-frame figcaption span {
  color: var(--color-acid);
  font-size: clamp(32px, 4vw, 58px);
  font-weight: 950;
  line-height: 0.85;
}

.portrait-frame figcaption small {
  color: var(--color-text);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-align: right;
}

.portrait-frame-hero {
  height: min(72svh, 760px);
  transform: rotate(1.2deg);
}

.about-photo {
  height: min(70svh, 720px);
}

.scroll-hint {
  position: absolute;
  left: var(--section-x);
  bottom: 24px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.scroll-hint span {
  width: 42px;
  height: 2px;
  background: var(--color-acid);
  animation: hintPulse 1300ms ease-in-out infinite;
}

.works-section,
.services-section {
  background: linear-gradient(180deg, #050505, #0b0b0b);
}

.works-slider {
  min-width: 0;
}

.slider-stage {
  display: grid;
  grid-template-columns: 0.42fr minmax(260px, 1fr) 0.42fr;
  align-items: center;
  gap: clamp(10px, 2vw, 20px);
  min-height: 640px;
}

.work-card,
.work-preview {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--color-acid-line);
  background: var(--color-panel);
}

.work-card {
  min-height: min(72svh, 720px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55), 0 0 38px rgba(158, 255, 0, 0.16);
}

.work-preview {
  height: min(48svh, 480px);
  opacity: 0.42;
  transform: scale(0.92);
  filter: grayscale(0.35);
}

.work-card img,
.work-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 280ms ease, transform 620ms ease;
}

.work-card.is-changing img {
  opacity: 0;
  transform: scale(1.025);
}

.work-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding: 24px;
  background: linear-gradient(180deg, transparent, rgba(5, 5, 5, 0.94));
}

.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(158, 255, 0, 0.55);
  color: var(--color-acid);
  background: rgba(5, 5, 5, 0.68);
  cursor: pointer;
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  transform: translateY(-50%);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.slider-arrow:hover,
.slider-arrow:focus-visible {
  color: #050505;
  background: var(--color-acid);
  transform: translateY(-50%) scale(1.05);
}

.slider-arrow-prev {
  left: 14px;
}

.slider-arrow-next {
  right: 14px;
}

.work-card figcaption span {
  color: var(--color-acid);
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 950;
  line-height: 0.95;
  text-transform: uppercase;
}

.work-card figcaption small {
  max-width: 180px;
  color: var(--color-text);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-align: right;
  text-transform: uppercase;
}

.slider-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.12);
}

.slider-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--color-acid);
}

.slider-progress span.is-running {
  animation: progressFill 3600ms linear forwards;
}

.slider-controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  margin-top: 18px;
}

.slider-controls button {
  width: 34px;
  height: 6px;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.22);
  transition: width 180ms ease, background 180ms ease;
}

.slider-controls button.is-active {
  width: 54px;
  background: var(--color-acid);
}

.about-copy {
  position: relative;
}

.about-copy h2 {
  max-width: 640px;
  margin-bottom: 16px;
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1;
}

.about-copy::before {
  position: absolute;
  right: 0;
  top: -54px;
  z-index: -1;
  content: "CERTIFIED BARBER";
  color: rgba(158, 255, 0, 0.08);
  font-size: clamp(54px, 9vw, 120px);
  font-weight: 950;
  line-height: 0.78;
  text-align: right;
  text-transform: uppercase;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.about-points article,
.service-item {
  border: 1px solid var(--color-line);
  background: rgba(16, 16, 16, 0.82);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.about-points article {
  padding: 16px;
}

.about-points article:hover,
.service-item:hover {
  border-color: var(--color-acid);
  background: rgba(22, 22, 22, 0.94);
  transform: translateY(-3px);
}

.about-points span,
.service-item span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--color-acid);
  font-size: 13px;
  font-weight: 950;
}

.about-points h3,
.service-item h3 {
  text-transform: uppercase;
}

.about-points p,
.service-item p {
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 15px;
}

.about-points h3 {
  margin-bottom: 0;
  font-size: 16px;
}

.services-head {
  max-width: 780px;
}

.services-section .section-inner {
  padding-top: calc(var(--header-height) + 34px);
}

.services-head h2 {
  max-width: 660px;
  font-size: clamp(34px, 4vw, 58px);
}

.services-head p {
  max-width: 720px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(22px, 3vw, 34px);
}

.service-item {
  min-height: 168px;
  padding: clamp(16px, 1.8vw, 22px);
}

.service-wide {
  grid-column: auto;
}

.service-item h3 {
  font-size: clamp(18px, 1.45vw, 22px);
}

.services-action {
  margin-top: 24px;
}

.booking-section {
  display: flex;
  flex-direction: column;
  background: var(--color-bg);
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  align-items: center;
  gap: 34px;
  min-height: calc(100svh - 118px);
}

.booking-layout::before {
  position: absolute;
  inset: auto var(--section-x) 10%;
  z-index: -1;
  content: "TAGA";
  color: rgba(158, 255, 0, 0.09);
  font-size: clamp(130px, 28vw, 380px);
  font-weight: 950;
  line-height: 0.74;
  text-align: center;
  text-transform: uppercase;
}

.booking-copy h2 {
  color: var(--color-acid);
  font-size: clamp(48px, 8vw, 118px);
}

.booking-actions {
  align-content: start;
  padding: 22px;
  border: 1px solid rgba(5, 5, 5, 0.5);
  color: #050505;
  background: var(--color-acid);
}

.booking-actions .button {
  width: 100%;
}

.booking-actions p {
  margin: 10px 0 0;
  color: rgba(5, 5, 5, 0.78);
  font-size: 14px;
  font-weight: 800;
}

.site-footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, var(--max-width));
  margin: auto auto 0;
  padding: 22px var(--section-x) 26px;
  text-align: center;
}

.creator-link {
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 180ms ease, text-shadow 180ms ease;
}

.creator-link:hover,
.creator-link:focus-visible {
  color: var(--color-acid);
  text-shadow: 0 0 18px rgba(158, 255, 0, 0.36);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 600ms ease, transform 600ms ease;
}

@keyframes hintPulse {
  0%,
  100% {
    transform: scaleX(0.65);
    transform-origin: left;
  }

  50% {
    transform: scaleX(1);
  }
}

@keyframes progressFill {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@media (min-width: 900px) {
  html {
    scroll-snap-type: y mandatory;
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .works-layout,
  .about-layout,
  .booking-layout {
    grid-template-columns: 1fr;
  }

  .hero-media {
    max-width: 580px;
  }

  .portrait-frame-hero,
  .about-photo {
    height: auto;
  }

  .portrait-frame img {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .works-layout {
    align-content: center;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 68px;
  }

  .skip-link {
    display: none;
  }

  .site-header {
    position: absolute;
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .brand-mark span {
    font-size: 17px;
  }

  .section {
    min-height: auto;
    overflow: visible;
  }

  .section-inner {
    min-height: auto;
    padding-top: calc(var(--header-height) + 28px);
    padding-bottom: 52px;
  }

  .hero-section .section-inner {
    min-height: 100svh;
  }

  .hero-grid {
    align-content: center;
  }

  .hero-actions,
  .services-action,
  .booking-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .trust-list {
    display: grid;
    grid-template-columns: 1fr;
  }

  .scroll-hint {
    display: none;
  }

  .slider-stage {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .work-preview {
    display: none;
  }

  .work-card {
    min-height: 58svh;
  }

  .slider-arrow {
    display: none;
  }

  .work-card figcaption {
    align-items: start;
    flex-direction: column;
  }

  .work-card figcaption small {
    max-width: none;
    text-align: left;
  }

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

  .service-wide {
    grid-column: auto;
  }

  .site-footer {
    padding-top: 10px;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 34px;
  }

  .header-cta {
    min-height: 42px;
    padding: 11px 12px;
    font-size: 12px;
  }

  .brand-mark small {
    display: none;
  }

  .portrait-frame figcaption {
    align-items: start;
    flex-direction: column;
  }

  .portrait-frame figcaption small {
    text-align: left;
  }

  .work-card {
    min-height: 54svh;
  }

  .slider-controls button {
    width: 24px;
  }

  .slider-controls button.is-active {
    width: 38px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
