/* =========================================
   KEYO Tattoo Studio — keyo 2
   Bang Bang minimal × Keyo identity
   ========================================= */

:root {
  --bg: #0a0a0a;
  --bg-2: #121212;
  --bg-3: #181818;
  --grey: #1c1c1c;
  --line: rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.22);
  --text: #f4f4f4;
  --text-dim: rgba(244, 244, 244, 0.60);
  --text-faint: rgba(244, 244, 244, 0.34);
  --gold: #c9a24b;
  --gold-soft: rgba(201, 162, 75, 0.55);
  --gold-faint: rgba(201, 162, 75, 0.16);
  --sans: "Archivo", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --maxw: 1340px;
  --pad: clamp(20px, 4vw, 64px);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scrollbar-width: none; -ms-overflow-style: none; }
html::-webkit-scrollbar { width: 0; height: 0; display: none; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  scrollbar-width: none;
}
body::-webkit-scrollbar { width: 0; height: 0; display: none; }

body.no-scroll { overflow: hidden; height: 100vh; touch-action: none; }
html.no-scroll { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: opacity .3s var(--ease), color .3s var(--ease); }
a:hover { opacity: .65; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: rgba(255, 255, 255, .16); }

/* Global uppercase voice (per client request) */
.upper { text-transform: uppercase; }

