:root {
  --silver: #d9e1ea;
  --silver-bright: #ffffff;
  --black: #08090b;
  --card: #121212;
  --muted: #aeb4bf;
  --white: #f5f7fa;
  --line: rgba(200,211,224, 0.35);
  --max: 1180px;
  --nav-h: 82px;
  --bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}
body {
  background: var(--black);
  color: var(--white);
  font-family: Inter, system-ui, sans-serif;
  overflow-x: hidden;
  padding-top: var(--nav-h);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.wrap { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; }

/* Header */
.nav {
  height: var(--nav-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 0 28px;
  background: #050505;
  border-bottom: 1px solid var(--line);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.brand { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 180px;
  height: 60px;
  object-fit: contain;
  display: block;
  background: #000;
  border-radius: 4px;
}
.logo-mark.large { width: 160px; height: 80px; object-fit: contain; }
.brand strong {
  display: block;
  font-family: Inter, system-ui, sans-serif;
  font-size: 22px;
  letter-spacing: 0;
  font-weight: 700;
}
.brand small {
  display: block;
  color: var(--silver);
  letter-spacing: 0;
  font-size: 9px;
  margin-top: 3px;
}
.links { display: flex; justify-content: center; gap: 20px; }
.links a {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  color: #d5d9e0;
  padding: 8px 0;
}
.links a.active {
  color: var(--silver);
  box-shadow: inset 0 -2px 0 var(--silver);
}
.nav-right { justify-self: end; display: flex; gap: 10px; align-items: center; }
.lang { background: none; border: 0; color: var(--muted); font-size: 10px; letter-spacing: 0; padding: 4px; min-height: 44px; min-width: 36px; }
.lang.on { color: var(--silver); }
.menu-btn, .drawer, .mobile-cta, .ctx { display: none; }
.menu-btn {
  width: 44px; height: 44px; border: 1px solid var(--silver); border-radius: 8px;
  background: transparent; color: var(--silver);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--silver);
  color: #14171c;
  border: 0;
  border-radius: 4px;
  padding: 12px 18px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  min-height: 44px;
}
.btn-ghost {
  background: transparent;
  color: var(--silver);
  border: 1px solid var(--silver);
  border-radius: 4px;
  padding: 11px 16px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
}

.hero,
.section,
footer {
  scroll-margin-top: var(--nav-h);
}

/* Hero */
.hero {
  position: relative;
  min-height: 82vh;
  overflow: hidden;
  background: #050505;
}
.section {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero video.bg,
.hero img.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero .bg-mobile {
  display: none;
}
.hero .bg-desktop {
  display: block;
}
.hero .shade { display: none; }
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 150px;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, rgba(8,9,11,.35) 45%, var(--black));
}
.hero-nudge {
  position: absolute;
  left: 50%;
  bottom: 12px;
  z-index: 3;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 14px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(5, 5, 5, .38);
  color: #f7f9fb;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  text-shadow: 0 1px 8px #000;
  box-shadow: 0 10px 30px rgba(0,0,0,.28);
  backdrop-filter: blur(14px);
}
.hero-nudge:hover {
  border-color: rgba(255,255,255,.34);
  background: rgba(5, 5, 5, .5);
}
.hero-copy {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 80px));
  margin: 0 auto;
  padding: 11vh 0 12vh;
}
.hero-brand-badge { margin-bottom: 24px; }
.hero-logo { width: 320px; height: 108px; object-fit: contain; }
.hero-brand-text {
  display: flex;
  flex-direction: column;
}
.hero-brand-title {
  font-family: Inter, system-ui, sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--white);
  line-height: 1;
}
.hero-brand-sub {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--silver);
  margin-top: 4px;
}
.hero-copy h1 {
  font-family: Inter, system-ui, sans-serif;
  font-size: 64px;
  line-height: .92;
  font-weight: 700;
  text-transform: uppercase;
  max-width: 640px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9), 0 2px 8px rgba(0, 0, 0, 0.9);
}
.hero-copy h1 span { color: var(--silver); }
.hero-copy p {
  max-width: 380px;
  color: var(--white);
  margin: 22px 0 28px;
  line-height: 1.6;
  font-size: 16px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95);
}

/* Sections */
.section { padding: 78px 0 70px; }
.title {
  text-align: center;
  font-family: Inter, system-ui, sans-serif;
  letter-spacing: 0;
  font-size: 26px;
  text-transform: uppercase;
}
.star { text-align: center; color: var(--silver); margin: 8px 0 38px; font-size: 11px; }

