/* =========================================
   Tokens
   ========================================= */
:root {
  --bg: #f7f2ea;          /* warm cream */
  --bg-soft: #efe7d9;     /* deeper cream */
  --paper: #fdfaf4;       /* card */
  --ink: #2a2622;         /* warm black */
  --ink-2: #6a6058;       /* sub */
  --ink-3: #9a8f84;       /* muted */
  --line: #e5dccc;        /* divider */
  --line-2: #d8ccb6;
  --accent: #6b4f86;      /* purple from logo */
  --accent-2: #8c6fa6;
  --accent-soft: #c9b8d9;
  --warm: #c98c7a;        /* terracotta accent */

  --serif: 'Shippori Mincho B1', 'Noto Serif JP', 'Hiragino Mincho ProN', 'YuMincho', serif;
  --sans: 'Noto Sans JP', 'Hiragino Sans', 'YuGothic', sans-serif;
  --en-serif: 'Cormorant Garamond', 'Italiana', serif;
  --en-disp: 'Italiana', 'Cormorant Garamond', serif;

  --container: 1240px;
  --gutter: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.85;
  letter-spacing: 0.04em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* =========================================
   Header / Nav
   ========================================= */
.site-header {
  position: fixed; inset: 0 0 auto 0;
  z-index: 50;
  padding: 18px 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  transition: background .35s ease, padding .35s ease, box-shadow .35s ease;
  mix-blend-mode: normal;
}
.site-header.is-scrolled {
  background: rgba(253, 250, 244, 0.92);
  backdrop-filter: blur(8px);
  padding: 12px 32px;
  box-shadow: 0 1px 0 rgba(42,38,34,0.06);
}
.brand {
  display: flex; align-items: center; gap: 12px;
  color: var(--paper);
  transition: color .35s ease;
  flex-shrink: 0;
}
.site-header.is-scrolled .brand { color: var(--ink); }
.brand-logo {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  font-family: var(--en-disp);
  font-size: 22px;
  letter-spacing: 0.02em;
  color: currentColor;
  border: 1px solid currentColor;
  border-radius: 50%;
}
.brand-text { line-height: 1.2; }
.brand-text .en {
  font-family: var(--en-disp);
  font-size: 18px; letter-spacing: 0.18em;
}
.brand-text .ja {
  font-family: var(--sans);
  font-size: 10px; letter-spacing: 0.3em;
  opacity: 0.8;
}

.nav { display: flex; align-items: center; gap: 28px; flex-wrap: nowrap; }
.nav a {
  color: var(--paper);
  font-family: var(--en-serif);
  font-size: 14px;
  letter-spacing: 0.18em;
  position: relative;
  padding: 4px 0;
  transition: color .35s ease;
  white-space: nowrap;
}
.site-header.is-scrolled .nav a { color: var(--ink); }
.nav a::after {
  content: ""; position: absolute; left: 50%; bottom: 0;
  width: 0; height: 1px; background: currentColor;
  transition: width .3s ease, left .3s ease;
}
.nav a:hover::after { width: 100%; left: 0; }
.nav-cta {
  font-family: var(--sans) !important;
  font-size: 12px !important;
  letter-spacing: 0.18em;
  padding: 10px 20px !important;
  border: 1px solid currentColor;
  border-radius: 999px;
}
.nav-cta::after { display: none; }

.hamburger {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid currentColor; border-radius: 50%;
  background: transparent; color: inherit;
  cursor: pointer;
  position: relative;
}
.hamburger span {
  position: absolute; left: 50%; top: 50%;
  width: 18px; height: 1px; background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform .3s ease, opacity .3s ease;
}
.hamburger span:nth-child(1) { transform: translate(-50%, calc(-50% - 4px)); }
.hamburger span:nth-child(3) { transform: translate(-50%, calc(-50% + 4px)); }
.hamburger.is-open span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translate(-50%, -50%) rotate(-45deg); }

@media (max-width: 880px) {
  .nav { display: none; }
  .hamburger { display: block; }
  .site-header { padding: 14px 20px; }
  .site-header.is-scrolled { padding: 10px 20px; }
}

