:root{
  --bg:#0b0b0b;
  --panel:#111111;
  --panel2:#0e0e0e;
  --text:#ffffff;
  --muted:rgba(255,255,255,.72);
  --line:rgba(255,255,255,.12);
  --red:#b11226;
  --max:1200px;
  --radius:18px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
html{scroll-behavior:smooth}

body{
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:var(--bg);
  color:var(--text);
  overflow-x:hidden;
}

a{color:inherit;text-decoration:none}
.container{width:min(var(--max), calc(100% - 2rem)); margin:0 auto}

/* Subtle grain to reduce flatness */
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:0;
  opacity:.055;
  mix-blend-mode: overlay;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
}

main, header, footer{ position:relative; z-index:1; }

/* Header / Nav */
.site-header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:999;
  background: linear-gradient(to bottom, rgba(0,0,0,.55), rgba(0,0,0,0));
  transition:background .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
}

.site-header.scrolled{
  background:rgba(11,11,11,.84);
  backdrop-filter: blur(10px);
  box-shadow:0 10px 30px rgba(0,0,0,.35);
}

.nav{
  width:min(var(--max), calc(100% - 2rem));
  margin:0 auto;
  padding:18px 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.nav-brand{
  display:flex;
  flex-direction:column;
  line-height:1;
  gap:4px;
  text-transform:uppercase;
  filter: drop-shadow(0 12px 26px rgba(0,0,0,.55));
}

.brand-top{
  font-family:"Bebas Neue", Inter, system-ui, sans-serif;
  font-size:30px;
  letter-spacing:.14em;
}

.brand-bottom{
  font-weight:800;
  font-size:11px;
  letter-spacing:.30em;
  opacity:.92;
  position:relative;
  padding-top:7px;
}

.brand-bottom::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:72px;
  height:2px;
  background:var(--red);
}

.nav-links{
  display:flex;
  align-items:center;
  gap:18px;
}

.nav-links a{
  font-weight:800;
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  opacity:.92;
  transition:opacity .15s ease, transform .15s ease, color .15s ease;
}

.nav-links a:hover{
  opacity:1;
  transform: translateY(-1px);
}

.nav-links a.active{
  opacity:1;
  position:relative;
}

.nav-links a.active::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-10px;
  height:2px;
  background:var(--red);
  opacity:.9;
}

@media (max-width: 860px){
  .nav-links a.active::after{display:none}
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  font-weight:800;
  font-size:13px;
  letter-spacing:.06em;
  text-transform:uppercase;
  border:1px solid transparent;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
  gap:10px;
}

.btn:active{transform: translateY(1px)}

.btn-primary{
  background:var(--red);
  border-color:rgba(255,255,255,.10);
}

.btn-primary:hover{
  background:#c3152a;
  box-shadow: 0 12px 34px rgba(177,18,38,.28);
}

.btn-ghost{
  background:rgba(255,255,255,.06);
  border-color:rgba(255,255,255,.14);
}

.btn-ghost:hover{
  background:rgba(255,255,255,.10);
}

