/* ============================================
   BINI BARBER — style.css
   ============================================ */

:root {
  --bg: #080706;
  --panel: #0f0e0c;
  --panel-2: #141210;
  --text: #f0ece4;
  --muted: #8a8278;
  --line: rgba(240,236,228,.07);
  --line-strong: rgba(240,236,228,.14);
  --gold: #c9a96e;
  --gold-soft: #e8d5b0;
  --gold-dim: rgba(201,169,110,.18);
  --shadow: 0 32px 80px rgba(0,0,0,.7);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: 1280px;
  --section-space: 120px;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

/* NOISE OVERLAY */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9990;
  opacity: .4;
}

/* ---- CUSTOM CURSOR ---- */
.cursor {
  position: fixed;
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform .1s ease;
}
.cursor-ring {
  position: fixed;
  width: 38px; height: 38px;
  border: 1px solid rgba(201,169,110,.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all .18s ease;
}
.cursor-ring.hovering { transform: translate(-50%, -50%) scale(1.6); border-color: var(--gold); }

a, button { cursor: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

/* ---- HEADER ---- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all .4s ease;
}
.header.scrolled {
  background: rgba(8,7,6,.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  gap: 20px;
}
.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-decoration: none;
  transition: opacity .3s ease;
  line-height: 1;
}
.logo:hover { opacity: .7; }
.logo-bini {
  font-family: 'DM Sans', sans-serif;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--text);
}
.logo-barber {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: .82rem;
  letter-spacing: .2em;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
}
.nav-links a { position: relative; transition: color .22s; }
.nav-links a:hover { color: var(--gold-soft); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .28s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 22px;
  background: var(--gold);
  color: #0a0806;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: .25s ease;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold-soft); transform: translateY(-2px); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 26px; height: 1.5px;
  background: var(--text);
  transition: .3s ease;
  transform-origin: center;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---- MOBILE MENU ---- */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(8,7,6,.98);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-menu.active { display: flex; }
.mobile-menu a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: .08em;
  color: var(--gold);
  transition: color .18s, transform .18s;
  text-decoration: none;
}
.mobile-menu a:hover { color: var(--gold-soft); transform: translateX(8px); }
.mobile-cta {
  margin-top: 20px;
  padding: 14px 36px !important;
  background: var(--gold) !important;
  color: #0a0806 !important;
  border-radius: 100px !important;
  font-size: 1.2rem !important;
}

/* ---- HERO ---- */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.hero-left {
  padding: 120px 56px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(160deg, #0b0a08 0%, #080706 100%);
  position: relative;
  z-index: 2;
}
.hero-left::after {
  content: "";
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold-dim) 40%, var(--gold-dim) 60%, transparent);
}
/* hero desc starts animation at .2s since title now takes that slot */
.hero-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(3.5rem, 6.5vw, 7rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp .8s .2s forwards;
  text-align: center;
  max-width: 480px;
}
.hero-title-sub {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.4rem, 2.5vw, 2.6rem);
  letter-spacing: .22em;
  color: var(--gold);
  text-transform: none;
  margin-top: 6px;
}
.hero-title em {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  font-size: 90%;
  letter-spacing: .04em;
  text-transform: none;
}
.hero-desc {
  color: var(--muted);
  max-width: 480px;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp .8s .5s forwards;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp .8s .65s forwards;
  justify-content: center;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 30px;
  background: var(--gold);
  color: #0a0806;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: .25s ease;
  border: none;
}
.btn-primary:hover { background: var(--gold-soft); transform: translateY(-3px); box-shadow: 0 16px 40px rgba(201,169,110,.25); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border: 1px solid var(--line-strong);
  color: var(--text);
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .06em;
  border-radius: 100px;
  transition: .25s ease;
  background: transparent;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }

