:root {
  --bg: #f5f8f7;
  --bg-alt: #ecf5f4;
  --ink: #1a2535;
  --muted: #5f6f7d;
  --muted-strong: #2d3a48;
  --accent: #1aa8a0;
  --paper: #ffffff;
  --line: rgba(26, 168, 160, 0.12);
  --line-dark: rgba(255, 255, 255, 0.12);
  --content: min(1200px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", "Yu Gothic UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(26, 168, 160, 0.08), transparent 30%),
    radial-gradient(circle at right center, rgba(247, 166, 0, 0.06), transparent 22%),
    linear-gradient(180deg, #f8fbfb 0%, var(--bg) 38%, #ffffff 100%);
  line-height: 1.8;
}

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

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

.showcase {
  overflow-x: hidden;
}

.shell {
  position: relative;
}

.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  transition: background-color 0.35s ease, backdrop-filter 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
  border-bottom: 1px solid transparent;
}

.site-nav__inner {
  width: var(--content);
  margin: 0 auto;
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-lockup strong {
  font-family: "Shippori Mincho", serif;
  font-size: 1.25rem;
  color: rgba(245, 242, 237, 0.95);
  letter-spacing: 0.12em;
  font-weight: 400;
}

.brand-lockup span {
  font-size: 0.6rem;
  color: rgba(245, 242, 237, 0.55);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: rgba(245, 242, 237, 0.76);
  transition: color 0.25s ease, opacity 0.25s ease;
}

.nav-utility {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-call,
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.55rem 1.25rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
}

.nav-call {
  color: rgba(245, 242, 237, 0.92);
  border: 1px solid rgba(245, 242, 237, 0.38);
  background: rgba(245, 242, 237, 0.08);
}

.nav-cta {
  color: #f5f2ed;
  background: #1c1917;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(245, 242, 237, 0.28);
  background: rgba(245, 242, 237, 0.08);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  background: rgba(245, 242, 237, 0.9);
  transition: transform 0.25s ease, opacity 0.25s ease, background-color 0.25s ease;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12, 31, 47, 0.62) 0%, rgba(12, 31, 47, 0.34) 55%, rgba(12, 31, 47, 0.42) 100%);
  z-index: 1;
}

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

.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.64);
}

.hero-body {
  position: relative;
  z-index: 2;
  width: var(--content);
  margin: 0 auto;
  padding: 120px 0 72px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 2.6rem;
  align-items: center;
}

