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

:root {
  --ink: #111111;
  --charcoal: #242424;
  --text: #4b4844;
  --muted: #837d75;
  --line: #e3ded6;
  --paper: #f7f5f0;
  --white: #ffffff;
  --gold: #b89a3a;
  --gold-dark: #987b20;
  --sage: #8c9988;
  --shadow: 0 22px 70px rgba(25, 22, 18, 0.14);
  --radius: 8px;
  --serif: "Cormorant Garamond", "Noto Serif JP", serif;
  --jp-serif: "Noto Serif JP", serif;
  --sans: "Noto Sans JP", sans-serif;
  --max: 1180px;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--paper);
  font-family: var(--jp-serif);
  line-height: 1.9;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

body.intro-active {
  overflow: hidden;
}

body.intro-active .site-header,
body.intro-active main,
body.intro-active .site-footer {
  opacity: 0;
  transform: scale(1.015);
}

body.site-ready .site-header,
body.site-ready main,
body.site-ready .site-footer {
  animation: siteReveal 1.05s ease forwards;
}

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

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

button {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-weight: 500;
  line-height: 1.25;
}

.container {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 110px 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  width: 100%;
  min-height: 64px;
  padding: 0 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 1px 0 rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(12px);
}

.intro-loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #ece8df;
  animation: introFade 0.9s ease 2.75s forwards;
}

.intro-film {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.intro-film::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247, 245, 240, 0.92), rgba(247, 245, 240, 0.54), rgba(17, 17, 17, 0.18)),
    linear-gradient(0deg, rgba(247, 245, 240, 0.64), rgba(247, 245, 240, 0.2));
}

.intro-film img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.16) translateX(4%);
  animation: introImageMove 3.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.intro-film span {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(105deg, transparent 0 28%, rgba(255, 255, 255, 0.48) 40%, transparent 52% 100%);
  transform: translateX(-120%);
  animation: introLight 2.1s ease 0.35s forwards;
}

.intro-logo {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 34px 42px;
  color: var(--ink);
  text-align: center;
  transform: translateY(12px) scale(0.96);
  animation: logoRise 2.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.intro-logo .brand-mark {
  width: 72px;
  height: 36px;
  transform: scale(1.5);
}

.intro-logo strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(38px, 8vw, 92px);
  font-weight: 500;
  line-height: 0.9;
}

.intro-logo small {
  color: var(--gold-dark);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
}

.intro-line {
  position: absolute;
  z-index: 2;
  bottom: 13%;
  width: min(280px, 58vw);
  height: 1px;
  overflow: hidden;
  background: rgba(184, 154, 58, 0.22);
}

.intro-line::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--gold);
  transform-origin: left;
  animation: introLine 2.45s ease forwards;
}

.brand,
.header-actions,
.site-nav,
.site-footer,
.intro-strip,
.hero-copy,
.reserve-panel,
.access-grid,
.section-head,
.about-grid,
.therapist-grid {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  min-width: 180px;
}

.brand-mark {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 18px;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 4px;
  background: var(--gold);
  transform-origin: bottom;
}

.brand-mark::before {
  left: 6px;
  height: 18px;
  box-shadow: 7px -5px 0 var(--gold), 14px -8px 0 var(--gold), 21px -5px 0 var(--gold);
  transform: skewX(-18deg);
}

.brand-mark::after {
  right: 2px;
  height: 15px;
  transform: skewX(18deg);
}

.brand-text {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.site-nav {
  justify-content: center;
  gap: 28px;
}

.site-nav a {
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
}

.header-actions {
  justify-content: end;
  gap: 12px;
}

.shop-link,
.reserve-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 0;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
}

.shop-link {
  color: var(--white);
  background: var(--gold);
}

.reserve-link {
  color: var(--gold-dark);
  border: 1px solid var(--gold);
  background: var(--white);
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
}

.menu-button span {
  display: block;
  width: 28px;
  height: 1px;
  margin: 8px auto;
  background: var(--gold);
}

.mobile-nav {
  position: fixed;
  inset: 64px 0 auto 0;
  z-index: 45;
  display: grid;
  gap: 0;
  padding: 22px 28px 30px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 60px rgba(20, 18, 16, 0.16);
  transform: translateY(-120%);
  transition: transform 0.26s ease;
}

.mobile-nav.open {
  transform: translateY(0);
}

.mobile-nav a {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 700;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  padding-top: 64px;
  overflow: hidden;
  background: #e7e7e5;
}

