:root {
  --ink: #0b0908;
  --walnut: #14100d;
  --panel: #1b1511;
  --panel-2: #221b16;
  --burgundy: #6e2c38;
  --burgundy-deep: #4a1d26;
  --gold: #c6a46a;
  --gold-soft: #d8bf8a;
  --gold-dim: #8a7348;
  --champagne: #e8d9b8;
  --bone: #f3ece0;
  --dust: #9c9388;
  --mute: #6f675e;
  --line: rgba(198, 164, 106, 0.3);
  --line-strong: rgba(198, 164, 106, 0.55);
  --shadow-ink: rgba(0, 0, 0, 0.45);
  --font-display: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", serif;
  --font-label: "Times New Roman", Times, serif;
  --font-jp: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", serif;
  --font-ui: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  --max: 1180px;
  --pad: clamp(22px, 5.2vw, 48px);
}

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

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  background:
    radial-gradient(ellipse at top, rgba(110, 44, 56, 0.18), transparent 42%),
    var(--ink);
  color: var(--champagne);
  font-family: var(--font-ui);
  font-size: 15px;
  line-height: 1.85;
  letter-spacing: 0.04em;
}

img {
  max-width: 100%;
  display: block;
}

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

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

.skip {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
  pointer-events: none;
}

.skip:focus,
.skip:focus-visible {
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  clip-path: none;
  overflow: visible;
  white-space: normal;
  pointer-events: auto;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--ink);
  padding: 8px 12px;
  z-index: 100;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  transition: background 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(11, 9, 8, 0.92);
  border-bottom-color: var(--line);
  backdrop-filter: blur(12px);
}

.header-inner {
  max-width: calc(var(--max) + 80px);
  margin: 0 auto;
  padding: 18px var(--pad);
  display: flex;
  align-items: center;
  gap: 32px;
}

.wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  min-width: 140px;
}

.wordmark-en {
  font-family: var(--font-label);
  font-size: 18px;
  letter-spacing: 0.22em;
  color: var(--bone);
}

.wordmark-ja {
  font-family: var(--font-label);
  font-size: 9px;
  letter-spacing: 0.38em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 4px;
}

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link,
.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  color: var(--champagne);
  font-size: 13px;
  letter-spacing: 0.14em;
  background: none;
  border: 0;
  cursor: pointer;
}

.nav-link:hover,
.nav-toggle:hover,
.nav-link.is-current {
  color: var(--gold-soft);
}

.has-sub {
  position: relative;
}

.subnav {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  padding: 14px 0;
  background: #16110e;
  border: 1px solid var(--line);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: 0.2s ease;
}

.has-sub:hover .subnav,
.has-sub:focus-within .subnav,
.has-sub.is-open .subnav {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.subnav a {
  display: block;
  padding: 8px 22px;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--champagne);
}

.subnav a:hover {
  color: var(--gold-soft);
}

.subnav .sub-label {
  display: block;
  padding: 6px 22px 10px;
  color: var(--gold);
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.28em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border: 1px solid var(--gold);
  color: var(--gold-soft);
  letter-spacing: 0.12em;
  font-size: 13px;
  background: transparent;
  transition: 0.25s ease;
}

.btn:hover {
  background: var(--gold);
  color: var(--ink);
}

.btn-solid {
  background: var(--gold);
  color: var(--ink);
}

.btn-solid:hover {
  background: var(--gold-soft);
}

.btn-reserve {
  margin-left: 12px;
}

.menu-btn {
  display: none;
  margin-left: auto;
  min-height: 44px;
  padding: 8px 12px;
  border: 1px solid var(--gold-dim);
  background: rgba(11, 9, 8, 0.55);
  color: var(--bone);
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.menu-btn-bars {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 18px;
}

.menu-btn-bars span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--gold-soft);
  border-radius: 1px;
  transform-origin: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-btn-text {
  font-size: 11px;
  letter-spacing: 0.16em;
  line-height: 1;
}

.site-header.is-open .menu-btn-bars span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-open .menu-btn-bars span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .menu-btn-bars span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: end center;
  padding: 140px var(--pad) 80px;
  overflow: hidden;
  background: #0b0908;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero picture:has(.hero-media),
.page-hero picture:has(.hero-media),
.tile picture:has(.tile-photo) {
  display: contents;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(11, 9, 8, 0.42) 0%, rgba(11, 9, 8, 0.18) 38%, rgba(11, 9, 8, 0.9) 100%),
    radial-gradient(ellipse at center, transparent 18%, rgba(11, 9, 8, 0.62) 100%);
}

