/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --color-bg: #FAF6F2;
  --color-bg2: #F2EBE3;
  --color-dark: #2A1F1A;
  --color-accent: #C4956A;
  --color-accent2: #A67550;
  --color-text: #3D2B1F;
  --color-text-sub: #7A6055;
  --color-border: #E2D5C8;
  --color-white: #FFFDF9;
  --font: 'Noto Sans JP', sans-serif;
  --radius: 16px;
  --shadow: 0 4px 24px rgba(60,30,10,0.08);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.8;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ===== Scroll Animation ===== */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 0.9em 2.2em;
  border-radius: 99px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.25s;
  cursor: pointer;
  letter-spacing: 0.03em;
}
.btn--primary {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 4px 16px rgba(196,149,106,0.35);
}
.btn--primary:hover {
  background: var(--color-accent2);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196,149,106,0.45);
}
.btn--outline {
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
}
.btn--outline:hover {
  background: var(--color-accent);
  color: #fff;
}
.btn--white {
  background: #fff;
  color: var(--color-accent);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.btn--white:hover { background: var(--color-bg); transform: translateY(-2px); }
.btn--lg { padding: 1.1em 2.8em; font-size: 1.05rem; }

/* ===== Nav ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  transition: all 0.3s;
}
.nav--scrolled {
  background: rgba(255,253,249,0.95);
  backdrop-filter: blur(12px);
  padding: 0.75rem 2rem;
  box-shadow: 0 2px 20px rgba(60,30,10,0.08);
}
.nav__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s;
}
.nav--scrolled .nav__logo { color: var(--color-dark); }
.nav__logo-icon {
  width: 34px; height: 34px;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.nav__links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.nav--scrolled .nav__links a { color: var(--color-text-sub); }
.nav__links a:hover { color: var(--color-accent) !important; }
.nav__active { color: var(--color-accent) !important; }
.nav__cta {
  background: var(--color-accent) !important;
  color: #fff !important;
  padding: 0.5em 1.4em;
  border-radius: 99px;
  font-weight: 700 !important;
}
.nav__cta:hover { background: var(--color-accent2) !important; }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
}
.nav__hamburger span {
  display: block;
  width: 100%; height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav--scrolled .nav__hamburger span { background: var(--color-dark); }
.nav__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 149;
}
.nav__overlay.is-open { display: block; }

.nav__drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 75%; max-width: 300px;
  background: var(--color-white);
  z-index: 150;
  display: flex;
  flex-direction: column;
  padding: 5rem 2rem 3rem;
  gap: 0;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}
.nav__drawer.is-open { transform: translateX(0); }
.nav__drawer a {
  color: var(--color-text);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
  transition: color 0.2s;
}
.nav__drawer a:hover { color: var(--color-accent); }
.nav__drawer .nav__cta {
  margin-top: 1.5rem;
  background: var(--color-accent);
  color: #fff;
  text-align: center;
  padding: 0.75em 1.5em;
  border-radius: 99px;
  border: none;
}

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(150deg, #3D2410 0%, #6B3D28 40%, #9B6040 100%);
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 30%, rgba(196,149,106,0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(255,200,150,0.1) 0%, transparent 40%);
}
.hero__pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 30px 30px;
}
.hero__inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 8rem 2rem 6rem;
  width: 100%;
}
.hero__label {
  display: inline-block;
  color: var(--color-accent);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: rgba(196,149,106,0.15);
  border: 1px solid rgba(196,149,106,0.3);
  padding: 0.35em 1em;
  border-radius: 99px;
  margin-bottom: 1.5rem;
  animation: fadeSlideDown 0.8s ease both;
}
.hero__title {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
  animation: fadeSlideUp 0.8s 0.2s ease both;
}
.hero__title em {
  font-style: normal;
  color: var(--color-accent);
}
.hero__sub {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 2.5rem;
  max-width: 480px;
  animation: fadeSlideUp 0.8s 0.4s ease both;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.8s 0.6s ease both;
}
.hero__scroll {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.65rem; letter-spacing: 0.15em;
}
.hero__scroll span {
  display: block; width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--color-accent), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes fadeSlideDown { from { opacity:0; transform:translateY(-16px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeSlideUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
@keyframes scrollLine {
  0% { opacity:0; transform:scaleY(0); transform-origin:top; }
  50% { opacity:1; transform:scaleY(1); transform-origin:top; }
  100% { opacity:0; transform:scaleY(1); transform-origin:bottom; }
}

/* ===== Stats ===== */
.stats {
  background: var(--color-accent);
  padding: 3rem 2rem;
}
.stats__inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 2rem; text-align: center;
}
.stats__num {
  font-size: 2.8rem; font-weight: 900;
  color: #fff; line-height: 1;
  display: inline-block;
}
.stats__unit { font-size: 1rem; color: rgba(255,255,255,0.85); font-weight: 700; }
.stats__label { color: rgba(255,255,255,0.7); font-size: 0.8rem; margin-top: 0.4rem; }

