:root{
  --black:#0C0C0D;
  --charcoal:#161616;
  --charcoal-2:#1F1F1F;
  --bone:#EDEAE3;
  --bone-dim:#B5B0A8;
  --red:#C41E3A;
  --red-bright:#FF2E4D;
  --red-deep:#4A0D18;
  --line:#2A2A29;
  --serif:'Bodoni Moda', serif;
  --mono:'IBM Plex Mono', monospace;
  --sans:'Manrope', sans-serif;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }

body{
  margin:0;
  background:var(--black);
  color:var(--bone);
  font-family:var(--sans);
  font-size:16px;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}

h1,h2,h3{
  font-family:var(--serif);
  color:var(--bone);
  margin:0;
  line-height:1.1;
  font-weight:600;
}

p{ margin:0; }
a{ color:inherit; text-decoration:none; }
ol{ margin:0; padding:0; list-style:none; }

a:focus-visible, button:focus-visible{
  outline:2px solid var(--red-bright);
  outline-offset:3px;
}

.container{
  max-width:1180px;
  margin:0 auto;
  padding:0 28px;
}

/* ---------- Grain overlay ---------- */
.grain{
  position:fixed;
  inset:0;
  z-index:200;
  pointer-events:none;
  opacity:0.05;
  mix-blend-mode:overlay;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Nav ---------- */
.nav{
  position:fixed;
  top:0; left:0; right:0;
  z-index:100;
  background:linear-gradient(180deg, rgba(12,12,13,0.9), rgba(12,12,13,0));
  padding:6px 0;
}
.nav-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:74px;
}
.brand{
  font-family:var(--serif);
  font-style:italic;
  font-weight:600;
  font-size:22px;
  color:var(--bone);
}
.nav-links{
  display:flex;
  gap:32px;
}
.nav-links a{
  font-family:var(--mono);
  font-size:12.5px;
  letter-spacing:0.03em;
  color:var(--bone-dim);
  position:relative;
  padding:4px 0;
}
.nav-links a::after{
  content:"";
  position:absolute;
  left:0; bottom:0;
  width:0%;
  height:1px;
  background:var(--red);
  transition:width .25s ease;
}
.nav-links a:hover{ color:var(--bone); }
.nav-links a:hover::after{ width:100%; }

/* ---------- Mono tags ---------- */
.mono-tag{
  font-family:var(--mono);
  font-size:12.5px;
  letter-spacing:0.03em;
  color:var(--red);
  margin-bottom:18px;
}