/* Hero */
.hero{
  min-height: 100vh;
  padding-top: 96px;
  display:flex;
  align-items:flex-end;

  background:
    linear-gradient(
      to bottom,
      rgba(11,11,11,.40) 0%,
      rgba(11,11,11,.50) 35%,
      rgba(11,11,11,.80) 100%
    ),
    radial-gradient(1200px 600px at 18% 30%, rgba(177,18,38,.18), transparent 60%),
    url("images/hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat:no-repeat;
}

.hero-inner{
  width:min(var(--max), calc(100% - 2rem));
  margin:0 auto;
  padding: 0 0 64px 0;
}

.hero-eyebrow{
  margin:0 0 10px 0;
  font-weight:800;
  letter-spacing:.18em;
  text-transform:uppercase;
  font-size:12px;
  opacity:.95;
}

.hero h1{
  font-family:"Bebas Neue", Inter, system-ui, sans-serif;
  font-size: clamp(54px, 6.5vw, 92px);
  line-height:.92;
  margin:0 0 14px 0;
  letter-spacing:.03em;
  text-shadow:0 18px 44px rgba(0,0,0,.65);
}

.hero-sub{
  margin:0 0 22px 0;
  max-width: 52ch;
  color:var(--muted);
  font-size:16px;
  line-height:1.6;
  text-shadow:0 10px 20px rgba(0,0,0,.45);
}

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

/* Quickbar */
.quickbar{
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  background:rgba(255,255,255,.02);
}

.quickbar-inner{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
  padding:14px 0;
}

.quickbar-item{
  text-align:center;
  font-size:12px;
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
  padding:10px 12px;
  border-radius:999px;
  background:rgba(0,0,0,.30);
  border:1px solid rgba(255,255,255,.12);
}

/* Sections */
.section{
  padding:64px 0;
  border-top:1px solid var(--line);
  background: linear-gradient(to bottom, rgba(255,255,255,.02), transparent 60%);
}

.section-team{
  background:
    radial-gradient(900px 420px at 14% 18%, rgba(177,18,38,.18), transparent 60%),
    rgba(255,255,255,.02);
}

.section-gallery{
  background:
    radial-gradient(900px 420px at 85% 20%, rgba(177,18,38,.14), transparent 60%),
    rgba(0,0,0,.35);
}

.section-kicker{
  margin:0 0 10px 0;
  font-weight:900;
  font-size:12px;
  letter-spacing:.22em;
  text-transform:uppercase;
  opacity:.92;
  position:relative;
  display:inline-block;
  padding-bottom:10px;
}

.section-kicker::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:56px;
  height:2px;
  background:var(--red);
}

.section-title{
  margin:0 0 10px 0;
  font-size:30px;
}

.section-title-lg{ font-size:36px; }

.section-lead{
  margin:0 0 26px 0;
  color:var(--muted);
  max-width: 70ch;
}

.lead-accent{
  border-left:2px solid rgba(177,18,38,.9);
  padding-left:14px;
}

/* Cards */
.grid{ display:grid; gap:16px; }

.card{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  border-radius:var(--radius);
  padding:18px;
  transition: transform .16s ease, border-color .16s ease, background .16s ease;
}

.card:hover{
  transform: translateY(-2px);
  border-color:rgba(255,255,255,.18);
  background:rgba(255,255,255,.055);
}

.muted{color:var(--muted); margin:0}

/* Team */
.team-grid{
  grid-template-columns: repeat(3, 1fr);
}

.team-card{
  display:flex;
  align-items:center;
  gap:14px;
}

.team-card .avatar{
  width:72px;
  height:72px;
  border-radius:50%;
  object-fit:cover;
  border:1px solid rgba(255,255,255,.18);
  filter: grayscale(.22) contrast(1.08) brightness(.96);
  flex: 0 0 auto;

  box-shadow: 0 10px 28px rgba(0,0,0,.45);
  outline: 2px solid rgba(177,18,38,.22);
  outline-offset: 2px;
}

.team-text h3{ margin:0 0 6px 0; }
.team-text p{ margin:0; }

/* Split and preview grid */
.split{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:22px;
  align-items:center;
}

.split-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:16px;
}

.preview-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:12px;
}

.preview{
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  aspect-ratio: 1 / 1;
  position:relative;
  overflow:hidden;
  transition: transform .16s ease, border-color .16s ease, background .16s ease;

  background:
    radial-gradient(700px 300px at 20% 20%, rgba(255,255,255,.06), transparent 60%),
    radial-gradient(700px 300px at 90% 30%, rgba(177,18,38,.10), transparent 60%),
    linear-gradient(to bottom, rgba(255,255,255,.05), rgba(0,0,0,.35));
}

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

.preview::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(600px 260px at 30% 20%, rgba(177,18,38,.12), transparent 60%),
    linear-gradient(to bottom, transparent, rgba(0,0,0,.35));
  opacity:.9;
}

.preview::before{
  content:"";
  position:absolute;
  inset:0;
  opacity:.10;
  mix-blend-mode: overlay;
  background-image: radial-gradient(circle at 20% 30%, rgba(255,255,255,.35) 0 1px, transparent 2px);
  background-size: 26px 26px;
}

