/* ===========================
   CSS VARIABLES & RESET
=========================== */
:root {
  --sand:       #F5E6C8;
  --sand-light: #FBF5E8;
  --gold:       #C8922A;
  --gold-light: #E6B84A;
  --gold-dark:  #9A6E1A;
  --bronze:     #8B5E2E;
  --terra:      #D4713A;
  --cream:      #FFFDF6;
  --dark:       #1A100A;
  --dark2:      #2C1A0E;
  --dark3:      #3D2615;
  --charcoal:   #3A2A1F;
  --text-dark:  #2C1A0E;
  --text-mid:   #5A3E28;
  --text-light: #F5E6C8;
  --white:      #FFFFFF;
  --container:  1400px;
  --nav-h:      80px;
  --ticker-h:   40px;
  --radius:     4px;
  --radius-lg:  12px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Top band for pages without a hero — sits below fixed navbar */
body.no-hero::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: calc(var(--nav-h) + var(--ticker-h, 0px));
  background: linear-gradient(180deg, var(--dark) 0%, rgba(26,16,10,0.92) 100%);
  z-index: 998;
  pointer-events: none;
}
/* Ensure the first section/header on no-hero pages clears the fixed navbar */
body.no-hero .section-header,
body.no-hero .section {
  padding-top: calc(var(--nav-h) + var(--ticker-h, 0px) + 18px);
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===========================
   UTILITY
=========================== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 34px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,146,42,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-dark:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,146,42,0.3);
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-tag::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--gold);
  display: block;
}
h1, h2, h3 { font-family: 'Cormorant Garamond', serif; line-height: 1.1; }
.display-font { font-family: 'Bebas Neue', sans-serif; }

/* ===========================
   MARQUEE TICKER
=========================== */
.ticker {
  background: var(--gold);
  color: var(--white);
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
  transition: var(--transition);
}
.ticker-inner {
  display: inline-flex;
  animation: ticker-scroll 30s linear infinite;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-right: 60px;
}
.ticker-item::after {
  content: '✦';
  color: rgba(255,255,255,0.6);
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===========================
   NAVBAR
=========================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
}
.nav-ticker-wrapper { /* ticker + nav together */ }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  transition: var(--transition);
  background: rgba(26, 16, 10, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.4);
}
#navbar.scrolled .nav-inner {
  height: 64px; /* Smaller height on scroll */
  background: rgba(26,16,10,0.99);
}
#navbar.scrolled .ticker { 
  height: 0;
  padding: 0;
  overflow: hidden;
  opacity: 0;
}
#navbar.scrolled .nav-logo .logo-img {
  height: 30px;
}
.nav-logo {
  display: flex;
  align-items: center;
  height: 100%;
}
.nav-logo .logo-img {
  height: 38px;
  width: auto;
  display: block;
  transition: height 0.3s ease;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links > li {
  position: relative;
}
.nav-links > li > a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,230,200,0.85);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links > li > a:hover { color: var(--gold-light); }
.nav-links > li > a.has-dropdown::after {
  content: '▾';
  font-size: 0.65rem;
}
/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 200px;
  background: var(--dark2);
  border: 1px solid rgba(200,146,42,0.2);
  border-radius: var(--radius-lg);
  padding: 8px 0;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}
.nav-links > li:hover .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 0.78rem;
  color: rgba(245,230,200,0.7);
  transition: all 0.2s;
  letter-spacing: 0.05em;
}
.dropdown a:hover {
  color: var(--gold-light);
  background: rgba(200,146,42,0.08);
  padding-left: 26px;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: transparent;
  border: none;
  outline: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold-light);
  transition: var(--transition);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--dark);
  z-index: 999;
  padding: 100px 40px 40px;
  flex-direction: column;
  gap: 24px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.77,0,0.175,1);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  font-size: 1.8rem;
  font-family: 'Cormorant Garamond', serif;
  color: var(--sand);
  border-bottom: 1px solid rgba(200,146,42,0.15);
  padding-bottom: 16px;
  display: block;
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--gold-light); }

/* ===========================
   HERO SLIDER
=========================== */
.hero {
  position: relative;
  /* leave space for fixed navbar / ticker so content doesn't sit beneath it */
  padding-top: calc(var(--nav-h) + var(--ticker-h, 0px));
  /* ensure the bottom controls have space and don't overlap site chrome */
  padding-bottom: 140px;
  height: 100vh;
  min-height: calc(100vh - (var(--nav-h) + var(--ticker-h, 0px)));
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-slide-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  transition: transform 8s ease;
  filter: contrast(1.06) brightness(0.92) saturate(1.05);
}
.hero-slide.active .hero-slide-bg { transform: scale(1); }

/* Placeholder gradient slides */
.slide-grad-1 {
  background: linear-gradient(135deg, #1A100A 0%, #5A2A0A 40%, #C8922A 100%);
}
.slide-grad-2 {
  background: linear-gradient(135deg, #0A0A18 0%, #3A1A2A 40%, #8B4513 100%);
}
.slide-grad-3 {
  background: linear-gradient(135deg, #0A1A10 0%, #2A3A1A 40%, #D4713A 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(20,10,5,0.82) 0%,
    rgba(20,10,5,0.55) 50%,
    rgba(20,10,5,0.2) 100%
  );
  z-index: 2;
}
.content {
  padding-top: calc(var(--nav-h) + var(--ticker-h, 0px) + 18px);
}
.hero-content {
  position: absolute;
  z-index: 3;
  /* nudge the hero content down a little so the top line never collides
     with the fixed navbar/ticker on narrow viewports */
  top: calc(50% + (var(--nav-h) / 2) + 8px);
  left: 0;
  right: 0;
  transform: translateY(-50%);
  padding-top: 80px;
}
.hero-content .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}
.hero-text {}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}
.hero-eyebrow span { width: 36px; height: 1px; background: var(--gold); display: block; }
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  /* Reduced size so long headings don't hide behind the navbar */
  font-size: clamp(2.6rem, 5.8vw, 4.4rem);
  line-height: 0.92;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s forwards;
}
.hero-title em {
  font-style: normal;
  color: var(--gold-light);
  display: block;
}
.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-style: italic;
  color: rgba(245,230,200,0.75);
  margin-bottom: 32px;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.9s 0.7s forwards;
}
.hero-desc {
  font-size: 0.92rem;
  color: rgba(245,230,200,0.6);
  max-width: 440px;
  line-height: 1.7;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.9s 0.85s forwards;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  /* give buttons breathing room from bottom controls */
  padding-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.9s 1s forwards;
}

/* Some templates use `.hero-btns` — ensure consistent spacing */
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding-bottom: 40px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  align-self: flex-end;
  padding-bottom: 140px;
  opacity: 0;
  animation: fadeUp 0.9s 1.1s forwards;
}
.stat-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(200,146,42,0.2);
  padding: 28px 20px;
  text-align: center;
  border-radius: var(--radius);
}
.stat-card:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.stat-card:last-child { border-radius: 0 var(--radius) var(--radius) 0; }
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.6rem;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,230,200,0.5);
}

/* Slider Controls */
.slider-controls {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 20px;
}
.slider-dots {
  display: flex;
  gap: 8px;
}
.dot {
  width: 28px;
  height: 3px;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition);
}
.dot.active { background: var(--gold); width: 50px; }
.slider-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  transition: var(--transition);
  background: rgba(0,0,0,0.2);
  backdrop-filter: blur(8px);
}
.slider-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: white;
}

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  right: 40px;
  bottom: 140px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,230,200,0.45);
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold-light);
  animation: scroll-drop 1.8s ease infinite;
}
@keyframes scroll-drop {
  to { top: 200%; }
}

/* ===========================
   ANIMATIONS
=========================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* Prevent reveal animation for page hero so it doesn't slide under the fixed header */
.page-hero.reveal,
.page-hero .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

/* ===========================
   SERVICES SECTION (light)
=========================== */
.services {
  background: var(--cream);
  /* reduced vertical padding for tighter spacing under the section header */
  padding: 60px 0;
}
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

/* Compact variant used on gallery to reduce vertical scale */
.section-header.compact {
  max-width: 900px;
  margin-bottom: 8px;
  padding-bottom: 6px;
  /* ensure anchors land below the fixed navbar/ticker */
  scroll-margin-top: calc(var(--nav-h) + var(--ticker-h, 0px) + 8px);
  /* make sure the compact header clears the fixed navbar/ticker */
  padding-top: calc(var(--nav-h) + var(--ticker-h, 0px) + 6px);
}
.section-header.compact h2 {
  font-size: clamp(1.5rem, 3.2vw, 2.6rem);
  margin-bottom: 4px;
}
.section-header.compact p { font-size: 0.98rem; margin-bottom: 6px; }
.section-header .section-tag { justify-content: center; }
.section-header .section-tag::before { display: none; }
.section-header h2 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  color: var(--text-dark);
  margin-bottom: 16px;
}
.section-header p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.service-card:focus { outline: none; box-shadow: 0 8px 40px rgba(10,8,6,0.12); transform: translateY(-4px); }
.service-card-img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease, filter 0.28s ease;
}
.service-card:hover .service-card-img,
.service-card:focus .service-card-img { transform: scale(1.06); filter: saturate(1.03) contrast(1.02); }

