/* ===== DESIGN TOKENS ===== */
:root {
  --cream:      #FAF6F1;
  --sand:       #EDE0D4;
  --warm:       #D9C5B2;
  --primary:    #B8896A;
  --primary-d:  #96684E;
  --dark:       #2C1A12;
  --text:       #4A3428;
  --text-light: #8A6B5A;
  --white:      #FFFFFF;

  --serif: 'Cormorant Garamond', 'Noto Serif JP', serif;
  --sans:  'Lato', 'Noto Sans JP', sans-serif;

  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 0.4s var(--ease);
  --shadow-sm:  0 2px 12px rgba(44, 26, 18, 0.06);
  --shadow:     0 4px 32px rgba(44, 26, 18, 0.10);
  --shadow-lg:  0 12px 60px rgba(44, 26, 18, 0.15);
  --radius:     12px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.8;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.3;
  color: var(--dark);
}
em { font-style: italic; }

.eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.9rem;
}
.eyebrow.light { color: rgba(255,255,255,0.65); }

.section-line {
  width: 40px;
  height: 1px;
  background: var(--primary);
  margin: 1.2rem auto;
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 2rem;
}

section { padding: 7rem 0; }

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}
.section-header p {
  color: var(--text-light);
  font-size: 0.95rem;
  max-width: 500px;
  margin: 0.5rem auto 0;
  line-height: 2;
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
[data-reveal="left"] {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
[data-reveal="right"] {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translate(0, 0);
}

/* Stagger delays for grids */
.services-grid [data-reveal]:nth-child(2) { transition-delay: 0.18s; }
.services-grid [data-reveal]:nth-child(3) { transition-delay: 0.36s; }
.voices-grid [data-reveal]:nth-child(2)   { transition-delay: 0.12s; }
.voices-grid [data-reveal]:nth-child(3)   { transition-delay: 0.24s; }
.voices-grid [data-reveal]:nth-child(4)   { transition-delay: 0.36s; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.6rem 0;
  transition: padding 0.4s var(--ease), background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(44,26,18,0.07);
  padding: 1rem 0;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 2rem;
}

.logo { display: flex; align-items: center; gap: 0.8rem; }
.logo-img { height: 38px; width: auto; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-main {
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: 0.22em;
  font-weight: 600;
  color: var(--dark);
  transition: color 0.4s;
}
.logo-sub {
  font-size: 0.52rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.22rem;
  transition: color 0.4s;
}
.navbar:not(.scrolled) .logo-main { color: white; }
.navbar:not(.scrolled) .logo-sub  { color: rgba(255,255,255,0.55); }

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2.8rem;
}
.nav-links a {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  color: var(--text);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.3s;
}
.navbar:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.9); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--primary);
  transition: width 0.35s var(--ease);
}
.navbar:not(.scrolled) .nav-links a::after { background: rgba(255,255,255,0.7); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 1rem; }

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--text);
  transition: color 0.4s;
}
.navbar:not(.scrolled) .lang-toggle { color: rgba(255,255,255,0.8); }
.lang-btn {
  background: none; border: none; cursor: pointer;
  font-size: 0.72rem; letter-spacing: 0.08em;
  color: inherit; font-family: var(--sans);
  padding: 0.15rem 0.35rem;
  transition: var(--transition);
}
.lang-btn.active { font-weight: 700; color: var(--primary); }
.navbar:not(.scrolled) .lang-btn.active { color: white; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 0.3rem;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--dark); transition: var(--transition);
}
.navbar:not(.scrolled) .hamburger span { background: white; }

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: none;
  position: fixed; inset: 0;
  background: var(--cream);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: none; border: none;
  font-size: 1.4rem; cursor: pointer;
  color: var(--dark); padding: 0.5rem;
}
.mobile-nav-links {
  list-style: none;
  display: flex; flex-direction: column;
  align-items: center; gap: 2rem;
  margin-bottom: 2.5rem;
}
.mobile-nav-links a {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--dark);
  letter-spacing: 0.1em;
}
.mobile-lang { display: flex; gap: 1rem; }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh; min-height: 640px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: 0;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10,5,2,0.50) 0%,
    rgba(10,5,2,0.25) 40%,
    rgba(10,5,2,0.45) 70%,
    rgba(10,5,2,0.72) 100%
  );
}

/* --- Phase 1: 最初のメッセージ --- */
.hero-phase-1 {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  pointer-events: none;
}
.hero-phase-1.visible {
  opacity: 1;
  pointer-events: auto;
}
.hero-welcome {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5em;
}
.hero-welcome-line1 {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.8vw, 2.2rem);
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.28em;
  font-weight: 300;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-welcome-line2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5.5vw, 4.8rem);
  color: white;
  letter-spacing: 0.2em;
  font-weight: 300;
  line-height: 1.2;
  text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

