/* ============================================
   BONECURE — Complete Stylesheet
   Mobile-first · Foreign-patient focused
   ============================================ */

:root {
  --navy:      #0D1B2A;
  --navy-2:    #1C2E42;
  --gold:      #B8975A;
  --gold-lt:   #D4B07A;
  --white:     #FFFFFF;
  --off:       #F7F5F1;
  --stone:     #EAE6DF;
  --body:      #3D3D3D;
  --muted:     #8A8A8A;
  --wa:        #25D366;
  --r:         4px;
  --rl:        12px;
  --ease:      cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Reset ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.65;
}
body[data-lang="en"] { font-family: 'Inter', -apple-system, sans-serif; }
body[data-lang="ja"] { font-family: 'Noto Sans JP', -apple-system, sans-serif; }
img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }

/* ── Language visibility ─────────────────────── */
[data-ko],[data-en],[data-ja] { display: none; }
body[data-lang="ko"] [data-ko],
body[data-lang="en"] [data-en],
body[data-lang="ja"] [data-ja] { display: revert; }

/* ── Layout ──────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 22px;
}
@media (min-width: 960px) { .wrap { max-width: 1120px; padding: 0 48px; } }

.section { padding: 80px 0; }
@media (min-width: 960px) { .section { padding: 120px 0; } }

/* ── Typography helpers ──────────────────────── */
.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}

.section-heading {
  font-size: clamp(26px, 5.5vw, 46px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin-bottom: 24px;
}

.section-sub {
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 560px;
}

/* ── Fade-up animation ───────────────────────── */
.fade-up { opacity: 0; transform: translateY(28px); }
.fade-up.visible {
  animation: fadeUp 0.65s var(--ease) forwards;
}
@keyframes fadeUp {
  to { opacity: 1; transform: none; }
}
.fade-up:nth-child(2) { animation-delay: 0.08s; }
.fade-up:nth-child(3) { animation-delay: 0.16s; }
.fade-up:nth-child(4) { animation-delay: 0.24s; }
.fade-up:nth-child(5) { animation-delay: 0.32s; }
.fade-up:nth-child(6) { animation-delay: 0.40s; }

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.nav.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.09);
}

.nav-logo {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--white);
  transition: color 0.3s;
}
.nav-logo span { color: var(--gold); }
.nav.scrolled .nav-logo { color: var(--navy); }

.nav-links {
  display: none;
  gap: 28px;
  align-items: center;
}
@media (min-width: 960px) { .nav-links { display: flex; } }
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav.scrolled .nav-links a { color: var(--muted); }
.nav-links a:hover { color: var(--white); }
.nav.scrolled .nav-links a:hover { color: var(--navy); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-switcher { display: flex; gap: 2px; }
.lang-btn {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
  padding: 4px 7px;
  border-radius: 3px;
  transition: color 0.2s;
}
.nav.scrolled .lang-btn { color: var(--muted); }
.lang-btn.active,
.lang-btn:hover { color: var(--gold) !important; }

.nav-wa-btn {
  display: none;
  align-items: center;
  gap: 6px;
  background: var(--wa);
  color: white;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 99px;
  transition: opacity 0.2s, transform 0.2s;
}
.nav-wa-btn:hover { opacity: 0.9; transform: translateY(-1px); }
@media (min-width: 600px) { .nav-wa-btn { display: flex; } }

/* ── Hamburger ────────────────────────────────── */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.nav.scrolled .hamburger span { background: var(--navy); }
.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); }
@media (min-width: 960px) { .hamburger { display: none; } }

