/* ============================================
   MERIDIAN SPA & WELLNESS — Main Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Raleway:wght@300;400;500;600&display=swap');

/* ─── Variables ─── */
:root {
  --deep-green:    #183618;
  --forest-green:  #2d5a27;
  --medium-green:  #4a7c59;
  --sage:          #7fad88;
  --light-sage:    #b8d4bb;
  --mint:          #e8f5ea;
  --gold:          #C09A2E;
  --gold-light:    #D4B050;
  --cream:         #faf8f2;
  --warm-white:    #f5f0e6;
  --text-dark:     #1b2119;
  --text-medium:   #3d4a3a;
  --text-light:    #6b7a67;
  --border:        rgba(45, 90, 39, 0.15);
  --shadow-soft:   0 4px 30px rgba(24, 54, 24, 0.08);
  --shadow-medium: 0 8px 50px rgba(24, 54, 24, 0.14);
  --radius:        4px;
  --transition:    all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: 'Raleway', sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.7;
}
img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── Typography ─── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.2;
  font-weight: 600;
}
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--deep-green);
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 560px;
  font-weight: 300;
}
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ─── Layout ─── */
.container { width: 90%; max-width: 1160px; margin: 0 auto; }
.section    { padding: 90px 0; }
.section-alt { background: var(--warm-white); }
.section-dark {
  background: var(--deep-green);
  color: var(--cream);
}
.section-dark .section-title { color: var(--light-sage); }
.section-dark .section-subtitle { color: rgba(232,245,234,0.7); }

/* ─── Divider ─── */
.divider {
  width: 50px; height: 2px;
  background: var(--gold);
  margin: 1.2rem 0 1.8rem;
}
.divider-center { margin: 1.2rem auto 1.8rem; }

/* ─── Buttons ─── */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.btn-primary:hover {
  background: transparent;
  color: var(--gold);
}
.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-light:hover {
  background: #fff;
  color: var(--deep-green);
}
.btn-outline-green {
  background: transparent;
  color: var(--forest-green);
  border-color: var(--forest-green);
}
.btn-outline-green:hover {
  background: var(--forest-green);
  color: #fff;
}

/* ════════════════════════════════════════
   NAV
   ════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(24, 54, 24, 0.97);
  backdrop-filter: blur(10px);
  padding: 14px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.nav-logo-sub {
  font-family: 'Raleway', sans-serif;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
  line-height: 1;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--gold-light); }
.nav-cta {
  background: var(--gold) !important;
  color: #fff !important;
  padding: 8px 22px !important;
  border-radius: var(--radius) !important;
  letter-spacing: 0.1em !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-light) !important; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  transition: var(--transition);
}

/* ════════════════════════════════════════
   HERO
   ════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('pics/spa2.JPG');
  background-size: cover;
  background-position: center;
  filter: brightness(0.55) saturate(0.85);
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 28, 12, 0.90);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.4rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}
.hero-label::before, .hero-label::after {
  content: '';
  display: block;
  width: 30px; height: 1px;
  background: var(--gold-light);
}
.hero-title {
  font-size: clamp(3rem, 6vw, 5rem);
  color: #fff;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 0.4rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}
.hero-title strong {
  font-weight: 600;
  display: block;
  color: var(--light-sage);
}
.hero-tagline {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  font-weight: 300;
  max-width: 480px;
  margin: 1.4rem 0 2.4rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s forwards;
}
.hero-scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.5));
}

/* ─── Hero Stats Bar ─── */
.hero-stats {
  background: var(--deep-green);
  padding: 0;
}
.hero-stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide: 1px solid rgba(255,255,255,0.08);
}
.hero-stat {
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--gold-light);
  font-weight: 600;
}
.hero-stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
}

