/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Poppins:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

/* ===========================
   CSS CUSTOM PROPERTIES
   =========================== */
:root {
  --teal: #0F5C63;
  --teal-light: #1a7a83;
  --teal-mid: #134D4E;
  --teal-dark: #0a3d42;
  --teal-wash: #EAF4F4;
  --deep: #0C1E20;
  --sage: #A8B8A0;
  --gold: #C9A66B;
  --gold-light: #d4b87f;
  --white: #FFFFFF;
  --grey-soft: #F5F5F5;
  --grey-mid: #E8E8E8;
  --charcoal: #2D2D2D;
  --text-light: #6B7280;

  --font-display: 'Times New Roman', serif, 'DM Serif Display', Georgia;
  --font-heading: 'Poppins', 'Montserrat', 'Inter', sans-serif;
  --font-body: 'Inter', 'Roboto', 'Open Sans', sans-serif;

  --radius: 10px;
  --radius-sm: 7px;
  --radius-lg: 18px;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 8px 32px rgba(0, 0, 0, 0.14);
  --transition: all 0.3s ease;

  --max-width: 1200px;
}

/* ===========================
   RESET & BASE
   =========================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; }

/* ===========================
   CONTAINER
   =========================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===========================
   TYPOGRAPHY
   =========================== */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--charcoal);
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.02em;
}
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.05rem, 2vw, 1.35rem); }
h4 { font-size: 1rem; }

p { line-height: 1.75; color: var(--text-light); }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title { color: var(--charcoal); margin-bottom: 14px; }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 580px;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  line-height: 1;
}

.btn-primary { background: var(--teal); color: var(--white); }
.btn-primary:hover {
  background: var(--teal-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 92, 99, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}
.btn-secondary:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 166, 107, 0.4);
}

.btn-white { background: var(--white); color: var(--teal); }
.btn-white:hover { background: var(--grey-soft); transform: translateY(-2px); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.6);
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

/* ===========================
   NAVIGATION
   =========================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

.nav.scrolled { box-shadow: 0 2px 24px rgba(0, 0, 0, 0.09); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.nav-logo img { height: 44px; width: auto; }

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

.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--charcoal);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--teal);
  background: rgba(15, 92, 99, 0.07);
}

.nav-cta { margin-left: 10px; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
  border-radius: 8px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-mobile {
  display: none;
  position: fixed;
  top: 74px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--grey-mid);
  padding: 20px 24px 28px;
  z-index: 999;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.nav-mobile.open { display: block; animation: slideDown 0.2s ease; }

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.nav-mobile a {
  display: block;
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal);
  border-bottom: 1px solid var(--grey-mid);
  transition: var(--transition);
}

.nav-mobile a:hover { color: var(--teal); padding-left: 6px; }

.nav-mobile .nav-book-mobile {
  display: flex;
  justify-content: center;
  margin-top: 18px;
  border-bottom: none;
  padding: 0;
}

/* ===========================
   SECTIONS
   =========================== */
.section { padding: 88px 0; }
.section-sm { padding: 60px 0; }
.section-grey { background: var(--teal-wash); }

/* ===========================
   HERO SECTION
   =========================== */
.hero {
  padding-top: 74px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, #ffffff 0%, #f3f6f5 60%, #ebf0ed 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(15, 92, 99, 0.08);
  color: var(--teal);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.hero-title { 
  color: var(--teal-mid); 
  margin-bottom: 18px;
  max-width: 620px;
  line-height: 1.1;
}
.hero-title .highlight { color: var(--teal); }

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 550px;
  color: var(--charcoal);
}

.hero-benefits {
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--charcoal);
}

.check-icon {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-visual { position: relative; }

.hero-img-wrap {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: #0F5C63;
  box-shadow: 0 24px 60px rgba(15, 92, 99, 0.2);
}

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

.hero-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 70%, rgba(255,255,255,0.07) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50' height='50'%3E%3Ccircle cx='25' cy='25' r='1' fill='white' fill-opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-img-placeholder-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
  font-size: 0.8rem;
  text-align: center;
  gap: 8px;
}

.hero-img-placeholder-text svg { opacity: 0.4; }

/* Laser beam signature line */
.hero-laser-line {
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--teal) 25%,
    var(--gold) 55%,
    transparent 90%
  );
  margin: 22px 0 24px;
  position: relative;
  max-width: 480px;
}
.hero-laser-line::after {
  content: '';
  position: absolute;
  left: 54%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px 3px rgba(201, 166, 107, 0.45);
}

.hero-float-card {
  position: absolute;
  bottom: 28px;
  left: -24px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-hover);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
  max-width: 220px;
}

