/* ═══════════════════════════════════════════════════════════════════
   THE SMILE EDIT – Premium Dental Clinic CSS
   Design System: Cream & Gold, Cormorant Garamond + Inter
════════════════════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ──────────────────────────────────────────────── */
:root {
  --cream: #FAF7F2;
  --cream-dark: #F2EDE4;
  --gold: #C9A96E;
  --gold-light: #DFC08B;
  --gold-dark: #A8844D;
  --charcoal: #2D2D2D;
  --charcoal-soft: #4A4A4A;
  --text-muted: #7A7264;
  --white: #FFFFFF;
  --black: #1A1A1A;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --script: 'Dancing Script', cursive;

  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 40px;

  --shadow-sm: 0 2px 12px rgba(45, 45, 45, .06);
  --shadow-md: 0 6px 32px rgba(45, 45, 45, .10);
  --shadow-lg: 0 16px 64px rgba(45, 45, 45, .14);
  --shadow-gold: 0 8px 32px rgba(201, 169, 110, .22);

  --section-pad: clamp(4rem, 8vw, 7rem);
  --container: 1160px;

  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}

input,
select,
textarea {
  font: inherit;
}

/* ─── CONTAINER ──────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

/* ─── TYPOGRAPHY HELPERS ─────────────────────────────────────────── */
.section__eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.section__heading {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 1.1rem;
}

.section__desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
}

.section__header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section__header .section__desc {
  margin-inline: auto;
}

/* ─── SECTION BASE ───────────────────────────────────────────────── */
.section {
  padding-block: var(--section-pad);
}

/* ─── BUTTONS ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-xl);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}

.btn--primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.btn--primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 169, 110, .32);
}

.btn--outline {
  background: transparent;
  color: var(--gold-dark);
  border: 1.5px solid var(--gold);
}

.btn--outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 8px 28px rgba(37, 211, 102, .25);
}

.btn--whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(37, 211, 102, .35);
}

.btn--nav {
  padding: 0.6rem 1.4rem;
  font-size: 0.82rem;
}

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

/* ─── SCROLL REVEAL ──────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── ──────────────────────────────────────────────────────────── ─
   NAVIGATION
──────────────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding-block: 0.5rem;
  overflow: visible;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.nav.scrolled {
  background: rgba(250, 247, 242, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(45, 45, 45, .08);
  padding-block: 0.75rem;
}

.nav__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  overflow: visible;
}

/* ─── NAV LOGO (IMAGE VERSION) ───────────────────────────────────── */
.nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav__logo-img {
  height: 120px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: opacity var(--transition);
  mix-blend-mode: multiply;
  /* Removes white background from logo against cream header */
  /* Overflow the navbar without pushing its height */
  margin-block: -30px;
}

.nav__logo-img:hover {
  opacity: 0.85;
}

