/* ═══════════════════════════════════════════════════════
   DR. HAFSA — DENTAL CLINIC
   Palette: Rose-gold luxury + porcelain white + deep charcoal
   Fonts: Cormorant Garamond (display) + Switzer (body)
═══════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ────────────────────────────── */
:root,
[data-theme='light'] {
  /* Surfaces — porcelain warm white */
  --color-bg: #faf8f5;
  --color-surface: #ffffff;
  --color-surface-2: #f5f1ec;
  --color-surface-offset: #efe9e1;
  --color-divider: #e8e0d8;
  --color-border: #ddd5cc;

  /* Text */
  --color-text: #1c1814;
  --color-text-muted: #6b6259;
  --color-text-faint: #b8b0a8;
  --color-text-inverse: #faf8f5;

  /* Primary accent — deep rose-gold */
  --color-primary: #8b4a6b;
  --color-primary-hover: #6e3854;
  --color-primary-active: #522840;

  /* Gold accent */
  --color-gold: #c4933a;
  --color-gold-hover: #a87a2e;
  --color-gold-light: #f5e8d0;

  /* WhatsApp */
  --color-whatsapp: #25d366;
  --color-whatsapp-hover: #1daa52;

  /* Rose-gold decorative */
  --color-rose: #d4a574;
  --color-rose-light: #f8ede3;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(28, 24, 20, 0.06);
  --shadow-md: 0 4px 16px rgba(28, 24, 20, 0.08);
  --shadow-lg: 0 12px 40px rgba(28, 24, 20, 0.12);
  --shadow-xl: 0 24px 64px rgba(28, 24, 20, 0.14);

  /* Radii */
  --radius-sm: 0.375rem;
  --radius-md: 0.625rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;

  /* Type scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.65vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Content widths */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;

  /* Fonts */
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Switzer', 'Inter', sans-serif;

  /* Transitions */
  --transition: 200ms cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme='dark'] {
  --color-bg: #141210;
  --color-surface: #1a1815;
  --color-surface-2: #201d1a;
  --color-surface-offset: #1e1c19;
  --color-divider: #2a2722;
  --color-border: #353028;
  --color-text: #e8e2da;
  --color-text-muted: #9e9490;
  --color-text-faint: #5e5a56;
  --color-text-inverse: #141210;
  --color-primary: #c080a0;
  --color-primary-hover: #d490b0;
  --color-gold: #d4a45a;
  --color-gold-light: #3a2e1e;
  --color-rose: #c49070;
  --color-rose-light: #2a1e14;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.2);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.3);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.4);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg: #141210;
    --color-surface: #1a1815;
    --color-surface-2: #201d1a;
    --color-surface-offset: #1e1c19;
    --color-divider: #2a2722;
    --color-border: #353028;
    --color-text: #e8e2da;
    --color-text-muted: #9e9490;
    --color-text-faint: #5e5a56;
    --color-text-inverse: #141210;
    --color-primary: #c080a0;
    --color-primary-hover: #d490b0;
    --color-gold: #d4a45a;
    --color-gold-light: #3a2e1e;
    --color-rose: #c49070;
    --color-rose-light: #2a1e14;
  }
}

/* ── BASE RESET ────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
body {
  min-height: 100dvh;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
}
img, picture, svg { display: block; max-width: 100%; height: auto; }
ul[role='list'], ol[role='list'] { list-style: none; }
input, button, textarea, select { font: inherit; color: inherit; }
h1,h2,h3,h4,h5,h6 { text-wrap: balance; line-height: 1.15; }
p, li { text-wrap: pretty; max-width: 72ch; }
button { cursor: pointer; background: none; border: none; }
a { color: inherit; text-decoration: none; }

::selection { background: color-mix(in oklab, var(--color-primary) 20%, transparent); }
:focus-visible { outline: 2px solid var(--color-gold); outline-offset: 3px; border-radius: var(--radius-sm); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ── UTILITIES ────────────────────────────── */
.container {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: clamp(var(--space-5), 5vw, var(--space-16));
}
.section { padding-block: clamp(var(--space-16), 8vw, var(--space-24)); }
.section--alt { background: var(--color-surface); }

.section-eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-3);
}
.section-heading {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: var(--space-5);
}
.section-heading em { font-style: italic; color: var(--color-primary); }
.section-sub {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 56ch;
}
.section-header {
  text-align: center;
  margin-bottom: var(--space-16);
}
.section-header .section-sub { margin-inline: auto; }