.hero-stats {
  display: flex;
  gap: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
  opacity: 0;
  animation: fadeUp .8s .8s forwards;
  justify-content: center;
}
.hero-stat strong {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  letter-spacing: .04em;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat span {
  font-size: .78rem;
  color: var(--muted);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-right img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 8s ease;
}
.hero-right:hover img { transform: scale(1.04); }
.hero-right::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(8,7,6,.35) 0%, transparent 60%),
              linear-gradient(to top, rgba(8,7,6,.7) 0%, transparent 40%);
  z-index: 2;
}
.hero-badge {
  position: absolute;
  bottom: 40px; left: 36px;
  z-index: 3;
  background: rgba(8,7,6,.85);
  border: 1px solid var(--gold-dim);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  animation: fadeUp .8s 1s forwards;
}
.hero-badge-icon {
  width: 44px; height: 44px;
  background: var(--gold-dim);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.hero-badge-text small {
  display: block;
  font-size: .72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 2px;
}
.hero-badge-text strong { font-size: .95rem; color: var(--text); }
.hero-since {
  position: absolute;
  top: 36px; right: 36px;
  z-index: 3;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: .2em;
  color: rgba(240,236,228,.4);
  writing-mode: vertical-rl;
}

/* ---- MARQUEE ---- */
.marquee-strip {
  padding: 20px 0;
  background: var(--gold);
  overflow: hidden;
}
.marquee-track {
  display: flex;
  animation: marquee 18s linear infinite;
  width: max-content;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 32px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem;
  letter-spacing: .14em;
  color: #0a0806;
  white-space: nowrap;
}
.marquee-sep { opacity: .5; }

/* ---- SECTION COMMON ---- */
.section { padding: var(--section-space) 0; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.section-tag::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  line-height: .92;
  letter-spacing: .04em;
  color: var(--text);
}
.section-title em {
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  color: var(--gold);
}

/* ---- ABOUT ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--panel);
}
/* ---- ABOUT SLIDESHOW ---- */
.about-slide-wrap {
  position: relative;
  min-height: 500px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
}

.about-slides { position: relative; width: 100%; height: 100%; min-height: 500px; }

.about-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .7s ease;
}
.about-slide.active { opacity: 1; z-index: 1; }

.about-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(.9);
}

/* dots */
.about-dots {
  position: absolute;
  bottom: 18px; left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 8px;
}
.about-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(240,236,228,.5);
  background: transparent;
  transition: .25s ease;
  padding: 0;
}
.about-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.2);
}

/* arrows */
.about-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 4;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(8,7,6,.55);
  border: 1px solid rgba(201,169,110,.25);
  color: var(--gold);
  font-size: 1rem;
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity .25s, background .22s;
}
.about-slide-wrap:hover .about-arrow { opacity: 1; }
.about-arrow:hover { background: rgba(201,169,110,.2); }
.about-arrow-prev { left: 12px; }
.about-arrow-next { right: 12px; }
.about-copy {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.about-copy::before {
  content: '"';
  position: absolute;
  top: 20px; right: 40px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 10rem;
  color: var(--gold-dim);
  line-height: 1;
  pointer-events: none;
}
.about-copy h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.6rem, 4vw, 4.2rem);
  letter-spacing: .04em;
  line-height: .92;
  margin-bottom: 22px;
}
.about-copy h2 em {
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold);
  font-size: 85%;
  font-weight: 300;
}
.about-copy p { color: var(--muted); max-width: 520px; margin-bottom: 14px; font-size: .98rem; }
.about-pillars { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.pillar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  font-size: .82rem;
  letter-spacing: .06em;
  font-weight: 500;
  transition: .25s ease;
}
.pillar:hover { border-color: var(--gold); color: var(--gold); }
.pillar-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }

/* ---- SERVICES ---- */
.services-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.section-desc-side { color: var(--muted); max-width: 420px; font-size: .95rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.service-card {
  padding: 38px 32px;
  background: var(--panel);
  border: 1px solid var(--line);
  transition: .3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-dim), transparent);
  opacity: 0;
  transition: opacity .35s ease;
}
.service-card:hover { background: var(--panel-2); }
.service-card:hover::before { opacity: 1; }
.service-card:hover .service-num { color: var(--gold); border-color: var(--gold); }
.service-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: .1em;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 100px;
  display: inline-flex;
  padding: 5px 14px;
  margin-bottom: 22px;
  transition: .3s ease;
}
.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: .02em;
}
.service-card p { color: var(--muted); font-size: .92rem; }