.hero-frame {
  position: absolute;
  inset: 24px;
  border: 1px solid var(--line);
  pointer-events: none;
  z-index: 2;
}

.hero-frame::before,
.hero-frame::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  border: 1px solid var(--gold-dim);
}

.hero-frame::before {
  top: -1px;
  left: -1px;
  border-right: 0;
  border-bottom: 0;
}

.hero-frame::after {
  right: -1px;
  bottom: -1px;
  border-left: 0;
  border-top: 0;
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.42em;
  color: var(--gold);
  text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.section-title {
  font-family: var(--font-jp);
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.4;
  color: var(--bone);
}

.hero h1 {
  font-size: clamp(36px, 6vw, 68px);
  margin: 18px 0 20px;
}

.hero-lead {
  font-family: var(--font-jp);
  font-size: 16px;
  color: var(--champagne);
  margin: 0 0 36px;
}

.ornament {
  width: 120px;
  height: 18px;
  margin: 0 auto 20px;
  background:
    linear-gradient(var(--gold), var(--gold)) center / 72px 1px no-repeat,
    radial-gradient(circle, var(--gold) 1.5px, transparent 1.7px) center / 8px 8px no-repeat;
}

.page-hero {
  position: relative;
  min-height: 58vh;
  display: grid;
  place-items: end center;
  padding: 150px var(--pad) 72px;
  background: #0b0908;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(11, 9, 8, 0.35), rgba(11, 9, 8, 0.86));
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  margin: 12px 0 0;
}

/* Layout */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.section {
  padding: 96px 0;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.section-title {
  font-size: clamp(28px, 3.4vw, 42px);
  margin: 12px 0 16px;
}

.section-copy {
  margin: 0;
  color: var(--dust);
  font-family: var(--font-jp);
}

.gold-rule {
  width: 48px;
  height: 1px;
  margin: 0 auto;
  background: var(--gold);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split.reverse .split-visual {
  order: 1;
}

.split-kicker {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--gold);
}

.split h2 {
  font-family: var(--font-jp);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  letter-spacing: 0.1em;
  margin: 10px 0 20px;
}

.split p {
  color: var(--dust);
  font-family: var(--font-jp);
}

.frame-photo {
  position: relative;
  padding: 14px;
  border: 1px solid var(--line);
}

.frame-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.05);
}

.frame-photo.wide img {
  aspect-ratio: 16 / 10;
}

/* Cards */
.houses {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.house-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.house-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) brightness(0.72);
  transition: 0.6s ease;
  z-index: 0;
  pointer-events: none;
}

.house-card:hover img {
  transform: scale(1.04);
  filter: saturate(0.8) brightness(0.8);
}

.house-card .house-body {
  position: absolute;
  inset: auto 0 0;
  padding: 36px 32px;
  background: linear-gradient(180deg, transparent, rgba(11, 9, 8, 0.92));
  z-index: 1;
}

.house-card h3 {
  font-family: var(--font-jp);
  font-size: 32px;
  font-weight: 500;
  margin: 8px 0 12px;
}

.house-meta {
  color: var(--dust);
  font-size: 13px;
  margin-bottom: 20px;
}

.tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tile {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 28px 24px 32px;
  overflow: hidden;
}

.tile-photo {
  display: block;
  width: calc(100% + 48px);
  max-width: none;
  height: 160px;
  object-fit: cover;
  margin: -28px -24px 20px;
}

.tile h3 {
  font-family: var(--font-jp);
  font-size: 22px;
  font-weight: 500;
  margin: 10px 0 12px;
}

.tile p {
  color: var(--dust);
  margin: 0 0 20px;
  font-family: var(--font-jp);
}

.tile .price {
  color: var(--gold-soft);
  font-family: var(--font-display);
  font-size: 22px;
}

.journal-grid,
.info-list,
.course-grid {
  display: grid;
  gap: 20px;
}

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

.journal-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: var(--walnut);
  min-height: 100%;
}

.journal-card-media {
  background: var(--panel);
}

.journal-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: none;
}

.journal-card .body {
  padding: 24px;
}

.journal-card .date,
.meta-line {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
}

.journal-card h3 {
  font-family: var(--font-jp);
  font-size: 20px;
  font-weight: 500;
  margin: 10px 0 0;
}

/* Menu */
.store-tabs {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  max-width: none;
  margin: 0;
  padding: 22px var(--pad) 28px;
  background: var(--walnut);
  border-bottom: 1px solid var(--line);
}