.why { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.why article { text-align: center; padding: 0 12px; }
.ico {
  width: 62px; height: 62px; margin: 0 auto 14px;
  border: 1px solid var(--silver); border-radius: 8px;
  display: grid; place-items: center; color: var(--silver);
  background: linear-gradient(180deg, rgba(200,211,224,.12), rgba(200,211,224,.03));
  box-shadow: 0 0 18px rgba(200,211,224,.08);
}
.ico svg { width: 30px; height: 30px; display: block; }
.why h3 { font-size: 12px; letter-spacing: 0; margin-bottom: 8px; }
.why p { color: var(--muted); font-size: 13px; line-height: 1.45; }

.services { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.service {
  background: var(--card);
  border-radius: 8px;
  padding: 28px 12px 22px;
  text-align: center;
  min-height: 220px;
  border: 1px solid rgba(255,255,255,.04);
}
.service h3 { font-size: 12px; letter-spacing: 0; margin: 14px 0 8px; }
.service p { color: var(--muted); font-size: 12px; min-height: 36px; line-height: 1.4; }
.price { color: var(--silver); font-family: Inter, system-ui, sans-serif; font-size: 30px; margin-top: 12px; }

.team { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; max-width: 900px; margin-inline: auto; }
.barber { background: #0c0c0c; text-align: center; padding-bottom: 16px; overflow: hidden; }
.barber .photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #111;
}
.barber .photo img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 20%;
}
.barber h3 { margin: 14px 0 4px; letter-spacing: 0; font-size: 13px; }
.barber p { color: var(--silver); font-size: 12px; }
.stats {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
}
.stat { display: flex; gap: 12px; align-items: center; color: var(--muted); font-size: 13px; }
.stat b { display: block; color: var(--white); font-size: 18px; font-family: Inter, system-ui, sans-serif; }
.stat .ico { width: 40px; height: 40px; margin: 0; flex: none; }

.fresh {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  background: #0b0b0b;
  border: 1px solid rgba(200,211,224,.22);
  overflow: hidden;
}
.fresh-copy { padding: 40px; }
.fresh-copy h2 {
  font-family: Inter, system-ui, sans-serif;
  letter-spacing: 0;
  font-size: 28px;
  margin: 12px 0 8px;
}
.fresh-copy p { color: var(--muted); margin-bottom: 18px; }
.fresh img { width: 100%; height: 100%; min-height: 230px; object-fit: cover; }

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(200,211,224, 0.35);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.5);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.gallery img:hover {
  transform: scale(1.03);
  border-color: var(--silver);
  box-shadow: 0 8px 28px rgba(200,211,224, 0.3);
}
.work-video {
  width: min(100%, 460px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(200,211,224, 0.42);
  border-radius: 8px;
  background: #050505;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55), 0 0 28px rgba(200,211,224, 0.16);
}
.work-video video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: contain;
  background: #050505;
}
.center { text-align: center; margin-top: 28px; }

.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review { background: #0c0c0c; border-radius: 8px; padding: 28px 24px; }
.stars { color: var(--silver); letter-spacing: 0; margin-bottom: 12px; }
.review q { color: var(--muted); font-size: 15px; line-height: 1.55; display: block; margin-bottom: 18px; }
.who { display: flex; align-items: center; gap: 10px; font-size: 13px; }
.avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: #2a2a2a; display: grid; place-items: center; color: var(--silver);
}

.cta {
  display: grid;
  grid-template-columns: 1.05fr 1.4fr .5fr;
  border: 1px solid rgba(200,211,224,.5);
  overflow: hidden;
  align-items: center;
}
.cta img { width: 100%; height: 240px; object-fit: cover; }
.cta-copy { text-align: center; padding: 32px 20px; }
.cta-copy .kicker { color: var(--silver); letter-spacing: 0; font-size: 11px; }
.cta-copy h2 {
  font-family: Inter, system-ui, sans-serif;
  font-size: 30px;
  margin: 10px 0;
  letter-spacing: 0;
}
.cta-copy p { color: var(--muted); margin-bottom: 18px; }
.glyph { display: grid; place-items: center; color: var(--silver); opacity: .75; }