/* ── BUTTONS ────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-8);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.03em;
  border-radius: var(--radius-full);
  border: 1.5px solid transparent;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.btn--primary {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.btn--primary:hover { background: var(--color-primary-hover); border-color: var(--color-primary-hover); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn--gold {
  background: var(--color-gold);
  color: #fff;
  border-color: var(--color-gold);
}
.btn--gold:hover { background: var(--color-gold-hover); border-color: var(--color-gold-hover); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(196,147,58,0.35); }

.btn--outline {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}
.btn--outline:hover { border-color: var(--color-text-muted); background: var(--color-surface-2); }

.btn--ghost {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-color: rgba(255,255,255,0.35);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: rgba(255,255,255,0.25); border-color: rgba(255,255,255,0.5); }

.btn--whatsapp {
  background: var(--color-whatsapp);
  color: #fff;
  border-color: var(--color-whatsapp);
  font-weight: 600;
}
.btn--whatsapp:hover { background: var(--color-whatsapp-hover); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(37,211,102,0.35); }

.btn--full { width: 100%; justify-content: center; }

/* ── HEADER ────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in oklab, var(--color-bg) 92%, transparent);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-divider);
  transition: box-shadow var(--transition), transform var(--transition);
}
.header--scrolled { box-shadow: var(--shadow-sm); }
.header--hidden { transform: translateY(-100%); }
.header__inner {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: clamp(var(--space-5), 5vw, var(--space-16));
  height: 72px;
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  flex-shrink: 0;
  color: var(--color-primary);
}
.logo__text { display: flex; flex-direction: column; line-height: 1.2; }
.logo__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: 0.01em;
}
.logo__title {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  letter-spacing: 0.06em;
  font-weight: 400;
}

.nav { margin-left: auto; }
.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  list-style: none;
}
.nav__link {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-decoration: none;
  font-weight: 400;
  transition: color var(--transition);
  letter-spacing: 0.01em;
}
.nav__link:hover { color: var(--color-text); }
.nav__link--active { color: var(--color-primary) !important; font-weight: 500; }

.header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-left: var(--space-6);
}
.theme-toggle {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
  transition: all var(--transition);
  flex-shrink: 0;
}
.theme-toggle:hover { color: var(--color-text); background: var(--color-surface-2); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px; height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.menu-toggle span {
  display: block; width: 20px; height: 1.5px;
  background: var(--color-text);
  transition: all var(--transition);
}

.mobile-nav {
  display: none;
  padding: var(--space-6) clamp(var(--space-5), 5vw, var(--space-16)) var(--space-8);
  border-top: 1px solid var(--color-divider);
  background: var(--color-bg);
}
.mobile-nav ul { list-style: none; display: flex; flex-direction: column; gap: var(--space-5); }
.mobile-nav .nav__link { font-size: var(--text-base); }
.mobile-nav.is-open { display: block; }

@media (max-width: 900px) {
  .nav { display: none; }
  .header__actions .btn--outline { display: none; }
  .menu-toggle { display: flex; }
}

/* ── HERO ────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(20, 14, 10, 0.85) 0%,
    rgba(20, 14, 10, 0.72) 45%,
    rgba(20, 14, 10, 0.35) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: clamp(var(--space-5), 5vw, var(--space-16));
  padding-block: var(--space-24);
  max-width: 680px;
}
.hero__eyebrow {
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-rose);
  font-weight: 500;
  margin-bottom: var(--space-4);
}
.hero__heading {
  font-family: var(--font-display);
  font-size: clamp(3rem, 1rem + 5vw, 5.5rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.05;
  margin-bottom: var(--space-6);
}
.hero__heading em {
  font-style: italic;
  color: var(--color-rose);
  font-weight: 300;
}
.hero__sub {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.82);
  max-width: 52ch;
  line-height: 1.6;
  margin-bottom: var(--space-10);
  font-weight: 300;
}
.hero__actions { display: flex; gap: var(--space-4); flex-wrap: wrap; margin-bottom: var(--space-16); }
.hero__stats {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  flex-wrap: nowrap;
}
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat__num {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  color: #fff;
  line-height: 1;
}
.stat__label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.stat__divider {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.25);
}

/* ── TRUST BAR ────────────────────────────── */
.trust-bar {
  background: #A299B0;
  padding-block: var(--space-5);
}
.trust-bar__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(var(--space-6), 4vw, var(--space-16));
  flex-wrap: wrap;
  list-style: none;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.9);
  font-weight: 400;
}
.trust-bar__item svg { flex-shrink: 0; opacity: 0.8; }

