/* ===== FLOATING CONTACT ===== */
.float-contact {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.float-toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(37,99,235,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.float-toggle:hover { background: var(--primary-dark); transform: scale(1.08); }
.float-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.25s, transform 0.25s;
}
.float-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.float-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 32px;
  padding: 10px 18px 10px 12px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--text);
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  white-space: nowrap;
  transition: box-shadow 0.2s, transform 0.2s;
}
.float-item:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.18); transform: translateX(-4px); }
.float-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}
.float-line .float-icon { background: #06C755; color: #fff; }
.float-phone .float-icon { background: var(--primary); color: #fff; }
.float-item button { border: none; background: none; cursor: pointer; font: inherit; padding: 0; }

/* Phone modal */
.phone-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
}
.phone-modal-overlay.open { display: flex; }
.phone-modal {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 36px 40px;
  text-align: center;
  position: relative;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
  min-width: 280px;
}
.phone-modal-close {
  position: absolute;
  top: 12px; right: 14px;
  background: none; border: none;
  font-size: 1.1rem; cursor: pointer;
  color: var(--text-muted);
}
.phone-modal-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.phone-modal-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.phone-modal-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
}

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

:root {
  /* Brand */
  --blue-50:  #EFF6FF;
  --blue-100: #DBEAFE;
  --blue-200: #BFDBFE;
  --blue-500: #3B82F6;
  --blue-600: #2563EB;
  --blue-700: #1D4ED8;
  --blue-900: #1E3A5F;

  --teal-400: #2DD4BF;
  --teal-500: #14B8A6;

  /* Semantic */
  --primary:       var(--blue-600);
  --primary-dark:  var(--blue-700);
  --primary-bg:    var(--blue-50);
  --primary-soft:  var(--blue-100);

  /* Neutral */
  --gray-50:  #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-700: #334155;
  --gray-900: #0F172A;

  /* Text */
  --text:       var(--gray-900);
  --text-mid:   var(--gray-700);
  --text-muted: var(--gray-500);

  /* Surface */
  --surface:     #FFFFFF;
  --surface-alt: var(--gray-50);
  --border:      var(--gray-200);

  /* LINE */
  --line: #06C755;

  /* Spacing */
  --r-sm: 8px;
  --r:    14px;
  --r-lg: 20px;
  --r-xl: 28px;

  /* Shadow — very subtle */
  --shadow-xs: 0 1px 3px rgba(15,23,42,0.06), 0 1px 2px rgba(15,23,42,0.04);
  --shadow-sm: 0 2px 8px rgba(15,23,42,0.07), 0 1px 3px rgba(15,23,42,0.05);
  --shadow-md: 0 4px 20px rgba(15,23,42,0.08), 0 2px 6px rgba(15,23,42,0.04);
  --shadow-lg: 0 8px 40px rgba(15,23,42,0.10), 0 4px 12px rgba(15,23,42,0.05);

  --transition: 0.2s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Prompt', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--surface);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
svg { display: block; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
}

.section      { padding: 48px 0; }
.section-alt  { background: var(--surface-alt); }

/* ===== TAG / EYEBROW ===== */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}
.tag::before {
  content: '';
  display: block;
  width: 18px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

/* ===== SECTION HEADER ===== */
.section-header {
  max-width: 600px;
  margin: 0 auto 40px;
  text-align: center;
}
.section-header h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 14px;
}
.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--r);
  font-family: 'Prompt', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  line-height: 1;
}
.btn svg { width: 17px; height: 17px; flex-shrink: 0; }

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 2px 8px rgba(37,99,235,0.25);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(37,99,235,0.32);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--blue-200);
}
.btn-outline:hover {
  background: var(--primary-bg);
  border-color: var(--primary);
}

.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.25);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.5);
}

.btn-line {
  background: var(--line);
  color: #fff;
  border-color: var(--line);
  box-shadow: 0 2px 8px rgba(6,199,85,0.22);
}
.btn-line:hover {
  background: #05a847;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(6,199,85,0.30);
}
.btn-full { width: 100%; }