.float-card-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: rgba(15, 92, 99, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
}

.float-card-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--charcoal);
  font-family: var(--font-heading);
}

.float-card-text span {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* ===========================
   TRUST BAR
   =========================== */
.trust-bar {
  background: var(--teal-wash);
  border-top: 1px solid rgba(15, 92, 99, 0.12);
  border-bottom: 1px solid rgba(15, 92, 99, 0.12);
  padding: 26px 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--charcoal);
  white-space: nowrap;
}

.trust-dot {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
}

/* ===========================
   WHY CHOOSE US
   =========================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 52px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 22px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: var(--transition);
  cursor: default;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(15, 92, 99, 0.12);
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(15, 92, 99, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--teal);
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--teal);
  color: var(--white);
}

.feature-card h3 { font-size: 1rem; margin-bottom: 8px; }
.feature-card p { font-size: 0.88rem; }

/* ===========================
   TREATMENT AREAS
   =========================== */
.treatment-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 52px;
}

.treatment-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

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

.treatment-img {
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
}

.treatment-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,50,55,0.75) 0%, rgba(10,50,55,0.1) 55%, transparent 100%);
}

.treatment-img-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.2);
}

.treatment-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 14px 16px;
  z-index: 2;
}

.treatment-label h3 {
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.treatment-label a {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.tc-1 { background: linear-gradient(160deg, #0F5C63, #1a8a95); }
.tc-2 { background: linear-gradient(160deg, #1a6b5a, #2a9070); }
.tc-3 { background: linear-gradient(160deg, #2a5568, #3a7a90); }
.tc-4 { background: linear-gradient(160deg, #553c6b, #7a5a90); }
.tc-5 { background: linear-gradient(160deg, #3d5a4a, #5a7d63); }

/* ===========================
   HOW IT WORKS
   =========================== */
.steps-row {
  display: grid;
  grid-template-columns: 1fr 48px 1fr 48px 1fr;
  align-items: center;
  margin-top: 60px;
  gap: 0;
}

.step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.04);
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 auto 18px;
}

/* Large ghosted display numeral for steps */
.step-num-display {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 400;
  line-height: 1;
  color: rgba(15, 92, 99, 0.1);
  margin-bottom: 4px;
  letter-spacing: -0.03em;
  transition: color 0.35s ease;
}
.step:hover .step-num-display {
  color: rgba(15, 92, 99, 0.18);
}

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-connector::after {
  content: '';
  display: block;
  height: 2px;
  width: 32px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
}

.step h3 { margin-bottom: 8px; }
.step p { font-size: 0.88rem; }

/* ===========================
   BENEFITS SECTION
   =========================== */
.benefits-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.benefits-img-wrap {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(145deg, #A8B8A0 0%, #0F5C63 80%);
  position: relative;
  box-shadow: 0 20px 50px rgba(15, 92, 99, 0.15);
}

.benefits-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='64'%3E%3Crect width='64' height='64' fill='none'/%3E%3Ccircle cx='32' cy='32' r='1.5' fill='white' fill-opacity='0.05'/%3E%3C/svg%3E");
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 30px;
}

.benefit-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--grey-mid);
  transition: var(--transition);
}

.benefit-row:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow);
}

.benefit-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(15, 92, 99, 0.07);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
}

.benefit-row h4 { font-size: 0.9rem; margin-bottom: 2px; }
.benefit-row p { font-size: 0.83rem; }

/* ===========================
   GALLERY PREVIEW
   =========================== */
.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 52px;
}

.preview-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.preview-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

.preview-ba {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 240px;
}

.preview-before, .preview-after {
  position: relative;
  overflow: hidden;
}

.preview-before { background: linear-gradient(135deg, #e6e0d8, #d4cbc2); }
.preview-after  { background: linear-gradient(135deg, #c0d4b8, #a8c4a0); }

.preview-tag {
  position: absolute;
  top: 10px; left: 10px;
  background: rgba(0,0,0,0.55);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
}

.preview-footer {
  background: var(--white);
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.preview-footer h4 { font-size: 0.88rem; }
.preview-footer span { font-size: 0.8rem; color: var(--text-light); }

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 52px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.04);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }

.stars {
  display: flex;
  gap: 3px;
  color: var(--gold);
  margin-bottom: 14px;
  font-size: 1rem;
}

.testimonial-text {
  font-size: 0.93rem;
  color: var(--charcoal);
  line-height: 1.75;
  font-style: italic;
  flex-grow: 1;
  margin-bottom: 20px;
}

.testimonial-author { display: flex; align-items: center; gap: 12px; }

.t-avatar {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: rgba(15, 92, 99, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--teal);
  font-size: 0.95rem;
}

.t-name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--charcoal);
}

.t-location { font-size: 0.78rem; color: var(--text-light); }

/* ===========================
   FAQ ACCORDION
   =========================== */
.faq-list {
  max-width: 760px;
  margin: 50px auto 0;
}

.faq-item {
  border: 1.5px solid var(--grey-mid);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item.open { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(15,92,99,0.07); }

.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--charcoal);
  transition: background 0.2s;
}

.faq-btn:hover { background: var(--grey-soft); }

.faq-icon {
  min-width: 20px;
  color: var(--teal);
  transition: transform 0.3s ease;
}

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

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-body-inner {
  padding: 4px 22px 20px;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.75;
}

/* ===========================
   DARK SECTION (Testimonials)
   =========================== */
.section-dark {
  background: var(--deep);
}
.section-dark .section-label { color: var(--gold); }
.section-dark .section-title { color: var(--white); }
.section-dark .divider { background: var(--gold); }

.section-dark .testimonial-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
}
.section-dark .testimonial-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(201, 166, 107, 0.25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transform: translateY(-3px);
}
.section-dark .stars { color: var(--gold); }
.section-dark .testimonial-text { color: rgba(255, 255, 255, 0.78); }
.section-dark .t-name { color: var(--white); }
.section-dark .t-location { color: rgba(255, 255, 255, 0.4); }
.section-dark .t-avatar {
  background: rgba(201, 166, 107, 0.15);
  color: var(--gold);
}

/* ===========================
   CTA BANNER
   =========================== */
.cta-banner {
  background: linear-gradient(150deg, var(--deep) 0%, #142e30 60%, #1a4a4e 100%);
  padding: 88px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  pointer-events: none;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -60px;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: rgba(201,166,107,0.06);
  pointer-events: none;
}

.cta-banner h2 { color: var(--white); margin-bottom: 14px; }

.cta-banner p {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto 32px;
}

.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===========================
   CONTACT & MAP
   =========================== */
.contact-home-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-details { margin-top: 30px; display: flex; flex-direction: column; gap: 18px; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.cd-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 10px;
  background: rgba(15, 92, 99, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
}

.cd-text h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  margin-bottom: 3px;
}

.cd-text p, .cd-text a {
  color: var(--charcoal);
  font-size: 0.93rem;
  font-weight: 500;
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  height: 340px;
  background: linear-gradient(135deg, #d0dcd8, #c4d4cc);
  position: relative;
  border: 1px solid var(--grey-mid);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.map-placeholder-label {
  text-align: center;
  color: var(--text-light);
  font-size: 0.88rem;
  padding: 22px 20px 16px;
}

.mapouter {
  position: relative;
  width: 100%;
  height: 100%;
}

.gmap_canvas {
  overflow: hidden;
  background: none !important;
  width: 100%;
  height: 100%;
}

.gmap_iframe {
  width: 100%;
  height: 100% !important;
  border: none;
  display: block;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--deep);
  color: rgba(255,255,255,0.65);
  padding: 64px 0 28px;
}

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

.footer-brand p {
  font-size: 0.88rem;
  margin-top: 16px;
  max-width: 280px;
  line-height: 1.75;
}

.footer-logo { filter: brightness(0) invert(1); opacity: 0.88; height: 38px; }

.footer-socials {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

.social-btn {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.social-btn:hover { background: var(--teal); color: var(--white); }

.footer-col h4 {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 18px;
  font-family: var(--font-heading);
}

.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.88rem; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }

.footer-hours p { font-size: 0.85rem; line-height: 2; }

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

.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.35); }

.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.82rem; color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-legal a:hover { color: var(--gold); }

/* ===========================
   MOBILE STICKY CTA
   =========================== */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  z-index: 900;
  white-space: nowrap;
  box-shadow: 0 10px 32px rgba(15, 92, 99, 0.45);
  animation: fadeUp 0.4s ease;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateX(-50%) translateY(10px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ===========================
   PAGE HERO (inner pages)
   =========================== */
.page-hero {
  background: linear-gradient(150deg, var(--deep) 0%, #163438 50%, var(--teal) 100%);
  padding: 130px 0 72px;
  text-align: center;
}

.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.78); font-size: 1.05rem; max-width: 540px; margin: 0 auto; }

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

.breadcrumb a { font-size: 0.82rem; color: rgba(255,255,255,0.55); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { color: rgba(255,255,255,0.3); font-size: 0.8rem; }
.breadcrumb span { font-size: 0.82rem; color: rgba(255,255,255,0.75); }

/* ===========================
   ABOUT PAGE
   =========================== */
.story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.story-img {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #A8B8A0 0%, #0F5C63 100%);
  box-shadow: 0 20px 50px rgba(15,92,99,0.15);
}

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

.practitioner-photo {
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #d0d8cc, #0F5C63);
  box-shadow: var(--shadow-hover);
  position: relative;
  overflow: hidden;
}

.practitioner-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,92,99,0.3) 0%, transparent 60%);
}

.credentials {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}

.credential {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--charcoal);
}

.credential-dot {
  width: 8px; height: 8px;
  min-width: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 52px;
}

.approach-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  border: 1.5px solid var(--grey-mid);
  transition: var(--transition);
}