/* Drawer */
.drawer {
  position: fixed; inset: 0;
  background: var(--ink);
  color: var(--paper);
  z-index: 60;
  display: none;
  flex-direction: column;
  padding: 80px 32px 40px;
}
.drawer.is-open { display: flex; }
.drawer-close {
  position: absolute; top: 18px; right: 20px;
  width: 44px; height: 44px;
  background: transparent; border: 1px solid currentColor;
  border-radius: 50%; color: inherit; cursor: pointer;
  font-size: 18px;
}
.drawer nav { display: flex; flex-direction: column; gap: 24px; margin-top: 24px; }
.drawer nav a {
  font-family: var(--en-serif);
  font-size: 24px; letter-spacing: 0.16em;
}
.drawer nav a small {
  display: block;
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.3em;
  color: var(--accent-soft); margin-top: 4px;
}

/* =========================================
   Hero
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: flex-end;
  padding: 120px 0 80px;
  overflow: hidden;
  background: #2a2622;
}
.hero-media {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-media image-slot {
  width: 100%; height: 100%;
  --is-bg: 0;
}
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(20,16,12,0.45) 0%, rgba(20,16,12,0.1) 28%, rgba(20,16,12,0.0) 50%),
    linear-gradient(to bottom, rgba(20,16,12,0.35) 0%, rgba(20,16,12,0.0) 22%);
  pointer-events: none;
}

.hero-inner {
  position: relative; z-index: 2;
  width: 100%;
  padding: 0 var(--gutter) 36px;
  color: var(--paper);
}
.hero-logo {
  display: block;
  width: clamp(220px, 24vw, 340px);
  height: auto;
  margin: 0 0 22px;
  pointer-events: none;
  user-select: none;
}
.hero-eyebrow {
  font-family: var(--en-serif);
  font-size: 13px; letter-spacing: 0.4em;
  margin-bottom: 20px;
  opacity: 0.85;
}
.hero-title {
  font-family: var(--en-disp);
  font-weight: 400;
  font-size: clamp(20px, 3.2vw, 42px);
  line-height: 1.2;
  letter-spacing: 0.04em;
  margin: 0;
  max-width: 14em;
}
.hero-title .accent {
  display: block;
  margin-top: 14px;
  font-size: clamp(15px, 1.4vw, 19px);
  letter-spacing: 0.14em;
  color: var(--paper);
  opacity: 0.92;
  font-weight: 400;
}
.hero-sub {
  font-size: 13.5px; line-height: 1.95;
  max-width: 28em;
  opacity: 0.88;
  margin: 0 0 28px;
}
.hero-meta {
  display: flex; gap: 28px; flex-wrap: wrap;
  font-family: var(--en-serif);
  font-size: 12.5px; letter-spacing: 0.18em;
  opacity: 0.85;
  border-top: 1px solid rgba(255,255,255,0.25);
  padding-top: 18px;
  max-width: 600px;
}
.hero-meta b { font-weight: 400; opacity: 0.55; margin-right: 10px; }

.hero-side {
  position: absolute; right: var(--gutter); bottom: 56px;
  display: flex; flex-direction: column; align-items: flex-end; gap: 14px;
  z-index: 2;
  color: var(--paper);
}
.hero-scroll {
  writing-mode: vertical-rl;
  font-family: var(--en-serif);
  font-size: 12px; letter-spacing: 0.4em;
  opacity: 0.8;
  display: flex; align-items: center; gap: 14px;
}
.hero-scroll::after {
  content: ""; display: block; width: 1px; height: 60px;
  background: currentColor;
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@media (max-width: 880px) {
  .hero-side { display: none; }
  .hero-inner { padding-bottom: 56px; }
}

/* =========================================
   Sections common
   ========================================= */
.section {
  padding: clamp(80px, 12vw, 160px) 0;
  position: relative;
}
.section--cream { background: var(--bg-soft); }
.section--paper { background: var(--paper); }

.section-eyebrow {
  font-family: var(--en-serif);
  font-size: 13px; letter-spacing: 0.4em;
  color: var(--accent);
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 14px;
}
.section-eyebrow::before {
  content: ""; width: 28px; height: 1px; background: currentColor;
}
.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(24px, 3.4vw, 38px);
  line-height: 1.6;
  letter-spacing: 0.08em;
  margin: 0 0 24px;
}
.section-title .en {
  display: block;
  font-family: var(--en-disp);
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: 0.08em;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 14px;
  line-height: 1;
}
.section-lead {
  color: var(--ink-2);
  font-size: 14.5px;
  line-height: 2.1;
  max-width: 38em;
}

/* =========================================
   News strip
   ========================================= */
