/* ==========================================================================
   Ō R A — THAI SPA & SANCTUARY ROHTAS
   Modern Luxury Minimalist Design System Inspired by Aman Aesthetics
   ========================================================================== */

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

/* --- CSS Variables & Design Tokens --- */
:root {
  --bg-main: #f6f4ef;
  --bg-surface: #ffffff;
  --bg-dark: #171817;
  --bg-card: #faf8f5;
  --text-primary: #1f1f1f;
  --text-secondary: #5c5b57;
  --text-muted: #8c8a84;
  --text-light: #ffffff;
  --accent-gold: #c5a059;
  --accent-gold-hover: #b08c46;
  --brand-red: #e31e24;
  --border-light: rgba(31, 31, 31, 0.12);
  --border-dark: rgba(255, 255, 255, 0.15);
  
  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --header-height: 90px;
  --transition-smooth: cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: var(--bg-main);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  background: none;
  border: none;
  font-family: inherit;
  color: inherit;
  cursor: pointer;
  outline: none;
}

button, a, input, select, textarea {
  -webkit-tap-highlight-color: transparent;
}

input, select, textarea {
  font-family: inherit;
}

/* Common Layout Utilities */
.container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-padding {
  padding: 100px 0;
}

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

.eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  line-height: 1.2;
}