.approach-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.approach-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(15, 92, 99, 0.07);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  color: var(--teal);
}

.approach-card h3 { font-size: 0.95rem; margin-bottom: 8px; }
.approach-card p { font-size: 0.85rem; }

/* ===========================
   SERVICE PAGE
   =========================== */
.service-how-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.service-img {
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #1a7a83, #0F5C63 60%, #0a3d42);
  box-shadow: 0 20px 50px rgba(15,92,99,0.18);
}

.process-list { display: flex; flex-direction: column; gap: 22px; margin-top: 8px; }

.process-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.process-num {
  width: 40px; height: 40px; min-width: 40px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
}

.process-item h4 { margin-bottom: 4px; font-size: 0.95rem; }
.process-item p { font-size: 0.88rem; }

.skin-types-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: 32px;
}

.skin-type {
  padding: 12px 8px;
  text-align: center;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--grey-mid);
}

.skin-swatch {
  width: 36px; height: 36px;
  border-radius: 50%;
  margin: 0 auto 8px;
}

.skin-type span { font-size: 0.75rem; color: var(--text-light); }

/* ===========================
   PRICING PAGE
   =========================== */
.pricing-note-box {
  background: rgba(201,166,107,0.1);
  border: 1.5px solid rgba(201,166,107,0.3);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: 0.88rem;
  color: var(--charcoal);
  margin-bottom: 48px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.pricing-note-box svg { color: var(--gold); min-width: 20px; margin-top: 1px; }

.pricing-section { margin-bottom: 56px; }

.pricing-section-title {
  font-size: 1.05rem;
  color: var(--teal);
  font-family: var(--font-heading);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--grey-mid);
  margin-bottom: 18px;
}