/* ---------- Hero ---------- */
.hero{
  min-height:100vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:140px 0 80px;
  position:relative;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(196,30,58,0.10), transparent 55%),
    var(--black);
}
.hero-inner{
  max-width:820px;
}
.wordmark{
  font-style:italic;
  font-size:clamp(64px, 13vw, 148px);
  letter-spacing:0.01em;
  margin-bottom:28px;
  opacity:0;
  animation:wordmark-in 1s cubic-bezier(.2,.8,.2,1) forwards .1s;
}
@keyframes wordmark-in{
  from{ opacity:0; letter-spacing:0.16em; transform:translateY(10px); }
  to{ opacity:1; letter-spacing:0.01em; transform:translateY(0); }
}
.hero-line{
  font-size:18px;
  color:var(--bone-dim);
  max-width:48ch;
  margin-bottom:40px;
}
.hero-actions{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-block;
  font-family:var(--sans);
  font-weight:600;
  font-size:15px;
  padding:16px 32px;
  border-radius:2px;
  border:1px solid transparent;
  transition:transform .2s ease, box-shadow .3s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.btn--red{
  background:var(--red);
  color:var(--bone);
}
.btn--red:hover{
  background:var(--red-bright);
  transform:translateY(-2px);
}
.btn--ghost{
  background:transparent;
  border-color:var(--line);
  color:var(--bone);
}
.btn--ghost:hover{
  border-color:var(--bone);
}
.btn--glow{
  background:var(--red);
  color:var(--bone);
  font-size:17px;
  padding:22px 52px;
  box-shadow:0 0 0 1px var(--red), 0 0 32px rgba(255,46,77,0.35);
  animation:glow-pulse 3.5s ease-in-out infinite;
}
.btn--glow:hover{
  background:var(--red-bright);
  transform:translateY(-2px);
  box-shadow:0 0 0 1px var(--red-bright), 0 0 48px rgba(255,46,77,0.55);
}
@keyframes glow-pulse{
  0%, 100%{ box-shadow:0 0 0 1px var(--red), 0 0 28px rgba(255,46,77,0.30); }
  50%{ box-shadow:0 0 0 1px var(--red), 0 0 44px rgba(255,46,77,0.5); }
}

/* ---------- Scroll cue ---------- */
.scroll-cue{
  position:absolute;
  bottom:40px;
  left:28px;
  display:flex;
  align-items:center;
  gap:12px;
}
.scroll-line{
  width:1px;
  height:36px;
  background:var(--line);
  position:relative;
  overflow:hidden;
}
.scroll-line::after{
  content:"";
  position:absolute;
  top:-36px;
  left:0;
  width:100%;
  height:100%;
  background:var(--red);
  animation:scroll-drip 2.2s ease-in-out infinite;
}
@keyframes scroll-drip{
  0%{ transform:translateY(0); }
  100%{ transform:translateY(72px); }
}
.scroll-word{
  font-family:var(--mono);
  font-size:11px;
  letter-spacing:0.05em;
  color:var(--bone-dim);
}

/* ---------- Sections ---------- */
.section{
  padding:110px 0;
}
.section--raised{
  background:var(--charcoal);
}
.section-head{
  max-width:600px;
  margin-bottom:56px;
}
.section-head h2{
  font-size:clamp(32px, 4vw, 46px);
}

/* ---------- Artists ---------- */
.artist-list{
  display:flex;
  flex-direction:column;
}
.artist-row{
  display:grid;
  grid-template-columns:180px 1fr;
  gap:48px;
  align-items:center;
  padding:44px 0;
  border-top:1px solid var(--line);
}
.artist-row:last-child{
  border-bottom:1px solid var(--line);
}
.artist-row--reverse{
  direction:rtl;
}
.artist-row--reverse .artist-copy,
.artist-row--reverse .artist-mark{
  direction:ltr;
}
.artist-mark{
  width:140px;
  height:140px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:var(--serif);
  font-style:italic;
  font-size:58px;
  color:var(--black);
}
.artist-mark--a{ background:linear-gradient(135deg, var(--bone), #C9C3B6); }
.artist-mark--b{ background:linear-gradient(135deg, var(--red), var(--red-deep)); color:var(--bone); }
.artist-mark--c{ background:linear-gradient(135deg, #4A4A4A, #232323); color:var(--bone); }
.artist-copy h3{
  font-size:27px;
  margin-bottom:8px;
}
.artist-tag{
  font-family:var(--mono);
  font-size:12.5px;
  color:var(--red);
  margin-bottom:14px;
}
.artist-bio{
  color:var(--bone-dim);
  font-size:15.5px;
  max-width:56ch;
  margin-bottom:14px;
}
.artist-handle{
  font-family:var(--mono);
  font-size:12.5px;
  color:var(--bone-dim);
}

/* ---------- Gallery ---------- */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  grid-auto-rows:220px;
  gap:2px;
}
.gallery-tile{
  margin:0;
  position:relative;
  overflow:hidden;
  background:var(--charcoal-2);
  display:flex;
  align-items:flex-end;
  border:1px solid var(--black);
}
.gallery-tile--tall{ grid-row:span 2; }
.ink-art{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  padding:26px;
  opacity:0.85;
  transition:transform .4s ease;
}
.gallery-tile:hover .ink-art{
  transform:scale(1.06);
}
.reg-mark{
  position:absolute;
  width:14px; height:14px;
  z-index:2;
  opacity:0;
  transition:opacity .25s ease;
}
.reg-mark::before, .reg-mark::after{
  content:"";
  position:absolute;
  background:var(--red);
}
.reg-mark::before{ top:50%; left:0; width:100%; height:1px; transform:translateY(-50%); }
.reg-mark::after{ left:50%; top:0; height:100%; width:1px; transform:translateX(-50%); }
.reg-mark--tl{ top:12px; left:12px; }
.reg-mark--br{ bottom:12px; right:12px; }
.gallery-tile:hover .reg-mark{ opacity:1; }
.gallery-tile figcaption{
  position:relative;
  z-index:1;
  width:100%;
  padding:18px 20px;
  background:linear-gradient(180deg, transparent, rgba(0,0,0,0.85));
}
.gallery-tile figcaption span{
  display:block;
  font-family:var(--mono);
  font-size:13px;
  color:var(--bone);
}
.gallery-tile figcaption small{
  display:block;
  font-size:11.5px;
  color:var(--bone-dim);
  margin-top:2px;
}

/* ---------- Booking ---------- */
.booking{
  background:
    radial-gradient(ellipse at 70% 30%, rgba(196,30,58,0.16), transparent 60%),
    var(--black);
  padding:120px 0;
  border-top:1px solid var(--line);
}
.booking h2{
  font-size:clamp(34px, 4.6vw, 52px);
  margin-bottom:20px;
  max-width:14ch;
}
.booking-text{
  color:var(--bone-dim);
  font-size:17px;
  max-width:52ch;
  margin-bottom:60px;
}
.steps{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:36px;
  margin-bottom:64px;
}
.steps li{
  display:flex;
  flex-direction:column;
  gap:14px;
  padding-top:22px;
  border-top:1px solid var(--line);
}
.step-num{
  font-family:var(--mono);
  font-size:13px;
  color:var(--red);
}
.steps h3{
  font-size:20px;
}
.steps p{
  color:var(--bone-dim);
  font-size:14.5px;
}
.booking-cta{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:20px;
}
.booking-alt{
  font-size:14.5px;
  color:var(--bone-dim);
}
.booking-alt a{
  color:var(--bone);
  border-bottom:1px solid var(--red);
}
.booking-alt a:hover{ color:var(--red); }

/* ---------- Footer ---------- */
.footer{
  background:var(--black);
  border-top:1px solid var(--line);
  padding:40px 0;
}
.footer-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:22px;
}
.footer-brand{
  font-family:var(--serif);
  font-style:italic;
  font-size:19px;
}
.footer-addr{
  font-size:13px;
  color:var(--bone-dim);
  margin-top:4px;
}
.footer-links{
  display:flex;
  gap:22px;
}
.footer-links a{
  font-family:var(--mono);
  font-size:12px;
  color:var(--bone-dim);
}
.footer-links a:hover{ color:var(--red); }
.footer-meta{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:4px;
  font-family:var(--mono);
  font-size:11.5px;
  color:var(--bone-dim);
}

/* ---------- Scroll reveal ---------- */
.reveal{
  opacity:0;
  transform:translateY(20px);
  transition:opacity .6s ease, transform .6s ease;
}
.reveal.in-view{
  opacity:1;
  transform:translateY(0);
}
.artist-list .artist-row:nth-child(1){ transition-delay:0s; }
.artist-list .artist-row:nth-child(2){ transition-delay:.08s; }
.artist-list .artist-row:nth-child(3){ transition-delay:.16s; }

@media (prefers-reduced-motion: reduce){
  .reveal{ opacity:1 !important; transform:none !important; transition:none !important; }
  .wordmark{ opacity:1 !important; letter-spacing:0.01em !important; transform:none !important; animation:none !important; }
  .btn--glow{ animation:none !important; }
  .scroll-line::after{ animation:none !important; }
  html{ scroll-behavior:auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px){
  .gallery-grid{
    grid-template-columns:repeat(2, 1fr);
  }
  .steps{
    grid-template-columns:1fr;
  }
  .artist-row{
    grid-template-columns:120px 1fr;
    gap:28px;
  }
  .artist-mark{
    width:100px; height:100px;
    font-size:42px;
  }
}

@media (max-width: 640px){
  .nav-links{ gap:18px; }
  .nav-links a{ font-size:11px; }
  .hero{ padding:120px 0 64px; min-height:auto; }
  .section{ padding:80px 0; }
  .booking{ padding:88px 0; }
  .artist-row{
    grid-template-columns:1fr;
    text-align:left;
  }
  .artist-row--reverse{ direction:ltr; }
  .artist-mark{ width:84px; height:84px; font-size:36px; }
  .gallery-grid{ grid-template-columns:1fr; }
  .gallery-tile--tall{ grid-row:span 1; }
  .scroll-cue{ display:none; }
  .footer-row{ flex-direction:column; align-items:flex-start; }
  .footer-meta{ align-items:flex-start; }
}