/* Placeholder images */
.service-placeholder {
  width: 100%;
  height: 380px;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.service-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  transition: transform 0.7s ease;
}
.service-card:hover .service-placeholder::before { transform: scale(1.06); }
.sp1::before { background: linear-gradient(160deg, #C8922A, #1A100A); }
.sp2::before { background: linear-gradient(160deg, #8B5E2E, #D4713A); }
.sp3::before { background: linear-gradient(160deg, #2A1A3A, #C8922A); }
.sp4::before { background: linear-gradient(160deg, #0A2A1A, #5A3E28); }
.sp5::before { background: linear-gradient(160deg, #3A1010, #C8922A); }
.sp6::before { background: linear-gradient(160deg, #1A1A3A, #8B5E2E); }
.sp7::before { background: linear-gradient(160deg, #2A2A0A, #D4713A); }

.service-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 24px 24px;
  /* stronger, smoother gradient for better text contrast on images */
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.45) 40%, rgba(0,0,0,0.12) 70%, transparent 100%);
  /* show overlay content by default (no hover required) */
  transform: translateY(0);
  transition: transform 0.45s ease;
  z-index: 2;
}
.service-card:hover .service-card-body { transform: translateY(0); }
.service-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(200,146,42,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 12px;
  background: rgba(200,146,42,0.1);
}
.service-card h3 {
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 8px;
  text-shadow: 0 6px 18px rgba(0,0,0,0.6);
}
.service-card p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.95);
  line-height: 1.55;
  margin-bottom: 16px;
  opacity: 1;
  transition: opacity 0.2s ease;
}
.service-card:hover p { opacity: 1; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 1;
  transition: opacity 0.2s ease, gap 0.25s ease;
}

/* Price / meta badge visible on the card */
.service-meta {
  display: inline-block;
  margin-top: 6px;
  color: rgba(255,255,255,0.98);
  background: rgba(0,0,0,0.36);
  padding: 6px 10px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}
.service-card:hover .service-link { opacity: 1; }
.service-link:hover { gap: 12px; }

/* Responsive services grid */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card-body { padding: 20px; }
  .service-card-img { aspect-ratio: 16 / 9; }
}


/* ===========================
   ADMIN AUTH (LOGIN) STYLES
   =========================== */
.admin-auth-wrap {
  background: linear-gradient(180deg, rgba(245,242,238,0.6), rgba(255,255,255,0.95));
  display:flex; align-items:center; justify-content:center; padding: 80px 20px;
}
.admin-auth-card {
  max-width: 780px; width:100%; border-radius:14px; padding:28px;
  background: var(--white); border:1px solid rgba(0,0,0,0.04);
  box-shadow: 0 28px 80px rgba(10,8,6,0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.admin-auth-card:hover { transform: translateY(-4px); }

.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: center; }
.split-grid .left { padding: 18px; }

.pricing-grid .table-card { border-radius: 8px; overflow: hidden; border: 1px solid rgba(0,0,0,0.04); }
.pricing-row { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 12px; padding: 10px 12px; border-bottom: 1px solid rgba(0,0,0,0.04); font-weight:600; color: var(--text-mid); }
.pricing-row strong { font-weight:800; color: var(--text-dark); }
.pricing-section .table-card .card-body { padding: 6px 12px; }
.pricing-grid img { border-radius: 8px; object-fit: cover; width: 100%; height: auto; }
.pricing-therapy .table-card .card-body h4 { margin: 0 0 12px; font-weight:700; color: var(--text-dark); }
.pricing-therapy .table-card .card-body ul { margin: 0; padding: 0; }
/* Therapy grid: compact, table-style columns for locations */
.therapy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.therapy-card { border-radius: 8px; overflow: hidden; border: 1px solid rgba(0,0,0,0.04); background: rgba(255,255,255,0.98); }
.therapy-card .card-body { padding: 10px 14px; }
.therapy-card h4 { margin: 0 0 10px; font-weight: 700; color: var(--text-dark); text-align: left; font-size: 1.02rem; }
.therapy-list { list-style: none; margin: 0; padding: 0; }
.therapy-list li { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,0.04); font-weight: 600; color: var(--text-mid); }
.therapy-list li:last-child { border-bottom: none; padding-bottom: 0; }
.therapy-label { color: var(--text-mid); }
.therapy-price { font-weight: 800; color: var(--text-dark); min-width: 64px; text-align: right; }
@media (max-width: 900px) { .therapy-grid { grid-template-columns: 1fr; } .therapy-card .card-body { padding: 12px; } }
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-section .table-card { margin-bottom: 18px; }
  .pricing-row { padding: 12px 10px; }
}
.split-grid .left .logo { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: var(--gold); }
.split-grid .left .lead { color: var(--text-mid); margin-top:6px; font-weight:700; }

.admin-auth-form { padding: 0; }
.admin-auth-form .form-row { margin-bottom:14px; display: grid; grid-template-columns: 140px 1fr; gap: 20px; align-items: center; }
.admin-auth-form label { display: block; margin: 0; font-weight:700; color:var(--text-mid); font-size:0.95rem; text-align: right; padding-right: 8px; }
.admin-auth-form input[type="email"],
.admin-auth-form input[type="password"],
.admin-auth-form input[type="text"] {
  width:100%; height:46px; padding: 0 14px; border-radius:10px; border:1px solid rgba(20,20,20,0.06);
  background: var(--white); font-size:0.95rem; transition: box-shadow .12s ease, border-color .12s ease;
}
.admin-auth-form input:focus { outline: none; border-color: var(--gold); box-shadow: 0 8px 32px rgba(200,146,42,0.12); }
.password-field { display:flex; gap:8px; align-items:center; }
.password-toggle { padding:8px 10px; border-radius:8px; border:1px solid rgba(0,0,0,0.06); background:transparent; cursor:pointer; font-weight:700; color:var(--text-mid); min-width:66px; }
.password-toggle[aria-pressed="true"] { background: rgba(200,146,42,0.08); color:var(--gold-dark); }

.admin-auth-actions { display:flex; justify-content:space-between; align-items:center; gap:12px; margin-top:4px; }
.remember { display:inline-flex; align-items:center; gap:8px; font-weight:600; color:var(--text-mid); }
.actions-right { display:flex; gap:12px; align-items:center; }
.forgot-link { color:var(--text-mid); font-weight:600; font-size:0.9rem; text-decoration:none; }
.forgot-link:hover { color:var(--gold-dark); }

.btn.btn-primary { padding:10px 22px; border-radius:10px; font-weight:700; letter-spacing:0.12em; }

.field-error { color:#b91c1c; font-size:0.9rem; margin-top:6px; }
.alert { padding:10px 12px; border-radius:8px; margin-bottom:12px; }

/* VIP pillars — polished card style */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 18px; align-items: stretch; }
.pillar { position: relative; background: var(--white); border-radius: var(--radius-lg); padding: 26px 22px 22px 26px; box-shadow: 0 18px 40px rgba(10,8,6,0.06); border: 1px solid rgba(0,0,0,0.03); display: flex; gap: 18px; align-items: flex-start; overflow: hidden; }
.pillar::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 10px; background: linear-gradient(180deg, var(--gold), var(--gold-light)); border-top-left-radius: var(--radius-lg); border-bottom-left-radius: var(--radius-lg); box-shadow: 0 6px 18px rgba(200,146,42,0.06); }
.pillar .pillar-icon { width: 46px; height: 46px; border-radius: 50%; display:flex; align-items:center; justify-content:center; background: rgba(200,146,42,0.06); color: var(--gold-dark); border: 1px solid rgba(200,146,42,0.14); font-size: 1.2rem; z-index: 2; flex-shrink: 0; }
.pillar .pillar-content { z-index: 2; }
.pillar h4 { margin: 0 0 8px; font-size: 1.15rem; font-weight: 700; color: var(--text-dark); font-family: 'Cormorant Garamond', serif; }
.pillar p { margin: 0; color: var(--text-mid); line-height: 1.6; font-size: 0.98rem; }
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr; } .pillar { padding: 18px; } .pillar::before { width: 8px; } .pillar .pillar-icon { width:40px; height:40px; } }

@media (max-width: 900px) {
  .split-grid { grid-template-columns: 1fr; }
  .admin-auth-card { padding: 20px; }
  .password-toggle { min-width:56px; }
  .admin-auth-form .form-row { grid-template-columns: 1fr; }
  .admin-auth-form label { text-align: left; margin-bottom: 6px; }
  .admin-auth-wrap { padding: 40px 12px; }
}

/* ===========================
   ABOUT / STORY SECTION (dark)
=========================== */
.about {
  background: var(--dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.about::before {
  content: 'SAHARA';
  position: absolute;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22vw;
  color: rgba(255,255,255,0.025);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: 0.05em;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images {
  position: relative;
  height: 580px;
}
.about-images.single-image {
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-img-single {
  width: 100%;
  height: auto;
  max-height: 580px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform var(--transition);
}
.about-img-single:hover {
  transform: scale(1.015);
}
.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 75%;
  height: 80%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-img-placeholder-main {
  position: absolute;
  top: 0; left: 0;
  width: 75%;
  height: 80%;
  background: linear-gradient(135deg, #3D2615, #C8922A 60%, #5A3E28);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
}
.about-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  height: 55%;
  background: linear-gradient(135deg, #1A100A, #D4713A 80%);
  border-radius: var(--radius-lg);
  border: 4px solid var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.25);
}
.about-badge {
  position: absolute;
  bottom: 36px;
  left: 16px;
  background: var(--gold);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  z-index: 2;
  box-shadow: 0 8px 32px rgba(200,146,42,0.4);
}
.about-badge .num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  line-height: 1;
}
.about-badge .lbl {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.85;
}
.about-content .section-tag { color: var(--gold-light); }
.about-content .section-tag::before { background: var(--gold-light); }
.about-content h2 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  color: var(--sand);
  margin-bottom: 20px;
}
.about-content h2 em {
  font-style: italic;
  color: var(--gold-light);
}
.about-content p {
  font-size: 0.95rem;
  color: rgba(245,230,200,0.6);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-features {
  margin: 32px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.feature-dot {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: rgba(200,146,42,0.2);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: var(--gold);
  margin-top: 2px;
}
.feature-item span {
  font-size: 0.85rem;
  color: rgba(245,230,200,0.7);
}

/* ===========================
   EQUIPMENT / MACHINES — TABS (light)
=========================== */
.equipment {
  background: var(--sand-light);
  padding: 100px 0;
}

/* Tab nav */
.eq-tabs-nav {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 52px;
  border-bottom: 2px solid rgba(200,146,42,0.15);
  overflow-x: auto;
  scrollbar-width: none;
}
.eq-tabs-nav::-webkit-scrollbar { display: none; }
.eq-tab-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.25s, border-color 0.25s;
  position: relative;
  flex: 1;
}
.eq-tab-btn .tab-icon {
  font-size: 1rem;
  transition: transform 0.3s;
}
.eq-tab-btn:hover { color: var(--gold); }
.eq-tab-btn.active {
  color: var(--gold-dark);
  border-bottom-color: var(--gold);
}
.eq-tab-btn.active .tab-icon { transform: scale(1.15); }

/* Tab panels */
.eq-panels {
  margin-top: 48px;
}
.eq-panel {
  display: none;
  animation: eqFadeIn 0.45s ease;
}
.eq-panel.active { display: block; }
@keyframes eqFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Panel inner layout */
.eq-panel-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(200,146,42,0.12);
  box-shadow: 0 8px 48px rgba(200,146,42,0.08);
}

/* Image side */
.eq-panel-img {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.eq-panel-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(15, 8, 3, 0.65) 100%);
  z-index: 2;
  pointer-events: none;
}
.eq-panel-img::after {
  content: 'MACHINE IMAGE';
  font-family: 'DM Sans', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  position: relative;
  z-index: 1;
}
.eq-panel-img:has(img)::after {
  display: none;
}
.eq-panel-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.eq-panel-inner:hover .eq-panel-img img {
  transform: scale(1.06);
}
.eq1 { background: linear-gradient(145deg, #2C1A0E 0%, #C8922A 100%); }
.eq2 { background: linear-gradient(145deg, #1A0A1A 0%, #8B4513 100%); }
.eq3 { background: linear-gradient(145deg, #0A1A2A 0%, #C8922A 100%); }
.eq4 { background: linear-gradient(145deg, #1A2A0A 0%, #D4713A 100%); }
.eq5 { background: linear-gradient(145deg, #2A0A0A 0%, #9A6E1A 100%); }
.eq6 { background: linear-gradient(145deg, #0A1A1A 0%, #5A3E28 100%); }

.eq-panel-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  z-index: 3;
}
.eq-panel-thumb-strip {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex;
  gap: 0;
  height: 60px;
  background: rgba(20,10,5,0.45);
  backdrop-filter: blur(6px);
}
.eq-thumb {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  border-right: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  font-family: 'DM Sans', sans-serif;
}
.eq-thumb:last-child { border-right: none; }
.eq-thumb.active, .eq-thumb:hover {
  background: rgba(200,146,42,0.2);
  color: var(--gold-light);
}

/* Content side */
.eq-panel-body {
  padding: 48px 48px 48px 16px;
}
.eq-panel-cat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.eq-panel-cat::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--gold);
  display: block;
}
.eq-panel-body h3 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.1;
}
.eq-panel-body > p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 32px;
}
.eq-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 32px;
}
.eq-spec-item {
  padding: 14px 16px;
  background: var(--sand-light);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}
.eq-spec-item .spec-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3px;
}
.eq-spec-item .spec-val {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}
.eq-panel-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Mobile tab overflow indicator */
@media (max-width: 768px) {
  .eq-panel-inner { grid-template-columns: 1fr; }
  .eq-panel-img { height: 260px; }
  .eq-panel-body { padding: 28px; }
  .eq-specs-grid { grid-template-columns: 1fr 1fr; }
  .eq-tab-btn { padding: 12px 18px; font-size: 0.72rem; flex: none; }
}
@media (max-width: 480px) {
  .eq-specs-grid { grid-template-columns: 1fr; }
}

/* ===========================
   OFFERS / PRICING (dark gradient)
=========================== */
/* ===========================
   PRICING SECTION (light warm, editorial)
=========================== */
.pricing-section {
  background: var(--cream);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.pricing-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px auto;
}
.pricing-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.pricing-tag::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}
.pricing-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  color: var(--text-dark);
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1.15;
}
.pricing-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 54px;
  align-items: stretch;
}
.pricing-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pricing-card {
  background: var(--white);
  border: 1px solid rgba(200, 146, 42, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 48px rgba(44, 26, 14, 0.04);
  padding: 8px 0;
  margin-bottom: 24px;
}
.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 36px;
  position: relative;
}
.pricing-row:not(:last-child)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 36px;
  right: 36px;
  height: 1px;
  background: #F5EFEB;
}
.pricing-item {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
}
.pricing-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-dark);
}
.pricing-terms {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.7;
  opacity: 0.85;
  margin-bottom: 32px;
}
.pricing-vip {
  text-align: center;
  margin-top: 12px;
}
.pricing-vip span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(200, 146, 42, 0.25);
  padding: 4px 18px;
  border-radius: 20px;
  display: inline-block;
}

.pricing-lists-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.pricing-lists-wrapper .pricing-card {
  background: var(--white);
  border: 1px solid rgba(200, 146, 42, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 48px rgba(44, 26, 14, 0.04);
  padding: 8px 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.pricing-lists-wrapper .pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold-dark));
  opacity: 0.85;
}
.pricing-lists-wrapper .pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 52px rgba(200, 146, 42, 0.08);
  border-color: rgba(200, 146, 42, 0.25);
}
.pricing-lists-wrapper .pricing-card-header {
  padding: 24px 28px 18px;
  border-bottom: 1px solid rgba(200, 146, 42, 0.08);
  background: linear-gradient(180deg, rgba(200, 146, 42, 0.03), rgba(255, 255, 255, 0));
}
.pricing-lists-wrapper .pricing-card-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-align: center;
}
.pricing-lists-wrapper .pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 28px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
}
.pricing-lists-wrapper .pricing-row:hover {
  padding-left: 36px;
  padding-right: 20px;
  background: rgba(200, 146, 42, 0.03);
}
.pricing-lists-wrapper .pricing-row:not(:last-child)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 28px;
  right: 28px;
  height: 1px;
  background: rgba(200, 146, 42, 0.06);
  transition: left 0.3s ease, right 0.3s ease;
}
.pricing-lists-wrapper .pricing-row:hover:not(:last-child)::after {
  left: 36px;
  right: 20px;
}
.pricing-lists-wrapper .pricing-item {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: color 0.3s ease;
}
.pricing-lists-wrapper .pricing-row:hover .pricing-item {
  color: var(--gold-dark);
}
.pricing-lists-wrapper .pricing-leader {
  flex-grow: 1;
  border-bottom: 1px dotted rgba(200, 146, 42, 0.2);
  margin: 0 14px;
  align-self: flex-end;
  margin-bottom: 6px;
  transition: border-color 0.3s ease;
}
.pricing-lists-wrapper .pricing-row:hover .pricing-leader {
  border-bottom-color: rgba(200, 146, 42, 0.5);
}
.pricing-lists-wrapper .pricing-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
  transition: color 0.3s ease, transform 0.3s ease;
}
.pricing-lists-wrapper .pricing-row:hover .pricing-price {
  color: var(--gold);
  transform: scale(1.05);
}
.pricing-price-container {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-lists-wrapper .original-price {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  text-decoration: line-through;
  color: var(--text-mid);
  opacity: 0.6;
}
.pricing-lists-wrapper .sale-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #c92a2a; /* premium deep red */
  transition: color 0.3s ease, transform 0.3s ease;
}
.pricing-lists-wrapper .pricing-row:hover .sale-price {
  color: #e03131; /* slightly brighter red on hover */
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .pricing-lists-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.pricing-center-container {
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}
.pricing-center-container .pricing-terms {
  text-align: center;
  margin-top: 32px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.pricing-cta-wrap {
  text-align: center;
  margin-top: 48px;
}
.pricing-cta-wrap .cta-subtext {
  font-size: 0.85rem;
  color: var(--text-mid);
  margin-top: 12px;
  font-style: italic;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: var(--white);
  padding: 16px 40px;
  border-radius: 30px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  box-shadow: 0 10px 24px rgba(200, 146, 42, 0.2);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-block;
  cursor: pointer;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(200, 146, 42, 0.35);
  color: var(--white);
}
.header-icon {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
}
.pricing-card-header h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.pricing-right {
  display: flex;
  align-items: center;
}
.pricing-img-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(44, 26, 14, 0.08);
}
.pricing-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.pricing-img-wrapper:hover .pricing-image {
  transform: scale(1.05);
}

@media (max-width: 992px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .pricing-img-wrapper {
    min-height: 400px;
    height: 400px;
  }
}

/* ===========================
   WHY US (light warm)
=========================== */
.why-us {
  background: var(--sand);
  padding: 100px 0;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-content h2 {
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  color: var(--text-dark);
  margin-bottom: 20px;
}
.why-content h2 em {
  font-style: italic;
  color: var(--gold);
}
.why-content > p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 36px;
}
.why-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.pillar {
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--gold);
  transition: var(--transition);
}
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(200,146,42,0.12);
}
.pillar-icon { font-size: 1.6rem; margin-bottom: 12px; }
.pillar h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.pillar p { font-size: 0.8rem; color: var(--text-mid); line-height: 1.6; }
.why-visual {
  position: relative;
  height: 550px;
}
.why-main-img {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #C8922A 0%, #3D2615 60%, #1A100A 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.2);
}
.why-floating-card {
  position: absolute;
  bottom: -24px;
  left: -32px;
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.35);
}
.why-floating-card .wfc-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
}
.why-floating-card .wfc-label {
  font-size: 0.72rem;
  color: rgba(245,230,200,0.5);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.why-floating-card2 {
  position: absolute;
  top: 24px;
  right: -24px;
  background: var(--gold);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: 0 8px 32px rgba(200,146,42,0.4);
  color: var(--white);
}
.why-floating-card2 .wfc-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  line-height: 1;
}
.why-floating-card2 .wfc-label {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* ===========================
   TESTIMONIALS (dark)
=========================== */
.testimonials {
  background: var(--dark);
  padding: 100px 0;
  overflow: hidden;
}
.testimonials .section-tag { color: var(--gold-light); }
.testimonials .section-tag::before { background: var(--gold-light); }
.testimonials h2 { color: var(--sand); }
.testimonials .section-header p { color: rgba(245,230,200,0.55); }
.reviews-track-wrap {
  overflow: hidden;
  margin-top: 60px;
}
.reviews-track {
  display: flex;
  gap: 24px;
  animation: reviews-scroll 28s linear infinite;
}
.reviews-track:hover { animation-play-state: paused; }
@keyframes reviews-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.review-card {
  min-width: 340px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,146,42,0.12);
  border-radius: var(--radius-lg);
  padding: 32px;
  flex-shrink: 0;
  transition: border-color 0.3s;
}
.review-card:hover { border-color: rgba(200,146,42,0.3); }
.review-stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 16px;
  letter-spacing: 3px;
}
.review-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.12rem;
  font-style: italic;
  color: rgba(245,230,200,0.75);
  line-height: 1.6;
  margin-bottom: 24px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--terra));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--white);
  font-size: 0.85rem;
  flex-shrink: 0;
}
.review-name { font-size: 0.88rem; color: var(--sand); font-weight: 500; }
.review-loc { font-size: 0.72rem; color: rgba(245,230,200,0.4); }