/* ========== Loader ========== */
.loader {
  position: fixed; inset: 0; z-index: 999;
  background: var(--bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 34px;
  transition: opacity .9s var(--ease), visibility .9s var(--ease);
  overflow: hidden;
}
.loader.hide { opacity: 0; visibility: hidden; }
.loader-meta {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--mono);
  font-size: 10px; letter-spacing: .5em; text-transform: uppercase;
  color: var(--text-faint);
  opacity: 0;
  animation: metaIn 1s var(--ease) 1.3s forwards;
}
.loader-meta-bottom .lm-dot { opacity: .5; }
@keyframes metaIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.loader-inner {
  display: flex; align-items: center; justify-content: center;
}
.loader-logo {
  height: clamp(46px, 8vw, 88px);
  width: auto;
  opacity: 0;
  transform: translateY(14px);
  filter: blur(8px);
  animation: logoIn .9s var(--ease) .5s forwards;
}
@keyframes logoIn {
  from { opacity: 0; transform: translateY(14px); filter: blur(8px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
.loader-line { width: 0; height: 1px; background: var(--text-dim); animation: lineDraw 1s var(--ease) 1.1s forwards; position: relative; }
.loader-line span { position: absolute; top: -1px; left: 0; height: 3px; width: 30px; background: var(--text); opacity: 0; animation: lineDot 1.4s var(--ease) 1.6s infinite; }
@keyframes lineDraw { from { width: 0; } to { width: 220px; } }
@keyframes lineDot { 0% { opacity: 0; left: 0; } 20% { opacity: 1; } 80% { opacity: 1; } 100% { opacity: 0; left: 190px; } }
.loader.hide .loader-inner, .loader.hide .loader-meta, .loader.hide .loader-line {
  opacity: 0; transform: translateY(-8px);
  transition: opacity .5s var(--ease), transform .6s var(--ease);
}

/* ========== Side vertical rotating text ========== */
.side-text {
  position: fixed; z-index: 50;
  font-family: var(--mono);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--text-dim);
  writing-mode: vertical-rl;
  text-align: center;
  pointer-events: none;
  mix-blend-mode: difference;
}
.side-left { left: 22px; top: 30%; transform: translateY(-50%) rotate(180deg); }
.side-right { right: 22px; top: 50%; transform: translateY(-50%); }
.side-bottom-left { left: 22px; top: 76%; transform: translateY(-50%) rotate(180deg); }
.phrase-stack { position: relative; display: inline-block; text-align: center; }
.phrase-stack .phrase {
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  opacity: 0; filter: blur(6px);
  letter-spacing: .42em;
  transition: opacity 1.1s var(--ease), filter 1.1s var(--ease), letter-spacing 1.4s var(--ease);
}
.phrase-stack .phrase.active {
  position: relative; left: auto; transform: none;
  opacity: 1; filter: blur(0); letter-spacing: .25em;
}
@media (max-width: 768px) {
  .side-text { font-size: 8px; }
  .side-left { left: 4px; } .side-right { right: 4px; } .side-bottom-left { left: 4px; }
}

/* ========== Nav ========== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  padding: 20px var(--pad);
  transition: padding .3s var(--ease);
}
.nav::before {
  content: ""; position: absolute; inset: 0;
  background: rgba(10, 10, 10, .85);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  opacity: 0; transition: opacity .4s var(--ease); pointer-events: none; z-index: -1;
}
.nav.scrolled::before { opacity: 1; }
.nav.scrolled { padding: 13px var(--pad); }

.nav-logo {
  grid-column: 2;
  justify-self: center;
  display: inline-flex; align-items: center;
  line-height: 1;
}
.nav-logo img { height: 20px; width: auto; display: block; }

.nav-links {
  grid-column: 1; justify-self: start;
  display: flex; align-items: center; gap: 30px;
}
.nav-links a {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--text-dim); font-weight: 300; position: relative;
}
.nav-links a:hover { color: var(--text); opacity: 1; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1px;
  background: var(--text); transition: width .35s var(--ease);
}
.nav-links a:hover::after { width: 100%; }

.nav-right { grid-column: 3; justify-self: end; display: flex; align-items: center; gap: 16px; }

/* Language switcher */
.lang-switch { display: inline-flex; align-items: center; gap: 2px; }
.lang-switch button {
  font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-faint); padding: 6px 6px; line-height: 1;
  border-bottom: 1px solid transparent;
  transition: color .3s var(--ease), border-color .3s var(--ease);
}
.lang-switch button:hover { color: var(--text); }
.lang-switch button.active { color: var(--text); border-bottom-color: var(--text); }
.nav-book {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  padding: 10px 20px; border: 1px solid var(--line-strong); color: var(--text);
  transition: border-color .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
}
.nav-book:hover { border-color: var(--text); background: var(--text); color: var(--bg); opacity: 1; }

.nav-toggle { display: none; width: 28px; height: 20px; position: relative; grid-column: 1; justify-self: start; }
.nav-toggle span { position: absolute; left: 0; right: 0; height: 1px; background: var(--text); transition: transform .3s var(--ease), opacity .3s var(--ease), top .3s var(--ease); }
.nav-toggle span:nth-child(1) { top: 3px; }
.nav-toggle span:nth-child(2) { top: 10px; }
.nav-toggle span:nth-child(3) { top: 17px; }
.nav-toggle.open span:nth-child(1) { top: 10px; transform: rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { top: 10px; transform: rotate(-45deg); }

@media (max-width: 920px) {
  .nav-links {
    position: fixed; top: 0; right: 0; bottom: 0; width: min(360px, 82vw);
    background: var(--bg-2); border-left: 1px solid var(--line);
    flex-direction: column; justify-content: center; align-items: flex-start;
    padding: 100px 42px; gap: 26px;
    transform: translateX(100%); transition: transform .5s var(--ease); z-index: 105;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 13px; }
  .nav-toggle { display: block; z-index: 110; }
  .nav-book { display: none; }
}

/* ========== Media band (the "video" slots) ========== */
/* Each scene wraps a band + its following solid. The band stays pinned
   (sticky) while its solid scrolls up to cover it; because the next scene
   paints over the previous one, the next video rises up over the old
   content, pins at the top, and is then covered by its own solid. */
/* Every band is pinned at top:0 from the start (sticky over the whole <main>),
   sitting BEHIND the solids (lower z-index). A solid scrolls up to cover its
   band, then scrolls off to UNCOVER the next band which is already fixed at the
   top — and that next band then gets covered by its own solid, and so on. */
.band {
  position: sticky; top: 0; z-index: 1;
  height: 100vh; min-height: 560px;
  width: 100%; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  /* Opaque backing so the band behind is never seen through during the
     slide crossfade (when both photos are momentarily semi-transparent). */
  background-color: var(--bg);
}
/* Pull every band (except the hero) up by one viewport so it PINS at top:0
   one screen earlier — exactly when the previous solid begins to lift off it.
   The band is therefore already fixed at the top and gets uncovered in place
   (bottom→top) instead of sliding up. The +100vh margin-bottom compensates so
   the band's own solid keeps its original position and still covers it after. */
main > .band:not(:first-of-type) {
  margin-top: -100vh;
  margin-bottom: 100vh;
}
.band-slider { position: absolute; inset: 0; }
.band-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  opacity: 0; transform: scale(1.06);
  transition: opacity 1.8s var(--ease), transform 7s linear;
  filter: grayscale(55%) brightness(.62);
}
.band-slide.active { opacity: 1; transform: scale(1.13); }
.band-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(0,0,0,.28) 0%, rgba(0,0,0,.55) 72%, rgba(0,0,0,.72) 100%),
    linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.5) 100%);
}
.band-content { position: relative; z-index: 2; text-align: center; padding: 0 var(--pad); }
.band-title {
  font-weight: 600;
  font-size: clamp(40px, 9vw, 132px);
  line-height: 1; letter-spacing: .22em; text-transform: uppercase;
  display: flex; align-items: center; gap: .18em; justify-content: center;
  flex-wrap: nowrap; white-space: nowrap; max-width: 100%;
}
.band-title .bracket { color: var(--text-faint); font-weight: 300; }
.band-sub {
  margin-top: 22px;
  font-family: var(--mono);
  font-size: 11px; letter-spacing: .4em; text-transform: uppercase; color: var(--text-dim);
}