/* Theme toggle: Dark Hero navigation adjustments */
.nav:not(.scrolled) .nav__logo-img {
  mix-blend-mode: screen;
  /* Makes black background transparent against dark hero */
  filter: brightness(1.2) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.nav:not(.scrolled) .nav__link {
  color: var(--cream);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.nav:not(.scrolled) .nav__link:hover {
  color: var(--gold-light);
}

.nav:not(.scrolled) .btn--nav {
  color: var(--cream);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.nav:not(.scrolled) .btn--nav:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.nav:not(.scrolled) .nav__hamburger span {
  background: var(--cream);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.nav__links {
  display: none;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav__link {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--charcoal-soft);
  letter-spacing: 0.03em;
  transition: color var(--transition);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav__link:hover {
  color: var(--gold-dark);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  width: 34px;
  position: relative;
  z-index: 1000;
  /* Ensure the hamburger button sits above the open menu so it can be closed */
}

.nav__hamburger span {
  display: block;
  height: 1.5px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav__hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
  background: var(--charcoal);
  /* Keep lines dark when open to contrast against cream menu background */
}

.nav__hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
  background: var(--charcoal);
  /* Keep lines dark when open to contrast against cream menu background */
}

/* Mobile nav open state */
.nav__links.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: 0;
  background: var(--cream);
  align-items: center;
  justify-content: center;
  gap: 2.2rem;
  z-index: 999;
}

.nav__links.open .nav__link {
  font-size: 1.3rem;
  color: var(--charcoal);
  /* Ensure mobile links are high-contrast dark text against the cream background */
  font-weight: 500;
}

.nav__links.open .btn--nav {
  font-size: 1rem;
  padding: 0.9rem 2.4rem;
}

@media (min-width: 900px) {
  .nav__links {
    display: flex;
  }

  .nav__hamburger {
    display: none;
  }
}

/* ─── ──────────────────────────────────────────────────────────── ─
   HERO
──────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* OLD LIGHT BACKGROUND - commented for easy undo
  background:
    linear-gradient(155deg,
      #F7F1E8 0%,
      #EFE5D0 35%,
      #E8D9C0 65%,
      #F2E8D5 100%);
  */
  /* NEW DARK PHOTO BACKGROUND */
  background: url('assets/clinic-5.jpg') center/cover no-repeat;
  background-attachment: fixed;
  /* Parallax effect for premium feel */
}

/* Decorative animated elements behind content */
.hero::before {
  content: '';
  position: absolute;
  width: clamp(300px, 60vw, 700px);
  height: clamp(300px, 60vw, 700px);
  background: radial-gradient(circle, rgba(201, 169, 110, 0.22) 0%, transparent 70%);
  border-radius: 50%;
  top: -10%;
  right: -10%;
  animation: heroGlow 8s ease-in-out infinite alternate;
}

.hero::after {
  content: '';
  position: absolute;
  width: clamp(200px, 40vw, 500px);
  height: clamp(200px, 40vw, 500px);
  background: radial-gradient(circle, rgba(201, 169, 110, 0.14) 0%, transparent 70%);
  border-radius: 50%;
  bottom: -5%;
  left: -5%;
  animation: heroGlow 10s ease-in-out 2s infinite alternate-reverse;
}

@keyframes heroGlow {
  from {
    transform: scale(1) translate(0, 0);
    opacity: 0.6;
  }

  to {
    transform: scale(1.2) translate(20px, -20px);
    opacity: 1;
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  /* NEW DARK OVERLAY OVER THE IMAGE */
  background: linear-gradient(to bottom,
      rgba(26, 26, 26, 0.7) 0%,
      rgba(26, 26, 26, 0.45) 40%,
      rgba(26, 26, 26, 0.85) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero__logo-wrap {
  text-align: center;
  pointer-events: none;
  display: inline-block;
  /* Hugs the content exactly vs flex taking full width */
  margin-bottom: 0.5rem;
  /* Extremely tight margin since image has zero padding */
}

.hero__center-logo {
  max-width: clamp(160px, 30vw, 280px);
  /* Slightly smaller max width for tightly cropped image so it feels balanced */
  height: auto;
  display: block;
  /* Removes inline bottom spacing gap */
  opacity: 0;
  /* Filter stack to transform artwork into a brighter, glowing gold */
  filter: invert(0.7) sepia(0.8) saturate(4) hue-rotate(5deg) brightness(1.1) drop-shadow(0 4px 12px rgba(0, 0, 0, 0.45));
  background-color: transparent !important;
  animation: logoFadeIn 1.4s ease forwards;
}

@keyframes logoFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 0.95;
    transform: translateY(0);
  }
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: clamp(6rem, 12vw, 9rem) 1.25rem 2rem;
  max-width: 800px;
  width: 100%;
}

/* Hero eyebrow removed */

.hero__headline {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--white);
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.hero__headline em {
  font-style: italic;
  color: var(--gold);
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero__scroll-hint span {
  display: block;
  width: 1.5px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(168, 132, 77, 0.6), transparent);
  margin-inline: auto;
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  50.01% {
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ─── ──────────────────────────────────────────────────────────── ─
   ABOUT
──────────────────────────────────────────────────────────────────── */
.about {
  background: var(--white);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
}

@media (min-width: 900px) {
  .about__grid {
    grid-template-columns: 1fr 1.2fr;
  }
}

.about__image-wrap {
  position: relative;
}

.about__photo-frame {
  position: relative;
  z-index: 1;
}

.about__photo-placeholder {
  width: 100%;
  aspect-ratio: 2/3;
  max-width: 480px;
  background: linear-gradient(145deg, #EFE8D8 0%, #DDD0B8 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about__photo-initials {
  font-family: var(--serif);
  font-size: 5rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.6;
  letter-spacing: 0.1em;
}

/* If a real image is added via CSS background or <img> tag */
.about__photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  mix-blend-mode: multiply;
  /* Makes white/light backgrounds transparent */
}

/* Image Crossfade Animation */
.about__photo-placeholder.image-crossfade {
  position: relative;
}

.image-crossfade img.img-top,
.image-crossfade img.img-bottom {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.image-crossfade img.img-top {
  animation: fadeOutIn 4s ease-in-out infinite;
}

.image-crossfade img.img-bottom {
  animation: fadeOutIn 4s ease-in-out infinite;
  animation-delay: -2s;
}

@keyframes fadeOutIn {

  0%,
  40% {
    opacity: 1;
  }

  50%,
  90% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.about__badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1rem;
  background: var(--gold);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 1rem 1.4rem;
  text-align: center;
  box-shadow: var(--shadow-gold);
  z-index: 2;
}

.about__badge-num {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
}

.about__badge-txt {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-top: 0.25rem;
}

.about__accent-block {
  position: absolute;
  width: 60%;
  height: 60%;
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.12), rgba(201, 169, 110, 0.04));
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: var(--radius-lg);
  bottom: -2rem;
  left: -2rem;
  z-index: 0;
}

.about__copy {
  padding-top: clamp(1rem, 3vw, 2rem);
}

.about__credentials {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.about__para {
  color: var(--charcoal-soft);
  margin-bottom: 1.2rem;
  font-size: 1rem;
  line-height: 1.8;
}

.about__para em {
  color: var(--gold-dark);
  font-style: italic;
}

.about__highlights {
  margin: 2rem 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.about__highlights li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.about__highlight-icon {
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
  padding-top: 0.15rem;
}

.about__highlights strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.2rem;
}

.about__highlights p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─── ──────────────────────────────────────────────────────────── ─
   TREATMENTS
──────────────────────────────────────────────────────────────────── */
.treatments {
  background: var(--cream);
}

.treatments__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

@media (min-width: 1000px) {
  .treatments__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.treatment-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(201, 169, 110, 0.08);
  position: relative;
  overflow: hidden;
}

.treatment-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

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

.treatment-card:hover::before {
  transform: scaleX(1);
}

.treatment-card__icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.1), rgba(201, 169, 110, 0.05));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.3rem;
  border: 1px solid rgba(201, 169, 110, 0.15);
}

.treatment-card__title {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.7rem;
  line-height: 1.25;
}

.treatment-card__desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.2rem;
}

.treatment-card__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold-dark);
  background: rgba(201, 169, 110, 0.1);
  border-radius: var(--radius-xl);
  padding: 0.3rem 0.85rem;
}