/* ════════════════════════════════════════
   ABOUT / MERIDIAN CONCEPT
   ════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: var(--shadow-medium);
}
.about-img-accent {
  position: absolute;
  width: 55%;
  aspect-ratio: 1;
  object-fit: cover;
  bottom: -30px; right: -30px;
  border-radius: 2px;
  border: 6px solid var(--cream);
  box-shadow: var(--shadow-soft);
}
.about-badge {
  position: absolute;
  top: 30px; left: -20px;
  background: var(--gold);
  color: #fff;
  padding: 16px 20px;
  border-radius: 2px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}
.about-badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1;
}
.about-badge-text {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.9;
}
.about-text p {
  color: var(--text-medium);
  margin-bottom: 1rem;
  font-weight: 300;
  font-size: 0.95rem;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 2rem;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.about-feature-icon {
  width: 36px; height: 36px;
  background: var(--mint);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  color: var(--forest-green);
}
.about-feature-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.05em;
}
.about-feature-desc {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 2px;
}

/* ════════════════════════════════════════
   SERVICES
   ════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 3rem;
}
.service-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  border: 1px solid var(--border);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
}
.service-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.service-card-body {
  padding: 28px 26px 32px;
}
.service-card-icon {
  width: 48px; height: 48px;
  background: var(--mint);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.service-card-title {
  font-size: 1.4rem;
  color: var(--deep-green);
  margin-bottom: 0.6rem;
}
.service-card-desc {
  font-size: 0.88rem;
  color: var(--text-medium);
  font-weight: 300;
  line-height: 1.8;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 1.2rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest-green);
  transition: var(--transition);
}
.service-card-link:hover { color: var(--gold); gap: 10px; }
.service-card-link span { font-size: 1rem; }

/* ════════════════════════════════════════
   DR. STEVE CHANG
   ════════════════════════════════════════ */
.doctor-section {
  background: var(--deep-green);
  position: relative;
  overflow: hidden;
}
.doctor-section::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(196,153,90,0.06);
}
.doctor-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.doctor-img-wrap {
  position: relative;
}
.doctor-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  border-radius: 2px;
  filter: brightness(1.05) saturate(0.9);
}
.doctor-credential {
  position: absolute;
  bottom: -16px; right: -16px;
  background: var(--gold);
  padding: 18px 20px;
  border-radius: 2px;
}
.doctor-credential-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  color: #fff;
  font-style: italic;
  line-height: 1.4;
}
.doctor-content .section-title { color: var(--light-sage); }
.doctor-content .section-label { color: var(--gold-light); }
.doctor-name {
  font-size: 2.6rem;
  color: #fff;
  margin-bottom: 0.2rem;
}
.doctor-title {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.8rem;
}
.doctor-bio {
  font-size: 0.92rem;
  color: rgba(232,245,234,0.8);
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 1rem;
}
.doctor-certs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 2rem;
}
.doctor-cert {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.75);
}
.doctor-cert-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ════════════════════════════════════════
   YONG KONG SECTION
   ════════════════════════════════════════ */
.yongkong-box {
  background: var(--mint);
  border: 1px solid var(--light-sage);
  border-radius: var(--radius);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 3rem;
}
.yongkong-title {
  font-size: 2rem;
  color: var(--deep-green);
  margin-bottom: 0.8rem;
}
.yongkong-desc {
  font-size: 0.9rem;
  color: var(--text-medium);
  font-weight: 300;
  line-height: 1.8;
}
.yongkong-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.yongkong-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: #fff;
  border-radius: var(--radius);
  border-left: 3px solid var(--sage);
  box-shadow: var(--shadow-soft);
}
.yongkong-point-icon { font-size: 1.2rem; flex-shrink: 0; }
.yongkong-point-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
}
.yongkong-point-desc {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 2px;
}

/* ════════════════════════════════════════
   TESTIMONIALS / QUOTE STRIP
   ════════════════════════════════════════ */