.pricing-table {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid var(--grey-mid);
}

.pricing-th {
  display: grid;
  grid-template-columns: 1fr 140px 160px 110px;
  padding: 14px 22px;
  background: var(--grey-soft);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  border-bottom: 1px solid var(--grey-mid);
}

.pricing-row {
  display: grid;
  grid-template-columns: 1fr 140px 160px 110px;
  padding: 16px 22px;
  align-items: center;
  border-bottom: 1px solid var(--grey-mid);
  transition: background 0.2s;
}

.pricing-row:last-child { border-bottom: none; }
.pricing-row:hover { background: var(--grey-soft); }

.p-area { font-weight: 500; font-size: 0.93rem; }
.p-single { font-weight: 500; font-size: 0.93rem; color: var(--charcoal); }
.p-package { font-weight: 700; color: var(--teal); font-size: 0.93rem; }

.p-book {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal);
  padding: 5px 12px;
  border: 1.5px solid var(--teal);
  border-radius: 50px;
  transition: var(--transition);
}

.p-book:hover { background: var(--teal); color: var(--white); }

/* ===========================
   GALLERY PAGE
   =========================== */
.gallery-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.gf-btn {
  padding: 8px 20px;
  border-radius: 50px;
  border: 1.5px solid var(--grey-mid);
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  color: var(--charcoal);
  transition: var(--transition);
}

