/* ============================================
   GLAM BEAUTY — Editorial Luxury Aesthetic
   Inspired by skinforum.com.au
   ============================================ */

:root {
  --bg: #fdfbf9;
  --bg-alt: #f7f5f3;
  --black: #080808;
  --text: #1a1a1a;
  --text-light: #6b6560;
  --accent: #7f6858;
  --accent-light: #a08b7a;
  --white: #ffffff;
  --border: rgba(0,0,0,0.08);

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', -apple-system, sans-serif;

  --gutter: 32px;
  --max-w: 1240px;
  --nav-h: 72px;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
html { overflow-x: hidden; }
body { font-family: var(--font-sans); font-weight: 400; font-size: 14px; color: var(--text); background: var(--bg); line-height: 1.7; overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* Utilities */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
.label { font-family: var(--font-sans); font-weight: 600; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.section-title { font-family: var(--font-sans); font-weight: 600; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--black); margin-bottom: 48px; }

/* Buttons */
.btn { display: inline-block; font-family: var(--font-sans); font-weight: 500; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; padding: 15px 32px; border-radius: 2px; transition: all 0.3s var(--ease); }
.btn--primary { background: var(--black); color: var(--white); }
.btn--primary:hover { background: #333; }
.btn--ghost { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.5); }
.btn--ghost:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn--dark { background: var(--black); color: var(--white); padding: 18px 40px; }
.btn--dark:hover { background: #222; }

/* Animations */
[data-animate] { opacity: 0; transform: translateY(24px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
[data-animate="fade-right"] { transform: translateX(-24px); }
[data-animate="fade-left"] { transform: translateX(24px); }
[data-animate="fade-scale"] { transform: scale(0.96); }
[data-animate].is-visible { opacity: 1; transform: translateY(0) translateX(0) scale(1); }
[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }

/* Decorative elements */
.divider {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  padding: 48px 0;
}
.divider__line {
  width: 60px; height: 1px; background: var(--border);
}
.divider__dot {
  width: 4px; height: 4px; border-radius: 50%; background: var(--accent-light);
}
.divider--wide .divider__line { width: 120px; }

/* Animated horizontal rule */
.hr-animate {
  width: 0; height: 1px; background: var(--border); margin: 0 auto;
  transition: width 1.2s var(--ease);
}
.hr-animate.is-visible { width: 100%; }

/* Dot accent pattern */
.dot-accent {
  position: absolute; display: grid; grid-template-columns: repeat(5, 6px); gap: 12px;
  opacity: 0.15; pointer-events: none;
}
.dot-accent span {
  width: 3px; height: 3px; border-radius: 50%; background: var(--accent);
}

/* Section line accent */
.section-title::before {
  content: ''; display: block; width: 32px; height: 1px;
  background: var(--accent-light); margin-bottom: 14px;
}
.section-title--center::before { margin-left: auto; margin-right: auto; }

/* Floating line separator */
.line-sep {
  display: block; width: 48px; height: 1px;
  background: var(--accent-light); margin: 0 auto 48px; opacity: 0.5;
}

/* Testimonial decorative quote */
.testimonial__quote-mark {
  font-family: var(--font-serif); font-size: 64px; font-weight: 300;
  color: var(--accent-light); opacity: 0.25; line-height: 1; margin-bottom: -12px;
  display: block;
}

/* CTA decorative lines */
.cta__lines {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  margin-bottom: 32px;
}
.cta__lines span {
  width: 40px; height: 1px; background: var(--accent-light); opacity: 0.4;
}
.cta__lines .cta__diamond {
  width: 6px; height: 6px; background: var(--accent-light); opacity: 0.5;
  transform: rotate(45deg);
}

/* Team section card line accent */
.team__card::after {
  content: ''; display: block; width: 24px; height: 1px;
  background: var(--accent-light); margin: 20px auto 0; opacity: 0.4;
  transition: width 0.4s var(--ease);
}
.team__card:hover::after { width: 48px; opacity: 0.7; }

/* Footer accent line */
.footer__accent {
  width: 32px; height: 1px; background: var(--accent-light);
  margin-bottom: 20px; opacity: 0.5;
}


/* ============================================
   NAVIGATION — skinforum-style
   ============================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: transparent;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.nav.scrolled {
  background: rgba(253,251,249,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}
.nav__container {
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter);
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.nav__logo { display: flex; align-items: center; }
.nav__logo-img { height: 52px; width: auto; transition: opacity 0.3s; }
.nav__logo-img--dark { display: none; }
.nav.scrolled .nav__logo-img--white { display: none; }
.nav.scrolled .nav__logo-img--dark { display: block; }

.nav__menu { display: flex; align-items: center; gap: 36px; }
.nav__link {
  font-weight: 500; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.85); transition: color 0.3s; padding: 4px 0;
  position: relative;
}
.nav__link:hover { color: var(--white); }
.nav.scrolled .nav__link { color: var(--text-light); }
.nav.scrolled .nav__link:hover { color: var(--black); }

.nav__link::after {
  content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1px;
  background: currentColor; transition: width 0.3s var(--ease);
}
.nav__link:hover::after { width: 100%; }

.nav__right { display: flex; align-items: center; }
.nav__cta {
  font-weight: 500; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 10px 22px; border: 1px solid rgba(255,255,255,0.5); color: var(--white);
  border-radius: 2px; transition: all 0.3s var(--ease);
}
.nav__cta:hover { background: rgba(255,255,255,0.1); }
.nav.scrolled .nav__cta { border-color: var(--black); color: var(--black); }
.nav.scrolled .nav__cta:hover { background: var(--black); color: var(--white); }

/* Hamburger */
.nav__hamburger { display: none; width: 24px; height: 20px; flex-direction: column; justify-content: center; gap: 7px; z-index: 1001; }
.nav__hamburger span { display: block; width: 100%; height: 1px; background: var(--white); transition: all 0.3s var(--ease); transform-origin: center; }
.nav.scrolled .nav__hamburger span { background: var(--black); }
.nav__hamburger.active span { background: var(--black); }
.nav__hamburger.active span:first-child { transform: rotate(45deg) translate(3px, 3px); }
.nav__hamburger.active span:last-child { transform: rotate(-45deg) translate(3px, -3px); }


/* ========== MEGA MENU ========== */
.nav__dropdown { position: relative; }
.mega-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  width: 780px; background: var(--white);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  transform: translateX(-50%) translateY(8px);
  padding: 0; margin-top: 12px;
}
.nav__dropdown:hover .mega-menu,
.mega-menu:hover {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.mega-menu__inner {
  display: grid; grid-template-columns: 1fr 1fr 1fr 200px;
  gap: 0; padding: 36px;
}
.mega-menu__col { padding-right: 24px; }
.mega-menu__col--image { padding-right: 0; }
.mega-menu__heading {
  font-weight: 600; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-light); margin-bottom: 16px; padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.mega-menu__link {
  display: block; font-size: 13px; font-weight: 400; color: var(--text);
  padding: 5px 0; transition: color 0.2s;
}
.mega-menu__link:hover { color: var(--accent); }
.mega-menu__image {
  width: 100%; height: 100%; object-fit: cover; border-radius: 2px;
}

/* Mega menu arrow/indicator */
.mega-menu::before {
  content: ''; position: absolute; top: -12px; left: 0; right: 0; height: 12px;
}


/* ========== MOBILE MENU ========== */
.mobile-menu {
  position: fixed; inset: 0; z-index: 999; background: var(--bg);
  opacity: 0; visibility: hidden; transition: all 0.4s var(--ease);
  display: flex; align-items: center; justify-content: center;
}
.mobile-menu.active { opacity: 1; visibility: visible; }
.mobile-menu__nav { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.mobile-menu__link {
  font-family: var(--font-sans); font-weight: 400; font-size: 15px;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--text);
}
.mobile-menu__toggle { display: flex; align-items: center; gap: 8px; }
.mobile-menu__arrow { font-size: 18px; font-weight: 300; transition: transform 0.3s; }
.mobile-menu__accordion { display: flex; flex-direction: column; align-items: center; }
.mobile-menu__submenu {
  display: none; flex-direction: column; align-items: center; gap: 12px;
  padding-top: 16px;
}
.mobile-menu__submenu.active { display: flex; }
.mobile-menu__submenu a {
  font-size: 13px; color: var(--text-light); letter-spacing: 0.04em;
  transition: color 0.2s;
}
.mobile-menu__submenu a:hover { color: var(--accent); }
.mobile-menu__cta {
  margin-top: 16px; font-weight: 500; font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 14px 28px; border: 1px solid var(--black); color: var(--black);
  border-radius: 2px;
}


/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; }
.hero__img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(40,35,30,0.55) 0%, rgba(40,35,30,0.4) 40%, rgba(40,35,30,0.6) 100%); }
.hero__content { position: relative; z-index: 2; text-align: center; padding: 0 var(--gutter); }
.hero__label {
  font-weight: 500; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.8); margin-bottom: 20px;
}
.hero__title {
  font-family: var(--font-serif); font-weight: 300; font-size: clamp(48px, 9vw, 120px);
  color: var(--white); line-height: 1; letter-spacing: 0.02em;
  text-transform: uppercase; margin-bottom: 24px;
}
.hero__logo {
  display: block; width: clamp(260px, 32vw, 400px); height: auto;
  margin: 0 auto 28px; filter: drop-shadow(0 2px 12px rgba(0,0,0,0.15));
}
.hero__line {
  width: 0; height: 1px; background: rgba(255,255,255,0.35);
  margin: 0 auto 28px; transition: width 1.2s var(--ease);
}
.hero__line.is-visible { width: 80px; }
.hero__subtitle {
  font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.75);
  line-height: 1.8; margin-bottom: 40px; letter-spacing: 0.02em;
}
.hero__ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }


/* ============================================
   PHILOSOPHY STRIP
   ============================================ */
.philosophy {
  padding: 80px 0; background: var(--bg); text-align: center;
  border-bottom: 1px solid var(--border);
}
.philosophy__text {
  font-family: var(--font-serif); font-weight: 300; font-style: italic;
  font-size: clamp(18px, 2.5vw, 24px); color: var(--text);
  max-width: 680px; margin: 0 auto; line-height: 1.7;
}
.philosophy__credit {
  display: block; margin-top: 20px; font-size: 12px;
  letter-spacing: 0.08em; color: var(--text-light);
}


/* ============================================
   BRAND PARTNERS MARQUEE
   ============================================ */
.brands {
  padding: 64px 0; background: var(--bg); text-align: center;
  border-bottom: 1px solid var(--border); overflow: hidden;
}
.brands__label {
  font-family: var(--font-sans); font-weight: 600; font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-light);
  margin-bottom: 20px;
}
.brands__line {
  width: 32px; height: 1px; background: var(--accent-light);
  margin: 0 auto 40px; opacity: 0.5;
}
.brands__marquee { position: relative; width: 100%; overflow: hidden; }
.brands__marquee::before,
.brands__marquee::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2;
  pointer-events: none;
}
.brands__marquee::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.brands__marquee::after { right: 0; background: linear-gradient(to left, var(--bg), transparent); }
.brands__track {
  display: flex; align-items: center; gap: 72px;
  width: max-content;
  animation: marquee 55s linear infinite;
}
.brands__track:hover { animation-play-state: paused; }
.brands__logo {
  height: 52px; width: auto; min-width: 60px; max-width: 220px; object-fit: contain;
  filter: grayscale(100%); opacity: 0.5;
  transition: opacity 0.3s var(--ease), filter 0.3s var(--ease);
}
.brands__logo:hover { filter: grayscale(0%); opacity: 1; }

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* ============================================
   FEATURED TREATMENTS (3-card hero grid)
   ============================================ */