.section-desc {
  max-width: 620px;
  margin: 16px auto 0 auto;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.gold-divider {
  width: 50px;
  height: 1px;
  background-color: var(--accent-gold);
  margin: 20px auto 0 auto;
}

/* Main container top offset for fixed header */
main {
  margin-top: 115px;
}

/* --- Site Header --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 115px;
  background-color: var(--bg-main);
  position: fixed;
  z-index: 400;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: height 0.4s var(--transition-smooth), background-color 0.4s ease, box-shadow 0.4s ease;
}

.site-header.scrolled {
  height: 75px;
  background-color: rgba(246, 244, 239, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.header-container {
  max-width: 1600px;
  height: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-toggle-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  transition: opacity 0.3s ease;
}

.nav-toggle-btn:hover {
  opacity: 0.7;
}

.nav-toggle-btn .btn-label {
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  font-weight: 400;
  color: var(--text-primary);
}

.search-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  color: var(--text-primary);
  transition: opacity 0.3s ease;
}

.search-toggle-btn:hover {
  opacity: 0.7;
}

.header-center {
  text-align: center;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.brand-logo:hover {
  transform: translateY(-1px);
}

.site-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
  opacity: 0.88;
  transition: height 0.4s var(--transition-smooth), opacity 0.3s ease;
}

.brand-logo:hover .site-logo-img {
  opacity: 1;
}

.site-header.scrolled .site-logo-img {
  height: 30px;
}

.menu-logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  display: block;
  opacity: 0.88;
}

.footer-logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  display: block;
  opacity: 0.9;
}

.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
}

.language-selector {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  padding: 6px 0;
  border-bottom: 1px solid var(--text-primary);
  transition: opacity 0.3s ease;
}

.lang-btn:hover {
  opacity: 0.7;
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-light);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  min-width: 140px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.3s var(--transition-smooth);
  z-index: 120;
}

.language-selector.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: block;
  padding: 8px 18px;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  color: var(--text-secondary);
  transition: background 0.2s ease, color 0.2s ease;
}

.lang-option:hover, .lang-option.active {
  background-color: rgba(0, 0, 0, 0.03);
  color: var(--text-primary);
  font-weight: 500;
}

.header-call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: transparent;
  color: var(--text-primary);
  border: 1px solid var(--text-primary);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0 20px;
  height: 42px;
  white-space: nowrap;
  border-radius: 0;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  box-sizing: border-box;
}

.site-header.scrolled .header-call-btn {
  height: 34px;
  padding: 0 14px;
  font-size: 0.7rem;
}

.header-call-btn:hover {
  background-color: var(--text-primary);
  color: var(--bg-main);
  transform: translateY(-1px);
}

.header-call-btn svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.header-call-btn:hover svg {
  transform: scale(1.1);
}

.reserve-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #1f1f1f;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0 28px;
  height: 42px;
  white-space: nowrap;
  border-radius: 0;
  transition: background-color 0.3s ease, height 0.4s var(--transition-smooth), padding 0.4s var(--transition-smooth), font-size 0.4s ease, transform 0.2s ease;
  box-sizing: border-box;
}

.site-header.scrolled .reserve-btn {
  height: 34px;
  padding: 0 20px;
  font-size: 0.7rem;
}

.reserve-btn:hover {
  background-color: #000000;
  transform: translateY(-1px);
}

/* --- Location Contact Choice Modal --- */
.location-contact-modal-panel {
  max-width: 580px;
  padding: 32px 28px;
  border-radius: 12px;
  background: var(--bg-surface, #ffffff);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
}

.loc-modal-header {
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-light, rgba(0,0,0,0.08));
  padding-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.loc-modal-title-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.loc-modal-title {
  font-family: var(--font-serif, 'Cormorant Garamond', serif);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-primary, #111);
  margin: 0;
}

.loc-modal-subtitle {
  font-size: 0.88rem;
  color: var(--text-secondary, #666);
  margin: 0;
}

.loc-cards-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

.location-choice-card {
  display: flex;
  flex-direction: column;
  background-color: #faf9f6;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  padding: 18px 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.location-choice-card:hover {
  border-color: #c5a059;
  box-shadow: 0 8px 24px rgba(197, 160, 89, 0.15);
  transform: translateY(-2px);
  background-color: #ffffff;
}

.loc-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 6px;
}

.loc-card-branch-name {
  font-family: var(--font-sans, 'Plus Jakarta Sans', sans-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 4px 0;
}

.loc-card-address {
  font-size: 0.82rem;
  color: #555;
  margin: 0;
  line-height: 1.4;
}

.loc-card-badge {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(197, 160, 89, 0.12);
  color: #a37c35;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.loc-card-phone-num {
  font-size: 0.88rem;
  font-weight: 600;
  color: #1a1a1a;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
}

.loc-card-actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed rgba(0, 0, 0, 0.08);
}

.loc-btn-call, .loc-btn-whatsapp {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
}

.loc-btn-call {
  background-color: #1f1f1f;
  color: #ffffff;
}

.loc-btn-call:hover {
  background-color: #000000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.loc-btn-whatsapp {
  background-color: #25d366;
  color: #ffffff;
}

.loc-btn-whatsapp:hover {
  background-color: #1eb956;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  color: #ffffff;
}

.loc-card-actions.highlight-call .loc-btn-call {
  transform: scale(1.02);
  box-shadow: 0 0 0 2px #c5a059;
}

.loc-card-actions.highlight-wa .loc-btn-whatsapp {
  transform: scale(1.02);
  box-shadow: 0 0 0 2px #25d366;
}

@media (max-width: 600px) {
  .location-choice-card {
    padding: 14px;
  }
  .loc-card-actions {
    flex-direction: column;
    gap: 8px;
  }
}

/* --- Hero Section --- */
.hero-section {
  position: relative;
  width: 100%;
  padding: 36px 40px 40px 40px;
  max-width: 1600px;
  margin: 0 auto;
}

.hero-bg-wrapper {
  position: relative;
  width: 100%;
  height: calc(100vh - var(--header-height) - 10px);
  min-height: 625px;
  max-height: 1020px;
  overflow: hidden;
  background-color: #f6f4ef;
}

.hero-img {
  position: absolute;
  top: -8%;
  left: 0;
  width: 100%;
  height: 116%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  will-change: transform;
  transition: opacity 1.5s var(--transition-smooth);
}

.hero-img.active {
  opacity: 1;
}

.hero-overlay {
  display: none;
  background: transparent;
}

/* Hero Content Overlay (Bottom-Left Alignment inspired by Moroccan Spa reference) */
.hero-content-overlay {
  position: absolute;
  bottom: 50px;
  left: 0;
  width: 100%;
  z-index: 20;
  pointer-events: none;
}

.hero-text-block {
  max-width: 580px;
  color: #1f1f1f;
  pointer-events: auto;
  text-shadow: none;
}

.hero-eyebrow {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  font-weight: 500;
  color: var(--accent-gold);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-sans);
  font-size: 2.8rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 12px;
}

.hero-subtitle {
  font-size: 0.92rem;
  color: var(--accent-gold);
  line-height: 1.5;
  margin-bottom: 22px;
}

.hero-cta-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.hero-btn-primary {
  background-color: #ffffff;
  color: #1a1a1a;
  padding: 14px 28px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  border-radius: 0;
  transition: all 0.3s ease;
}

.hero-btn-primary:hover {
  background-color: var(--accent-gold);
  color: #ffffff;
  transform: translateY(-2px);
}

.hero-btn-secondary {
  background-color: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: #ffffff;
  padding: 14px 28px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}

.hero-btn-secondary:hover {
  border-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.hero-location-tag {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Floating Action Buttons (Stacked Bottom-Right) */
.floating-actions-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 350;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.floating-actions-container.hidden-during-hero {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

.float-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.float-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
}

.float-btn-whatsapp {
  background-color: #25D366;
  color: #ffffff;
}

.float-btn-call {
  background-color: var(--accent-gold);
  color: #ffffff;
}

/* Hero Slide Dots */
.hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 20;
}

.hero-dots .dot {
  width: 28px;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: all 0.4s ease;
}

.hero-dots .dot.active, .hero-dots .dot:hover {
  background-color: #ffffff;
  width: 44px;
}

/* --- Why Choose Us Section --- */
.why-choose-us-section {
  padding: 100px 0 40px 0;
  background-color: var(--bg-main);
}

.why-choose-content {
  max-width: 800px;
  margin: 0 auto;
}

.eyebrow-line-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.eyebrow-line-wrapper .line {
  width: 24px;
  height: 1px;
  background-color: #8c8a84;
  opacity: 0.7;
}

.eyebrow-sub {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  font-weight: 500;
  color: #78746c;
  text-transform: uppercase;
}

.why-choose-us-section .section-title {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 300;
  color: #1a1a1a;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.why-choose-us-section .section-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 650px;
  margin: 0 auto;
}

/* --- Section 1: Spa Categories Grid (Clean Portrait Design) --- */
.spa-categories-section {
  background-color: var(--bg-main);
  padding: 80px 0;
}

.categories-grid-clean {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.category-card-clean {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.4s var(--transition-smooth);
}

.category-card-clean:hover {
  transform: translateY(-5px);
}

.card-image-box {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  overflow: hidden;
  background-color: #e5e0d8;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.card-image-box img.therapy-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--transition-smooth);
}

.category-card-clean:hover img.therapy-img {
  transform: scale(1.04);
}

/* Fallback placeholder when no image src is provided */
.image-placeholder-box {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #8c887f;
  background: linear-gradient(135deg, #e8e3db 0%, #ded8ce 100%);
  pointer-events: none;
}

/* Hide fallback when valid src image is provided */
.card-image-box img[src]:not([src=""]) + .image-placeholder-box {
  display: none;
}

.placeholder-icon {
  opacity: 0.6;
}

.placeholder-text {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #78746c;
  font-weight: 500;
}

.card-caption-clean {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.therapy-name {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 500;
  color: #3b3a36;
  letter-spacing: 0.02em;
}

.therapy-gold-line {
  width: 32px;
  height: 2px;
  background-color: var(--accent-gold);
  margin-top: 10px;
  border-radius: 1px;
  transition: width 0.3s ease;
}

.category-card-clean:hover .therapy-gold-line {
  width: 48px;
}

.category-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 10px;
}

.category-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 20px;
  flex: 1;
}

.category-link {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-primary);
  transition: color 0.3s ease;
}

.category-card:hover .category-link {
  color: var(--accent-gold);
}

/* --- Section 2: Treatment Menu & Pricing Tabs --- */
.treatment-menu-section {
  background-color: #faf8f5;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.menu-tabs-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin: 40px 0;
}

.menu-tab-btn {
  padding: 10px 24px;
  background-color: transparent;
  border: 1px solid var(--border-light);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.menu-tab-btn:hover, .menu-tab-btn.active {
  background-color: #1f1f1f;
  color: #ffffff;
  border-color: #2b2b2b;
}

/* Collapsible Treatments Container (2.5 Rows Visible) */
.treatments-collapsible-wrapper {
  position: relative;
  transition: max-height 0.6s var(--transition-smooth);
}

.treatments-collapsible-wrapper.collapsed {
  max-height: 480px;
  overflow: hidden;
}

.treatments-collapsible-wrapper.expanded {
  max-height: 3000px;
  overflow: visible;
}

/* Background Gradient Fade Overlay */
.menu-fade-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to bottom, rgba(250, 248, 245, 0) 0%, rgba(250, 248, 245, 0.95) 60%, #faf8f5 100%);
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 10;
}

.treatments-collapsible-wrapper.expanded .menu-fade-overlay {
  opacity: 0;
  visibility: hidden;
}

/* Show More / Show Less Toggle Button */
.show-more-toggle-container {
  margin-top: 24px;
  position: relative;
  z-index: 20;
}

.show-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-light);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-primary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  cursor: pointer;
}

.show-more-btn:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.show-more-btn .chevron-icon {
  transition: transform 0.4s ease;
}

.show-more-btn.expanded .chevron-icon {
  transform: rotate(180deg);
}

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 20px;
}

.treatment-item {
  background-color: var(--bg-main);
  padding: 28px 30px;
  border: 1px solid var(--border-light);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.treatment-item:hover {
  border-color: var(--accent-gold);
  transform: translateY(-2px);
}

.treatment-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}

.treatment-name {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
}

.treatment-price {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent-gold);
}

.treatment-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 18px;
}

.treatment-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.duration-pill {
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  background-color: rgba(0,0,0,0.04);
  color: var(--text-secondary);
}

