/* ===== Base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
  overflow-x: clip;
  max-width: 100%;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: clip;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.8;
  color: var(--text);
  background: var(--bg);
  transition: background 0.45s ease, color 0.45s ease;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
.brand-en,
.section-en,
.section-title-en,
.hero-brand {
  font-family: "Noto Serif JP", "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 1.35;
}

.container {
  width: min(1120px, 92%);
  max-width: 100%;
  min-width: 0;
  margin-inline: auto;
}

.muted {
  color: var(--muted);
}

.section {
  padding: clamp(4.5rem, 10vw, 7.5rem) 0;
  max-width: 100%;
  overflow-x: clip;
}

.section-en {
  margin: 0 0 0.4rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-head {
  margin-bottom: 2rem;
}

.reviews .section-head {
  margin-bottom: 0.85rem;
}

.section-more {
  margin: 1.75rem 0 0;
  text-align: right;
}

.section-title {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin: 0;
}

.section-title-en {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.85rem, 3.8vw, 2.75rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
}

.section-title-ja {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.concept-body h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
}

.text-link {
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.1rem;
}

.chip {
  display: inline-block;
  margin: 0 0 0.45rem;
  padding: 0.15rem 0.55rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--accent);
  border: 1px solid color-mix(in srgb, var(--accent) 45%, transparent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.7rem 1.4rem;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: var(--accent-contrast);
}

.btn-ghost {
  border: 1px solid color-mix(in srgb, var(--text) 35%, transparent);
  color: var(--text);
}

.btn-line {
  background: #06c755;
  color: #fff;
}

body[data-theme="calm"] .hero .btn-ghost {
  border-color: rgba(255, 250, 245, 0.92);
  color: #fffaf5;
  background: rgba(255, 250, 245, 0.08);
}

/* Theme dock */
.theme-dock {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 50;
  display: grid;
  gap: 0.35rem;
  box-sizing: border-box;
  width: min(15.5rem, calc(100vw - 16px));
  max-width: min(15.5rem, calc(100vw - 16px));
  padding: 0.55rem 0.8rem 0.7rem;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  border: 1px solid color-mix(in srgb, var(--text) 12%, transparent);
  backdrop-filter: blur(10px);
  cursor: default;
  touch-action: none;
  user-select: none;
}

.theme-dock.is-dragging {
  opacity: 0.92;
}

.theme-dock-bar {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  min-width: 0;
}

.theme-dock-toggle {
  flex: 1;
  min-width: 0;
  padding: 0.35rem 0.45rem;
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-align: left;
  cursor: pointer;
  touch-action: auto;
  user-select: none;
}

.theme-dock-toggle::after {
  content: " −";
  color: var(--muted);
}

.theme-dock.is-collapsed .theme-dock-toggle::after {
  content: " ＋";
}

.theme-dock-handle {
  flex: 0 0 auto;
  padding: 0.25rem 0.35rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-align: center;
  color: var(--muted);
  cursor: grab;
}

.theme-dock-handle:active {
  cursor: grabbing;
}

.theme-dock-close {
  flex: 0 0 auto;
  width: 1.6rem;
  height: 1.6rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 1.05rem;
  line-height: 1;
  cursor: pointer;
  touch-action: auto;
}

.theme-dock-close:hover {
  color: var(--text);
}

.theme-dock.is-dismissed,
.theme-dock[hidden] {
  display: none;
}

.theme-dock-panel {
  display: grid;
  gap: 0.35rem;
  width: 100%;
  min-width: 0;
}

.theme-dock-scroll {
  max-height: min(72vh, calc(100dvh - 5rem));
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  touch-action: pan-y;
  user-select: auto;
  -webkit-overflow-scrolling: touch;
}

.theme-dock-section {
  border-top: 1px solid color-mix(in srgb, var(--text) 10%, transparent);
}

.theme-dock-section:first-child {
  border-top: 0;
}

.theme-dock-section-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  width: 100%;
  padding: 0.45rem 0;
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: left;
  cursor: pointer;
  touch-action: auto;
  user-select: none;
}

.theme-dock-section-icon {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1;
}

.theme-dock-section-body {
  display: grid;
  gap: 0.45rem;
  padding-bottom: 0.55rem;
}

.theme-dock-section:not(.is-open) .theme-dock-section-body {
  display: none;
}

.theme-dock.is-collapsed .theme-dock-panel {
  display: none;
}

.theme-dock label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.theme-dock select {
  min-width: 0;
  width: 100%;
  max-width: 14rem;
  border: 1px solid color-mix(in srgb, var(--text) 18%, transparent);
  background: var(--surface);
  color: var(--text);
  padding: 0.45rem 0.55rem;
  font: inherit;
  cursor: pointer;
  touch-action: auto;
  user-select: auto;
}

.theme-dock-colors {
  display: grid;
  gap: 0.4rem;
  touch-action: auto;
  user-select: auto;
}

.theme-dock-sub {
  margin: 0;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.theme-dock-color {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  letter-spacing: 0.04em;
  text-transform: none;
  font-size: 0.72rem;
  color: var(--text);
}

.theme-dock-color input[type="color"] {
  width: 2.2rem;
  height: 1.6rem;
  padding: 0;
  border: 1px solid color-mix(in srgb, var(--text) 18%, transparent);
  background: transparent;
  cursor: pointer;
}

.theme-dock-global-reset {
  margin-top: 0.35rem;
  padding-top: 0.55rem;
  border-top: 1px solid color-mix(in srgb, var(--text) 10%, transparent);
}

.theme-dock-global-reset .theme-dock-reset {
  width: 100%;
}

.theme-dock-reset {
  margin-top: 0.15rem;
  padding: 0.4rem 0.5rem;
  border: 1px solid color-mix(in srgb, var(--text) 18%, transparent);
  background: var(--surface);
  color: var(--text);
  font: inherit;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  touch-action: auto;
  user-select: auto;
}

.theme-dock-hero {
  display: grid;
  gap: 0.4rem;
  touch-action: auto;
  user-select: auto;
}

.theme-dock-hero-note {
  margin: 0;
  font-size: 0.65rem;
  letter-spacing: 0.02em;
  color: var(--muted);
  text-transform: none;
}

.theme-dock-hero-note code {
  font-size: 0.62rem;
}

.theme-dock-brand {
  display: grid;
  gap: 0.55rem;
}

.theme-dock-brand-logo {
  display: grid;
  gap: 0.55rem;
}

.theme-dock-favicon,
.theme-dock-reserve {
  display: grid;
  gap: 0.55rem;
}

.theme-dock-favicon-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  padding: 0.35rem;
  background: var(--surface);
  border: 1px solid color-mix(in srgb, var(--text) 14%, transparent);
  border-radius: 0.45rem;
}