.featured { padding: 100px 0; background: var(--bg); }
.featured__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.featured__card { display: block; text-decoration: none; color: inherit; }
.featured__image-wrap {
  overflow: hidden; margin-bottom: 20px;
}
.featured__image-wrap img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.featured__card:hover .featured__image-wrap img { transform: scale(1.04); }
.featured__title {
  font-family: var(--font-sans); font-weight: 600; font-size: 13px;
  letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 6px;
}
.featured__desc { font-size: 13px; color: var(--text-light); margin-bottom: 12px; }
.featured__link {
  font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); transition: letter-spacing 0.3s var(--ease);
}
.featured__card:hover .featured__link { letter-spacing: 0.14em; }


/* ============================================
   ABOUT — Split layout
   ============================================ */
.about { padding: 0; background: var(--bg-alt); }
.about__split { display: grid; grid-template-columns: 1fr 1fr; min-height: 600px; }
.about__image { overflow: hidden; }
.about__image img { width: 100%; height: 100%; object-fit: cover; }
.about__content {
  padding: 80px 64px; display: flex; flex-direction: column; justify-content: center;
}
.about__title {
  font-family: var(--font-serif); font-weight: 400; font-size: clamp(28px, 3vw, 38px);
  line-height: 1.25; color: var(--black); margin-bottom: 24px;
}
.about__content p { font-size: 14px; color: var(--text-light); margin-bottom: 16px; line-height: 1.8; }
.about__stats {
  display: flex; gap: 40px; margin-top: 32px; padding-top: 24px;
  border-top: 1px solid var(--border);
}
.about__stat { display: flex; flex-direction: column; gap: 4px; }
.about__stat-num {
  font-family: var(--font-serif); font-weight: 400; font-size: 28px;
  color: var(--black); letter-spacing: 0.02em;
}
.about__stat-label { font-size: 10px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-light); }