.footer {
  display: grid;
  grid-template-columns: 1.4fr .9fr .9fr 1.15fr 1fr;
  gap: 28px;
  padding: 56px 0 24px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer h4 { font-size: 12px; letter-spacing: 0; margin-bottom: 14px; }
.footer a, .footer p { display: block; color: var(--muted); font-size: 14px; padding: 4px 0; }
.copy { text-align: center; color: #949ba6; font-size: 12px; padding: 16px 0 28px; border-top: 1px solid rgba(255,255,255,.06); }

.drawer {
  position: fixed; inset: 0; z-index: 80;
  background: rgba(0,0,0,.72);
}
.drawer.open { display: block; }
.drawer-panel {
  margin-left: auto; width: min(360px, 88vw); height: 100%;
  background: #0a0a0a; border-left: 1px solid var(--line);
  padding: calc(18px + env(safe-area-inset-top)) 20px calc(20px + env(safe-area-inset-bottom));
  display: flex; flex-direction: column; gap: 8px; overflow: auto;
}
.drawer-panel a, .drawer-panel .lang {
  display: flex; align-items: center; min-height: 48px;
  letter-spacing: 0; font-size: 13px; font-weight: 700; text-transform: uppercase;
  color: #d5d9e0; border-bottom: 1px solid rgba(255,255,255,.06);
}
.drawer-langs { display: flex; gap: 8px; padding: 12px 0; }
.drawer-langs .lang { min-width: 44px; justify-content: center; border: 1px solid var(--line); border-radius: 8px; }
.drawer .btn, .drawer .btn-ghost { justify-content: center; margin-top: 8px; }

.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, transparent, #050505 28%);
}
.mobile-cta .btn { width: 100%; justify-content: center; min-height: 48px; }

.ctx {
  position: fixed; z-index: 120; min-width: 230px;
  background: #14171c; border: 1px solid var(--silver); border-radius: 12px;
  padding: 6px; box-shadow: 0 16px 40px rgba(0,0,0,.45);
}
.ctx button {
  display: block; width: 100%; text-align: left;
  min-height: 44px; padding: 10px 14px;
  background: none; border: 0; color: var(--white);
  font-size: 14px; border-radius: 8px;
}
.ctx button:active { background: rgba(200,211,224,.12); }

.reveal {
  opacity: 0;
  transform: translate3d(0, 42px, 0) scale(0.96);
}
.reveal.is-in {
  animation: rise var(--dur, 0.7s) var(--bounce) var(--d, 0ms) both;
}
.reveal-left { transform: translate3d(-36px, 16px, 0) scale(0.96); }
.reveal-right { transform: translate3d(36px, 16px, 0) scale(0.96); }
.reveal-pop { transform: translate3d(0, 18px, 0) scale(0.86); }
@keyframes rise {
  0% { opacity: 0; }
  100% { opacity: 1; transform: none; }
}
.hero-copy.reveal.is-in { animation-duration: 0.9s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-snap-type: none; }
  .reveal, .reveal.is-in {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

@media (max-width: 1200px) {
  :root { --nav-h: calc(64px + env(safe-area-inset-top)); }
  .nav {
    display: flex; justify-content: space-between; align-items: center;
    height: var(--nav-h);
    padding: env(safe-area-inset-top) 16px 0;
    grid-template-columns: none;
  }
  .links, .nav-right { display: none; }
  .menu-btn { display: grid; place-items: center; }
  .mobile-cta { display: block; }
  .logo-mark { width: 160px; height: 48px; }
  .brand strong { font-size: 18px; }
  .why, .gallery, .reviews, .footer, .fresh, .cta { grid-template-columns: 1fr 1fr; }
  .services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .service {
    padding: 16px 6px 14px;
    min-height: 155px;
    border-radius: 8px;
  }
  .service .ico {
    width: 42px;
    height: 42px;
    margin: 0 auto 8px;
  }
  .service .ico svg {
    width: 20px;
    height: 20px;
  }
  .service h3 {
    font-size: 10px;
    letter-spacing: 0;
    margin: 8px 0 4px;
  }
  .service p {
    font-size: 10px;
    line-height: 1.25;
    min-height: 26px;
    margin-bottom: 4px;
  }
  .price {
    font-size: 20px;
    margin-top: 4px;
  }
  .gallery img { height: 260px; }
  .team { grid-template-columns: 1fr 1fr; }
  .stats { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; }
  html { scroll-padding-bottom: 72px; }
  .hero .bg-desktop { display: none; }
  .hero .bg-mobile { display: block; }
  .hero-copy { width: min(var(--max), calc(100% - 32px)); padding: 8vh 0 14vh; }
  .hero img.bg { object-position: 70% center; }
  .wrap { width: min(var(--max), calc(100% - 32px)); }
  body { padding-bottom: calc(96px + env(safe-area-inset-bottom)); }
  .barber { padding-bottom: 20px; }
}
@media (max-width: 640px) {
  .why, .gallery, .reviews, .footer, .fresh, .cta { grid-template-columns: 1fr; }
  .team { grid-template-columns: 1fr 1fr; }
  .stats { flex-direction: column; }
  .hero-copy h1 { font-size: 42px; }
}

/* WhatsApp Floating Widget */
.whatsapp-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4), 0 0 12px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}
.whatsapp-widget:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5), 0 0 18px rgba(37, 211, 102, 0.6);
}
.whatsapp-widget svg {
  width: 34px;
  height: 34px;
  fill: #ffffff;
}
@media (max-width: 768px) {
  .whatsapp-widget {
    bottom: 80px;
    right: 16px;
    width: 52px;
    height: 52px;
  }
  .whatsapp-widget svg {
    width: 28px;
    height: 28px;
  }
}