/* ── Mobile menu ──────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 190;
  background: var(--navy);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.menu-link {
  font-size: 26px;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  padding: 12px 32px;
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.menu-link:hover { color: var(--gold); }
.mobile-menu-close {
  position: absolute;
  top: 22px; right: 24px;
  font-size: 26px;
  color: rgba(255,255,255,0.45);
  line-height: 1;
}
.menu-wa-btn {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--wa);
  color: white;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 99px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: center / cover no-repeat;
  transform: scale(1.05);
  transition: transform 9s var(--ease);
}
.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8,18,30,0.92)   0%,
    rgba(8,18,30,0.55)  45%,
    rgba(8,18,30,0.15) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 22px 64px;
  width: 100%;
  max-width: 820px;
}
@media (min-width: 960px) { .hero-content { padding: 0 72px 96px; } }

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.hero-badge {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-lt);
  background: rgba(184,151,90,0.14);
  border: 1px solid rgba(184,151,90,0.35);
  padding: 5px 12px;
  border-radius: 99px;
  letter-spacing: 0.03em;
}

.hero-title {
  font-size: clamp(34px, 9vw, 72px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 20px;
}
.hero-title em {
  font-style: normal;
  color: var(--gold);
  display: block;
}

.hero-sub {
  font-size: clamp(14px, 3.6vw, 18px);
  color: rgba(255,255,255,0.68);
  line-height: 1.65;
  margin-bottom: 20px;
  max-width: 460px;
}

.hero-sub-hint {
  font-size: 13px;
  color: rgba(255,255,255,0.42);
  letter-spacing: 0.02em;
  margin-bottom: 0;
}

/* Hero CTA styles removed — floating button only */

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 28px; right: 24px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.35);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,0.18);
  overflow: hidden;
  position: relative;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: scrollAnim 2s infinite var(--ease);
}
@keyframes scrollAnim {
  0%   { top: -100%; }
  100% { top: 110%; }
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--navy);
  padding: 28px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 0;
}
@media (min-width: 640px) { .trust-grid { grid-template-columns: repeat(4, 1fr); gap: 0; } }

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.trust-item:nth-child(2),
.trust-item:nth-child(4) { border-right: none; }
@media (min-width: 640px) {
  .trust-item:nth-child(2) { border-right: 1px solid rgba(255,255,255,0.08); }
  .trust-item:nth-child(4) { border-right: none; }
}

.trust-num {
  font-size: 24px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 5px;
  letter-spacing: -0.02em;
}
.trust-desc {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  line-height: 1.45;
  letter-spacing: 0.02em;
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews-section {
  padding: 88px 0 72px;
  background: var(--white);
}

.reviews-grid {
  display: grid;
  gap: 16px;
  margin-top: 48px;
}
@media (min-width: 760px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }

.review-card {
  background: var(--off);
  border-radius: var(--rl);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(13,27,42,0.08);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.04em;
}
.review-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.flag { font-size: 16px; }
.review-pkg {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
  letter-spacing: 0.02em;
}
.review-stars {
  margin-left: auto;
  color: var(--gold);
  font-size: 13px;
  flex-shrink: 0;
  letter-spacing: 2px;
}

.review-body {
  font-size: 14px;
  color: var(--body);
  line-height: 1.75;
  font-style: normal;
  flex: 1;
}

.reviews-source-note {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 36px;
  letter-spacing: 0.03em;
}

/* ============================================
   ABOUT
   ============================================ */
.about-section { background: var(--off); }

.about-grid {
  display: grid;
  gap: 56px;
}
@media (min-width: 960px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 88px;
    align-items: start;
  }
}

.about-img-col { position: relative; }
.about-img-col img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--rl);
}
@media (min-width: 960px) { .about-img-col img { aspect-ratio: 3/4; } }

.about-since {
  position: absolute;
  bottom: -18px;
  right: -10px;
  background: var(--navy);
  color: white;
  padding: 18px 22px;
  border-radius: var(--rl);
  text-align: center;
  box-shadow: 0 12px 40px rgba(13,27,42,0.28);
  line-height: 1.2;
}
@media (min-width: 960px) { .about-since { bottom: -24px; right: -24px; } }
.about-since strong {
  display: block;
  font-size: 30px;
  font-weight: 800;
  color: var(--gold);
}
.about-since span {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin-top: 3px;
  display: block;
}

.about-text-col { padding-top: 16px; }
@media (min-width: 960px) { .about-text-col { padding-top: 0; } }

.about-body {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 28px;
}

/* Director quote */
.director-quote {
  border-left: 3px solid var(--gold);
  padding: 16px 0 16px 22px;
  margin: 28px 0 32px;
}
.director-quote p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--navy);
  font-style: italic;
  margin-bottom: 10px;
}
.director-quote cite {
  font-size: 13px;
  color: var(--gold);
  font-style: normal;
  font-weight: 600;
}

/* Pillars */
.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pillar {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.pillar-icon {
  width: 42px; height: 42px;
  background: var(--stone);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.pillar div strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}
.pillar div p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

/* ============================================
   TREATMENTS
   ============================================ */
.treatments-section { background: var(--white); }

.treatment-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 52px;
}

.treatment-row {
  display: grid;
  border-radius: var(--rl);
  overflow: hidden;
  background: var(--off);
  transition: transform 0.3s var(--ease);
}
.treatment-row:hover { transform: translateY(-3px); }