.book-item-btn {
  margin-left: auto;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-primary);
  font-weight: 600;
  border-bottom: 1.5px solid var(--text-primary);
  padding-bottom: 2px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.book-item-btn:hover {
  color: var(--accent-gold);
  border-color: var(--accent-gold);
}

/* Treatment Inclusions Note Box */
.treatment-inclusions-box {
  margin-top: 50px;
  background-color: var(--bg-main);
  border: 1px dashed var(--accent-gold);
  padding: 24px 30px;
}

.inclusion-text {
  font-size: 0.9rem;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.inclusion-subtext {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

/* --- Section 3: Membership & Gift Cards --- */
.membership-section {
  background-color: var(--bg-main);
}

.membership-box-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  color: var(--text-primary);
  padding: 60px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.card-mockup-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gift-card-img {
  width: 100%;
  max-width: 440px;
  border-radius: 4px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  transition: transform 0.5s var(--transition-smooth);
}

.gift-card-img:hover {
  transform: scale(1.03) rotate(-1deg);
}

.membership-content-col .eyebrow {
  color: var(--accent-gold);
}

.membership-content-col .section-title {
  color: var(--text-primary);
}

.membership-intro {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 16px 0 28px 0;
  line-height: 1.6;
}

.privilege-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.privilege-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.check-icon {
  color: var(--accent-gold);
  flex-shrink: 0;
}

.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.dark-btn {
  background-color: var(--accent-gold);
  color: #171817;
  padding: 14px 28px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.3s ease;
}

.dark-btn:hover {
  background-color: var(--accent-gold-hover);
  color: #ffffff;
}

.outline-btn {
  background: transparent;
  border: 1px solid var(--text-primary);
  color: var(--text-primary);
  padding: 14px 28px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.outline-btn:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  background-color: rgba(197, 160, 89, 0.08);
}

/* --- Section 4: Sanctuary Photos --- */
.sanctuary-photos-section {
  background-color: var(--bg-main);
}

.sanctuary-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.gallery-item {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.gallery-item.large {
  grid-column: span 2;
  height: 280px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--transition-smooth);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-caption {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.03em;
}

/* --- Section 5: Quick Appointment Ribbon --- */
.quick-appointment-ribbon {
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  color: var(--text-primary);
  padding: 40px 0;
}

.quick-booking-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.ribbon-title-col h3 {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-primary);
}

.ribbon-title-col p {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.ribbon-form {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  flex: 1;
  flex-wrap: wrap;
}

.ribbon-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 150px;
}

.ribbon-field label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.ribbon-field select,
.ribbon-field input {
  padding: 10px 12px;
  background-color: var(--bg-main);
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  font-size: 0.85rem;
  outline: none;
  border-radius: 2px;
}

.ribbon-field select option {
  background-color: #ffffff;
  color: var(--text-primary);
}

.ribbon-submit-btn {
  background-color: var(--accent-gold);
  color: #171817;
  padding: 12px 24px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.3s ease;
  height: 40px;
}

.ribbon-submit-btn:hover {
  background-color: var(--accent-gold-hover);
  color: #ffffff;
}

/* --- Section 6: Contact & Location --- */
.contact-section {
  background-color: var(--bg-main);
}

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

.contact-lead {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 16px 0 32px 0;
}

.info-blocks {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Google 4.7 Star Rating Badge */
.google-rating-box {
  display: flex;
  align-items: center;
  gap: 14px;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-light);
  padding: 14px 20px;
}

.rating-stars {
  color: #f4c430;
  font-size: 1.15rem;
  letter-spacing: 2px;
}

.rating-details {
  display: flex;
  flex-direction: column;
}

.rating-num {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-primary);
}

.rating-reviews {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.footer-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 0.8rem;
}

.footer-rating-badge .stars {
  color: #f4c430;
}

.footer-rating-badge .score {
  font-weight: 700;
  color: var(--text-primary);
}

.footer-rating-badge .count {
  color: var(--text-muted);
}

.info-block {
  border-left: 2px solid var(--accent-gold);
  padding-left: 16px;
}

.info-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.info-val {
  font-size: 0.95rem;
  color: var(--text-primary);
  line-height: 1.5;
}

.contact-form-col {
  background-color: var(--bg-surface);
  padding: 40px;
  border: 1px solid var(--border-light);
}

.form-box-title {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}

.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  padding: 9px 12px;
  background-color: var(--bg-main);
  border: 1px solid var(--border-light);
  font-size: 0.85rem;
  color: var(--text-primary);
  outline: none;
  border-radius: 2px;
  transition: border-color 0.3s ease;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: var(--text-primary);
}

/* --- Section 7: Map --- */
.map-section {
  width: 100%;
  line-height: 0;
}

/* --- Section 8: Light Luxury Footer --- */
.site-footer {
  background-color: #ede8df;
  border-top: 1px solid var(--border-light);
  color: var(--text-primary);
  padding: 80px 0 30px 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.3fr;
  gap: 28px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border-light);
}

.footer-logo {
  display: inline-flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.footer-logo .logo-main {
  color: var(--text-primary);
}

.footer-logo .logo-sub {
  color: var(--accent-gold);
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 320px;
}

.footer-heading {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-gold);
}

.footer-info-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.footer-reserve-btn {
  margin-top: 14px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-gold);
  font-weight: 600;
  transition: opacity 0.3s ease;
}

.footer-reserve-btn:hover {
  opacity: 0.7;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: var(--text-muted);
}

.footer-bottom-links a:hover {
  color: var(--accent-gold);
}

.footer-bottom-links a:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* --- Slide-out Navigation Overlay --- */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.4s ease, opacity 0.4s ease;
}

.menu-overlay.active {
  visibility: visible;
  opacity: 1;
}

.menu-backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.menu-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 480px;
  max-width: 90vw;
  height: 100%;
  background-color: #faf8f5;
  color: var(--text-primary);
  border-right: 1px solid var(--border-light);
  box-shadow: 10px 0 40px rgba(0, 0, 0, 0.08);
  padding: 50px 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateX(-100%);
  transition: transform 0.5s var(--transition-smooth);
}

.menu-overlay.active .menu-panel {
  transform: translateX(0);
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-brand {
  font-family: var(--font-sans);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: #1a1a1a;
}

.menu-close-btn {
  color: var(--text-primary);
  padding: 8px;
  transition: opacity 0.3s ease;
}

.menu-close-btn:hover {
  opacity: 0.6;
}

.menu-nav {
  margin: 40px 0;
}

.menu-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.menu-link {
  display: flex;
  align-items: baseline;
  gap: 16px;
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 500;
  color: #5c5b57;
  transition: color 0.3s ease, transform 0.3s ease;
}

.menu-link .num {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--accent-gold);
}

.menu-link:hover, .menu-link.active {
  color: #1a1a1a;
  transform: translateX(8px);
}

.menu-footer {
  border-top: 1px solid var(--border-light);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.menu-info-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.menu-info-item .val {
  color: var(--text-primary);
  font-weight: 500;
}

/* --- Search Modal Overlay --- */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

.search-overlay.active {
  visibility: visible;
  opacity: 1;
}

.search-backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(246, 244, 239, 0.95);
  backdrop-filter: blur(8px);
}