.store-tabs a {
  padding: 10px 18px;
  border: 1px solid var(--line);
  background: var(--panel);
  font-size: 12px;
  letter-spacing: 0.16em;
}

.store-tabs a.is-current {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}

.menu-block + .menu-block {
  margin-top: 64px;
}

.menu-block h2 {
  font-family: var(--font-jp);
  font-size: 28px;
  font-weight: 500;
  text-align: center;
  margin: 0 0 28px;
}

.menu-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px 32px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(198, 164, 106, 0.14);
}

.menu-row.has-photo {
  grid-template-columns: 88px 1fr auto;
}

.menu-photo {
  width: 88px;
  height: 88px;
  object-fit: cover;
  display: block;
}

.menu-row h3 {
  font-family: var(--font-jp);
  font-size: 18px;
  font-weight: 500;
  margin: 0;
}

.menu-row p,
.menu-copy p {
  margin: 4px 0 0;
  color: var(--dust);
  font-size: 13px;
}

.menu-prices {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  min-width: 5em;
}

.yen-ex,
.yen-in {
  font-family: var(--font-display);
  line-height: 1.2;
  white-space: nowrap;
}

.yen-ex {
  font-size: 20px;
  color: var(--gold-soft);
}

.yen-in {
  font-size: 13px;
  color: var(--dust);
}

.yen-ex small,
.yen-in small {
  margin-left: 6px;
  font-family: var(--font-jp);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.course-card {
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 40px 36px;
  overflow: hidden;
}

.course-photo {
  display: block;
  width: calc(100% + 72px);
  max-width: none;
  height: 180px;
  object-fit: cover;
  margin: -40px -36px 24px;
}

.course-card h3 {
  font-family: var(--font-jp);
  font-size: 28px;
  margin: 8px 0 8px;
}

.course-card .menu-prices {
  align-items: flex-start;
  margin: 4px 0 16px;
}

.course-card .yen-ex {
  font-size: 32px;
}

.course-card .yen-in {
  font-size: 16px;
}

.course-card ul {
  padding-left: 1.1em;
  color: var(--dust);
  font-family: var(--font-jp);
}

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

.job-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.job-store {
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 40px 32px 36px;
  text-align: center;
}

.job-store h3 {
  font-family: var(--font-jp);
  font-size: 28px;
  font-weight: 500;
  margin: 8px 0 28px;
}

/* Info / forms */
.info-item {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid rgba(198, 164, 106, 0.14);
}

.info-item .date {
  font-family: var(--font-label);
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.12em;
}

.info-item h3 {
  font-family: var(--font-jp);
  font-size: 18px;
  font-weight: 500;
  margin: 0;
}

.form {
  display: grid;
  gap: 18px;
  max-width: 720px;
  margin: 0 auto;
}

.form-notice {
  max-width: 720px;
  margin: 0 auto 28px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  text-align: center;
}

.form-notice.is-ok {
  border-color: var(--gold);
  color: var(--gold-soft);
}

.form-notice.is-ng {
  border-color: #8a4a52;
  color: #e8c4c8;
}

.hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.field label {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--gold);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 14px 16px;
  outline: none;
  color: var(--champagne);
}

.field textarea {
  min-height: 160px;
  resize: vertical;
}

.reserve-wrap {
  max-width: 520px;
  margin: 0 auto;
}

.reserve-lead {
  text-align: center;
  color: var(--dust);
  margin: 0 0 36px;
  font-size: 15px;
}

.reserve-form,
.wpcf7-wrap .wpcf7 {
  display: grid;
  gap: 18px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.opt {
  color: var(--dust);
  letter-spacing: 0;
  font-size: 11px;
  margin-left: 6px;
}

.reserve-submit {
  margin: 8px 0 0;
}

.reserve-submit .btn,
.wpcf7 input[type="submit"] {
  display: inline-flex;
  width: 100%;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--ink);
  border: 1px solid var(--gold);
  letter-spacing: 0.12em;
  font-size: 14px;
  cursor: pointer;
}

.wpcf7 input[type="submit"]:hover,
.reserve-submit .btn:hover {
  background: var(--gold-soft);
}

.reserve-phone {
  text-align: center;
  margin-top: 28px;
  color: var(--dust);
  font-size: 14px;
}

.reserve-phone a {
  color: var(--gold-soft);
}

.page-hero-compact {
  min-height: 42vh;
}

