/* =============================================
   VIREYA ACUPUNCTURE - Main Stylesheet
   Colour Palette: Beige, Cream & Warm Neutrals
   ============================================= */

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

/* ---- CSS Variables ---- */
:root {
  --cream: #FAF6F0;
  --cream-dark: #F2EBE0;
  --beige: #E8D8C4;
  --beige-dark: #D4BFA0;
  --warm-brown: #A0785A;
  --deep-brown: #6B4C35;
  --charcoal: #3D3530;
  --soft-green: #8A9E85;
  --gold: #C4954A;
  --white: #FFFFFF;
  --text-dark: #2E2620;
  --text-mid: #6B5A50;
  --text-light: #9A8880;
  --shadow: rgba(100, 75, 55, 0.12);
  --shadow-lg: rgba(100, 75, 55, 0.2);
  --radius: 4px;
  --radius-lg: 12px;
  --transition: 0.3s ease;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Lato', sans-serif;
  background-color: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--deep-brown);
  line-height: 1.25;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 400; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 400; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); font-weight: 400; }
h4 { font-size: 1.2rem; font-weight: 500; }

p { color: var(--text-mid); font-weight: 300; font-size: 1.02rem; }

a { text-decoration: none; color: inherit; transition: color var(--transition); }

img { max-width: 100%; display: block; }

ul { list-style: none; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 2px;
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  font-weight: 400;
}

.btn-primary {
  background-color: var(--warm-brown);
  color: var(--white);
}
.btn-primary:hover {
  background-color: var(--deep-brown);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--shadow-lg);
}

.btn-outline {
  background-color: transparent;
  color: var(--warm-brown);
  border: 1.5px solid var(--warm-brown);
}
.btn-outline:hover {
  background-color: var(--warm-brown);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-light {
  background-color: var(--cream);
  color: var(--deep-brown);
  border: 1.5px solid var(--beige-dark);
}
.btn-light:hover {
  background-color: var(--beige);
  transform: translateY(-2px);
}

/* ---- Section Labels ---- */
.section-label {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--warm-brown);
  margin-bottom: 16px;
  font-weight: 700;
}

.section-divider {
  width: 50px;
  height: 1.5px;
  background: var(--beige-dark);
  margin: 20px auto;
}
.section-divider.left { margin-left: 0; }

/* =============================================
   NAVIGATION
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(250, 246, 240, 0.97);
  backdrop-filter: blur(10px);
  padding: 14px 0;
  box-shadow: 0 2px 20px var(--shadow);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo .logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--deep-brown);
  letter-spacing: 1px;
  line-height: 1;
}

.nav-logo .logo-wellness {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--warm-brown);
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
  line-height: 1.2;
}

.navbar:not(.scrolled) .nav-logo .logo-wellness {
  color: var(--beige);
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dark);
  font-weight: 400;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--warm-brown);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: var(--warm-brown); }

.navbar.scrolled .nav-links a { color: var(--text-dark); }
.navbar:not(.scrolled) .nav-links a { color: var(--cream); }
.navbar:not(.scrolled) .nav-logo .logo-main { color: var(--cream); }
.navbar:not(.scrolled) .nav-logo .logo-sub { color: var(--beige); }

.nav-book-btn {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 2px;
  background: var(--warm-brown);
  color: var(--white) !important;
  transition: all var(--transition);
  border: none;
}
.nav-book-btn:hover {
  background: var(--deep-brown);
  transform: translateY(-1px);
}
.nav-book-btn::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--deep-brown);
  transition: all var(--transition);
}
.navbar:not(.scrolled) .hamburger span { background: var(--cream); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--cream);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 40px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--deep-brown);
  letter-spacing: 1px;
}
.mobile-menu a:hover { color: var(--warm-brown); }
.mobile-close {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 2rem;
  cursor: pointer;
  color: var(--text-mid);
  background: none;
  border: none;
  line-height: 1;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #3D2E24 0%, #5A3E2E 40%, #7A5640 70%, #A0785A 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(40, 28, 20, 0.75) 0%, rgba(40, 28, 20, 0.35) 100%);
  z-index: 1;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(196, 149, 74, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(138, 158, 133, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 120px 24px 80px;
}

.hero-content .section-label { color: var(--beige); }

.hero-content h1 {
  color: var(--cream);
  margin-bottom: 12px;
  font-style: italic;
}

.hero-content h1 span {
  font-style: normal;
  color: var(--beige-dark);
}

.hero-tagline {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  color: var(--beige);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 300;
  margin-bottom: 20px;
  display: block;
}

.hero-desc {
  color: rgba(250, 246, 240, 0.8) !important;
  font-size: 1.1rem;
  max-width: 540px;
  margin-bottom: 40px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--beige);
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.hero-badge i { color: var(--gold); font-size: 1rem; }

.hero-badges {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(250, 246, 240, 0.15);
  padding-top: 28px;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--beige);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.scroll-indicator i { font-size: 1.2rem; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* =============================================
   INTRO STRIP
   ============================================= */