/* ===================================================
   HEADER
=================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

/* Logo — crop white space around the BodySync wordmark (PNG 3780×3780) */
.logo {
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 180px;
  height: 110px;
  flex-shrink: 0;
}
.logo-img {
  width: 180px;
  height: auto;
  flex-shrink: 0;
  margin-top: -28px;
  mix-blend-mode: multiply;
}
.footer-logo-img {
  width: 190px;
  height: auto;
  flex-shrink: 0;
  margin-top: -37px;
  mix-blend-mode: normal;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

/* Nav */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 2px;
}
.main-nav a {
  padding: 7px 14px;
  border-radius: var(--r-sm);
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--text-mid);
  transition: all var(--transition);
}
.main-nav a:hover { color: var(--primary); background: var(--primary-bg); }
.main-nav a.active { color: var(--primary); font-weight: 500; }
.nav-cta {
  margin-left: 8px;
  padding: 8px 18px !important;
  background: var(--primary) !important;
  color: #fff !important;
  border-radius: var(--r-sm) !important;
  font-weight: 500 !important;
  box-shadow: 0 2px 6px rgba(37,99,235,0.22);
}
.nav-cta:hover {
  background: var(--primary-dark) !important;
  color: #fff !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--r-sm);
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ===================================================
   HERO
=================================================== */
.hero {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}

/* decorative blobs */
.hero::before, .hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero::before {
  width: 600px; height: 600px;
  background: rgba(37,99,235,0.06);
  top: -200px; right: -100px;
}
.hero::after {
  width: 400px; height: 400px;
  background: rgba(20,184,166,0.06);
  bottom: -100px; left: 0;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  min-height: 520px;
  padding: 64px 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-bg);
  border: 1px solid var(--blue-200);
  border-radius: 100px;
  padding: 5px 14px 5px 8px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 24px;
}
.hero-eyebrow-dot {
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

.hero-text h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 20px;
}
.hero-text h1 em {
  font-style: normal;
  color: var(--primary);
}

.hero-text p {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 440px;
  line-height: 1.8;
  margin-bottom: 36px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.trust-num {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.trust-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 300;
}
.trust-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* Hero visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Hero slideshow */
.hero-slideshow {
  position: relative;
  width: 100%;
  max-width: 600px;
  aspect-ratio: 4/3;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hslide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.hslide.active {
  opacity: 1;
}
.hslide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-card-stack {
  position: relative;
  width: 100%;
  max-width: 380px;
}
.hcard {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px;
  box-shadow: var(--shadow-md);
}
.hcard-main {
  position: relative;
  z-index: 2;
}
.hcard-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ECFDF5;
  color: #059669;
  border: 1px solid #A7F3D0;
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 18px;
}
.hcard-badge-dot { width: 6px; height: 6px; background: #10B981; border-radius: 50%; }
.hcard-title { font-size: 0.85rem; font-weight: 500; color: var(--text-muted); margin-bottom: 8px; }
.hcard-services {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}
.hcard-service {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: var(--gray-50);
  border-radius: var(--r-sm);
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text-mid);
}
.hcard-service-icon {
  width: 30px; height: 30px;
  background: var(--primary-bg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.hcard-service-icon svg { width: 15px; height: 15px; }
.hcard-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.hcard-footer-label { font-size: 0.78rem; color: var(--text-muted); }
.hcard-footer-value { font-size: 0.88rem; font-weight: 600; color: var(--primary); text-decoration: none; }
.hcard-footer-value:hover { text-decoration: underline; }

.hcard-float {
  position: absolute;
  right: -20px;
  bottom: -20px;
  z-index: 3;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}
.hcard-float-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--teal-500));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.hcard-float-icon svg { width: 18px; height: 18px; }
.hcard-float-text { font-size: 0.82rem; }
.hcard-float-text strong { display: block; font-weight: 600; color: var(--text); line-height: 1.2; }
.hcard-float-text span { color: var(--text-muted); font-weight: 300; }

/* back decoration card */
.hcard-bg {
  position: absolute;
  inset: 0;
  transform: rotate(-4deg) translateY(12px) translateX(8px);
  background: var(--primary-bg);
  border: 1px solid var(--blue-200);
  border-radius: var(--r-xl);
  z-index: 1;
}


/* ===================================================
   THERAPIST SECTION
=================================================== */
.therapist-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}

