/* ── Variables ────────────────────────────────── */
:root {
  --font-body:    'Noto Sans JP', sans-serif;
  --font-label:   'Montserrat', sans-serif;
  --font-display: 'Cormorant Garamond', serif;
  --font-heading: 'Playfair Display', serif;

  --color-brand:   #0ABAB5;
  --color-heading: #2d4a4a;
  --color-text:    #1a3333;
  --color-muted:   #6a8888;

  --footer-text: rgba(255,255,255,0.75);
}

/* ── Base ─────────────────────────────────────── */
html { scroll-behavior: auto; }
*, *::before, *::after { box-sizing: border-box; }
#page-bg {
  position: fixed; inset: 0; z-index: -1;
  background-size: cover;
  background-position: center;
}
body {
  background: transparent;
  color: var(--color-text);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 2;
  -webkit-font-smoothing: antialiased;
  margin: 0;
}

/* ── Layout ───────────────────────────────────── */
.site-container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
@media (min-width: 640px)  { .site-container { padding-left: 2rem; padding-right: 2rem; } }
@media (min-width: 1024px) { .site-container { padding-left: 3rem; padding-right: 3rem; max-width: 1400px; } }

.content-narrow { max-width: 720px; margin: 0 auto; }
.content-medium { max-width: 860px; margin: 0 auto; }

/* ── Section ──────────────────────────────────── */
.section-pad     { padding: 5rem 0; }
@media (min-width: 768px) { .section-pad { padding-top: 8rem; padding-bottom: 8rem; } }
.section-bg      { background: #f8fefe; }
.section-header  { text-align: center; margin-bottom: 4rem; }
.section-header .label-mono { color: var(--color-heading); margin-bottom: 1rem; }
.section-heading { font-size: clamp(2.2rem, 4.5vw, 3.5rem); color: var(--color-heading); margin-bottom: 1.5rem; }
#features .section-heading { font-size: clamp(1rem, 5.5vw, 3.5rem); }
.section-header .heading-display:not(.section-heading) { font-size: clamp(1.8rem,4vw,2.8rem); color: var(--color-heading); margin-bottom: 1.5rem; }

/* ── Page hero ────────────────────────────────── */
.page-hero {
  position: relative;
  overflow: hidden;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 5rem;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20,50,50,0.6) 0%, rgba(10,30,30,0.4) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
}
.page-hero-content .label-mono {
  color: rgba(255,255,255,0.7);
  margin-bottom: 1rem;
}
.page-hero-content .heading-display {
  font-size: clamp(2rem,6vw,3.5rem);
  color: white;
  margin: 0;
}

/* ── Font helpers ─────────────────────────────── */
.font-cormorant { font-family: var(--font-display); }

/* ── Typography ───────────────────────────────── */
.heading-display {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.02em;
}
.label-mono {
  font-family: var(--font-label);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.7rem;
}

/* ── Menu / service cards ─────────────────────── */
.mm-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--color-heading);
  line-height: 1.3;
  margin: 0 0 0.6rem;
}
#mm-note { white-space: pre-line; margin: 0 0 1.75rem; }
.mm-duration-spacing { margin: 0 0 1.25rem; }
.mm-btn-float {
  position: absolute;
  bottom: 0.875rem;
  right: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(10,186,181,0.92);
  backdrop-filter: blur(4px);
  color: white;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  padding: 0.45rem 0.875rem;
  border-radius: 9999px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}
.mm-btn-float:hover { background: rgba(45,74,74,0.92); }
.svc-duration-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: white;
  background: rgba(10,186,181,0.75);
  padding: 0.2rem 0.75rem;
  border-radius: 9999px;
  backdrop-filter: blur(4px);
}
.menu-duration {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--color-brand);
  background: rgba(10,186,181,0.08);
  border: 1px solid rgba(10,186,181,0.25);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  margin: 0 0 6px;
}