.intro-strip {
  background: var(--deep-brown);
  padding: 28px 0;
}

.intro-strip .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
}

.intro-item {
  padding: 24px 36px;
  background: var(--deep-brown);
  display: flex;
  align-items: center;
  gap: 16px;
}

.intro-item i {
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
}

.intro-item-text span {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--beige);
  margin-bottom: 2px;
}

.intro-item-text p {
  color: var(--cream) !important;
  font-size: 0.92rem;
  font-weight: 300;
}

/* =============================================
   WELCOME / ABOUT SNIPPET
   ============================================= */
.welcome-section {
  background: var(--cream);
}

.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.welcome-visual {
  position: relative;
}

.welcome-img-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.welcome-img-frame::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 1.5px solid var(--beige-dark);
  border-radius: var(--radius);
  z-index: 0;
}

.welcome-img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--beige) 0%, var(--beige-dark) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  border-radius: var(--radius);
  overflow: hidden;
}

.welcome-img-placeholder i {
  font-size: 4rem;
  color: var(--warm-brown);
  margin-bottom: 12px;
  opacity: 0.5;
}

.welcome-img-placeholder p {
  font-size: 0.8rem;
  color: var(--text-light);
  letter-spacing: 1px;
}

.welcome-badge {
  position: absolute;
  bottom: 32px;
  right: -24px;
  background: var(--deep-brown);
  color: var(--cream);
  padding: 16px 20px;
  border-radius: var(--radius);
  text-align: center;
  z-index: 2;
  box-shadow: 0 8px 32px var(--shadow-lg);
}

.welcome-badge .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  display: block;
  line-height: 1;
  color: var(--beige);
}

.welcome-badge .label {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--beige-dark);
  display: block;
  margin-top: 4px;
}

.welcome-text { padding-left: 20px; }

.welcome-text h2 { margin-bottom: 20px; }

.welcome-text p { margin-bottom: 18px; }

.welcome-text .quote {
  border-left: 3px solid var(--beige-dark);
  padding-left: 20px;
  margin: 28px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--warm-brown);
  line-height: 1.6;
}

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

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.section-header .section-divider { margin: 20px auto; }

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 50px;
}

.treatment-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.treatment-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px var(--shadow-lg);
}

.treatment-card-icon {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}