.therapist-photo-wrap { position: relative; }

.therapist-photo-bg {
  position: absolute;
  width: 78%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--blue-50), var(--blue-100));
  border-radius: var(--r-xl);
  top: 20px; left: 20px;
  border: 1px solid var(--blue-200);
}

.therapist-photo-box {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* when real photo is added: img inside will fill this */
.therapist-photo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.therapist-photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.85rem;
}
.therapist-photo-placeholder svg { width: 80px; height: 80px; }

.therapist-badge-float {
  position: absolute;
  bottom: -16px;
  left: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
}
.therapist-badge-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--primary), var(--teal-500));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.therapist-badge-icon svg { width: 18px; height: 18px; }
.therapist-badge-float strong { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text); }
.therapist-badge-float span  { font-size: 0.75rem; color: var(--text-muted); }

/* text side */
.therapist-content .tag { margin-bottom: 14px; }
.therapist-content h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}
.therapist-intro {
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 28px;
  font-size: 0.97rem;
}

.cred-list { display: flex; flex-direction: column; gap: 16px; }
.cred-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--r);
  transition: all var(--transition);
}
.cred-item:hover { border-color: var(--blue-200); background: var(--blue-50); }
.cred-icon {
  width: 42px; height: 42px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.cred-icon svg { width: 19px; height: 19px; }
.cred-item strong { display: block; font-size: 0.93rem; font-weight: 600; color: var(--text); margin-bottom: 3px; }
.cred-item p { font-size: 0.83rem; color: var(--text-muted); font-weight: 300; }

@media (max-width: 768px) {
  .therapist-layout { grid-template-columns: 1fr; }
  .therapist-photo-wrap { max-width: 320px; margin: 0 auto 40px; }
}

/* ===================================================
   SERVICES
=================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.svc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 24px 22px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 44px 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  align-items: center;
}
.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--teal-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.svc-card:hover {
  border-color: var(--blue-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.svc-card:hover::after { transform: scaleX(1); }


.svc-chip {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.2);
}

.svc-icon {
  width: 44px; height: 44px;
  background: var(--primary-bg);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.svc-icon svg { width: 20px; height: 20px; }

.svc-card h3 {
  font-size: 0.97rem;
  font-weight: 600;
  margin-bottom: 0;
  color: var(--text);
  grid-column: 2;
  grid-row: 1;
  align-self: center;
}
.svc-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
  grid-column: 1 / -1;
  grid-row: 2;
  margin-top: 12px;
}


/* ===================================================
   CONDITIONS
=================================================== */
.conditions-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 960px;
  margin: 0 auto;
}
.condition-pill {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 13px 16px;
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text-mid);
  text-align: center;
  transition: all var(--transition);
  cursor: default;
}
.condition-pill:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-bg);
}


/* ===================================================
   ABOUT
=================================================== */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-visual-wrap { position: relative; }
.about-bg-square {
  width: 75%;
  aspect-ratio: 1;
  background: var(--primary-bg);
  border-radius: var(--r-xl);
  position: absolute;
  top: 20px; left: 20px;
  border: 1px solid var(--blue-200);
}
.about-photo-box {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 16px;
  aspect-ratio: 4/3;
}
.about-photo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-stat-row {
  display: flex;
  gap: 12px;
}
.about-stat {
  flex: 1;
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 16px;
  text-align: center;
}
.about-stat-n { font-size: 1.6rem; font-weight: 700; color: var(--primary); line-height: 1; }
.about-stat-l { font-size: 0.75rem; color: var(--text-muted); margin-top: 4px; }