.news {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.news-inner {
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: center;
  gap: 32px;
  padding: 28px 0;
}
.news-label {
  font-family: var(--en-disp);
  font-size: 22px; letter-spacing: 0.18em;
  color: var(--accent);
  display: flex; flex-direction: column;
}
.news-label small {
  font-family: var(--sans);
  font-size: 10px; letter-spacing: 0.3em;
  color: var(--ink-3); margin-top: 4px;
}
.news-list { display: grid; gap: 10px; }
.news-item {
  display: grid;
  grid-template-columns: 100px 80px 1fr;
  gap: 20px; align-items: baseline;
  font-size: 13.5px;
}
.news-item time {
  font-family: var(--en-serif);
  letter-spacing: 0.12em;
  color: var(--ink-2);
}
.news-tag {
  display: inline-block;
  padding: 2px 10px;
  font-size: 10.5px; letter-spacing: 0.16em;
  border: 1px solid var(--line-2);
  color: var(--ink-2);
  border-radius: 2px;
  text-align: center;
}
@media (max-width: 720px) {
  .news-inner { grid-template-columns: 1fr; gap: 16px; padding: 24px 0; }
  .news-item { grid-template-columns: 90px 70px 1fr; gap: 12px; font-size: 12.5px; }
}

/* =========================================
   About (Greeting)
   ========================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: center;
}
.about-media {
  position: relative;
}
.about-media .frame-main {
  aspect-ratio: 4/5;
  width: 100%;
  background: var(--bg-soft);
}
.about-media .frame-sub {
  position: absolute;
  right: -40px; bottom: -40px;
  width: 45%;
  aspect-ratio: 1/1;
  background: var(--bg-soft);
  border: 6px solid var(--bg);
}
.about-media .mark {
  position: absolute;
  left: -24px; top: -24px;
  width: 90px; height: 90px;
  display: grid; place-items: center;
  background: var(--accent);
  color: var(--paper);
  border-radius: 50%;
  font-family: var(--en-serif);
  font-size: 11px; letter-spacing: 0.2em;
  text-align: center;
  line-height: 1.4;
  z-index: 2;
}
.about-body p {
  color: var(--ink-2);
  line-height: 2.2;
  font-size: 14.5px;
  margin: 0 0 1.4em;
}
.about-body .sign {
  margin-top: 32px;
  font-family: var(--en-serif);
  letter-spacing: 0.18em;
  color: var(--ink);
  font-size: 15px;
}
.about-body .sign small {
  display: block;
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.28em;
  color: var(--ink-3); margin-top: 4px;
}
@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-media .frame-sub { right: 0; bottom: -24px; width: 40%; }
}

/* =========================================
   Concept
   ========================================= */
.concept {
  background: var(--bg-soft);
  position: relative;
  overflow: hidden;
}
.concept::before {
  content: "CONCEPT";
  position: absolute;
  right: -2vw; top: 40px;
  font-family: var(--en-disp);
  font-size: 22vw;
  line-height: 0.8;
  color: rgba(107,79,134, 0.05);
  letter-spacing: 0.04em;
  pointer-events: none;
  white-space: nowrap;
}
.concept-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  position: relative;
}
.concept-points {
  display: grid; gap: 20px;
  margin-top: 40px;
}
.concept-point {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid var(--line-2);
}
.concept-point:last-child { border-bottom: 1px solid var(--line-2); }
.concept-point .num {
  font-family: var(--en-disp);
  font-size: 28px; letter-spacing: 0.05em;
  color: var(--accent);
  line-height: 1;
  padding-top: 4px;
}
.concept-point h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 18px; letter-spacing: 0.08em;
  margin: 0 0 8px;
}
.concept-point p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.95;
  color: var(--ink-2);
}
.concept-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  aspect-ratio: 5/6;
}
.concept-media > * { background: var(--paper); }
.concept-media > :nth-child(1) { grid-row: 1 / 3; }
@media (max-width: 880px) {
  .concept-grid { grid-template-columns: 1fr; }
  .concept-media { aspect-ratio: 5/4; }
}

/* =========================================
   Beauty & Health (Equipment)
   ========================================= */
.bh-header {
  text-align: center;
  margin-bottom: 80px;
}
.bh-header .section-eyebrow { justify-content: center; }
.bh-header .section-eyebrow::after {
  content: ""; width: 28px; height: 1px; background: currentColor;
}
.bh-header .section-eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }

.bh-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
}
.bh-card {
  background: var(--paper);
  padding: 0;
  display: flex; flex-direction: column;
}
.bh-card-media {
  aspect-ratio: 4/3;
  background: var(--bg-soft);
  margin-bottom: 28px;
}
.bh-card-num {
  font-family: var(--en-disp);
  font-size: 14px; letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 10px;
}
.bh-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: 0.06em;
  margin: 0 0 14px;
  line-height: 1.5;
}
.bh-card p {
  font-size: 13.5px;
  line-height: 2;
  color: var(--ink-2);
  margin: 0;
}

