/* ============================================================
   WASABI Kimono Rental — Refresh Stylesheet
   Concept: "Kyoto meets Harajuku" — editorial wa-modern
   All new selectors are namespaced with `.wsb-`
   ============================================================ */

/* ---------- 1. Design Tokens ---------- */
:root {
  --wsb-ink: #171411;
  --wsb-ink-soft: #2c2620;
  --wsb-washi: #f7f3ec;
  --wsb-washi-2: #efe8d9;
  --wsb-washi-3: #e7dec9;
  --wsb-gold: #c9a961;
  --wsb-gold-deep: #8a6d2b;
  --wsb-gold-soft: #e8d5a3;
  --wsb-sakura: #e8b4b8;
  --wsb-sumi: #14110d;
  --wsb-beni: #9a2936;
  --wsb-line: rgba(201, 169, 97, 0.28);
  --wsb-line-strong: rgba(201, 169, 97, 0.55);
  --wsb-shadow-soft: 0 30px 80px -30px rgba(20, 17, 13, 0.35);
  --wsb-shadow-card: 0 24px 60px -20px rgba(20, 17, 13, 0.28);

  --wsb-font-display: 'Cinzel', 'Cormorant Garamond', 'Times New Roman', serif;
  --wsb-font-serif-en: 'Cormorant Garamond', 'Cinzel', serif;
  --wsb-font-serif-jp: 'Shippori Mincho', 'Noto Serif JP', 'Yu Mincho', '游明朝', serif;
  --wsb-font-sans: 'Cormorant Garamond', 'Noto Serif JP', sans-serif;

  --wsb-ease: cubic-bezier(0.6, 0.01, 0.1, 1);
  --wsb-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --wsb-ease-in-out: cubic-bezier(0.83, 0, 0.17, 1);

  --wsb-container: min(1280px, 92vw);
  --wsb-container-wide: min(1480px, 94vw);
  --wsb-container-tight: min(960px, 88vw);
}

/* ---------- 2. Reset / Base overrides ---------- */
html {
  scroll-behavior: auto;
  overflow-x: hidden;
}
body {
  background: var(--wsb-washi);
  color: var(--wsb-ink);
  font-family: var(--wsb-font-serif-jp);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

.wsb * {
  box-sizing: border-box;
}

.wsb img {
  display: block;
  max-width: 100%;
  height: auto;
}

:where(.wsb a) {
  color: inherit;
  text-decoration: none;
}

.wsb-noscroll {
  overflow: hidden;
}

/* ---------- 3. Utility ---------- */
.wsb-container {
  width: var(--wsb-container);
  margin-inline: auto;
}
.wsb-container-wide {
  width: var(--wsb-container-wide);
  margin-inline: auto;
}
.wsb-container-tight {
  width: var(--wsb-container-tight);
  margin-inline: auto;
}

.wsb-section {
  position: relative;
  padding: clamp(48px, 7vw, 100px) 0;
  overflow: hidden;
}

.wsb-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--wsb-font-display);
  font-size: clamp(11px, 1vw, 13px);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--wsb-gold-deep);
  font-weight: 500;
}
.wsb-eyebrow::before,
.wsb-eyebrow::after {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--wsb-gold);
}
.wsb-eyebrow.is-left::after { display: none; }
.wsb-eyebrow.is-right::before { display: none; }

.wsb-headline {
  font-family: var(--wsb-font-display);
  font-size: clamp(34px, 5vw, 72px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.04em;
  color: var(--wsb-ink);
  margin: 18px 0 24px;
}
.wsb-headline em {
  font-style: italic;
  font-family: var(--wsb-font-serif-en);
  color: var(--wsb-gold-deep);
  font-weight: 400;
}
.wsb-headline-jp {
  font-family: var(--wsb-font-serif-jp);
  font-size: clamp(22px, 3vw, 36px);
  letter-spacing: 0.18em;
  font-weight: 500;
  color: var(--wsb-ink);
}

.wsb-lead {
  font-family: var(--wsb-font-serif-en);
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.85;
  color: var(--wsb-ink-soft);
  max-width: 64ch;
}
.wsb-lead-jp {
  font-family: var(--wsb-font-serif-jp);
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 2.1;
  letter-spacing: 0.08em;
  color: var(--wsb-ink-soft);
  max-width: 60ch;
}

/* ---------- 4. Buttons ---------- */
.wsb-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 22px 44px;
  font-family: var(--wsb-font-display);
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--wsb-washi);
  background: var(--wsb-ink);
  border: 1px solid var(--wsb-ink);
  cursor: pointer;
  transition: all 0.6s var(--wsb-ease);
  overflow: hidden;
  isolation: isolate;
}
.wsb-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, var(--wsb-gold-deep), var(--wsb-gold), var(--wsb-gold-deep));
  background-size: 200% 100%;
  transform: translateY(101%);
  transition: transform 0.6s var(--wsb-ease);
  z-index: -1;
}
.wsb-btn:hover {
  color: var(--wsb-ink);
  border-color: var(--wsb-gold);
}
.wsb-btn:hover::before {
  transform: translateY(0);
}
.wsb-btn .arrow {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: currentColor;
  position: relative;
  transition: width 0.5s var(--wsb-ease);
}
.wsb-btn .arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  width: 8px;
  height: 1px;
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: right center;
}
.wsb-btn:hover .arrow {
  width: 40px;
}

.wsb-btn--ghost {
  background: transparent;
  color: var(--wsb-ink);
  border-color: var(--wsb-ink);
}
.wsb-btn--ghost:hover {
  color: var(--wsb-washi);
}
.wsb-btn--ghost::before {
  background: var(--wsb-ink);
}

.wsb-btn--gold {
  background: linear-gradient(135deg, var(--wsb-gold-deep), var(--wsb-gold));
  color: var(--wsb-washi);
  border-color: transparent;
}
.wsb-btn--gold::before {
  background: var(--wsb-ink);
}
.wsb-btn--gold:hover { color: var(--wsb-gold-soft); }

/* ---------- 5. Reveal Animations (defaults; GSAP overrides if loaded) ---------- */
.wsb [data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.35s var(--wsb-ease), transform 0.4s var(--wsb-ease);
}
.wsb [data-reveal].is-in {
  opacity: 1;
  transform: none;
}
.wsb [data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s var(--wsb-ease), transform 0.35s var(--wsb-ease);
}
.wsb [data-reveal-stagger].is-in > * {
  opacity: 1;
  transform: none;
}
.wsb [data-reveal-stagger].is-in > *:nth-child(1) { transition-delay: 0s; }
.wsb [data-reveal-stagger].is-in > *:nth-child(2) { transition-delay: 0.05s; }
.wsb [data-reveal-stagger].is-in > *:nth-child(3) { transition-delay: 0.1s; }
.wsb [data-reveal-stagger].is-in > *:nth-child(4) { transition-delay: 0.15s; }
.wsb [data-reveal-stagger].is-in > *:nth-child(5) { transition-delay: 0.2s; }