/* ── Button ───────────────────────────────────── */
.btn-reserve {
  display: block;
  padding: 0.8rem;
  text-align: center;
  background: var(--color-brand);
  color: white;
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: background 0.2s;
}
.btn-reserve:hover { background: #089e9a; }

.btn-modern {
  font-family: var(--font-label);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.875rem;
  padding: 0.875rem 2rem;
  border: 2px solid currentColor;
  transition: all 0.3s ease;
  background: transparent;
  cursor: pointer;
  display: inline-block;
  line-height: 1;
  position: relative;
  overflow: hidden;
}
.btn-modern:hover { background: transparent !important; color: inherit !important; opacity: 0.75; }

/* ── Reveal ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-x-left {
  opacity: 0; transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-x-left.visible { opacity: 1; transform: translateX(0); }
.reveal-x-right {
  opacity: 0; transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-x-right.visible { opacity: 1; transform: translateX(0); }

.accent-line {
  height: 4px;
  background: var(--color-brand);
  width: 0;
  transition: width 0.8s ease;
  max-width: 96px;
  margin-left: auto;
  margin-right: auto;
}
.accent-line.animated { width: 96px; }

/* ── Decorative spin ──────────────────────────── */
@keyframes spinCW  { to { transform: rotate(360deg); } }
@keyframes spinCCW { to { transform: rotate(-360deg); } }
.deco-spin-cw  { position: absolute; font-size: 3.75rem; opacity: 0.04; animation: spinCW  20s linear infinite; pointer-events: none; user-select: none; }
.deco-spin-ccw { position: absolute; font-size: 3.75rem; opacity: 0.04; animation: spinCCW 20s linear infinite; pointer-events: none; user-select: none; }
.deco-spin-tl { top: 2.5rem; left: 1.25rem; }
.deco-spin-tr { top: 2.5rem; right: 2rem; }
.deco-spin-bl { bottom: 2.5rem; left: 2rem; }
.deco-spin-br { bottom: 2.5rem; right: 1.25rem; }

/* ── Navbar ───────────────────────────────────── */
@keyframes slideDown { from { transform: translateY(-80px); } to { transform: translateY(0); } }

#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  animation: slideDown 0.6s ease forwards;
  transition: background-color 0.5s ease, backdrop-filter 0.5s ease, box-shadow 0.5s ease, border-bottom 0.5s ease;
}
#nav-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: nowrap; height: 4rem; }
@media (min-width: 768px) { #nav-inner { height: 5rem; } }

#logo-link { display: flex; flex-direction: column; line-height: 1; text-decoration: none; transition: opacity 0.6s ease; flex-shrink: 0; }
#logo-link:hover { opacity: 0.7; }
#logo-main { font-family: var(--font-display); font-weight: 400; letter-spacing: 0.15em; color: white; transition: color 0.5s ease; }
#logo-sub { font-family: var(--font-label); font-weight: 400; font-size: 0.7rem; letter-spacing: 0.15em; color: rgba(255,255,255,0.7); transition: color 0.5s ease; }

#desktop-nav { display: none; align-items: center; gap: 1.5rem; flex-wrap: nowrap; flex-shrink: 0; }
@media (min-width: 900px) { #desktop-nav { display: flex; } }

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

.nav-link { position: relative; font-family: var(--font-label); font-weight: 500; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; color: white; transition: color 0.3s ease; text-decoration: none; padding: 0.25rem 0; white-space: nowrap; }
.nav-link .nav-ul { position: absolute; bottom: 0; left: 0; height: 2px; width: 0; background: var(--color-brand); transition: width 0.4s ease; }
.nav-link:hover .nav-ul { width: 100%; }
.nav-link:hover { color: rgba(255,255,255,0.8) !important; }
header.scrolled .nav-link { color: #2d4a4a !important; }
header.scrolled .nav-link:hover { color: var(--color-brand) !important; }
header.scrolled .nav-link .nav-ul { background: var(--color-brand); }

#login-btn { display: none; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; border-radius: 0.5rem; background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); border: 1px solid rgba(255,255,255,0.3); font-family: var(--font-label); font-weight: 600; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; text-decoration: none; transition: all 0.3s ease; }
@media (min-width: 768px) { #login-btn { display: flex; } }
#login-btn:hover { background: rgba(255,255,255,0.25) !important; color: white !important; border-color: rgba(255,255,255,0.8) !important; }
header.scrolled #login-btn:hover { background: var(--color-brand) !important; color: white !important; border-color: var(--color-brand) !important; }

#menu-btn { display: block; position: relative; z-index: 61; padding: 0.5rem; background: none; border: none; cursor: pointer; color: white; line-height: 0; }
@media (min-width: 900px) { #menu-btn { display: none; } }

#icon-x { display: none; }

#mobile-menu {
  position: fixed; inset: 0; z-index: 40;
  display: flex; flex-direction: column; justify-content: center;
  padding: 5rem 2.5rem 2.5rem; overflow: hidden;
  background: linear-gradient(135deg, #e4f9f9 0%, #c8f0ef 60%, #dafafa 100%);
  clip-path: circle(0% at calc(100% - 2.5rem) 2.5rem);
  opacity: 0; pointer-events: none;
  transition: clip-path 0.6s cubic-bezier(0.77,0,0.175,1), opacity 0.4s ease;
}
#mobile-menu.open { clip-path: circle(170% at calc(100% - 2.5rem) 2.5rem); opacity: 1; pointer-events: auto; }
body.menu-open #float-cta,
body.menu-open #back-to-top { display: none !important; }
#mobile-menu::before { content: ''; position: absolute; top: -30%; right: -20%; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(10,186,181,0.08) 0%, transparent 70%); pointer-events: none; }
#mobile-menu::after { content: ''; position: absolute; bottom: -20%; left: -15%; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(10,186,181,0.05) 0%, transparent 70%); pointer-events: none; }

#mobile-menu-nav { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 3rem; opacity: 0; transform: translateY(20px); transition: opacity 0.4s ease 0.3s, transform 0.4s ease 0.3s; }
#mobile-menu-reserve { margin-bottom: 1.5rem; opacity: 0; transform: translateY(10px); transition: opacity 0.4s ease 0.38s, transform 0.4s ease 0.38s; }
#mobile-menu-bottom { padding-top: 1.5rem; border-top: 1px solid rgba(45,74,74,0.15); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; opacity: 0; transform: translateY(10px); transition: opacity 0.4s ease 0.45s, transform 0.4s ease 0.45s; }
#mobile-menu.open #mobile-menu-nav,
#mobile-menu.open #mobile-menu-reserve,
#mobile-menu.open #mobile-menu-bottom { opacity: 1; transform: translateY(0); }

.mobile-nav-link { font-family: var(--font-display); font-weight: 400; font-size: 1.25rem; color: #2d4a4a; letter-spacing: 0.05em; text-decoration: none; line-height: 1; position: relative; transition: color 0.3s ease, letter-spacing 0.4s ease; display: inline-block; }
.mobile-nav-link::after { content: ''; position: absolute; left: 0; bottom: -4px; width: 0; height: 1px; background: var(--color-brand); transition: width 0.4s ease; }
.mobile-nav-link:hover { color: var(--color-brand); letter-spacing: 0.1em; }
.mobile-nav-link:hover::after { width: 100%; }

.mobile-reserve-btn { display: block; text-align: center; font-family: var(--font-label); font-weight: 600; font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.9rem 1.5rem; background: var(--color-brand); color: white; border-radius: 0.5rem; text-decoration: none; transition: opacity 0.2s; }
.mobile-reserve-btn:hover { opacity: 0.85; }

.mobile-sns-links { display: flex; gap: 0.75rem; }
.mobile-sns-btn { display: flex; align-items: center; gap: 0.5rem; padding: 0.55rem 1rem; border-radius: 9999px; color: white; font-family: var(--font-label); font-size: 0.65rem; font-weight: 600; letter-spacing: 0.08em; text-decoration: none; transition: opacity 0.2s; }
.mobile-sns-btn:hover { opacity: 0.85; }
.mobile-sns-btn--instagram { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.mobile-sns-btn--line { background: #06C755; }

.mobile-member-btn { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-label); font-weight: 600; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: #2d4a4a; background: rgba(255,255,255,0.5); border: 1px solid rgba(45,74,74,0.3); padding: 0.5rem 1rem; border-radius: 0.5rem; text-decoration: none; transition: all 0.3s ease; }
.mobile-member-btn:hover { background: var(--color-brand); color: white; border-color: var(--color-brand); }

/* ── Footer ──────────────────────────────────── */
.footer { background: #2d4a4a; }
.footer-inner { padding-top: 4rem; padding-bottom: 4rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; margin-bottom: 3rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
.footer-brand { margin-bottom: 1.5rem; }
.footer-logo { font-family: var(--font-display); font-weight: 400; font-size: 2rem; color: var(--color-brand); letter-spacing: 0.15em; line-height: 1.1; margin: 0 0 0.25rem; text-decoration: none; transition: opacity 0.5s ease, color 0.5s ease; display: inline-block; }
.footer-logo:hover { opacity: 0.7; }
.footer-logo-sub { font-family: var(--font-label); font-weight: 400; font-size: 0.7rem; letter-spacing: 0.2em; color: var(--footer-text); margin: 0 0 0.6rem; }
.footer-accent-line { width: 2rem; height: 1px; background: var(--color-brand); }
.footer-desc { font-family: var(--font-body); font-weight: 300; font-size: 0.85rem; color: var(--footer-text); line-height: 1.8; margin: 0; }
.footer-nav-title { font-family: var(--font-label); font-weight: 700; font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--color-brand); margin: 0 0 1.25rem; }
.footer-nav-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-nav-link { font-family: var(--font-body); font-weight: 300; font-size: 0.85rem; color: var(--footer-text); text-decoration: none; transition: color 0.5s ease; position: relative; display: inline-block; }
.footer-nav-link:hover { color: var(--color-brand); }
.footer-nav-link .footer-ul { position: absolute; bottom: 0; left: 0; height: 1px; width: 0; background: var(--color-brand); transition: width 0.5s ease; }
.footer-nav-link:hover .footer-ul { width: 100%; }
.footer-star { color: var(--color-brand); font-size: 0.65em; margin-right: 0.5rem; }
.footer-bottom { padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.15); text-align: center; }
.footer-legal-links { display: flex; justify-content: center; gap: 1.5rem; margin-bottom: 0.75rem; flex-wrap: wrap; }
.footer-legal-links > span { white-space: nowrap; }
.footer-legal-link { font-family: var(--font-body); font-weight: 300; font-size: 0.75rem; color: var(--footer-text); text-decoration: none; transition: color 0.5s ease; position: relative; display: inline-block; }
.footer-legal-link:hover { color: var(--color-brand); }
.footer-legal-link .footer-ul { position: absolute; bottom: 0; left: 0; height: 1px; width: 0; background: var(--color-brand); transition: width 0.5s ease; }
.footer-legal-link:hover .footer-ul { width: 100%; }
.footer-copyright { font-family: var(--font-label); font-weight: 300; font-size: 0.7rem; color: var(--footer-text); letter-spacing: 0.05em; margin: 0; }
.footer-social { display: flex; gap: 1.25rem; margin-top: 1.5rem; align-items: center; }
.footer-social-btn { display: flex; align-items: center; justify-content: center; color: var(--footer-text); text-decoration: none; transition: color 0.5s ease; }
.footer-social-btn:hover { color: var(--color-brand); }
.footer-social-btn svg { width: 20px; height: 20px; }

/* ── Floating buttons ────────────────────────── */
#back-to-top {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 9999;
  width: 3rem; height: 3rem; border-radius: 9999px;
  background: rgba(10,186,181,0.85); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(10,186,181,0.35);
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.3s ease;
  backdrop-filter: blur(4px);
}
#back-to-top.show { opacity: 1; visibility: visible; }
#back-to-top:hover { transform: translateY(-3px); }

#float-cta {
  position: fixed; bottom: 6rem; right: 1.5rem; z-index: 40;
  display: flex; align-items: center; gap: 0.6rem;
  border-radius: 99px; padding: 0.85rem 1.5rem;
  font-family: var(--font-label); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em;
  text-decoration: none;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s, transform 0.2s, box-shadow 0.2s;
}
#float-cta:hover { transform: translateY(-2px); }
#float-cta.show { opacity: 1; pointer-events: auto; }
#float-cta.login-style { background: var(--color-brand); color: #fff; box-shadow: 0 4px 24px rgba(10,186,181,0.4); }
#float-cta.login-style:hover { box-shadow: 0 8px 32px rgba(10,186,181,0.5); }
#float-cta.member-style { background: #fff; color: #374151; border: 1px solid #e0f0ef; box-shadow: 0 4px 24px rgba(0,0,0,0.12); }
#float-cta.member-style:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.16); }
.float-cta-avatar { width: 2rem; height: 2rem; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.float-cta-avatar-placeholder { width: 2rem; height: 2rem; border-radius: 50%; background: #e0f5f5; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 0.9rem; }
.float-cta-text { font-size: 0.75rem; line-height: 1.4; }
.float-cta-name { display: block; font-weight: 600; color: var(--color-brand); }
.float-cta-greeting { color: #9ca3af; }

/* ── Salon page ───────────────────────────────── */
.info-card { border-radius: 0.75rem; overflow: hidden; box-shadow: 0 4px 30px rgba(10,186,181,0.1); border: 1px solid #e0f0ef; }
.info-row { display: flex; align-items: stretch; border-bottom: 1px solid #e0f0ef; }
.info-row:last-child { border-bottom: none; }
.info-label { background: var(--color-heading); color: #81d8d0; font-family: var(--font-label); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 1rem 1.25rem; display: flex; align-items: center; min-width: 6rem; flex-shrink: 0; }
.info-value { padding: 1rem 1.25rem; display: flex; align-items: center; font-size: 0.95rem; color: var(--color-heading); line-height: 1.7; }
.info-value-sm { font-size: 0.9rem; color: #4a6a6a; }
.info-primary-value { font-weight: 600; font-size: 1.05rem; }
.info-hint { font-size: 0.82rem; color: var(--color-muted); margin-left: 0.5rem; }
.info-address { font-weight: 600; margin-bottom: 0.25rem; }
.info-sub { font-size: 0.88rem; color: #4a7a7a; }
.info-warn { font-size: 0.82rem; color: #c0392b; font-weight: 500; margin-top: 0.4rem; }
.img-frame { border-radius: 0.75rem; overflow: hidden; box-shadow: 0 8px 40px rgba(10,186,181,0.12); }
.img-frame img { width: 100%; display: block; object-fit: cover; }
#therapist-photo { width: 180px; height: 180px; float: right; margin: 0 0 1.5rem 2rem; overflow: hidden; flex-shrink: 0; }
#therapist-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
@media (min-width: 640px) { #therapist-photo { width: 240px; height: 240px; } }
#therapist-card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 8px 40px rgba(10,186,181,0.12);
  border: 1px solid #e0f0ef;
  padding: 2.5rem 2rem;
  overflow: hidden;
}
.therapist-role { font-family: var(--font-label); font-weight: 600; font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-brand); margin: 0 0 0.75rem; }
.therapist-name-ja { font-family: var(--font-body); font-weight: 400; font-size: 1.7rem; letter-spacing: 0.1em; color: var(--color-heading); margin: 0 0 0.3rem; }
.therapist-name-en { font-family: var(--font-label); font-weight: 300; font-size: 0.85rem; letter-spacing: 0.15em; color: var(--color-muted); margin: 0 0 1.5rem; }
.therapist-divider { width: 2.5rem; height: 2px; background: var(--color-brand); margin-bottom: 1.5rem; }
.therapist-career { font-family: var(--font-body); font-weight: 500; font-size: 0.95rem; letter-spacing: 0.05em; color: var(--color-brand); margin: 0 0 0.75rem; }
.therapist-body { font-family: var(--font-body); font-weight: 300; font-size: 1rem; line-height: 2; color: #4a6a6a; margin: 0 0 1.25rem; }
.therapist-body strong { font-weight: 500; color: var(--color-heading); }
.therapist-closing { font-family: var(--font-body); font-weight: 500; font-size: 1rem; line-height: 1.9; color: var(--color-heading); margin: 0 0 1.5rem; }
.therapist-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; clear: both; }
.therapist-tag { display: inline-block; font-family: var(--font-body); font-size: 0.8rem; font-weight: 400; color: var(--color-heading); background: #e8f7f7; border-radius: 9999px; padding: 0.3rem 0.85rem; }

/* ── QA page ──────────────────────────────────── */
details.qa-item, div.qa-item { border: 1px solid #e0f0ef; border-radius: 0.5rem; margin-bottom: 0.75rem; overflow: hidden; background: white; box-shadow: 0 2px 12px rgba(10,186,181,0.05); transition: box-shadow 0.3s ease; }
details.qa-item:hover, div.qa-item:hover { box-shadow: 0 4px 20px rgba(10,186,181,0.12); }
details.qa-item[open], div.qa-item.open { border-color: var(--color-brand); }
summary.qa-question, button.qa-question { display: flex; align-items: flex-start; gap: 0.75rem; padding: 1.1rem 1.25rem; cursor: pointer; font-family: var(--font-body); font-weight: 500; font-size: 1.05rem; color: var(--color-heading); list-style: none; line-height: 1.6; }
button.qa-question { width: 100%; background: none; border: none; text-align: left; }
summary.qa-question::-webkit-details-marker { display: none; }
div.qa-item.open .qa-arrow { transform: rotate(90deg); }
.qa-q-badge { flex-shrink: 0; width: 1.75rem; height: 1.75rem; border-radius: 9999px; background: var(--color-brand); color: white; font-family: var(--font-label); font-size: 0.75rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.qa-question-text { flex: 1; }
.qa-arrow { flex-shrink: 0; color: #7aadad; transition: transform 0.25s ease; margin-top: 3px; font-size: 1.1rem; }
details.qa-item[open] .qa-arrow { transform: rotate(90deg); }
.qa-answer { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.875rem 1.25rem 1.25rem; border-top: 1px solid #e0f0ef; background: #f8fefe; }
.qa-a-label { flex-shrink: 0; width: 1.75rem; height: 1.75rem; border-radius: 9999px; background: var(--color-heading); color: white; font-family: var(--font-label); font-size: 0.75rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.qa-a-text { flex: 1; font-size: 1rem; color: var(--color-text); line-height: 1.9; }
.qa-answer-wrap { overflow: hidden; max-height: 0; opacity: 0; transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1), opacity 0.35s ease; }
.qa-answer-wrap.open { opacity: 1; }
.form-input { width: 100%; padding: 0.75rem 1rem; background: #f0fafa; border: 1px solid #e0f0ef; border-radius: 0.5rem; font-family: var(--font-body); font-weight: 300; font-size: 0.875rem; color: var(--color-heading); }
.form-input:focus { border-color: var(--color-heading); outline: none; box-shadow: 0 0 0 2px rgba(45,74,74,0.08); }
textarea.form-input { resize: vertical; min-height: 130px; }
.contact-label { font-family: var(--font-body); font-weight: 500; font-size: 0.95rem; letter-spacing: 0.02em; color: var(--color-heading); display: block; margin-bottom: 0.5rem; }
.contact-submit { font-family: var(--font-body); font-weight: 600; font-size: 1rem; letter-spacing: 0.05em; display: block; width: 100%; padding: 1rem; border-radius: 0.5rem; background: var(--color-heading); color: white; border: none; cursor: pointer; transition: background 0.3s ease; }
.contact-submit:hover { background: var(--color-brand); }
.form-card { background: white; border-radius: 0.75rem; padding: 2rem; box-shadow: 0 8px 40px rgba(10,186,181,0.1); border: 1px solid #e0f0ef; }
.form-intro { font-weight: 300; font-size: 0.9rem; color: var(--color-muted); margin-bottom: 1.5rem; text-align: center; }
#contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-error { background: #fff5f5; border: 1px solid #f5c6c6; border-radius: 0.5rem; padding: 0.875rem 1rem; font-size: 0.875rem; color: #c0392b; margin-bottom: 1rem; }
.req { color: var(--color-heading); }
.section-header-desc { font-weight: 300; font-size: 0.95rem; color: var(--color-muted); line-height: 1.8; margin-bottom: 1.5rem; }
.check-icon { width: 3.5rem; height: 3.5rem; border-radius: 9999px; background: linear-gradient(135deg, #0ABAB5, #06c755); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.modal-box .check-icon { margin-bottom: 1.25rem; }
.contact-sent { text-align: center; padding: 2rem 0; }
.contact-sent-title { font-weight: 500; font-size: 1rem; color: var(--color-heading); margin-bottom: 0.5rem; }
.contact-sent-body { font-weight: 300; font-size: 0.875rem; color: var(--color-muted); }
.contact-login-text { font-weight: 300; font-size: 0.9rem; color: var(--color-muted); line-height: 1.9; margin-bottom: 1.75rem; text-align: center; }
.modal-title { font-family: var(--font-heading); font-weight: 600; font-size: 1.2rem; color: var(--color-heading); margin-bottom: 0.75rem; }
.modal-body { font-weight: 300; font-size: 0.875rem; color: var(--color-muted); line-height: 1.8; margin-bottom: 1.5rem; }
.modal-close-btn { display: block; width: 100%; background: var(--color-heading); color: white; border: none; border-radius: 0.5rem; padding: 0.875rem; font-family: var(--font-label); font-weight: 600; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; transition: background 0.3s; }
.modal-close-btn:hover { background: var(--color-brand); }
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.45); z-index: 1000; align-items: center; justify-content: center; }
.modal-overlay.show { display: flex; }
.modal-box { background: white; border-radius: 1rem; padding: 2.5rem 1.75rem 1.75rem; max-width: 320px; width: 90%; text-align: center; box-shadow: 0 8px 40px rgba(0,0,0,0.18); animation: modalIn .25s ease; }
@keyframes modalIn { from { transform: scale(.88); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* ── Legal pages ──────────────────────────────── */
.legal-section { margin-bottom: 3rem; }
.legal-section h2 { font-family: var(--font-body); font-weight: 500; font-size: 1.05rem; color: var(--color-heading); border-left: 3px solid var(--color-brand); padding-left: 0.875rem; margin: 0 0 1rem; }
.legal-section p, .legal-section li { font-family: var(--font-body); font-weight: 300; font-size: 0.95rem; color: var(--color-text); line-height: 1.9; margin: 0 0 0.75rem; }
.legal-section ul { padding-left: 1.25rem; margin: 0 0 0.75rem; }
.legal-section li { margin: 0 0 0.4rem; }
.legal-updated { font-family: var(--font-label); font-size: 0.75rem; color: #9aacac; letter-spacing: 0.05em; margin-bottom: 2.5rem; }

/* ── Hero section ──────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(20,50,50,0.65) 0%, rgba(10,30,30,0.45) 50%, rgba(30,60,50,0.35) 100%);
}
.hero-fade-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 6rem;
  z-index: 1;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.15));
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 5rem;
  padding-bottom: 7rem;
}
.hero-label { color: rgba(255,255,255,0.75); margin-bottom: 1.5rem; }
.hero-heading {
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  line-height: 1.1;
  color: white;
  margin-bottom: 1.5rem;
}
.hero-heading em { font-style: italic; color: #81d8d0; }
.hero-divider {
  height: 1px;
  margin-bottom: 2rem;
  max-width: 20rem;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.6), transparent);
}
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.btn-hero-primary {
  color: white;
  border-color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  text-decoration: none;
  transition: all 0.6s ease !important;
}
.btn-hero-primary:hover { background: rgba(255,255,255,0.9) !important; color: #0ABAB5 !important; border-color: rgba(255,255,255,0.9) !important; }
.btn-hero-secondary {
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.5);
  background: transparent;
  transition: all 0.6s ease !important;
}
.btn-hero-secondary:hover { background: rgba(255,255,255,0.9) !important; color: #2d4a4a !important; border-color: rgba(255,255,255,0.9) !important; }
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  animation: bounceY 1.5s ease-in-out infinite;
}
.hero-scroll-label { font-size: 0.55rem; color: rgba(255,255,255,0.5); }

/* ── Background utilities ──────────────────────── */
.bg-dark-teal  { background: rgba(45,74,74,0.82); }
.bg-light-teal { background: rgba(255,255,255,0.88); }
.bg-teal-mint  { background: rgba(180,235,235,0.5); }
.bg-dark-teal .label-mono      { color: rgba(255,255,255,0.6); }
.bg-dark-teal .heading-display { color: white; }
.bg-dark-teal .body-text       { color: rgba(255,255,255,0.75); }

/* ── Deco stars ────────────────────────────────── */
.deco-star { position: absolute; font-size: 3rem; opacity: 0.06; pointer-events: none; }
.deco-star-tr { top: 1.5rem; right: 2rem; animation: spinCW 20s linear infinite; }
.deco-star-bl { bottom: 1.5rem; left: 2rem; animation: spinCCW 20s linear infinite; }

/* ── Hero subtitle ─────────────────────────────── */
.hero-subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
  margin-bottom: 3rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 500px) {
  .hero-subtitle { font-size: 1.05rem; text-align: center; padding-left: 0; padding-right: 0; }
}


/* ── Service cards ─────────────────────────────── */
.svc-compact-item { display: flex; align-items: center; gap: 1.25rem; padding: 1.1rem 1.5rem; background: white; }
.svc-compact-actions { flex-shrink: 0; display: flex; align-items: center; gap: 0.5rem; }
@media (max-width: 499px) {
  .svc-compact-item { flex-wrap: wrap; padding: 1rem 1.25rem; }
  .svc-compact-actions { display: grid; grid-template-columns: 1fr auto 1fr; width: 100%; align-items: center; }
  .svc-compact-actions > button { grid-column: 2; justify-self: center; }
  .svc-compact-actions > a      { grid-column: 3; justify-self: end; }
}
.card-lift { transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }
.card-lift:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(10,186,181,0.15) !important; }
.svc-img  { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.svc-icon { transition: transform 0.3s ease; }
.svc-card:hover .svc-img  { transform: scale(1.05); }
.svc-card:hover .svc-icon { transform: scale(1.1); }

/* ── Feature rows ──────────────────────────────── */
#features, #mystory { scroll-margin-top: 5rem; padding-top: 6rem; padding-bottom: 6rem; }
.feat-list { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 4rem; }
.feat-text { flex: 1; min-width: 0; }
.feat-text .body-text { margin: 0; }
.feat-num { color: var(--color-brand); margin-bottom: 0.75rem; }
.feat-title { font-size: clamp(1.2rem, 2.5vw, 1.5rem); color: var(--color-heading); margin: 0 0 1rem; line-height: 1.35; }
.feat-row { display: flex; gap: 3rem; align-items: flex-start; margin-bottom: 3.5rem; }
.feat-row:last-child { margin-bottom: 0; }
.feat-row.feat-reverse { flex-direction: row-reverse; }
.feat-img { flex: 0 0 320px; height: 240px; border-radius: 0.75rem; overflow: hidden; position: relative; background: #e0f0ef; }
.feat-img-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(0.92); transition: transform 0.6s ease; }
.feat-img:hover .feat-img-bg { transform: scale(1.06); }
@media (max-width: 768px) {
  .feat-row, .feat-row.feat-reverse { flex-direction: column; }
  .feat-img { flex: none; width: 100%; height: 200px; }
}

/* ── Blog grid ─────────────────────────────────── */
@media (min-width: 1024px) { .blog-span2 { grid-row: span 2; } }

/* ── Social button ─────────────────────────────── */
.social-btn { transition: background 0.3s ease; }
.social-btn:hover { background: rgba(255,255,255,0.1) !important; }

/* ── Keyframes ─────────────────────────────────── */
@keyframes bounceY {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Thin scrollbar ────────────────────────────── */
.scrollbar-thin { scrollbar-width: thin; scrollbar-color: #c8dede transparent; }
.scrollbar-thin::-webkit-scrollbar { width: 4px; }
.scrollbar-thin::-webkit-scrollbar-track { background: transparent; }
.scrollbar-thin::-webkit-scrollbar-thumb { background: #c8dede; border-radius: 9999px; }
.scrollbar-thin::-webkit-scrollbar-thumb:hover { background: #7aadad; }

/* ── CTA Bar ──────────────────────────────────── */
.cta-bar { padding: 4rem 0; position: relative; overflow: hidden; }
.cta-inner { display: flex; flex-direction: column; align-items: center; gap: 2rem; text-align: center; }
.cta-heading { font-size: clamp(1rem, 5.5vw, 2.4rem); color: white; margin: 0 0 1rem; line-height: 1.3; }
.cta-body { font-weight: 300; font-size: 0.9rem; color: white; line-height: 1.9; margin: 0; }
.btn-cta { color: white; border-color: rgba(255,255,255,0.6); text-decoration: none; }
.btn-cta:hover { background: rgba(255,255,255,0.2) !important; opacity: 1 !important; }

/* ── Owner Message section ────────────────────── */
#owner {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 5rem;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.section-bg-img { position: absolute; inset: 0; z-index: -2; }
.section-bg-img > img { width: 100%; height: 100%; object-fit: cover; }
.section-bg-deco { position: absolute; inset: 0; z-index: 0; opacity: 0.05; }
.section-bg-deco > img { width: 100%; height: 100%; object-fit: cover; }
.owner-overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to bottom, rgba(255,255,255,0.93), rgba(245,250,250,0.95));
}
.owner-inner { max-width: 56rem; margin: 0 auto; text-align: center; }
.owner-label { color: var(--color-heading); margin-bottom: 2rem; }
.owner-block { margin-bottom: 3rem; }
.owner-block .accent-line { margin-bottom: 2rem; }
.owner-heading {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--color-heading);
  line-height: 1.3;
  margin-bottom: 1.5rem;
}
.owner-heading em { font-style: italic; color: var(--color-brand); }
.owner-body { font-size: 1.15rem; line-height: 2; color: var(--color-heading); max-width: 700px; margin: 0 auto; }
.highlight { font-weight: 500; color: var(--color-heading); background: linear-gradient(transparent 55%, rgba(10,186,181,0.25) 55%); }
.owner-byline { display: flex; flex-direction: column; align-items: center; gap: 0.6rem; padding-top: 1rem; }
.owner-name-group { display: flex; flex-direction: column; align-items: center; gap: 0.1rem; }
.owner-name-brand { font-family: var(--font-display); font-weight: 400; font-size: 1.6rem; letter-spacing: 0.15em; color: var(--color-brand); line-height: 1.2; margin: 0; }
.owner-name-title { font-weight: 300; font-size: 0.75rem; letter-spacing: 0.2em; color: var(--color-muted); line-height: 1.4; margin: 0; }
.owner-divider { width: 2rem; height: 1px; background: var(--color-brand); margin: 0.2rem 0; }
.owner-name { font-weight: 400; font-size: 1rem; letter-spacing: 0.12em; color: var(--color-heading); }

/* ── Contact section ─────────────────────────── */
#contact { scroll-margin-top: 5rem; padding-top: 6rem; padding-bottom: 6rem; position: relative; overflow: hidden; }
#contact .accent-line { margin-bottom: 1.5rem; }
#contact .section-header .heading-display { margin-bottom: 1rem; }
.contact-intro { max-width: 600px; margin: 0 auto; font-weight: 400; color: var(--color-heading); }
.contact-cta { text-align: center; }
.btn-contact { color: var(--color-heading); border-color: var(--color-heading); font-size: 0.875rem; text-decoration: none; transition: all 0.6s ease !important; }
.btn-contact:hover { background: var(--color-heading) !important; color: white !important; opacity: 1 !important; }

/* ── Members section ─────────────────────────── */
#members { position: relative; overflow: hidden; scroll-margin-top: 5rem; padding-top: 6rem; padding-bottom: 6rem; }
#members-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: start; }
.members-label { color: var(--color-brand); margin-bottom: 1rem; }
.members-heading { font-size: clamp(2.2rem, 4vw, 3.2rem); color: white; line-height: 1.15; margin-bottom: 2rem; }
.members-benefits { display: flex; flex-direction: column; gap: 1.5rem; }
.members-benefit-item { display: flex; gap: 1rem; }
.members-icon { width: 3rem; height: 3rem; border-radius: 9999px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; background: var(--color-brand); }
.members-benefit-title { font-family: var(--font-heading); font-weight: 600; font-size: 1.1rem; color: white; margin: 0 0 0.25rem; }
.members-benefit-body { font-weight: 300; font-size: 0.9rem; color: rgba(255,255,255,0.7); margin: 0; }
.members-card { border-radius: 0.5rem; padding: 2rem; background: white; box-shadow: 0 20px 60px rgba(10,186,181,0.2); }
.members-card-heading { font-size: 1.8rem; color: var(--color-heading) !important; margin: 0 0 0.5rem; }
.members-card-sub { font-weight: 400; font-size: 0.9rem; color: var(--color-heading); margin: 0 0 1.5rem; }
.members-btn-brand {
  display: block; width: 100%; padding: 0.875rem; border-radius: 0.5rem;
  background: var(--color-brand); color: white;
  font-family: var(--font-label); font-weight: 600; font-size: 0.875rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  border: none; cursor: pointer; text-align: center; text-decoration: none;
  margin-bottom: 0.75rem; transition: background 0.2s, box-shadow 0.2s;
}
.members-btn-brand:hover { background: #089e9a; box-shadow: 0 4px 16px rgba(10,186,181,0.4); }
.members-btn-dark {
  display: block; width: 100%; padding: 0.875rem; border-radius: 0.5rem;
  background: var(--color-heading); color: white;
  font-family: var(--font-label); font-weight: 600; font-size: 0.875rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  border: none; cursor: pointer; text-align: center; text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
}
.members-btn-dark:hover { background: #1a3333; box-shadow: 0 4px 16px rgba(45,74,74,0.4); }
.members-btn-line {
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
  width: 100%; padding: 0.875rem; border-radius: 0.5rem;
  background: #06C755; color: white;
  font-weight: 600; font-size: 0.9rem; letter-spacing: 0.05em;
  border: none; cursor: pointer; text-decoration: none;
  margin-bottom: 1rem; transition: opacity 0.2s;
}
.members-btn-line:hover { opacity: 0.75; }
.members-card-note { font-weight: 300; font-size: 0.75rem; color: #9ca3af; text-align: center; margin: 0; }

/* ── Services section ─────────────────────────── */
#services { scroll-margin-top: 5rem; padding-top: 6rem; padding-bottom: 6rem; }
#svc-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; max-width: 64rem; margin: 0 auto; }
.svc-card {
  border-radius: 0.75rem; overflow: hidden;
  background: white; border: 1px solid #e0f0ef;
  box-shadow: 0 4px 20px rgba(10,186,181,0.06);
  display: flex; flex-direction: column;
}
.svc-img-wrap { position: relative; overflow: hidden; height: 220px; flex-shrink: 0; }
.svc-img-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 40%, rgba(15,60,60,0.5) 100%); }
.svc-img-caption { position: absolute; bottom: 1rem; left: 1.25rem; right: 1.25rem; }
.svc-card-name { font-size: 1.25rem; color: white; line-height: 1.3; margin: 0 0 0.35rem; text-shadow: 0 1px 4px rgba(0,0,0,0.3); }
.svc-card-body { padding: 1.25rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.svc-card-note { margin: 0 0 1.25rem; flex: 1; }
.svc-price-row { display: flex; align-items: center; justify-content: space-between; padding: 0.875rem 1rem; background: #f0fafa; border-radius: 0.5rem; margin-bottom: 1rem; }
.svc-price-label { font-size: 0.7rem; color: var(--color-brand); font-weight: 600; letter-spacing: 0.06em; }
.svc-price-value { font-size: 1.1rem; font-weight: 700; color: var(--color-heading); }

/* ── Service compact list ─────────────────────── */
.svc-full-width { grid-column: 1 / -1; }
.svc-list { border-radius: 0.75rem; overflow: hidden; border: 1px solid #e0f0ef; box-shadow: 0 4px 24px rgba(10,186,181,0.08); }
.svc-compact-item + .svc-compact-item { border-top: 1px solid #e0f0ef; }
.svc-thumb { flex-shrink: 0; width: 3.5rem; height: 3.5rem; border-radius: 0.5rem; overflow: hidden; }
.svc-thumb > img { width: 100%; height: 100%; object-fit: cover; display: block; }
.svc-name-btn { flex: 1; min-width: 0; text-align: left; background: none; border: none; padding: 0; cursor: pointer; transition: opacity 0.15s; }
.svc-name-btn:hover { opacity: 0.65; }
.svc-item-name { font-weight: 500; font-size: 0.95rem; color: var(--color-heading); margin: 0 0 0.2rem; line-height: 1.4; }
.btn-detail {
  font-size: 0.75rem; font-weight: 500; color: var(--color-heading);
  background: white; border: 1.5px solid #c0d8d8; border-radius: 0.375rem;
  padding: 0.45rem 0.875rem; cursor: pointer; white-space: nowrap;
  transition: border-color 0.2s, background 0.2s;
}
.btn-detail:hover { border-color: var(--color-brand); background: #f0fafa; }
.btn-arrow {
  display: flex; align-items: center; justify-content: center;
  width: 2rem; height: 2rem; border-radius: 9999px;
  background: var(--color-brand); color: white;
  font-size: 1.1rem; font-weight: 700;
  text-decoration: none; flex-shrink: 0; transition: opacity 0.2s;
}
.btn-arrow:hover { opacity: 0.8; }

/* ── Menu modal ───────────────────────────────── */
#menu-modal {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.45);
  align-items: center; justify-content: center; padding: 1rem;
}
#menu-modal-inner {
  background: white; border-radius: 1rem;
  max-width: 480px; width: 100%; max-height: 90vh; overflow-y: auto;
  box-shadow: 0 8px 48px rgba(0,0,0,0.2); animation: modalIn .22s ease;
}
.mm-img-wrap { position: relative; }
#mm-image { width: 100%; height: 180px; object-fit: cover; border-radius: 1rem 1rem 0 0; display: block; }
#mm-close {
  position: absolute; top: 0.75rem; right: 0.75rem;
  width: 2rem; height: 2rem; border-radius: 9999px;
  background: rgba(0,0,0,0.45); border: none; cursor: pointer;
  color: white; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center; line-height: 1;
}
.mm-body { padding: 1.5rem 1.75rem 2rem; }