/* --- Phase 2: 縦書きテキスト --- */
.hero-phase-2 {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 3.5rem;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.hero-phase-2.visible {
  opacity: 1;
  pointer-events: auto;
}

.hero-vertical-texts {
  display: flex;
  flex-direction: row-reverse; /* DOM順①②③④⑤を右→左で表示 */
  align-items: flex-start;
  justify-content: center;
  gap: clamp(1.2rem, 2.2vw, 2.4rem);
  max-height: 60vh;
}

.hero-vline {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--serif);
  font-size: clamp(0.9rem, 1.8vh, 1.2rem);
  color: white;
  letter-spacing: 0.2em;
  line-height: 1.8;
  font-weight: 300;
  text-shadow: 0 1px 12px rgba(0,0,0,0.4);
  opacity: 0;
  transform: translateX(18px);  /* 右からスライドイン */
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.hero-vline.visible {
  opacity: 1;
  transform: translateX(0);
}


.hero-phase2-cta {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.hero-phase2-cta.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- ボタン --- */
.btn-light {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,0.92);
  color: var(--dark);
  padding: 0.95rem 2.6rem;
  border-radius: 50px;
  font-size: 0.83rem; letter-spacing: 0.14em;
  font-weight: 500; transition: var(--transition);
}
.btn-light:hover {
  background: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.22);
}
.btn-outline-light {
  display: inline-flex; align-items: center;
  background: transparent; color: white;
  padding: 0.95rem 2.4rem; border-radius: 50px;
  font-size: 0.83rem; letter-spacing: 0.12em;
  border: 1px solid rgba(255,255,255,0.55);
  transition: var(--transition);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.9);
  transform: translateY(-3px);
}

/* --- スクロールインジケーター --- */
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column;
  align-items: center; gap: 0.6rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.6rem; letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-scroll.visible { opacity: 1; }
.hero-scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2.4s ease infinite;
}
@keyframes scrollPulse {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* --- モバイル対応 --- */
@media (max-width: 600px) {
  .hero-welcome {
    font-size: clamp(1.4rem, 7vw, 2.2rem);
    letter-spacing: 0.14em;
  }
  .hero-vertical-texts {
    gap: clamp(1rem, 4vw, 1.8rem);
    max-height: 55vh;
  }
  .hero-vline {
    font-size: clamp(0.78rem, 3vw, 1rem);
    letter-spacing: 0.14em;
  }
}

/* ===== CONCEPT ===== */
.concept { padding: 0; background: var(--cream); }
.concept-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 720px;
}
.concept-image {
  position: relative; overflow: hidden;
}
.concept-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 9s ease;
  display: block;
}
.concept-image:hover img { transform: scale(1.04); }

.concept-text {
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 6rem 5.5rem;
  background: var(--cream);
}
.concept-text h2 {
  font-size: clamp(2rem, 3.2vw, 2.9rem);
  margin-bottom: 1.6rem; line-height: 1.45;
}
.concept-text p {
  font-size: 0.95rem; color: var(--text-light);
  line-height: 2; margin-bottom: 1.3rem;
  max-width: 460px;
}
.concept-stats {
  display: flex; align-items: center;
  gap: 2rem; margin-top: 2.8rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--warm);
}
.stat {
  display: flex; flex-direction: column;
  align-items: center; gap: 0.4rem;
}
.stat-num {
  font-family: var(--serif);
  font-size: 2rem; color: var(--dark);
  font-weight: 400; line-height: 1;
}
.stat-num sup { font-size: 0.9rem; }
.stat-num small { font-size: 0.9rem; }
.stat-label {
  font-size: 0.68rem; color: var(--text-light);
  letter-spacing: 0.08em; text-align: center;
  line-height: 1.5;
}
.stat-divider {
  width: 1px; height: 36px;
  background: var(--warm); flex-shrink: 0;
}

/* ===== SERVICES ===== */
.services { background: white; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.service-card {
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}
.service-card-image {
  width: 100%; aspect-ratio: 4/3; overflow: hidden;
}
.service-card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.service-card:hover .service-card-image img { transform: scale(1.07); }

.service-card-body { padding: 1.8rem 2rem 2.2rem; }
.service-en {
  display: block;
  font-size: 0.62rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--primary);
  margin-bottom: 0.55rem;
}
.service-card-body h3 {
  font-size: 1.3rem; margin-bottom: 0.55rem;
}
.service-tagline {
  font-size: 0.85rem; color: var(--text-light);
  margin-bottom: 1.3rem; line-height: 1.65;
}
.service-detail {
  padding-top: 1.2rem;
  border-top: 1px solid var(--warm);
}
.service-detail p {
  font-size: 0.82rem; color: var(--text-light);
  line-height: 1.8; margin-bottom: 0.4rem;
}
.service-meta { color: var(--primary) !important; }