/* HERO band variant */
.band--hero .band-content { max-width: 1000px; animation: heroFade 1.4s var(--ease) .3s both; }
@keyframes heroFade { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.hero-tag { font-family: var(--mono); font-size: 10px; letter-spacing: .55em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 28px; }
.hero-title {
  display: flex; justify-content: center; align-items: center; margin-bottom: 30px;
}
.hero-title img { height: clamp(64px, 16vw, 180px); width: auto; display: block; }
.hero-meta {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: .35em; text-transform: uppercase; color: var(--text-faint);
  margin-bottom: 42px; display: flex; justify-content: center; flex-wrap: wrap; gap: 14px;
}
.hero-meta .dot { opacity: .5; }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.scroll-hint {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-family: var(--mono); font-size: 9px; letter-spacing: .4em; text-transform: uppercase; color: var(--text-faint);
}
.scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, transparent, var(--text-dim)); animation: scrollPulse 2s var(--ease) infinite; transform-origin: top; }
@keyframes scrollPulse { 0% { transform: scaleY(0); } 50% { transform: scaleY(1); } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ========== Solid sections (cover the bands) ========== */
/* Solids always use grey (never pure black) and cover the pinned band above */
.solid {
  position: relative; z-index: 10;
  min-height: 100vh;
  background: var(--grey);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.solid.grey { background: var(--grey); }
.section-inner { max-width: var(--maxw); margin: 0 auto; padding: clamp(64px, 9vw, 120px) var(--pad); }

.section-head { margin-bottom: clamp(36px, 5vw, 60px); }
.section-head.center { text-align: center; }
.section-num { font-family: var(--mono); font-size: 11px; letter-spacing: .3em; color: var(--text-faint); display: block; margin-bottom: 18px; }
.section-title {
  font-weight: 600;
  font-size: clamp(30px, 5.4vw, 68px);
  line-height: 1.02; letter-spacing: .14em; text-transform: uppercase;
}
.section-title .bracket { color: var(--text-faint); font-weight: 300; }
.section-lead { margin-top: 20px; font-family: var(--mono); font-size: 12px; letter-spacing: .12em; color: var(--text-dim); max-width: 560px; }
.section-head.center .section-lead { margin-left: auto; margin-right: auto; }

/* ========== Buttons (bang-bang bordered) ========== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 30px;
  font-family: var(--mono);
  font-size: 11px; letter-spacing: .26em; text-transform: uppercase; font-weight: 400;
  border: 1px solid var(--text); background: transparent; color: var(--text);
  transition: all .35s var(--ease); cursor: pointer;
}
.btn:hover { background: var(--text); color: var(--bg); opacity: 1; }
.btn-solid { background: var(--text); color: var(--bg); }
.btn-solid:hover { background: transparent; color: var(--text); }
.btn-ghost { border-color: var(--line-strong); color: var(--text-dim); }
.btn-ghost:hover { border-color: var(--text); background: transparent; color: var(--text); }
.btn-underline { border: none; padding: 6px 2px; border-bottom: 1px solid var(--line-strong); }
.btn-underline:hover { background: transparent; color: var(--text); border-bottom-color: var(--text); }

/* ========== BOOK block ========== */
.book-block { text-align: center; }
.book-block .section-title { margin: 0 auto 26px; max-width: 16ch; }
.book-block .book-lead { font-family: var(--mono); font-size: 12px; letter-spacing: .14em; color: var(--text-dim); max-width: 540px; margin: 0 auto 40px; line-height: 1.9; }
.book-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }
.book-facts {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.book-fact { padding: 30px 20px; border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); }
.book-fact:last-child { border-right: none; }
.book-fact .bf-label { font-family: var(--mono); font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--text-faint); display: block; margin-bottom: 12px; }
.book-fact .bf-value { font-size: 15px; letter-spacing: .1em; text-transform: uppercase; line-height: 1.5; color: var(--text); }
@media (max-width: 720px) {
  .book-facts { grid-template-columns: 1fr; }
  .book-fact { border-right: none; }
}