/* ---------- 6. Header / Nav override ---------- */
body .header {
  background: rgba(20, 17, 13, 0.92);
  backdrop-filter: blur(18px) saturate(120%);
  transition: background 0.6s var(--wsb-ease), backdrop-filter 0.6s var(--wsb-ease), border-color 0.6s var(--wsb-ease);
  border-bottom: 1px solid transparent;
  will-change: backdrop-filter, background;
}
body .header.is-scrolled {
  background: rgba(20, 17, 13, 0.95);
  backdrop-filter: blur(18px) saturate(120%);
  border-bottom: 1px solid var(--wsb-line);
}
body .header .navbar .container {
  padding-inline: clamp(20px, 4vw, 56px);
}
body .header .nav-logo h1 {
  font-family: var(--wsb-font-display);
  letter-spacing: 0.18em;
  color: var(--wsb-washi);
}
body .header .nav-logo h1 span {
  font-family: var(--wsb-font-serif-en);
  font-style: italic;
  letter-spacing: 0.12em;
  font-weight: 400;
  opacity: 0.85;
}
body .header .nav-menu {
  flex-wrap: nowrap !important;
}
body .header .nav-menu li {
  white-space: nowrap;
  flex-shrink: 0;
}
body .header .nav-menu li > * {
  white-space: nowrap;
}
body .header .nav-menu a {
  font-family: var(--wsb-font-display);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--wsb-washi);
  position: relative;
  padding: 8px 0;
  white-space: nowrap;
}
body .header .nav-menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--wsb-gold);
  transition: width 0.5s var(--wsb-ease);
}
body .header .nav-menu a:hover { color: var(--wsb-gold-soft); }
body .header .nav-menu a:hover::after { width: 100%; }

/* Lang switcher (will live inside header.php) */
.wsb-lang {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: 28px;
  padding-left: 22px;
  border-left: 1px solid var(--wsb-line-strong);
  font-family: var(--wsb-font-display);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.wsb-lang a {
  display: inline-block;
  white-space: nowrap;
}
.wsb-lang a {
  color: var(--wsb-washi);
  opacity: 0.55;
  transition: opacity 0.4s var(--wsb-ease), color 0.4s var(--wsb-ease);
}
.wsb-lang a:hover,
.wsb-lang a.is-active {
  opacity: 1;
  color: var(--wsb-gold);
}

/* Header booking pill (desktop) */
.wsb-book-pill {
  display: none;
}
@media (min-width: 1024px) {
  body .header .navbar .container .nav-menu li a.wsb-book-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-left: 28px;
    padding: 12px 28px;
    border: 2px solid var(--wsb-gold);
    background: var(--wsb-gold);
    color: var(--wsb-ink);
    font-family: var(--wsb-font-display);
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border-radius: 999px;
    transition: background 0.4s var(--wsb-ease), color 0.4s var(--wsb-ease), border-color 0.4s var(--wsb-ease);
    white-space: nowrap;
    flex-shrink: 0;
    line-height: 1;
    text-decoration: none;
    width: auto;
    font-weight: 500;
  }
  body .header .navbar .container .nav-menu li a.wsb-book-pill::after {
    display: none;
  }
  body .header .navbar .container .nav-menu li a.wsb-book-pill:hover {
    background: transparent;
    color: var(--wsb-gold);
    border-color: var(--wsb-gold);
  }
}

/* ---------- 7. Hero ---------- */
.wsb-hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  width: 100%;
  overflow: hidden;
  background: var(--wsb-sumi);
  isolation: isolate;
}
.wsb-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.wsb-hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.8s var(--wsb-ease), transform 7s linear;
}
.wsb-hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
}
.wsb-hero__veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(20,17,13,0.05) 0%, rgba(20,17,13,0.55) 60%, rgba(20,17,13,0.85) 100%),
    linear-gradient(180deg, rgba(20,17,13,0.4) 0%, transparent 40%, rgba(20,17,13,0.7) 100%);
  z-index: 1;
}
.wsb-hero__noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.45'/></svg>");
  opacity: 0.07;
  mix-blend-mode: overlay;
  z-index: 2;
  pointer-events: none;
}

.wsb-hero__inner {
  position: relative;
  z-index: 3;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  padding: 0 clamp(24px, 5vw, 80px) clamp(60px, 8vw, 120px);
  gap: 40px;
}

.wsb-hero__sidemark {
  align-self: start;
  padding-top: clamp(120px, 18vh, 200px);
  font-family: var(--wsb-font-display);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--wsb-gold-soft);
  text-transform: uppercase;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.wsb-hero__center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding-bottom: 40px;
}
.wsb-hero__crest {
  width: 64px;
  height: 64px;
  border: 1px solid var(--wsb-gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--wsb-gold);
  font-family: var(--wsb-font-display);
  font-size: 11px;
  letter-spacing: 0.18em;
  position: relative;
}
.wsb-hero__crest::before,
.wsb-hero__crest::after {
  content: '';
  position: absolute;
  background: var(--wsb-gold);
}
.wsb-hero__crest::before {
  width: 1px;
  height: 100px;
  bottom: 100%;
  left: 50%;
}
.wsb-hero__crest::after {
  width: 1px;
  height: 30px;
  top: 100%;
  left: 50%;
}
.wsb-hero__title {
  font-family: var(--wsb-font-display);
  font-size: clamp(48px, 9vw, 132px);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 0.95;
  color: var(--wsb-washi);
  margin: 0;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.35);
}
.wsb-hero__title em {
  display: block;
  font-family: var(--wsb-font-serif-en);
  font-style: italic;
  font-size: 0.36em;
  letter-spacing: 0.18em;
  margin-top: 12px;
  color: var(--wsb-gold-soft);
  font-weight: 400;
}
.wsb-hero__sub {
  font-family: var(--wsb-font-serif-en);
  font-size: clamp(15px, 1.4vw, 20px);
  letter-spacing: 0.16em;
  color: var(--wsb-washi);
  opacity: 0.92;
  font-style: italic;
  margin: 0;
}
.wsb-hero__badges {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.wsb-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--wsb-font-display);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wsb-gold-soft);
  padding: 10px 18px;
  border: 1px solid var(--wsb-line-strong);
  border-radius: 999px;
  background: rgba(0,0,0,0.18);
  backdrop-filter: blur(6px);
}
.wsb-hero__badge svg {
  width: 14px;
  height: 14px;
  fill: var(--wsb-gold);
}