/* ============================================
   CUTS SLIDESHOW GALLERY
   ============================================ */

.gallery-section { padding-bottom: var(--section-space); }

.gallery-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 16px;
}

.cuts-counter {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: .16em;
  color: var(--muted);
  font-size: 1rem;
}
.cuts-cur { color: var(--gold); font-size: 2rem; line-height: 1; vertical-align: middle; }
.cuts-sep { opacity: .4; }

/* Stage — same shape/size as about slideshow */
.cuts-stage {
  position: relative;
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  height: 500px;
  min-height: 420px;
  max-height: 500px;
  background: #000;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}

.cuts-slides { position: absolute; inset: 0; }

.cuts-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .0s;
}
.cuts-slide.active   { opacity: 1; z-index: 1; animation: cutsIn .9s ease forwards; }
.cuts-slide.leaving  { opacity: 1; z-index: 0; animation: cutsOut .9s ease forwards; }

.cuts-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(.85) saturate(.9) contrast(1.04);
  transform: scale(1.04);
  transition: transform 7s ease;
}
.cuts-slide.active img { transform: scale(1.0); }

/* Dark gradient overlay bottom 
.cuts-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(8,7,6,.85) 0%, rgba(8,7,6,.1) 45%, transparent 70%),
    linear-gradient(to bottom, rgba(8,7,6,.3) 0%, transparent 20%);
  z-index: 2;
  pointer-events: none;
}*/

/* Arrows */
.cuts-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 6;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: rgba(8,7,6,.5);
  border: 1px solid rgba(201,169,110,.25);
  color: rgba(240,236,228,.8);
  font-size: 1.3rem;
  display: grid;
  place-items: center;
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity .3s ease, background .22s, border-color .22s, transform .22s;
}
.cuts-stage:hover .cuts-arrow { opacity: 1; }
.cuts-arrow:hover {
  background: rgba(201,169,110,.18);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-50%) scale(1.08);
}
.cuts-prev { left: 32px; }
.cuts-next { right: 32px; }

/* Progress bar */
.cuts-progress {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: rgba(255,255,255,.06);
  z-index: 6;
}
.cuts-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  width: 0%;
  box-shadow: 0 0 8px rgba(201,169,110,.5);
}

/* Dot nav */
.cuts-dots {
  position: absolute;
  bottom: 22px; left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  gap: 10px;
  align-items: center;
}
.cuts-dot {
  width: 28px; height: 2px;
  border-radius: 2px;
  background: rgba(255,255,255,.22);
  border: none;
  padding: 0;
  transition: .28s ease;
}
.cuts-dot.active {
  background: var(--gold);
  width: 48px;
  box-shadow: 0 0 8px rgba(201,169,110,.4);
}

/* Keyframes */
@keyframes cutsIn {
  from { opacity: 0; transform: scale(1.02); filter: brightness(0); }
  to   { opacity: 1; transform: scale(1);    filter: brightness(1); }
}
@keyframes cutsOut {
  from { opacity: 1; }
  to   { opacity: 0; }
}

/* ---- PRICING ---- */
.pricing-wrap {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.pricing-head {
  padding: 48px 52px 36px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.price-item {
  padding: 28px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  transition: background .25s;
}
.price-item:hover { background: rgba(201,169,110,.04); }
.price-item:nth-child(3n) { border-right: none; }
.price-item:nth-last-child(-n+3) { border-bottom: none; }
.price-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: .02em;
}
.price-desc { color: var(--muted); font-size: .85rem; }
.price-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.6rem;
  letter-spacing: .04em;
  color: var(--gold);
  line-height: 1;
}
.price-val sup { font-size: 1.2rem; vertical-align: super; }

