:root {
  --red:      #8c1c13;
  --red-deep: #5a0e09;
  --red-mid:  #a52318;
  --red-lite: #c43020;
  --gold:     #d4a843;
  --gold-pale:#e8cc8a;
  --gold-dim: #9a7530;
  --cream:    #f2e8d0;
  --cream-dim:#c9b99a;
  --ink:      #1a0a07;
}

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

body {
  background: var(--ink);
  color: var(--cream);
  font-family: 'IM Fell English', serif;
  font-size: 17px;
  line-height: 1.75;
  overflow-x: hidden;
  cursor: none;
}

/* ── CURSOR ── */
#cursor {
  position: fixed; z-index: 99999;
  width: 26px; height: 26px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.08s, background 0.2s;
}
#cursor.hov {
  background: rgba(212, 168, 67, 0.15);
  transform: translate(-50%, -50%) scale(1.6);
}

/* ── GRAIN OVERLAY ── */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 9998;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23g)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.035;
  pointer-events: none;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 4rem;
  background: linear-gradient(to bottom, rgba(26,10,7,0.97), rgba(26,10,7,0));
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 0.92rem; letter-spacing: 0.2em;
  color: var(--gold); text-decoration: none;
  display: flex; flex-direction: column; line-height: 1.2;
}
.nav-logo em {
  font-size: 0.58rem; letter-spacing: 0.45em;
  color: var(--cream-dim); font-style: normal;
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--cream-dim); text-decoration: none;
  transition: color 0.3s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px; background: var(--gold); transition: width 0.35s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

/* ── HERO ── */
.hero {
  min-height: 100vh; background: var(--red-deep);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; padding: 6rem 2rem 4rem;
}
.hero-panels {
  position: absolute; inset: 0;
  display: grid; grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 3px; pointer-events: none;
}
.hero-panel { background: var(--red); position: relative; }
.hero-panel::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(212,168,67,0.05) 0%, transparent 60%);
}
.hero-art {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.hero-art svg { width: 100%; height: 100%; opacity: 0.20; }
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 2;
  background: radial-gradient(ellipse 80% 70% at 50% 50%, transparent 25%, rgba(26,10,7,0.72) 100%);
}
.hero-content { position: relative; z-index: 3; text-align: center; max-width: 760px; }

.hero-jp {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.62rem; letter-spacing: 0.6em;
  color: var(--gold-dim); margin-bottom: 1.8rem;
  opacity: 0; animation: up 1s 0.3s forwards;
}
.hero-badge {
  display: inline-block; border: 1px solid var(--gold-dim);
  padding: 0.4rem 1.5rem; margin-bottom: 2.2rem;
  font-size: 0.58rem; letter-spacing: 0.5em;
  font-family: 'Noto Serif JP', serif; color: var(--gold);
  text-transform: uppercase; opacity: 0; animation: up 1s 0.6s forwards;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 7rem); font-weight: 700; line-height: 0.95;
  color: var(--cream); opacity: 0; animation: up 1s 0.85s forwards;
}
.hero-title .ac {
  color: var(--gold); font-style: italic; display: block;
  font-size: 0.65em; letter-spacing: 0.15em;
}
.hero-rule {
  width: 80px; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 2rem auto; opacity: 0; animation: up 1s 1.1s forwards;
}
.hero-sub {
  font-style: italic; font-size: 1.1rem;
  color: var(--cream-dim); max-width: 440px; margin: 0 auto;
  opacity: 0; animation: up 1s 1.3s forwards;
}
.hero-cta {
  margin-top: 3rem; display: flex; gap: 1.25rem;
  justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: up 1s 1.6s forwards;
}

/* ── BUTTONS ── */
.btn {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.63rem; letter-spacing: 0.3em; text-transform: uppercase;
  text-decoration: none; padding: 0.9rem 2.2rem; border: 1.5px solid;
  transition: all 0.35s; display: inline-block; cursor: none;
}
.btn-red { background: var(--red); border-color: var(--red-mid); color: var(--gold-pale); }
.btn-red:hover { background: var(--red-mid); border-color: var(--gold-dim); }
.btn-gold { background: transparent; border-color: var(--gold-dim); color: var(--gold); }
.btn-gold:hover { background: rgba(212,168,67,0.08); border-color: var(--gold); }