.services-note {
  text-align: center; margin-top: 2.5rem;
  font-size: 0.83rem; color: var(--text-light);
  padding: 1.3rem 1.8rem;
  background: var(--cream); border-radius: var(--radius);
  border: 1px solid var(--warm);
}

/* ===== VOICES ===== */
.voices { background: var(--cream); }
.voices-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem; margin-bottom: 5rem;
}
.voice-card {
  background: white; border-radius: var(--radius);
  padding: 2.5rem; box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.voice-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.voice-stars {
  color: var(--primary); font-size: 0.75rem;
  letter-spacing: 3px; margin-bottom: 0.8rem;
}
.voice-quote {
  font-family: var(--serif); font-size: 4.5rem;
  line-height: 0.8; color: var(--sand);
  margin-bottom: 0.6rem;
}
.voice-text {
  font-size: 0.9rem; color: var(--text);
  line-height: 1.95; margin-bottom: 1.6rem;
  font-style: italic;
}
.voice-author {
  display: flex; flex-direction: column; gap: 0.2rem;
  padding-top: 1.2rem; border-top: 1px solid var(--sand);
}
.voice-name { font-size: 0.85rem; font-weight: 600; color: var(--dark); }
.voice-meta { font-size: 0.75rem; color: var(--text-light); }

/* Before / After */
.ba-section { }
.ba-header {
  text-align: center; margin-bottom: 2.5rem;
}
.ba-header h3 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-top: 0.5rem;
}
.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.ba-item img {
  width: 100%; border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.5s var(--ease);
}
.ba-item:hover img { transform: scale(1.02); }
.ba-item p {
  margin-top: 0.9rem;
  font-size: 0.82rem; color: var(--text-light);
  text-align: center; letter-spacing: 0.06em;
}

/* ===== FAQ ===== */
.faq { background: white; }
.faq-list {
  max-width: 740px; margin: 0 auto;
}
.faq-item { border-bottom: 1px solid var(--sand); }
.faq-item:first-child { border-top: 1px solid var(--sand); }

.faq-q {
  width: 100%; display: flex;
  align-items: center; justify-content: space-between;
  gap: 1.2rem; padding: 1.6rem 0;
  background: none; border: none; cursor: pointer;
  font-family: var(--sans); font-size: 0.95rem;
  color: var(--dark); text-align: left;
  line-height: 1.6; transition: color 0.3s;
}
.faq-q:hover { color: var(--primary); }
.faq-q span { flex: 1; }
.faq-icon {
  width: 20px; height: 20px; flex-shrink: 0;
  color: var(--primary);
  transition: transform 0.45s var(--ease-out);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.55s var(--ease-out);
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner {
  padding: 0 0 1.8rem;
  font-size: 0.9rem; color: var(--text-light);
  line-height: 2;
}

/* ===== THERAPIST ===== */
.therapist { background: var(--cream); padding: 0; }
.therapist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 720px;
}
.therapist-image {
  position: relative; overflow: hidden;
  background: var(--sand);
}
.therapist-image img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
}
.therapist-text {
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 6rem 5.5rem;
  background: var(--cream);
}
.therapist-text h2 {
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  margin-bottom: 0.3rem;
}
.therapist-name-en {
  display: block; font-size: 0.82rem;
  color: var(--text-light); letter-spacing: 0.14em;
  margin-bottom: 1.6rem;
}
.therapist-tags {
  display: flex; flex-wrap: wrap;
  gap: 0.5rem; margin-bottom: 2rem;
}
.tag {
  font-size: 0.72rem;
  padding: 0.3rem 1rem;
  background: white;
  border: 1px solid var(--warm);
  border-radius: 20px;
  color: var(--text); letter-spacing: 0.04em;
}
.therapist-bio p {
  font-size: 0.92rem; color: var(--text-light);
  line-height: 2; margin-bottom: 1rem;
  max-width: 460px;
}
.therapist-certs {
  margin: 1.5rem 0; padding: 1.5rem;
  background: white; border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.therapist-certs-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.therapist-certs-logo {
  height: 44px;
  width: auto;
  flex-shrink: 0;
  opacity: 0.85;
}
.therapist-certs-title {
  font-size: 0.8rem;
  color: var(--text-light);
  letter-spacing: 0.1em;
  line-height: 1.4;
}
.therapist-certs ul {
  list-style: none;
  display: flex; flex-direction: column; gap: 0.65rem;
}
.therapist-certs li {
  font-size: 0.85rem; color: var(--text);
  padding-left: 1.3rem; position: relative; line-height: 1.6;
}
.therapist-certs li::before {
  content: '–'; position: absolute; left: 0;
  color: var(--primary);
}
.therapist-links {
  display: flex; gap: 0.8rem; margin-top: 1.5rem;
}
.therapist-link {
  display: inline-flex; align-items: center;
  font-size: 0.8rem; color: var(--text);
  padding: 0.5rem 1.4rem;
  border: 1px solid var(--warm); border-radius: 20px;
  transition: var(--transition);
}
.therapist-link:hover {
  background: var(--primary); color: white;
  border-color: var(--primary);
}

/* ===== CONTACT ===== */
.contact { background: var(--dark); padding: 9rem 0; }
.contact-inner {
  max-width: 600px; margin: 0 auto;
  text-align: center; padding: 0 2rem;
}
.contact h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: white; margin-bottom: 1rem; line-height: 1.45;
}
.contact-lead {
  font-size: 0.95rem; color: rgba(255,255,255,0.6);
  line-height: 2.1; margin-bottom: 3rem;
}
.line-btn {
  display: inline-flex; align-items: center; gap: 0.8rem;
  background: #06C755; color: white;
  padding: 1.1rem 3rem; border-radius: 50px;
  font-size: 1rem; font-weight: 600;
  letter-spacing: 0.06em;
  box-shadow: 0 4px 24px rgba(6,199,85,0.3);
  transition: var(--transition); margin-bottom: 2.8rem;
}
.line-btn:hover {
  background: #05b04c;
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(6,199,85,0.4);
}
.contact-sub {
  display: flex; align-items: center;
  justify-content: center;
  gap: 1.2rem; flex-wrap: wrap;
}
.contact-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.83rem; color: rgba(255,255,255,0.55);
  transition: color 0.3s;
}
a.contact-link:hover { color: white; }
.contact-area {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.83rem; color: rgba(255,255,255,0.45);
}
.contact-sep { color: rgba(255,255,255,0.25); }