/* Page hero for content pages (About, Contact etc) */
.page-hero {
  background: var(--cream);
  /* leave extra room so hero content clears the fixed navbar + ticker */
  padding-top: calc(var(--nav-h) + var(--ticker-h, 0px) + 64px);
  padding-bottom: 48px;
  text-align: center;
  position: relative;
  z-index: 0;
  /* ensure anchor/scroll targets land below the header */
  scroll-margin-top: calc(var(--nav-h) + var(--ticker-h, 0px) + 12px);
}
.page-hero .hero-inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  justify-content: center;
}
.page-hero .hero-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  color: var(--text-dark);
  margin: 0;
  line-height: 1.05;
}
.page-hero .hero-heading em {
  display: block;
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
  font-size: 1.3rem;
  margin-top: 8px;
}
.page-hero .hero-lead {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 760px;
  margin: 0 auto;
  opacity: 0.95;
}

@media (max-width: 768px) {
  .page-hero { padding-top: calc(var(--nav-h) + var(--ticker-h, 0px) + 40px); padding-bottom: 36px; }
  .page-hero .hero-heading { font-size: clamp(1.6rem, 7.5vw, 2.4rem); }
  .page-hero .hero-heading em { font-size: 1rem; }
  .page-hero .hero-lead { font-size: 0.95rem; padding: 0 20px; }
}