.wsb-hero__sideinfo {
  align-self: end;
  text-align: right;
  font-family: var(--wsb-font-serif-en);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--wsb-gold-soft);
  line-height: 1.8;
  font-style: italic;
}
.wsb-hero__sideinfo span {
  display: block;
  font-family: var(--wsb-font-display);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--wsb-washi);
  opacity: 0.7;
  margin-top: 4px;
  font-style: normal;
}

.wsb-hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-family: var(--wsb-font-display);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--wsb-washi);
  opacity: 0.7;
}
.wsb-hero__scroll::after {
  content: '';
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, var(--wsb-gold), transparent);
  animation: wsb-scroll-line 2.4s var(--wsb-ease) infinite;
  transform-origin: top;
}
@keyframes wsb-scroll-line {
  0% { transform: scaleY(0); }
  50% { transform: scaleY(1); }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@media (max-width: 900px) {
  .wsb-hero { min-height: 100svh; }
  .wsb-hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-bottom: 100px;
  }
  .wsb-hero__sidemark,
  .wsb-hero__sideinfo { display: none; }
  .wsb-hero__title { font-size: clamp(54px, 14vw, 84px); }
  .wsb-hero__crest::before { height: 60px; }
}

/* ---------- 8. Marquee ---------- */
.wsb-marquee {
  background: var(--wsb-ink);
  color: var(--wsb-gold-soft);
  padding: 22px 0;
  overflow: hidden;
  border-block: 1px solid var(--wsb-gold-deep);
  position: relative;
  z-index: 5;
}
.wsb-marquee__track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: wsb-marquee 36s linear infinite;
  width: max-content;
}
.wsb-marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  font-family: var(--wsb-font-display);
  font-size: clamp(16px, 1.8vw, 22px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.wsb-marquee__item em {
  font-family: var(--wsb-font-serif-en);
  font-style: italic;
  color: var(--wsb-gold);
  font-weight: 400;
}
.wsb-marquee__item::after {
  content: '✦';
  color: var(--wsb-gold);
  font-size: 14px;
}
@keyframes wsb-marquee {
  to { transform: translateX(-50%); }
}

/* ---------- 9. Prologue ---------- */
.wsb-prologue {
  background: var(--wsb-washi);
  position: relative;
}
.wsb-prologue::before {
  content: '時';
  position: absolute;
  font-family: var(--wsb-font-serif-jp);
  font-size: clamp(280px, 38vw, 540px);
  color: var(--wsb-washi-2);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0.55;
  line-height: 1;
  z-index: 0;
}
.wsb-prologue__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(40px, 8vw, 120px);
  align-items: center;
  width: var(--wsb-container-wide);
  margin-inline: auto;
}
.wsb-prologue__vertical {
  writing-mode: vertical-rl;
  font-family: var(--wsb-font-serif-jp);
  font-size: clamp(28px, 3vw, 38px);
  letter-spacing: 0.32em;
  line-height: 1.85;
  color: var(--wsb-ink);
}
.wsb-prologue__vertical b {
  font-weight: 500;
  color: var(--wsb-gold-deep);
  border-right: 2px solid var(--wsb-gold);
  padding-right: 6px;
}
.wsb-prologue__center {
  text-align: center;
}
.wsb-prologue__center h2 {
  font-family: var(--wsb-font-display);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400;
  letter-spacing: 0.06em;
  margin: 14px 0 30px;
  line-height: 1.25;
}
.wsb-prologue__center h2 em {
  font-family: var(--wsb-font-serif-en);
  font-style: italic;
  color: var(--wsb-gold-deep);
}
.wsb-prologue__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--wsb-line-strong);
}
.wsb-prologue__stat {
  text-align: center;
}
.wsb-prologue__stat .num {
  display: block;
  font-family: var(--wsb-font-display);
  font-size: clamp(34px, 4vw, 56px);
  color: var(--wsb-gold-deep);
  font-weight: 500;
  line-height: 1;
}
.wsb-prologue__stat .label {
  display: block;
  margin-top: 12px;
  font-family: var(--wsb-font-display);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--wsb-ink-soft);
}
@media (max-width: 900px) {
  .wsb-prologue__inner { grid-template-columns: 1fr; }
  .wsb-prologue__vertical { display: none; }
  .wsb-prologue__stats { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- 10. About (Editorial) ---------- */
.wsb-about {
  background: var(--wsb-washi);
  position: relative;
}
.wsb-about__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.wsb-about__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.wsb-about__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.6s var(--wsb-ease);
}
.wsb-about__media:hover img { transform: scale(1.05); }
.wsb-about__media::after {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(247, 243, 236, 0.5);
  pointer-events: none;
}
.wsb-about__floatlabel {
  position: absolute;
  bottom: -32px;
  right: -32px;
  background: var(--wsb-ink);
  color: var(--wsb-gold-soft);
  padding: 28px 36px;
  font-family: var(--wsb-font-display);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid var(--wsb-gold);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
}
.wsb-about__floatlabel strong {
  font-size: 28px;
  color: var(--wsb-gold);
  font-weight: 500;
}
.wsb-about__text {
  padding: 20px 0;
}
.wsb-about__text .wsb-headline {
  margin-top: 14px;
}
.wsb-about__text p {
  margin: 0 0 22px;
}
.wsb-about__signature {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--wsb-line-strong);
  display: flex;
  align-items: center;
  gap: 20px;
}
.wsb-about__signature .seal {
  width: 56px;
  height: 56px;
  border: 1px solid var(--wsb-beni);
  color: var(--wsb-beni);
  display: grid;
  place-items: center;
  font-family: var(--wsb-font-serif-jp);
  font-size: 22px;
  background: rgba(154, 41, 54, 0.05);
}
.wsb-about__signature .meta {
  font-family: var(--wsb-font-serif-en);
  font-style: italic;
  font-size: 14px;
  color: var(--wsb-ink-soft);
}
.wsb-about__signature .meta span {
  display: block;
  font-family: var(--wsb-font-display);
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--wsb-gold-deep);
  text-transform: uppercase;
  margin-bottom: 4px;
  font-style: normal;
}

