:root {
  --ivory: #f8f5ee;
  --paper: #fffdf8;
  --stone: #eee9df;
  --stone-deep: #d8d0c3;
  --charcoal: #242322;
  --ink-soft: #4b4741;
  --muted: #777067;
  --brass: #a88753;
  --brass-soft: #d7c49d;
  --sage: #879184;
  --line: rgba(36, 35, 34, 0.13);
  --shadow: 0 22px 58px rgba(49, 44, 37, 0.08);
  --font-display: "Cormorant Garamond", "Bodoni 72", "Times New Roman", serif;
  --font-body: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  --container: 1160px;
  --header-height: 128px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(rgba(248, 245, 238, 0.94), rgba(248, 245, 238, 0.94)),
    var(--texture, none),
    var(--ivory);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0;
}

body.nav-open,
body.modal-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  transform: translateY(-160%);
  background: var(--charcoal);
  color: var(--paper);
  padding: 10px 14px;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 112px 0;
}

.section-anchor {
  scroll-margin-top: 150px;
}

.section--stone {
  background: linear-gradient(180deg, rgba(238, 233, 223, 0.62), rgba(248, 245, 238, 0.92));
}

.section--split {
  position: relative;
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--brass);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-kicker--light {
  color: var(--brass-soft);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 400;
  line-height: 1.25;
}

h1 {
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 58px;
  max-width: 760px;
  text-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
}

h2 {
  color: var(--charcoal);
  font-family: var(--font-display);
  font-size: 42px;
}

h3 {
  font-size: 19px;
}

.lead,
.section-intro {
  margin: 22px 0 0;
  color: var(--ink-soft);
  max-width: 680px;
}

.section-heading {
  margin-bottom: 34px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 248, 0.93);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(var(--container), calc(100% - 40px));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 27px;
  line-height: 1.1;
  color: var(--charcoal);
}

.brand-subtitle {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--ink-soft);
  font-size: 13px;
}

.header-tel {
  color: var(--charcoal);
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1;
}

.line-button {
  border: 1px solid var(--brass);
  color: var(--charcoal);
  padding: 9px 18px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.line-button:hover,
.line-button:focus-visible {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--paper);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 1px;
  background: var(--charcoal);
  transition: transform 220ms ease, opacity 220ms ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(42deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-42deg);
}

.site-nav {
  border-top: 1px solid var(--line);
}

.nav-list,
.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-list {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.nav-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 14px;
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.13em;
  transition: color 220ms ease, background 220ms ease;
}

.nav-list a:hover,
.nav-list a:focus-visible {
  color: var(--brass);
  background: rgba(168, 135, 83, 0.06);
}

.hero {
  position: relative;
  min-height: 680px;
  height: calc(100vh - var(--header-height));
  max-height: 820px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.image-slot {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(216, 208, 195, 0.54), rgba(248, 245, 238, 0.9)),
    #ded7cb;
  background-position: center;
  background-size: cover;
  min-height: 260px;
  border: 1px solid rgba(36, 35, 34, 0.11);
}

.image-slot::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 253, 248, 0.44);
  pointer-events: none;
}

.image-slot::after {
  content: attr(data-label);
  position: absolute;
  inset: auto 18px 18px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 10px;
  color: rgba(36, 35, 34, 0.52);
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid rgba(36, 35, 34, 0.08);
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  transition: opacity 220ms ease;
}

.image-slot.image-slot--loaded::after {
  opacity: 0;
}

.image-slot--hero {
  position: absolute;
  inset: 0;
  min-height: 100%;
  border: 0;
}

.image-slot--hero::before {
  border-color: rgba(255, 253, 248, 0.18);
  inset: 30px;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(30, 28, 25, 0.66), rgba(30, 28, 25, 0.28), rgba(30, 28, 25, 0.12)),
    linear-gradient(0deg, rgba(30, 28, 25, 0.2), rgba(30, 28, 25, 0.04));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  padding: 58px 0;
}

.hero-copy {
  margin: 26px 0 0;
  max-width: 620px;
  color: rgba(255, 253, 248, 0.9);
  font-size: 18px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 48px;
  min-width: 178px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 12px 22px;
  color: var(--charcoal);
  background: var(--paper);
  font-size: 14px;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease, transform 220ms ease;
  cursor: pointer;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button--light {
  background: var(--paper);
  color: var(--charcoal);
}

.button--ghost-light {
  background: rgba(255, 253, 248, 0.06);
  border-color: rgba(255, 253, 248, 0.5);
  color: var(--paper);
}

.button--ghost-light:hover,
.button--ghost-light:focus-visible {
  background: var(--paper);
  color: var(--charcoal);
}

.button--outline {
  background: transparent;
  border-color: var(--brass);
  color: var(--charcoal);
}

.button--outline:hover,
.button--outline:focus-visible,
.button--dark {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--paper);
}