.gf-btn.active, .gf-btn:hover {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-tile {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.gallery-tile:hover { transform: scale(1.02); box-shadow: var(--shadow-hover); }

.tile-ba {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 220px;
}

.tile-before { background: linear-gradient(135deg, #e0d8d0, #ccc4bc); position: relative; }
.tile-after  { background: linear-gradient(135deg, #c4d4bc, #aac4a4); position: relative; }

.tile-label {
  position: absolute;
  top: 8px; left: 8px;
  background: rgba(0,0,0,0.5);
  color: white;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 3px;
}

.tile-footer {
  background: var(--white);
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tile-footer h4 { font-size: 0.85rem; }
.tile-footer span { font-size: 0.78rem; color: var(--text-light); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.lightbox.open { display: flex; }

.lightbox-inner { max-width: 880px; width: 90%; text-align: center; }

.lightbox-close {
  position: fixed;
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: white;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  line-height: 1;
}

.lightbox-close:hover { background: rgba(255,255,255,0.2); }

.lightbox-img {
  width: 100%;
  height: 500px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 16px;
}

.lb-before { background: linear-gradient(135deg, #e0d8d0, #ccc4bc); }
.lb-after  { background: linear-gradient(135deg, #c4d4bc, #aac4a4); }

.lightbox-caption { color: rgba(255,255,255,0.75); font-size: 0.9rem; }

/* ===========================
   CONTACT PAGE
   =========================== */
.contact-page-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--grey-mid);
}

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

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 16px;
  border: 1.5px solid var(--grey-mid);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(15,92,99,0.09);
}

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

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

.contact-info-card {
  background: var(--grey-soft);
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid var(--grey-mid);
}

.contact-info-items { display: flex; flex-direction: column; gap: 18px; margin-top: 8px; }

.ci-item { display: flex; align-items: flex-start; gap: 14px; }

.ci-icon {
  width: 44px; height: 44px; min-width: 44px;
  border-radius: 10px;
  background: rgba(15, 92, 99, 0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
}

.ci-text h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  margin-bottom: 3px;
}

.ci-text p, .ci-text a {
  font-size: 0.93rem;
  color: var(--charcoal);
  font-weight: 500;
}

.hours-list { margin-top: 4px; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--charcoal);
  padding: 4px 0;
  border-bottom: 1px solid var(--grey-mid);
}
.hours-list li:last-child { border-bottom: none; }
.hours-list li span { color: var(--text-light); }

.map-section {
  margin-top: 48px;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 420px;
  background: linear-gradient(135deg, #d0dcd8, #c0d0cc);
  border: 1px solid var(--grey-mid);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}

.map-section iframe { width: 100%; height: 100%; border: none; }

/* ===========================
   BOOK PAGE
   =========================== */
.book-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px;
}

.booking-widget {
  background: var(--grey-soft);
  border-radius: var(--radius);
  border: 2px dashed var(--grey-mid);
  padding: 60px 40px;
  text-align: center;
}

.booking-widget h3 { margin-bottom: 10px; }
.booking-widget p { margin-bottom: 20px; }

/* ===========================
   FAQ PAGE CATEGORIES
   =========================== */
.faq-categories { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }
.faq-cat-btn {
  padding: 8px 20px;
  border-radius: 50px;
  border: 1.5px solid var(--grey-mid);
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  color: var(--charcoal);
  transition: var(--transition);
}
.faq-cat-btn.active, .faq-cat-btn:hover {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

.faq-page-list { max-width: 760px; margin: 0 auto; }

.faq-category-group { margin-bottom: 44px; }

.faq-cat-heading {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--teal);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--grey-mid);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ===========================
   UTILITY
   =========================== */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-48 { margin-bottom: 48px; }

.divider {
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 16px 0 24px;
}

.text-center .divider { margin: 16px auto 24px; }

/* ===========================
   REVEAL ANIMATIONS
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1100px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .treatment-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .skin-types-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 56px 0 48px; }
  .hero-visual { order: -1; }
  .hero-img-wrap { aspect-ratio: 16/9; max-height: 420px; }
  .hero-float-card { left: 8px; bottom: -12px; }
  .steps-row { grid-template-columns: 1fr; gap: 16px; }
  .step-connector { display: none; }
  .benefits-inner { grid-template-columns: 1fr; gap: 40px; }
  .gallery-preview-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-home-inner { grid-template-columns: 1fr; gap: 40px; }
  .story-inner { grid-template-columns: 1fr; gap: 40px; }
  .practitioner-grid { grid-template-columns: 1fr; gap: 40px; }
  .approach-grid { grid-template-columns: 1fr 1fr; }
  .service-how-inner { grid-template-columns: 1fr; gap: 40px; }
  .pricing-th, .pricing-row { grid-template-columns: 1fr 130px 150px; }
  .pricing-th .hide-mobile, .pricing-row .p-book { display: none; }
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
  .contact-page-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .section { padding: 64px 0; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .treatment-grid { grid-template-columns: 1fr 1fr; }
  .gallery-preview-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; }
  .sticky-cta { display: inline-flex; }
  .approach-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 26px; }
  .pricing-th, .pricing-row { grid-template-columns: 1fr 130px; }
  .pricing-th .p-package-header, .pricing-row .p-single { display: none; }
}

@media (max-width: 520px) {
  .features-grid { grid-template-columns: 1fr; }
  .treatment-grid { grid-template-columns: 1fr 1fr; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { justify-content: center; }
  .gallery-masonry { grid-template-columns: 1fr; }
  .trust-bar-inner { gap: 12px; }
}
