:root {
  --black: #050505;
  --ink: #0b0b0b;
  --panel: #111;
  --soft: #1a1a1a;
  --white: #f5f0e8;
  --muted: #c7c0b6;
  --red: #d73228;
  --blue: #1764ca;
  --gold: #c4a15b;
  --line: rgba(255, 255, 255, .12);
  --shadow: 0 30px 100px rgba(0, 0, 0, .65);
  --max: 1180px
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  overflow-x: hidden
}

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

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

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

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 18px 28px;
  transition: .35s;
  background: linear-gradient(to bottom, rgba(0, 0, 0, .72), rgba(0, 0, 0, 0));
  border-bottom: 1px solid transparent
}

.nav.scrolled {
  background: rgba(5, 5, 5, .88);
  backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
  padding: 12px 28px
}

.nav-inner {
  max-width: var(--max);
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px
}

.brand-mark {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .25);
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #111
}

.brand-mark:before {
  content: "";
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: repeating-linear-gradient(135deg, var(--red) 0 7px, #fff 7px 14px, var(--blue) 14px 21px);
  animation: spin 4s linear infinite
}

.brand-text strong {
  display: block;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  font-size: 29px;
  letter-spacing: 2px;
  line-height: .9;
  color: #efefef;
  text-shadow: 2px 2px 0 var(--red), -1px -1px 0 #222
}

.brand-text span {
  display: block;
  color: #2574e8;
  letter-spacing: 6px;
  font-size: 12px;
  font-weight: 900;
  margin-top: 4px
}

.links {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase
}

.links a {
  opacity: .76;
  position: relative
}

.links a:hover,
.links a.active {
  opacity: 1;
  color: #fff
}

.links a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: .25s
}

.links a:hover:after,
.links a.active:after {
  transform: scaleX(1)
}

.nav-cta {
  display: flex;
  gap: 12px;
  align-items: center
}

.phone {
  font-weight: 900;
  white-space: nowrap
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, .18);
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .9px;
  transition: .25s;
  background: rgba(255, 255, 255, .04);
  backdrop-filter: blur(8px)
}

.btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, .42)
}

.btn-red {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  box-shadow: 0 12px 36px rgba(215, 50, 40, .25)
}

.btn-blue {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff
}

.btn-ghost {
  background: rgba(0, 0, 0, .25)
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 110px 24px 60px;
  overflow: hidden;
  isolation: isolate
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .45), rgba(0, 0, 0, .35) 45%, #050505 100%), url('../images/shop-chairs.png') center/cover;
  filter: saturate(.8) brightness(.72);
  transform: scale(1.04);
  z-index: -3
}

.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 0 28%, rgba(0, 0, 0, .74) 72%), linear-gradient(90deg, #050505 0%, transparent 38%, transparent 64%, #050505 100%);
  z-index: -2
}

.stage {
  position: relative;
  width: min(1050px, 96vw);
  height: 600px;
  perspective: 1200px;
  display: grid;
  place-items: center
}

.welcome {
  position: absolute;
  bottom: 4px;
  text-align: center;
  z-index: 5;
  transition: .25s
}

.eyebrow {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase
}

.welcome h1 {
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  font-size: clamp(54px, 10vw, 132px);
  line-height: .88;
  margin: 16px 0 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 20px 60px rgba(0, 0, 0, .9)
}

.welcome p {
  font-size: clamp(16px, 2vw, 22px);
  color: #e8e1d7;
  margin: 0 auto;
  max-width: 780px;
  line-height: 1.55;
  font-weight: 650
}

.welcome .actions {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap
}

.scroll-hint {
  margin-top: 34px;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  opacity: .85
}

.scroll-hint:after {
  content: "";
  display: block;
  margin: 12px auto 0;
  width: 1px;
  height: 48px;
  background: linear-gradient(var(--red), transparent);
  animation: pulse 1.5s infinite
}

.object {
  position: absolute;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform .08s linear
}

.pole {
  width: 70px;
  height: 430px;
  border-radius: 40px;
  background: linear-gradient(90deg, rgba(255, 255, 255, .95), #aaa 18%, #fefefe 38%, #777 72%, #fff);
  box-shadow: inset 0 0 18px rgba(0, 0, 0, .75), 0 35px 100px rgba(0, 0, 0, .75);
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, .55)
}

.pole:before {
  content: "";
  position: absolute;
  inset: -80px -40px;
  background: repeating-linear-gradient(145deg, var(--red) 0 24px, #f5f5f5 24px 48px, var(--blue) 48px 72px, #f5f5f5 72px 96px);
  background-size: 136px 136px;
  animation: barberSlide 2.8s linear infinite;
  transform: skewY(-10deg);
  will-change: background-position
}

.pole:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, .55), transparent 22%, transparent 65%, rgba(0, 0, 0, .55));
  border-radius: inherit
}

.cap {
  position: absolute;
  left: 50%;
  width: 86px;
  height: 24px;
  background: linear-gradient(#eee, #777, #fff);
  border-radius: 20px;
  transform: translateX(-50%);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .55)
}

.cap.top {
  top: -19px
}