.search-box-container {
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin: 120px auto 0 auto;
  padding: 0 24px;
}

.search-header {
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1.5px solid var(--text-primary);
  padding-bottom: 16px;
}

.search-box-icon {
  color: var(--text-primary);
}

#searchInput {
  flex: 1;
  border: none;
  background: none;
  font-family: var(--font-sans);
  font-size: 1.5rem;
  color: var(--text-primary);
  outline: none;
}

#searchInput::placeholder {
  color: var(--text-muted);
  font-style: italic;
}

.search-close-btn {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.search-close-btn:hover {
  color: var(--text-primary);
}

.search-suggestions {
  margin-top: 32px;
}

.suggestion-title {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.search-tag {
  padding: 10px 18px;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-light);
  font-size: 0.85rem;
  color: var(--text-primary);
  transition: all 0.2s ease;
}

.search-tag:hover {
  background-color: var(--text-primary);
  color: var(--bg-main);
}

/* --- Reserve Modal Overlay --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 600;
  visibility: hidden;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  visibility: visible;
  opacity: 1;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.modal-panel {
  position: relative;
  z-index: 10;
  width: 660px;
  max-width: 100%;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  background-color: var(--bg-main);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
  padding: 30px 36px;
  transform: translateY(15px);
  transition: transform 0.4s var(--transition-smooth);
}

/* Custom smooth scrollbar inside modal panel */
.modal-panel::-webkit-scrollbar {
  width: 6px;
}
.modal-panel::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}

.modal-overlay.active .modal-panel {
  transform: translateY(0);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 12px;
}

.modal-title {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--text-primary);
}

.modal-title-mobile {
  display: none;
}

.reservation-intro {
  margin: -6px 0 16px;
  color: var(--text-secondary);
  font-size: 0.86rem;
  line-height: 1.5;
}

.modal-close-btn {
  padding: 4px;
  color: var(--text-primary);
  transition: opacity 0.3s ease;
}

.modal-close-btn:hover {
  opacity: 0.6;
}

.reservation-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-group label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  font-weight: 500;
}

/* --- Prominent Location Field Highlight --- */
.form-group-highlight {
  background: linear-gradient(135deg, rgba(197, 160, 89, 0.12) 0%, rgba(246, 244, 239, 0.8) 100%);
  border: 1.5px solid var(--accent-gold);
  border-radius: 8px;
  padding: 12px 14px;
  box-shadow: 0 4px 16px rgba(197, 160, 89, 0.15);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group-highlight:focus-within,
.form-group-highlight:hover {
  border-color: var(--accent-gold-hover);
  box-shadow: 0 6px 20px rgba(197, 160, 89, 0.22);
}

.label-highlight {
  color: var(--accent-gold) !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
  font-size: 0.74rem !important;
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
}

.select-highlight {
  background-color: #ffffff !important;
  border: 1px solid var(--accent-gold) !important;
  color: var(--text-primary) !important;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
  padding: 10px 14px !important;
  border-radius: 6px !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
  cursor: pointer !important;
}

.select-highlight:focus {
  border-color: var(--accent-gold-hover) !important;
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.25) !important;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 9px 12px;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-light);
  font-size: 0.85rem;
  color: var(--text-primary);
  outline: none;
  border-radius: 2px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--text-primary);
}

.coupon-input-group {
  display: flex;
  gap: 10px;
  align-items: center;
}

.coupon-input-group input {
  flex: 1;
}

.coupon-apply-btn {
  background-color: #2b7a78;
  color: #ffffff;
  padding: 9px 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.3s ease;
}

.coupon-apply-btn:hover {
  background-color: #17252a;
}

.coupon-msg {
  font-size: 0.75rem;
  margin-top: 2px;
  display: block;
}

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

.submit-reserve-btn {
  margin-top: 10px;
  background-color: #1f1f1f;
  color: #ffffff;
  padding: 16px;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.3s ease;
}

.submit-reserve-btn:hover {
  background-color: #000000;
}

/* --- Responsive Layout Adjustments (iPad & Mobile Optimization) --- */