.treatment-card-icon.acupuncture { background: linear-gradient(135deg, #D4BFA0, #C4A882); }
.treatment-card-icon.tuina { background: linear-gradient(135deg, #C4D4B8, #A8C49A); }
.treatment-card-icon.hijama { background: linear-gradient(135deg, #B8C4D4, #9AAEC4); }
.treatment-card-icon.moxibustion { background: linear-gradient(135deg, #D4C4A8, #C4AE8A); }
.treatment-card-icon.cupping { background: linear-gradient(135deg, #D4B8B8, #C49A9A); }
.treatment-card-icon.lifestyle { background: linear-gradient(135deg, #C4D0B8, #A8BEA0); }

.treatment-card-body { padding: 24px; }

.treatment-card-body h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.treatment-card-body p {
  font-size: 0.9rem;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.treatment-card-link {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--warm-brown);
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
}

.treatments-cta { text-align: center; }

/* =============================================
   WHY VIREYA
   ============================================= */
.why-section {
  background: linear-gradient(135deg, var(--deep-brown) 0%, #4A3228 100%);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,149,74,0.1) 0%, transparent 70%);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-text { color: var(--cream); }
.why-text .section-label { color: var(--gold); }
.why-text h2 { color: var(--cream); margin-bottom: 24px; }
.why-text p { color: rgba(250,246,240,0.8) !important; margin-bottom: 20px; }

.why-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 32px 0;
}

.why-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(196, 149, 74, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1rem;
}

.why-feature-text h4 {
  color: var(--cream);
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.why-feature-text p {
  font-size: 0.88rem;
}

.why-visual {
  position: relative;
}

.why-img-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(250,246,240,0.15);
}

.why-img-placeholder i {
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.4;
}

/* =============================================
   CONDITIONS / WHAT I HELP WITH
   ============================================= */
.conditions-section { background: var(--cream); }

.conditions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.condition-tag {
  background: var(--cream-dark);
  border: 1px solid var(--beige);
  border-radius: 50px;
  padding: 12px 20px;
  text-align: center;
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  color: var(--text-mid);
  transition: all var(--transition);
  letter-spacing: 0.5px;
}

.condition-tag:hover {
  background: var(--warm-brown);
  color: var(--white);
  border-color: var(--warm-brown);
  transform: translateY(-2px);
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-section { background: var(--beige); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--cream);
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px var(--shadow);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: var(--beige-dark);
  line-height: 1;
  font-weight: 300;
}

.testimonial-card p {
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 24px;
  padding-top: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--beige);
  padding-top: 20px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--beige-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--warm-brown);
  flex-shrink: 0;
}

.testimonial-author-info .name {
  font-weight: 700;
  font-size: 0.9rem;
  display: block;
  color: var(--text-dark);
}

.testimonial-author-info .detail {
  font-size: 0.78rem;
  color: var(--text-light);
}

.stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 4px; }

/* =============================================
   BOOKING CTA BANNER
   ============================================= */
.booking-cta {
  background: var(--warm-brown);
  padding: 70px 0;
  text-align: center;
}

.booking-cta h2 { color: var(--cream); margin-bottom: 12px; }

.booking-cta p { color: rgba(250,246,240,0.85) !important; margin-bottom: 32px; font-size: 1.05rem; }

.booking-cta .btn-light {
  color: var(--deep-brown);
  background: var(--cream);
  border-color: var(--cream);
}
.booking-cta .btn-light:hover { background: var(--beige); }

.booking-note {
  margin-top: 16px;
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 1px;
  color: rgba(250,246,240,0.65) !important;
}

/* =============================================
   LOCATION SECTION
   ============================================= */
.location-section { background: var(--cream-dark); }

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.location-details { }

.location-details h2 { margin-bottom: 24px; }

.location-info { display: flex; flex-direction: column; gap: 20px; margin: 28px 0 36px; }

.location-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.location-info-item i {
  font-size: 1.1rem;
  color: var(--warm-brown);
  margin-top: 3px;
  flex-shrink: 0;
  width: 20px;
}

.location-info-item h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 700;
  margin-bottom: 4px;
}

.location-info-item p { font-size: 0.95rem; }

.map-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--beige) 0%, var(--beige-dark) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 32px var(--shadow);
}

.map-placeholder i {
  font-size: 3rem;
  color: var(--warm-brown);
  margin-bottom: 12px;
  opacity: 0.6;
}

.map-placeholder p { color: var(--text-light); font-size: 0.85rem; }

.map-placeholder .map-label {
  background: var(--deep-brown);
  color: var(--cream);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.75rem;
  letter-spacing: 1px;
  margin-top: 12px;
}

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: var(--charcoal);
  padding: 60px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--beige);
  display: block;
  margin-bottom: 4px;
}

.footer-brand .logo-sub {
  font-size: 0.62rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--warm-brown);
  display: block;
  margin-bottom: 20px;
}

.footer-brand p { color: rgba(250,246,240,0.5) !important; font-size: 0.88rem; line-height: 1.8; }

.footer-col h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--beige-dark);
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col ul a {
  color: rgba(250,246,240,0.5);
  font-size: 0.88rem;
  transition: color var(--transition);
}

.footer-col ul a:hover { color: var(--beige); }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250,246,240,0.5);
  font-size: 0.9rem;
  transition: all var(--transition);
}

.footer-social a:hover {
  border-color: var(--warm-brown);
  color: var(--warm-brown);
  background: rgba(160, 120, 90, 0.1);
}

.footer-bottom {
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p { color: rgba(250,246,240,0.3) !important; font-size: 0.78rem; }

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, #3D2E24 0%, #6B4C35 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(196,149,74,0.12) 0%, transparent 70%);
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero h1 { color: var(--cream); font-style: italic; margin-bottom: 12px; }

.page-hero p { color: rgba(250,246,240,0.75) !important; font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}

.breadcrumb a, .breadcrumb span {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(250,246,240,0.5);
}

.breadcrumb a:hover { color: var(--beige); }

.breadcrumb i { font-size: 0.6rem; color: rgba(250,246,240,0.3); }

/* =============================================
   TREATMENTS PAGE
   ============================================= */
.treatment-detail {
  background: var(--cream);
}

.treatment-detail:nth-child(even) {
  background: var(--cream-dark);
}

.treatment-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.treatment-detail:nth-child(even) .treatment-detail-grid {
  direction: rtl;
}
.treatment-detail:nth-child(even) .treatment-detail-grid > * {
  direction: ltr;
}

.treatment-icon-large {
  width: 100%;
  aspect-ratio: 1;
  max-width: 400px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  gap: 16px;
}

.treatment-detail-text h2 { margin-bottom: 16px; }
.treatment-detail-text p { margin-bottom: 16px; }

.treatment-benefits {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.treatment-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-mid);
}

.treatment-benefit i { color: var(--soft-green); font-size: 0.8rem; }

.treatment-price {
  background: var(--cream-dark);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 28px;
  border-left: 3px solid var(--warm-brown);
}

.treatment-price .price-label {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 6px;
  display: block;
}

.treatment-price .price-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--warm-brown);
  font-weight: 400;
}