@media (max-width: 900px) {
  .wsb-about__grid { grid-template-columns: 1fr; }
  .wsb-about__floatlabel { position: static; margin-top: 16px; display: inline-flex; }
}

/* ---------- 11. Experience (Stacking cards) ---------- */
.wsb-experience {
  background: linear-gradient(180deg, var(--wsb-washi) 0%, var(--wsb-washi-2) 100%);
}
.wsb-experience__head {
  text-align: center;
  margin-bottom: clamp(60px, 8vw, 100px);
}
.wsb-experience__list {
  display: grid;
  gap: clamp(32px, 4vw, 56px);
}
.wsb-experience__card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: stretch;
  background: var(--wsb-washi);
  border: 1px solid var(--wsb-line);
  position: relative;
  overflow: hidden;
  min-height: 460px;
}
.wsb-experience__card:nth-child(even) {
  grid-template-columns: 1fr 1.1fr;
}
.wsb-experience__card:nth-child(even) .wsb-experience__media { order: 2; }
.wsb-experience__media {
  position: relative;
  overflow: hidden;
  background: var(--wsb-washi-3);
}
.wsb-experience__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 2.2s var(--wsb-ease);
}
.wsb-experience__card:hover .wsb-experience__media img { transform: scale(1.06); }
.wsb-experience__body {
  padding: clamp(32px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.wsb-experience__num {
  font-family: var(--wsb-font-display);
  font-size: clamp(54px, 8vw, 110px);
  color: var(--wsb-washi-3);
  line-height: 0.8;
  font-weight: 400;
  position: absolute;
  top: clamp(24px, 4vw, 48px);
  right: clamp(28px, 4vw, 56px);
  pointer-events: none;
}
.wsb-experience__title {
  font-family: var(--wsb-font-display);
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin: 0 0 14px;
  color: var(--wsb-ink);
  max-width: 22ch;
}
.wsb-experience__title em {
  font-family: var(--wsb-font-serif-en);
  font-style: italic;
  color: var(--wsb-gold-deep);
}
.wsb-experience__title-jp {
  display: block;
  font-family: var(--wsb-font-serif-jp);
  font-size: 12px;
  letter-spacing: 0.24em;
  color: var(--wsb-gold-deep);
  margin-bottom: 18px;
  text-transform: none;
}
.wsb-experience__desc {
  font-family: var(--wsb-font-serif-en);
  font-size: 16px;
  line-height: 1.85;
  color: var(--wsb-ink-soft);
  max-width: 48ch;
  margin: 0;
}
.wsb-experience__cta {
  margin-top: 80px;
  text-align: center;
}

@media (max-width: 900px) {
  .wsb-experience__card,
  .wsb-experience__card:nth-child(even) { grid-template-columns: 1fr; }
  .wsb-experience__card:nth-child(even) .wsb-experience__media { order: 0; }
  .wsb-experience__media { aspect-ratio: 4/3; }
}

/* ---------- 12. Kimono Collection (Carousel) ---------- */
.wsb-collection {
  background: var(--wsb-sumi);
  color: var(--wsb-washi);
  position: relative;
}
.wsb-collection .wsb-eyebrow { color: var(--wsb-gold); }
.wsb-collection .wsb-eyebrow::before,
.wsb-collection .wsb-eyebrow::after { background: var(--wsb-gold); }
.wsb-collection .wsb-headline { color: var(--wsb-washi); }
.wsb-collection__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 60px;
  gap: 40px;
  flex-wrap: wrap;
}
.wsb-collection__intro p {
  font-family: var(--wsb-font-serif-en);
  font-size: 16px;
  line-height: 1.8;
  color: rgba(247,243,236,0.7);
  max-width: 48ch;
  margin: 0;
}

.wsb-collection__swiper {
  width: 100%;
  overflow: visible !important;
}
.wsb-collection__swiper .swiper-slide {
  width: clamp(280px, 28vw, 380px);
  height: clamp(420px, 42vw, 540px);
  position: relative;
  overflow: hidden;
  transition: transform 0.8s var(--wsb-ease);
}
.wsb-collection__swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--wsb-ease);
}
.wsb-collection__swiper .swiper-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(20,17,13,0.85) 100%);
  z-index: 1;
}
.wsb-collection__swiper .swiper-slide:hover img {
  transform: scale(1.08);
}
.wsb-collection__caption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 2;
}
.wsb-collection__caption .num {
  font-family: var(--wsb-font-display);
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--wsb-gold);
  text-transform: uppercase;
}
.wsb-collection__caption .name {
  display: block;
  margin-top: 8px;
  font-family: var(--wsb-font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--wsb-washi);
}
.wsb-collection__caption .name em {
  display: block;
  font-family: var(--wsb-font-serif-jp);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: rgba(232, 213, 163, 0.85);
  font-style: normal;
  margin-top: 4px;
}
.wsb-collection__nav {
  display: flex;
  gap: 16px;
  margin-top: 50px;
  justify-content: flex-end;
  align-items: center;
}
.wsb-collection__btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--wsb-gold);
  background: transparent;
  color: var(--wsb-gold);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 0.4s var(--wsb-ease);
}
.wsb-collection__btn:hover {
  background: var(--wsb-gold);
  color: var(--wsb-ink);
}
.wsb-collection__btn svg { width: 20px; height: 20px; }
.wsb-collection__count {
  font-family: var(--wsb-font-display);
  font-size: 12px;
  letter-spacing: 0.24em;
  color: var(--wsb-gold);
  margin-right: 14px;
}