.quote-strip {
  background: var(--forest-green);
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-strip::before {
  content: '"';
  position: absolute;
  top: -30px; left: 50%;
  transform: translateX(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 18rem;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
}
.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: #fff;
  font-weight: 300;
  font-style: italic;
  max-width: 720px;
  margin: 0 auto 1rem;
  line-height: 1.6;
}
.quote-author {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* ════════════════════════════════════════
   HOURS & CONTACT STRIP
   ════════════════════════════════════════ */
.info-strip {
  background: var(--warm-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.info-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  divide: 1px solid var(--border);
}
.info-strip-item {
  padding: 40px 30px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  border-right: 1px solid var(--border);
}
.info-strip-item:last-child { border-right: none; }
.info-strip-icon {
  width: 44px; height: 44px;
  background: var(--mint);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--forest-green);
}
.info-strip-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}
.info-strip-value {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
}
.info-strip-sub {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 300;
}

/* ════════════════════════════════════════
   CTA SECTION
   ════════════════════════════════════════ */
.cta-section {
  background-image: url('pics/spa4.JPG');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  padding: 120px 0;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(24,54,24,0.78);
}
.cta-section .container { position: relative; }
.cta-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #fff;
  margin-bottom: 1rem;
}
.cta-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  font-weight: 300;
  margin-bottom: 2.2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}

/* ════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════ */
.footer {
  background: #0f1f0f;
  color: rgba(255,255,255,0.6);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.footer-tagline {
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 1.8;
  max-width: 300px;
  margin-bottom: 1.4rem;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.footer-heading {
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.2rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  font-size: 0.85rem;
  font-weight: 300;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.83rem;
  font-weight: 300;
  margin-bottom: 10px;
}
.footer-contact-item span:first-child { color: var(--gold); font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
}
.footer-bottom a { color: var(--gold-light); }

/* ════════════════════════════════════════
   PAGE HERO (inner pages)
   ════════════════════════════════════════ */
.page-hero {
  padding: 140px 0 70px;
  text-align: center;
  background-color: var(--deep-green);
  background-image: linear-gradient(180deg, var(--deep-green) 0%, var(--forest-green) 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('pics/spafront_desk.JPG');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}
.page-hero .container { position: relative; }
.page-hero-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.8rem;
}
.page-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #fff;
  font-weight: 300;
}
.page-hero-title strong { color: var(--light-sage); font-weight: 600; }
.breadcrumb {
  margin-top: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
}
.breadcrumb a { color: rgba(255,255,255,0.7); transition: var(--transition); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb-sep { opacity: 0.4; }

/* ════════════════════════════════════════
   GALLERY PAGE
   ════════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 240px;
  gap: 12px;
  margin-top: 3rem;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
  cursor: pointer;
}
.gallery-item:nth-child(1) { grid-column: span 7; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 5; }
.gallery-item:nth-child(3) { grid-column: span 5; }
.gallery-item:nth-child(4) { grid-column: span 4; }
.gallery-item:nth-child(5) { grid-column: span 4; }
.gallery-item:nth-child(6) { grid-column: span 4; }
.gallery-item:nth-child(7) { grid-column: span 5; grid-row: span 2; }
.gallery-item:nth-child(8) { grid-column: span 4; }
.gallery-item:nth-child(9) { grid-column: span 3; }
.gallery-item:nth-child(10) { grid-column: span 7; }

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(24,54,24,0);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-overlay-icon {
  font-size: 2rem;
  color: #fff;
  opacity: 0;
  transform: scale(0.6);
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { background: rgba(24,54,24,0.45); }
.gallery-item:hover .gallery-overlay-icon { opacity: 1; transform: scale(1); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.lightbox.active { opacity: 1; pointer-events: all; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 2px;
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 28px;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  opacity: 0.7;
  transition: var(--transition);
}
.lightbox-close:hover { opacity: 1; }

/* Video Placeholder */
.video-section { padding: 80px 0; background: var(--warm-white); }
.video-wrap {
  position: relative;
  max-width: 860px;
  margin: 3rem auto 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}
.video-placeholder {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--deep-green), var(--medium-green));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  position: relative;
  overflow: hidden;
}
.video-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('pics/spa3.JPG');
  background-size: cover;
  background-position: center;
  opacity: 0.22;
}
.video-play-btn {
  position: relative;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.6);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.video-play-btn::before {
  content: '▶';
  font-size: 1.6rem;
  color: #fff;
  margin-left: 4px;
}
.video-play-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.1);
}
.video-label {
  position: relative;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: #fff;
  font-style: italic;
  text-align: center;
}
.video-sublabel {
  position: relative;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ════════════════════════════════════════
   CONTACT PAGE
   ════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-form-wrap {
  background: #fff;
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
}
.form-title {
  font-size: 1.8rem;
  color: var(--deep-green);
  margin-bottom: 0.4rem;
}
.form-subtitle {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 300;
  margin-bottom: 2rem;
}
.form-group { margin-bottom: 1.2rem; }
.form-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-medium);
  margin-bottom: 6px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--sage);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(127,173,136,0.15);
}
.form-textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit {
  width: 100%;
  padding: 15px;
  background: var(--forest-green);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 0.6rem;
}
.form-submit:hover { background: var(--deep-green); }