.treatment-price .price-detail {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 4px;
}

/* Pricing Table */
.pricing-section { background: var(--beige); }

.pricing-table {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 40px var(--shadow);
}

.pricing-table-header {
  background: var(--deep-brown);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 20px 32px;
  gap: 16px;
}

.pricing-table-header span {
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--beige);
  font-weight: 700;
}

.pricing-table-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 20px 32px;
  gap: 16px;
  border-bottom: 1px solid var(--beige);
  align-items: center;
  transition: background var(--transition);
}

.pricing-table-row:hover { background: var(--cream-dark); }
.pricing-table-row:last-child { border-bottom: none; }

.pricing-table-row .treatment-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--deep-brown);
}

.pricing-table-row .treatment-desc {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 2px;
}

.pricing-table-row .price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--warm-brown);
}

.pricing-table-row .duration {
  font-size: 0.85rem;
  color: var(--text-light);
}

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

.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
}

.about-img-container {
  position: relative;
}

.about-img-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.about-img-frame::after {
  content: '';
  position: absolute;
  top: 16px;
  left: 16px;
  right: -16px;
  bottom: -16px;
  border: 1.5px solid var(--beige-dark);
  border-radius: var(--radius);
  z-index: -1;
}

.about-img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--beige) 0%, var(--beige-dark) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about-img-placeholder i {
  font-size: 5rem;
  color: var(--warm-brown);
  opacity: 0.4;
}

.about-credentials {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--warm-brown);
  color: var(--cream);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: 0 8px 32px var(--shadow-lg);
}

.about-credentials .cred-title {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
  opacity: 0.8;
}

.credential-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  margin-top: 8px;
}

.credential-item i { font-size: 0.7rem; }