/* ========== Artists ========== */
.artists-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 28px); max-width: 900px; margin: 0 auto; }
.artist-card { display: flex; flex-direction: column; text-align: center; }
.artist-img { aspect-ratio: 4/5; overflow: hidden; background: var(--bg-2); border: 1px solid var(--line); }
.artist-img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); transition: transform .8s var(--ease), filter .6s var(--ease); }
.artist-card:hover .artist-img img { transform: scale(1.05); filter: grayscale(40%); }
.artist-name { font-weight: 600; font-size: 19px; letter-spacing: .14em; text-transform: uppercase; margin: 22px 0 8px; }
.artist-role { font-family: var(--mono); font-size: 10px; letter-spacing: .28em; text-transform: uppercase; color: var(--text-faint); }
.artist-style { font-family: var(--mono); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--text-dim); margin-top: 10px; }
.artist-ig { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; color: var(--text-dim); margin-top: 12px; border-bottom: 1px solid transparent; padding-bottom: 2px; display: inline-block; }
.artist-ig:hover { color: var(--text); border-bottom-color: var(--text); opacity: 1; }
.artist-card .btn { margin-top: 20px; width: 100%; padding: 13px 0; }
@media (max-width: 900px) { .artists-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .artists-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; } }

/* ========== Gallery + Lightbox ========== */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 260px; grid-auto-flow: dense; gap: 12px; }
.g-item { overflow: hidden; position: relative; cursor: zoom-in; background: var(--bg-2); }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease), filter .5s var(--ease); filter: grayscale(100%); }
.g-item:hover img { transform: scale(1.06); filter: grayscale(0); }
.g-item::after {
  content: "+"; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(.8);
  width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--text); border-radius: 50%; color: var(--text);
  font-weight: 200; font-size: 22px; background: rgba(0,0,0,.4);
  opacity: 0; transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.g-item:hover::after { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.g-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.g-item:nth-child(6) { grid-row: span 2; }
.g-item:nth-child(9) { grid-column: span 2; }
@media (max-width: 1024px) {
  .gallery { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 220px; }
  .g-item:nth-child(1), .g-item:nth-child(6), .g-item:nth-child(9) { grid-column: auto; grid-row: auto; }
  .g-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
}
@media (max-width: 700px) {
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; gap: 8px; }
  .g-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
}