.bh-table-wrap {
  margin-top: 80px;
  padding: 48px;
  background: var(--paper);
  border: 1px solid var(--line);
}
.bh-table-wrap h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 18px; letter-spacing: 0.1em;
  margin: 0 0 8px;
  text-align: center;
}
.bh-table-wrap .ja-sub {
  text-align: center;
  font-family: var(--en-serif);
  font-size: 12px; letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 28px;
}
.bh-table {
  width: 100%; border-collapse: collapse;
  font-size: 14px;
}
.bh-table th, .bh-table td {
  padding: 16px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.bh-table th {
  font-weight: 500;
  color: var(--ink-2);
  font-size: 12px;
  letter-spacing: 0.16em;
}
.bh-table td:not(:first-child) {
  font-family: var(--en-serif);
  font-size: 16px;
  letter-spacing: 0.06em;
}
.bh-table .strike { color: var(--ink-3); text-decoration: line-through; margin-right: 6px; font-size: 13px; }

@media (max-width: 880px) {
  .bh-grid { grid-template-columns: 1fr; gap: 40px; }
  .bh-table-wrap { padding: 28px 20px; }
}

/* =========================================
   Menu (Pricing)
   ========================================= */
.menu-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  margin-bottom: 80px;
  align-items: start;
}
.course-cards {
  display: grid; gap: 16px;
  margin-top: 28px;
}
.course-card {
  padding: 22px 24px;
  background: var(--paper);
  border-left: 2px solid var(--accent);
}
.course-card h5 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 16px; letter-spacing: 0.08em;
  margin: 0 0 8px;
}
.course-card p {
  margin: 0; font-size: 13px; line-height: 1.9;
  color: var(--ink-2);
}
.benefit-list {
  margin-top: 20px;
  display: grid; gap: 8px;
  font-size: 13px;
  color: var(--ink-2);
}
.benefit-list span {
  display: inline-block;
  padding: 3px 12px;
  background: var(--bg);
  margin-right: 8px;
  font-family: var(--en-serif);
  letter-spacing: 0.18em;
  color: var(--warm);
  font-size: 11px;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}
.price-table caption {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 20px; letter-spacing: 0.08em;
  text-align: left;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--ink);
}
.price-table thead th {
  font-family: var(--en-serif);
  font-size: 13px; letter-spacing: 0.2em;
  color: var(--ink-2);
  font-weight: 500;
  padding: 14px 8px;
  border-bottom: 1px solid var(--line-2);
  text-align: right;
}
.price-table thead th:first-child { text-align: left; }
.price-table tbody td {
  padding: 18px 8px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.price-table tbody tr:hover { background: rgba(107,79,134, 0.03); }
.price-table tbody td:first-child {
  font-family: var(--serif);
  letter-spacing: 0.08em;
  font-size: 14.5px;
}
.price-table tbody td:not(:first-child) {
  text-align: right;
  font-family: var(--en-serif);
  font-size: 16px;
  letter-spacing: 0.04em;
}
.price-table tbody td .yen {
  font-size: 12px; color: var(--ink-3); margin-left: 2px;
}
.price-notes {
  margin-top: 20px;
  font-size: 12px;
  color: var(--ink-2);
  line-height: 1.9;
}
.price-notes p { margin: 0; }
.price-notes p::before { content: "※ "; color: var(--accent); }

.menu-extras {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.extras-block h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 18px; letter-spacing: 0.08em;
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--ink);
}
.extras-block .row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px dotted var(--line-2);
  font-size: 13.5px;
}
.extras-block .row .price {
  font-family: var(--en-serif);
  letter-spacing: 0.04em;
  font-size: 15px;
  white-space: nowrap;
}
@media (max-width: 880px) {
  .menu-intro { grid-template-columns: 1fr; }
  .menu-extras { grid-template-columns: 1fr; gap: 40px; }
  .price-table thead th, .price-table tbody td { padding: 12px 6px; }
  .price-table tbody td:not(:first-child) { font-size: 14px; }
}

/* =========================================
   Notes / Info
   ========================================= */