.reserve-houses .house-card {
  min-height: 600px;
}

.reserve-houses .stack-btns {
  flex-direction: column;
  align-items: stretch;
}

.reserve-houses .btn {
  width: 100%;
}

.wpcf7 label {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--gold);
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="date"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 14px 16px;
  outline: none;
  color: var(--champagne);
}

.reserve-form textarea,
.wpcf7 textarea {
  min-height: 110px;
}

.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
  border-color: var(--gold);
}

.wpcf7-not-valid-tip {
  color: #e8b4b4;
  font-size: 12px;
  margin-top: 6px;
}

.wpcf7-response-output {
  margin: 8px 0 0;
  padding: 12px 16px;
  border: 1px solid var(--line);
  color: var(--champagne);
}

.wpcf7-spinner {
  margin-left: 8px;
}

.cf7-help {
  margin-top: 40px;
  padding: 20px;
  border: 1px dashed var(--line);
  color: var(--dust);
  font-size: 13px;
}

.cf7-help textarea {
  width: 100%;
  margin: 8px 0 16px;
  background: var(--panel);
  color: var(--champagne);
  border: 1px solid var(--line);
  padding: 12px;
  font-family: ui-monospace, monospace;
  font-size: 12px;
}

@media (max-width: 700px) {
  .field-row {
    grid-template-columns: 1fr;
  }
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
}

.dl {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 14px 24px;
  font-family: var(--font-jp);
}

.dl dt {
  color: var(--gold);
  letter-spacing: 0.12em;
}

.dl dd {
  margin: 0;
  color: var(--champagne);
}

.note {
  color: var(--dust);
  font-size: 13px;
}

.cta-band {
  text-align: center;
  padding: 96px var(--pad);
  background:
    linear-gradient(180deg, rgba(11, 9, 8, 0.7), rgba(11, 9, 8, 0.82)),
    url("../images/wine-dark.jpg") center / cover;
}

.cta-band h2 {
  font-family: var(--font-jp);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 500;
  margin: 12px 0 28px;
}

.article {
  max-width: 740px;
  margin: 0 auto;
  font-family: var(--font-jp);
  font-size: 17px;
  line-height: 1.95;
  color: #d8cfc0;
  overflow-wrap: anywhere;
}

.article > *:first-child {
  margin-top: 0;
}

.article p {
  margin: 0 0 1.15em;
  color: #d8cfc0;
}

.article a:not(.btn):not(.wp-element-button):not(.wp-block-button__link) {
  color: var(--gold-soft);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.article a:not(.btn):not(.wp-element-button):not(.wp-block-button__link):hover {
  color: var(--gold);
}

.article h2,
.article h3,
.article h4 {
  font-family: var(--font-jp);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.04em;
  color: var(--bone);
}

.article h2 {
  font-size: clamp(22px, 4.6vw, 30px);
  margin: 2.2em 0 0.75em;
  padding: 0 0 12px;
  border-bottom: 1px solid var(--line);
}

.article h3 {
  font-size: clamp(18px, 3.8vw, 22px);
  color: var(--gold-soft);
  margin: 1.7em 0 0.55em;
}

.article h4 {
  font-size: 17px;
  color: var(--champagne);
  margin: 1.4em 0 0.4em;
}

.article ul,
.article ol {
  margin: 0 0 1.3em;
  padding-left: 1.3em;
}

.article li {
  margin: 0.35em 0;
}

.article li::marker {
  color: var(--gold-dim);
}

.article blockquote {
  margin: 1.6em 0;
  padding: 16px 20px;
  border-left: 2px solid var(--gold-dim);
  background: rgba(198, 164, 106, 0.06);
  color: var(--champagne);
}

.article hr {
  border: 0;
  height: 1px;
  margin: 2.4em 0;
  background: var(--line);
}

.article img {
  width: 100%;
  height: auto;
  margin: 24px 0;
}

.article figure {
  margin: 28px 0;
}

.article figcaption {
  margin-top: 8px;
  font-size: 13px;
  color: var(--dust);
  text-align: center;
}

.article-eyecatch {
  margin: 0 0 40px;
}

.article-eyecatch img {
  width: 100%;
  height: auto;
  margin: 0;
}

.article-table,
.article .wp-block-table {
  margin: 28px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--line);
  background: var(--panel);
}

.article table {
  width: 100%;
  min-width: 420px;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.6;
}

.article th,
.article td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.article th {
  color: var(--gold-soft);
  font-weight: 500;
  background: rgba(198, 164, 106, 0.08);
  white-space: nowrap;
}