.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,.96); z-index: 200;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility .35s var(--ease); padding: 60px;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 100%; max-height: 100%; object-fit: contain; box-shadow: 0 20px 60px rgba(0,0,0,.6); }
.lb-close, .lb-prev, .lb-next {
  position: absolute; width: 50px; height: 50px;
  display: flex; align-items: center; justify-content: center; font-size: 28px;
  color: var(--text); border: 1px solid var(--line-strong); border-radius: 50%;
  background: rgba(0,0,0,.4); transition: all .3s var(--ease); font-weight: 200;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { border-color: var(--text); background: rgba(255,255,255,.08); }
.lb-close { top: 24px; right: 24px; font-size: 24px; }
.lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 24px; top: 50%; transform: translateY(-50%); }
@media (max-width: 600px) { .lightbox { padding: 20px; } .lb-prev, .lb-next { width: 40px; height: 40px; } }

/* ========== Space (studio) ========== */
.space-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.space-grid .g-item:first-child { grid-column: span 2; aspect-ratio: 21/9; }
.space-grid .g-item { aspect-ratio: 4/3; }
@media (max-width: 700px) { .space-grid { grid-template-columns: 1fr; } .space-grid .g-item:first-child { grid-column: auto; aspect-ratio: 4/3; } }

/* ========== Reviews ========== */
.reviews-summary {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px;
  padding: 26px 28px; border: 1px solid var(--line); background: var(--bg-2); margin-bottom: 36px;
}
.reviews-rating { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.rating-num { font-weight: 600; font-size: 40px; line-height: 1; letter-spacing: .04em; }
.rating-stars { font-size: 18px; letter-spacing: .15em; }
.rating-meta { font-family: var(--mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--text-dim); }
.rating-meta strong { color: var(--text); font-weight: 600; }
.reviews-link { font-family: var(--mono); font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--text-dim); border-bottom: 1px solid var(--line-strong); padding-bottom: 3px; }
.reviews-link:hover { color: var(--text); border-color: var(--text); opacity: 1; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.4vw, 28px); }
.review-card { background: var(--bg-2); border: 1px solid var(--line); padding: 30px 26px 26px; display: flex; flex-direction: column; transition: border-color .4s var(--ease), transform .4s var(--ease); }
.review-card:hover { border-color: var(--line-strong); transform: translateY(-3px); }
.review-stars { font-size: 14px; letter-spacing: .2em; margin-bottom: 16px; }
.review-text { font-size: 13.5px; line-height: 1.75; color: var(--text-dim); margin-bottom: 22px; flex: 1; }
.review-author { font-family: var(--mono); font-size: 10px; letter-spacing: .25em; text-transform: uppercase; color: var(--text-faint); margin-top: auto; }
@media (max-width: 1024px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ========== Contact ========== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: clamp(36px, 6vw, 80px); align-items: start; }
.contact-info { display: flex; flex-direction: column; }
.info-block { padding: 22px 0; border-bottom: 1px solid var(--line); }
.info-block:first-child { padding-top: 0; }
.info-label { display: block; font-family: var(--mono); font-size: 10px; letter-spacing: .32em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 12px; }
.info-block a, .info-block p { font-size: 16px; letter-spacing: .08em; text-transform: uppercase; color: var(--text); line-height: 1.6; }
.info-block p span { color: var(--text); }
.info-block em { font-style: normal; color: var(--text-faint); }
.socials { display: flex; flex-direction: column; gap: 8px; }
.socials a { font-size: 14px; }