.hero-image {
  position: absolute;
  inset: 64px 0 0 0;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(232, 232, 228, 0.98) 0%, rgba(232, 232, 228, 0.82) 42%, rgba(232, 232, 228, 0.12) 78%);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  transform: scale(1.08);
  animation: heroCinematic 18s ease-in-out infinite alternate;
}

.hero-copy {
  position: relative;
  z-index: 1;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: min(100%, var(--max));
  min-height: calc(100svh - 64px);
  margin: 0 auto;
  padding: 74px 32px 60px;
}

.hero-copy > * {
  opacity: 0;
  transform: translateY(20px);
  animation: heroTextIn 0.9s ease forwards;
}

.hero-copy > *:nth-child(1) { animation-delay: 3.05s; }
.hero-copy > *:nth-child(2) { animation-delay: 3.2s; }
.hero-copy > *:nth-child(3) { animation-delay: 3.35s; }
.hero-copy > *:nth-child(4) { animation-delay: 3.5s; }
.hero-copy > *:nth-child(5) { animation-delay: 3.65s; }

.crest {
  display: block;
  width: 116px;
  height: 58px;
  margin-bottom: 34px;
  background:
    linear-gradient(70deg, transparent 42%, var(--gold) 43%, var(--gold) 48%, transparent 49%) 0 100% / 14px 52px repeat-x;
  opacity: 0.9;
}

.hero-kicker,
.hero-lead,
.section-label,
.text-link,
.primary-button,
.note,
.intro-strip,
.menu-card span,
.menu-card strong,
.concern-card span,
.flow-list span,
.site-footer {
  font-family: var(--sans);
}

.hero-kicker {
  color: var(--gold);
  font-size: 22px;
  font-weight: 700;
}

.hero h1 {
  margin-top: 14px;
  font-family: var(--serif);
  font-size: clamp(72px, 12vw, 160px);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
  margin-top: 0.28em;
  margin-left: 0.08em;
  color: var(--gold-dark);
  font-family: var(--jp-serif);
  font-size: 0.18em;
  line-height: 1.2;
}

.hero-lead {
  margin-top: 36px;
  color: var(--gold-dark);
  font-size: clamp(20px, 3vw, 34px);
  font-weight: 700;
}

.hero-text {
  max-width: 550px;
  margin-top: 18px;
  color: #7b7467;
  font-size: 17px;
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.intro-strip div {
  padding: 26px 22px;
  border-right: 1px solid var(--line);
  color: var(--ink);
  font-weight: 700;
  text-align: center;
}

.intro-strip span {
  display: block;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
}

.about-grid,
.therapist-grid,
.access-grid {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 72px;
}

.about-visual img,
.therapist-photo img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.section-label::before {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--gold);
}

.section-copy h2,
.center-heading h2,
.section-head h2,
.therapist-copy h2,
.reserve-panel h2,
.access-card h2 {
  font-size: clamp(34px, 5vw, 62px);
}

.section-copy p,
.center-heading p,
.therapist-copy p,
.reserve-panel p {
  margin-top: 22px;
  color: var(--muted);
  font-size: 16px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 30px;
  color: var(--gold-dark);
  font-weight: 700;
}

.text-link::after {
  content: "";
  width: 72px;
  height: 1px;
  margin-left: 16px;
  background: var(--gold);
}

.image-marquee {
  overflow: hidden;
  padding: 46px 0;
  background: var(--white);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 34s linear infinite;
}

.marquee-track img {
  width: 300px;
  height: 300px;
  margin-right: 22px;
  object-fit: cover;
  border-radius: var(--radius);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.concerns,
.flow,
.access {
  background: var(--white);
}

.center-heading {
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}

.center-heading .section-label {
  justify-content: center;
}

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

.concern-card {
  min-height: 150px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  font-size: 21px;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.concern-card:hover {
  transform: translateY(-7px);
  border-color: var(--gold);
}

.concern-card span {
  display: block;
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
}

.section-head {
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 44px;
}

.section-head p {
  max-width: 360px;
  color: var(--muted);
}

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

.menu-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 80px rgba(25, 22, 18, 0.18);
}

.menu-card:hover img {
  transform: scale(1.04);
}

.menu-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.65s ease;
}

.menu-card div {
  padding: 28px;
}

.menu-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
}

.menu-card h3 {
  margin-top: 12px;
  font-size: 28px;
}