/* Contact Info Side */
.contact-info-block { display: flex; flex-direction: column; gap: 28px; }
.contact-info-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}
.contact-info-card:hover { border-color: var(--sage); box-shadow: var(--shadow-medium); }
.contact-info-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--mint);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-info-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}
.contact-info-main {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
}
.contact-info-sub {
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 300;
  margin-top: 2px;
}

/* Map */
.map-section { padding: 0 0 80px; }
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--border);
}
.map-wrap iframe { display: block; }

/* ════════════════════════════════════════
   ANIMATIONS
   ════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ════════════════════════════════════════
   LANG TOGGLE (nav)
   ════════════════════════════════════════ */
.lang-toggle {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 20px;
  padding: 2px 3px;
  gap: 1px;
  flex-shrink: 0;
}
.lang-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: pointer;
  padding: 4px 11px;
  border-radius: 16px;
  transition: var(--transition);
  line-height: 1;
}
.lang-btn.active {
  background: var(--gold);
  color: #fff;
}
.lang-btn:hover:not(.active) { color: #fff; }

/* ════════════════════════════════════════
   LANGUAGE MODAL
   ════════════════════════════════════════ */
#lang-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}
#lang-modal.lm-visible { opacity: 1; }
#lang-modal.lm-exit    { opacity: 0; pointer-events: none; }

.lm-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 28, 10, 0.88);
  backdrop-filter: blur(6px);
}
.lm-card {
  position: relative;
  background: #fff;
  border-radius: 6px;
  padding: 48px 44px 38px;
  width: min(92vw, 440px);
  text-align: center;
  box-shadow: 0 24px 80px rgba(0,0,0,0.45);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.38s cubic-bezier(0.34, 1.3, 0.64, 1);
}
#lang-modal.lm-visible .lm-card {
  transform: translateY(0) scale(1);
}

.lm-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 1.4rem;
}
.lm-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.lm-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--deep-green);
  font-weight: 600;
  line-height: 1.2;
}
.lm-name span {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
}

.lm-welcome {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  color: var(--deep-green);
  font-style: italic;
  font-weight: 300;
  margin-bottom: 0.6rem;
}
.lm-prompt {
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.lm-prompt span { color: var(--text-medium); font-weight: 400; }

.lm-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 1.8rem;
}
.lm-choice {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px 12px;
  border: 2px solid var(--border);
  border-radius: 6px;
  background: var(--cream);
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Raleway', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
}
.lm-choice:hover {
  border-color: var(--forest-green);
  background: var(--mint);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}
.lm-flag { font-size: 1.8rem; line-height: 1; }
.lm-choice small { font-size: 0.7rem; font-weight: 400; color: var(--text-light); }

.lm-timer-wrap {
  position: relative;
  width: 64px;
  height: 64px;
  margin: 0 auto 0.8rem;
}
.lm-ring { overflow: visible; }
.lm-ring-bg {
  fill: none;
  stroke: var(--light-sage);
  stroke-width: 4;
}
.lm-ring-fill {
  fill: none;
  stroke: var(--gold);
  stroke-width: 4;
  stroke-linecap: round;
  transform: rotate(-90deg);
  transform-origin: center;
  transition: stroke-dashoffset 1s linear;
}
.lm-num {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--deep-green);
}
.lm-note {
  font-size: 0.72rem;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.6;
}