.eyebrow,
.section-head__label {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.eyebrow {
  color: rgba(245, 242, 237, 0.74);
}

.eyebrow::before,
.section-head__label::before {
  content: "";
  width: 32px;
  height: 1px;
}

.eyebrow::before {
  background: rgba(245, 242, 237, 0.4);
}

.hero-copy {
  max-width: 720px;
}

.hero-title {
  margin: 1.5rem 0 0;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(2.6rem, 6vw, 4.75rem);
  line-height: 1.28;
  letter-spacing: 0.06em;
  color: #f5f2ed;
  font-weight: 400;
  white-space: pre-line;
}

.hero-lead {
  max-width: 460px;
  margin: 1.5rem 0 0;
  font-size: 1rem;
  line-height: 1.95;
  color: rgba(245, 242, 237, 0.84);
  font-weight: 300;
}

.hero-stats {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(245, 242, 237, 0.16);
}

.stat-item {
  min-width: 120px;
  text-align: left;
}

.stat-num {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: #4ec9c1;
}

.stat-label {
  margin-top: 0.35rem;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: rgba(245, 242, 237, 0.7);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.hero-badges span {
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(245, 242, 237, 0.18);
  background: rgba(245, 242, 237, 0.08);
  color: rgba(245, 242, 237, 0.78);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 2rem;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  transition: all 0.25s ease;
}

.btn-primary {
  background: #f5f2ed;
  color: #1c1917;
}

.btn-secondary {
  border: 1px solid rgba(245, 242, 237, 0.5);
  color: #f5f2ed;
  background: transparent;
}

.btn-submit {
  margin-top: 0.5rem;
  background: var(--accent);
  color: #f5f2ed;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1.75rem;
}

.hero-tags span {
  padding: 0.45rem 0.75rem;
  font-size: 0.75rem;
  color: rgba(245, 242, 237, 0.78);
  border: 1px solid rgba(245, 242, 237, 0.22);
  background: rgba(245, 242, 237, 0.06);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img-main {
  width: 100%;
  max-width: 430px;
  height: 520px;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.hero-img-sub {
  position: absolute;
  bottom: -18px;
  left: -30px;
  width: 200px;
  height: 240px;
  object-fit: cover;
  border-radius: 18px;
  border: 5px solid #fff;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
}

.hero-float-card {
  position: absolute;
  top: 24px;
  left: -40px;
  background: #fff;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.12);
  min-width: 170px;
}

.hero-float-card .fc-label {
  font-size: 10px;
  color: var(--muted);
  margin-bottom: 4px;
}

.hero-float-card .fc-value {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.hero-float-card .fc-sub {
  font-size: 11px;
  color: var(--ink);
  margin-top: 4px;
  font-weight: 500;
}

.hero-badge-float {
  position: absolute;
  bottom: 160px;
  right: -16px;
  background: var(--accent);
  color: #fff;
  border-radius: 14px;
  padding: 12px 16px;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 8px 24px rgba(26, 168, 160, 0.35);
  line-height: 1.4;
}

.hero-badge-float strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  margin-bottom: 2px;
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  z-index: 3;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(245, 242, 237, 0.56);
}

.scroll-indicator span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-indicator__line {
  width: 1px;
  height: 48px;
  background: rgba(245, 242, 237, 0.22);
  overflow: hidden;
  position: relative;
}

.scroll-indicator__line::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 40%;
  background: rgba(245, 242, 237, 0.72);
  animation: scrollPulse 2.1s ease-in-out infinite;
}

.section {
  padding: 8rem 0;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.section--soft {
  background: var(--bg);
}

.section--ink {
  background: #1c1917;
  color: #f5f2ed;
}

.wrap,
.footer-grid {
  width: var(--content);
  margin: 0 auto;
}

.section-head {
  max-width: 720px;
  margin-bottom: 3rem;
}

.section-head__label {
  color: var(--accent);
}

.section-head__label::before {
  background: rgba(26, 168, 160, 0.55);
}

.section-head h2 {
  margin: 1rem 0 0;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(1.85rem, 3.5vw, 2.8rem);
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: 400;
}

.section-head p {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 2;
  font-weight: 300;
}

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

.split--reverse {
  grid-template-columns: 1fr 1.2fr;
}

.split--service,
.split--flow {
  margin-top: 5rem;
  gap: 4rem;
}

.image-frame {
  position: relative;
}

.image-frame img {
  object-fit: cover;
  display: block;
}

.image-frame::after {
  content: "";
  position: absolute;
  right: -1.5rem;
  bottom: -1.5rem;
  width: 60%;
  height: 40%;
  border: 1px solid rgba(26, 168, 160, 0.28);
  pointer-events: none;
}

.image-frame img,
.image-frame--service img {
  width: 100%;
  height: 480px;
}

.service-copy h3 {
  font-family: "Shippori Mincho", serif;
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: 400;
  white-space: pre-line;
}

.service-copy p,
.prose-lead {
  color: var(--muted-strong);
  font-size: 0.88rem;
  line-height: 2;
  font-weight: 300;
}

.service-copy p + p,
.prose-lead + .prose-lead {
  margin-top: 1rem;
}

.signature {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.signature strong {
  display: block;
  font-family: "Shippori Mincho", serif;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  font-weight: 400;
}

.signature span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.12em;
}

.symptom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1px;
  background: rgba(26, 168, 160, 0.12);
}

.symptom-grid--dense {
  margin-bottom: 2rem;
}

.symptom-card {
  background: var(--bg-alt);
  padding: 1.75rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.symptom-card i {
  color: var(--accent);
  font-style: normal;
  font-size: 0.6rem;
}

.symptom-card span {
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.card-grid {
  display: grid;
  gap: 1.5rem;
}

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

.reason-grid,
.featured-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}

.featured-grid {
  grid-template-columns: repeat(4, 1fr);
}

.reason-card,
.feature-card {
  position: relative;
  background: #fff;
  padding: 2rem 1.7rem;
  border: 1px solid rgba(28, 25, 23, 0.08);
  box-shadow: 0 18px 40px rgba(28, 25, 23, 0.04);
}

.reason-card__num {
  display: inline-block;
  margin-bottom: 1rem;
  color: rgba(26, 168, 160, 0.62);
  font-family: "Shippori Mincho", serif;
  font-size: 2.2rem;
  line-height: 1;
}

.reason-card h3,
.feature-card h3 {
  margin: 0;
  font-family: "Shippori Mincho", serif;
  font-size: 1.12rem;
  line-height: 1.65;
  letter-spacing: 0.04em;
  font-weight: 400;
}

.reason-card p,
.feature-card p {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.95;
}

.feature-card span {
  display: inline-flex;
  margin-top: 1.2rem;
  color: var(--accent);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.proof-band p {
  margin: 0;
  padding: 1.25rem 1.35rem;
  background: #fff;
  border-left: 3px solid var(--accent);
  color: var(--muted-strong);
  font-size: 0.82rem;
  line-height: 1.9;
}

.card {
  background: #f5f2ed;
  padding: 2.5rem 2rem;
  text-align: center;
}

.card__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 1rem;
  background: var(--accent);
  color: #f5f2ed;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
}

.card h3 {
  margin: 0;
  font-family: "Shippori Mincho", serif;
  font-size: 1.15rem;
  line-height: 1.55;
  letter-spacing: 0.05em;
  font-weight: 400;
}

.card p {
  margin: 0.75rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.9;
  font-weight: 300;
}

.check-list {
  display: grid;
  gap: 0.85rem;
  margin: 1.5rem 0 0;
  padding: 0;
}

.check-list li {
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  line-height: 1.95;
}

.check-list li::before {
  content: "◆";
  color: var(--accent);
  font-size: 0.6rem;
  line-height: 2.1;
}

.pricing-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.pricing-note {
  color: rgba(245, 242, 237, 0.62);
  line-height: 1.95;
  font-size: 0.88rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 700px;
}

.plan {
  position: relative;
  border: 1px solid rgba(245, 242, 237, 0.12);
  padding: 2.5rem;
  background: transparent;
}

.plan--accent {
  border-color: var(--accent);
  background: rgba(123, 140, 122, 0.08);
}

.plan__label {
  position: absolute;
  top: -0.75rem;
  left: 1.5rem;
  background: var(--accent);
  padding: 0.2rem 0.75rem;
  color: #f5f2ed;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
}

.plan__time {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.plan__time strong {
  font-family: "Shippori Mincho", serif;
  font-size: 2.5rem;
  color: #f5f2ed;
  font-weight: 400;
}

.plan__time span,
.plan__price small {
  font-size: 0.75rem;
  color: rgba(245, 242, 237, 0.5);
}

.plan__price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
}

.plan__price strong {
  font-family: "Shippori Mincho", serif;
  font-size: 1.6rem;
  color: #f5f2ed;
  font-weight: 400;
}

.plan h3 {
  font-family: "Shippori Mincho", serif;
  font-size: 1.05rem;
  line-height: 1.6;
  font-weight: 400;
}

.plan p {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: rgba(245, 242, 237, 0.6);
  line-height: 1.8;
}

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

.flow-step {
  padding: 2rem;
  border-left: 1px solid rgba(28, 25, 23, 0.1);
}

.flow-step:first-child {
  border-left: none;
}

.flow-step__num {
  font-family: "Shippori Mincho", serif;
  font-size: 3rem;
  color: rgba(123, 140, 122, 0.22);
  line-height: 1;
}

.flow-step h3 {
  margin: 0.75rem 0 0;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
}

.flow-step p {
  margin: 0.75rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.9;
}

.voice-stack {
  display: grid;
  gap: 1rem;
}

.voice-card {
  padding: 1.5rem 1.6rem;
  border: 1px solid rgba(26, 168, 160, 0.12);
  background: rgba(245, 242, 237, 0.84);
}

.voice-card strong {
  display: block;
  margin-bottom: 0.7rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--accent);
}

.voice-card p {
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.84rem;
  line-height: 1.95;
}

.reservation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.reservation-card {
  background: #f5f2ed;
  padding: 2.5rem 2rem;
  text-align: center;
}

.reservation-card__icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.reservation-card__label {
  margin: 0 0 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--accent);
}

.reservation-card h3 {
  margin: 0;
  font-family: "Shippori Mincho", serif;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  font-weight: 400;
}

.reservation-card p:last-child {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 300;
}

.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.address-block {
  margin-bottom: 2.5rem;
}

.meta-label {
  margin: 0 0 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--accent);
}

.address-block p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink);
  line-height: 1.9;
  font-weight: 300;
}

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