/* ===== Section Common ===== */
.section { padding: 6rem 2rem; }
.section--alt { background: var(--color-bg2); }
.section--dark {
  background: var(--color-dark);
  color: #fff;
}
.container { max-width: 1100px; margin: 0 auto; }
.container--narrow { max-width: 800px; margin: 0 auto; }

.section__head { text-align: center; margin-bottom: 4rem; }
.section__label {
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.2em; color: var(--color-accent);
  text-transform: uppercase; margin-bottom: 0.75rem;
  display: block;
}
.section__title {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 900; line-height: 1.3;
}
.section__lead {
  font-size: 0.95rem; color: var(--color-text-sub);
  line-height: 1.9; margin-top: 1rem;
}

/* ===== Concept ===== */
.concept__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.concept__img {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #C4956A 0%, #8B5E3C 100%);
  border-radius: 24px;
  position: relative; overflow: hidden;
}
.concept__img::after {
  content: '𓇢𓆸';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; opacity: 0.15;
}
.concept__label { display: block; }
.concept__title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 900; line-height: 1.5;
  margin-bottom: 1.25rem;
}
.concept__text {
  font-size: 0.95rem; color: var(--color-text-sub);
  line-height: 1.95; margin-bottom: 2rem;
}

/* ===== Menu Preview ===== */
.menu__grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
}
.menu-card {
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 32px rgba(60,30,10,0.12);
}
.menu-card__img {
  height: 140px;
  background: linear-gradient(135deg, #D4A574 0%, #A0714F 100%);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.menu-card__body { padding: 1.5rem; }
.menu-card__name {
  font-size: 1.05rem; font-weight: 700;
  margin-bottom: 0.5rem;
}
.menu-card__desc {
  font-size: 0.85rem; color: var(--color-text-sub);
  line-height: 1.75; margin-bottom: 1rem;
}
.menu-card__price {
  font-size: 1.3rem; font-weight: 900;
  color: var(--color-accent);
}
.menu-card__price span { font-size: 0.8rem; font-weight: 400; color: var(--color-text-sub); }

/* ===== Voices ===== */
.voices__grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
}
.voice-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  position: relative;
}
.voice-card::before {
  content: '"';
  position: absolute; top: 1rem; left: 1.5rem;
  font-size: 4rem; color: var(--color-accent);
  opacity: 0.2; line-height: 1;
  font-family: Georgia, serif;
}
.voice-card__stars {
  color: #F4B942; font-size: 0.9rem;
  margin-bottom: 0.75rem;
}
.voice-card__text {
  font-size: 0.88rem; color: var(--color-text-sub);
  line-height: 1.85; margin-bottom: 1.25rem;
}
.voice-card__meta {
  display: flex; align-items: center; gap: 0.75rem;
}
.voice-card__avatar {
  width: 40px; height: 40px;
  background: var(--color-bg2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.voice-card__name { font-size: 0.85rem; font-weight: 700; }
.voice-card__age { font-size: 0.78rem; color: var(--color-text-sub); }

/* ===== Access ===== */
.access__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: start;
}
.access__map {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #E8DDD5 0%, #D4C4B8 100%);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: var(--color-text-sub);
}
.access__title {
  font-size: 1.3rem; font-weight: 700;
  margin-bottom: 1.5rem;
}
.access__table { width: 100%; border-collapse: collapse; }
.access__table tr { border-bottom: 1px solid var(--color-border); }
.access__table th, .access__table td {
  padding: 0.9rem 0.75rem; text-align: left; font-size: 0.9rem;
}
.access__table th {
  width: 90px; color: var(--color-text-sub);
  font-weight: 500;
}

/* ===== CTA ===== */
.section--cta {
  background: linear-gradient(135deg, #3D2410 0%, #6B3D28 100%);
  text-align: center;
  padding: 7rem 2rem;
}
.cta__label { display: block; }
.cta__title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900; color: #fff;
  margin-bottom: 1.25rem; line-height: 1.35;
}
.cta__sub {
  color: rgba(255,255,255,0.65);
  font-size: 1rem; line-height: 1.9;
  margin-bottom: 2.5rem;
}
.cta__tel {
  color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-top: 1rem;
}
.cta__tel a { color: #fff; font-weight: 700; font-size: 1.1rem; }

/* ===== Page Hero ===== */
.page-hero {
  background: linear-gradient(150deg, #3D2410 0%, #7A4828 100%);
  padding: 9rem 2rem 5rem;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(196,149,106,0.15) 0%, transparent 60%);
}
.page-hero--sm { padding: 8rem 2rem 4rem; }
.page-hero__inner { max-width: 1100px; margin: 0 auto; position: relative; }
.page-hero__label { color: var(--color-accent); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 0.75rem; display: block; }
.page-hero__title { color: #fff; font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; margin-bottom: 1rem; }
.page-hero__sub { color: rgba(255,255,255,0.65); font-size: 1rem; line-height: 1.85; }

/* ===== Menu Page ===== */
.menu-section { padding: 5rem 2rem; }
.menu-section--alt { background: var(--color-bg2); }
.menu-block { margin-bottom: 4rem; }
.menu-block__head {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--color-accent);
}
.menu-block__icon { font-size: 1.5rem; }
.menu-block__title { font-size: 1.2rem; font-weight: 700; }
.menu-table { width: 100%; border-collapse: collapse; }
.menu-table tr { border-bottom: 1px solid var(--color-border); transition: background 0.15s; }
.menu-table tr:hover { background: var(--color-bg2); }
.menu-table th, .menu-table td { padding: 1.1rem 1rem; font-size: 0.92rem; text-align: left; }
.menu-table th { font-weight: 700; width: 55%; }
.menu-table .price { font-weight: 700; color: var(--color-accent); font-size: 1rem; text-align: right; white-space: nowrap; }
.menu-table .note { font-size: 0.8rem; color: var(--color-text-sub); display: block; margin-top: 0.2rem; }

/* ===== About Page ===== */
.therapist {
  display: grid; grid-template-columns: 300px 1fr;
  gap: 3rem; align-items: start;
}
.therapist__photo {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #C4956A 0%, #7A4828 100%);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; color: rgba(255,255,255,0.3);
}
.therapist__name { font-size: 1.6rem; font-weight: 900; margin-bottom: 0.3rem; }
.therapist__role { font-size: 0.85rem; color: var(--color-text-sub); margin-bottom: 1.5rem; }
.therapist__text { font-size: 0.95rem; color: var(--color-text-sub); line-height: 1.95; margin-bottom: 1rem; }
.therapist__tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }
.therapist__tag {
  font-size: 0.8rem; border: 1px solid var(--color-accent);
  color: var(--color-accent); padding: 0.25em 0.9em; border-radius: 99px;
}

.point-list { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.point-card {
  background: var(--color-white); border-radius: var(--radius);
  padding: 2rem; box-shadow: var(--shadow); text-align: center;
}
.point-card__num {
  font-size: 2.5rem; font-weight: 900; color: var(--color-accent);
  opacity: 0.3; line-height: 1; margin-bottom: 0.5rem;
}
.point-card__title { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.5rem; }
.point-card__desc { font-size: 0.85rem; color: var(--color-text-sub); line-height: 1.75; }

/* ===== Voice Page ===== */
.voice-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.voice-full {
  background: var(--color-white); border-radius: var(--radius);
  padding: 2rem; box-shadow: var(--shadow); position: relative;
}
.voice-full::before {
  content: '"';
  position: absolute; top: 1rem; left: 1.5rem;
  font-size: 4rem; color: var(--color-accent); opacity: 0.15;
  line-height: 1; font-family: Georgia, serif;
}
.voice-full__stars { color: #F4B942; font-size: 0.9rem; margin-bottom: 0.75rem; }
.voice-full__title { font-size: 1rem; font-weight: 700; margin-bottom: 0.75rem; }
.voice-full__text { font-size: 0.88rem; color: var(--color-text-sub); line-height: 1.85; margin-bottom: 1.25rem; }
.voice-full__meta { display: flex; align-items: center; gap: 0.75rem; }
.voice-full__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--color-bg2);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.voice-full__name { font-size: 0.88rem; font-weight: 700; }
.voice-full__detail { font-size: 0.78rem; color: var(--color-text-sub); }

/* ===== Reserve Page ===== */
.reserve__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.reserve__info-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 1.25rem; }
.reserve__info-table { width: 100%; border-collapse: collapse; margin-bottom: 2rem; }
.reserve__info-table tr { border-bottom: 1px solid var(--color-border); }
.reserve__info-table th, .reserve__info-table td { padding: 0.85rem 0.75rem; font-size: 0.88rem; text-align: left; }
.reserve__info-table th { width: 80px; color: var(--color-text-sub); font-weight: 500; }
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 0.88rem; font-weight: 700; margin-bottom: 0.4rem; }
.form-label span { color: var(--color-accent); margin-left: 0.25rem; font-size: 0.75rem; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 0.85em 1em;
  border: 1.5px solid var(--color-border);
  border-radius: 10px; font-size: 0.92rem;
  font-family: var(--font);
  background: var(--color-white);
  color: var(--color-text);
  transition: border-color 0.2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--color-accent);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%; padding: 1em;
  background: var(--color-accent); color: #fff;
  border: none; border-radius: 99px;
  font-size: 1rem; font-weight: 700;
  cursor: pointer; font-family: var(--font);
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(196,149,106,0.35);
}
.form-submit:hover { background: var(--color-accent2); transform: translateY(-2px); }