/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */

/* ── Tablet ── */
@media (max-width: 960px) {
  .about-grid, .doctor-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats-inner, .info-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-img-accent { display: none; }
  .yongkong-box { grid-template-columns: 1fr; }
  .doctor-grid { grid-template-columns: 1fr; }
  .doctor-img-wrap { max-width: 340px; margin: 0 auto; }
}

/* ── Mobile ── */
@media (max-width: 680px) {
  /* Nav */
  .nav-links {
    display: flex;
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    height: 100dvh;
    width: 270px;
    background: #0f1f0f;
    flex-direction: column;
    padding: 90px 32px 40px;
    gap: 1.8rem;
    overflow-y: auto;
    transition: transform 0.35s ease;
    transform: translateX(100%);
    z-index: 1001;
    box-shadow: none;
    pointer-events: none;
  }
  .nav-links.open {
    transform: translateX(0);
    box-shadow: -6px 0 40px rgba(0,0,0,0.5);
    pointer-events: all;
  }
  .nav-links a {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    pointer-events: all;
  }
  .nav-hamburger { display: flex; z-index: 1002; position: relative; }
  .lang-toggle { margin-right: 4px; }

  .nav.menu-open { background: rgba(15, 31, 15, 0.98) !important; }

  /* Sections */
  .section { padding: 60px 0; }
  .section-alt { padding: 60px 0; }
  .video-section { padding: 60px 0; }

  /* Hero */
  .hero-content { padding: 0 4px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; text-align: center; }

  /* About badge — avoid overflow */
  .about-badge { left: 10px; top: 16px; }

  /* Stats */
  .hero-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .hero-stat { padding: 20px 12px; }
  .hero-stat-num { font-size: 1.6rem; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Doctor img */
  .doctor-img-wrap { max-width: 100%; }

  /* Info strip */
  .info-strip-grid { grid-template-columns: 1fr; }
  .info-strip-item { border-right: none; border-bottom: 1px solid var(--border); }

  /* CTA */
  .cta-section { background-attachment: scroll; padding: 80px 0; }
  .cta-phone { font-size: 1.5rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .gallery-item { grid-column: span 1 !important; grid-row: span 1 !important; }

  /* Contact */
  .contact-form-wrap { padding: 28px 22px; }
}

/* ── Small mobile ── */
@media (max-width: 420px) {
  /* Nav logo — compact */
  .nav-logo-text { font-size: 1.1rem; }
  .nav-logo-sub  { display: none; }
  .lang-toggle   { padding: 2px; }
  .lang-btn      { padding: 4px 8px; font-size: 0.65rem; }

  /* Hero */
  .hero-label { font-size: 0.6rem; }
  .hero-tagline { font-size: 0.9rem; }

  /* Stats — single column */
  .hero-stats-inner { grid-template-columns: 1fr 1fr; }
  .hero-stat { padding: 16px 8px; }

  /* Section titles */
  .section-title { font-size: 1.8rem; }

  /* Page hero */
  .page-hero { padding: 110px 0 50px; }
  .page-hero-title { font-size: 2rem; }

  /* Yong Kong box */
  .yongkong-box { padding: 28px 20px; }

  /* Quote */
  .quote-strip { padding: 44px 0; }

  /* Gallery single column on tiny screens */
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }

  /* Modal */
  .lm-card { padding: 36px 24px 28px; }
  .lm-btns { gap: 10px; }
  .lm-choice { padding: 14px 8px; font-size: 0.82rem; }
  .lm-flag { font-size: 1.4rem; }

  /* Contact cards */
  .contact-cards-grid { grid-template-columns: 1fr; }
  .contact-info-card-wide { grid-column: span 1; }
}