.notes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.note-item {
  background: var(--paper);
  padding: 28px 28px;
  border-top: 1px solid var(--accent);
  display: flex; gap: 18px;
  align-items: flex-start;
}
.note-item .icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  display: grid; place-items: center;
  background: var(--bg);
  color: var(--accent);
  font-family: var(--en-disp);
  font-size: 16px;
  border-radius: 50%;
}
.note-item p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.95;
  color: var(--ink-2);
}
@media (max-width: 720px) {
  .notes-grid { grid-template-columns: 1fr; }
}

/* =========================================
   Access
   ========================================= */
.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: stretch;
}
.access-map {
  background: var(--bg-soft);
  aspect-ratio: 4/3;
  min-height: 320px;
  position: relative;
  overflow: hidden;
}
.access-map iframe {
  width: 100%; height: 100%;
  border: 0; filter: grayscale(0.3) contrast(0.95);
}
.access-body dl {
  margin: 0;
  display: grid;
  grid-template-columns: 8em 1fr;
  gap: 14px 24px;
  font-size: 14px;
}
.access-body dt {
  font-family: var(--serif);
  letter-spacing: 0.1em;
  color: var(--ink-2);
  padding-top: 4px;
}
.access-body dd {
  margin: 0;
  padding-bottom: 16px;
  border-bottom: 1px dotted var(--line-2);
  line-height: 1.9;
}
.access-body dl > :nth-last-child(-n+2) { border-bottom: none; }
.access-body .tel-block {
  margin: 32px 0;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
}
.access-body .tel-block .lab {
  font-size: 11px; letter-spacing: 0.3em;
  color: var(--accent);
  font-family: var(--en-serif);
}
.access-body .tel-block .num {
  font-family: var(--en-disp);
  font-size: 36px; letter-spacing: 0.06em;
  color: var(--ink);
  margin: 6px 0 4px;
  line-height: 1.2;
}
.access-body .tel-block .hrs {
  font-size: 12px; color: var(--ink-2);
}
@media (max-width: 880px) {
  .access-grid { grid-template-columns: 1fr; }
  .access-body .tel-block .num { font-size: 30px; }
}

/* =========================================
   Footer
   ========================================= */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
.footer .brand-logo { border-color: var(--paper); color: var(--paper); }
.footer-tagline {
  margin-top: 24px;
  font-size: 13px; color: rgba(253,250,244,0.7);
  line-height: 2;
  max-width: 24em;
}
.footer h6 {
  font-family: var(--en-serif);
  font-size: 14px; letter-spacing: 0.24em;
  color: var(--accent-soft);
  margin: 0 0 18px;
  font-weight: 400;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer ul a {
  font-size: 13px; letter-spacing: 0.1em;
  color: rgba(253,250,244,0.75);
}
.footer ul a:hover { color: var(--paper); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(253,250,244,0.15);
  font-size: 11px; letter-spacing: 0.16em;
  color: rgba(253,250,244,0.5);
  font-family: var(--en-serif);
}
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; }
}

/* =========================================
   Floating reservation button (mobile)
   ========================================= */
.fab {
  position: fixed;
  right: 16px; bottom: 16px;
  z-index: 40;
  background: var(--ink);
  color: var(--paper);
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 13px; letter-spacing: 0.16em;
  box-shadow: 0 10px 30px rgba(42,38,34,0.35);
  display: none;
}
@media (max-width: 880px) {
  .fab { display: block; }
}

/* =========================================
   image-slot defaults
   ========================================= */
image-slot {
  --is-placeholder-bg: var(--bg-soft);
  --is-placeholder-fg: var(--ink-3);
  --is-placeholder-border: var(--line-2);
  --is-placeholder-font-family: var(--en-serif);
}

/* =========================================
   Images (real photos)
   ========================================= */
.brand-mark-text {
  display: flex; align-items: baseline; gap: 10px;
  line-height: 1;
  white-space: nowrap;
}
.bm-script {
  font-family: 'Italiana', 'Cormorant Garamond', serif;
  font-size: 30px;
  letter-spacing: 0.04em;
  color: currentColor;
}
.bm-sub {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.32em;
  color: currentColor;
  opacity: 0.85;
  padding-bottom: 4px;
}
@media (max-width: 880px) {
  .bm-script { font-size: 26px; }
  .bm-sub { font-size: 8px; }
}
.drawer .bm-script { font-size: 38px; }
.drawer .bm-sub { font-size: 10px; }
.footer .bm-script { font-size: 36px; }
.footer .bm-sub { color: var(--accent-soft); }

.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
}