.theme-dock-favicon-preview img {
  display: block;
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.theme-dock-logo-grid {
  margin-top: 0.15rem;
}

.theme-dock-brand-field {
  display: grid;
  gap: 0.35rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.theme-dock-brand-field input,
.theme-dock-brand-field textarea {
  width: 100%;
  padding: 0.55rem 0.65rem;
  border: 1px solid color-mix(in srgb, var(--text) 14%, transparent);
  border-radius: 0.45rem;
  font: inherit;
  color: var(--text);
  background: var(--surface);
}

.theme-dock-brand-field textarea {
  min-height: 5.5rem;
  resize: vertical;
  line-height: 1.4;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.72rem;
}

.theme-dock-map {
  display: grid;
  gap: 0.65rem;
}

.theme-dock-map-status-error {
  color: #b42318;
}

.theme-dock-brand-official {
  color: var(--text);
}

.theme-dock-brand-suggestion {
  margin: 0;
  font-size: 0.76rem;
  color: var(--muted);
  line-height: 1.45;
}

.theme-dock-brand-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.theme-dock-brand-action {
  padding: 0.35rem 0.55rem;
  border: 1px solid color-mix(in srgb, var(--text) 16%, transparent);
  border-radius: 999px;
  font: inherit;
  font-size: 0.72rem;
  color: var(--text);
  background: transparent;
  cursor: pointer;
}

.theme-dock-hero-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.3rem;
}

.theme-dock-hero-item {
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  background: var(--bg-alt);
  border: 1px solid color-mix(in srgb, var(--text) 18%, transparent);
  border-radius: 2px;
  cursor: pointer;
  touch-action: auto;
}

.theme-dock-hero-item.is-selected {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.theme-dock-hero-item img {
  display: block;
  width: 100%;
  height: 2.4rem;
  object-fit: cover;
  object-position: top center;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--surface) 90%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--text) 8%, transparent);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  backdrop-filter: blur(12px);
}

.header-bar {
  isolation: isolate;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  min-height: 4.2rem;
}

.brand {
  display: flex;
  flex-direction: column;
  min-width: 0;
  max-width: min(22rem, 46vw);
  line-height: 1.2;
}

.brand-en {
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  overflow-wrap: anywhere;
}

.brand.is-long {
  max-width: min(28rem, 58vw);
}

.brand.is-long .brand-en {
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  line-height: 1.35;
}

@media (max-width: 1200px) {
  .brand,
  .brand.is-long {
    max-width: calc(100vw - 8.5rem);
  }
}

.brand-jp {
  font-size: 0.75rem;
  color: var(--muted);
}

.brand-logo {
  display: none;
  width: auto;
  height: auto;
  max-height: 4.5rem;
  max-width: min(14rem, 46vw);
  object-fit: contain;
  object-position: left center;
}

.is-logo .brand-logo {
  display: block;
}

.is-logo > .brand-en {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-footer .brand-logo {
  max-height: 4rem;
  max-width: min(12rem, 40vw);
}

.brand.is-logo,
.site-footer .is-logo {
  padding-block: 0.4rem;
}

.header-bar:has(.brand.is-logo) {
  min-height: 5.25rem;
}

.theme-dock-logo-preview {
  display: flex;
  align-items: center;
  min-height: 3rem;
  padding: 0.45rem 0.55rem;
  background: var(--bg-alt);
  border: 1px solid color-mix(in srgb, var(--text) 12%, transparent);
  border-radius: 0.45rem;
}

.theme-dock-logo-preview img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 4.5rem;
  object-fit: contain;
  object-position: left center;
}

.theme-dock-brand-field--file input[type="file"] {
  width: 100%;
  font-size: 0.76rem;
}