/* about text side */
.about-content .tag { margin-bottom: 14px; }
.about-content h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.3;
}
.about-content p {
  font-size: 0.97rem;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 14px;
  line-height: 1.8;
}
.about-checklist {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.93rem;
  font-weight: 400;
  color: var(--text-mid);
}
.chk-icon {
  width: 22px; height: 22px;
  background: var(--primary-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.chk-icon svg { width: 12px; height: 12px; stroke-width: 3; }


/* ===================================================
   WHY US
=================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px 22px;
  transition: all var(--transition);
}
.why-card:hover {
  border-color: var(--blue-200);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}
.why-num { display: none; }
.why-icon { display: none; }
.why-card h3 { font-size: 0.97rem; font-weight: 600; margin-bottom: 8px; }
.why-card p { font-size: 0.85rem; color: var(--text-muted); font-weight: 300; line-height: 1.7; }


/* ===================================================
   GALLERY
=================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.gallery-item {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--gray-100);
}
.gallery-item--large {
  grid-column: 1 / -1;
  aspect-ratio: 16/9;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.04); }

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--large { grid-column: 1; }
}

/* ===================================================
   CONTACT
=================================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: 720px;
}

.contact-content .tag { margin-bottom: 14px; }
.contact-content h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  margin-bottom: 14px;
}
.contact-content > p {
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 36px;
  font-size: 0.97rem;
}

.contact-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--r);
}
.contact-row-icon {
  width: 40px; height: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.contact-row-icon svg { width: 18px; height: 18px; }
.contact-row-icon.line-col { color: var(--line); }
.contact-row strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 3px;
}
.contact-row p {
  font-size: 0.93rem;
  color: var(--text);
}
.contact-row a:hover { color: var(--primary); }

.hours-block h3 {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.hours-rows { display: flex; flex-direction: column; gap: 6px; }
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-mid);
}
.hours-row:last-child { color: var(--text-mid); }

/* Sticky CTA box */
.cta-box {
  background: linear-gradient(145deg, var(--blue-900) 0%, #1a3fa3 100%);
  border-radius: var(--r-xl);
  padding: 40px 36px;
  color: #fff;
  position: sticky;
  top: 80px;
}
.cta-box-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.cta-box-icon {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.12);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.cta-box-icon svg { width: 22px; height: 22px; }
.cta-box h3 { font-size: 1.15rem; font-weight: 600; }
.cta-box p { font-size: 0.9rem; color: rgba(255,255,255,0.75); line-height: 1.75; margin-bottom: 28px; font-weight: 300; }
.cta-box-btns { display: flex; flex-direction: column; gap: 12px; }

.divider-line {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.35);
  font-size: 0.78rem;
}
.divider-line::before, .divider-line::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.15);
}


/* LINE QR */
.line-contact-info { display: flex; flex-direction: column; gap: 4px; }
.line-qr {
  width: 100px;
  height: 100px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  margin-top: 8px;
}

/* ===================================================
   REVIEWS
=================================================== */
.google-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 8px 18px;
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  border-radius: 100px;
  font-size: 0.88rem;
}
.google-rating-num { font-weight: 700; color: var(--text); font-size: 1rem; }
.google-rating-label { color: var(--text-muted); }
.google-rating-link { color: var(--primary); font-weight: 500; margin-left: 4px; }
.google-rating-link:hover { text-decoration: underline; }

.reviews-viewport {
  overflow: hidden;
  border-radius: var(--r-lg);
  margin-bottom: 20px;
}
.reviews-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