.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 3; text-align: center; opacity: 0; animation: up 1s 2.2s forwards;
}
.hero-scroll span {
  display: block; font-family: 'Noto Serif JP', serif;
  font-size: 0.48rem; letter-spacing: 0.5em;
  color: var(--gold-dim); margin-bottom: 0.5rem; text-transform: uppercase;
}
.scroll-n {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--gold-dim), transparent);
  margin: 0 auto; animation: drip 2s ease-in-out infinite;
}

/* ── ANIMATIONS ── */
@keyframes drip {
  0%, 100% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40%       { transform: scaleY(1); transform-origin: top; opacity: 1; }
  41%       { transform: scaleY(1); transform-origin: bottom; }
  80%       { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}
@keyframes up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── SEPARATORS ── */
.ksep {
  text-align: center; padding: 2.5rem 0;
  font-family: 'Noto Serif JP', serif;
  color: var(--gold-dim); font-size: 1.1rem; letter-spacing: 1.5em; opacity: 0.45;
}

/* ── SECTION UTILITIES ── */
.overline {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.58rem; letter-spacing: 0.45em; text-transform: uppercase;
  color: var(--gold); display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.1rem;
}
.overline::before { content: ''; width: 22px; height: 1px; background: var(--gold-dim); }
.stitle {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.75rem); font-weight: 700; line-height: 1.15;
  color: var(--cream); margin-bottom: 1.5rem;
}
.stitle em { color: var(--gold); font-style: italic; }

/* ── ABOUT ── */
.about-wrap {
  background: var(--ink); padding: 8rem 4rem;
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 7rem; align-items: center;
}
.a-visual { position: relative; }
.a-door {
  width: 100%; aspect-ratio: 3/4; background: var(--red-deep);
  border: 2px solid rgba(212,168,67,0.2);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.a-door svg { width: 100%; height: 100%; opacity: 0.55; }
.a-door-lbl {
  position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%);
  font-family: 'Noto Serif JP', serif; font-size: 0.52rem; letter-spacing: 0.5em;
  text-transform: uppercase; color: var(--gold); opacity: 0.75; white-space: nowrap;
}
.ac { position: absolute; width: 14px; height: 14px; border-color: var(--gold-dim); border-style: solid; border-width: 0; }
.tl { top: -6px; left: -6px; border-top-width: 1px; border-left-width: 1px; }
.tr { top: -6px; right: -6px; border-top-width: 1px; border-right-width: 1px; }
.bl { bottom: -6px; left: -6px; border-bottom-width: 1px; border-left-width: 1px; }
.br { bottom: -6px; right: -6px; border-bottom-width: 1px; border-right-width: 1px; }
.a-text p { color: var(--cream-dim); font-size: 1rem; margin-bottom: 1.2rem; font-style: italic; font-weight: 300; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 2.25rem; }
.stat { text-align: center; border-top: 1px solid rgba(212,168,67,0.18); padding-top: 0.9rem; }
.stat-n { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--gold); line-height: 1; }
.stat-l { font-family: 'Noto Serif JP', serif; font-size: 0.5rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cream-dim); margin-top: 0.2rem; }

/* ── SERVICES ── */
.svc-wrap { background: var(--red-deep); position: relative; overflow: hidden; padding: 8rem 4rem; }
.svc-bg {
  position: absolute; inset: 0; opacity: 0.06; pointer-events: none;
  background-image: repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%);
  background-size: 22px 22px;
}
.svc-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px; margin-top: 3.5rem; }
.svc {
  background: rgba(90,14,9,0.5); border: 1px solid rgba(212,168,67,0.1);
  padding: 2.5rem 2rem; position: relative; overflow: hidden;
  transition: background 0.4s, border-color 0.4s;
}
.svc:hover { background: rgba(140,28,19,0.5); border-color: rgba(212,168,67,0.28); }
.svc::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1.5px;
  background: linear-gradient(to right, transparent, var(--gold-dim), transparent);
  transform: scaleX(0); transition: transform 0.4s;
}
.svc:hover::before { transform: scaleX(1); }
.svc-num { font-family: 'Noto Serif JP', serif; font-size: 0.52rem; letter-spacing: 0.4em; color: var(--gold-dim); margin-bottom: 1.1rem; }
.svc-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--gold-pale); margin-bottom: 0.65rem; }
.svc-desc { font-size: 0.87rem; color: var(--cream-dim); font-style: italic; line-height: 1.7; margin-bottom: 1.1rem; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.tag {
  font-family: 'Noto Serif JP', serif; font-size: 0.48rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold-dim); border: 1px solid rgba(212,168,67,0.16); padding: 0.2rem 0.52rem;
}