/* ===== Flow ===== */
.flow__list { display: flex; flex-direction: column; gap: 0; max-width: 640px; margin: 0 auto; }
.flow-step {
  display: flex; gap: 2rem; align-items: flex-start;
  position: relative; padding-bottom: 2.5rem;
}
.flow-step:not(:last-child)::before {
  content: '';
  position: absolute; left: 2.1rem; top: 4rem; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-accent), var(--color-border));
}
.flow-step__num {
  flex-shrink: 0; width: 4.25rem; height: 4.25rem;
  background: var(--color-accent); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 900;
  box-shadow: 0 4px 14px rgba(196,149,106,0.35);
}
.flow-step__title { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.4rem; padding-top: 0.75rem; }
.flow-step__desc { font-size: 0.88rem; color: var(--color-text-sub); line-height: 1.75; }

/* ===== Footer ===== */
.footer { background: var(--color-dark); padding: 3rem 2rem 2rem; }
.footer__inner { max-width: 1100px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 1.25rem; }
.footer__logo { color: #fff; font-weight: 700; font-size: 1rem; }
.footer__tagline { color: rgba(255,255,255,0.4); font-size: 0.8rem; }
.footer__nav { display: flex; gap: 1.75rem; flex-wrap: wrap; justify-content: center; }
.footer__nav a { color: rgba(255,255,255,0.45); font-size: 0.85rem; transition: color 0.2s; }
.footer__nav a:hover { color: var(--color-accent); }
.footer__copy { color: rgba(255,255,255,0.25); font-size: 0.8rem; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .stats__inner { grid-template-columns: repeat(2,1fr); }
  .concept__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .menu__grid { grid-template-columns: 1fr; }
  .voices__grid { grid-template-columns: 1fr; }
  .access__grid { grid-template-columns: 1fr; }
  .therapist { grid-template-columns: 1fr; }
  .therapist__photo { max-width: 260px; }
  .point-list { grid-template-columns: 1fr; }
  .voice-grid { grid-template-columns: 1fr; }
  .reserve__grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav__hamburger { display: flex; }
  .nav__links { display: none; }
  .hero__actions { flex-direction: column; }
  .stats__inner { grid-template-columns: repeat(2,1fr); }
}