.menu-card p {
  margin-top: 14px;
  color: var(--muted);
}

.menu-card strong {
  display: block;
  margin-top: 22px;
  color: var(--ink);
}

.therapist {
  color: var(--white);
  background: var(--charcoal);
}

.therapist h2,
.therapist h3 {
  color: var(--white);
}

.therapist-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.therapist-copy ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.therapist-copy li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

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

.voice-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.voice-card p {
  color: var(--ink);
  font-size: 18px;
}

.voice-card span {
  display: block;
  margin-top: 24px;
  color: var(--gold);
}

.note {
  margin-top: 26px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  padding: 0;
  margin: 0;
  list-style: none;
  background: var(--line);
}

.flow-list li {
  min-height: 220px;
  padding: 28px 24px;
  background: var(--white);
}

.flow-list span {
  color: var(--gold);
  font-weight: 700;
}

.flow-list h3 {
  margin-top: 30px;
  font-size: 24px;
}

.flow-list p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

.reserve {
  padding: 86px 0;
  background: var(--charcoal);
}

.reserve-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: 40px;
  padding: 46px;
  border: 1px solid rgba(184, 154, 58, 0.44);
  color: var(--white);
  background: linear-gradient(135deg, rgba(184, 154, 58, 0.18), rgba(255, 255, 255, 0.04));
}

.reserve-panel h2,
.reserve-panel p {
  color: var(--white);
}

.reserve-info {
  margin: 28px 0 0;
}

.reserve-info div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.reserve-info dt,
.reserve-info dd {
  margin: 0;
}

.reserve-info dt {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
}

.reserve-info dd {
  color: var(--white);
}

.reserve-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
}

.reserve-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
}

.reserve-form input,
.reserve-form select,
.reserve-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 13px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
}

.reserve-form textarea {
  resize: vertical;
}

.reserve-form .is-wide,
.reserve-form button {
  grid-column: 1 / -1;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 58px;
  padding: 0 32px;
  color: var(--white);
  background: var(--gold);
  font-weight: 700;
}

.access-grid {
  grid-template-columns: 1fr 0.9fr;
  align-items: stretch;
}

.access-card {
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.access-card dl {
  margin: 34px 0 0;
}

.access-card dl > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.access-card dt {
  color: var(--gold-dark);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
}

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

.map-placeholder {
  display: grid;
  place-content: center;
  min-height: 460px;
  padding: 38px;
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(rgba(17, 17, 17, 0.52), rgba(17, 17, 17, 0.46)),
    url("../assets/images/access-reception-japanese.png") center / cover;
  text-align: center;
}

.map-placeholder span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 68px;
}

.site-footer {
  justify-content: space-between;
  gap: 24px;
  padding: 34px 32px;
  color: rgba(255, 255, 255, 0.7);
  background: var(--ink);
}

.site-footer div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-footer strong {
  color: var(--white);
}

.site-footer p {
  font-size: 12px;
}

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

.fade-in {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(42px);
  transition: opacity 0.9s ease, transform 0.9s ease, filter 0.9s ease;
}

.fade-in.visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.about-visual.fade-in,
.therapist-copy.fade-in,
.access-card.fade-in {
  transform: translateX(-42px);
}

.section-copy.fade-in,
.therapist-photo.fade-in,
.map-placeholder.fade-in {
  transform: translateX(42px);
}

.about-visual.fade-in.visible,
.therapist-copy.fade-in.visible,
.access-card.fade-in.visible,
.section-copy.fade-in.visible,
.therapist-photo.fade-in.visible,
.map-placeholder.fade-in.visible {
  transform: translateX(0);
}

.concern-card.fade-in,
.menu-card.fade-in,
.voice-card.fade-in,
.flow-list li.fade-in {
  transform: translateY(56px) scale(0.96);
}

.concern-card.fade-in.visible,
.menu-card.fade-in.visible,
.voice-card.fade-in.visible,
.flow-list li.fade-in.visible {
  transform: translateY(0) scale(1);
}

.concern-card:nth-child(2),
.menu-card:nth-child(2),
.voice-card:nth-child(2),
.flow-list li:nth-child(2) {
  transition-delay: 0.08s;
}

.concern-card:nth-child(3),
.menu-card:nth-child(3),
.voice-card:nth-child(3),
.flow-list li:nth-child(3) {
  transition-delay: 0.16s;
}