/* Footer */
.footer{
  padding:36px 0;
  border-top:1px solid var(--line);
  background:rgba(0,0,0,.35);
}

.footer-inner{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:18px;
}

.footer-brand{
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
  margin-bottom:6px;
}

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

.footer-links a{
  font-weight:800;
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  opacity:.9;
}

.footer-links a:hover{opacity:1}

/* Page hero (Gallery + Contact + Services pages) */
.page-hero{
  padding:120px 0 40px 0;
  border-bottom:1px solid var(--line);
  background:
    radial-gradient(900px 420px at 12% 20%, rgba(177,18,38,.14), transparent 60%),
    rgba(0,0,0,.25);
}

.page-title{
  font-family:"Bebas Neue", Inter, system-ui, sans-serif;
  margin:0 0 10px 0;
  font-size:64px;
  letter-spacing:.04em;
}

.page-lead{
  margin:0;
  color:var(--muted);
  max-width:70ch;
}

/* Home page preview images */
.preview-a{ background-image: url("images/haircut_pre_1.jpg"); background-size:cover; background-position:center; }
.preview-b{ background-image: url("images/haircut_pre_2.jpg"); background-size:cover; background-position:center; }
.preview-c{ background-image: url("images/haircut_pre_3.jpg"); background-size:cover; background-position:center; }
.preview-d{ background-image: url("images/haircut_pre_4.jpg"); background-size:cover; background-position:center; }

/* Gallery page grid + lightbox */
.section-gallery-grid{
  background: linear-gradient(to bottom, rgba(255,255,255,.02), transparent 60%);
}

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

.shot{
  padding:0;
  border:1px solid rgba(255,255,255,.10);
  border-radius:16px;
  background:rgba(255,255,255,.04);
  overflow:hidden;
  cursor:pointer;
  transition: transform .16s ease, border-color .16s ease, background .16s ease;
}

.shot:hover{
  transform: translateY(-2px);
  border-color:rgba(255,255,255,.18);
  background:rgba(255,255,255,.06);
}

.shot img{
  display:block;
  width:100%;
  height:100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.lightbox{
  position:fixed;
  inset:0;
  display:none;
  place-items:center;
  background:rgba(0,0,0,.82);
  backdrop-filter: blur(10px);
  z-index:2000;
  padding:18px;
}

.lightbox.open{ display:grid; }

.lightbox-img{
  max-width:min(980px, 100%);
  max-height:80vh;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 18px 60px rgba(0,0,0,.6);
}

.lightbox-close{
  position:absolute;
  top:14px;
  right:14px;
  width:44px;
  height:44px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  cursor:pointer;
}

.lightbox-close:hover{ background:rgba(255,255,255,.10); }

/* Contact page */
.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
  align-items:start;
}

.panel{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  border-radius:var(--radius);
  padding:18px;
}

.panel h2{
  margin:0 0 12px 0;
  font-size:20px;
}

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

.form label{
  display:grid;
  gap:6px;
  font-weight:800;
  font-size:12px;
  letter-spacing:.10em;
  text-transform:uppercase;
  opacity:.92;
}

.input, .textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(0,0,0,.28);
  color:var(--text);
  outline:none;
}

.textarea{ resize:vertical; min-height:120px; }

.input:focus, .textarea:focus{
  border-color: rgba(177,18,38,.55);
  box-shadow: 0 0 0 4px rgba(177,18,38,.14);
}

.map{
  width:100%;
  height:320px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:16px;
  overflow:hidden;
}

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

.mini-list{
  display:grid;
  gap:10px;
  margin-top:14px;
}

.mini-item{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.22);
  font-weight:800;
  font-size:12px;
  letter-spacing:.10em;
  text-transform:uppercase;
}

/* Mobile nav toggle button */
.nav-toggle{
  display:none;
  background:transparent;
  border:0;
  padding:8px;
  cursor:pointer;
}

.nav-toggle span{
  display:block;
  width:26px;
  height:2px;
  background:#fff;
  margin:6px 0;
  opacity:.9;
}