/* ===== FOOTER ===== */
.footer { background: #1C0E07; color: rgba(255,255,255,0.5); padding: 4.5rem 0 2rem; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-logo {
  height: 34px; width: auto;
  filter: brightness(0) invert(0.65);
  margin-bottom: 1.3rem;
}
.footer-brand p { font-size: 0.83rem; line-height: 1.95; }
.footer-nav h5 {
  font-size: 0.68rem; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.1rem; font-family: var(--sans);
}
.footer-nav ul {
  list-style: none;
  display: flex; flex-direction: column; gap: 0.65rem;
}
.footer-nav a {
  font-size: 0.85rem; color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}
.footer-nav a:hover { color: rgba(255,255,255,0.9); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 1.8rem;
  display: flex; justify-content: space-between;
  align-items: center; font-size: 0.78rem;
}
.footer-socials { display: flex; gap: 1.2rem; }
.footer-socials a { color: rgba(255,255,255,0.4); transition: color 0.3s; }
.footer-socials a:hover { color: rgba(255,255,255,0.9); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .concept-text  { padding: 5rem 3.5rem; }
  .therapist-text { padding: 5rem 3.5rem; }
  .therapist-bio p { max-width: 100%; }
}

@media (max-width: 768px) {
  section { padding: 5rem 0; }

  .hamburger { display: flex; }
  .nav-links, .lang-toggle { display: none; }

  /* Hero */
  .hero-title { font-size: clamp(3.2rem, 12vw, 5.5rem); }
  .hero-cta { flex-direction: column; align-items: center; }

  /* Concept */
  .concept-grid { grid-template-columns: 1fr; }
  .concept-image { min-height: 60vw; }
  .concept-text { padding: 4rem 2rem; }
  .concept-text p { max-width: 100%; }
  .concept-stats { gap: 1.5rem; }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 440px; margin: 0 auto;
  }

  /* Voices */
  .voices-grid { grid-template-columns: 1fr; }

  /* BA */
  .ba-grid {
    grid-template-columns: 1fr;
    max-width: 380px; margin: 0 auto;
  }

  /* Therapist */
  .therapist-grid { grid-template-columns: 1fr; }
  .therapist-image { min-height: 65vw; }
  .therapist-text { padding: 4rem 2rem; }

  /* Contact */
  .contact { padding: 6rem 0; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

.sp-only { display: none; }

@media (max-width: 480px) {
  .sp-only { display: inline; }
  .container { padding: 0 1.2rem; }
  .concept-stats {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 0.5rem;
  }
  .stat { flex: 1 1 0; min-width: 0; }
  .stat-num { font-size: 1.4rem; }
  .stat-label { font-size: 0.6rem; }
  .stat-divider { height: 28px; }
}