.article tr:last-child td {
  border-bottom: 0;
}

.article .wp-block-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.article .wp-block-button {
  margin: 0;
}

.article .wp-block-button__link,
.article .wp-element-button,
.article .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold-soft);
  letter-spacing: 0.12em;
  font-size: 13px;
  font-family: var(--font-ui);
  text-decoration: none;
  line-height: 1.3;
  box-sizing: border-box;
}

.article .wp-block-button.is-style-fill .wp-block-button__link,
.article .wp-block-button__link:not(.has-background) {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

.article .wp-block-button.is-style-outline .wp-block-button__link {
  background: transparent;
  color: var(--gold-soft);
}

.article .wp-block-button__link:hover,
.article .wp-element-button:hover,
.article .button:hover {
  background: var(--gold-soft);
  color: var(--ink);
  border-color: var(--gold-soft);
}

.admin-bar .site-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

.sitemap-col h2 {
  font-family: var(--font-jp);
  font-size: 20px;
  color: var(--gold-soft);
}

.sitemap-col a {
  display: block;
  padding: 6px 0;
  color: var(--champagne);
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.hours-box {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 32px;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 64px 0 36px;
  background: #0e0b09;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 36px;
}

.site-footer h2 {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--gold);
  margin: 0 0 16px;
}

.site-footer a,
.site-footer p {
  color: var(--dust);
  font-size: 13px;
}

.site-footer a {
  display: block;
  margin: 8px 0;
  padding: 4px 0;
}

.site-footer a:hover {
  color: var(--gold-soft);
}

.sticky-book {
  display: none;
}

.copyright {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(198, 164, 106, 0.12);
  color: var(--mute);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.bg-walnut {
  background: var(--walnut);
}

.bg-panel {
  background: var(--panel);
}

.stack-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.muted-en {
  font-family: var(--font-label);
  letter-spacing: 0.28em;
  font-size: 11px;
  color: var(--gold);
}

@media (max-width: 1100px) {
  .menu-btn {
    display: inline-flex;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(11, 9, 8, 0.97);
    border-bottom: 1px solid var(--line);
    padding: 12px 20px 28px;
  }

  .site-header.is-open .nav {
    display: block;
  }

  .nav-list,
  .has-sub {
    display: block;
  }

  .subnav {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: 0;
    background: transparent;
    padding: 0 0 8px 12px;
  }

  .btn-reserve {
    width: 100%;
    margin: 12px 0 0;
  }

  .split,
  .houses,
  .tiles,
  .journal-grid,
  .course-grid,
  .job-board,
  .sitemap-grid,
  .footer-grid,
  .info-item {
    grid-template-columns: 1fr;
  }

  .menu-row.has-photo {
    grid-template-columns: 72px 1fr;
  }

  .menu-row.has-photo .menu-prices {
    grid-column: 2;
    align-items: flex-start;
  }

  .menu-photo {
    width: 72px;
    height: 72px;
  }

  .split.reverse .split-visual {
    order: 0;
  }

  .house-card {
    min-height: 420px;
  }

  .hero {
    min-height: 78vh;
    place-items: center;
  }

  .hero-frame {
    inset: 12px;
  }

  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }

  .section {
    padding: 56px 0;
  }

  .page-hero {
    min-height: 0;
    padding: 118px var(--pad) 40px;
  }

  .page-hero-compact {
    min-height: 0;
    padding: 110px var(--pad) 32px;
  }

  .page-hero h1,
  .hero h1 {
    font-size: clamp(26px, 7.4vw, 36px);
    line-height: 1.35;
  }

  .article {
    font-size: 16px;
  }

  .article h2 {
    margin-top: 1.7em;
  }

  .article-eyecatch img {
    max-height: 52vh;
    width: auto;
    max-width: 100%;
    margin: 0 auto;
    object-fit: contain;
  }

  .journal-card img {
    max-height: 240px;
    object-fit: contain;
    background: var(--panel);
  }

  .journal-card .body {
    padding: 18px 16px 20px;
  }

  .journal-card h3 {
    font-size: 17px;
  }

  .sticky-book {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 80;
    min-height: 52px;
    padding: 14px 20px calc(14px + env(safe-area-inset-bottom, 0px));
    background: linear-gradient(180deg, #d8bf8a 0%, #c6a46a 100%);
    color: #0b0908;
    font-family: var(--font-jp);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-decoration: none;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.35);
  }
}