/* ── ABOUT ────────────────────────────── */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(var(--space-12), 6vw, var(--space-24));
  align-items: center;
}
.about__image-wrap {
  position: relative;
}
.about__img {
  width: 100%;
  height: clamp(500px, 60vw, 680px);
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}
.about__image-accent {
  position: absolute;
  inset: -16px -16px 16px 16px;
  border: 1.5px solid var(--color-gold);
  border-radius: var(--radius-xl);
  z-index: -1;
  opacity: 0.4;
}
.about__badge {
  position: absolute;
  bottom: var(--space-8);
  right: calc(-1 * var(--space-8));
  background: var(--color-gold);
  color: #fff;
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
  min-width: 120px;
}
.badge__num {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  line-height: 1;
}
.badge__text {
  display: block;
  font-size: var(--text-xs);
  opacity: 0.9;
  letter-spacing: 0.04em;
  line-height: 1.3;
  margin-top: 2px;
}
.about__lead {
  font-size: var(--text-lg);
  color: var(--color-text);
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: var(--space-5);
}
.about__body {
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
  line-height: 1.7;
}
.about__body--tagline {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-primary);
  font-weight: 500;
  margin-bottom: var(--space-8);
}
.credential-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}
.credential {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.credential svg { color: var(--color-gold); flex-shrink: 0; }

@media (max-width: 768px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__badge { right: var(--space-4); }
}

/* ── SERVICES ────────────────────────────── */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-6);
}
.service-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  position: relative;
  transition: all var(--transition);
}

.service-card--featured {
  background: var(--color-bg);
  border-color: var(--color-border);
  color: var(--color-text);
}
.service-card--featured .service-card__desc { color: var(--color-text-muted); }
.service-card--featured .service-card__price { color: var(--color-gold); border-color: var(--color-divider); }
.service-card--featured .service-card__tag {
  background: var(--color-primary);
  color: #fff;
}
.service-card--featured .service-card__icon {
  background: var(--color-gold-light);
  color: var(--color-gold);
}
.service-card--featured:hover { border-color: var(--color-rose); }
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-active) 100%);
  color: #fff;
}
.service-card:hover .service-card__desc { color: rgba(255,255,255,0.8); }
.service-card:hover .service-card__price { color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.2); }
.service-card:hover .service-card__title { color: #fff; }
.service-card:hover .service-card__icon {
  background: rgba(255,255,255,0.18);
  color: #fff;
}

.service-card__icon {
  width: 52px; height: 52px;
  background: var(--color-gold-light);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-gold);
  margin-bottom: var(--space-5);
}
.service-card--featured .service-card__icon {
  background: rgba(255,255,255,0.15);
  color: #fff;
}
.service-card__tag {
  position: absolute;
  top: var(--space-6);
  right: var(--space-6);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.2);
  color: #fff;
  padding: 3px var(--space-3);
  border-radius: var(--radius-full);
}
.service-card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  margin-bottom: var(--space-3);
}
.service-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: var(--space-5);
}
.service-card__price {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-gold);
  letter-spacing: 0.04em;
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-divider);
}

/* ── WHY DR. HAFSA ────────────────────────────── */
.why__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(var(--space-12), 6vw, var(--space-24));
  align-items: start;
}
.why__body {
  color: var(--color-text-muted);
  margin-bottom: var(--space-10);
  line-height: 1.7;
}
.why__features { display: flex; flex-direction: column; gap: var(--space-8); }
.why-feature { display: flex; gap: var(--space-5); align-items: flex-start; }
.why-feature__icon {
  width: 44px; height: 44px;
  background: var(--color-rose-light);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
}
.why-feature__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  margin-bottom: var(--space-2);
}
.why-feature__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
}
.why__img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  margin-bottom: var(--space-6);
}
.why__quote {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-gold);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-8);
}
.why__quote blockquote {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-style: italic;
  color: var(--color-text);
  font-weight: 400;
  margin-bottom: var(--space-3);
  max-width: none;
}
.why__quote cite {
  font-size: var(--text-xs);
  color: var(--color-gold);
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

/* ── GALLERY ────────────────────────────── */
.gallery__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-6);
}
.gallery__item {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.gallery__item--wide { grid-column: span 1; }
.gallery__before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  position: relative;
}
.gallery__before-after--stacked {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.gallery__label {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  font-size: var(--text-xs);
  font-weight: 600;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 2px var(--space-3);
  border-radius: var(--radius-full);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  z-index: 2;
}
.gallery__label--after { left: auto; right: var(--space-3); background: var(--color-gold); }
.gallery__placeholder {
  height: 200px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-faint);
  position: relative;
}
.gallery__placeholder--before { background: var(--color-surface-offset); border: 1px dashed var(--color-border); }
.gallery__placeholder--after { background: var(--color-gold-light); border: 1px dashed var(--color-gold); }
.gallery__placeholder--sm { height: 120px; }
.gallery__caption {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.gallery__note {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  justify-content: center;
}

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

/* ── TESTIMONIALS ────────────────────────────── */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-6);
}
.testimonial-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  transition: all var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.testimonial-card__stars { color: var(--color-gold); font-size: var(--text-base); margin-bottom: var(--space-4); letter-spacing: 2px; }
.testimonial-card__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-base);
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: var(--space-6);
  font-weight: 400;
  max-width: none;
}
.testimonial-card__author { display: flex; align-items: center; gap: var(--space-3); }
.testimonial-card__avatar {
  width: 40px; height: 40px;
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600;
  font-size: var(--text-sm);
  flex-shrink: 0;
}
.testimonial-card__name { font-size: var(--text-sm); font-weight: 600; }
.testimonial-card__detail { font-size: var(--text-xs); color: var(--color-text-muted); }