/* ---------- 13. Pricing ---------- */
.wsb-pricing {
  background: var(--wsb-washi);
  position: relative;
}
.wsb-pricing__head {
  text-align: center;
  margin-bottom: 60px;
}
.wsb-pricing__currency {
  display: inline-flex;
  margin-top: 20px;
  border: 1px solid var(--wsb-line-strong);
  border-radius: 999px;
  padding: 4px;
  background: var(--wsb-washi);
}
.wsb-pricing__currency button {
  border: none;
  background: transparent;
  color: var(--wsb-ink-soft);
  padding: 10px 22px;
  font-family: var(--wsb-font-display);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 999px;
  transition: all 0.4s var(--wsb-ease);
}
.wsb-pricing__currency button.is-active {
  background: var(--wsb-ink);
  color: var(--wsb-gold-soft);
}
.wsb-pricing__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
}
.wsb-plan {
  position: relative;
  background: var(--wsb-washi);
  border: 1px solid var(--wsb-line);
  padding: 44px 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.6s var(--wsb-ease), box-shadow 0.6s var(--wsb-ease), border-color 0.6s var(--wsb-ease);
}
.wsb-plan:hover {
  transform: translateY(-6px);
  box-shadow: var(--wsb-shadow-card);
  border-color: var(--wsb-gold);
}
.wsb-plan--featured {
  background: var(--wsb-ink);
  color: var(--wsb-washi);
  border-color: var(--wsb-gold);
  transform: translateY(-12px);
}
.wsb-plan--featured:hover { transform: translateY(-18px); }
.wsb-plan--featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--wsb-gold), var(--wsb-gold-deep));
  color: var(--wsb-ink);
  font-family: var(--wsb-font-display);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 8px 18px;
  white-space: nowrap;
}
.wsb-plan__num {
  font-family: var(--wsb-font-display);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--wsb-gold-deep);
}
.wsb-plan--featured .wsb-plan__num { color: var(--wsb-gold); }
.wsb-plan__name {
  font-family: var(--wsb-font-display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin: 14px 0 10px;
  line-height: 1.3;
  min-height: 3em;
}
.wsb-plan__name span {
  display: block;
  font-family: var(--wsb-font-serif-en);
  font-style: italic;
  font-size: 14px;
  color: var(--wsb-ink-soft);
  margin-top: 4px;
  font-weight: 400;
}
.wsb-plan--featured .wsb-plan__name span { color: rgba(247,243,236,0.6); }
.wsb-plan__price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  padding: 22px 0;
  border-top: 1px solid var(--wsb-line);
  border-bottom: 1px solid var(--wsb-line);
}
.wsb-plan__price .amount {
  font-family: var(--wsb-font-display);
  font-size: 38px;
  font-weight: 500;
  color: var(--wsb-ink);
  line-height: 1;
}
.wsb-plan--featured .wsb-plan__price .amount { color: var(--wsb-gold-soft); }
.wsb-plan__price .per {
  font-family: var(--wsb-font-serif-en);
  font-style: italic;
  font-size: 13px;
  color: var(--wsb-ink-soft);
}
.wsb-plan--featured .wsb-plan__price .per { color: rgba(247,243,236,0.55); }
.wsb-plan__price .sep {
  width: 100%;
  height: 0;
}
.wsb-plan__features {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  font-family: var(--wsb-font-serif-en);
  font-size: 14px;
  color: var(--wsb-ink-soft);
  flex-grow: 1;
}
.wsb-plan--featured .wsb-plan__features { color: rgba(247,243,236,0.7); }
.wsb-plan__features li {
  position: relative;
  padding: 10px 0 10px 22px;
  border-bottom: 1px dashed var(--wsb-line);
  line-height: 1.55;
}
.wsb-plan__features li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 12px;
  color: var(--wsb-gold);
  font-size: 10px;
}
.wsb-plan__notice {
  font-family: var(--wsb-font-serif-en);
  font-size: 12px;
  font-style: italic;
  color: var(--wsb-ink-soft);
  margin-bottom: 16px;
  opacity: 0.8;
}
.wsb-plan--featured .wsb-plan__notice { color: rgba(247,243,236,0.55); }
.wsb-plan__cta {
  margin-top: auto;
}
.wsb-plan__cta .wsb-btn {
  width: 100%;
  justify-content: center;
}
.wsb-plan--featured .wsb-btn {
  background: var(--wsb-gold);
  color: var(--wsb-ink);
  border-color: var(--wsb-gold);
}
.wsb-plan--featured .wsb-btn::before { background: var(--wsb-washi); }
.wsb-plan--featured .wsb-btn:hover { color: var(--wsb-ink); }

@media (max-width: 1100px) {
  .wsb-pricing__grid { grid-template-columns: repeat(2, 1fr); }
  .wsb-plan--featured { transform: none; }
  .wsb-plan--featured:hover { transform: translateY(-6px); }
}
@media (max-width: 600px) {
  .wsb-pricing__grid { grid-template-columns: 1fr; }
}

/* ---------- 14. Rental Flow (Timeline) ---------- */
.wsb-flow {
  background: linear-gradient(180deg, var(--wsb-washi-2) 0%, var(--wsb-washi) 100%);
  position: relative;
}
.wsb-flow__head {
  text-align: center;
  margin-bottom: 80px;
}
.wsb-flow__timeline {
  position: relative;
  display: grid;
  gap: clamp(60px, 8vw, 100px);
}
.wsb-flow__timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--wsb-gold), var(--wsb-line-strong) 50%, transparent);
  transform-origin: top;
  z-index: 0;
}
.wsb-flow__step {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(24px, 4vw, 60px);
  z-index: 1;
}
.wsb-flow__step:nth-child(even) {
  direction: rtl;
}
.wsb-flow__step:nth-child(even) > * { direction: ltr; }
.wsb-flow__media {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--wsb-line);
}
.wsb-flow__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--wsb-ease);
}
.wsb-flow__step:hover .wsb-flow__media img { transform: scale(1.05); }
.wsb-flow__node {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--wsb-washi);
  border: 1px solid var(--wsb-gold);
  display: grid;
  place-items: center;
  font-family: var(--wsb-font-display);
  font-size: 28px;
  color: var(--wsb-gold-deep);
  position: relative;
  box-shadow: 0 0 0 8px var(--wsb-washi);
}
.wsb-flow__node::before {
  content: '';
  position: absolute;
  inset: -12px;
  border: 1px dashed var(--wsb-line-strong);
  border-radius: 50%;
}
.wsb-flow__body h4 {
  font-family: var(--wsb-font-display);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 500;
  letter-spacing: 0.03em;
  margin: 0 0 8px;
}
.wsb-flow__body h4 em {
  font-family: var(--wsb-font-serif-en);
  font-style: italic;
  color: var(--wsb-gold-deep);
}
.wsb-flow__body .jp {
  display: block;
  font-family: var(--wsb-font-serif-jp);
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--wsb-gold-deep);
  margin-bottom: 14px;
}
.wsb-flow__body p {
  font-family: var(--wsb-font-serif-en);
  font-size: 15px;
  line-height: 1.85;
  color: var(--wsb-ink-soft);
  max-width: 42ch;
  margin: 0;
}
.wsb-flow__cta {
  text-align: center;
  margin-top: 80px;
}