.about-bio h2 { margin-bottom: 20px; }
.about-bio p { margin-bottom: 18px; }

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}

.about-value-card {
  background: var(--cream-dark);
  border-radius: var(--radius);
  padding: 24px;
  border-top: 3px solid var(--beige-dark);
  transition: all var(--transition);
}

.about-value-card:hover {
  border-top-color: var(--warm-brown);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px var(--shadow);
}

.about-value-card i {
  font-size: 1.5rem;
  color: var(--warm-brown);
  margin-bottom: 12px;
}

.about-value-card h4 {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.about-value-card p { font-size: 0.85rem; }

/* TCM Section */
.tcm-section { background: var(--cream-dark); }

.tcm-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.tcm-principles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.tcm-principle {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  box-shadow: 0 4px 16px var(--shadow);
}

.tcm-principle .symbol {
  font-size: 2rem;
  display: block;
  margin-bottom: 8px;
}

.tcm-principle h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.tcm-principle p { font-size: 0.82rem; }

.yin-yang-visual {
  text-align: center;
}

.yin-yang-visual .symbol {
  font-size: 12rem;
  line-height: 1;
  filter: drop-shadow(0 8px 32px rgba(100,75,55,0.2));
  display: block;
  margin-bottom: 16px;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-section { background: var(--cream); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
}

.contact-info h2 { margin-bottom: 20px; }
.contact-info p { margin-bottom: 32px; }

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--warm-brown);
  flex-shrink: 0;
}

.contact-info-text h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-info-text p { font-size: 0.95rem; }

/* Form */
.contact-form-wrap {
  background: var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 48px;
}

.contact-form-wrap h3 { margin-bottom: 32px; }

.form-group { margin-bottom: 24px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group label {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 700;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--beige);
  border-radius: var(--radius);
  background: var(--cream);
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: border-color var(--transition);
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--warm-brown);
  box-shadow: 0 0 0 3px rgba(160, 120, 90, 0.1);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-success {
  display: none;
  text-align: center;
  padding: 32px;
  background: #f0f8ed;
  border-radius: var(--radius);
  margin-top: 20px;
}

.form-success i {
  font-size: 2.5rem;
  color: var(--soft-green);
  margin-bottom: 12px;
}

.form-success h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  margin-bottom: 8px;
}

/* =============================================
   UTILITIES
   ============================================= */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-32 { margin-bottom: 32px; }

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .welcome-grid,
  .why-grid,
  .about-hero-grid,
  .tcm-grid,
  .location-grid { grid-template-columns: 1fr; gap: 40px; }

  .welcome-text { padding-left: 0; }
  .welcome-badge { right: 20px; }

  .treatments-grid { grid-template-columns: repeat(2, 1fr); }
  .conditions-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .intro-strip .container { grid-template-columns: 1fr; gap: 0; }

  .treatment-detail-grid { grid-template-columns: 1fr; }
  .treatment-detail:nth-child(even) .treatment-detail-grid { direction: ltr; }

  .pricing-table-header,
  .pricing-table-row { grid-template-columns: 2fr 1fr 1fr; }
  .pricing-table-header span:last-child,
  .pricing-table-row > *:last-child { display: none; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 32px; }

  .yin-yang-visual .symbol { font-size: 8rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-content { padding: 100px 24px 60px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { text-align: center; }

  .treatments-grid { grid-template-columns: 1fr; }
  .conditions-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  .about-values { grid-template-columns: 1fr; }
  .tcm-principles { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .pricing-table-header,
  .pricing-table-row { grid-template-columns: 2fr 1fr; padding: 16px; }
  .pricing-table-header span:nth-child(3),
  .pricing-table-row > *:nth-child(3),
  .pricing-table-header span:last-child,
  .pricing-table-row > *:last-child { display: none; }

  .section-pad { padding: 60px 0; }
}

@media (max-width: 480px) {
  .conditions-grid { grid-template-columns: 1fr 1fr; }
  .hero-badges { gap: 16px; }
  .booking-cta .btn { width: 100%; text-align: center; }
}