.concern-card:nth-child(4),
.flow-list li:nth-child(4) {
  transition-delay: 0.24s;
}

.concern-card:nth-child(5),
.flow-list li:nth-child(5) {
  transition-delay: 0.32s;
}

.concern-card:nth-child(6) {
  transition-delay: 0.4s;
}

.scroll-move {
  will-change: transform;
}

@keyframes introFade {
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

@keyframes introImageMove {
  0% {
    transform: scale(1.18) translateX(5%);
    filter: saturate(0.9) brightness(1.08);
  }
  100% {
    transform: scale(1.04) translateX(-2%);
    filter: saturate(1) brightness(1);
  }
}

@keyframes introLight {
  to {
    transform: translateX(120%);
  }
}

@keyframes logoRise {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.94);
  }
  30%, 74% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-12px) scale(1.04);
  }
}

@keyframes introLine {
  0% {
    transform: scaleX(0);
  }
  74% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
    transform-origin: right;
  }
}

@keyframes siteReveal {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes heroCinematic {
  0% {
    transform: scale(1.08) translate3d(0, 0, 0);
  }
  100% {
    transform: scale(1.16) translate3d(-2.4%, -1.2%, 0);
  }
}

@keyframes heroTextIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .site-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: auto 1fr;
  }

  .menu-button {
    display: block;
  }

  .about-grid,
  .therapist-grid,
  .access-grid {
    grid-template-columns: 1fr;
  }

  .concern-grid,
  .menu-grid,
  .voice-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

@media (max-width: 720px) {
  .container {
    padding: 0 20px;
  }

  .section {
    padding: 74px 0;
  }

  .site-header {
    min-height: 60px;
    padding: 0 16px;
  }

  .brand-text {
    font-size: 18px;
  }

  .shop-link,
  .reserve-link {
    display: none;
  }

  .mobile-nav {
    inset: 60px 0 auto 0;
  }

  .hero {
    min-height: 92svh;
    padding-top: 60px;
  }

  .hero-image {
    inset: 60px 0 0 0;
  }

  .hero-image::after {
    background: linear-gradient(0deg, rgba(232, 232, 228, 0.96) 0%, rgba(232, 232, 228, 0.72) 52%, rgba(232, 232, 228, 0.1) 100%);
  }

  .hero-image img {
    object-position: 60% center;
    animation-duration: 14s;
  }

  .hero-copy {
    justify-content: end;
    min-height: calc(92svh - 60px);
    padding: 58px 20px 44px;
  }

  .crest {
    width: 82px;
    height: 42px;
    margin-bottom: 22px;
  }

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

  .hero h1 {
    font-size: clamp(52px, 18vw, 72px);
    line-height: 1;
  }

  .hero-lead {
    margin-top: 24px;
    font-size: 20px;
  }

  .hero-text {
    font-size: 14px;
  }

  .intro-strip,
  .concern-grid,
  .menu-grid,
  .voice-grid,
  .flow-list {
    grid-template-columns: 1fr;
  }

  .about-visual.fade-in,
  .therapist-copy.fade-in,
  .access-card.fade-in,
  .section-copy.fade-in,
  .therapist-photo.fade-in,
  .map-placeholder.fade-in {
    transform: translateY(42px);
  }

  .about-visual.fade-in.visible,
  .therapist-copy.fade-in.visible,
  .access-card.fade-in.visible,
  .section-copy.fade-in.visible,
  .therapist-photo.fade-in.visible,
  .map-placeholder.fade-in.visible {
    transform: translateY(0);
  }

  .intro-strip div {
    padding: 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .about-visual img,
  .therapist-photo img {
    min-height: 340px;
  }

  .marquee-track img {
    width: 220px;
    height: 220px;
  }

  .section-head,
  .reserve-panel,
  .site-footer,
  .site-footer div {
    display: block;
  }

  .section-head p {
    margin-top: 16px;
  }

  .reserve-panel {
    padding: 28px;
  }

  .reserve-form {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .reserve-info div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .primary-button {
    width: 100%;
    margin-top: 28px;
  }

  .access-card {
    padding: 28px;
  }

  .access-card dl > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

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

  .map-placeholder span {
    font-size: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  body.intro-active {
    overflow: auto;
  }

  .intro-loader {
    display: none;
  }

  body.intro-active .site-header,
  body.intro-active main,
  body.intro-active .site-footer {
    opacity: 1;
    transform: none;
  }
}