/* ── ARTISTS ── */
.art-wrap { background: var(--ink); padding: 8rem 4rem; max-width: 1200px; margin: 0 auto; }
.art-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; margin-top: 3.5rem; }
.artist-img {
  aspect-ratio: 2/3; background: var(--red-deep);
  border: 1px solid rgba(212,168,67,0.13);
  position: relative; overflow: hidden; margin-bottom: 1.1rem;
  display: flex; align-items: center; justify-content: center;
}
.artist-img svg { width: 65%; height: 65%; opacity: 0.28; }
.artist-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,10,7,0.72) 0%, transparent 55%);
}
.artist-ov { position: absolute; bottom: 0.9rem; left: 1rem; z-index: 2; }
.artist-style { font-family: 'Noto Serif JP', serif; font-size: 0.48rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); opacity: 0.85; }
.artist-name { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--cream); margin-bottom: 0.2rem; }
.artist-spec { font-family: 'Noto Serif JP', serif; font-size: 0.52rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-dim); margin-bottom: 0.55rem; }
.artist-bio { font-size: 0.87rem; color: var(--cream-dim); font-style: italic; }

/* ── GALLERY ── */
.gal-wrap { background: var(--red-deep); padding: 8rem 4rem; position: relative; overflow: hidden; }
.gal-wrap::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0.05;
  background: radial-gradient(circle at 20% 50%, var(--gold) 0%, transparent 50%),
              radial-gradient(circle at 80% 50%, var(--gold) 0%, transparent 50%);
}
.gal-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.gal-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 220px 220px 220px;
  gap: 3px; margin-top: 3rem;
}
.gi {
  background: var(--red); border: 1px solid rgba(212,168,67,0.07);
  overflow: hidden; position: relative;
  display: flex; align-items: center; justify-content: center;
  transition: filter 0.3s; cursor: none;
}
.gi:hover { filter: brightness(1.14); }
.gi:nth-child(1) { grid-column: span 5; grid-row: span 2; }
.gi:nth-child(2) { grid-column: span 4; }
.gi:nth-child(3) { grid-column: span 3; }
.gi:nth-child(4) { grid-column: span 3; }
.gi:nth-child(5) { grid-column: span 4; }
.gi:nth-child(6) { grid-column: span 7; }
.gi:nth-child(7) { grid-column: span 5; }
.gi:nth-child(8) { grid-column: span 4; }
.gi:nth-child(9) { grid-column: span 3; }
.gi svg { width: 55%; height: 55%; opacity: 0.35; }
.gi-lbl { position: absolute; bottom: 0.55rem; left: 0.7rem; font-family: 'Noto Serif JP', serif; font-size: 0.46rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-dim); }