/* ── BOOKING ────────────────────────────── */
.booking { background: var(--color-surface-2); }
.booking__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-12), 6vw, var(--space-24));
  align-items: start;
}
.booking__sub {
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-8);
}
.booking__perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-10);
}
.booking__perks li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  max-width: none;
}
.booking__perks li svg { color: var(--color-gold); flex-shrink: 0; }
.booking__cta-group { display: flex; gap: var(--space-4); flex-wrap: wrap; }
.booking-form {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  box-shadow: var(--shadow-md);
}
.booking-form__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  margin-bottom: var(--space-8);
  color: var(--color-text);
}
.form-group { margin-bottom: var(--space-5); }
.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}
.form-label--optional { color: var(--color-text-faint); font-weight: 400; }
.form-input {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  color: var(--color-text);
  transition: all var(--transition);
}
.form-input:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--color-gold) 15%, transparent);
}
.form-input::placeholder { color: var(--color-text-faint); }
.form-select { cursor: pointer; }
.form-textarea { resize: vertical; min-height: 90px; }
.form-note {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  margin-top: var(--space-4);
  text-align: center;
  max-width: none;
}

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

/* ── FOOTER ────────────────────────────── */
.footer {
  background: var(--color-text);
  color: rgba(255,255,255,0.7);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: clamp(var(--space-12), 6vw, var(--space-24));
  padding-block: var(--space-16);
}
.footer__brand .logo { color: rgba(255,255,255,0.5); }
.footer__brand .logo__name { color: #fff; }
.footer__brand .logo__title { color: rgba(255,255,255,0.5); }
.footer__tagline {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  margin-top: var(--space-5);
  line-height: 1.65;
  max-width: 36ch;
}
.footer__links { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-8); }
.footer__col-title {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--space-5);
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: var(--space-3); }
.footer__col li, .footer__col a { font-size: var(--text-sm); color: rgba(255,255,255,0.6); max-width: none; }
.footer__col a:hover { color: #fff; }
.footer__social { display: flex; flex-direction: column; gap: var(--space-3); }
.social-link {
  display: flex; align-items: center; gap: var(--space-2);
  font-size: var(--text-sm); color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.social-link:hover { color: var(--color-gold); }
.footer__dha {
  display: flex; align-items: center; gap: var(--space-2);
  font-size: var(--text-xs); color: rgba(255,255,255,0.35);
  margin-top: var(--space-5);
  max-width: none;
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-block: var(--space-5);
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-3);
}
.footer__bottom p { font-size: var(--text-xs); color: rgba(255,255,255,0.35); max-width: none; }
.footer__bottom a { color: rgba(255,255,255,0.5); }
.footer__bottom a:hover { color: #fff; }

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

/* ── WHATSAPP FAB ────────────────────────────── */
.whatsapp-fab {
  position: fixed;
  bottom: var(--space-8);
  right: var(--space-8);
  width: 56px; height: 56px;
  background: var(--color-whatsapp);
  color: #fff;
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: all var(--transition);
  z-index: 90;
  text-decoration: none;
}
.whatsapp-fab:hover {
  background: var(--color-whatsapp-hover);
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}

/* ── SCROLL ANIMATIONS ────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
.fade-up:nth-child(6) { transition-delay: 0.5s; }

/* ── GALLERY TABS ────────────────────────────── */
.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: center;
  margin-bottom: var(--space-8);
}

.gallery-tab {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.55rem 1.4rem;
  border: 1.5px solid var(--color-primary);
  border-radius: var(--radius-full);
  background: transparent;
  color: var(--color-primary);
  cursor: pointer;
  transition: all var(--transition);
}

.gallery-tab:hover {
  background: var(--color-primary);
  color: #fff;
}

.gallery-tab.is-active {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(139, 74, 107, 0.30);
}

.gallery-panel {
  display: none;
}

.gallery-panel.is-active {
  display: block;
}

/* ── BEFORE / AFTER GRID ─────────────────────── */
.ba-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 640px) {
  .ba-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.ba-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}

.ba-img-wrap {
  position: relative;
  overflow: hidden;
  background: var(--color-surface);
}

.ba-img-wrap img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s ease;
}

.ba-pair:hover .ba-img-wrap img {
  transform: scale(1.03);
}

.ba-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.35rem 0.65rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  text-align: center;
}

.ba-label--after {
  background: var(--color-gold);
  color: #fff;
}

@media (max-width: 480px) {
  .ba-img-wrap img {
    height: 200px;
  }
}