/* About Page Hero with Background Image */
.about-hero {
  background-image: linear-gradient(to bottom, rgba(15, 8, 3, 0.72) 0%, rgba(44, 26, 14, 0.8) 100%), url('../images/banner_lobby.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding-top: calc(var(--nav-h) + var(--ticker-h, 0px) + 120px);
  padding-bottom: 110px;
  position: relative;
}
.about-hero .hero-heading {
  color: var(--white);
}
.about-hero .hero-heading em {
  color: var(--gold-light);
}
.about-hero .hero-lead {
  color: rgba(255, 255, 255, 0.85);
  max-width: 780px;
  margin: 0 auto;
}
.about-hero .section-tag {
  color: var(--gold-light);
}
.about-hero .section-tag::before {
  background: var(--gold-light);
}
.about-hero .section-tag::after {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--gold-light);
  display: block;
}

@media (max-width: 768px) {
  .about-hero {
    padding-top: calc(var(--nav-h) + var(--ticker-h, 0px) + 80px);
    padding-bottom: 60px;
  }
}

/* Services Page Hero with Background Image */
.services-hero {
  background-image: linear-gradient(to bottom, rgba(15, 8, 3, 0.72) 0%, rgba(44, 26, 14, 0.8) 100%), url('../images/banner_reception.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding-top: calc(var(--nav-h) + var(--ticker-h, 0px) + 120px);
  padding-bottom: 110px;
  position: relative;
}
.services-hero .hero-heading {
  color: var(--white);
}
.services-hero .hero-heading em {
  color: var(--gold-light);
}
.services-hero .hero-lead {
  color: rgba(255, 255, 255, 0.85);
  max-width: 780px;
  margin: 0 auto;
}
.services-hero .section-tag {
  color: var(--gold-light);
}
.services-hero .section-tag::before,
.services-hero .section-tag::after {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--gold-light);
  display: block;
}

@media (max-width: 768px) {
  .services-hero {
    padding-top: calc(var(--nav-h) + var(--ticker-h, 0px) + 80px);
    padding-bottom: 60px;
  }
}

/* Gallery Page Hero with Background Image */
.gallery-hero {
  background-image: linear-gradient(to bottom, rgba(15, 8, 3, 0.72) 0%, rgba(44, 26, 14, 0.8) 100%), url('../images/why.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding-top: calc(var(--nav-h) + var(--ticker-h, 0px) + 120px);
  padding-bottom: 110px;
  position: relative;
}
.gallery-hero .hero-heading {
  color: var(--white);
}
.gallery-hero .hero-heading em {
  color: var(--gold-light);
}
.gallery-hero .hero-lead {
  color: rgba(255, 255, 255, 0.85);
  max-width: 780px;
  margin: 0 auto;
}
.gallery-hero .section-tag {
  color: var(--gold-light);
}
.gallery-hero .section-tag::before,
.gallery-hero .section-tag::after {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--gold-light);
  display: block;
}

@media (max-width: 768px) {
  .gallery-hero {
    padding-top: calc(var(--nav-h) + var(--ticker-h, 0px) + 80px);
    padding-bottom: 60px;
  }
}