.site-nav {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.7rem 0.85rem;
  min-width: 0;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.site-nav a {
  flex: 0 0 auto;
  white-space: nowrap;
}

.header-ctas {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 0.4rem;
}

.header-cta {
  flex-shrink: 0;
  padding: 0.55rem 1rem;
  background: var(--accent);
  color: var(--accent-contrast);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.header-cta--line {
  background: #06c755;
  color: #fff;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.5rem;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.nav-overlay {
  display: none;
}

.nav-close-bar,
.nav-sns {
  display: none;
}

@media (max-width: 1200px) {
  .site-header {
    z-index: 48;
  }

  .theme-dock {
    top: auto;
    bottom: 1rem;
    right: 1rem;
  }

  .nav-toggle {
    display: inline-flex;
    position: relative;
    z-index: 3;
  }

  .header-ctas {
    position: relative;
    z-index: 1;
    margin-left: auto;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    width: min(20rem, 86vw);
    height: 100dvh;
    padding: 0 1.5rem 0;
    overflow-y: auto;
    font-size: 0.95rem;
    background: var(--surface);
    box-shadow: -12px 0 32px rgba(0, 0, 0, 0.12);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.28s ease, visibility 0.28s ease;
  }

  .nav-close-bar {
    position: sticky;
    top: 0;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
    align-self: stretch;
    flex-shrink: 0;
    width: auto;
    margin: 0 -1.5rem 0.25rem;
    padding: 0.55rem 0.75rem 0.4rem;
    background: var(--surface);
  }

  .nav-close {
    display: grid;
    place-items: center;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--text);
    font-size: 1.55rem;
    line-height: 1;
    cursor: pointer;
  }

  .nav-sns {
    position: sticky;
    bottom: 0;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    gap: 0.45rem;
    flex-shrink: 0;
    margin-top: auto;
    margin-inline: -1.5rem;
    padding: 1rem 1.5rem max(1.25rem, env(safe-area-inset-bottom));
    background: var(--surface);
  }

  .site-nav > a {
    padding: 0.9rem 0;
  }

  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 46;
    background: rgba(20, 16, 14, 0.42);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0.28s ease;
  }

  body.is-nav-open {
    overflow: hidden;
  }

  body.is-nav-open .site-header {
    z-index: 60;
  }

  body.is-nav-open .nav-toggle {
    visibility: hidden;
    pointer-events: none;
  }

  body.is-nav-open .site-nav {
    transform: translateX(0);
    visibility: visible;
  }

  body.is-nav-open .nav-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

/* Hero */
.hero {
  position: relative;
  display: grid;
  min-height: min(92vh, 880px);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background: var(--hero-veil);
}

.hero-copy {
  position: relative;
  z-index: 1;
  align-self: end;
  padding: clamp(2rem, 8vw, 5rem) 0;
  max-width: min(40rem, 100%);
  color: var(--hero-text);
}

.hero-eyebrow {
  margin: 0 0 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero-brand {
  margin: 0;
  max-width: 100%;
  font-size: clamp(3rem, 9vw, 5.6rem);
  letter-spacing: 0.04em;
  line-height: 1.2;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.hero-brand.is-long {
  font-size: clamp(1.7rem, 5.2vw, 2.85rem);
  letter-spacing: 0.02em;
  line-height: 1.35;
}

.hero-catch {
  margin: 0.8rem 0 0;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 500;
}

.hero-lead {
  margin: 1rem 0 0;
  color: color-mix(in srgb, var(--hero-text) 82%, transparent);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.hero-sideinfo {
  position: static;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.9rem 1.75rem;
  margin-top: 1.35rem;
  width: 100%;
  max-width: 100%;
  color: var(--hero-text);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.hero-sideinfo p {
  flex: 1 1 16rem;
  min-width: min(100%, 16rem);
  max-width: 100%;
  margin: 0;
  overflow-wrap: anywhere;
}

.hero-sideinfo span {
  display: block;
  opacity: 0.7;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
}

/* Concept */
.concept {
  background: var(--bg-alt);
}

.concept-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
}

.concept-visual {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.concept-points {
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.concept-points li {
  padding: 0.7rem 0;
  border-top: 1px solid color-mix(in srgb, var(--text) 12%, transparent);
}

.concept-points li:last-child {
  border-bottom: 1px solid color-mix(in srgb, var(--text) 12%, transparent);
}

/* Menu */
.menu-list {
  display: grid;
  gap: 1.1rem;
}

.menu-item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.2rem;
  background: var(--surface);
  overflow: hidden;
}

.menu-thumb {
  min-height: 160px;
}

.menu-meta {
  padding: 1.1rem 1.1rem 1.1rem 0;
}

.menu-meta h3 {
  margin: 0 0 0.4rem;
  font-size: 1.15rem;
}

.menu-meta p {
  margin: 0;
  color: var(--muted);
}

.menu-foot {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 0.8rem;
  border-top: 1px solid color-mix(in srgb, var(--text) 10%, transparent);
}

/* Staff — 2-col mobile / 4-col desktop (matches gallery tile scale) */
.staff {
  background: var(--bg-alt);
}

.staff-track {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.staff-track.staff-track--profiles {
  grid-template-columns: 1fr;
}

@media (max-width: 960px) {
  .staff-track.is-count-1 {
    grid-template-columns: 1fr;
  }

  .staff-track.is-count-3 .staff-card:last-child {
    grid-column: 1 / -1;
    width: calc((100% - 1rem) / 2);
    justify-self: center;
  }
}

@media (min-width: 961px) {
  .staff-track {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.2rem;
  }

  .staff-track.staff-track--profiles {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .staff-track.is-count-1,
  .staff-track.is-count-2,
  .staff-track.is-count-3 {
    justify-content: center;
  }

  .staff-track.is-count-1 {
    grid-template-columns: minmax(0, 52rem);
  }

  .staff-track.is-count-1 .staff-card,
  .staff-track--profiles .staff-card {
    display: grid;
    grid-template-columns: minmax(0, 18rem) minmax(0, 1fr);
    align-items: stretch;
  }

  .staff-track.is-count-1 .staff-photo,
  .staff-track.is-count-1 .staff-card img,
  .staff-track--profiles .staff-photo,
  .staff-track--profiles .staff-card img {
    height: 100%;
  }

  .staff-track.is-count-1 .staff-card img,
  .staff-track--profiles .staff-card img {
    object-fit: cover;
  }

  .staff-track.is-count-1 .staff-info,
  .staff-track--profiles .staff-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.5rem 1.8rem 1.6rem;
    font-size: 0.95rem;
  }

  .staff-track.is-count-1 .staff-info h3,
  .staff-track--profiles .staff-info h3 {
    font-size: 1.22rem;
  }

  .staff-track.is-count-1 .staff-message,
  .staff-track--profiles .staff-message {
    line-height: 1.85;
  }

  .staff-track.is-count-2 {
    grid-template-columns: repeat(2, minmax(0, 18rem));
  }

  .staff-track.is-count-3 {
    grid-template-columns: repeat(3, minmax(0, 18rem));
  }
}

.staff-card {
  background: var(--surface);
  overflow: hidden;
  min-width: 0;
}

.staff-photo {
  position: relative;
}

.staff-card img {
  aspect-ratio: 3 / 4;
}

.staff-info {
  padding: 1.1rem 1.15rem 1.35rem;
}

.staff-info .chip {
  align-self: flex-start;
  width: max-content;
  max-width: 100%;
}

@media (min-width: 961px) {
  .staff-info {
    padding: 0.9rem 0.85rem 1.15rem;
    font-size: 0.9rem;
  }

  .staff-info h3 {
    font-size: 1rem;
  }
}

.staff-info h3 {
  margin: 0 0 0.2rem;
}

.staff-kana {
  margin: 0 0 0.55rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.staff-lead,
.staff-message {
  margin: 0;
  color: var(--muted);
}

.staff-message {
  margin-top: 0.55rem;
  line-height: 1.8;
}

.staff-dl {
  margin: 0.5rem 0 0;
}

.staff-dl > div {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  gap: 0.55rem;
  padding: 0.32rem 0;
}

.staff-dl dt {
  color: var(--muted);
  font-size: 0.78rem;
}

.staff-dl dd {
  margin: 0;
}

/* Gallery — equal portrait tiles (safe for hair-style crops) */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.gallery-item {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.gallery-item__open {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  pointer-events: none;
}

.gallery-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  padding: 0.8rem 0.9rem;
  pointer-events: none;
  color: #fff;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.55));
  font-size: 0.9rem;
}

.gallery-item__album {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  z-index: 2;
  display: flex;
  color: #fff;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.55));
  pointer-events: none;
}

.gallery-item__staff {
  pointer-events: auto;
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.15em;
  font-size: 0.78rem;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1.5rem;
}

.gallery-filters .chip {
  margin: 0;
  text-decoration: none;
}

.chip.is-current {
  color: var(--accent-contrast);
  background: var(--accent);
  border-color: var(--accent);
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(12, 10, 9, 0.88);
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox__dialog {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(100%, 56rem);
  max-height: min(92dvh, 92vh);
}

.gallery-lightbox:not(.has-detail) .gallery-lightbox__dialog {
  align-items: center;
  width: min(100%, 42rem);
}

.gallery-lightbox__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  width: 100%;
  min-height: 0;
  overflow: hidden;
  border-radius: 0.35rem;
  background: rgba(18, 16, 14, 0.96);
}

.gallery-lightbox:not(.has-detail) .gallery-lightbox__body {
  background: transparent;
}

.gallery-lightbox.has-detail .gallery-lightbox__body {
  max-height: min(92dvh, 92vh);
}

.gallery-lightbox__media {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1rem 0.75rem;
}

.gallery-lightbox:not(.has-detail) .gallery-lightbox__media {
  padding: 0;
}

.gallery-lightbox__img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: min(52dvh, 52vh);
  object-fit: contain;
  background: #111;
}

.gallery-lightbox:not(.has-detail) .gallery-lightbox__img {
  max-height: min(78dvh, 78vh);
}

.gallery-lightbox.has-detail .gallery-lightbox__img {
  max-height: min(44dvh, 44vh);
}

.gallery-lightbox__panel {
  overflow: auto;
  max-height: min(42dvh, 42vh);
  padding: 0.85rem 1rem 1.1rem;
  color: rgba(255, 255, 255, 0.92);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-lightbox__panel[hidden] {
  display: none;
}

.gallery-lightbox__title {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.02em;
}

.gallery-lightbox__staff {
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
}

.gallery-lightbox__staff a {
  color: rgba(255, 255, 255, 0.82);
}

.gallery-detail-block + .gallery-detail-block {
  margin-top: 0.95rem;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.gallery-detail-block__label {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

.gallery-detail-block__text {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.65;
  letter-spacing: 0.02em;
}

.gallery-style-data {
  display: grid;
  grid-template-columns: minmax(5.5rem, 7rem) minmax(0, 1fr);
  gap: 0.45rem 0.75rem;
  margin: 0;
}

.gallery-style-data dt {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.68);
}

.gallery-style-data dd {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0;
}

.gallery-style-data__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.74rem;
  line-height: 1.35;
  letter-spacing: 0.01em;
}

.gallery-shape-icon {
  display: inline-block;
  width: 0.7rem;
  height: 0.7rem;
  border: 0;
  background: rgba(255, 255, 255, 0.78);
  flex: 0 0 auto;
}

.gallery-shape-icon.is-oval {
  border-radius: 45% / 55%;
  width: 0.66rem;
  height: 0.8rem;
}

.gallery-shape-icon.is-round {
  border-radius: 999px;
}

.gallery-shape-icon.is-square {
  border-radius: 0.12rem;
}

.gallery-shape-icon.is-long {
  border-radius: 999px / 50%;
  width: 0.56rem;
  height: 0.92rem;
}

.gallery-shape-icon.is-triangle {
  width: 0.72rem;
  height: 0.72rem;
  clip-path: polygon(50% 100%, 0% 15%, 100% 15%);
  border-radius: 0.04rem;
}

.gallery-lightbox__caption {
  margin: 0;
  max-width: 100%;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-align: center;
}

.gallery-lightbox__close {
  position: absolute;
  top: 0.35rem;
  right: 0.35rem;
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.gallery-lightbox__close:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.gallery-lightbox__nav {
  position: absolute;
  top: 50%;
  z-index: 1;
  width: 2.5rem;
  height: 2.5rem;
  transform: translateY(-50%);
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.gallery-lightbox__nav.is-prev {
  left: 0.35rem;
}

.gallery-lightbox__nav.is-next {
  right: 0.35rem;
}

.gallery-lightbox__meta {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.72);
}

body.is-lightbox-open {
  overflow: hidden;
}

@media (min-width: 768px) {
  .gallery-lightbox.has-detail .gallery-lightbox__body {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    max-height: min(88dvh, 88vh);
  }

  .gallery-lightbox.has-detail .gallery-lightbox__media {
    padding: 1.1rem;
  }

  .gallery-lightbox.has-detail .gallery-lightbox__img {
    max-height: min(78dvh, 78vh);
  }

  .gallery-lightbox__panel {
    max-height: min(88dvh, 88vh);
    padding: 1.1rem 1.15rem 1.2rem;
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }
}

@media (min-width: 641px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 961px) {
  .gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }
}

/* News */
.news-list {
  display: grid;
  gap: 0;
}

.news-item {
  padding: 1.05rem 0;
  border-top: 1px solid color-mix(in srgb, var(--text) 12%, transparent);
}

.news-item:last-child {
  border-bottom: 1px solid color-mix(in srgb, var(--text) 12%, transparent);
}

.news-item__link {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.news-item__link:hover,
.news-item__link:focus-visible {
  color: var(--accent);
}

.news-item__meta,
.news-article__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.75rem;
  margin: 0 0 0.4rem;
}

.news-item time,
.news-article time {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.news-item .chip,
.news-article .chip {
  margin: 0;
  text-decoration: none;
}

.news-item h3 {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 500;
}

.news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 14.5rem;
  gap: 2.5rem 3.25rem;
  align-items: start;
}

.news-main {
  min-width: 0;
}

.news-aside {
  display: grid;
  gap: 1.75rem;
  min-width: 0;
  padding-top: 0.2rem;
}

.news-aside__all {
  margin: 0;
}

.news-aside__all .news-nav__link {
  padding-top: 0;
  border: 0;
}

.news-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.news-nav__title {
  margin: 0 0 0.7rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.news-nav__link {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.38rem 0;
  font-size: 0.9rem;
  line-height: 1.4;
  color: inherit;
  text-decoration: none;
  border-top: 1px solid color-mix(in srgb, var(--text) 10%, transparent);
}

.news-nav li:last-child .news-nav__link {
  border-bottom: 1px solid color-mix(in srgb, var(--text) 10%, transparent);
}

.news-nav a.news-nav__link:hover,
.news-nav a.news-nav__link:focus-visible {
  color: var(--accent);
}

.news-nav__link.is-current {
  color: var(--accent);
}

.news-nav__count {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--muted);
}

@media (max-width: 960px) {
  .news-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .news-aside {
    order: 2;
    padding-top: 0.5rem;
    border-top: 1px solid color-mix(in srgb, var(--text) 12%, transparent);
  }
}

.news-article__back {
  margin: 2rem 0 0;
  padding: 1.2rem 0 0;
  border-top: 1px solid color-mix(in srgb, var(--text) 12%, transparent);
}

.news-article h1 {
  margin: 0 0 1.2rem;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1.45;
  font-weight: 500;
}

.news-article__thumb {
  margin: 0 0 1.5rem;
}

.news-article__thumb img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top center;
}

.news-article__body {
  font-size: 0.98rem;
  line-height: 1.9;
}

.news-article__body p,
.news-article__body ul,
.news-article__body ol {
  margin: 0 0 1em;
}

.news-article__body h2,
.news-article__body h3,
.news-article__body h4 {
  margin: 1.4em 0 0.5em;
  font-size: 1.05rem;
  font-weight: 600;
}

.news-article__body a {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.news-article__body img {
  max-width: 100%;
  height: auto;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 0;
}

.faq-item {
  border-top: 1px solid color-mix(in srgb, var(--text) 12%, transparent);
}

.faq-item:last-child {
  border-bottom: 1px solid color-mix(in srgb, var(--text) 12%, transparent);
}

.faq-item summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  padding: 1.05rem 2.2rem 1.05rem 0;
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.65;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::marker {
  content: "";
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 1.05rem;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--muted);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item summary:hover,
.faq-item summary:focus-visible {
  color: var(--accent);
}

.faq-item summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.faq-item__answer {
  padding: 0 2.2rem 1.2rem 0;
  color: var(--muted);
  line-height: 1.85;
}

/* Access */
.access {
  background: var(--bg-alt);
}

.access-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1.5rem;
  align-items: stretch;
}

.access-grid > * {
  min-width: 0;
}

.access-map {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: 220px;
  max-height: 380px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: color-mix(in srgb, var(--text) 6%, var(--surface));
}

.access-map img,
.access-map__frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.access-map img {
  position: absolute;
  inset: 0;
  object-fit: cover;
}

.access-map__frame {
  position: absolute;
  inset: 0;
}

.access-dl {
  margin: 1.2rem 0 1.5rem;
}

.access-dl > div {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 0.8rem;
  padding: 0.75rem 0;
  border-top: 1px solid color-mix(in srgb, var(--text) 12%, transparent);
}

.access-dl > div:last-child {
  border-bottom: 1px solid color-mix(in srgb, var(--text) 12%, transparent);
}

.access-dl dt {
  color: var(--muted);
  font-size: 0.86rem;
}

.access-dl dd {
  margin: 0;
}

/* Demo markers / page chrome */
.demo-data-banner {
  position: relative;
  z-index: 41;
  padding: 0.55rem 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  line-height: 1.5;
  color: #5a4a2a;
  background: #f3e6c8;
  border-bottom: 1px solid color-mix(in srgb, #8b6b57 35%, transparent);
  text-align: center;
}

.demo-badge {
  display: inline-block;
  margin-left: 0.35rem;
  padding: 0.05rem 0.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  vertical-align: middle;
  color: #5a4a2a;
  background: #f3e6c8;
  border: 1px solid color-mix(in srgb, #8b6b57 40%, transparent);
}

.staff-photo .demo-badge {
  position: absolute;
  top: 0.55rem;
  left: 0.55rem;
  margin: 0;
  z-index: 2;
}

.is-hidden,
[hidden] {
  display: none !important;
}

.page-hero {
  padding: clamp(1.75rem, 4.5vw, 2.75rem) 0;
  background: var(--bg-alt);
}

.page-hero + .section {
  padding-top: clamp(2rem, 5vw, 3.25rem);
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.page-hero-lead {
  margin: 0.8rem 0 0;
  max-width: 40rem;
  color: var(--muted);
}

.page-hero-title {
  gap: 0.35rem;
}

.menu-filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  margin: 0 0 1.75rem;
  padding: 1rem 1.15rem;
  background: var(--surface);
  border: 1px solid color-mix(in srgb, var(--text) 10%, transparent);
}

.menu-filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin: 0;
}

.menu-filter__label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
}

.menu-filter__icon {
  flex: 0 0 auto;
  color: var(--muted);
}

.menu-filter__select {
  min-width: min(100%, 16rem);
  padding: 0.55rem 2.2rem 0.55rem 0.85rem;
  font: inherit;
  font-size: 0.92rem;
  color: var(--text);
  background: var(--bg);
  border: 1px solid color-mix(in srgb, var(--text) 18%, transparent);
  border-radius: 0.2rem;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, currentColor 50%),
    linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position:
    calc(100% - 1rem) calc(50% + 0.12rem),
    calc(100% - 0.72rem) calc(50% + 0.12rem);
  background-size: 0.32rem 0.32rem, 0.32rem 0.32rem;
  background-repeat: no-repeat;
}

.menu-filter-bar__count {
  display: inline-flex;
  align-items: baseline;
  gap: 0.2rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.menu-filter-bar__count-num {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text);
}

.menu-group {
  margin-bottom: 2.5rem;
}

.menu-group__title {
  margin: 0 0 1rem;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
}

.menu-item--text {
  grid-template-columns: 1fr;
}

.menu-item--text .menu-meta {
  padding: 1.1rem;
}

/* Coupon */
.coupon {
  background: var(--bg);
}

.coupon-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

@media (max-width: 960px) {
  .coupon-grid {
    grid-template-columns: 1fr;
  }
}

.coupon-card {
  padding: 1.15rem 1.2rem 1.3rem;
  background: var(--surface);
  border: 1px solid color-mix(in srgb, var(--text) 10%, transparent);
}

.coupon-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.coupon-card h3 {
  margin: 0.35rem 0 0.55rem;
  font-size: 1.05rem;
}

.coupon-card__body {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.coupon-card__price {
  display: block;
  margin-top: 1rem;
}

.coupon-card__price strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent);
  overflow-wrap: anywhere;
  line-height: 1.45;
}

.coupon-card__meta {
  margin: 0.7rem 0 0;
  font-size: 0.78rem;
  color: var(--muted);
}

/* Reviews */
.reviews {
  background: var(--bg);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.review-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
  flex-wrap: wrap;
  margin: 0 0 2.25rem;
}

.review-toolbar .review-source {
  margin: 0;
  flex: 1 1 16rem;
}

.review-toolbar .section-more {
  margin: 0 0 0 auto;
  text-align: right;
}

@media (max-width: 960px) {
  .review-grid {
    grid-template-columns: 1fr;
  }
}

.review-card {
  padding: 1.15rem 1.2rem 1.3rem;
  background: var(--surface);
  border: 1px solid color-mix(in srgb, var(--text) 10%, transparent);
}

.review-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.75rem;
  margin-bottom: 0.55rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.review-stars {
  letter-spacing: 0.08em;
  color: var(--accent);
}

.review-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.02rem;
}

.review-card p {
  margin: 0;
  color: var(--muted);
}

/* Recruit */
.recruit {
  background: var(--bg-alt);
}

.recruit-card {
  position: relative;
  padding: 1.4rem 1.5rem 1.6rem;
  background: var(--surface);
  border: 1px solid color-mix(in srgb, var(--text) 10%, transparent);
}

.recruit-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.25rem;
}

.recruit-dl {
  margin: 1.2rem 0 1.4rem;
}

.recruit-dl > div {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 0.8rem;
  padding: 0.7rem 0;
  border-top: 1px solid color-mix(in srgb, var(--text) 12%, transparent);
}

.recruit-dl > div:last-child {
  border-bottom: 1px solid color-mix(in srgb, var(--text) 12%, transparent);
}

.recruit-dl dt {
  color: var(--muted);
  font-size: 0.86rem;
}

.recruit-dl dd {
  margin: 0;
}

.gallery-grid--page {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 961px) {
  .gallery-grid--page {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.footer-switch {
  margin: 0.7rem 0 0;
  font-size: 0.84rem;
}

.footer-switch a {
  border-bottom: 1px solid currentColor;
}

/* Picker */
.picker-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 18%, color-mix(in srgb, var(--accent) 16%, transparent), transparent 42%),
    linear-gradient(160deg, var(--bg), var(--bg-alt));
}

.picker {
  display: grid;
  align-items: center;
  min-height: 100vh;
  padding: 3rem 0;
}

.picker-inner {
  max-width: 1120px;
}

.picker-title {
  margin: 0.2rem 0 0;
  font-size: clamp(2.2rem, 6vw, 3.4rem);
}

.picker-lead {
  margin: 1rem 0 0;
  color: var(--muted);
}

.picker-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.picker-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 960px) {
  .picker-grid--3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .picker-grid {
    grid-template-columns: 1fr;
  }
}

.picker-card--reference {
  border-color: color-mix(in srgb, var(--accent) 35%, transparent);
  background: color-mix(in srgb, var(--accent) 6%, var(--surface));
}

.lueur-reference-banner {
  background: #e8f0ea;
  color: #2f4a38;
  border-bottom-color: color-mix(in srgb, #2f4a38 20%, transparent);
}

.picker-card {
  display: block;
  padding: 1.35rem 1.4rem 1.5rem;
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  border: 1px solid color-mix(in srgb, var(--text) 12%, transparent);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.picker-card:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--accent) 55%, transparent);
}

