/* ═══════════════════════════════════════════
   TOKENS
═══════════════════════════════════════════ */
:root {
  --black:       #080808;
  --void:        #0d0d0d;
  --charcoal:    #1a1a1a;
  --grey-dark:   #2a2a2a;
  --grey-mid:    #555;
  --grey-light:  #888;
  --off-white:   #e8e4de;
  --cream:       #f0ece4;
  --red:         #c0392b;
  --red-dark:    #8b1a1a;
  --red-glow:    rgba(192,57,43,0.25);
  --gold:        #b8942a;
  --gold-light:  #d4aa40;

  --font-display: 'Bebas Neue', sans-serif;
  --font-italic:  'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --pad: clamp(1.5rem, 5vw, 5rem);
}

/* ═══════════════════════════════════════════
   RESET
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px;overflow-x: hidden; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--off-white);
  overflow-x: hidden;
  cursor: none;
}
img { display: block; width: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: none; }

/* ═══════════════════════════════════════════
   CUSTOM CURSOR
═══════════════════════════════════════════ */
#cursor {
  position: fixed;
  width: 10px; height: 10px;
  background: var(--red);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%,-50%);
  transition: width .2s, height .2s, background .2s;
  mix-blend-mode: normal;
}
#cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1px solid rgba(192,57,43,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%,-50%);
  transition: width .35s var(--ease), height .35s var(--ease), border-color .3s, transform .12s var(--ease);
}
body:has(a:hover) #cursor, body:has(button:hover) #cursor { width: 6px; height: 6px; background: var(--gold); }
body:has(a:hover) #cursor-ring, body:has(button:hover) #cursor-ring { width: 50px; height: 50px; border-color: var(--gold); }

/* ═══════════════════════════════════════════
   GRAIN OVERLAY
═══════════════════════════════════════════ */
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9997;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
}

/* ═══════════════════════════════════════════
   SCROLL REVEALS
═══════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(50px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.up { opacity: 1; transform: none; }
.reveal-x { opacity: 0; transform: translateX(-60px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal-x.up { opacity: 1; transform: none; }
.reveal-xr { opacity: 0; transform: translateX(60px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal-xr.up { opacity: 1; transform: none; }

/* ═══════════════════════════════════════════
   UTILITY
═══════════════════════════════════════════ */
.label {
  font-family: var(--font-body);
  font-size: .6rem;
  font-weight: 400;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: .8rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: .95;
  letter-spacing: .02em;
  color: var(--cream);
}
.section-title em {
  font-family: var(--font-italic);
  font-style: italic;
  color: var(--red);
  font-size: .65em;
}
.red-line {
  display: block; width: 40px; height: 2px;
  background: var(--red); margin: 1.4rem 0;
}
.red-line.center { margin: 1.4rem auto; }

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: .85rem 2.2rem;
  border: 1px solid currentColor;
  transition: background .35s, color .35s, transform .25s;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: currentColor;
  transform: translateX(-101%);
  transition: transform .35s var(--ease);
  opacity: .12;
}
.btn:hover::before { transform: translateX(0); }
.btn:hover { transform: translateY(-2px); }

.btn-red { color: var(--off-white); border-color: var(--red); background: var(--red); }
.btn-red:hover { background: var(--red-dark); border-color: var(--red-dark); }

.btn-outline { color: var(--off-white); border-color: rgba(232,228,222,.3); }
.btn-outline:hover { border-color: var(--off-white); }

.btn-gold { color: var(--gold-light); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold); color: var(--black); }

/* Section wrapper */
.section-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(5rem,10vw,9rem) var(--pad);
}

/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
#nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.5rem var(--pad);
  display: flex; align-items: center; justify-content: space-between;
  transition: background .4s, padding .4s, backdrop-filter .4s;
}
#nav.solid {
  background: rgba(8,8,8,.92);
  backdrop-filter: blur(16px);
  padding: 1rem var(--pad);
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: .08em;
  color: var(--cream);
  line-height: 1;
}
.nav-logo span { color: var(--red); }