/* ============================================
   ALL TREATMENTS GRID
   ============================================ */
.treatments { padding: 100px 0; background: var(--bg); }
.treatments__header { text-align: center; margin-bottom: 60px; }
.treatments__sub { font-size: 14px; color: var(--text-light); max-width: 440px; margin: -32px auto 0; }

.treatments__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }

.treatment-card {
  display: block; text-decoration: none; color: inherit;
  transition: transform 0.3s var(--ease);
}
.treatment-card:hover { transform: translateY(-4px); }

.treatment-card__img { overflow: hidden; margin-bottom: 14px; }
.treatment-card__img img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.treatment-card:hover .treatment-card__img img { transform: scale(1.05); }

.treatment-card__info h3 {
  font-weight: 600; font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 4px;
}
.treatment-card__info p { font-size: 12px; color: var(--text-light); margin-bottom: 6px; }
.treatment-card__meta {
  font-size: 11px; color: var(--accent); font-weight: 500; letter-spacing: 0.02em;
}


/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials { padding: 100px 0; background: var(--bg-alt); }
.testimonials__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px;
}
.testimonial { padding: 40px; background: var(--white); }
.testimonial__text {
  font-family: var(--font-serif); font-weight: 300; font-style: italic;
  font-size: 16px; line-height: 1.8; color: var(--text); margin-bottom: 20px;
}
.testimonial__name {
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-light);
}


/* ============================================
   INSTAGRAM
   ============================================ */
.instagram { padding: 80px 0 0; background: var(--bg); text-align: center; }
.instagram__label {
  font-weight: 600; font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--text-light); margin-bottom: 8px;
}
.instagram__handle {
  font-family: var(--font-serif); font-weight: 300; font-size: clamp(24px, 3vw, 36px);
  color: var(--black); display: inline-block; margin-bottom: 40px;
  transition: color 0.3s;
}
.instagram__handle:hover { color: var(--accent); }
.instagram__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 3px; }
.instagram__item { overflow: hidden; aspect-ratio: 1; }
.instagram__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.instagram__item:hover img { transform: scale(1.06); }


/* ============================================
   CTA BANNER
   ============================================ */
.cta { padding: 100px 0; background: var(--bg-alt); text-align: center; }
.cta__title {
  font-family: var(--font-serif); font-weight: 300;
  font-size: clamp(28px, 4vw, 44px); color: var(--black);
  margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.04em;
}
.cta__text { font-size: 14px; color: var(--text-light); margin-bottom: 36px; }


/* ============================================
   CONTACT
   ============================================ */