.about-media .frame-main {
  object-fit: cover;
}
.about-media .frame-sub {
  object-fit: cover;
}
.concept-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.bh-card .bh-card-media {
  object-fit: cover;
  width: 100%;
}
img.bh-card-media { display: block; }

/* Style Gallery */
.gallery-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  transition: transform .6s ease, filter .4s ease;
  filter: saturate(0.95);
}
.gallery-grid img:hover {
  transform: scale(1.03);
  filter: saturate(1.05);
}
.gallery-grid .span-2 { grid-column: span 2; aspect-ratio: 3/2; }
@media (max-width: 880px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid .span-2 { grid-column: span 2; aspect-ratio: 3/2; }
}


/* =========================================
   Top-page Menu Cards (photo + text buttons)
   ========================================= */
.menu-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.menu-card {
  position: relative;
  display: block;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--bg-soft);
  color: var(--paper);
  isolation: isolate;
}
.menu-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease, filter .6s ease;
  filter: saturate(0.95) brightness(0.85);
  z-index: 0;
}
.menu-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,16,12,0.65) 0%, rgba(20,16,12,0.15) 55%, rgba(20,16,12,0) 100%);
  z-index: 1;
  pointer-events: none;
  transition: opacity .35s ease;
}
.menu-card:hover img {
  transform: scale(1.06);
  filter: saturate(1.05) brightness(0.95);
}
.menu-card-body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 28px 26px;
  z-index: 2;
  display: flex; flex-direction: column; gap: 8px;
}
.menu-card-num {
  font-family: var(--en-disp);
  font-size: 13px; letter-spacing: 0.3em;
  opacity: 0.85;
}
.menu-card-en {
  font-family: var(--en-disp);
  font-size: 28px;
  letter-spacing: 0.06em;
  line-height: 1.1;
}
.menu-card-ja {
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: 0.16em;
  font-weight: 500;
}
.menu-card-arrow {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--en-serif);
  font-size: 11px; letter-spacing: 0.3em;
  margin-top: 10px;
  opacity: 0.85;
  transition: gap .3s ease;
}
.menu-card-arrow::after {
  content: ""; display: block;
  width: 28px; height: 1px; background: currentColor;
}
.menu-card:hover .menu-card-arrow { gap: 14px; }
.menu-card:hover .menu-card-arrow::after { width: 36px; }

@media (max-width: 880px) {
  .menu-cards { grid-template-columns: 1fr; gap: 12px; }
  .menu-card { aspect-ratio: 5/4; }
  .menu-card-body { padding: 22px 20px; }
  .menu-card-en { font-size: 24px; }
}

/* Page header (for sub-pages — smaller hero) */
.page-hero {
  position: relative;
  min-height: 56vh;
  display: flex; align-items: flex-end;
  background: #2a2622;
  overflow: hidden;
  padding-top: 100px;
}
.page-hero .hero-media { position: absolute; inset: 0; z-index: 0; }
.page-hero .hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.7;
}
.page-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,16,12,0.7) 0%, rgba(20,16,12,0.2) 60%, rgba(20,16,12,0) 100%);
  z-index: 1;
}
.page-hero-inner {
  position: relative; z-index: 2;
  width: 100%;
  color: var(--paper);
  padding: 0 var(--gutter) 56px;
}
.page-hero-eyebrow {
  font-family: var(--en-serif);
  font-size: 13px; letter-spacing: 0.4em;
  opacity: 0.85;
  margin-bottom: 14px;
}
.page-hero-title {
  font-family: var(--en-disp);
  font-size: clamp(48px, 7vw, 84px);
  letter-spacing: 0.06em;
  line-height: 1;
  margin: 0 0 10px;
}
.page-hero-ja {
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: 0.2em;
  opacity: 0.92;
}

/* Breadcrumb */
.crumb {
  font-family: var(--en-serif);
  font-size: 11px; letter-spacing: 0.24em;
  color: var(--ink-3);
  padding: 28px var(--gutter) 0;
  max-width: var(--container);
  margin: 0 auto;
  display: flex; gap: 10px; align-items: center;
}
.crumb a { color: var(--ink-2); }
.crumb a:hover { color: var(--accent); }
.crumb span.sep { opacity: 0.5; }


/* =========================================
   Home — About intro section
   ========================================= */