.contact-form { background: var(--bg-2); border: 1px solid var(--line); padding: clamp(28px, 4vw, 46px); }
.form-intro { font-family: var(--mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 32px; line-height: 1.8; }
.field { margin-bottom: 22px; }
.field label { display: block; font-family: var(--mono); font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 8px; }
.field input, .field textarea, .field select {
  width: 100%; background: transparent; border: none; border-bottom: 1px solid var(--line-strong);
  padding: 10px 0; color: var(--text); font-family: var(--sans); font-size: 15px; font-weight: 300; letter-spacing: .04em;
  transition: border-color .3s var(--ease);
}
.field select { appearance: none; cursor: pointer; text-transform: uppercase; background-image: linear-gradient(45deg, transparent 50%, var(--text-dim) 50%), linear-gradient(135deg, var(--text-dim) 50%, transparent 50%); background-position: calc(100% - 14px) center, calc(100% - 8px) center; background-size: 6px 6px; background-repeat: no-repeat; padding-right: 28px; }
.field select option { background: var(--bg-2); color: var(--text); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--text); }
.field textarea { resize: vertical; min-height: 120px; }
.contact-form .btn { margin-top: 12px; width: 100%; }
.form-status { margin-top: 16px; font-family: var(--mono); font-size: 12px; letter-spacing: .05em; min-height: 20px; opacity: 0; transition: opacity .35s var(--ease); }
.form-status.show { opacity: 1; }
.form-status.ok { color: #b6e0c1; }
.form-status.err { color: #e8a4a4; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-map { margin-top: clamp(40px, 6vw, 64px); border: 1px solid var(--line); background: var(--bg-2); }
.contact-map-meta { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 18px 22px; border-bottom: 1px solid var(--line); }
.contact-map-meta .info-label { margin-bottom: 0; }
.contact-map-link { font-family: var(--mono); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--text-dim); border-bottom: 1px solid var(--line-strong); padding-bottom: 2px; }
.contact-map-link:hover { color: var(--text); border-bottom-color: var(--text); opacity: 1; }
.contact-map-frame { position: relative; aspect-ratio: 21/9; overflow: hidden; background: var(--bg-3); }
.contact-map-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: invert(92%) hue-rotate(180deg) saturate(.6) contrast(.95); transition: filter .4s var(--ease); }
.contact-map:hover .contact-map-frame iframe { filter: invert(92%) hue-rotate(180deg) saturate(.85) contrast(1); }
@media (max-width: 600px) { .contact-map-frame { aspect-ratio: 4/3; } }
.map-consent { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; text-align: center; padding: 24px; background: var(--bg-3); }
.map-consent-text { max-width: 440px; font-size: 13px; line-height: 1.6; color: var(--text-dim); margin: 0; }
.map-consent-privacy { font-family: var(--mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--text-faint); text-decoration: underline; text-underline-offset: 3px; }
.map-consent-privacy:hover { color: var(--text); }
.footer-email { color: var(--text-dim); border-bottom: 1px solid transparent; padding-bottom: 1px; }
.footer-email:hover { color: var(--text); border-bottom-color: var(--text); }

/* ========== Footer ========== */
.footer { position: relative; z-index: 1; background: var(--bg-2); border-top: 1px solid var(--line); padding: 60px var(--pad) 40px; }
.footer-top { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 32px; padding-bottom: 32px; border-bottom: 1px solid var(--line); max-width: var(--maxw); margin: 0 auto; }
.footer-brand { display: inline-flex; align-items: center; }
.footer-brand img { height: 24px; width: auto; display: block; }
.footer-nav { display: flex; gap: 26px; flex-wrap: wrap; }
.footer-nav a { font-family: var(--mono); font-size: 11px; letter-spacing: .25em; text-transform: uppercase; color: var(--text-dim); }
.footer-bottom { max-width: var(--maxw); margin: 24px auto 0; display: flex; justify-content: space-between; align-items: center; font-family: var(--mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--text-faint); flex-wrap: wrap; gap: 12px; }
.footer-credit a { color: var(--text-dim); border-bottom: 1px solid transparent; padding-bottom: 1px; }
.footer-credit a:hover { color: var(--text); border-bottom-color: var(--text); opacity: 1; }