.nav-links {
  display: flex; gap: 2.5rem; align-items: center;
}
.nav-links a {
  font-size: .65rem;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--grey-light);
  transition: color .3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--red);
  transform: scaleX(0); transition: transform .3s;
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-book {
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--off-white);
  padding: .6rem 1.4rem;
  background: var(--red);
  transition: background .3s;
}
.nav-book:hover { background: var(--red-dark); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: none; padding: 6px; background: none; border: none;
}
.hamburger span {
  display: block; width: 24px; height: 1px;
  background: var(--off-white);
  transition: .35s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--void);
  z-index: 999;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 2.5rem;
  opacity: 0; pointer-events: none;
  transition: opacity .4s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 3rem;
  letter-spacing: .06em;
  color: var(--off-white);
  transition: color .3s;
}
.mobile-menu a:hover { color: var(--red); }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
#hero {
    margin-top: 10vh;
  /* position: relative;
  height: 100svh; min-height: 640px; */
  display: flex; align-items: flex-end;
  overflow: hidden;
}

/* Animated background panels */
.hero-bg {
  position: absolute; inset: 10;
}
.hero-panel {
  position: absolute; inset: 10;
  opacity: 0;
  transition: opacity 2s var(--ease);
}
.hero-panel.active { opacity: 1; }

/* Panel art */
.hero-panel:nth-child(1) {
  background:
    linear-gradient(to right, rgba(8,8,8,.95) 45%, rgba(8,8,8,.4) 100%),
    radial-gradient(ellipse at 75% 50%, #3a1a1a 0%, #1a0a0a 40%, #080808 100%);
}
.hero-panel:nth-child(2) {
  background:
    linear-gradient(to right, rgba(8,8,8,.95) 45%, rgba(8,8,8,.4) 100%),
    radial-gradient(ellipse at 70% 40%, #1a1a1a 0%, #2a1010 30%, #080808 100%);
}
.hero-panel:nth-child(3) {
  background:
    linear-gradient(to right, rgba(8,8,8,.95) 45%, rgba(8,8,8,.4) 100%),
    radial-gradient(ellipse at 80% 60%, #0d0d0d 0%, #1a0808 35%, #080808 100%);
}

/* Decorative tattoo art elements on hero panels */
.hero-art {
  position: absolute;
  right: 5%; top: 50%;
  transform: translateY(-50%);
  width: min(45%, 550px);
  aspect-ratio: 3/4;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}

/* SVG tattoo-style illustration */
.tattoo-art-svg {
  width: 100vw; height: 100vh;
  opacity: .85;
}

.hero-slash {
  position: absolute;
  top: 0; left: 42%;
  width: 1px; height: 100vh;
  background: linear-gradient(to bottom, transparent, rgba(192,57,43,.5), transparent);
  pointer-events: none;
}

.hero-content {
  position: relative; z-index: 2;
  padding: 0 var(--pad) clamp(4rem,8vw,7rem);
  max-width: 700px;
}

.hero-number {
  font-family: var(--font-display);
  font-size: 10rem;
  line-height: 1;
  color: rgba(192,57,43,.06);
  position: absolute;
  top: 2rem; left: var(--pad);
  pointer-events: none;
  letter-spacing: -.02em;
  user-select: none;
}

.hero-eyebrow {
  font-size: .6rem;
  font-weight: 400;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fadeUp .8s .2s forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 8.5rem);
  line-height: .92;
  letter-spacing: .02em;
  color: var(--cream);
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: fadeUp .8s .45s forwards;
}
.hero-title .stroke {
  -webkit-text-stroke: 1px var(--off-white);
  color: transparent;
}
.hero-sub {
  font-size: .92rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--grey-light);
  max-width: 380px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp .8s .7s forwards;
}
.hero-btns {
  display: flex; gap: 1rem; flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .8s .95s forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: none; }
}