@media (min-width: 720px) {
  .treatment-row { grid-template-columns: 300px 1fr; }
  .treatment-row.reverse { grid-template-columns: 1fr 300px; }
  .treatment-row.reverse .treatment-img-wrap { order: 2; }
  .treatment-row.reverse .treatment-text { order: 1; }
}

.treatment-img-wrap img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
@media (min-width: 720px) {
  .treatment-img-wrap img { aspect-ratio: unset; height: 100%; min-height: 240px; }
}

.treatment-text {
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.t-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 10px;
}
.treatment-text h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.2;
}
.treatment-text p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 18px;
}
.t-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.t-tags span {
  font-size: 11px;
  font-weight: 600;
  color: var(--navy);
  background: var(--stone);
  padding: 4px 11px;
  border-radius: 99px;
  letter-spacing: 0.03em;
}

/* ============================================
   FOR WHO
   ============================================ */
.forwho-section {
  background: var(--navy);
  padding: 80px 0;
}
.forwho-section .section-eyebrow { color: rgba(184,151,90,0.85); }
.forwho-section .section-heading { color: var(--white); }

.forwho-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 48px;
}
@media (min-width: 720px) { .forwho-grid { grid-template-columns: repeat(3, 1fr); } }

.forwho-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--rl);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.25s, background 0.25s;
}
.forwho-item:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(184,151,90,0.4);
}
.fw-icon { font-size: 26px; line-height: 1; }
.forwho-item p {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

/* ============================================
   K-WELLNESS PACKAGES
   ============================================ */
.wellness-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.wellness-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,151,90,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.wellness-section .section-heading { color: var(--white); }
.wellness-section .section-sub { color: rgba(255,255,255,0.5); }

.pkg-grid {
  display: grid;
  gap: 16px;
  margin-top: 48px;
}
@media (min-width: 720px) { .pkg-grid { grid-template-columns: repeat(3, 1fr); } }

.pkg-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--rl);
  padding: 30px 26px;
  position: relative;
  transition: background 0.25s, border-color 0.25s;
}
.pkg-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(184,151,90,0.35);
}
.pkg-card.featured {
  background: rgba(184,151,90,0.1);
  border-color: var(--gold);
}

.pkg-popular {
  position: absolute;
  top: 18px; right: 18px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--navy);
  padding: 3px 10px;
  border-radius: 99px;
}

.pkg-top { margin-bottom: 24px; }
.pkg-dur {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}
.pkg-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  display: block;
  margin-bottom: 6px;
}
.pkg-price {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.pkg-price strong {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}

.pkg-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pkg-list li {
  font-size: 13px;
  color: rgba(255,255,255,0.68);
  line-height: 1.5;
  padding-left: 16px;
  position: relative;
}
.pkg-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.pkg-footer {
  text-align: center;
  margin-top: 44px;
}
.btn-wa-green {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--wa);
  color: white;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 99px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-wa-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37,211,102,0.4);
}

/* ============================================
   DOCTOR
   ============================================ */
.doctor-section { background: var(--off); }

.doctor-card {
  display: grid;
  margin-top: 48px;
  background: var(--white);
  border-radius: var(--rl);
  overflow: hidden;
}
@media (min-width: 720px) { .doctor-card { grid-template-columns: 380px 1fr; } }

.doctor-img-col img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: top center;
  display: block;
}
@media (min-width: 720px) {
  .doctor-img-col img { aspect-ratio: unset; height: 100%; min-height: 340px; }
}

.doctor-text-col {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.doctor-title-row { margin-bottom: 6px; }
.doctor-role {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.doctor-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.2;
}

.doctor-creds {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 24px;
}
.doctor-creds li {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  padding-left: 18px;
  position: relative;
}
.doctor-creds li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.doctor-note {
  font-size: 13px;
  color: var(--navy);
  background: var(--off);
  border-radius: 8px;
  padding: 14px 16px;
  line-height: 1.6;
  border-left: 3px solid var(--gold);
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.hiw-section {
  background: var(--white);
  padding: 80px 0;
}
@media (min-width: 960px) { .hiw-section { padding: 120px 0; } }

.hiw-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 52px;
}
@media (min-width: 760px) {
  .hiw-steps {
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
  }
}

.hiw-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 759px) {
  .hiw-step {
    flex-direction: row;
    gap: 16px;
    padding-bottom: 32px;
  }
}

.hiw-num {
  font-size: 36px;
  font-weight: 800;
  color: var(--stone);
  line-height: 1;
  flex-shrink: 0;
}
@media (min-width: 760px) { .hiw-num { font-size: 48px; margin-bottom: 16px; } }

.hiw-content strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.3;
}
.hiw-content p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}