@media (max-width: 900px) {
  .wsb-flow__timeline::before { left: 47px; }
  .wsb-flow__step,
  .wsb-flow__step:nth-child(even) {
    grid-template-columns: 96px 1fr;
    direction: ltr;
  }
  .wsb-flow__step > * { direction: ltr; }
  .wsb-flow__media {
    grid-column: 1 / -1;
    margin-bottom: 20px;
  }
  .wsb-flow__node {
    grid-row: 2;
    grid-column: 1;
    justify-self: start;
    width: 80px;
    height: 80px;
    font-size: 22px;
  }
  .wsb-flow__body { grid-row: 2; grid-column: 2; }
}

/* ---------- 15. Gallery (Masonry) ---------- */
.wsb-gallery {
  background: var(--wsb-washi);
}
.wsb-gallery__head {
  text-align: center;
  margin-bottom: 60px;
}
.wsb-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.wsb-gallery__item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--wsb-line);
  aspect-ratio: 1 / 1;
  background: var(--wsb-washi-2);
}
.wsb-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.4s var(--wsb-ease), filter 1.2s var(--wsb-ease);
}
@media (max-width: 1200px) {
  .wsb-gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 900px) {
  .wsb-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
.wsb-gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(20,17,13,0.7) 100%);
  opacity: 0;
  transition: opacity 0.6s var(--wsb-ease);
}
.wsb-gallery__icon {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--wsb-gold);
  color: var(--wsb-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s var(--wsb-ease), transform 0.3s var(--wsb-ease);
  z-index: 2;
  line-height: 0;
}
.wsb-gallery__icon svg {
  width: 16px;
  height: 16px;
  display: block;
}
.wsb-gallery__item:hover img,
.wsb-gallery__item:active img {
  transform: scale(1.05);
  filter: brightness(0.95);
}
.wsb-gallery__item:hover::after,
.wsb-gallery__item:active::after { opacity: 1; }
.wsb-gallery__item:hover .wsb-gallery__icon,
.wsb-gallery__item:active .wsb-gallery__icon {
  opacity: 1;
  transform: none;
}
.wsb-gallery__instalink {
  text-align: center;
  margin-top: 60px;
}
.wsb-gallery__instalink a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--wsb-font-display);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--wsb-ink);
  border-bottom: 1px solid var(--wsb-gold);
  padding-bottom: 10px;
  transition: color 0.4s var(--wsb-ease), border-color 0.4s var(--wsb-ease);
}
.wsb-gallery__instalink a:hover {
  color: var(--wsb-gold-deep);
}

/* Gallery Modal — keep existing functional, just restyle visually */
body .gallery-modal {
  background: rgba(20, 17, 13, 0.92);
  backdrop-filter: blur(12px);
}
body .gallery-modal-content {
  border: 1px solid var(--wsb-gold);
}
body .gallery-modal-close,
body .gallery-modal-prev,
body .gallery-modal-next {
  background: rgba(20,17,13,0.55);
  color: var(--wsb-gold-soft);
  border: 1px solid var(--wsb-gold);
  transition: all 0.4s var(--wsb-ease);
}
body .gallery-modal-close:hover,
body .gallery-modal-prev:hover,
body .gallery-modal-next:hover {
  background: var(--wsb-gold);
  color: var(--wsb-ink);
}
body .gallery-modal-counter {
  color: var(--wsb-gold-soft);
  font-family: var(--wsb-font-display);
  letter-spacing: 0.22em;
}

/* ---------- 16. Voice / Reviews ---------- */
.wsb-voice {
  background: var(--wsb-ink);
  color: var(--wsb-washi);
  position: relative;
  overflow: hidden;
}
.wsb-voice::before {
  content: '聲';
  position: absolute;
  font-family: var(--wsb-font-serif-jp);
  font-size: clamp(280px, 36vw, 520px);
  color: rgba(201, 169, 97, 0.05);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  line-height: 1;
}
.wsb-voice .wsb-eyebrow { color: var(--wsb-gold); }
.wsb-voice .wsb-eyebrow::before,
.wsb-voice .wsb-eyebrow::after { background: var(--wsb-gold); }
.wsb-voice .wsb-headline { color: var(--wsb-washi); }
.wsb-voice__head {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}
.wsb-voice__rating {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
  padding: 12px 22px;
  border: 1px solid var(--wsb-gold);
  border-radius: 999px;
}
.wsb-voice__rating .stars {
  color: var(--wsb-gold);
  letter-spacing: 4px;
  font-size: 18px;
}
.wsb-voice__rating .meta {
  font-family: var(--wsb-font-display);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wsb-gold-soft);
}
.wsb-voice__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}
.wsb-voice__card {
  background: rgba(247, 243, 236, 0.04);
  border: 1px solid rgba(201, 169, 97, 0.2);
  padding: 38px 32px;
  position: relative;
  transition: all 0.6s var(--wsb-ease);
}
.wsb-voice__card:hover {
  border-color: var(--wsb-gold);
  background: rgba(247, 243, 236, 0.06);
  transform: translateY(-6px);
}
.wsb-voice__card .quote {
  font-family: var(--wsb-font-serif-en);
  font-size: 60px;
  color: var(--wsb-gold);
  line-height: 0.6;
  font-style: italic;
  margin-bottom: 8px;
  display: block;
}
.wsb-voice__card .stars {
  color: var(--wsb-gold);
  letter-spacing: 3px;
  font-size: 14px;
  margin-bottom: 14px;
}
.wsb-voice__card p {
  font-family: var(--wsb-font-serif-en);
  font-size: 15px;
  line-height: 1.85;
  color: rgba(247, 243, 236, 0.85);
  margin: 0 0 24px;
}
.wsb-voice__card .author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid rgba(201, 169, 97, 0.2);
}
.wsb-voice__card .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--wsb-gold), var(--wsb-gold-deep));
  display: grid;
  place-items: center;
  color: var(--wsb-ink);
  font-family: var(--wsb-font-display);
  font-size: 14px;
  font-weight: 500;
}
.wsb-voice__card .author .name {
  font-family: var(--wsb-font-display);
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--wsb-washi);
}
.wsb-voice__card .author .from {
  display: block;
  font-family: var(--wsb-font-serif-en);
  font-size: 12px;
  font-style: italic;
  color: rgba(247, 243, 236, 0.55);
  margin-top: 2px;
}
.wsb-voice__source {
  margin-top: 50px;
  text-align: center;
  font-family: var(--wsb-font-display);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(247, 243, 236, 0.5);
}

@media (max-width: 900px) {
  .wsb-voice__grid { grid-template-columns: 1fr; }
}