.contact { background: var(--black); }
.contact__inner { display: grid; grid-template-columns: 1fr 1fr; min-height: 600px; }
.contact__image { position: relative; overflow: hidden; }
.contact__image img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; }
.contact__content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 72px; color: var(--white);
}
.contact__content .label { color: var(--accent-light); margin-bottom: 20px; }
.contact__heading {
  font-family: var(--font-serif); font-weight: 300; font-size: clamp(36px, 4vw, 52px);
  letter-spacing: 0.02em; line-height: 1.15; color: var(--white); margin-bottom: 48px;
}
.contact__heading em { font-style: italic; font-weight: 300; }
.contact__details { margin-bottom: 40px; }
.contact__row { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 28px; }
.contact__item strong {
  font-family: var(--font-sans); font-weight: 600; font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.45); display: block; margin-bottom: 8px;
}
.contact__item p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.85); }
.contact__item a { color: rgba(255,255,255,0.85); transition: color 0.2s; }
.contact__item a:hover { color: var(--white); }
.contact .btn--primary { background: var(--white); color: var(--black); align-self: flex-start; }
.contact .btn--primary:hover { background: rgba(255,255,255,0.85); }


/* ============================================
   TEAM
   ============================================ */
.team { padding: 120px 0; background: var(--bg); }
.team__header { text-align: center; max-width: 560px; margin: 0 auto 64px; }
.team__title {
  font-family: var(--font-serif); font-weight: 300; font-size: clamp(32px, 4vw, 48px);
  letter-spacing: 0.02em; line-height: 1.2; color: var(--black); margin-bottom: 20px;
}
.team__title em { font-style: italic; }
.team__sub {
  font-size: 14px; line-height: 1.8; color: var(--text-light); max-width: 480px; margin: 0 auto;
}
.team__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
}
.team__card { text-align: center; }
.team__photo {
  width: min(180px, 100%); height: auto; aspect-ratio: 1; margin: 0 auto 28px; border-radius: 50%; overflow: hidden;
  background: var(--bg-alt);
}
.team__placeholder { display: block; width: 100%; height: 100%; }
.team__photo img {
  width: 100%; height: 100%; object-fit: cover;
}
.team__name {
  font-family: var(--font-serif); font-weight: 400; font-size: 22px;
  letter-spacing: 0.02em; color: var(--black); margin-bottom: 6px;
}
.team__role {
  font-family: var(--font-sans); font-weight: 600; font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 16px;
}
.team__bio {
  font-size: 13px; line-height: 1.75; color: var(--text-light);
  max-width: 300px; margin: 0 auto;
}


/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--bg-alt); padding: 64px 0 32px; border-top: 1px solid var(--border); }
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid var(--border);
}
.footer__logo { display: block; margin-bottom: 12px; }
.footer__logo-img { height: 36px; width: auto; }
.footer__tagline { font-size: 13px; color: var(--text-light); line-height: 1.6; }
.footer__col h4 {
  font-weight: 600; font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-light); margin-bottom: 14px;
}
.footer__col a {
  display: block; font-size: 13px; color: var(--text); padding: 3px 0;
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--accent); }
.footer__bottom { padding-top: 24px; }
.footer__bottom p { font-size: 11px; color: var(--text-light); }


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .nav__menu, .nav__right { display: none; }
  .nav__hamburger { display: flex; }
  .featured__grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .treatments__grid { grid-template-columns: repeat(3, 1fr); }
  .about__content { padding: 60px 40px; }
}

@media (max-width: 768px) {
  .nav__logo-img { height: 36px; }
  .featured__grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .treatments__grid { grid-template-columns: repeat(2, 1fr); }
  .about__split { grid-template-columns: 1fr; }
  .team__grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .about__image { max-height: 400px; }
  .about__content { padding: 48px var(--gutter); }
  .testimonials__grid { grid-template-columns: 1fr; }
  .contact__inner { grid-template-columns: 1fr; }
  .contact__image { min-height: 300px; }
  .contact__content { padding: 48px 24px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .instagram__grid { grid-template-columns: repeat(3, 1fr); }
  .hero__ctas { flex-direction: column; align-items: center; }
  .brands__marquee::before,
  .brands__marquee::after { display: none; }
  .brands__track {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 32px 40px;
    animation: none; width: auto; padding: 0 var(--gutter);
  }
  .brands__track .brands__logo:nth-child(n+19) { display: none; }
  .brands__logo { height: 36px; }
}

@media (max-width: 480px) {
  .treatments__grid { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }
  .team__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer__grid { grid-template-columns: 1fr; }
  .about__stats { flex-direction: column; gap: 16px; }
}