/* iPad & Tablet Landscape (1024px) */
@media (max-width: 1024px) {
  .header-container {
    padding: 0 24px;
  }
  .header-left {
    gap: 16px;
  }
  .header-right {
    gap: 20px;
  }
  .hero-section {
    padding: 24px 24px 36px 24px;
  }
  .hero-bg-wrapper {
    height: 60vh;
    min-height: 480px;
  }
  .hero-content-overlay {
    bottom: 36px;
    left: 24px;
    right: 24px;
  }
  .hero-title {
    font-size: 2.3rem;
  }
  .categories-grid-clean {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .treatments-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .membership-box-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px;
  }
  .sanctuary-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .gallery-item.large {
    grid-column: span 2;
  }
  .quick-booking-card {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .ribbon-form {
    width: 100%;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .location-hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* iPad Portrait & Mobile Landscape (768px) */
@media (max-width: 768px) {
  :root {
    --header-height: 75px;
  }
  main {
    margin-top: 75px;
  }
  .site-header {
    height: 75px;
  }
  .site-header.scrolled {
    height: 65px;
  }
  .header-container {
    padding: 0 16px;
  }
  .site-logo-img {
    height: 32px;
  }
  .nav-toggle-btn .btn-label {
    display: none;
  }
  .header-right {
    gap: 12px;
  }
  .reserve-btn,
  .header-call-btn {
    height: 36px;
    padding: 0 14px;
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    white-space: nowrap;
    box-sizing: border-box;
  }
  .site-header.scrolled .reserve-btn,
  .site-header.scrolled .header-call-btn {
    height: 32px;
    padding: 0 10px;
    font-size: 0.62rem;
  }
  .section-padding {
    padding: 60px 0;
  }
  .section-title {
    font-size: 2rem;
  }
  .hero-section {
    padding: 12px 12px 24px 12px;
  }
  .hero-bg-wrapper {
    height: 52vh;
    min-height: 400px;
    border-radius: 4px;
  }
  .hero-content-overlay {
    bottom: 24px;
    left: 16px;
    right: 16px;
    width: auto;
  }
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .hero-eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
  }
  .hero-title {
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 8px;
  }
  .hero-subtitle {
    font-size: 0.85rem;
    margin-bottom: 16px;
  }
  .hero-cta-buttons {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 10px;
  }
  .hero-btn-primary, .hero-btn-secondary {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 12px 16px;
    font-size: 0.75rem;
  }
  .categories-grid-clean {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .category-card-clean {
    padding: 20px 16px;
  }
  .treatments-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .treatment-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .treatment-meta {
    align-self: flex-start;
  }
  .membership-box-grid {
    padding: 28px 20px;
    gap: 24px;
  }
  .btn-group {
    flex-direction: column;
    width: 100%;
  }
  .dark-btn, .outline-btn {
    width: 100%;
    text-align: center;
  }
  .sanctuary-gallery-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .gallery-item.large {
    grid-column: span 1;
    height: 250px;
  }
  .ribbon-form {
    flex-direction: column;
  }
  .ribbon-field {
    min-width: 100%;
  }
  .ribbon-submit-btn {
    width: 100%;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .contact-form-col {
    padding: 24px 18px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }
  .menu-panel {
    width: 88vw;
    padding: 36px 24px;
  }
  .menu-logo-img {
    height: 30px;
  }
  .menu-nav {
    margin: 28px 0;
  }
  .menu-links {
    gap: 16px;
  }
  .menu-link {
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
    line-height: 1.3;
  }
  .menu-link .num {
    min-width: 22px;
    margin-top: 2px;
    font-size: 0.68rem;
  }
  .modal-panel {
    width: 94vw;
    padding: 24px 18px;
    max-height: 90vh;
  }
  .booking-details-toggle {
    display: block;
    width: fit-content;
    margin: 2px 0 0;
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 0.75rem;
    text-decoration: underline;
    text-underline-offset: 4px;
  }
  .booking-optional-group {
    display: none !important;
  }
  .reservation-form.show-booking-details .booking-optional-group {
    display: flex !important;
  }
  .floating-actions-container {
    bottom: 18px;
    right: 18px;
    gap: 10px;
  }
  .float-btn {
    width: 44px;
    height: 44px;
  }
  .location-hero-content h1 {
    font-size: 2rem;
  }
  .article-container {
    padding: 40px 16px 60px 16px;
  }
  .article-header h1 {
    font-size: 1.9rem;
  }
  .article-content {
    font-size: 0.98rem;
  }
}

/* Mobile Phone Narrow Screens (480px and below) */
@media (max-width: 480px) {
  body {
    padding-bottom: env(safe-area-inset-bottom);
  }
  .header-container {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    padding: 0 12px;
  }
  .header-left {
    order: 3;
    margin-left: 0;
    gap: 8px;
  }
  .header-right {
    order: 2;
    margin-left: auto;
    gap: 10px;
  }
  .header-center {
    order: 1;
    text-align: left;
  }
  .secondary-page .header-container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 0;
  }
  .secondary-page .header-left,
  .secondary-page .header-center,
  .secondary-page .header-right {
    order: initial;
    margin-left: 0;
  }
  .secondary-page .header-left {
    justify-self: start;
  }
  .secondary-page .header-center {
    text-align: center;
  }
  .header-right {
    gap: 8px;
  }
  .secondary-page .header-right {
    justify-self: end;
  }
  .secondary-page .header-left .btn-label {
    font-size: 0.65rem;
    white-space: nowrap;
  }
  .secondary-page .site-logo-img {
    height: 26px;
  }
  .secondary-page .reserve-btn,
  .secondary-page .header-call-btn {
    height: 34px;
    min-height: 34px;
    padding: 0 8px;
    font-size: 0.58rem;
    letter-spacing: 0.05em;
    white-space: nowrap;
    box-sizing: border-box;
  }
  .search-toggle-btn {
    display: none;
  }
  .lang-btn {
    display: none;
  }
  .site-logo-img {
    height: 29px;
  }
  .reserve-btn,
  .header-call-btn {
    height: 36px;
    min-height: 36px;
    padding: 0 10px;
    font-size: 0.62rem;
    letter-spacing: 0.06em;
    white-space: nowrap;
    box-sizing: border-box;
  }
  .nav-toggle-btn, .search-toggle-btn {
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
  }
  .hero-section {
    padding: 8px 8px 20px;
  }
  .menu-panel {
    padding: 28px 20px;
  }
  .menu-nav {
    margin: 22px 0;
  }
  .menu-links {
    gap: 14px;
  }
  .menu-link {
    font-size: 0.95rem;
  }
  .categories-grid-clean {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 12px;
  }
  .category-card-clean {
    padding: 0 0 8px;
  }
  .card-image-box {
    aspect-ratio: 1 / 1;
    border-radius: 12px;
  }
  .card-caption-clean {
    margin-top: 12px;
  }
  .therapy-name {
    font-size: 0.88rem;
    line-height: 1.25;
  }
  .therapy-gold-line {
    width: 24px;
    margin-top: 7px;
  }
  .hero-title {
    font-size: 1.55rem;
  }
  .hero-bg-wrapper {
    height: min(68vh, 520px);
    min-height: 420px;
  }
  .section-title {
    font-size: 1.7rem;
  }
  .google-rating-box {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
  }
  .rating-stars {
    flex-shrink: 0;
    font-size: 0.95rem;
    letter-spacing: 1px;
  }
  .rating-num {
    font-size: 0.83rem;
  }
  .rating-reviews {
    font-size: 0.7rem;
  }
  .info-blocks {
    gap: 18px;
  }
  .info-block {
    padding-left: 12px;
  }
  .info-label {
    font-size: 0.64rem;
    margin-bottom: 3px;
  }
  .info-val {
    font-size: 0.84rem;
    line-height: 1.45;
  }
  .contact-form-col {
    padding: 20px 14px;
  }
  .form-box-title {
    font-size: 1rem;
    margin-bottom: 16px;
  }
  .inquiry-form {
    gap: 10px;
  }
  .inquiry-form .form-group input,
  .inquiry-form .form-group select,
  .inquiry-form .form-group textarea {
    padding: 8px 10px;
    font-size: 0.84rem;
  }
  .landmark-cards-grid, .hotel-cards-grid {
    grid-template-columns: 1fr;
  }
  .menu-tabs-wrapper {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    margin: 28px -16px;
    padding: 0 16px 8px;
    gap: 8px;
    scrollbar-width: none;
  }
  .menu-tabs-wrapper::-webkit-scrollbar {
    display: none;
  }
  .menu-tab-btn {
    flex: 0 0 auto;
    min-height: 44px;
    padding: 10px 16px;
  }
  .treatment-item {
    padding: 22px 18px;
  }
  .treatment-top {
    align-items: flex-start;
    gap: 8px;
  }
  .treatment-name {
    font-size: 1.05rem;
  }
  .treatment-price {
    font-size: 1.1rem;
    white-space: nowrap;
  }
  .treatments-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .treatment-item {
    padding: 16px 12px;
  }
  .treatment-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    margin-bottom: 8px;
  }
  .treatment-name {
    font-size: 0.88rem;
    line-height: 1.25;
  }
  .treatment-price {
    font-size: 1rem;
  }
  .treatment-desc {
    font-size: 0.74rem;
    line-height: 1.45;
    margin-bottom: 12px;
  }
  .treatment-meta {
    align-items: flex-start;
    gap: 8px;
  }
  .duration-pill {
    font-size: 0.65rem;
    padding: 3px 7px;
  }
  .book-item-btn {
    width: 100%;
    justify-content: center;
    margin-left: 0;
    padding: 8px 0 5px;
    font-size: 0.62rem;
  }
  .book-item-btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  .modal-panel {
    width: calc(100vw - 24px);
    max-height: calc(100dvh - 24px);
    padding: 18px 16px;
  }
  .modal-overlay {
    align-items: flex-start;
    padding: 12px;
  }
  .modal-header {
    position: sticky;
    top: -18px;
    z-index: 2;
    margin: -18px -16px 12px;
    padding: 18px 16px 12px;
    background: var(--bg-main);
  }
  .modal-title {
    font-size: 1.3rem;
    line-height: 1.25;
    padding-right: 44px;
  }
  .modal-title-full {
    display: none;
  }
  .modal-title-mobile {
    display: inline;
  }
  .modal-close-btn {
    position: absolute;
    top: 10px;
    right: 8px;
  }
  .modal-close-btn {
    min-width: 44px;
    min-height: 44px;
  }
  .form-group input, .form-group select, .form-group textarea {
    min-height: 44px;
    font-size: 16px;
  }
  .reservation-intro {
    margin: 0 0 12px;
    font-size: 0.78rem;
  }
  .reservation-form {
    gap: 10px;
  }
  .reservation-form .form-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .reservation-form .form-group {
    gap: 3px;
  }
  .reservation-form .form-group label {
    font-size: 0.66rem;
    letter-spacing: 0.08em;
  }
  .reservation-form .form-group input,
  .reservation-form .form-group select {
    padding: 8px 9px;
  }
  .reservation-form #reservePhone::placeholder {
    font-size: 0.9rem;
  }
  .reservation-form #durationPriceSelect,
  .reservation-form #couponCode {
    font-size: 0.76rem;
  }
  .coupon-input-group {
    gap: 8px;
  }
  .coupon-apply-btn {
    min-height: 44px;
    padding: 8px 10px;
    font-size: 0.65rem;
    letter-spacing: 0.08em;
  }
  .reservation-form textarea {
    min-height: 76px;
  }
  .submit-reserve-btn {
    min-height: 48px;
    position: sticky;
    bottom: -18px;
    z-index: 2;
    margin: 0 -2px;
    box-shadow: 0 -8px 14px var(--bg-main);
  }
  .floating-actions-container {
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
  }
  .float-btn {
    width: 52px;
    height: 52px;
  }
}