/* ========== Reveal ========== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .band { position: relative; }
  main > .band:not(:first-of-type) { margin-top: 0; margin-bottom: 0; }
  .solid { min-height: 0; }
}

/* ========== Artist subpage ========== */
.page-hero {
  position: relative; min-height: 70vh;
  padding: clamp(140px, 16vw, 200px) var(--pad) clamp(60px, 8vw, 90px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: grayscale(100%) brightness(.42); transform: scale(1.05); animation: heroSlow 16s linear infinite alternate; }
@keyframes heroSlow { from { transform: scale(1.05); } to { transform: scale(1.12); } }
.page-hero-overlay { position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(0,0,0,.35) 0%, rgba(0,0,0,.7) 80%, rgba(0,0,0,.9) 100%); }
.page-hero-content { position: relative; z-index: 2; animation: heroFade 1.4s var(--ease) .2s both; }
.page-hero-role { font-family: var(--mono); font-size: 11px; letter-spacing: .4em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 20px; }
.page-hero-title { font-weight: 600; font-size: clamp(40px, 10vw, 132px); line-height: 1.02; letter-spacing: .14em; text-transform: uppercase; display: flex; justify-content: center; align-items: center; gap: .12em; flex-wrap: nowrap; white-space: nowrap; max-width: 100%; margin: 0 auto; }
.page-hero-title .bracket { flex: none; }
.page-hero-title .bracket { color: var(--text-faint); font-weight: 300; }
.page-hero-style { font-family: var(--mono); font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--text-faint); margin-top: 22px; }
.page-hero-cta { margin-top: 36px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.back-link { font-family: var(--mono); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--text-dim); display: inline-block; margin-bottom: 24px; }
.back-link:hover { color: var(--text); opacity: 1; }

/* =========================================
   ACADEMY — gold accent + dedicated page
   ========================================= */

/* --- Differentiated "Academy" nav link (gold pill) --- */
.nav-academy {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--mono);
  font-size: 11px; letter-spacing: .25em; text-transform: uppercase; font-weight: 400;
  color: var(--gold) !important;
  padding: 7px 16px;
  border: 1px solid var(--gold-soft);
  border-radius: 2px;
  background: var(--gold-faint);
  transition: background .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease);
}
.nav-academy::before {
  content: "「」"; font-weight: 300; letter-spacing: -.1em; opacity: .7; font-size: 9px;
}
.nav-academy::after { display: none !important; }
.nav-academy:hover { background: var(--gold); border-color: var(--gold); color: var(--bg) !important; opacity: 1; }
.nav-academy.active { background: var(--gold); border-color: var(--gold); color: var(--bg) !important; }
@media (max-width: 920px) {
  .nav-academy { align-self: flex-start; font-size: 12px; padding: 9px 18px; }
}

/* Gold "book" button in nav-right (academy page) */
.nav-book--gold { border-color: var(--gold-soft); color: var(--gold); }
.nav-book--gold:hover { border-color: var(--gold); background: var(--gold); color: var(--bg); }

/* Footer academy link in gold */
.footer-academy { color: var(--gold) !important; }
.footer-academy:hover { color: var(--gold) !important; opacity: .7; }

/* Gold helpers + button */
.gold { color: var(--gold) !important; }
.btn-gold { border-color: var(--gold); color: var(--gold); background: transparent; }
.btn-gold:hover { background: var(--gold); border-color: var(--gold); color: var(--bg); opacity: 1; }

/* Academy hero accent */
.page-hero--academy .page-hero-title .bracket { color: var(--gold); }
.page-hero--academy .page-hero-role.gold { color: var(--gold); }

/* Overview stats */
.ac-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line); margin-top: clamp(20px, 4vw, 40px);
}
.ac-stat {
  padding: clamp(28px, 4vw, 44px) 22px; text-align: center;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.ac-stat:last-child { border-right: none; }
.ac-stat-num { font-weight: 600; font-size: clamp(34px, 4vw, 52px); line-height: 1; letter-spacing: .02em; color: var(--gold); }
.ac-stat-label { font-family: var(--mono); font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--text-dim); line-height: 1.5; max-width: 16ch; }
@media (max-width: 860px) { .ac-stats { grid-template-columns: repeat(2, 1fr); } .ac-stat:nth-child(2) { border-right: none; } .ac-stat:nth-child(1), .ac-stat:nth-child(2) { border-bottom: 1px solid var(--line); } }
@media (max-width: 460px) { .ac-stats { grid-template-columns: 1fr; } .ac-stat { border-right: none; border-bottom: 1px solid var(--line); } .ac-stat:last-child { border-bottom: none; } }