@media (max-width: 768px) {
  .reviews-viewport {
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .reviews-viewport::-webkit-scrollbar { display: none; }
  .reviews-track {
    transition: none;
    transform: none !important;
    padding: 4px 2px;
  }
  .review-card {
    scroll-snap-align: start;
    min-width: 85vw;
    width: 85vw;
  }
}
.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px;
  min-width: 320px;
  width: 320px;
  flex-shrink: 0;
  box-shadow: var(--shadow-xs);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.review-card:hover { border-color: var(--blue-200); box-shadow: var(--shadow-sm); }
.review-stars { color: #F59E0B; font-size: 1.2rem; letter-spacing: 2px; margin-bottom: 12px; flex-shrink: 0; }
.review-text {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 18px;
  font-weight: 300;
  flex: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--primary), var(--teal-500));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  flex-shrink: 0;
}
.review-author strong { display: block; font-size: 0.88rem; font-weight: 600; color: var(--text); }
.review-author span { font-size: 0.78rem; color: var(--text-muted); }

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 4px;
}
.reviews-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gray-200);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}
.reviews-dot.active {
  background: var(--primary);
  width: 20px;
  border-radius: 4px;
}

/* ===================================================
   FAQ
=================================================== */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item:has(.faq-q[aria-expanded="true"]) { border-color: var(--blue-200); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: 'Prompt', sans-serif;
  font-size: 0.97rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  text-align: left;
}
.faq-arrow {
  font-size: 0.75rem;
  color: var(--primary);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-q[aria-expanded="true"] .faq-arrow { transform: rotate(90deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-a p {
  padding: 0 24px 20px;
  font-size: 0.92rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.8;
}

/* ===================================================
   PROMOTIONS
=================================================== */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}
.promo-item {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--gray-100);
}
.promo-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}
.promo-item:hover .promo-img { transform: scale(1.03); }

@media (max-width: 600px) {
  .promo-grid { grid-template-columns: 1fr; }
}

/* ===================================================
   FOOTER
=================================================== */
.site-footer {
  background: var(--gray-900);
  color: rgba(255,255,255,0.6);
}
.footer-top {
  padding: 64px 0 48px;
  display: grid;
  grid-template-columns: 2.4fr 1fr;
  gap: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand .logo-main { color: #fff; font-size: 1.5rem; }
.footer-brand p { margin-top: 14px; font-size: 0.88rem; line-height: 2; max-width: 280px; word-break: keep-all; }
.footer-col { align-self: end; padding-bottom: 4px; }
.footer-col h4 {
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 0.875rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--teal-400); }
.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}


/* ===================================================
   MOBILE NAV
=================================================== */
@media (max-width: 860px) {
  .hamburger { display: flex; }
  .main-nav {
    display: none;
    position: absolute;
    top: 66px;
    left: 0; right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 12px 24px 20px;
    box-shadow: var(--shadow-md);
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 2px; }
  .main-nav a { display: block; padding: 10px 12px; }
  .nav-cta { margin-left: 0 !important; margin-top: 6px; }
}


/* ===================================================
   RESPONSIVE
=================================================== */
@media (max-width: 1024px) {
  .services-grid  { grid-template-columns: repeat(2, 1fr); }
  .why-grid       { grid-template-columns: repeat(3, 1fr); }
  .conditions-wrap { grid-template-columns: repeat(3, 1fr); }
}

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

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 36px 0 40px;
    text-align: center;
    gap: 24px;
  }
  .hero-text p  { margin: 0 auto 24px; }
  .hero-actions { justify-content: center; }
  .hero-trust   { justify-content: center; }
  .hero-visual  { display: flex; max-width: 100%; margin-top: 0; }
  .hero-slideshow { max-width: 100%; aspect-ratio: 16/9; }

  .about-layout  { grid-template-columns: 1fr; }
  .about-visual-wrap { display: none; }

  .contact-layout { grid-template-columns: 1fr; }
  .cta-box { position: static; }

  .conditions-wrap { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1.4fr 1fr; gap: 24px; }
}

@media (max-width: 768px) {
  .why-grid { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .services-grid { grid-template-columns: 1fr; }
  .conditions-wrap { grid-template-columns: 1fr 1fr; }
}