/* Bottom strip */
.hero-strip {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--charcoal);
  display: flex;
  border-top: 1px solid rgba(255,255,255,.05);
  z-index: 3;
}
.hero-strip-item {
  flex: 1; padding: 1.2rem var(--pad);
  display: flex; align-items: center; gap: 1rem;
  border-right: 1px solid rgba(255,255,255,.05);
}
.hero-strip-item:last-child { border-right: none; }
.strip-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--red);
  line-height: 1;
}
.strip-label {
  font-size: .65rem;
  font-weight: 300;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--grey-light);
  line-height: 1.4;
}

/* Slide indicators */
.hero-indicators {
  position: absolute;
  right: var(--pad); top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  display: flex; flex-direction: column; gap: 10px;
}
.hero-ind {
  width: 2px; height: 24px;
  background: rgba(255,255,255,.2);
  cursor: none;
  transition: background .3s, height .3s;
}
.hero-ind.active { background: var(--red); height: 40px; }

/* ═══════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════ */
#about { background: var(--void); }
.about-wrap {
  max-width: 1280px; margin: 0 auto;
  padding: clamp(5rem,10vw,9rem) var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap::before {
  content: 'KAEL';
  position: absolute;
  top: -1rem; left: -1.5rem;
  font-family: var(--font-display);
  font-size: 7rem;
  color: rgba(192,57,43,.07);
  letter-spacing: .05em;
  pointer-events: none;
  z-index: 0;
  line-height: 1;
}
.about-img {
  position: relative; z-index: 1;
  height: 580px;
  background:
    linear-gradient(160deg, rgba(192,57,43,.08), transparent 60%),
    radial-gradient(ellipse at 30% 20%, #2a1010 0%, #1a1a1a 50%, #0d0d0d 100%);
  border: 1px solid rgba(255,255,255,.04);
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 2rem;
}
.about-img-tag {
  font-size: .7rem;
  font-weight: 300;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--grey-mid);
}
.about-img-accent {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  width: 120px; height: 120px;
  border: 1px solid rgba(192,57,43,.25);
  z-index: 0;
}

.about-text {}
.about-text p {
  font-size: .95rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--grey-light);
  margin-bottom: 1.2rem;
}
.about-text p strong {
  color: var(--cream);
  font-weight: 400;
}
.about-skills {
  display: flex; flex-wrap: wrap; gap: .5rem;
  margin: 2rem 0;
}
.skill-pill {
  font-size: .6rem;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: .45rem 1rem;
  border: 1px solid rgba(192,57,43,.3);
  color: var(--red);
}

/* ═══════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════ */
#services {
  background: var(--black);
  position: relative;
  overflow: hidden;
}
#services::before {
  content: 'INK';
  position: absolute;
  bottom: -3rem; right: -2rem;
  font-family: var(--font-display);
  font-size: 18rem;
  color: rgba(255,255,255,.015);
  pointer-events: none;
  line-height: 1;
}
.services-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}
.services-header p {
  font-size: .9rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--grey-mid);
}
.services-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.05);
}
.service-card {
  background: var(--black);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background .4s;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(192,57,43,.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .4s;
}
.service-card:hover { background: var(--charcoal); }
.service-card:hover::before { opacity: 1; }

.service-num {
  font-family: var(--font-display);
  font-size: 5rem;
  color: rgba(255,255,255,.04);
  line-height: 1;
  position: absolute;
  top: 1rem; right: 1.5rem;
  transition: color .4s;
}
.service-card:hover .service-num { color: rgba(192,57,43,.1); }

.service-icon {
  width: 44px; height: 44px;
  border: 1px solid rgba(192,57,43,.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--red);
}
.service-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: .04em;
  color: var(--cream);
  margin-bottom: .8rem;
  line-height: 1.1;
}
.service-desc {
  font-size: .85rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--grey-mid);
  margin-bottom: 1.5rem;
}
.service-visual {
  height: 160px;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}
.service-visual-inner {
  width: 100%; height: 100%;
  transition: transform .5s var(--ease);
}
.service-card:hover .service-visual-inner { transform: scale(1.05); }