/* ---------- 17. FAQ ---------- */
.wsb-faq {
  background: var(--wsb-washi);
}
.wsb-faq__head {
  text-align: center;
  margin-bottom: 60px;
}
.wsb-faq__list {
  width: var(--wsb-container-tight);
  margin-inline: auto;
  border-top: 1px solid var(--wsb-line-strong);
}
.wsb-faq__item {
  border-bottom: 1px solid var(--wsb-line-strong);
}
.wsb-faq__q {
  width: 100%;
  border: none;
  background: transparent;
  text-align: left;
  padding: 28px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--wsb-font-display);
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 500;
  color: var(--wsb-ink);
  letter-spacing: 0.02em;
  transition: color 0.4s var(--wsb-ease);
}
.wsb-faq__q:hover { color: var(--wsb-gold-deep); }
.wsb-faq__q .num {
  font-family: var(--wsb-font-serif-en);
  font-style: italic;
  font-size: 13px;
  color: var(--wsb-gold-deep);
  margin-right: 18px;
}
.wsb-faq__q .icon {
  width: 22px;
  height: 22px;
  position: relative;
  flex-shrink: 0;
}
.wsb-faq__q .icon::before,
.wsb-faq__q .icon::after {
  content: '';
  position: absolute;
  inset: 50% 0;
  height: 1px;
  background: var(--wsb-gold-deep);
  transition: transform 0.5s var(--wsb-ease);
}
.wsb-faq__q .icon::after {
  transform: rotate(90deg);
}
.wsb-faq__item.is-open .wsb-faq__q .icon::after {
  transform: rotate(0);
}
.wsb-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s var(--wsb-ease);
}
.wsb-faq__a-inner {
  padding: 0 0 28px 38px;
  font-family: var(--wsb-font-serif-en);
  font-size: 15px;
  line-height: 1.85;
  color: var(--wsb-ink-soft);
  max-width: 70ch;
}
.wsb-faq__item.is-open .wsb-faq__a {
  max-height: 400px;
}

/* ---------- 18. Reservation CTA ---------- */
.wsb-cta {
  position: relative;
  min-height: 70vh;
  display: grid;
  place-items: center;
  background: var(--wsb-sumi);
  color: var(--wsb-washi);
  overflow: hidden;
  padding: clamp(100px, 14vw, 180px) 0;
}
.wsb-cta__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
  transition: transform 12s linear;
}
.wsb-cta.is-in .wsb-cta__bg { transform: scale(1); }
.wsb-cta__veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(20,17,13,0.4) 0%, rgba(20,17,13,0.85) 100%);
}
.wsb-cta__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}
.wsb-cta__inner .wsb-eyebrow { color: var(--wsb-gold); }
.wsb-cta__inner .wsb-eyebrow::before,
.wsb-cta__inner .wsb-eyebrow::after { background: var(--wsb-gold); }
.wsb-cta__title {
  font-family: var(--wsb-font-display);
  font-size: clamp(40px, 6vw, 96px);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--wsb-washi);
  line-height: 1.05;
  margin: 18px 0 18px;
}
.wsb-cta__title em {
  display: block;
  font-family: var(--wsb-font-serif-en);
  font-style: italic;
  font-size: 0.42em;
  letter-spacing: 0.18em;
  color: var(--wsb-gold-soft);
  margin-top: 14px;
}
.wsb-cta__desc {
  font-family: var(--wsb-font-serif-en);
  font-size: clamp(15px, 1.3vw, 18px);
  color: rgba(247,243,236,0.78);
  max-width: 56ch;
  margin: 0 auto 40px;
  font-style: italic;
  line-height: 1.8;
}
.wsb-cta__buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.wsb-cta__buttons .wsb-btn {
  background: var(--wsb-gold);
  color: var(--wsb-ink);
  border-color: var(--wsb-gold);
}
.wsb-cta__buttons .wsb-btn::before { background: var(--wsb-washi); }
.wsb-cta__buttons .wsb-btn:hover { color: var(--wsb-ink); }
.wsb-cta__buttons .wsb-btn--ghost {
  background: transparent;
  color: var(--wsb-washi);
  border-color: rgba(247,243,236,0.5);
}
.wsb-cta__buttons .wsb-btn--ghost::before { background: var(--wsb-washi); }
.wsb-cta__buttons .wsb-btn--ghost:hover { color: var(--wsb-ink); border-color: var(--wsb-washi); }

/* ---------- 19. Access ---------- */
.wsb-access {
  background: var(--wsb-washi);
}
.wsb-access__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: stretch;
}
.wsb-access__info {
  padding: clamp(24px, 4vw, 48px) 0;
}
.wsb-access__info .wsb-headline {
  margin: 14px 0 30px;
  font-size: clamp(26px, 3.2vw, 46px);
  line-height: 1.15;
}
.wsb-access__details {
  display: grid;
  gap: 24px;
  margin-top: 32px;
}
.wsb-access__row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--wsb-line-strong);
}
.wsb-access__row dt {
  font-family: var(--wsb-font-display);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wsb-gold-deep);
  padding-top: 4px;
}
.wsb-access__row dd {
  margin: 0;
  font-family: var(--wsb-font-serif-en);
  font-size: 15px;
  line-height: 1.7;
  color: var(--wsb-ink);
}
.wsb-access__row dd strong {
  font-family: var(--wsb-font-display);
  font-weight: 500;
  display: block;
  margin-bottom: 4px;
}
.wsb-access__row dd a {
  color: var(--wsb-gold-deep);
  border-bottom: 1px solid var(--wsb-gold);
}
.wsb-access__map {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--wsb-line-strong);
  min-height: 480px;
}
.wsb-access__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.2) contrast(1.05);
}
.wsb-access__map::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(247, 243, 236, 0.4);
  pointer-events: none;
  z-index: 2;
}

@media (max-width: 900px) {
  .wsb-access__grid { grid-template-columns: 1fr; }
  .wsb-access__map { min-height: 360px; }
}