.button--dark:hover,
.button--dark:focus-visible {
  background: #111;
  border-color: #111;
}

.text-link {
  color: var(--brass);
  display: inline-flex;
  margin-top: 22px;
  border-bottom: 1px solid rgba(168, 135, 83, 0.42);
}

.quick-info {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quick-info-inner {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.quick-item {
  padding: 24px 26px;
  border-right: 1px solid var(--line);
}

.quick-item:first-child {
  border-left: 1px solid var(--line);
}

.quick-label {
  display: block;
  color: var(--brass);
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.quick-value {
  display: block;
  margin-top: 5px;
  color: var(--charcoal);
  font-size: 15px;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1fr);
  gap: 72px;
  align-items: center;
}

.split-layout--price {
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
}

.split-layout--rules {
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
}

.split-layout--access {
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 1fr);
}

.section-copy {
  min-width: 0;
}

.image-card {
  min-height: 500px;
  box-shadow: var(--shadow);
}

.feature-list {
  margin-top: 36px;
  display: grid;
  gap: 14px;
}

.feature-item {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.feature-item:last-child {
  border-bottom: 1px solid var(--line);
}

.feature-item strong {
  display: block;
  color: var(--charcoal);
  font-size: 18px;
  font-weight: 500;
}

.feature-item span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.campaign-section {
  padding-top: 0;
}

.campaign-panel {
  display: grid;
  grid-template-columns: minmax(270px, 0.76fr) minmax(0, 1fr);
  min-height: 320px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.campaign-media {
  min-height: 320px;
  border: 0;
  border-right: 1px solid var(--line);
}

.campaign-copy {
  padding: 52px;
  align-self: center;
}

.campaign-copy p:not(.section-kicker) {
  margin: 20px 0 0;
  color: var(--ink-soft);
}

.news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 40px;
}

.news-list {
  border-top: 1px solid var(--line);
}

.news-item {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.news-date {
  color: var(--brass);
  font-family: var(--font-display);
  font-size: 14px;
}

.news-title {
  color: var(--charcoal);
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.filter-tab {
  min-width: 92px;
  min-height: 42px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.62);
  color: var(--ink-soft);
  padding: 9px 17px;
  cursor: pointer;
  transition: border-color 220ms ease, color 220ms ease, background 220ms ease;
}

.filter-tab[aria-selected="true"],
.filter-tab:hover,
.filter-tab:focus-visible {
  border-color: var(--brass);
  background: var(--paper);
  color: var(--charcoal);
}

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

.schedule-grid {
  min-height: 420px;
}

.therapist-card {
  background: var(--paper);
  border: 1px solid var(--line);
  min-width: 0;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.therapist-card:hover {
  transform: translateY(-3px);
  border-color: rgba(168, 135, 83, 0.45);
  box-shadow: var(--shadow);
}

.therapist-photo {
  aspect-ratio: 4 / 5;
  min-height: auto;
  border: 0;
  border-bottom: 1px solid var(--line);
}

.therapist-body {
  padding: 24px;
}

.therapist-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.therapist-name {
  color: var(--charcoal);
  font-size: 22px;
  font-weight: 500;
}

.therapist-meta {
  color: var(--muted);
  font-size: 13px;
  white-space: nowrap;
}

.therapist-catch,
.therapist-time {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 16px;
}

.tag {
  border: 1px solid rgba(168, 135, 83, 0.28);
  color: var(--brass);
  background: rgba(168, 135, 83, 0.05);
  padding: 3px 9px;
  font-size: 12px;
}

.card-action {
  margin-top: 22px;
  width: 100%;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 48px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.72);
  color: var(--muted);
  text-align: center;
}

.course-list {
  margin-top: 34px;
  display: grid;
  gap: 14px;
}

.course-item {
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.course-item:last-child {
  border-bottom: 1px solid var(--line);
}

.course-item h3 {
  color: var(--charcoal);
  font-size: 18px;
  font-weight: 500;
}

.course-item p {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.price-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 28px 34px;
  box-shadow: var(--shadow);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table caption {
  text-align: left;
  margin-bottom: 14px;
  color: var(--brass);
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-table th,
.price-table td {
  padding: 18px 0;
  border-top: 1px solid var(--line);
  text-align: left;
}

.price-table th {
  color: var(--charcoal);
  font-weight: 500;
}

.price-table td {
  color: var(--ink-soft);
  text-align: right;
}

.note-list {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 14px;
}

.note-list li {
  padding: 9px 0 9px 18px;
  position: relative;
}

.note-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 6px;
  height: 6px;
  border: 1px solid var(--brass);
  border-radius: 50%;
}

.rules-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 32px 36px;
  box-shadow: var(--shadow);
}

.rules-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.rules-list li {
  position: relative;
  padding: 16px 0 16px 24px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}

.rules-list li:first-child {
  padding-top: 0;
}

.rules-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.rules-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 27px;
  width: 7px;
  height: 7px;
  border: 1px solid var(--brass);
  border-radius: 50%;
}

.rules-list li:first-child::before {
  top: 11px;
}

.interior-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.interior-item {
  aspect-ratio: 1 / 1.18;
  min-height: auto;
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.interior-item:hover,
.interior-item:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  outline: none;
}

.access-list {
  margin: 28px 0 0;
  border-top: 1px solid var(--line);
}

.access-list div {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.access-list dt {
  color: var(--brass);
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.access-list dd {
  margin: 0;
  color: var(--ink-soft);
}

.access-note {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.map-placeholder {
  min-height: 430px;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(36, 35, 34, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(36, 35, 34, 0.04) 1px, transparent 1px),
    var(--stone);
  background-size: 34px 34px;
  display: grid;
  place-items: center;
  color: rgba(36, 35, 34, 0.52);
  font-family: var(--font-display);
  letter-spacing: 0.12em;
  text-align: center;
  padding: 30px;
}

.access-side {
  display: grid;
  gap: 18px;
}

.line-qr-card {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.line-qr-card p:not(.section-kicker) {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.line-qr-image {
  min-height: auto;
  aspect-ratio: 1 / 1;
  background-color: var(--paper);
}

.recruit-section {
  padding-top: 0;
}

.recruit-panel {
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.92), rgba(255, 253, 248, 0.78)),
    var(--paper);
  padding: 54px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 36px;
  align-items: center;
  box-shadow: var(--shadow);
}

.recruit-panel p:not(.section-kicker) {
  margin: 20px 0 0;
  color: var(--ink-soft);
}

.recruit-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.benefit {
  border: 1px solid var(--line);
  padding: 8px 12px;
  color: var(--ink-soft);
  background: rgba(248, 245, 238, 0.72);
  font-size: 13px;
}

.final-contact-section {
  padding-top: 0;
}

.final-contact-panel {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 36px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.final-contact-panel h2 {
  font-size: 34px;
}

.final-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer {
  background: #1f1e1c;
  color: rgba(255, 253, 248, 0.78);
  padding: 54px 0;
}

.footer-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.9fr) minmax(220px, 0.6fr);
  gap: 42px;
}

.footer-brand {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 24px;
}

.footer-brand small {
  color: rgba(255, 253, 248, 0.54);
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 18px 0 0;
  color: rgba(255, 253, 248, 0.58);
  font-size: 13px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
}

.footer-nav a,
.footer-info a {
  color: rgba(255, 253, 248, 0.86);
}

.footer-nav a:hover,
.footer-info a:hover {
  color: var(--brass-soft);
}

.footer-info {
  display: grid;
  gap: 8px;
  align-content: start;
  font-size: 14px;
}

.modal,
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  place-items: center;
  padding: 24px;
}

.modal[aria-hidden="false"],
.lightbox[aria-hidden="false"] {
  display: grid;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(31, 30, 28, 0.58);
  backdrop-filter: blur(7px);
}

.modal-panel,
.lightbox-panel {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: min(760px, calc(100vh - 48px));
  overflow: auto;
  background: var(--paper);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.22);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.86);
  color: var(--charcoal);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.modal-body {
  display: grid;
  grid-template-columns: minmax(250px, 0.8fr) minmax(0, 1fr);
  gap: 0;
}

.modal-photo {
  min-height: 610px;
  border: 0;
  border-right: 1px solid var(--line);
}

.modal-copy {
  padding: 54px;
}

.modal-copy h3 {
  font-family: var(--font-display);
  font-size: 36px;
}

.modal-profile {
  margin: 18px 0 0;
  color: var(--muted);
}

.modal-message {
  margin: 26px 0 0;
  color: var(--ink-soft);
}

.modal-schedule {
  margin: 28px 0 0;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}

.lightbox-panel {
  width: min(980px, 100%);
  background: #1f1e1c;
  color: var(--paper);
}

.lightbox-image {
  min-height: min(70vh, 680px);
  border: 0;
}

.lightbox-panel p {
  margin: 0;
  padding: 18px 24px 24px;
  color: rgba(255, 253, 248, 0.75);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .header-contact {
    gap: 12px;
  }

  .header-hours {
    display: none;
  }

  .nav-list a {
    padding: 0 9px;
    font-size: 12px;
  }

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

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

  .recruit-panel {
    grid-template-columns: 1fr;
  }

  .recruit-benefits {
    justify-content: flex-start;
  }

  .final-contact-panel {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 82px;
  }

  body {
    font-size: 15px;
  }

  .container,
  .header-inner,
  .nav-list,
  .quick-info-inner,
  .hero-content {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 76px 0;
  }

  .section-anchor {
    scroll-margin-top: 92px;
  }

  h1 {
    font-size: 39px;
  }

  h2 {
    font-size: 32px;
  }

  .header-inner {
    min-height: 82px;
  }

  .brand-name {
    font-size: 22px;
  }

  .header-contact {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    top: 82px;
    left: 0;
    right: 0;
    max-height: calc(100vh - 82px);
    overflow: auto;
    background: rgba(255, 253, 248, 0.98);
    border-bottom: 1px solid var(--line);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 260ms ease, opacity 260ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-list {
    min-height: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 12px 0 20px;
  }

  .nav-list li {
    border-bottom: 1px solid var(--line);
  }

  .nav-list a {
    width: 100%;
    min-height: 54px;
    justify-content: flex-start;
    padding: 0 14px;
  }

  .hero {
    min-height: 620px;
    height: auto;
  }

  .hero-content {
    padding: 118px 0 96px;
  }

  .quick-info-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-item,
  .quick-item:first-child {
    border-left: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 18px 16px;
  }

  .split-layout,
  .split-layout--price,
  .split-layout--rules,
  .split-layout--access,
  .campaign-panel,
  .news-layout,
  .modal-body,
  .footer-layout {
    grid-template-columns: 1fr;
  }

  .split-layout {
    gap: 38px;
  }

  .image-card {
    min-height: 380px;
  }

  .campaign-copy,
  .modal-copy,
  .recruit-panel {
    padding: 34px;
  }

  .campaign-media,
  .modal-photo {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .modal-photo {
    min-height: 430px;
  }

  .news-layout {
    gap: 26px;
  }

  .news-layout .button {
    width: max-content;
  }

  .map-placeholder {
    min-height: 330px;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 62px 0;
  }

  h1 {
    font-size: 33px;
  }

  h2 {
    font-size: 29px;
  }

  .hero {
    min-height: 590px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .button-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .final-contact-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .button,
  .news-layout .button {
    width: 100%;
  }

  .quick-info-inner,
  .therapist-grid,
  .interior-grid,
  .nav-list {
    grid-template-columns: 1fr;
  }

  .news-item,
  .access-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .therapist-body,
  .price-card,
  .campaign-copy,
  .modal-copy,
  .recruit-panel {
    padding: 26px;
  }

  .filter-tab {
    flex: 1 1 calc(50% - 10px);
  }

  .line-qr-card {
    grid-template-columns: 1fr;
  }

  .line-qr-image {
    width: min(220px, 100%);
  }

  .modal,
  .lightbox {
    padding: 14px;
  }

  .modal-panel,
  .lightbox-panel {
    max-height: calc(100vh - 28px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ====================== 秘月专属优化 ====================== */
/* 更奢华的月光金色调 + 柔和光影 */
:root {
  --brass: #c9a66b;           /* 更温暖的高级金 */
  --brass-soft: #e8d9b8;
  --charcoal: #1f1e1c;
  --shadow: 0 24px 68px rgba(31, 30, 28, 0.12);
}

.hero {
  box-shadow: inset 0 0 180px rgba(31, 30, 28, 0.45);
}

.button {
  transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
}

.button:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 28px rgba(201, 166, 107, 0.25);
}

.therapist-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 48px rgba(31, 30, 28, 0.15);
}

.image-slot::before {
  border-color: rgba(255, 253, 248, 0.55);
}

/* 移动端更舒适的间距 */
@media (max-width: 860px) {
  .section {
    padding: 82px 0;
  }
}