:root {
  --gold: #a18743;
  --gold-soft: #c2a86a;
}
.home-about {
  position: relative;
  background: var(--paper);
  padding: clamp(96px, 14vw, 180px) 0;
  text-align: center;
  overflow: hidden;
}
.home-about-side {
  position: absolute;
  left: 28px; top: 80px;
  writing-mode: vertical-rl;
  font-family: var(--en-serif);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--ink-3);
}
.home-about-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ha-eyebrow-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  margin-bottom: 56px;
}
.ha-title {
  font-family: var(--en-disp);
  font-size: clamp(48px, 6vw, 84px);
  letter-spacing: 0.08em;
  line-height: 1;
  color: var(--gold);
  margin: 0;
  font-weight: 400;
}
.ha-divider {
  display: block;
  width: 32px; height: 1px;
  background: var(--gold);
}
.ha-sub {
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.36em;
  color: var(--gold);
  margin: 0;
  font-weight: 400;
}
.ha-body {
  margin-bottom: 64px;
  color: var(--gold);
}
.ha-body p {
  font-family: var(--serif);
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 2.6;
  letter-spacing: 0.18em;
  margin: 0;
  font-weight: 400;
}
.ha-more {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--gold);
  font-family: var(--en-serif);
  font-size: 13px;
  letter-spacing: 0.32em;
  transition: gap .3s ease;
}
.ha-more .ha-arrow {
  display: inline-flex;
  transition: transform .35s ease;
}
.ha-more:hover { gap: 24px; }
.ha-more:hover .ha-arrow { transform: translateX(6px); }

@media (max-width: 720px) {
  .home-about-side { display: none; }
  .ha-body p { line-height: 2.2; }
}


/* =========================================
   Shop section (Top page bottom)
   ========================================= */
.shop-section {
  background: var(--paper);
  padding: clamp(96px, 14vw, 160px) 0 clamp(80px, 10vw, 120px);
}
.shop-header {
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 22px;
  margin-bottom: 72px;
}
.shop-title {
  font-family: var(--en-disp);
  font-size: clamp(56px, 7vw, 96px);
  letter-spacing: 0.08em;
  line-height: 1;
  color: var(--gold);
  margin: 0;
  font-weight: 400;
}
.shop-divider {
  display: block;
  width: 32px; height: 1px;
  background: var(--gold);
}
.shop-dl {
  max-width: 880px;
  margin: 0 auto 72px;
  display: grid;
  grid-template-columns: 200px 1fr;
  row-gap: 36px;
  column-gap: 60px;
  padding: 0 var(--gutter);
  color: var(--gold);
}
.shop-dl dt {
  font-family: var(--serif);
  font-size: 14.5px;
  letter-spacing: 0.18em;
  font-weight: 400;
  text-align: right;
}
.shop-dl dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.1em;
}
.shop-dl dd small {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--gold-soft);
}
.shop-dl dd a { color: var(--gold); }
.shop-maplink {
  display: inline-block;
  margin-top: 6px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  font-size: 14px;
}
.shop-maplink:hover { opacity: 0.7; }
.shop-map {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  aspect-ratio: 16/7;
}
.shop-map iframe {
  width: 100%; height: 100%; border: 0;
  filter: grayscale(0.25) contrast(0.95);
}
@media (max-width: 720px) {
  .shop-dl {
    grid-template-columns: 1fr;
    row-gap: 8px;
  }
  .shop-dl dt { text-align: left; margin-top: 18px; color: var(--gold-soft); font-size: 12px; letter-spacing: 0.24em; }
  .shop-dl dt:first-child { margin-top: 0; }
  .shop-map { aspect-ratio: 4/3; }
}


/* =========================================
   Horizontal-scroll gallery (Top page)
   ========================================= */
.hgallery {
  background: var(--bg);
  padding: clamp(96px, 12vw, 160px) 0 clamp(80px, 10vw, 120px);
  overflow: hidden;
}
.hgallery-header {
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 22px;
  margin-bottom: 64px;
}
.hgallery-title {
  font-family: var(--en-disp);
  font-size: clamp(48px, 6vw, 84px);
  letter-spacing: 0.08em;
  line-height: 1;
  color: var(--gold);
  margin: 0;
  font-weight: 400;
}
.hgallery-divider {
  display: block;
  width: 32px; height: 1px;
  background: var(--gold);
}
.hgallery-sub {
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.36em;
  color: var(--gold);
  margin: 0;
}
.hgallery-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 16px;
  scrollbar-width: thin;
}
.hgallery-scroll::-webkit-scrollbar { height: 6px; }
.hgallery-scroll::-webkit-scrollbar-track { background: transparent; }
.hgallery-scroll::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 3px; }
.hgallery-track {
  display: flex;
  gap: 18px;
  padding: 0 var(--gutter);
  width: max-content;
}
.hgallery-item {
  flex: 0 0 auto;
  width: clamp(220px, 24vw, 320px);
  aspect-ratio: 3/4;
  overflow: hidden;
  scroll-snap-align: start;
  display: block;
  background: var(--bg-soft);
  position: relative;
}
.hgallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s ease, filter .4s ease;
  filter: saturate(0.95);
}
.hgallery-item:hover img {
  transform: scale(1.06);
  filter: saturate(1.05);
}
.hgallery-more {
  display: flex; justify-content: center;
  margin-top: 56px;
}
@media (max-width: 720px) {
  .hgallery-item { width: 78vw; }
}