/* --- FAQ Accordion Section --- */
.faq-section {
  background-color: var(--bg-surface);
}

.faq-container {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid var(--border-light);
  border-radius: 4px;
  background-color: var(--bg-card);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover, .faq-item.open {
  border-color: var(--accent-gold);
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.faq-question {
  width: 100%;
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-primary);
  background: none;
  border: none;
  cursor: pointer;
  gap: 16px;
}

.faq-icon {
  font-size: 1.4rem;
  color: var(--accent-gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
  padding: 0 28px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.faq-item.open .faq-answer {
  max-height: 800px;
  padding: 0 28px 24px 28px;
  transition: max-height 0.5s ease-in, padding 0.3s ease;
}

/* --- Minimal Secondary Page Header --- */
.page-header-simple {
  background-color: #faf8f5;
  padding: 100px 20px 48px;
  border-bottom: 1px solid var(--border-light);
  text-align: center;
}

.page-header-simple .eyebrow {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 12px;
  font-weight: 500;
}

.page-header-simple .page-title {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #1f1f1f;
  margin-bottom: 14px;
  line-height: 1.2;
}

.page-header-simple .page-subtitle {
  font-size: 0.95rem;
  color: #5c5b57;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .page-header-simple {
    padding: 80px 20px 36px;
  }
  .page-header-simple .page-title {
    font-size: 2rem;
  }
}

/* --- Location Page Dedicated Styles --- */
.location-hero-section {
  position: relative;
  background-color: #f6f4ef;
  color: var(--text-primary);
  padding: 80px 0 60px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.location-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.location-hero-content h1 {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  color: var(--text-primary);
  line-height: 1.15;
}

.location-hero-lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #5c5b57;
  margin-bottom: 30px;
}

.location-hero-img-box {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border: 1px solid var(--border-light);
}

.location-hero-img-box img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.location-action-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.btn-gold {
  background-color: #1f1f1f;
  color: #ffffff;
  padding: 14px 28px;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s ease;
}

.btn-gold:hover {
  background-color: #000000;
  color: #ffffff;
}

.btn-outline-light {
  border: 1px solid #1f1f1f;
  color: #1f1f1f;
  padding: 14px 28px;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background-color: #1f1f1f;
  color: #ffffff;
}

/* Landmarks & Hotel Grid Cards */
.landmark-cards-grid, .hotel-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.landmark-card, .hotel-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-light);
  padding: 28px;
  border-radius: 4px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.landmark-card:hover, .hotel-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-gold);
}

.card-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-gold);
  background-color: rgba(197, 160, 89, 0.1);
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 12px;
}

.landmark-card h3, .hotel-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.landmark-card p, .hotel-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* --- Guide Articles Layout --- */
.article-container {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 24px 100px 24px;
}

.article-header {
  text-align: center;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 32px;
}

.article-header h1 {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 300;
  line-height: 1.2;
  margin-top: 12px;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.article-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.article-content {
  font-family: var(--font-sans);
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--text-secondary);
}

.article-content h2,
.article-body h2 {
  font-family: var(--font-serif) !important;
  font-size: 2.1rem !important;
  font-weight: 300 !important;
  line-height: 1.35 !important;
  color: var(--text-primary) !important;
  margin-top: 56px !important;
  margin-bottom: 24px !important;
  letter-spacing: 0.02em !important;
  display: block !important;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 12px;
}

.article-content h2:first-child,
.article-body h2:first-child {
  margin-top: 0 !important;
}

.article-content h3,
.article-body h3 {
  font-family: var(--font-serif) !important;
  font-size: 1.5rem !important;
  font-weight: 400 !important;
  line-height: 1.4 !important;
  color: var(--text-primary) !important;
  margin-top: 42px !important;
  margin-bottom: 18px !important;
  letter-spacing: 0.02em !important;
  display: block !important;
}

.article-content p,
.article-body p {
  font-family: var(--font-sans) !important;
  font-size: 1.02rem !important;
  font-weight: 300 !important;
  line-height: 1.9 !important;
  color: #4a4a4a !important;
  margin-bottom: 26px !important;
}

.article-content ul,
.article-content ol,
.article-body ul,
.article-body ol {
  margin: 24px 0 36px 0 !important;
  padding-left: 24px !important;
}

.article-content li,
.article-body li {
  font-family: var(--font-sans) !important;
  font-size: 1rem !important;
  font-weight: 300 !important;
  line-height: 1.85 !important;
  color: #4a4a4a !important;
  margin-bottom: 14px !important;
}

.article-content strong,
.article-content b,
.article-body strong,
.article-body b {
  font-weight: 500 !important;
  color: var(--text-primary) !important;
}

.article-callout {
  background-color: var(--bg-card);
  border-left: 4px solid var(--accent-gold);
  padding: 24px 30px;
  margin: 32px 0;
  border-radius: 0 4px 4px 0;
}

.article-callout h4 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}