.hours-table td {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(28, 25, 23, 0.08);
  font-size: 0.85rem;
  font-weight: 300;
}

.hours-table td:first-child {
  padding-right: 2rem;
}

.map-frame {
  background: var(--bg-alt);
  padding: 0.5rem;
  margin-top: 4rem;
}

.map-placeholder {
  display: grid;
  place-items: center;
  min-height: 380px;
  background: linear-gradient(135deg, #ddd4c8 0%, #eae2d8 100%);
  color: var(--muted);
  letter-spacing: 0.16em;
  font-size: 0.85rem;
}

.map-visual {
  width: 100%;
  min-height: 380px;
  object-fit: cover;
}

.contact-wrap {
  max-width: 700px;
}

.contact-form-shell {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  color: rgba(245, 242, 237, 0.55);
  letter-spacing: 0.12em;
}

.input-surface {
  width: 100%;
  min-height: 52px;
  display: flex;
  align-items: center;
  padding: 0.875rem 1rem;
  background: rgba(245, 242, 237, 0.06);
  border: 1px solid rgba(245, 242, 237, 0.12);
  color: rgba(245, 242, 237, 0.38);
  font-size: 0.88rem;
}

.input-surface--textarea {
  min-height: 150px;
  align-items: flex-start;
}

.contact-cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.gallery-section {
  background: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 16px;
  margin-top: 48px;
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.gallery-item.big {
  grid-row: 1 / 3;
  grid-column: 1 / 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.footer {
  background: #141210;
  padding: 3rem 0;
}

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

body.is-scrolled .site-nav {
  background: rgba(245, 242, 237, 0.96);
  backdrop-filter: blur(8px);
  border-bottom-color: rgba(28, 25, 23, 0.08);
}

body.is-scrolled .brand-lockup strong {
  color: #1c1917;
}

body.is-scrolled .brand-lockup span,
body.is-scrolled .nav-links a {
  color: #1c1917;
  opacity: 0.78;
}

body.is-scrolled .nav-links a:hover {
  opacity: 1;
}

body.is-scrolled .nav-call {
  color: #1c1917;
  border-color: rgba(28, 25, 23, 0.16);
  background: rgba(28, 25, 23, 0.02);
}

body.is-scrolled .nav-cta {
  background: #1c1917;
  color: #f5f2ed;
}

body.is-scrolled .nav-toggle {
  border-color: rgba(28, 25, 23, 0.16);
  background: rgba(28, 25, 23, 0.02);
}

body.is-scrolled .nav-toggle span {
  background: #1c1917;
}

body.menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

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

body.menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@keyframes scrollPulse {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(48px);
  }
  100% {
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.is-visible,
  .site-nav,
  .nav-links a,
  .nav-call,
  .nav-cta,
  .nav-toggle span,
  .btn,
  .scroll-indicator__line::after {
    transition: none !important;
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

.footer strong {
  display: block;
  font-family: "Shippori Mincho", serif;
  font-size: 1rem;
  color: rgba(245, 242, 237, 0.75);
  letter-spacing: 0.12em;
  font-weight: 400;
}

.footer p,
.footer small {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.72rem;
  color: rgba(245, 242, 237, 0.3);
  letter-spacing: 0.08em;
}

.credits {
  display: grid;
  gap: 6px;
  font-size: 0.72rem;
  color: rgba(245, 242, 237, 0.4);
}

.credits strong {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.72rem;
  color: rgba(245, 242, 237, 0.68);
  letter-spacing: 0.08em;
}

.credits a {
  text-decoration: underline;
}

@media (max-width: 980px) {
  .hero-body,
  .split,
  .split--reverse,
  .pricing-shell,
  .access-grid {
    grid-template-columns: 1fr;
  }

  .reason-grid,
  .featured-grid,
  .proof-band,
  .card-grid--3,
  .reservation-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gallery-item.big {
    grid-row: auto;
    grid-column: auto;
  }

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

@media (max-width: 720px) {
  :root {
    --content: min(100% - 24px, 1100px);
  }

  .site-nav__inner {
    position: relative;
    flex-wrap: wrap;
    gap: 14px;
    padding: 18px 0;
  }

  .nav-links {
    display: none;
    order: 3;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 0 0;
  }

  body.menu-open .nav-links {
    display: flex;
  }

  .nav-links a {
    padding: 0.95rem 1rem;
    color: #1c1917;
    background: rgba(245, 242, 237, 0.96);
    border-top: 1px solid rgba(28, 25, 23, 0.08);
  }

  .nav-utility {
    margin-left: auto;
    width: auto;
    gap: 0.5rem;
  }

  .nav-call,
  .nav-cta {
    min-width: 72px;
    padding-inline: 0.9rem;
    font-size: 0.68rem;
  }

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

  .hero {
    min-height: auto;
  }

  .hero-body {
    grid-template-columns: 1fr;
    padding: 120px 0 56px;
  }

  .hero-visual {
    display: none;
  }

  .section {
    padding: 5.5rem 0;
  }

  .card-grid--3,
  .reason-grid,
  .featured-grid,
  .proof-band,
  .reservation-grid,
  .flow-grid,
  .access-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-badges,
  .contact-cta-row {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .image-frame img,
  .image-frame--service img {
    height: 360px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item.big {
    grid-row: auto;
    grid-column: auto;
  }

  .map-frame {
    margin-top: 1rem;
  }
}