/* Shop Page Hero with Background Image */
.shop-hero {
  background-image: linear-gradient(to bottom, rgba(15, 8, 3, 0.72) 0%, rgba(44, 26, 14, 0.8) 100%), url('../images/about-shelf.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding-top: calc(var(--nav-h) + var(--ticker-h, 0px) + 120px);
  padding-bottom: 110px;
  position: relative;
}
.shop-hero .hero-heading {
  color: var(--white);
}
.shop-hero .hero-heading em {
  color: var(--gold-light);
}
.shop-hero .hero-lead {
  color: rgba(255, 255, 255, 0.85);
  max-width: 780px;
  margin: 0 auto;
}
.shop-hero .section-tag {
  color: var(--gold-light);
}
.shop-hero .section-tag::before,
.shop-hero .section-tag::after {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--gold-light);
  display: block;
}

@media (max-width: 768px) {
  .shop-hero {
    padding-top: calc(var(--nav-h) + var(--ticker-h, 0px) + 80px);
    padding-bottom: 60px;
  }
}

/* Contact Page Hero with Background Image */
.contact-hero {
  background-image: linear-gradient(to bottom, rgba(15, 8, 3, 0.72) 0%, rgba(44, 26, 14, 0.8) 100%), url('../images/banner_storefront.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding-top: calc(var(--nav-h) + var(--ticker-h, 0px) + 120px);
  padding-bottom: 110px;
  position: relative;
}
.contact-hero .hero-heading {
  color: var(--white);
}
.contact-hero .hero-heading em {
  color: var(--gold-light);
}
.contact-hero .hero-lead {
  color: rgba(255, 255, 255, 0.85);
  max-width: 780px;
  margin: 0 auto;
}
.contact-hero .section-tag {
  color: var(--gold-light);
}
.contact-hero .section-tag::before,
.contact-hero .section-tag::after {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--gold-light);
  display: block;
}

/* Blog Page Hero with Background Image */
.blog-hero {
  background-image: linear-gradient(to bottom, rgba(15, 8, 3, 0.72) 0%, rgba(44, 26, 14, 0.8) 100%), url('../images/banner1.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding-top: calc(var(--nav-h) + var(--ticker-h, 0px) + 120px);
  padding-bottom: 110px;
  position: relative;
}
.blog-hero .hero-heading {
  color: var(--white);
}
.blog-hero .hero-heading em {
  color: var(--gold-light);
}
.blog-hero .hero-lead {
  color: rgba(255, 255, 255, 0.85);
  max-width: 780px;
  margin: 0 auto;
}
.blog-hero .section-tag {
  color: var(--gold-light);
}
.blog-hero .section-tag::before,
.blog-hero .section-tag::after {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--gold-light);
  display: block;
}

@media (max-width: 768px) {
  .blog-hero {
    padding-top: calc(var(--nav-h) + var(--ticker-h, 0px) + 80px);
    padding-bottom: 60px;
  }
}

/* Contact page styles */
.contact {
  background: var(--cream);
  padding: 72px 0 96px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 560px;
  gap: 48px;
  align-items: start;
}
.contact-info h3 { margin-bottom: 8px; font-size: 1.1rem; }
.contact-info p { color: var(--text-mid); margin-bottom: 8px; }
.contact-form { background: transparent; }
.form-row { display:flex; gap:12px; margin-bottom:12px; }
.form-input {
  width:100%;
  padding: 14px 12px;
  border: 1px solid rgba(60,40,30,0.12);
  border-radius: 6px;
  background: var(--white);
  color: var(--text-dark);
  font-size: 0.98rem;
}
.contact-form textarea.form-input { min-height: 170px; resize:vertical; }
.form-actions { text-align: right; margin-top: 12px; }

/* Compact hero for contact to avoid overly large heading */
.contact-hero .hero-heading { font-size: clamp(1.9rem, 4.4vw, 3.2rem); }
.contact-hero .hero-lead { font-size: 1rem; }

.sr-only { position: absolute !important; height: 1px; width: 1px; overflow: hidden; clip: rect(1px, 1px, 1px, 1px); white-space: nowrap; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { flex-direction: column; }
  .contact { padding: 48px 0 64px; }
}

/* ===========================
   GALLERY (denser, masonry-style)
=========================== */
.gallery { background: var(--cream); padding: 48px 0 48px; }
/* tighter hero for gallery pages */
.gallery-hero { padding-top: calc(var(--nav-h) + var(--ticker-h, 0px) + 8px); padding-bottom: 12px; }
.gallery-hero .hero-inner { padding-block: 6px; gap: 8px; }
.gallery-hero .hero-heading { font-size: clamp(1.8rem, 3.4vw, 2.8rem); margin-bottom: 6px; }

.gallery-grid {
  /* column-based masonry for denser packing */
  column-count: 4;
  column-gap: 18px;
  /* pull the grid up a bit so it sits closer to the header without colliding */
  margin-top: -20px;
}


.gallery-grid.cols-5 {
  column-count: 5;
}
.gallery-link {
  display: block;
  width: 100%;
  margin-bottom: 18px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 12px 40px rgba(10,8,6,0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  -webkit-column-break-inside: avoid;
  break-inside: avoid;
}
.gallery-item {
  position: relative;
  width: 100%;
  /* square tile using padding-top trick for consistent height in multi-column layouts */
  padding-top: 100%;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(250,248,244,0.98));
}
.gallery-item img {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(.2,.8,.2,1), filter 0.28s ease;
}
.gallery-overlay {
  position: absolute; inset: 0; display:flex; align-items:flex-end; padding:14px;
  background: linear-gradient(180deg, rgba(26,16,10,0) 35%, rgba(10,8,6,0.45) 100%);
  opacity: 0; transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 2;
  pointer-events: none;
}
.gallery-caption { color: var(--white); font-weight:700; letter-spacing:0.02em; z-index:3; }
.gallery-link:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(10,8,6,0.14); }
.gallery-link:hover img { transform: scale(1.06); filter: saturate(1.06) contrast(1.03); }
.gallery-link:hover .gallery-overlay { opacity: 1; }

/* Lightbox modal remains unchanged */

/* Lightbox modal */
.gallery-modal { position: fixed; inset: 0; z-index: 2200; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,0.8); opacity: 0; visibility: hidden; transition: opacity 0.18s ease; padding: 20px; }
.gallery-modal.open { opacity: 1; visibility: visible; }
.gallery-modal .gm-content { max-width: 1100px; width: min(92%, 1100px); max-height: 92vh; position: relative; display: flex; flex-direction: column; align-items: center; gap: 12px; box-sizing: border-box; padding: 12px; }
.gallery-modal .gm-content .gm-img, .gallery-modal .gm-img { max-width: 100%; max-height: calc(92vh - 120px); width: auto; height: auto; object-fit: contain; display: block; border-radius: 8px; margin: 0 auto; }
.gallery-modal .gm-caption { color: #fff; text-align: center; font-weight: 600; max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.gallery-modal .gm-close { position: absolute; top: 8px; right: 8px; background: transparent; color: #fff; border: none; font-size: 28px; cursor: pointer; }
.gallery-modal .gm-prev, .gallery-modal .gm-next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.45); color: #fff; border: none; font-size: 32px; padding: 8px 12px; cursor: pointer; border-radius: 6px; z-index: 2; }
.gallery-modal .gm-prev { left: 12px; }
.gallery-modal .gm-next { right: 12px; }

@media (max-width: 900px) {
  .gallery-link { border-radius: 8px; }
  .gallery-modal .gm-prev, .gallery-modal .gm-next { left: 6px; right: 6px; top: auto; bottom: 14px; transform: none; font-size: 20px; padding: 8px 10px; }
  .gallery-modal .gm-prev { left: 6px; }
  .gallery-modal .gm-next { right: 6px; }
  .gallery-modal .gm-content .gm-img, .gallery-modal .gm-img { max-height: calc(72vh - 120px); }
  .gallery-modal .gm-caption { white-space: normal; }
}

@media (max-width: 1200px) {
  .gallery-grid { column-count: 3; margin-top: -18px; }
}
@media (max-width: 1100px) {
  .gallery-grid { margin-top: -12px; }
}
@media (max-width: 900px) {
  .gallery-grid { column-count: 2; }
  .gallery { padding: 28px 0 48px; }
}
@media (max-width: 600px) {
  .gallery-grid { column-count: 1; }
}

/* Mobile hero spacing overrides */
@media (max-width: 768px) {
  .hero-actions, .hero-btns { padding-bottom: 64px !important; }
  .hero-stats { padding-bottom: 64px !important; }
  .slider-controls { bottom: 140px !important; }
  .scroll-hint { bottom: 64px !important; }
}