.treatments__cta {
  text-align: center;
  margin-top: clamp(2rem, 4vw, 3.5rem);
}

.treatments__cta p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

/* ─── ──────────────────────────────────────────────────────────── ─
   CLINIC SPACE
──────────────────────────────────────────────────────────────────── */
.clinic-space {
  background: var(--cream);
}

.clinic-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

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

@media (min-width: 900px) {
  .clinic-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
  }

  /* First card spans 2 rows — gives it a featured taller presence */
  .clinic-card--featured {
    grid-row: span 2;
  }
}

.clinic-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.clinic-card__img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #EFE8D8 0%, #D9C9AA 100%);
}

/* Featured card on desktop fills its double-row height */
@media (min-width: 900px) {
  .clinic-card--featured .clinic-card__img-wrap {
    aspect-ratio: unset;
    height: 100%;
  }
}

.clinic-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.clinic-card:hover .clinic-card__img-wrap img {
  transform: scale(1.05);
}

/* Overlay label */
.clinic-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 22, 14, 0.6) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 1rem 1.2rem;
  opacity: 0;
  transition: opacity var(--transition);
}

.clinic-card:hover .clinic-card__overlay {
  opacity: 1;
}

.clinic-card__overlay span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(0, 0, 0, 0.25);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(201, 169, 110, 0.3);
  backdrop-filter: blur(4px);
}

/* Placeholder fallback when real image missing — keeps layout intact */
.clinic-card__img-wrap img[src=""],
.clinic-card__img-wrap img:not([src]) {
  display: none;
}