/* ---- CONTACT ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 24px;
}
.contact-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
}
.contact-list { display: grid; gap: 0; margin-top: 28px; }
.contact-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.contact-item:last-child { border-bottom: none; padding-bottom: 0; }
.contact-key {
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  min-width: 80px;
}
.contact-val { color: var(--text); font-size: .95rem; text-align: right; }
.contact-val a { transition: color .22s; }
.contact-val a:hover { color: var(--gold); }
.map-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 420px;
}
.map-card iframe {
  width: 100%; height: 100%;
  border: none;
  filter: grayscale(100%) invert(90%) contrast(90%) sepia(10%);
  min-height: 420px;
}

/* ---- FOOTER ---- */
.footer {
  padding: 40px 0 52px;
  border-top: 1px solid var(--line);
}
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  line-height: 1;
}
.footer-logo .logo-bini {
  font-family: 'DM Sans', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--muted);
}
.footer-logo .logo-barber {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: .76rem;
  letter-spacing: .2em;
  color: rgba(201,169,110,.6);
}
.footer-logo span { color: var(--gold); }
.footer-copy { font-size: .82rem; color: var(--muted); letter-spacing: .06em; }

/* ---- REVEAL ANIMATION ---- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ---- KEYFRAMES ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: none; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1080px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 130px 36px 60px; order: 2; }
  .hero-right { min-height: 420px; order: 1; }
  .hero-right::before { background: linear-gradient(to top, rgba(8,7,6,.8), transparent 50%); }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .price-item:nth-child(3n) { border-right: 1px solid var(--line); }
  .price-item:nth-child(2n) { border-right: none; }
  .hero-title { white-space: normal; font-size: clamp(3.8rem, 10vw, 6rem); }
}

@media (max-width: 768px) {
  :root { --section-space: 80px; }
  .container { width: min(var(--container), calc(100% - 32px)); }
  .nav-links, .nav-cta { display: none; }
  .menu-toggle { display: flex; }
  /* Mobile menu adjustments */
  .mobile-menu { gap: 20px; padding: 24px; }
  .mobile-menu a { font-size: 2.2rem; letter-spacing: .06em; }
  .mobile-cta { padding: 12px 28px !important; font-size: 1.05rem !important; }
  .hero-left { padding: 110px 24px 50px; }
  .about-copy { padding: 36px 28px; }
  .contact-card { padding: 32px 24px; }
  .pricing-head { padding: 32px 28px 24px; }
  .price-item { padding: 20px; }
  .services-grid { grid-template-columns: 1fr; gap: 2px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-item:nth-child(n) { border-right: none; border-bottom: 1px solid var(--line); }
  .price-item:last-child { border-bottom: none; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .services-intro { flex-direction: column; align-items: flex-start; }
  .hero-title { white-space: normal; font-size: clamp(3.4rem, 12vw, 5rem); }
  .gal-masonry { columns: 2; }
  .cuts-stage { height: 420px; max-height: 420px; }
  .about-slide-wrap { min-height: 380px; }
  .about-slides { min-height: 380px; }
  .cursor, .cursor-ring { display: none; }
  body { cursor: auto; }
  a, button { cursor: pointer; }

}

@media (max-width: 480px) {
  .hero-title { font-size: 1.6rem; letter-spacing: .24em; white-space: normal; }
  .section-title { font-size: 2.8rem; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-ghost { justify-content: center; }
  .cuts-stage { height: 320px; min-height: 300px; max-height: 320px; }
  .cuts-arrow { display: none; }
  .about-slide-wrap { min-height: 300px; }
  .about-slides { min-height: 300px; }
  /* Smaller mobile screens */
  .mobile-menu a { font-size: 1.6rem; }
  .mobile-menu { gap: 14px; padding: 18px; }
  .mobile-cta { padding: 10px 22px !important; font-size: 1rem !important; }
}