/* ===========================
   GALLERY / INSTAGRAM STRIP
=========================== */
.gallery {
  background: var(--cream);
}
.insta-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 48px;
}
.insta-strip-grid.cols-5 {
  grid-template-columns: repeat(5, 1fr);
}
.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
}
.gallery-ph {
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}
.gph1 { background: linear-gradient(135deg, #C8922A, #1A100A); }
.gph2 { background: linear-gradient(135deg, #D4713A, #2C1A0E); }
.gph3 { background: linear-gradient(135deg, #9A6E1A, #3D2615); }
.gph4 { background: linear-gradient(135deg, #5A3E28, #C8922A); }
.gph5 { background: linear-gradient(135deg, #1A100A, #D4713A); }
.gph6 { background: linear-gradient(135deg, #8B5E2E, #1A100A); }
.gph7 { background: linear-gradient(135deg, #C8922A, #5A3E28); }
.gph8 { background: linear-gradient(135deg, #3D2615, #D4713A); }
.gph9 { background: linear-gradient(135deg, #2C1A0E, #9A6E1A); }
.gph10 { background: linear-gradient(135deg, #D4713A, #1A100A); }
.gallery-item:hover .gallery-ph { transform: scale(1.1); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(200,146,42,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay svg { color: white; width: 28px; height: 28px; }

/* ===========================
   LOCATION (light)
=========================== */
.location {
  background: var(--sand-light);
  padding: 100px 0;
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 60px;
}
.location-map-placeholder {
  height: 420px;
  background: linear-gradient(135deg, #E6D8C0, #C8922A 50%, #8B5E2E);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.4);
  position: relative;
  overflow: hidden;
}
.map-pin {
  position: absolute;
  font-size: 2.5rem;
  animation: pin-bounce 1.5s ease-in-out infinite;
}
@keyframes pin-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.location-list { display: flex; flex-direction: column; gap: 16px; }
.loc-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(200,146,42,0.1);
  cursor: pointer;
  transition: var(--transition);
}
.loc-item:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 24px rgba(200,146,42,0.12);
  transform: translateX(6px);
}
.loc-icon {
  width: 48px;
  height: 48px;
  background: rgba(200,146,42,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.loc-name { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; color: var(--text-dark); margin-bottom: 2px; }
.loc-addr { font-size: 0.78rem; color: var(--text-mid); }
.loc-arrow { margin-left: auto; color: var(--gold); font-size: 1.1rem; transition: transform 0.25s; }
.loc-item:hover .loc-arrow { transform: translateX(4px); }

/* ===========================
   CTA BANNER (full bleed)
=========================== */
.cta-banner {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  text-align: center;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #C8922A 0%, #8B4513 40%, #1A100A 100%);
}
.cta-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.06) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.06) 0%, transparent 50%);
}
.cta-content { position: relative; z-index: 1; }
.cta-content h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 7vw, 6rem);
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  line-height: 0.95;
}
.cta-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.25rem;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-white {
  background: var(--white);
  color: var(--gold-dark);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--sand);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

/* ===========================
   FOOTER (dark)
=========================== */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(200,146,42,0.1);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-logo .logo-main {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  color: var(--gold-light);
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 4px;
}
.footer-logo .logo-sub {
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245,230,200,0.4);
  margin-bottom: 20px;
  display: block;
}
.footer-logo p {
  font-size: 0.85rem;
  color: rgba(245,230,200,0.45);
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 28px;
}
.social-links { display: flex; gap: 10px; }
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(200,146,42,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245,230,200,0.5);
  font-size: 0.85rem;
  transition: var(--transition);
  cursor: pointer;
}
.social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.social-btn.disabled {
  opacity: 0.45;
  cursor: default;
  transform: none;
  border-color: rgba(200,146,42,0.12);
  color: rgba(245,230,200,0.35);
  filter: grayscale(60%);
}
.social-btn svg { width:18px; height:18px; display:block; fill: currentColor; stroke: currentColor; }
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--sand);
  margin-bottom: 20px;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 0.82rem;
  color: rgba(245,230,200,0.45);
  transition: color 0.2s, padding-left 0.2s;
  display: inline-block;
}
.footer-col ul li a:hover {
  color: var(--gold-light);
  padding-left: 6px;
}
.footer-bottom {
  border-top: 1px solid rgba(200,146,42,0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(245,230,200,0.3);
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  font-size: 0.75rem;
  color: rgba(245,230,200,0.3);
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--gold-light); }

/* ===========================
   SCROLL TO TOP
=========================== */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 46px;
  height: 46px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 99;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: 0 4px 24px rgba(200,146,42,0.4);
  border: none;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--gold-dark); transform: translateY(-3px); }

/* ===========================
   LOADER
=========================== */
#loader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: var(--gold-light);
  letter-spacing: 0.06em;
  animation: pulse-gold 1s ease-in-out infinite alternate;
}
@keyframes pulse-gold {
  from { opacity: 0.5; }
  to { opacity: 1; }
}
.loader-bar-wrap {
  width: 200px;
  height: 2px;
  background: rgba(200,146,42,0.2);
  border-radius: 2px;
  overflow: hidden;
}
.loader-bar {
  height: 100%;
  background: var(--gold);
  animation: load-fill 1.8s ease forwards;
}
@keyframes load-fill {
  from { width: 0; }
  to { width: 100%; }
}
.loader-text {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245,230,200,0.35);
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1200px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .eq-card { min-width: calc(50% - 12px); }
}
@media (max-width: 1024px) {
  .container { padding: 0 28px; }
  .hero-content .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-stats { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-images { height: 380px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-visual { height: 400px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .location-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  :root { --nav-h: 68px; }
  .container { padding: 0 20px; }
  .section-header { margin-bottom: 32px; }
  .nav-links, .nav-actions .btn { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
  .hero-title { font-size: clamp(3.2rem, 13vw, 5.5rem); }
  .hero-actions .btn:last-child { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .service-placeholder { height: 280px; }
  .service-card-body { transform: translateY(0); }
  .service-card p { opacity: 1; }
  .service-link { opacity: 1; }
  .pricing-grid { grid-template-columns: 1fr; }
  .why-pillars { grid-template-columns: 1fr; }
  .insta-strip-grid, .insta-strip-grid.cols-5 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-logo { display: flex; flex-direction: column; align-items: center; text-align: center; }
  .footer-logo p { margin-left: auto; margin-right: auto; }
  .footer-logo-img { margin-left: auto; margin-right: auto; }
  .social-links { justify-content: center; }
  .footer-col { text-align: center; }
  .footer-col ul li a:hover { padding-left: 0; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-bottom-links { justify-content: center; }
  .eq-card { min-width: calc(100% - 0px); }
  .about-features { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 3rem; }
  .scroll-hint { display: none; }
  .insta-strip-grid, .insta-strip-grid.cols-5 { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 280px; justify-content: center; }
}

/* ===========================
   DASHBOARD
   =========================== */
.dashboard {
  background: var(--cream);
  padding: 40px 0 80px;
  min-height: calc(100vh - (var(--nav-h) + var(--ticker-h, 0px)));
}
.dashboard-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 28px;
  align-items: start;
}
.profile-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 22px;
  border: 1px solid rgba(200,146,42,0.06);
  box-shadow: 0 8px 32px rgba(10,8,6,0.04);
}
.profile-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 12px;
}
.profile-name { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; color: var(--text-dark); margin-bottom: 6px; }
.profile-email { font-size: 0.9rem; color: var(--text-mid); margin-bottom: 10px; word-break: break-all; }
.badge-verified { display: inline-block; padding: 6px 10px; background: rgba(0,128,0,0.08); color: green; border-radius: 6px; font-size: 0.75rem; font-weight: 600; }
.profile-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 16px; }
.stat { background: var(--sand-light); padding: 12px; border-radius: 8px; text-align: center; border: 1px solid rgba(200,146,42,0.04); }
.stat .num { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; color: var(--gold); }
.stat .lbl { font-size: 0.68rem; color: var(--text-mid); text-transform: uppercase; letter-spacing: 0.12em; }
.quick-links { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.quick-links .btn { justify-content: center; padding: 10px 14px; }
.right-side .dash-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 20px; }
.dash-card { background: var(--white); padding: 18px; border-radius: var(--radius-lg); border: 1px solid rgba(200,146,42,0.06); box-shadow: 0 8px 32px rgba(10,8,6,0.04); display: flex; flex-direction: column; gap: 6px; }
.dash-card .title { font-size: 0.78rem; color: var(--text-mid); text-transform: uppercase; letter-spacing: 0.12em; }
.dash-card .value { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; color: var(--gold); }
.dash-card .meta { font-size: 0.82rem; color: var(--text-mid); }
.recent { background: var(--white); padding: 18px; border-radius: var(--radius-lg); border: 1px solid rgba(200,146,42,0.06); box-shadow: 0 8px 32px rgba(10,8,6,0.04); }
.recent h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--text-dark); margin-bottom: 12px; }
.recent ul { list-style: none; display: flex; flex-direction: column; gap: 10px; padding: 0; margin: 0; }
.recent li { padding: 12px; background: var(--sand-light); border-radius: 8px; border: 1px solid rgba(200,146,42,0.04); display: flex; justify-content: space-between; align-items: center; }

.dashboard-table-wrap { overflow-x: auto; }
.dashboard-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 860px;
}
.dashboard-table thead th {
  text-align: left;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-mid);
  padding: 10px 12px;
  border-bottom: 1px solid rgba(200,146,42,0.12);
}
.dashboard-table tbody td {
  padding: 12px;
  border-bottom: 1px solid rgba(200,146,42,0.08);
  color: var(--text-dark);
  font-size: 0.92rem;
}
.dashboard-table tbody tr:last-child td {
  border-bottom: 0;
}

.dash-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  border: 1px solid transparent;
}
.dash-badge-pending,
.dash-badge-unpaid {
  background: #f8f3df;
  color: #8a6a18;
  border-color: #efdfaf;
}
.dash-badge-processing {
  background: #eef3fb;
  color: #2f5ea2;
  border-color: #d8e3f5;
}
.dash-badge-completed,
.dash-badge-paid {
  background: #eaf9ef;
  color: #1f7a3f;
  border-color: #cfeeda;
}
.dash-badge-cancelled {
  background: #fff0f0;
  color: #9b2c2c;
  border-color: #ffd6d6;
}

.btn-pay-now {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--white);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: all 0.2s ease;
}
.btn-pay-now:hover {
  background: var(--gold-dark);
  color: var(--white);
}
.dash-muted {
  color: var(--text-mid);
  font-size: 0.84rem;
  font-weight: 600;
}

/* ===========================
   LEGAL PAGES
   =========================== */
.legal-page {
  background: radial-gradient(circle at top, rgba(200,146,42,0.08), transparent 34%), var(--cream);
  padding: 48px 0 88px;
}
.legal-shell {
  max-width: 920px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid rgba(200,146,42,0.08);
  border-radius: var(--radius-xl, 28px);
  box-shadow: 0 18px 48px rgba(10,8,6,0.06);
  overflow: hidden;
}
.legal-hero {
  padding: 42px 42px 28px;
  background: linear-gradient(180deg, rgba(248,241,226,0.9) 0%, rgba(255,255,255,1) 100%);
  border-bottom: 1px solid rgba(200,146,42,0.08);
}
.legal-hero h1 {
  margin: 10px 0 14px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--text-dark);
}
.legal-hero p {
  max-width: 760px;
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.8;
}
.legal-meta {
  margin-top: 18px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
}
.legal-content {
  padding: 14px 42px 40px;
}
.legal-content section {
  padding: 22px 0;
  border-bottom: 1px solid rgba(200,146,42,0.08);
}
.legal-content section:last-child {
  border-bottom: 0;
}
.legal-content h2 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  letter-spacing: 0;
  color: var(--text-dark);
}
.legal-content p {
  margin: 0;
  color: var(--text-mid);
  line-height: 1.85;
}

@media (max-width: 768px) {
  .legal-page {
    padding: 28px 0 64px;
  }
  .legal-hero,
  .legal-content {
    padding-left: 22px;
    padding-right: 22px;
  }
}

@media (max-width: 1000px) {
  .dashboard-grid { grid-template-columns: 1fr; }
  .right-side .dash-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .right-side .dash-cards { grid-template-columns: 1fr; }
  .profile-avatar { width: 72px; height: 72px; font-size: 1.25rem; }
}

/* ==========================================
   NEW PREMIUM CLEAN ABOUT US SECTION (HARMONIZED)
========================================== */
.about-us-clean-section {
  background-color: #FAF6F0; /* Soft luxury warm champagne-peach cream background */
  padding: 110px 0;
  color: var(--text-dark);
  position: relative;
  font-family: 'DM Sans', sans-serif;
  overflow: hidden;
}

.about-us-clean-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 70px;
  align-items: center;
}

.about-us-clean-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-us-clean-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5.5vw, 4.2rem);
  color: var(--dark);
  line-height: 1.05;
  font-weight: 300;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.about-us-clean-title em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold);
}