.cap.bottom {
  bottom: -19px
}

.pole-left {
  left: 30px;
  top: 80px;
  transform: rotateY(18deg) rotateZ(-2deg)
}

.pole-right {
  right: 30px;
  top: 80px;
  transform: rotateY(-18deg) rotateZ(2deg)
}

.razor {
  width: 460px;
  height: 210px;
  top: 160px;
  left: 50%;
  margin-left: -230px;
  filter: drop-shadow(0 35px 48px rgba(0, 0, 0, .7));
  transform: rotateX(10deg) rotateY(-10deg) rotateZ(-5deg)
}

.razor .blade {
  position: absolute;
  left: 150px;
  top: 20px;
  width: 270px;
  height: 96px;
  background: linear-gradient(135deg, #f9f9f9, #9e9e9e 55%, #fff);
  clip-path: polygon(0 20%, 86% 0, 100% 42%, 22% 100%);
  border-radius: 8px;
  box-shadow: inset 0 0 18px rgba(0, 0, 0, .3)
}

.razor .blade:before {
  content: "";
  position: absolute;
  left: 20px;
  right: 40px;
  top: 26px;
  height: 20px;
  background: rgba(0, 0, 0, .2);
  border-radius: 20px
}

.razor .handle {
  position: absolute;
  left: 10px;
  top: 102px;
  width: 250px;
  height: 38px;
  background: linear-gradient(90deg, #222, #555, #111);
  border-radius: 40px;
  transform: rotate(-12deg);
  box-shadow: inset 0 0 10px #000
}

.razor .neck {
  position: absolute;
  left: 178px;
  top: 82px;
  width: 88px;
  height: 28px;
  background: linear-gradient(#ddd, #777);
  border-radius: 20px;
  transform: rotate(-18deg)
}

.hero-card {
  position: absolute;
  right: 90px;
  bottom: 68px;
  width: 320px;
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(10, 10, 10, .55);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  box-shadow: var(--shadow);
  opacity: .96
}

.hero-card h3 {
  font-family: Impact, sans-serif;
  font-size: 30px;
  letter-spacing: 1px;
  margin: 0 0 8px
}

.hero-card p {
  color: var(--muted);
  line-height: 1.55;
  margin: 0
}

.section {
  padding: 96px 24px;
  position: relative
}

.container {
  max-width: var(--max);
  margin: auto
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center
}

.label {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  margin-bottom: 16px
}

.label:before,
.label:after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--red)
}

h2 {
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  font-size: clamp(42px, 7vw, 82px);
  line-height: .95;
  margin: 0 0 20px;
  text-transform: uppercase;
  letter-spacing: 1px
}

.lead {
  font-size: 19px;
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 28px
}

.photo-frame {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  min-height: 520px;
  background: #111
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0
}

.photo-frame:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .48))
}

.floating-note {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  background: rgba(0, 0, 0, .58);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 20px
}

.floating-note strong {
  font-family: Impact, sans-serif;
  font-size: 28px;
  letter-spacing: 1px
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 30px
}

.fact {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02))
}

.fact b {
  font-size: 25px
}

.fact span {
  display: block;
  color: var(--muted);
  margin-top: 4px
}

.services {
  background: linear-gradient(180deg, #050505, #0d0d0d)
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px
}

.service-card {
  position: relative;
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .025));
  overflow: hidden;
  transition: .3s
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(215, 50, 40, .55)
}

.service-card .num {
  position: absolute;
  right: 22px;
  top: 18px;
  color: rgba(255, 255, 255, .12);
  font-family: Impact, sans-serif;
  font-size: 54px
}

.icon {
  font-size: 36px;
  margin-bottom: 28px
}

.service-card h3 {
  font-family: Impact, sans-serif;
  font-size: 34px;
  letter-spacing: 1px;
  margin: 0 0 10px;
  text-transform: uppercase
}

.service-card p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0
}

.price {
  margin-top: 22px;
  color: #fff;
  font-weight: 900;
  display: inline-flex;
  border-bottom: 2px solid var(--red)
}

.cta-band {
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(0, 0, 0, .75), rgba(0, 0, 0, .45)), url('https://images.unsplash.com/photo-1621605815971-fbc98d665033?auto=format&fit=crop&w=1600&q=80') center/cover;
  min-height: 390px;
  display: flex;
  align-items: center;
  padding: 56px;
  margin-top: 42px
}

.reviews {
  background: #f3eee5;
  color: #111
}

.reviews h2 {
  color: #111
}

.reviews .lead {
  color: #514b44
}

.review-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 18px
}

.rating-box,
.review {
  border: 1px solid rgba(0, 0, 0, .12);
  border-radius: 26px;
  background: rgba(255, 255, 255, .55);
  padding: 28px
}

.stars {
  color: var(--red);
  font-size: 30px;
  letter-spacing: 3px
}

.rating-number {
  font-family: Impact, sans-serif;
  font-size: 76px;
  line-height: 1
}

.review p {
  line-height: 1.65;
  color: #302b25
}

.review strong {
  display: block;
  margin-top: 18px
}

.contact-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 26px
}