/* Program — month cards */
.ac-program-sec { border-top: none; }
.ac-months { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(16px, 2vw, 24px); }
.ac-month {
  background: var(--bg-2); border: 1px solid var(--line);
  padding: clamp(26px, 3vw, 38px);
  display: flex; flex-direction: column;
  transition: border-color .4s var(--ease), transform .4s var(--ease);
  position: relative; overflow: hidden;
}
.ac-month::before {
  content: ""; position: absolute; top: 0; left: 0; width: 3px; height: 100%;
  background: linear-gradient(to bottom, var(--gold), transparent);
  opacity: .5; transition: opacity .4s var(--ease);
}
.ac-month:hover { border-color: var(--gold-soft); transform: translateY(-3px); }
.ac-month:hover::before { opacity: 1; }
.ac-month-head { margin-bottom: 26px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.ac-month-num { font-family: var(--mono); font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 12px; }
.ac-month-title { font-weight: 600; font-size: clamp(19px, 2vw, 24px); line-height: 1.2; letter-spacing: .08em; text-transform: uppercase; }
.ac-month-body { display: flex; flex-direction: column; gap: 22px; }
.ac-block { display: flex; flex-direction: column; gap: 10px; }
.ac-block-label { font-family: var(--mono); font-size: 10px; letter-spacing: .26em; text-transform: uppercase; color: var(--text-faint); }
.ac-list { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.ac-list li { position: relative; padding-left: 20px; font-size: 14.5px; line-height: 1.55; color: var(--text-dim); }
.ac-list li::before { content: ""; position: absolute; left: 2px; top: .62em; width: 6px; height: 1px; background: var(--gold); }
.ac-goal {
  margin-top: 6px; padding: 16px 18px; border: 1px solid var(--gold-faint);
  background: var(--gold-faint); display: flex; flex-direction: column; gap: 6px;
}
.ac-goal-label { font-family: var(--mono); font-size: 10px; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); }
.ac-goal-text { font-size: 14.5px; line-height: 1.5; color: var(--text); letter-spacing: .02em; }
@media (max-width: 760px) { .ac-months { grid-template-columns: 1fr; } }

/* Format + result */
.ac-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 36px); }
.ac-info-card { background: var(--bg-2); border: 1px solid var(--line); padding: clamp(28px, 4vw, 46px); }
.ac-info-card .section-num { margin-bottom: 16px; }
.ac-info-title { font-weight: 600; font-size: clamp(22px, 3vw, 32px); line-height: 1.15; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 28px; }
.ac-info-rows { display: flex; flex-direction: column; }
.ac-info-row { display: flex; justify-content: space-between; align-items: baseline; gap: 18px; padding: 16px 0; border-bottom: 1px solid var(--line); flex-wrap: wrap; }
.ac-info-row:first-child { padding-top: 0; }
.ac-info-label { font-family: var(--mono); font-size: 10px; letter-spacing: .26em; text-transform: uppercase; color: var(--text-faint); }
.ac-info-val { font-size: 15px; letter-spacing: .04em; text-transform: uppercase; color: var(--text); text-align: right; }
.ac-info-note { margin-top: 22px; font-family: var(--mono); font-size: 11px; line-height: 1.7; letter-spacing: .06em; color: var(--text-faint); }
.ac-result-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.ac-result-list li { position: relative; padding-left: 30px; font-size: 15px; line-height: 1.6; color: var(--text-dim); }
.ac-result-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--gold); font-size: 15px; }
@media (max-width: 860px) { .ac-info-grid { grid-template-columns: 1fr; } }

/* Enrollment form */
.ac-form { max-width: 720px; margin: 0 auto; }
.ac-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.ac-form .btn-gold { width: 100%; margin-top: 12px; }
@media (max-width: 560px) { .ac-form-row { grid-template-columns: 1fr; gap: 0; } }