/* ── BOOKING ── */
.bk-wrap { background: var(--ink); }
.bk-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  max-width: 1200px; margin: 0 auto; padding: 8rem 4rem; gap: 7rem; align-items: start;
}
.bk-form { display: flex; flex-direction: column; gap: 1.05rem; margin-top: 1.8rem; }
.flbl { font-family: 'Noto Serif JP', serif; font-size: 0.54rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-dim); display: block; margin-bottom: 0.3rem; }
.fi, .fs, .ft {
  width: 100%; background: rgba(140,28,19,0.1);
  border: 1px solid rgba(212,168,67,0.13); border-bottom-color: rgba(212,168,67,0.28);
  color: var(--cream); padding: 0.78rem 1rem;
  font-family: 'IM Fell English', serif; font-size: 0.95rem;
  outline: none; transition: border-color 0.3s, background 0.3s;
}
.fi:focus, .fs:focus, .ft:focus { border-color: rgba(212,168,67,0.45); background: rgba(140,28,19,0.18); }
.fs {
  appearance: none; cursor: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 5 5-5' stroke='%239a7530' stroke-width='1.2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
}
.fs option { background: var(--red-deep); color: var(--cream); }
.ft { resize: vertical; min-height: 88px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg { display: flex; flex-direction: column; }
.bk-meta { padding-top: 0.5rem; }
.mb { border-top: 1px solid rgba(212,168,67,0.1); padding: 1.4rem 0; }
.mb:first-child { border-top: none; padding-top: 0; }
.mt { font-family: 'Noto Serif JP', serif; font-size: 0.54rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.65rem; }
.mbody { color: var(--cream-dim); font-size: 0.9rem; font-style: italic; }
.hours { display: grid; grid-template-columns: 1fr 1fr; gap: 0.2rem 1.5rem; font-size: 0.86rem; }
.hd { color: var(--cream-dim); }
.ht { text-align: right; color: var(--cream); }
.hc { color: var(--red-lite); opacity: 0.7; }
#bk-ok { display: none; margin-top: 1rem; color: var(--gold); font-style: italic; font-size: 0.97rem; }

/* ── FAQ ── */
.faq-wrap { background: var(--red-deep); padding: 8rem 4rem; position: relative; overflow: hidden; }
.faq-inner { max-width: 800px; margin: 0 auto; }
.faq-list { margin-top: 2.8rem; }
.faq-item { border-top: 1px solid rgba(212,168,67,0.11); }
.faq-item:last-child { border-bottom: 1px solid rgba(212,168,67,0.11); }
.fq {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.35rem 0; cursor: none; font-size: 0.98rem; color: var(--cream); transition: color 0.3s;
}
.fq:hover { color: var(--gold-pale); }
.fqi {
  width: 21px; height: 21px; flex-shrink: 0;
  border: 1px solid var(--gold-dim); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-dim); font-size: 0.85rem;
  transition: transform 0.35s, background 0.35s, color 0.35s; font-family: monospace;
}
.faq-item.open .fqi { transform: rotate(45deg); background: var(--gold-dim); color: var(--ink); }
.fa { max-height: 0; overflow: hidden; transition: max-height 0.45s ease; color: var(--cream-dim); font-size: 0.9rem; font-style: italic; line-height: 1.8; }
.fa p { padding-bottom: 1.3rem; }
.faq-item.open .fa { max-height: 250px; }

/* ── CONTACT ── */
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; }
.cl { background: var(--ink); padding: 7rem 5rem; display: flex; flex-direction: column; justify-content: center; }
.cr { background: var(--red-deep); min-height: 520px; position: relative; overflow: hidden; }
.cr iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: none;
  filter: sepia(40%) hue-rotate(330deg) saturate(1.4) brightness(0.6) contrast(1.1);
}
.cd { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.65rem; }
.cicon { color: var(--gold-dim); flex-shrink: 0; margin-top: 3px; }
.cicon svg { width: 18px; height: 18px; }
.clbl2 { font-family: 'Noto Serif JP', serif; font-size: 0.5rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold-dim); margin-bottom: 0.18rem; }
.cval { color: var(--cream-dim); font-size: 0.93rem; font-style: italic; }
.cval a { color: var(--cream-dim); text-decoration: none; transition: color 0.3s; }
.cval a:hover { color: var(--gold); }
.soc-links { display: flex; gap: 0.7rem; margin-top: 1.8rem; }
.soc {
  font-family: 'Noto Serif JP', serif; font-size: 0.54rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-dim); border: 1px solid rgba(212,168,67,0.16); padding: 0.52rem 0.95rem;
  text-decoration: none; transition: all 0.3s; cursor: none;
}
.soc:hover { color: var(--gold); border-color: var(--gold-dim); background: rgba(212,168,67,0.06); }

/* ── FOOTER ── */
footer {
  background: var(--red-deep); border-top: 1px solid rgba(212,168,67,0.1);
  padding: 2.4rem 4rem; display: flex; justify-content: space-between; align-items: center;
}
.ft-logo { font-family: 'Playfair Display', serif; font-size: 0.82rem; letter-spacing: 0.25em; color: var(--gold-dim); }
.ft-copy { font-family: 'Noto Serif JP', serif; font-size: 0.5rem; letter-spacing: 0.14em; color: rgba(212,168,67,0.28); }
.ft-f { color: var(--gold-dim); opacity: 0.38; font-size: 1.1rem; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  nav { padding: 1.2rem 2rem; }
  .nav-links { display: none; }
  .about-wrap, .bk-grid { grid-template-columns: 1fr; padding: 5rem 2rem; gap: 3rem; }
  .art-grid, .svc-grid { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gi:nth-child(n) { grid-column: span 1; grid-row: span 1; }
  .contact-wrap { grid-template-columns: 1fr; }
  .cr { min-height: 280px; }
  .cl { padding: 4rem 2rem; }
  .svc-wrap, .gal-wrap, .faq-wrap { padding: 5rem 2rem; }
  .art-wrap { padding: 5rem 2rem; }
  footer { flex-direction: column; gap: 0.7rem; text-align: center; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}