/* =========================================
   Brand logo image (header / drawer / footer)
   ========================================= */
.brand-img {
  display: block;
  height: 72px;
  width: auto;
  transition: opacity .35s ease;
}
/* Two logo variants stacked — swap by opacity on scroll */
.brand .brand-img-dark { display: none; }
.site-header.is-scrolled .brand .brand-img-light { display: none; }
.site-header.is-scrolled .brand .brand-img-dark { display: block; }
@media (max-width: 880px) {
  .brand-img { height: 60px; }
}
.drawer .brand-img { height: 84px; }
/* Drawer & footer always white — force light variant */
.drawer .brand .brand-img-dark,
.footer .brand .brand-img-dark { display: none !important; }
.drawer .brand .brand-img-light,
.footer .brand .brand-img-light { display: block !important; }
.footer .brand-img { height: 96px; }
/* Sub-pages: header starts in scrolled state */
body[data-screen-label]:not([data-screen-label="01 Top"]) .site-header .brand .brand-img-light { display: none; }
body[data-screen-label]:not([data-screen-label="01 Top"]) .site-header .brand .brand-img-dark { display: block; }


/* =========================================
   Manner-belt notice (Menu page)
   ========================================= */
.manner-belt-note {
  margin: 80px 0;
  padding: clamp(36px, 4.5vw, 56px) clamp(28px, 4vw, 56px);
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line);
  border-top: 2px solid var(--accent);
  position: relative;
}
.mbn-label {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 22px;
}
.mbn-tag {
  display: inline-block;
  padding: 5px 12px;
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
  font-family: var(--en-serif);
  font-size: 11px;
  letter-spacing: 0.28em;
  font-weight: 500;
}
.mbn-ja {
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--ink-2);
}
.mbn-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(20px, 2.2vw, 26px);
  letter-spacing: 0.1em;
  margin: 0 0 16px;
  line-height: 1.5;
  color: var(--ink);
}
.mbn-body {
  margin: 0;
  font-size: 14.5px;
  line-height: 2.1;
  letter-spacing: 0.06em;
  color: var(--ink-2);
}
@media (max-width: 720px) {
  .manner-belt-note { padding: 36px 24px; }
  .mbn-label { flex-direction: column; align-items: flex-start; gap: 10px; }
}


/* =========================================
   Beauty & Health card extras
   ========================================= */
.bh-card-note {
  margin-top: 12px !important;
  font-size: 12.5px !important;
  color: var(--ink-3) !important;
  line-height: 1.8 !important;
}
.bh-effects {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.bh-effects-label {
  display: inline-block;
  font-family: var(--en-serif);
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--accent);
  margin-bottom: 10px;
}
.bh-effects ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}
.bh-effects li {
  font-size: 13.5px;
  line-height: 1.8;
  color: var(--ink-2);
  padding-left: 16px;
  position: relative;
}
.bh-effects li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.8em;
  width: 6px; height: 1px;
  background: var(--accent);
}


/* =========================================
   Instagram button (header / footer)
   ========================================= */
.nav-ig {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: var(--paper);
  transition: background .25s ease, color .25s ease;
}
.nav-ig svg { display: block; }
.nav-ig::after { display: none !important; }
.site-header.is-scrolled .nav-ig { color: var(--ink); }
.nav-ig:hover { background: currentColor; }
.nav-ig:hover svg { color: var(--paper); stroke: var(--paper); }
.site-header.is-scrolled .nav-ig:hover svg { color: var(--ink); stroke: var(--paper); }

.footer-ig {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(253,250,244,0.75);
  font-size: 13px;
  letter-spacing: 0.08em;
  transition: color .25s ease;
}
.footer-ig:hover { color: var(--paper); }
.footer-ig svg { display: block; }
.footer-ig-li { margin-top: 8px; }