@media (max-width: 768px) {
  .location-hero-grid {
    grid-template-columns: 1fr;
  }
  .location-hero-content h1 {
    font-size: 2.2rem;
  }
  .article-header h1 {
    font-size: 2rem;
  }
}

/* ==========================================================================
   NEW SECTIONS FROM OLD WEBSITE
   ========================================================================== */

/* --- About / Our Story Section --- */
.about-story-section {
  background-color: var(--bg-main);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-story-images {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-img-main {
  grid-column: 1 / -1;
  border-radius: 12px;
  overflow: hidden;
}

.about-img-accent {
  grid-column: 1 / -1;
  border-radius: 12px;
  overflow: hidden;
}

.about-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.about-img-main .about-image {
  height: 320px;
}

.about-img-main:hover .about-image,
.about-img-accent:hover .about-image {
  transform: scale(1.03);
}

.about-story-content .eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 12px;
}

.about-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-top: 16px;
}

.about-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 32px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

@media (max-width: 900px) {
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* --- Our Uniqueness Section --- */
.uniqueness-section {
  background-color: var(--bg-main);
  color: var(--text-primary);
}

.uniqueness-section .eyebrow {
  color: var(--accent-gold);
}

.uniqueness-section .section-title {
  color: var(--text-primary);
}

.uniqueness-section .section-desc {
  color: var(--text-secondary);
}

.uniqueness-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 50px;
}

.uniqueness-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
  transition: background 0.4s ease, border-color 0.4s ease, transform 0.4s var(--transition-smooth), box-shadow 0.4s ease;
}

.uniqueness-card:hover {
  background: var(--bg-card);
  border-color: var(--accent-gold);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.uniqueness-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin: 0 auto 20px auto;
  background: rgba(197, 160, 89, 0.12);
  border-radius: 50%;
}

.uniqueness-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.uniqueness-card p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

@media (max-width: 900px) {
  .uniqueness-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .uniqueness-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .uniqueness-card {
    padding: 28px 20px;
  }
}

/* --- Parallax Quote Divider --- */
.parallax-divider-section {
  position: relative;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.parallax-bg-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.parallax-bg-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.parallax-overlay-dark {
  position: absolute;
  inset: 0;
  background: rgba(246, 244, 239, 0.88); backdrop-filter: blur(4px);
  z-index: 1;
}

.parallax-content-center {
  position: relative;
  z-index: 2;
  text-align: center;
}

.parallax-quote {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  font-style: italic;
  color: #1f1f1f; font-weight: 500;
  line-height: 1.5;
  max-width: 700px;
  margin: 0 auto;
  letter-spacing: 0.02em;
}

@media (max-width: 600px) {
  .parallax-divider-section {
    height: 280px;
  }
  .parallax-quote {
    font-size: 1.3rem;
    padding: 0 10px;
  }
}

/* --- Client Reviews Section --- */
.reviews-section {
  background-color: var(--bg-main);
}

.reviews-slider-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
}

.reviews-track-container {
  flex: 1;
  overflow: hidden;
  border-radius: 12px;
}

.reviews-track {
  display: flex;
  transition: transform 0.5s var(--transition-smooth);
}

.review-card {
  min-width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 48px 40px;
  box-sizing: border-box;
}

.review-highlight {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--accent-gold);
  letter-spacing: 0.03em;
  line-height: 1.5;
  margin-bottom: 16px;
}

.review-text {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-secondary);
  font-style: italic;
}

.review-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  background: var(--bg-surface);
  color: var(--text-primary);
  cursor: pointer;
  transition: border-color 0.3s ease, background 0.3s ease;
  flex-shrink: 0;
}

.review-arrow:hover {
  border-color: var(--accent-gold);
  background: var(--bg-card);
}

.review-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.review-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-light);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.review-dots .dot.active {
  background: var(--accent-gold);
  transform: scale(1.2);
}

@media (max-width: 600px) {
  .review-card {
    padding: 32px 24px;
  }
  .review-highlight {
    font-size: 1rem;
  }
  .review-arrow {
    width: 36px;
    height: 36px;
  }
}

/* --- CTA Banner Section --- */
.cta-banner-section {
  background-color: #faf8f5;
  color: var(--text-primary);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 60px 0;
}

.cta-banner-box {
  max-width: 680px;
  margin: 0 auto;
}

.cta-banner-box .section-title {
  color: var(--text-primary);
  font-size: 2.2rem;
}

.cta-banner-box .section-desc {
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.cta-btn-group {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-btn-group .dark-btn {
  background: #1f1f1f;
  color: #fff;
  padding: 14px 36px;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.cta-btn-group .dark-btn:hover {
  background: #000000;
}

.cta-btn-group .outline-btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 36px;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--text-light);
  transition: border-color 0.3s ease, color 0.3s ease;
}

.cta-btn-group .outline-btn:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

/* --- Multi-Location Display Styles --- */
.location-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 10px;
}

.branch-info-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 20px 24px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.branch-info-card:hover {
  border-color: var(--accent-gold);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.branch-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-gold);
  background: rgba(197, 160, 89, 0.1);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.branch-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.branch-address {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 8px;
}

.branch-contact, .branch-hours {
  font-size: 0.84rem;
  color: var(--text-primary);
  margin-top: 4px;
}

.branch-contact a {
  color: var(--accent-gold);
  text-decoration: none;
}

.branch-contact a:hover {
  text-decoration: underline;
}

/* Footer Locations Column */
.footer-locations-col .footer-loc-title {
  color: var(--accent-gold);
  font-size: 0.88rem;
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}

.footer-loc-item {
  border-bottom: 1px dashed rgba(31, 31, 31, 0.1);
  padding-bottom: 10px;
}

.footer-loc-item:last-of-type {
  border-bottom: none;
}

/* ==========================================================================
   MINIMAL LUXURY SUBPAGE TYPOGRAPHY & LAYOUT
   ========================================================================== */

.article-content-section {
  background-color: var(--bg-main);
  padding: 60px 0 80px 0;
}

.article-body,
.seo-content {
  max-width: 800px;
  margin: 0 auto;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.98rem;
  line-height: 1.85;
  color: var(--text-secondary);
}

.article-body h2,
.seo-content h2 {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 300;
  line-height: 1.35;
  color: var(--text-primary);
  margin-top: 48px;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 10px;
}

.article-body h2:first-child,
.seo-content h2:first-child {
  margin-top: 0;
}

.article-body h3,
.seo-content h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.4;
  color: var(--text-primary);
  margin-top: 36px;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.article-body h4,
.seo-content h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-top: 24px;
  margin-bottom: 10px;
}

.article-body p,
.seo-content p {
  margin-bottom: 22px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.85;
}

.article-body strong,
.article-body b,
.seo-content strong,
.seo-content b {
  font-weight: 500;
  color: var(--text-primary);
}

.article-body ul,
.article-body ol,
.seo-content ul,
.seo-content ol {
  margin: 16px 0 28px 0;
  padding-left: 20px;
}