.sv-custom { background: radial-gradient(at 30% 40%, #3a1010 0%, #1a0a0a 60%, #080808 100%); }
.sv-coverup { background: radial-gradient(at 70% 60%, #1a1a0a 0%, #0a0a08 60%, #080808 100%); }
.sv-fine   { background: radial-gradient(at 50% 30%, #0a1a2a 0%, #080d14 60%, #080808 100%); }
.sv-sleeve { background: radial-gradient(at 40% 70%, #1a0a1a 0%, #0a080d 60%, #080808 100%); }

.service-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: .08em;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
}

/* ═══════════════════════════════════════════
   PORTFOLIO
═══════════════════════════════════════════ */
#portfolio { background: var(--void); }
.portfolio-header { text-align: center; margin-bottom: 3rem; }
.filter-bar {
  display: flex; justify-content: center;
  gap: 0; margin-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
  flex-wrap: wrap;
}
.filter-btn {
  font-family: var(--font-body);
  font-size: .62rem;
  font-weight: 400;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--grey-mid);
  padding: .9rem 1.8rem;
  border: none;
  background: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color .3s, border-color .3s;
}
.filter-btn:hover { color: var(--cream); }
.filter-btn.active { color: var(--red); border-bottom-color: var(--red); }

/* Masonry */
.masonry {
  max-width: 1280px; margin: 0 auto;
  columns: 3; column-gap: 1rem;
}
.m-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
  cursor: none;
}
.m-img {
  display: block; width: 100%;
  transition: transform .6s var(--ease);
}
.m-item:hover .m-img { transform: scale(1.06); }
.m-item.hidden { display: none; }

/* Placeholder gallery images */
.m-ph { display: block; width: 100%; }
.m-ph.tall   { aspect-ratio: 2/3; }
.m-ph.wide   { aspect-ratio: 3/2; }
.m-ph.square { aspect-ratio: 1; }

/* Dark art styles */
.mf1 { background: radial-gradient(at 40% 30%, #3a0a0a 0%, #1a0808 40%, #080808 100%); }
.mf2 { background: radial-gradient(at 60% 70%, #0a0a1a 0%, #10101a 40%, #080808 100%); }
.mf3 { background: radial-gradient(at 20% 50%, #1a1a0a 0%, #141410 40%, #080808 100%); }
.mf4 { background: radial-gradient(at 80% 20%, #0a1a0a 0%, #0d140d 40%, #080808 100%); }
.mf5 { background: radial-gradient(at 50% 80%, #1a080a 0%, #14080a 40%, #080808 100%); }
.mf6 { background: radial-gradient(at 30% 40%, #2a1a0a 0%, #1a1408 40%, #080808 100%); }
.mf7 { background: radial-gradient(at 70% 50%, #0a1a2a 0%, #08101a 40%, #080808 100%); }
.mf8 { background: radial-gradient(at 50% 20%, #2a0a2a 0%, #1a081a 40%, #080808 100%); }
.mf9 { background: radial-gradient(at 40% 70%, #0a2a1a 0%, #081a10 40%, #080808 100%); }
.mf10{ background: radial-gradient(at 60% 40%, #3a1010 0%, #200808 40%, #080808 100%); }
.mf11{ background: radial-gradient(at 30% 30%, #1a1a2a 0%, #10101a 40%, #080808 100%); }
.mf12{ background: radial-gradient(at 80% 70%, #2a1a10 0%, #1a140a 40%, #080808 100%); }

/* Hover overlay */
.m-overlay {
  position: absolute; inset: 0;
  background: rgba(8,8,8,0);
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 1.2rem;
  transition: background .4s;
}
.m-item:hover .m-overlay { background: rgba(8,8,8,.65); }
.m-tag {
  font-size: .58rem;
  font-weight: 400;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--red);
  opacity: 0; transform: translateY(10px);
  transition: .4s;
}
.m-title {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: .05em;
  color: var(--cream);
  opacity: 0; transform: translateY(10px);
  transition: .4s .05s;
}
.m-item:hover .m-tag,
.m-item:hover .m-title { opacity: 1; transform: none; }

/* Lightbox */
#lb {
  position: fixed; inset: 0;
  background: rgba(5,5,5,.97);
  z-index: 5000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .35s;
  padding: 2rem;
}
#lb.open { opacity: 1; pointer-events: all; }
.lb-inner { max-width: 800px; width: 100%; }
.lb-ph { width: 100%; max-height: 75vh; }
.lb-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  color: var(--grey-mid);
  font-size: 1.8rem;
  cursor: none;
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  transition: color .3s, border-color .3s;
  line-height: 1;
  font-weight: 200;
}
.lb-close:hover { color: var(--red); border-color: var(--red); }
.lb-caption {
  margin-top: 1.2rem;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: .06em;
  color: var(--grey-light);
  text-align: center;
}

/* ═══════════════════════════════════════════
   BOOKING
═══════════════════════════════════════════ */
#booking { background: var(--black); }
.booking-wrap {
  max-width: 1280px; margin: 0 auto;
  padding: clamp(5rem,10vw,9rem) var(--pad);
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
}
.booking-info {}
.booking-info h2 { margin-bottom: 1rem; }
.booking-info p {
  font-size: .9rem; font-weight: 300;
  line-height: 1.85; color: var(--grey-mid);
  margin-bottom: 1.5rem;
}
.booking-rules {
  margin: 2rem 0;
  display: flex; flex-direction: column; gap: 1rem;
}
.rule {
  display: flex; gap: 1rem; align-items: flex-start;
}
.rule-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: rgba(192,57,43,.4);
  line-height: 1; flex-shrink: 0;
  width: 2rem;
}
.rule-text {
  font-size: .8rem; font-weight: 300;
  line-height: 1.7; color: var(--grey-mid);
  padding-top: .2rem;
}

/* Form */
.book-form {
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,.04);
  padding: 2.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.fg { margin-bottom: 1.4rem; }
.fg label {
  display: block;
  font-size: .58rem; font-weight: 400;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: .5rem;
}
.fg input,
.fg textarea,
.fg select {
  width: 100%;
  background: rgba(255,255,255,.03);
  border: none;
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding: .75rem 0;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 300;
  color: var(--cream);
  outline: none;
  transition: border-color .3s;
  -webkit-appearance: none;
  border-radius: 0;
}
.fg input:focus,
.fg textarea:focus,
.fg select:focus { border-bottom-color: var(--red); }
.fg textarea { min-height: 100px; resize: vertical; }
.fg select { cursor: none; }
.fg select option { background: var(--charcoal); }

/* File upload */
.file-upload {
  border: 1px dashed rgba(255,255,255,.1);
  padding: 1.5rem;
  text-align: center;
  transition: border-color .3s;
  cursor: none;
  margin-bottom: 1.4rem;
}
.file-upload:hover { border-color: rgba(192,57,43,.5); }
.file-upload input { display: none; }
.file-upload-label {
  display: block;
  font-size: .68rem; font-weight: 300;
  letter-spacing: .1em;
  color: var(--grey-mid);
  cursor: none;
}
.file-upload-label span {
  display: block; font-size: 1.5rem; margin-bottom: .4rem;
  color: var(--grey-dark);
}

.form-submit {
  width: 100%;
  padding: 1.1rem;
  background: var(--red);
  border: none;
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--cream);
  transition: background .3s;
}
.form-submit:hover { background: var(--red-dark); }

.book-success {
  display: none;
  text-align: center;
  padding: 3rem 1rem;
}
.book-success .big { font-family: var(--font-display); font-size: 3rem; color: var(--red); margin-bottom: .5rem; }
.book-success p { font-size: .85rem; font-weight: 300; color: var(--grey-mid); }

/* ═══════════════════════════════════════════
   BEFORE / AFTER SLIDER
═══════════════════════════════════════════ */
#before-after {
  background: var(--void);
  padding: clamp(5rem,10vw,9rem) var(--pad);
  overflow: hidden;
}
.ba-inner {
  max-width: 900px; margin: 0 auto;
}
.ba-header { text-align: center; margin-bottom: 3rem; }
.ba-container {
  position: relative;
  height: 500px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.05);
  cursor: none;
  user-select: none;
}
.ba-before, .ba-after {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.ba-before {
  background: radial-gradient(at 40% 50%, #1a1a1a 0%, #0d0d0d 60%, #080808 100%);
  z-index: 1;
}
.ba-after {
  background: radial-gradient(at 60% 50%, #3a0808 0%, #1a0404 40%, #080808 100%);
  clip-path: inset(0 50% 0 0);
  z-index: 2;
  transition: clip-path 0s;
}
.ba-divider {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--red);
  z-index: 4;
  transform: translateX(-50%);
}
.ba-handle {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 44px; height: 44px;
  background: var(--red);
  border-radius: 50%;
  z-index: 5;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: .9rem;
}
.ba-labels {
  position: absolute;
  inset: 0; z-index: 3;
  display: flex; align-items: flex-end;
  justify-content: space-between;
  padding: 1rem;
  pointer-events: none;
}
.ba-label {
  font-size: .6rem; font-weight: 400;
  letter-spacing: .25em; text-transform: uppercase;
  padding: .4rem .8rem;
  background: rgba(8,8,8,.7);
}
.ba-label.before { color: var(--grey-mid); }
.ba-label.after  { color: var(--red); }

/* Decorative art in panels */
.ba-art {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .15;
  font-family: var(--font-display);
  font-size: 8rem;
  color: var(--cream);
  pointer-events: none;
}

/* ═══════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════ */
#testimonials { background: var(--black); }
.testi-header { text-align: center; margin-bottom: 3.5rem; }
.testi-track {
  max-width: 1280px; margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.testi-slide {
  display: none;
  animation: fadeIn .5s ease;
}
.testi-slide.active { display: block; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.05);
}
.testi-card {
  background: var(--black);
  padding: 2.5rem;
  position: relative;
  transition: background .3s;
}
.testi-card:hover { background: var(--charcoal); }
.testi-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 5rem;
  color: rgba(192,57,43,.1);
  position: absolute;
  top: 1rem; left: 1.5rem;
  line-height: 1;
}
.testi-stars { color: var(--red); font-size: .85rem; letter-spacing: 3px; margin-bottom: 1.2rem; }
.testi-text {
  font-size: .88rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--grey-light);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testi-author {
  font-size: .65rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--cream);
}
.testi-type {
  font-size: .62rem; font-weight: 300;
  letter-spacing: .15em;
  color: var(--red);
  margin-top: .2rem;
}

.testi-controls {
  display: flex; justify-content: center;
  align-items: center; gap: 1.5rem;
  margin-top: 2.5rem;
}
.tc-btn {
  width: 42px; height: 42px;
  border: 1px solid rgba(255,255,255,.1);
  background: none; color: var(--grey-mid);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .3s, color .3s;
}
.tc-btn:hover { border-color: var(--red); color: var(--red); }
.tc-dots { display: flex; gap: 8px; }
.tc-dot {
  width: 20px; height: 1px;
  background: rgba(255,255,255,.15);
  cursor: none;
  transition: background .3s, width .3s;
}
.tc-dot.active { background: var(--red); width: 36px; }

/* ═══════════════════════════════════════════
   INSTAGRAM PREVIEW
═══════════════════════════════════════════ */
#instagram { background: var(--void); }
.ig-header { text-align: center; margin-bottom: 2.5rem; }
.ig-handle {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: .06em;
  color: var(--grey-mid);
  margin-bottom: .5rem;
}
.ig-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}
.ig-cell {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  cursor: none;
}
.ig-img {
  width: 100%; height: 100%;
  transition: transform .5s var(--ease);
}
.ig-cell:hover .ig-img { transform: scale(1.08); }
.ig-cell-overlay {
  position: absolute; inset: 0;
  background: rgba(192,57,43,0);
  display: flex; align-items: center; justify-content: center;
  transition: background .3s;
  font-size: 1.2rem; color: white; opacity: 0;
}
.ig-cell:hover .ig-cell-overlay { background: rgba(192,57,43,.5); opacity: 1; }

/* IG art */
.ig1  { background: radial-gradient(at 30% 30%, #3a0a0a 0%, #080808 100%); }
.ig2  { background: radial-gradient(at 70% 50%, #0a0a2a 0%, #080808 100%); }
.ig3  { background: radial-gradient(at 50% 70%, #1a1a0a 0%, #080808 100%); }
.ig4  { background: radial-gradient(at 20% 60%, #2a0a1a 0%, #080808 100%); }
.ig5  { background: radial-gradient(at 80% 30%, #0a2a0a 0%, #080808 100%); }
.ig6  { background: radial-gradient(at 40% 40%, #1a0a2a 0%, #080808 100%); }

/* ═══════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════ */
#contact { background: var(--black); }
.contact-wrap {
  max-width: 1280px; margin: 0 auto;
  padding: clamp(5rem,10vw,9rem) var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}
.contact-left {}
.contact-left p {
  font-size: .9rem; font-weight: 300;
  line-height: 1.85; color: var(--grey-mid);
  margin-bottom: 2rem;
}
.contact-items { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2.5rem; }
.c-item { display: flex; gap: 1rem; align-items: flex-start; }
.c-icon {
  width: 38px; height: 38px;
  border: 1px solid rgba(192,57,43,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--red); flex-shrink: 0;
}
.c-label {
  font-size: .6rem; font-weight: 400;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--grey-mid); margin-bottom: .2rem;
}
.c-val { font-size: .9rem; font-weight: 300; color: var(--cream); }

.social-row { display: flex; gap: .75rem; flex-wrap: wrap; }
.s-link {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; color: var(--grey-mid);
  transition: border-color .3s, color .3s, background .3s;
}
.s-link:hover { border-color: var(--red); color: var(--red); }

.wa-btn {
  display: inline-flex; align-items: center; gap: .6rem;
  background: #25D366; color: white;
  padding: .8rem 1.6rem;
  font-size: .68rem; font-weight: 400;
  letter-spacing: .15em; text-transform: uppercase;
  transition: background .3s;
  margin-top: 1.2rem;
}
.wa-btn:hover { background: #128C7E; }

.contact-form-wrap {
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,.04);
  padding: 2.5rem;
}
.c-form-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: .05em;
  color: var(--cream);
  margin-bottom: 2rem;
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer {
  background: var(--void);
  border-top: 1px solid rgba(255,255,255,.04);
  padding: 3rem var(--pad);
}
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 1.5rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 2rem; letter-spacing: .08em;
  color: var(--cream); line-height: 1;
}
.footer-logo span { color: var(--red); }
.footer-links { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer-links a {
  font-size: .62rem; font-weight: 300;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--grey-mid); transition: color .3s;
}
.footer-links a:hover { color: var(--cream); }
.footer-copy {
  font-size: .68rem; font-weight: 300;
  color: var(--grey-dark);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-wrap { grid-template-columns: 1fr; max-width: 680px; }
  .services-grid { grid-template-columns: 1fr; }
  .booking-wrap { grid-template-columns: 1fr; max-width: 700px; }
  .contact-wrap { grid-template-columns: 1fr; max-width: 700px; }
  .testi-grid { grid-template-columns: 1fr; }
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
  .masonry { columns: 2; }
  .hero-strip { display: none; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --pad: 1.5rem; }
  .nav-links, .nav-book { display: none; }
  .hamburger { display: flex; }
  body { cursor: auto; }
  #cursor, #cursor-ring { display: none; }
  .masonry { columns: 2; }
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { flex-direction: column; text-align: center; }
  .ba-container { height: 300px; }
  .ba-art { font-size: 4rem; }
}

@media (max-width: 480px) {
  .masonry { columns: 1; }
  .ig-grid { grid-template-columns: repeat(2, 1fr); }
  .filter-bar { justify-content: flex-start; overflow-x: auto; padding-bottom: 0; }
  .hero-title { font-size: clamp(3rem,12vw,5rem); }
  .hero-indicators { display: none; }
  .testi-grid { grid-template-columns: 1fr; }
}