.contact-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 26px;
  background: #111
}

.contact-card h3 {
  margin: 0 0 12px;
  font-size: 16px;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 2px
}

.map {
  border: 0;
  width: 100%;
  height: 420px;
  border-radius: 30px;
  filter: grayscale(1) invert(.92) contrast(.9);
  margin-top: 28px
}

.footer {
  padding: 48px 24px;
  background: #030303;
  border-top: 1px solid var(--line)
}

.footer-inner {
  max-width: var(--max);
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
  color: var(--muted)
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: 1s cubic-bezier(.2, .8, .2, 1)
}

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

.mobile-call {
  display: none;
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 60;
  text-align: center
}

.page-hero {
  min-height: 56vh;
  padding: 160px 24px 70px;
  display: flex;
  align-items: end;
  background: linear-gradient(180deg, rgba(0, 0, 0, .45), #050505), url('../images/shop-reception.png') center/cover
}

.page-hero .container {
  width: 100%
}

.content-block {
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 36px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
  margin-top: 28px
}

.hours {
  display: grid;
  gap: 10px
}

.hours div {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
  color: var(--muted)
}

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

.form input,
.form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #0c0c0c;
  color: #fff;
  padding: 15px 16px;
  font: inherit
}

.form textarea {
  min-height: 130px
}

@keyframes barberSlide {
  from {
    background-position: 0 0
  }

  to {
    background-position: 0 136px
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}

@keyframes pulse {
  50% {
    opacity: .25;
    transform: translateY(12px)
  }
}

@media (max-width:980px) {
  .links {
    display: none
  }

  .phone {
    display: none
  }

  .stage{
    width:100%;
    height:600px;
    overflow:hidden;
}

  .pole {
    height: 320px;
    width: 52px
  }

  .pole-left {
    left: 4px
  }

  .pole-right {
    right: 4px
  }

  .razor {
    width: 310px;
    height: 150px;
    margin-left: -155px;
    top: 190px
  }

  .razor .blade {
    left: 100px;
    width: 190px;
    height: 72px
  }

  .razor .handle {
    width: 170px;
    top: 82px
  }

  .razor .neck {
    left: 120px;
    top: 66px
  }

  .hero-card {
    display: none
  }

  .split,
  .review-grid,
  .contact-strip {
    grid-template-columns: 1fr
  }

  .cards {
    grid-template-columns: 1fr 1fr
  }

  .welcome h1 {
    font-size: 58px
  }

  .mobile-call {
    display: block
  }

  .nav-cta .btn {
    display: none
  }

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

  .facts {
    grid-template-columns: 1fr
  }

  .photo-frame {
    min-height: 420px
  }
}

@media (max-width:620px) {
  .nav {
    padding: 12px 14px
  }

  .brand-text strong {
    font-size: 23px
  }

  .brand-text span {
    letter-spacing: 4px;
    font-size: 10px
  }

  .brand-mark {
    width: 36px;
    height: 36px
  }

  .hero {
    padding-top: 90px
  }

  .stage {
    height: 600px
  }

  .welcome {
    bottom: 20px
  }

  .welcome p {
    font-size: 15px
  }

  .welcome .actions {
    gap: 10px
  }

  .btn {
    width: 100%;
    padding: 14px
  }

  .cards {
    grid-template-columns: 1fr
  }

  .section {
    padding: 72px 18px
  }

  .pole {
    opacity:.6;
    scale:.7;
  }

  .pole-left {
    transform:scale(.75) rotateZ(-2deg);
    left:0;
  }

  .pole-right {
    transform:scale(.75) rotateZ(2deg);
    right:0;
  }

  .razor {
    opacity: .9
  }

  .cta-band {
    padding: 28px;
    min-height: 320px
  }

  .review-grid {
    gap: 14px
  }
}

/* Client revision: removed floating intro card behind buttons */
.hero-card {
  display: none !important
}

/* Final owner fix: hide intro card behind hero buttons */
.hero-card {
  display: none !important
}

.text-icon {
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  font-size: 18px;
  letter-spacing: 2px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  height: 38px;
  background: rgba(215, 50, 40, .14);
  box-shadow: inset 0 0 18px rgba(215, 50, 40, .08)
}

/* Mobile overflow / right-shift fix */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

main,
section,
header,
footer,
.nav,
.hero,
.immersive,
.section,
.page-hero,
.contact-wrap,
.services-preview,
industries,
.reviews,
.cta {
  max-width: 100%;
}

img,
canvas,
video {
  max-width: 100%;
}

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

  .hero-content,
  .section,
  .section-head,
  .contact-wrap,
  .service-grid,
  .trade-grid,
  .review-grid,
  .checkbox-grid,
  .footer {
    width: 100%;
    max-width: 100%;
    padding-left: 18px;
    padding-right: 18px;
  }

  h1,
  h2,
  h3,
  p {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .hero h1,
  .page-hero h1,
  .section h2 {
    font-size: clamp(2.2rem, 11vw, 4rem);
    line-height: 0.95;
  }

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

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero{
    overflow:hidden;
  }

  .stage{
    overflow:hidden;
  }
}