.article-body li,
.seo-content li {
  margin-bottom: 10px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.8;
}

.article-body li strong,
.seo-content li strong {
  font-weight: 500;
  color: var(--text-primary);
}

/* Minimal Luxury Cards & FAQ items inside subpages */
.article-body .treatment-cards,
.seo-content .treatment-cards,
.article-body .hotel-nearby-grid,
.seo-content .hotel-nearby-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin: 32px 0;
}

.article-body .treatment-card,
.seo-content .treatment-card,
.article-body .hotel-nearby-card,
.seo-content .hotel-nearby-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 24px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.article-body .treatment-card:hover,
.seo-content .treatment-card:hover,
.article-body .hotel-nearby-card:hover,
.seo-content .hotel-nearby-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-3px);
}

.article-body .treatment-card h3,
.seo-content .treatment-card h3,
.article-body .hotel-nearby-card h4,
.seo-content .hotel-nearby-card h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text-primary);
  margin: 0 0 8px 0;
}

.article-body .treatment-card p,
.seo-content .treatment-card p,
.article-body .hotel-nearby-card p,
.seo-content .hotel-nearby-card p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

/* ==========================================================================
   MINIMAL MONTSERRAT TYPOGRAPHY OVERRIDE FOR ALL SECONDARY PAGES
   (Designer font Cormorant Garamond is preserved ONLY on home page index.html)
   ========================================================================== */
body.secondary-page,
body.secondary-page *,
.secondary-page h1,
.secondary-page h2,
.secondary-page h3,
.secondary-page h4,
.secondary-page h5,
.secondary-page h6,
.secondary-page p,
.secondary-page a,
.secondary-page span,
.secondary-page button,
.secondary-page input,
.secondary-page select,
.secondary-page textarea,
.secondary-page label,
.secondary-page li,
.secondary-page .article-header h1,
.secondary-page .page-header-title,
.secondary-page .treatment-hero-title,
.secondary-page .treatment-hero-subtitle,
.secondary-page .article-content h2,
.secondary-page .article-content h3 {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif !important;
}

body.secondary-page h1,
body.secondary-page h2,
body.secondary-page h3,
body.secondary-page h4,
body.secondary-page h5,
body.secondary-page h6,
.secondary-page .ty-title,
.secondary-page .error-title,
.secondary-page .article-header h1,
.secondary-page .page-header-title,
.secondary-page .treatment-hero-title {
  font-weight: 400 !important;
}

/* ========================================================================
   MOBILE LAYOUT CONSISTENCY
   A final, shared mobile layer keeps every page readable and gives repeated
   actions one dependable place on screen.
   ======================================================================== */
@media (max-width: 768px) {
  body {
    padding-bottom: calc(82px + env(safe-area-inset-bottom));
  }

  /* Preserve natural horizontal words and avoid narrow, stacked headings. */
  h1, h2, h3, h4, h5, h6,
  .section-title, .page-title, .page-header-title, .treatment-hero-title,
  .article-header h1, .location-hero-content h1, .hero-title {
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
    text-wrap: balance;
  }

  .section-title,
  .page-header-simple .page-title,
  .article-header h1,
  .location-hero-content h1 {
    max-width: 20ch;
    margin-left: auto;
    margin-right: auto;
  }

  .section-desc,
  .page-header-simple .page-subtitle,
  .article-content,
  .article-body,
  .seo-content {
    overflow-wrap: break-word;
    word-break: normal;
  }

  /* Action pairs always have equal, tappable dimensions. */
  .hero-cta-buttons,
  .cta-btn-group,
  .btn-group,
  .location-action-bar,
  .cta-btns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 10px;
  }

  .hero-cta-buttons > *,
  .cta-btn-group > *,
  .btn-group > *,
  .location-action-bar > *,
  .cta-btns > * {
    width: 100% !important;
    min-width: 0;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 12px !important;
    line-height: 1.2;
  }

  /* Service cards need the full row on phones; two columns make titles unreadable. */
  .treatments-grid,
  .article-body .treatment-cards,
  .seo-content .treatment-cards,
  .article-body .hotel-nearby-grid,
  .seo-content .hotel-nearby-grid {
    grid-template-columns: 1fr;
  }

  .treatment-top {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
  }

  .treatment-name {
    font-size: 1rem;
  }

  .treatment-price {
    flex: 0 0 auto;
  }

  .floating-actions-container,
  .float-whatsapp,
  .float-phone {
    display: none !important;
  }

  .mobile-action-bar {
    position: fixed;
    right: 12px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    left: 12px;
    z-index: 500;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 8px;
    background: rgba(246, 244, 239, 0.94);
    border: 1px solid rgba(31, 31, 31, 0.14);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }

  .mobile-action-bar.is-hidden {
    opacity: 0;
    transform: translateY(14px);
    pointer-events: none;
    visibility: hidden;
  }

  .mobile-action-bar a,
  .mobile-action-bar button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 8px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1;
    text-transform: uppercase;
  }

  .mobile-action-bar .mobile-reserve-btn {
    background: var(--text-primary);
    color: var(--text-light);
  }

  .mobile-action-bar .mobile-call-btn {
    border: 1px solid var(--text-primary);
    color: var(--text-primary);
    background: var(--bg-surface);
  }
}

@media (max-width: 420px) {
  .section-title,
  .page-header-simple .page-title,
  .article-header h1,
  .location-hero-content h1 {
    font-size: clamp(1.55rem, 7.5vw, 1.9rem);
    letter-spacing: 0.03em;
  }

  .hero-cta-buttons,
  .cta-btn-group,
  .btn-group,
  .location-action-bar,
  .cta-btns {
    grid-template-columns: 1fr;
  }
}

/* Compact the testimonial block so the heading leads into the reviews without
   a large empty gap on phones. */
@media (max-width: 768px) {
  .uniqueness-section {
    display: none;
  }

  .reviews-section.section-padding {
    padding-top: 44px;
    padding-bottom: 48px;
  }

  .reviews-section .section-header .eyebrow {
    margin-bottom: 7px;
  }

  .reviews-section .gold-divider {
    margin-top: 14px;
  }

  .reviews-slider-wrapper {
    display: block;
    margin-top: 26px;
  }

  .review-card {
    padding: 24px 22px;
  }

  .reviews-slider-wrapper .review-arrow {
    display: none;
  }

  .review-dots {
    margin-top: 16px;
  }

  /* Reserve and Call live in the fixed mobile bar, not the header. */
  .site-header .header-call-btn,
  .site-header .reserve-btn {
    display: none;
  }

  /* Keep these key introductory headings welcoming, rather than four lines tall. */
  .why-choose-us-section {
    padding: 60px 0 32px;
  }

  .why-choose-us-section .section-title {
    max-width: none;
    font-size: clamp(2rem, 9vw, 2.35rem);
    line-height: 1.15;
  }

  .cta-banner-box .section-title {
    max-width: none;
    font-size: clamp(1.55rem, 6.7vw, 1.75rem);
    line-height: 1.15;
    letter-spacing: 0.035em;
  }
}