.picker-card h2 {
  margin: 0.45rem 0 0.55rem;
  font-size: 1.2rem;
}

.picker-card p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.picker-note {
  margin: 1.5rem 0 0;
  font-size: 0.86rem;
}

.picker-note code {
  font-size: 0.8em;
}

body[data-theme="magazine"] .coupon-card,
body[data-theme="magazine"] .review-card,
body[data-theme="magazine"] .recruit-card,
body[data-theme="magazine"] .picker-card {
  border-radius: 1rem;
}

body[data-theme="boutique"] .coupon-card,
body[data-theme="boutique"] .review-card,
body[data-theme="boutique"] .recruit-card {
  border-color: rgba(255, 255, 255, 0.08);
}

/* Footer */
.site-footer {
  padding: 2.5rem 0;
  border-top: 1px solid color-mix(in srgb, var(--text) 10%, transparent);
  background: var(--surface);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem 2.5rem;
}

.footer-aside {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.85rem;
  min-width: 0;
  flex: 1 1 16rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-content: flex-start;
  width: 100%;
  min-width: 0;
  gap: 0.35rem 1rem;
  font-size: 0.86rem;
  line-height: 1.35;
  color: var(--muted);
}

.footer-nav a {
  line-height: 1.35;
}

.footer-sns {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.45rem;
}