/* ---------- 20. Footer override ---------- */
body .footer {
  background: var(--wsb-sumi);
  border-top: 1px solid var(--wsb-gold-deep);
  padding: clamp(60px, 8vw, 100px) 0 40px;
}
body .footer .container {
  display: block !important;
}
.wsb-footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(201, 169, 97, 0.18);
  align-items: start;
}
.wsb-footer__brand {
  font-family: var(--wsb-font-display);
  color: var(--wsb-gold-soft);
}
.wsb-footer__brand h3 {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.12em;
  margin: 0 0 8px;
}
.wsb-footer__brand span {
  font-family: var(--wsb-font-serif-en);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: rgba(247, 243, 236, 0.55);
}
.wsb-footer__brand p {
  margin-top: 22px;
  font-family: var(--wsb-font-serif-en);
  font-style: italic;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(247,243,236,0.7);
  max-width: 36ch;
}
.wsb-footer__col h4 {
  font-family: var(--wsb-font-display);
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--wsb-gold);
  margin: 0 0 22px;
}
.wsb-footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.wsb-footer__col li {
  margin-bottom: 12px;
}
.wsb-footer__col a {
  font-family: var(--wsb-font-serif-en);
  font-size: 15px;
  color: rgba(247,243,236,0.85);
  transition: color 0.4s var(--wsb-ease);
}
.wsb-footer__col a:hover { color: var(--wsb-gold-soft); }
.wsb-footer__social {
  display: flex;
  gap: 14px;
  margin-top: 8px;
}
.wsb-footer__social a {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(201, 169, 97, 0.6);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--wsb-gold);
  transition: all 0.4s var(--wsb-ease);
}
.wsb-footer__social a:hover {
  background: var(--wsb-gold);
  color: var(--wsb-ink);
}
.wsb-footer__social svg { width: 18px; height: 18px; fill: currentColor; }
.footer .wsb-lang a {
  color: rgba(247,243,236,0.85);
  opacity: 0.7;
  font-size: 13px;
}
.footer .wsb-lang a:hover,
.footer .wsb-lang a.is-active {
  opacity: 1;
  color: var(--wsb-gold);
}
.wsb-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-family: var(--wsb-font-display);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(247, 243, 236, 0.6);
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 900px) {
  .wsb-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
@media (max-width: 600px) {
  .wsb-footer__top { grid-template-columns: 1fr; }
}

/* hide existing footer simple block when wsb footer is rendered */
body .footer .footer-content,
body .footer > .container > a:first-of-type {
  display: none;
}
body.wsb-loaded .footer__fixed__button { z-index: 50; }
body.wsb-loaded .footer__fixed__button a {
  background: linear-gradient(135deg, var(--wsb-gold), var(--wsb-gold-deep));
  color: var(--wsb-ink);
}

/* ---------- 21. Cursor follower (subtle) ---------- */
.wsb-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  border: 1px solid rgba(201, 169, 97, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--wsb-ease), height 0.3s var(--wsb-ease), background 0.3s var(--wsb-ease), opacity 0.3s var(--wsb-ease);
  display: none;
  opacity: 0;
}
@media (hover: hover) and (pointer: fine) {
  .wsb-cursor { display: block; }
}
body.wsb-loaded .wsb-cursor {
  opacity: 1;
}
.wsb-cursor.is-hover {
  width: 48px;
  height: 48px;
  background: rgba(201, 169, 97, 0.15);
}

/* ---------- 22. Page-load splash ---------- */
.wsb-splash {
  position: fixed;
  inset: 0;
  background: var(--wsb-sumi);
  z-index: 9998;
  display: grid;
  place-items: center;
  transition: opacity 0.4s var(--wsb-ease), visibility 0.4s;
}
.wsb-splash.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.wsb-splash__inner {
  text-align: center;
}
.wsb-splash__mark {
  font-family: var(--wsb-font-display);
  font-size: 48px;
  letter-spacing: 0.18em;
  color: var(--wsb-gold);
  font-weight: 500;
}
.wsb-splash__mark em {
  display: block;
  font-family: var(--wsb-font-serif-jp);
  font-size: 14px;
  letter-spacing: 0.32em;
  color: var(--wsb-gold-soft);
  margin-top: 14px;
  font-style: normal;
}
.wsb-splash__bar {
  margin-top: 30px;
  width: 200px;
  height: 1px;
  background: rgba(201,169,97,0.25);
  position: relative;
  overflow: hidden;
}
.wsb-splash__bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--wsb-gold);
  transform-origin: left;
  animation: wsb-load 0.7s var(--wsb-ease) forwards;
}
@keyframes wsb-load {
  0% { transform: scaleX(0); }
  100% { transform: scaleX(1); }
}

/* ---------- 23. SP nav override (mobile menu open state inherits from main.css) ---------- */
@media (max-width: 1023px) {
  body .header .nav-menu {
    background: var(--wsb-sumi);
    padding-top: 100px;
  }
  body .header .nav-menu li {
    border-bottom: 1px solid var(--wsb-line);
  }
  body .header .nav-menu a {
    font-size: 14px;
    color: var(--wsb-gold-soft);
    padding: 22px 32px;
    display: block;
  }
  .wsb-lang {
    margin: 24px 32px 0;
    border-left: none;
    padding-left: 0;
  }
}

/* ---------- 24. Misc ---------- */
.wsb hr.wsb-rule {
  border: 0;
  height: 1px;
  background: var(--wsb-line-strong);
  margin: 60px 0;
}
::selection {
  background: var(--wsb-gold);
  color: var(--wsb-ink);
}

/* ---------- 25. Mobile responsive fixes ---------- */
@media (max-width: 767px) {
  /* 1. Header navbar — prevent logo/text from overflowing */
  body .header .navbar .container {
    padding-inline: 16px;
  }
  body .header .navbar .container .nav-logo {
    margin-left: 0;
  }
  body .header .navbar .container .mobile-menu-toggle {
    right: 0;
    margin-right: 35px;
  }
  body .header .nav-logo h1 {
    font-size: 4.5vw;
    letter-spacing: 0.1em;
  }
  body .header .nav-logo h1 span {
    font-size: 2.2vw;
    letter-spacing: 0.06em;
  }

  /* 2. Reservation fixed button — center horizontally */
  .footer__fixed__button {
    left: 50% !important;
    transform: translateX(-50%);
  }

  /* 3. wsb-btn — prevent text break on small screens */
  .wsb-btn {
    padding: 16px 24px;
    font-size: 11px;
    letter-spacing: 0.16em;
    gap: 12px;
    text-align: center;
    justify-content: center;
  }

  /* 4. Instagram link — reduce font-size to prevent awkward line break */
  .wsb-gallery__instalink a {
    font-size: 10px;
    letter-spacing: 0.14em;
    gap: 8px;
  }

  /* 5. Footer — center content on mobile */
  .wsb-footer__top {
    text-align: center;
    padding-inline: 24px;
  }
  .wsb-footer__brand {
    text-align: center;
  }
  .wsb-footer__col {
    text-align: center;
  }
  .wsb-footer__social {
    justify-content: center;
  }
  .wsb-footer__bottom {
    justify-content: center;
    text-align: center;
    padding-inline: 24px;
  }
}