.about-us-clean-text-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-us-clean-p {
  font-size: clamp(1.05rem, 1.2vw, 1.2rem);
  line-height: 1.8;
  color: var(--text-mid);
  margin: 0;
  font-weight: 400;
}

.about-us-clean-right {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.about-us-clean-img-wrapper {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(26, 16, 10, 0.08);
  border: 1px solid rgba(200, 146, 42, 0.15);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.about-us-clean-img-wrapper:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 50px rgba(26, 16, 10, 0.15);
}

.about-us-clean-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 3 / 4;
}

@media (max-width: 991px) {
  .about-us-clean-section {
    padding: 70px 0;
  }
  .about-us-clean-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-us-clean-title {
    text-align: center;
  }
  .about-us-clean-image {
    aspect-ratio: 4 / 5;
    max-height: 480px;
  }
}

/* ==========================================
   NEW FABULOUS WELLNESS SECTION (EDITORIAL REFINEMENT)
========================================== */
.fabulous-wellness-section {
  background-color: var(--cream); /* Clean luxury ivory cream */
  padding: 110px 0;
  color: var(--text-dark);
  font-family: 'DM Sans', sans-serif;
  overflow: hidden;
  border-top: 1px solid #EBE4D8;
  border-bottom: 1px solid #EBE4D8;
}

.fabulous-wellness-header {
  text-align: center;
  margin-bottom: 20px;
}

.fabulous-wellness-tag {
  display: block;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-family: 'DM Sans', sans-serif;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.fabulous-wellness-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  color: var(--dark);
  letter-spacing: 0.03em;
  margin: 0;
  text-transform: uppercase;
  font-weight: 300;
}

.fabulous-wellness-intro {
  font-size: clamp(1.05rem, 1.15vw, 1.2rem);
  line-height: 1.85;
  color: var(--text-mid);
  max-width: 800px;
  margin: 0 auto 64px auto;
  text-align: center;
}

.fabulous-wellness-intro strong {
  font-weight: 600;
  color: var(--dark);
}

.highlight-peach {
  color: var(--terra);
  font-weight: 500;
}

.highlight-dark {
  color: var(--dark);
  font-weight: 600;
}

.fabulous-wellness-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

/* Left Column: Model cutout in sunset circular gradient */
.fabulous-wellness-left {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
}

.fabulous-wellness-image-container {
  position: relative;
  width: 100%;
  max-width: 440px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Elegant radial warm glow behind the rectangular card */
.fabulous-wellness-image-container::before {
  content: '';
  position: absolute;
  width: 104%;
  height: 104%;
  top: -2%;
  left: -2%;
  border-radius: var(--radius-xl, 24px);
  background: radial-gradient(circle at 80% 20%, rgba(200, 146, 42, 0.22) 0%, rgba(212, 113, 58, 0.12) 50%, rgba(255, 253, 246, 0) 100%);
  z-index: 1;
  filter: blur(12px);
  pointer-events: none;
}

.fabulous-wellness-image {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-xl, 20px);
  z-index: 2;
  position: relative;
  display: block;
  box-shadow: 0 20px 48px rgba(44, 26, 14, 0.12), 0 8px 20px rgba(44, 26, 14, 0.06);
  border: 1px solid rgba(200, 146, 42, 0.18);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}

.fabulous-wellness-image:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 64px rgba(44, 26, 14, 0.18), 0 12px 28px rgba(44, 26, 14, 0.08);
  border-color: rgba(200, 146, 42, 0.35);
}

/* Right Column: Values border grid list */
.fabulous-wellness-right {
  width: 100%;
}

.fabulous-wellness-list {
  display: flex;
  flex-direction: column;
  border: 1px solid #EBE4D8;
  border-radius: 12px;
  background-color: var(--white);
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(26, 16, 10, 0.03);
}

.fabulous-wellness-item {
  display: flex;
  gap: 24px;
  padding: 26px 30px;
  align-items: flex-start;
  transition: background-color var(--transition);
}

.fabulous-wellness-item:not(:last-child) {
  border-bottom: 1px solid #EBE4D8;
}

.fabulous-wellness-item:hover {
  background-color: rgba(200, 146, 42, 0.02);
}

.fabulous-wellness-icon-wrapper {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px dashed var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: transform 0.4s ease;
}

.fabulous-wellness-item:hover .fabulous-wellness-icon-wrapper {
  transform: rotate(45deg);
}

.fabulous-wellness-svg {
  width: 22px;
  height: 22px;
}

.fabulous-wellness-item-content h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark);
  margin: 0 0 6px 0;
  letter-spacing: -0.01em;
}

.fabulous-wellness-item-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-mid);
  margin: 0;
}

@media (max-width: 991px) {
  .fabulous-wellness-section {
    padding: 70px 0;
  }
  .fabulous-wellness-intro {
    margin-bottom: 40px;
  }
  .fabulous-wellness-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .fabulous-wellness-image-container {
    max-width: 380px;
  }
  .fabulous-wellness-item {
    padding: 20px 24px;
  }
}

/* ==========================================
   NEW ABOUT OUR SUNBEDS SECTION (LUXURY)
========================================== */
.sunbeds-clean-section {
  background-color: #FAF6F0; /* Soft warm luxury linen background */
  padding: 110px 0;
  border-bottom: 1px solid #EBE4D8;
  font-family: 'DM Sans', sans-serif;
}

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