/* Responsive */
@media (max-width: 1000px){
  .gallery-grid{ grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 920px){
  .split{ grid-template-columns:1fr; }
  .contact-grid{ grid-template-columns:1fr; }
}

@media (max-width: 860px){
  .nav-toggle{display:block}

  .nav-links{
    position:fixed;
    top:78px;
    left:1rem;
    right:1rem;
    background:rgba(11,11,11,.94);
    border:1px solid rgba(255,255,255,.12);
    border-radius:16px;
    padding:14px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:10px;
    backdrop-filter: blur(10px);
  }

  .nav-links.open{display:flex}

  .team-grid{ grid-template-columns: 1fr; }
  .quickbar-inner{ grid-template-columns: 1fr; }
  .page-title{ font-size:52px; }
}

@media (max-width: 560px){
  .hero-actions{
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn{
    width: 100%;
  }
}

/* Services page */
.section-services{
  background:
    radial-gradient(900px 420px at 18% 20%, rgba(177,18,38,.10), transparent 60%),
    linear-gradient(to bottom, rgba(255,255,255,.02), transparent 70%);
}

/* Centered booking layout (Services) */
.services-top-centered{
  display:grid;
  grid-template-columns: 1fr;
  gap:14px;
  margin-bottom:16px;
}

.service-panel{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  border-radius:var(--radius);
  padding:18px;
}

.service-panel-wide{
  max-width: 920px;
  margin: 0 auto;
  padding: 18px 18px 16px 18px;
  position: relative;
  background:
    radial-gradient(700px 260px at 20% 10%, rgba(177,18,38,.14), transparent 55%),
    rgba(255,255,255,.035);
  border-color: rgba(255,255,255,.12);
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
}

.service-panel-kicker{
  margin:0 0 10px 0;
  font-weight:900;
  font-size:12px;
  letter-spacing:.22em;
  text-transform:uppercase;
  opacity:.92;
  position:relative;
  display:inline-block;
  padding-bottom:10px;
}

.service-panel-kicker::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:56px;
  height:2px;
  background:var(--red);
  opacity:.9;
}

.service-panel-title{
  margin:0 0 6px 0;
  font-weight:900;
  font-size:18px;
}

.service-panel-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin: 10px 0 14px 0;
}

.service-panel-wide .mini-list{
  grid-template-columns: repeat(3, 1fr);
}

.pricing-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin-top: 6px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.10);
}

.price-card{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  border-radius:var(--radius);
  padding:18px;
  transition: transform .16s ease, border-color .16s ease, background .16s ease;
  min-height: 168px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  opacity:.94;
}

.price-card:hover{
  transform: translateY(-2px);
  border-color:rgba(255,255,255,.18);
  background:rgba(255,255,255,.055);
}

.price-card.featured{
  opacity: 1;
  border-color: rgba(177,18,38,.32);
  box-shadow: 0 18px 70px rgba(177,18,38,.08);
  transform: translateY(-6px);
}

.price-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
  margin-bottom:10px;
}

.price-head h3{
  margin:0;
  font-size:16px;
}

.badge{
  font-weight:900;
  font-size:10px;
  letter-spacing:.16em;
  text-transform:uppercase;
  padding: 7px 10px;
  border-radius:999px;
  background: rgba(177,18,38,.18);
  border:1px solid rgba(177,18,38,.30);
  opacity:.95;
}

.badge-ghost{
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
}

.price-row{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:12px;
  margin-bottom:10px;
}

.price{
  font-family:"Bebas Neue", Inter, system-ui, sans-serif;
  font-size: 46px;
  letter-spacing: .02em;
  line-height:1;
}

.duration{
  font-weight:800;
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  opacity:.85;
}

.price-card .muted{
  font-size:13px;
  line-height:1.55;
}

.service-note{
  margin:12px 0 0 0;
  color:var(--muted);
  max-width:80ch;
  font-size:13px;
}

@media (max-width: 1000px){
  .pricing-grid{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 920px){
  .service-panel-wide{ max-width: 100%; }
}

@media (max-width: 860px){
  .service-panel-wide .mini-list{ grid-template-columns: 1fr; }
}

@media (max-width: 620px){
  .pricing-grid{ grid-template-columns: 1fr; }
  .price-card.featured{ transform:none; }
}