@media (max-width: 640px) {
  .footer-grid {
    flex-direction: column;
  }

  .footer-aside,
  .footer-nav,
  .footer-sns {
    align-items: flex-start;
    justify-content: flex-start;
  }
}

.footer-sns a,
.footer-sns__link {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  color: var(--text);
  border: 1px solid color-mix(in srgb, var(--text) 14%, transparent);
  border-radius: 999px;
  letter-spacing: 0;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.footer-sns a:hover,
.footer-sns a:focus-visible,
.footer-sns__link:hover,
.footer-sns__link:focus-visible {
  color: var(--accent);
  border-color: color-mix(in srgb, var(--accent) 55%, transparent);
}

.footer-sns svg,
.nav-sns svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: currentColor;
}

.footer-sns__link.is-line {
  color: #06c755;
  border-color: color-mix(in srgb, #06c755 45%, transparent);
}

.back-to-top {
  position: fixed;
  right: 1rem;
  bottom: 1.5rem;
  z-index: 40;
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid color-mix(in srgb, var(--text) 14%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  color: var(--text);
  font-size: 1rem;
  line-height: 1;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.mobile-cta {
  display: none;
}

/* ===== Theme: Calm (標準サロン) ===== */
body[data-theme="calm"] {
  --bg: #f6f3ef;
  --bg-alt: #efeae3;
  --surface: #fffcf8;
  --text: #2c2622;
  --muted: #7a7169;
  --accent: #8b6b57;
  --accent-contrast: #fffaf5;
  --hero-text: #fffaf5;
  --hero-veil: linear-gradient(120deg, rgba(28, 22, 18, 0.62), rgba(28, 22, 18, 0.28));
}

body[data-theme="calm"] .menu-item,
body[data-theme="calm"] .staff-card,
body[data-theme="calm"] .theme-dock,
body[data-theme="calm"] .header-cta,
body[data-theme="calm"] .btn {
  border-radius: 0;
}

body[data-theme="calm"] .hero-copy {
  max-width: 36rem;
}

/* ===== Theme: Magazine (非対称・大胆タイポ) ===== */
body[data-theme="magazine"] {
  --bg: #ffffff;
  --bg-alt: #f3f5f8;
  --surface: #ffffff;
  --text: #12161c;
  --muted: #667084;
  --accent: #d61f69;
  --accent-contrast: #ffffff;
  --hero-text: #12161c;
  --hero-veil: linear-gradient(
    90deg,
    color-mix(in srgb, var(--bg) 94%, transparent) 0%,
    color-mix(in srgb, var(--bg) 58%, transparent) 46%,
    color-mix(in srgb, var(--bg) 8%, transparent) 70%
  );
}

/* CHAINON: slightly deeper section gray */
body[data-theme="magazine"][data-shop-slug="chainon-omotesando"] {
  --bg-alt: #e6eaf0;
}

body[data-theme="magazine"] .hero {
  grid-template-columns: minmax(280px, 34rem) minmax(0, 1fr);
  gap: 0;
  max-width: none;
  width: 100%;
  margin-inline: 0;
  min-height: 78vh;
  background: var(--bg);
  box-sizing: border-box;
  padding-left: max(4%, calc((100% - 1120px) / 2));
  padding-right: 0;
}

body[data-theme="magazine"] .hero-media {
  position: relative;
  inset: auto;
  grid-column: 2;
  min-height: 78vh;
  height: 100%;
  max-height: none;
}

body[data-theme="magazine"] .hero-veil {
  background: var(--hero-veil);
  mix-blend-mode: normal;
}

body[data-theme="magazine"] .hero-copy {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  padding-left: 0;
  padding-right: clamp(1.25rem, 3vw, 2.75rem);
}

body[data-theme="magazine"] .hero-brand {
  font-size: clamp(2.8rem, 7vw, 5.4rem);
}

body[data-theme="magazine"] .hero-brand.is-long {
  font-size: clamp(1.7rem, 4.6vw, 2.7rem);
}

body[data-theme="magazine"] .hero-sideinfo {
  color: var(--text);
}

body[data-theme="magazine"] .concept-grid {
  grid-template-columns: 1.2fr 0.8fr;
}

body[data-theme="magazine"] .concept-visual {
  order: 2;
  aspect-ratio: 5 / 4;
}

body[data-theme="magazine"] .menu-list {
  grid-template-columns: repeat(3, 1fr);
}

body[data-theme="magazine"] .menu-item {
  grid-template-columns: 1fr;
  border: 1px solid #e6ebf2;
}

body[data-theme="magazine"] .menu-meta {
  padding: 1rem;
}

/* Magazine gallery uses the same fixed ratio as other themes. */

body[data-theme="magazine"] .news-list {
  max-width: none;
}

body[data-theme="magazine"] .btn,
body[data-theme="magazine"] .header-cta,
body[data-theme="magazine"] .chip {
  border-radius: 999px;
}

/* ===== Theme: Boutique (ダーク・縦書き・横スクロール) ===== */
body[data-theme="boutique"] {
  --bg: #141210;
  --bg-alt: #1c1916;
  --surface: #221e1a;
  --text: #f4eee6;
  --muted: #b3a79a;
  --accent: #c4a574;
  --accent-contrast: #1a1612;
  --hero-text: #f7f1e8;
  --hero-veil: linear-gradient(160deg, rgba(12, 10, 8, 0.78), rgba(12, 10, 8, 0.35));
}

body[data-theme="boutique"] .site-header {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

body[data-theme="boutique"] .hero-brand {
  writing-mode: horizontal-tb;
  letter-spacing: 0.12em;
}

body[data-theme="boutique"] .hero-brand.is-long {
  letter-spacing: 0.04em;
}

body[data-theme="boutique"] .hero-eyebrow {
  writing-mode: vertical-rl;
  position: absolute;
  top: 18%;
  right: -5%;
  height: auto;
  max-height: min(42vh, 16rem);
  z-index: 2;
  pointer-events: none;
}

body[data-theme="boutique"] .concept-grid {
  grid-template-columns: 0.8fr 1.2fr;
}

body[data-theme="boutique"] .menu-list {
  display: flex;
  gap: 1rem;
  max-width: 100%;
  overflow-x: auto;
  padding-bottom: 0.4rem;
  scroll-snap-type: x mandatory;
}

body[data-theme="boutique"] .menu-item {
  flex: 0 0 min(78vw, 360px);
  grid-template-columns: 1fr;
  scroll-snap-align: start;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

body[data-theme="boutique"] .menu-thumb {
  aspect-ratio: 4 / 3;
}

body[data-theme="boutique"] .menu-meta {
  padding: 1rem;
}

body[data-theme="boutique"] .staff-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
}

body[data-theme="boutique"] .btn-ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--text);
}

/* Motion */
.hero-copy {
  animation: rise-in 0.7s ease both;
}

/* Section reveal on scroll (JS adds .reveal-on-scroll / .is-revealed) */
#pageMain .section.reveal-on-scroll {
  opacity: 0;
  transform: translateY(0.85rem);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

#pageMain .section.reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: none;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-copy {
    animation: none;
  }

  #pageMain .section.reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

body.is-theme-switching {
  animation: theme-fade 0.35s ease;
}

@keyframes theme-fade {
  from {
    opacity: 0.72;
  }
  to {
    opacity: 1;
  }
}

/* Responsive — place under related blocks */
@media (max-width: 1024px) {
  .access-grid {
    grid-template-columns: 1fr;
  }

  .access-map {
    max-height: 320px;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 960px) {
  .concept-grid,
  body[data-theme="magazine"] .concept-grid,
  body[data-theme="boutique"] .concept-grid {
    grid-template-columns: 1fr;
  }

  body[data-theme="magazine"] .concept-visual,
  body[data-theme="boutique"] .concept-visual {
    order: 0;
  }

  .menu-item {
    grid-template-columns: 140px 1fr;
  }

  body[data-theme="magazine"] .hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding-left: 0;
    padding-right: 0;
  }

  body[data-theme="magazine"] .hero-media {
    position: relative;
    inset: auto;
    grid-column: auto;
    width: 100%;
    min-height: 42vh;
    max-height: none;
    order: 1;
  }

  body[data-theme="magazine"] .hero-copy {
    position: relative;
    order: 2;
    align-self: stretch;
    width: min(1120px, 92%);
    max-width: 100%;
    margin: 0 auto;
    margin-left: auto;
    padding: 1.6rem 0 2.2rem;
  }

  body[data-theme="magazine"] .hero-brand {
    font-size: clamp(2.4rem, 10vw, 3.4rem);
  }

  body[data-theme="magazine"] .hero-brand.is-long {
    font-size: clamp(1.55rem, 6.5vw, 2.2rem);
  }

  body[data-theme="magazine"] .hero-veil {
    background: linear-gradient(
      180deg,
      color-mix(in srgb, var(--bg) 5%, transparent),
      color-mix(in srgb, var(--bg) 22%, transparent)
    );
  }

  body[data-theme="magazine"] .menu-list {
    grid-template-columns: 1fr;
  }

  body[data-theme="boutique"] .hero-eyebrow {
    writing-mode: horizontal-tb;
    position: static;
    height: auto;
    max-height: none;
  }
}

@media (max-width: 640px) {
  body {
    /* Matches fixed .mobile-cta footprint (min-height + padding) */
    padding-bottom: 4.4rem;
  }

  /*
    Calm / Boutique: hero aims to fill the first viewport.
    92vh ignored the sticky header and the fixed mobile CTA, so
    end-aligned copy (CTA / OPEN·ACCESS) sat under .mobile-cta.
    Magazine uses a stacked non-FV layout on mobile (min-height: 0).
  */
  body[data-theme="calm"] .hero,
  body[data-theme="boutique"] .hero {
    min-height: calc(100vh - 4.2rem);
    min-height: calc(100dvh - 4.2rem);
    padding-bottom: 4.4rem;
  }

  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 45;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 3.35rem;
    background: var(--surface);
    border-top: 1px solid color-mix(in srgb, var(--text) 12%, transparent);
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.08);
  }

  .mobile-cta.has-line {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .mobile-cta a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.1rem;
    padding: 0.45rem 0.35rem;
    font-size: 0.84rem;
    letter-spacing: 0.06em;
    line-height: 1.1;
    text-align: center;
  }

  /* <br> is a flex item and was creating a loose empty row */
  .mobile-cta__tel br {
    display: none;
  }

  .mobile-cta__tel {
    color: var(--text);
    background: var(--surface);
  }

  .mobile-cta__tel > span:first-child {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.1;
    color: var(--text);
  }

  .mobile-cta__tel > span:last-child {
    font-size: 0.66rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.1;
    color: var(--muted);
  }

  .mobile-cta__book {
    background: var(--accent);
    color: var(--accent-contrast);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.1em;
  }

  .mobile-cta__line {
    background: #06c755;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
  }

  .back-to-top {
    bottom: 5.2rem;
    right: 0.85rem;
  }

  .theme-dock {
    top: auto;
    bottom: 4.9rem;
    right: 1rem;
  }

  .header-ctas {
    display: none;
  }

  .menu-item {
    grid-template-columns: 1fr;
  }

  .menu-meta {
    padding: 1rem;
  }

  .hero-sideinfo {
    flex-direction: column;
    gap: 0.7rem;
  }

  .hero-sideinfo p {
    flex: 1 1 auto;
    min-width: 0;
  }

  .section.access .access-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .access-map {
    width: 100%;
    min-height: 180px;
    max-height: 220px;
    aspect-ratio: 16 / 9;
  }

  .access-body {
    width: 100%;
    margin: 0;
  }
}