/* Diamond: polished silver, faceted details and tactile controls. */
.nav { background: rgba(8,9,11,.94); backdrop-filter: blur(20px); }
.brand { min-width: 0; }
.logo-mark { background: transparent; }
.btn, .btn-ghost { border-radius: 8px; justify-content: center; font-size: 12px; }
.btn { background: linear-gradient(160deg, #fff, #c7ced8); color: #11141a; box-shadow: inset 0 1px #fff, 0 4px 16px #0003; }
.btn:hover { background: #fff; }
.btn-ghost { border-color: #555c67; }
a:focus-visible, button:focus-visible { outline: 2px solid #a7e9e0; outline-offset: 5px; }
.hero { min-height: min(760px, 82svh); }
.hero-copy { display: block; }
.section { border-bottom: 1px solid #ffffff09; }
.title { font-size: 32px; font-weight: 600; text-transform: none; }
.star { display: flex; align-items: center; justify-content: center; gap: 14px; margin: 18px 0 40px; }
.star::before, .star::after { content: ""; width: 42px; height: 1px; background: #727b8766; }
.star svg { width: 22px; height: 22px; color: #c9e0ec; }
.ico { position: relative; width: 82px; height: 82px; border-radius: 22px; color: #fff;
  background: linear-gradient(145deg, #737c89 0%, #333a44 44%, #15181e 46%, #444c59 100%);
  border: 1px solid #cbd6e080; box-shadow: inset 0 1px 2px #fff8, inset 0 -3px 8px #0008, 0 8px 20px #0006; }
.ico svg { width: 40px; height: 40px; filter: drop-shadow(0 2px 2px #0009); }
.why article:nth-child(2) .ico, .service:nth-child(3) .ico { background: linear-gradient(145deg, #71959a, #244349 48%, #152b30 49%, #456970); }
.why article:nth-child(3) .ico, .service:nth-child(4) .ico { background: linear-gradient(145deg, #8b8595, #443e51 48%, #25222e 49%, #62596f); }
.why h3, .service h3 { font-size: 17px; font-weight: 600; }
.why p, .service p { font-size: 14px; line-height: 1.6; }
.services { gap: 18px; }
.service { padding: 32px 20px 26px; border: 1px solid #c5d3e026; display: flex; flex-direction: column; align-items: center; transition: border-color .2s, background .2s; }
.service:hover { border-color: #c5d3e080; background: #191c21; }
.service p { flex: 1; margin-bottom: 16px; }
.service .price { font-size: 30px; font-weight: 600; min-height: 38px; }
.service .price[data-i18n] { font-size: 18px; display: flex; align-items: center; }
.barber { border-radius: 8px; border: 1px solid #ffffff17; }
.barber .photo { aspect-ratio: 1; }
.barber h3 { font-size: 20px; }
.barber p { margin: 0 10px; line-height: 1.5; }
.stats { border: 0; padding: 20px; }
.stat .ico { border-radius: 12px; width: 48px; height: 48px; }
.stat .ico svg { width: 25px; height: 25px; }
.fresh, .cta { border: 0; background: transparent; }
.work-video { box-shadow: none; border-color: #ffffff26; }
.drawer-panel { padding-top: calc(var(--nav-h) + 20px); }
.footer .btn { display: inline-flex; padding: 12px 18px; color: #11141a; }
@media (max-width: 1200px) {
  .services { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service { padding: 26px 18px; }
  .service .ico { width: 76px; height: 76px; margin-bottom: 16px; }
  .service .ico svg { width: 38px; height: 38px; }
  .service h3 { font-size: 17px; }
  .service p { font-size: 14px; line-height: 1.5; }
  .mobile-cta { padding-right: 82px; }
  .whatsapp-widget { bottom: calc(10px + env(safe-area-inset-bottom)); right: 16px; width: 48px; height: 48px; }
}
@media (max-width: 640px) {
  .section { padding: 52px 0; }
  .title { font-size: 28px; }
  .hero { min-height: calc(84svh - var(--nav-h)); }
  .hero-nudge {
    bottom: 10px;
    max-width: calc(100% - 40px);
    min-height: 40px;
    padding: 8px 12px;
    font-size: 15px;
  }
  .why { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 16px; }
  .why article { padding: 0; }
  .why h3 { font-size: 15px; }
  .why p { font-size: 13px; }
  .services { gap: 12px; }
  .service { padding: 24px 12px 20px; }
  .service h3 { font-size: 16px; }
  .service p { font-size: 13px; }
  .barber h3 { font-size: 18px; }
  .barber p { font-size: 11px; }
  .fresh-copy { padding: 24px 0; }
  .glyph { padding: 20px; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