.sunbeds-clean-card {
  background-color: var(--white);
  border: 1px solid #EBE4D8;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(26, 16, 10, 0.02);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.sunbeds-clean-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 24px 50px rgba(200, 146, 42, 0.1);
}

.sunbeds-clean-img-wrapper {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
  background-color: var(--dark);
}

.sunbeds-clean-img-wrapper::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to bottom, rgba(26,16,10,0) 60%, rgba(26,16,10,0.4) 100%);
  z-index: 1;
}

.sunbeds-clean-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.sunbeds-clean-card:hover .sunbeds-clean-image {
  transform: scale(1.05);
}

.sunbeds-clean-body {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-grow: 1;
}

.sunbeds-clean-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--dark);
  margin: 0;
  text-transform: uppercase;
}

.sunbeds-clean-text-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sunbeds-clean-p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-mid);
  margin: 0;
}

@media (max-width: 991px) {
  .sunbeds-clean-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 767px) {
  .sunbeds-clean-section {
    padding: 70px 0;
  }
  .sunbeds-clean-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 36px;
  }
  .sunbeds-clean-body {
    padding: 24px;
  }
}

/* ==========================================
   NEW GOOGLE REVIEWS SECTION (LUXURY REFINEMENT)
========================================== */
.google-reviews-section {
  background-color: #FAF8F5; /* Warm linen/sand cream background */
  padding: 110px 0;
  color: var(--text-dark);
  font-family: 'DM Sans', sans-serif;
  overflow: hidden;
  border-top: 1px solid #EBE4D8;
  border-bottom: 1px solid #EBE4D8;
}

.google-reviews-grid {
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 50px;
  align-items: center;
}

.google-reviews-left {
  width: 100%;
}

.google-reviews-brand-card {
  background-color: var(--white);
  padding: 34px 30px;
  border-radius: 16px;
  border: 1px solid #EBE4D8;
  box-shadow: 0 15px 35px rgba(26, 16, 10, 0.03);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.google-reviews-logo-wrapper {
  display: flex;
  gap: 14px;
  align-items: center;
}

.google-reviews-logo-wrapper .logo-circle {
  width: 48px;
  height: 48px;
  background-color: var(--dark);
  color: var(--gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(26, 16, 10, 0.1);
}

.logo-meta {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}

.logo-sub {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.google-reviews-stars-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.google-reviews-stars-block .rating-value {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  letter-spacing: -0.02em;
}

.google-reviews-stars-block .rating-stars {
  color: var(--gold);
  font-size: 1.3rem;
  letter-spacing: 0.05em;
}

.rating-count {
  font-size: 0.9rem;
  color: var(--text-mid);
  font-weight: 500;
}

.btn-write-review {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white) !important;
  padding: 13px 26px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  align-self: stretch;
  box-shadow: 0 6px 18px rgba(200, 146, 42, 0.25);
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn-write-review:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 146, 42, 0.35);
  filter: brightness(1.08);
}

.google-reviews-right {
  position: relative;
  width: 100%;
}

.google-reviews-track-wrap {
  overflow: hidden;
  width: 100%;
  padding: 15px 0;
  position: relative;
}

.google-reviews-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  width: max-content;
}

.google-review-card {
  width: 360px;
  max-width: calc(100vw - 80px); /* Smart responsive boundary prevents mobile viewport overflow */
  flex-shrink: 0;
  background-color: var(--white);
  border: 1px solid #EBE4D8;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(26, 16, 10, 0.015);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.google-review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 35px rgba(26, 16, 10, 0.05);
}

.google-review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.google-review-user {
  display: flex;
  gap: 12px;
  align-items: center;
}

.google-review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(26, 16, 10, 0.05);
}

.google-review-info h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 2px 0;
}

.google-review-info span {
  font-size: 0.8rem;
  color: var(--text-mid);
  opacity: 0.7;
  font-weight: 500;
}

.google-review-stars-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-stars-yellow {
  color: var(--gold);
  font-size: 1.1rem;
}

.google-review-verified {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background-color: #FAF4E8;
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 12px;
}

.verified-svg {
  width: 11px;
  height: 11px;
  fill: currentColor;
}

.google-review-text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-mid);
  margin: 0;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.read-more-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold-dark);
  text-decoration: none;
  transition: color 0.2s ease;
  align-self: flex-start;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.read-more-link:hover {
  color: var(--gold);
}

/* Floating Navigation Buttons overlapping the sides beautifully */
.google-reviews-nav {
  position: absolute;
  top: 50%;
  left: -22px;
  right: -22px;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
}

.google-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #EBE4D8;
  background-color: var(--white);
  color: var(--text-mid);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 4px 15px rgba(26, 16, 10, 0.06);
  transition: all 0.3s ease;
}

.google-nav-btn:hover {
  background-color: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: 0 6px 20px rgba(200, 146, 42, 0.25);
  transform: scale(1.05);
}

/* Responsive styles */
@media (max-width: 991px) {
  .google-reviews-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .google-reviews-left {
    display: none;
  }
  .google-reviews-nav {
    left: -10px;
    right: -10px;
  }
}

@media (max-width: 767px) {
  .google-reviews-section {
    padding: 40px 0 50px;
  }
  .google-review-card {
    max-width: calc(100vw - 40px); /* Fits neatly into mobile margins */
  }
  .google-reviews-nav {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 24px;
  }
  .google-nav-btn {
    width: 40px;
    height: 40px;
  }
}

/* ==========================================
   FLOATING PHONE BUTTON (VIBRANT UX)
========================================== */
.floating-phone-btn {
  position: fixed;
  bottom: 32px;
  left: 32px;
  z-index: 99;
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #24D25A; /* Vibrant Whatsapp-Green from screenshot */
  color: white !important;
  padding: 12px 24px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 8px 24px rgba(36, 210, 90, 0.25);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s ease, background-color 0.3s ease;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-phone-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(36, 210, 90, 0.4);
  background-color: #1FC14F;
  color: white !important;
}

.phone-icon-svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  display: block;
}

@media (max-width: 767px) {
  .floating-phone-btn {
    bottom: 24px;
    right: 24px;
    left: auto;
    width: 48px;
    height: 48px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 6px 18px rgba(36, 210, 90, 0.3);
  }
  
  .scroll-top {
    bottom: 84px;
    right: 25px;
  }
  
  .floating-phone-btn .phone-number-text {
    display: none; /* Smoothly collapse text into circular icon on mobile */
  }
  
  .phone-icon-svg {
    width: 22px;
    height: 22px;
  }
}

/* ==========================================
   PRICING PAGE EXTRA CONTENT STYLES
========================================== */
.pricing-hero {
  background-image: linear-gradient(180deg, rgba(15, 8, 3, 0.72) 0%, rgba(44, 26, 14, 0.8) 100%), url('../images/banner2.jpg');
  background-size: cover;
  background-position: center;
  padding: 150px 20px 90px;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pricing-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(200, 146, 42, 0.15) 0%, rgba(0,0,0,0) 70%);
  z-index: 1;
}
.pricing-hero .container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}
.pricing-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 500;
  color: var(--white);
  margin-block: 14px;
  letter-spacing: 0.02em;
}
.pricing-hero h1 em {
  color: var(--gold-light);
}
.pricing-hero .hero-subtext {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.7;
}
.pricing-hero .pricing-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--gold-light);
  text-transform: uppercase;
}
.pricing-hero .pricing-tag::before,
.pricing-hero .pricing-tag::after {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--gold-light);
  display: block;
}

.pricing-faqs {
  background: var(--sand-light);
  padding: 100px 20px;
}
.pricing-faqs .section-header {
  max-width: 700px;
  margin: 0 auto 56px;
  text-align: center;
}
.pricing-faqs .section-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 8px;
  margin-bottom: 16px;
}
.pricing-faqs .section-header p {
  font-size: 1rem;
  color: var(--text-mid);
}
.faqs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 56px;
  max-width: 1100px;
  margin: 0 auto;
}
.faq-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.faq-item p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.pricing-cta-banner {
  background: linear-gradient(135deg, var(--dark2), var(--dark));
  padding: 90px 20px;
  color: var(--white);
  text-align: center;
  position: relative;
}
.pricing-cta-banner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 500;
  color: var(--sand);
  margin-bottom: 14px;
}
.pricing-cta-banner p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 32px;
  max-width: 600px;
  margin-inline: auto;
}
.pricing-cta-banner .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.pricing-cta-banner .btn-outline-light {
  border: 1.5px solid var(--white);
  color: var(--white);
  padding: 16px 40px;
  border-radius: 30px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: transparent;
  transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
}
.pricing-cta-banner .btn-outline-light:hover {
  background: var(--white);
  color: var(--dark);
}

@media (max-width: 768px) {
  .faqs-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}