.clinic-space__note {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.gallery__insta-link {
  color: var(--gold-dark);
  font-weight: 500;
  transition: color var(--transition);
}

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

/* ─── ──────────────────────────────────────────────────────────── ─
   BOOKING
──────────────────────────────────────────────────────────────────── */
.booking {
  background: var(--cream-dark);
}

.booking__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: start;
}

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

.booking__desc {
  font-size: 1rem;
  color: var(--charcoal-soft);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.booking__perks {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2.5rem;
}

.booking__perks li {
  font-size: 0.9rem;
  color: var(--charcoal-soft);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.booking__whatsapp {
  align-self: flex-start;
}

/* Form */
.booking__form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 3rem);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--charcoal);
  text-transform: uppercase;
}

.required {
  color: var(--gold);
}

.form-input {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1.5px solid rgba(201, 169, 110, 0.3);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.12);
  background: var(--white);
}

.form-input::placeholder {
  color: rgba(45, 45, 45, 0.35);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A96E' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

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

.form__note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: -0.5rem;
}

/* ─── ──────────────────────────────────────────────────────────── ─
   REVIEWS
──────────────────────────────────────────────────────────────────── */
.reviews {
  background: var(--white);
}

.reviews__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}

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

@media (min-width: 1000px) {
  .reviews__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: clamp(1.5rem, 3vw, 2rem);
  border: 1px solid rgba(201, 169, 110, 0.1);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

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

.review-card__stars {
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.review-card__text {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--charcoal-soft);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.5rem;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(201, 169, 110, 0.15);
}

.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-card__name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.1rem;
}

.review-card__tag {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.reviews__google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 3rem;
  font-size: 0.9rem;
  color: var(--charcoal-soft);
  flex-wrap: wrap;
}

.reviews__google-link {
  color: var(--gold-dark);
  font-weight: 500;
  transition: color var(--transition);
}

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

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

.location__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: start;
}

@media (min-width: 900px) {
  .location__grid {
    grid-template-columns: 1fr 1.6fr;
  }
}

.location__info {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.location__detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.location__icon {
  width: 40px;
  height: 40px;
  background: rgba(201, 169, 110, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.location__detail-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.2rem;
}

.location__detail-value {
  font-size: 0.9rem;
  color: var(--charcoal-soft);
  line-height: 1.65;
}

.location__directions-btn {
  align-self: flex-start;
}

.location__map {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(201, 169, 110, 0.15);
}

.location__map iframe {
  display: block;
  width: 100%;
  min-height: 320px;
}

/* ─── ──────────────────────────────────────────────────────────── ─
   FOOTER
──────────────────────────────────────────────────────────────────── */
.footer {
  background: var(--black);
  padding-block: clamp(3rem, 6vw, 5rem) 2rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

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

@media (min-width: 900px) {
  .footer__inner {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

.footer__logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.footer__tagline {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.footer__addr {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1.5rem;
}

.footer__socials {
  display: flex;
  gap: 1rem;
}

.footer__social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.footer__social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 169, 110, 0.08);
}

.footer__links-heading {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer__links li,
.footer__treatments li {
  margin-bottom: 0.7rem;
}

.footer__links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--white);
}

.footer__treatments li {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.25);
}

/* ─── ──────────────────────────────────────────────────────────── ─
   FLOATING WHATSAPP
──────────────────────────────────────────────────────────────────── */
/* Floating Social Buttons Container */
.floating-socials {
  position: fixed;
  bottom: clamp(1rem, 3vw, 2rem);
  right: clamp(1rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  z-index: 1000;
}

.whatsapp-float,
.instagram-float {
  width: 55px;
  height: 55px;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float {
  background-color: #25D366;
  animation: floatPulse 3s ease-in-out infinite;
}

.instagram-float {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  animation: floatPulse 3s ease-in-out 1.5s infinite;
  /* Staggered animation */
}

.whatsapp-float:hover,
.instagram-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  animation: none;
}

.whatsapp-float svg,
.instagram-float svg {
  width: 28px;
  height: 28px;
}

@keyframes floatPulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  }
}

/* ─── UTILITY: GOLD DIVIDER ──────────────────────────────────────── */
.gold-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border: none;
  margin-block: 0;
}

/* ─── ──────────────────────────────────────────────────────────── ─
   ACCESSIBILITY
──────────────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}