.hiw-connector {
  display: none;
}
@media (min-width: 760px) {
  .hiw-connector {
    display: block;
    width: 40px;
    height: 2px;
    background: var(--stone);
    margin-top: 24px;
    flex-shrink: 0;
  }
}

/* ============================================
   VISIT
   ============================================ */
.visit-section { background: var(--off); }

.visit-grid {
  display: grid;
  gap: 48px;
  margin-top: 48px;
}
@media (min-width: 960px) { .visit-grid { grid-template-columns: 1fr 1fr; gap: 64px; } }

.visit-map {
  border-radius: var(--rl);
  overflow: hidden;
  height: 300px;
  background: var(--stone);
}
.visit-map iframe { width: 100%; height: 100%; border: 0; display: block; }

.visit-info { display: flex; flex-direction: column; gap: 28px; }
.visit-block {}
.visit-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}
.visit-content {
  font-size: 14px;
  line-height: 1.7;
  color: var(--body);
}
.visit-content strong {
  display: block;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 3px;
}

.hours-table { display: flex; flex-direction: column; gap: 0; }
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--stone);
  font-size: 13px;
}
.hours-row:last-child { border-bottom: none; }
.hours-row span:first-child { color: var(--muted); }
.hours-row span:last-child { color: var(--navy); font-weight: 600; }
.hours-row.closed span:last-child { color: var(--muted); font-weight: 400; }

/* ============================================
   FAQ
   ============================================ */
.faq-section { background: var(--white); }

.faq-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  background: var(--off);
  border-radius: var(--r);
  overflow: hidden;
}
.faq-item:first-child { border-radius: var(--rl) var(--rl) var(--r) var(--r); }
.faq-item:last-child  { border-radius: var(--r) var(--r) var(--rl) var(--rl); }

.faq-q {
  width: 100%;
  text-align: left;
  padding: 20px 22px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background 0.2s;
}
.faq-q:hover { background: var(--stone); }
.faq-q.open { background: var(--navy); color: var(--white); }

.faq-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}
.faq-q.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  display: none;
  padding: 18px 22px 22px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  border-top: 1px solid var(--stone);
}
.faq-item.open .faq-a { display: block; }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: var(--navy);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -120px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,151,90,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.cta-inner {
  display: grid;
  gap: 48px;
  position: relative;
  z-index: 1;
}
@media (min-width: 960px) {
  .cta-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 80px;
  }
}

.cta-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}

.cta-heading {
  font-size: clamp(26px, 5vw, 42px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 20px;
}

.cta-body {
  font-size: 15px;
  color: rgba(255,255,255,0.58);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 16px;
}

.cta-who {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  font-style: italic;
}

/* Right side: WhatsApp card + hints */
.cta-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
@media (min-width: 960px) { .cta-right { align-items: flex-start; min-width: 280px; } }

.cta-wa-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--wa);
  color: white;
  padding: 18px 24px;
  border-radius: var(--rl);
  width: 100%;
  transition: transform 0.2s, box-shadow 0.2s;
}
.cta-wa-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(37,211,102,0.45);
}
.cta-wa-btn div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cta-wa-btn strong {
  font-size: 17px;
  font-weight: 800;
}
.cta-wa-btn span {
  font-size: 13px;
  opacity: 0.8;
}

.cta-hints {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cta-hints span {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: #07111B;
  padding: 52px 0 40px;
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 28px;
}
@media (min-width: 720px) {
  .footer-top { flex-direction: row; justify-content: space-between; align-items: flex-start; }
}

.footer-logo {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-logo span { color: var(--gold); }

.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.32);
  line-height: 1.65;
  max-width: 260px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 720px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.22);
}

.footer-socials {
  display: flex;
  gap: 16px;
}
.footer-socials a {
  font-size: 13px;
  color: rgba(255,255,255,0.32);
  transition: color 0.2s;
}
.footer-socials a:hover { color: var(--white); }

/* ============================================
   FLOATING WA BUTTON
   ============================================ */
.wa-float {
  position: fixed;
  bottom: 28px; right: 20px;
  z-index: 150;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--wa);
  color: white;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 22px;
  border-radius: 99px;
  box-shadow: 0 8px 28px rgba(37,211,102,0.42);
  transition: transform 0.2s var(--ease), box-shadow 0.2s, opacity 0.3s;
}
.wa-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 38px rgba(37,211,102,0.52);
}
.wa-float-label { display: none; }
@media (min-width: 480px) { .wa-float-label { display: inline; } }

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--stone); border-radius: 4px; }
