/* ============================================================
   A.I. SKIN REVOLUTION — Design Enhancements v3
   Premium animations, new sections, refined typography
   ============================================================ */

/* ── HEADING REVEAL ANIMATIONS ──────────────────────────────── */
.heading-reveal {
  overflow: hidden;
  display: block;
}
.heading-reveal span {
  display: block;
  opacity: 0;
  transform: translateY(110%);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.heading-reveal.revealed span {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger heading lines */
.heading-reveal:nth-child(2) span { transition-delay: 0.12s; }
.heading-reveal:nth-child(3) span { transition-delay: 0.22s; }

/* ── SPLIT TEXT CHAR ANIMATION ───────────────────────────────── */
.char-reveal .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px) rotate(3deg);
  transition: opacity 0.5s ease, transform 0.5s var(--spring);
}
.char-reveal.revealed .char { opacity: 1; transform: translateY(0) rotate(0deg); }
.char-reveal.revealed .char:nth-child(1) { transition-delay: .00s; }
.char-reveal.revealed .char:nth-child(2) { transition-delay: .04s; }
.char-reveal.revealed .char:nth-child(3) { transition-delay: .08s; }
.char-reveal.revealed .char:nth-child(4) { transition-delay: .12s; }
.char-reveal.revealed .char:nth-child(5) { transition-delay: .16s; }
.char-reveal.revealed .char:nth-child(6) { transition-delay: .20s; }
.char-reveal.revealed .char:nth-child(7) { transition-delay: .24s; }
.char-reveal.revealed .char:nth-child(8) { transition-delay: .28s; }
.char-reveal.revealed .char:nth-child(9) { transition-delay: .32s; }
.char-reveal.revealed .char:nth-child(10){ transition-delay: .36s; }

/* ── PARALLAX STRIP ──────────────────────────────────────────── */
.parallax-strip {
  background: linear-gradient(135deg, var(--mocha) 0%, #5A2E18 60%, var(--salmon-dark) 100%);
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}
.parallax-strip::before {
  content: '';
  position: absolute;
  inset: -60px;
  background: url('../images/hero-1.svg') center/cover no-repeat;
  opacity: 0.06;
  will-change: transform;
}
.parallax-text {
  position: relative;
  z-index: 1;
  font-family: var(--fd);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  color: var(--white);
  text-align: center;
  line-height: 1.1;
  font-weight: 300;
}
.parallax-text em { color: var(--blush); font-style: italic; }

/* ── PROCESS SECTION ─────────────────────────────────────────── */
.process-section { background: var(--cream); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 72px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), #F69281, var(--border), transparent);
  z-index: 0;
}
.process-step {
  text-align: center;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}
.process-num {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
  font-family: var(--fd);
  font-size: 1.6rem;
  color: var(--mocha);
  transition: var(--t);
  box-shadow: var(--shadow-sm);
}
.process-step:hover .process-num {
  background: var(--salmon);
  border-color: var(--salmon);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(191,124,46,.35);
}
.process-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--salmon), var(--salmon-dark));
  display: flex; align-items: center; justify-content: center;
  margin: -20px auto 24px;
  color: var(--white);
  font-size: .9rem;
  box-shadow: 0 6px 20px rgba(191,124,46,.35);
}
.process-title {
  font-size: 1.05rem;
  color: var(--mocha);
  margin-bottom: 12px;
}
.process-desc { font-size: .85rem; color: var(--muted); line-height: 1.7; }

/* ── SKIN TYPES SECTION ──────────────────────────────────────── */
.skin-types-section {
  background: var(--cream-2);
  overflow: hidden;
}
.skin-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 72px;
}
.skin-type-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: var(--t);
}
.skin-type-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.skin-type-bg {
  position: absolute; inset: 0;
  transition: transform .7s var(--ease);
}
.skin-type-card:hover .skin-type-bg { transform: scale(1.06); }
.skin-type-bg img { width: 100%; height: 100%; object-fit: cover; }
.skin-type-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,15,10,.92) 0%, rgba(61,43,31,.4) 50%, transparent 100%);
}
.skin-type-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 36px 32px;
  transform: translateY(12px);
  transition: transform .5s var(--ease);
}
.skin-type-card:hover .skin-type-content { transform: translateY(0); }
.skin-type-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(191,124,46,.2);
  border: 1px solid rgba(191,124,46,.4);
  display: flex; align-items: center; justify-content: center;
  color: var(--blush);
  font-size: 1.1rem;
  margin-bottom: 16px;
  backdrop-filter: blur(10px);
}
.skin-type-title {
  font-family: var(--fd);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 8px;
}
.skin-type-desc {
  font-size: .84rem;
  color: rgba(255,255,255,.65);
  line-height: 1.65;
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease);
}
.skin-type-card:hover .skin-type-desc { max-height: 120px; }
.skin-type-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blush);
  margin-top: 16px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s ease .1s, transform .4s var(--ease) .1s;
}
.skin-type-card:hover .skin-type-link { opacity: 1; transform: translateY(0); }
.skin-type-link i { font-size: .7rem; transition: transform var(--tf); }
.skin-type-link:hover i { transform: translateX(4px); }

/* ── GALLERY STRIP ───────────────────────────────────────────── */
.gallery-strip {
  display: flex;
  gap: 0;
  overflow: hidden;
  height: 420px;
}
.gallery-strip-item {
  flex: 1;
  overflow: hidden;
  position: relative;
  transition: flex .6s var(--ease);
  cursor: pointer;
}
.gallery-strip-item:hover { flex: 2; }
.gallery-strip-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.gallery-strip-item:hover img { transform: scale(1.06); }
.gallery-strip-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,15,10,.7) 0%, transparent 60%);
  display: flex; align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity .4s ease;
}
.gallery-strip-item:hover .gallery-strip-overlay { opacity: 1; }
.gallery-strip-label {
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
}

/* ── ENHANCED WHY SECTION ────────────────────────────────────── */
.why-section { background: var(--cream-2); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 72px;
}
.why-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 44px 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-soft);
  transition: var(--t);
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--salmon), #F69281);
  transform: scaleX(0);
  transition: transform .4s var(--ease);
  transform-origin: left;
}
.why-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.why-card:hover::after { transform: scaleX(1); }
.why-icon {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cream), var(--cream-2));
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.6rem;
  color: var(--salmon);
  transition: var(--t);
}
.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--salmon), var(--salmon-dark));
  border-color: transparent;
  color: var(--white);
  transform: rotate(10deg) scale(1.1);
}
.why-title { font-size: 1.1rem; color: var(--mocha); margin-bottom: 12px; }
.why-desc { font-size: .86rem; color: var(--muted); line-height: 1.7; }

/* ── MARQUEE ─────────────────────────────────────────────────── */
.marquee-wrap {
  background: var(--salmon);
  padding: 18px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 32px;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 500;
  white-space: nowrap;
  border-right: 1px solid rgba(255,255,255,.2);
}
.marquee-item i { font-size: .45rem; opacity: .7; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── BA SECTION ──────────────────────────────────────────────── */
.ba-section {
  background: var(--mocha);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.ba-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(191,124,46,.12) 0%, transparent 65%);
  border-radius: 50%;
}
.ba-header { text-align: center; margin-bottom: 80px; }
.ba-header .section-sub { color: rgba(255,255,255,.5); }
.ba-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.ba-slider-outer {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 48px 120px rgba(0,0,0,.5);
  aspect-ratio: 3/4;
  max-height: 580px;
  cursor: col-resize;
  user-select: none;
}
.ba-before, .ba-after { position: absolute; inset: 0; }
.ba-before img, .ba-after img { width: 100%; height: 100%; object-fit: cover; }
.ba-before { z-index: 1; }
.ba-after { z-index: 2; clip-path: inset(0 50% 0 0); }
.ba-line {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--white);
  z-index: 10;
  transform: translateX(-50%);
  pointer-events: none;
}
.ba-handle {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 28px rgba(0,0,0,.35);
  color: var(--mocha);
  font-size: 1rem;
  pointer-events: all;
  cursor: col-resize;
}
.ba-lbl {
  position: absolute;
  bottom: 20px;
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(0,0,0,.45);
  padding: 6px 16px;
  border-radius: 60px;
  backdrop-filter: blur(10px);
  z-index: 5;
}
.ba-lbl.before { left: 20px; }
.ba-lbl.after { right: 20px; }
.ba-info-title {
  font-family: var(--fd);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}
.ba-info-title em { color: var(--blush); font-style: italic; }
.ba-info-body > p { color: rgba(255,255,255,.62); margin-bottom: 36px; font-size: .95rem; line-height: 1.85; }
.ba-results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}
.ba-result {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  padding: 22px 20px;
  backdrop-filter: blur(10px);
  transition: var(--t);
}
.ba-result:hover { background: rgba(191,124,46,.12); border-color: rgba(191,124,46,.3); }
.ba-result-num {
  font-family: var(--fd);
  font-size: 2.2rem;
  color: var(--blush);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.ba-result-lbl { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.42); }

/* ── PROMO SECTION ───────────────────────────────────────────── */
.promo-section {
  display: none;
  background: linear-gradient(135deg, var(--salmon-dark) 0%, var(--salmon) 50%, #E07060 100%);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.promo-pattern {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,.03) 0px, rgba(255,255,255,.03) 1px,
    transparent 1px, transparent 40px
  );
}
.promo-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.promo-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.3);
  color: var(--white);
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 8px 22px;
  border-radius: 60px;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}
.promo-eyebrow i { font-size: .7rem; }
.promo-big-price {
  font-family: var(--fd);
  font-size: clamp(5rem, 10vw, 9rem);
  color: var(--white);
  line-height: .9;
  font-weight: 600;
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
}
.promo-big-price sup { font-size: 2.5rem; margin-top: 18px; margin-right: 4px; font-weight: 400; }
.promo-headline {
  font-family: var(--fh);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: rgba(255,255,255,.9);
  font-weight: 400;
  margin-bottom: 10px;
}
.promo-note { font-size: .88rem; color: rgba(255,255,255,.65); margin-bottom: 36px; }
.promo-disclaimer {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  margin-top: 20px;
}
.promo-disclaimer i { font-size: .75rem; }
.promo-card {
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--r-lg);
  padding: 40px;
  backdrop-filter: blur(20px);
}
.promo-card-title {
  font-size: .7rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.promo-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.promo-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: .88rem;
  font-weight: 400;
}
.promo-item i { color: rgba(255,255,255,.7); font-size: .75rem; flex-shrink: 0; }

/* ── FEATURED TREATMENT ──────────────────────────────────────── */
.featured-section { background: var(--cream-2); }
.featured-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.featured-img-wrap { position: relative; }
.featured-img {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.featured-img img {
  width: 100%; height: 520px;
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.featured-img-wrap:hover .featured-img img { transform: scale(1.04); }
.featured-float-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 24px 32px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-soft);
}
.featured-float-num {
  font-family: var(--fd);
  font-size: 2.6rem;
  color: var(--salmon);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.featured-float-lbl {
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}
.featured-info h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); margin-bottom: 20px; }
.featured-info > p { color: var(--muted); margin-bottom: 18px; line-height: 1.85; }
.feat-tags { display: flex; gap: 8px; flex-wrap: wrap; margin: 28px 0; }
.tag-chip {
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--salmon);
  background: rgba(191,124,46,.1);
  padding: 6px 16px;
  border-radius: 60px;
  font-weight: 500;
}

/* ── ENHANCED TREATMENT CARDS ────────────────────────────────── */
.tc-title { font-size: 1.25rem; color: var(--mocha); margin-bottom: 10px; }
.tc-desc { font-size: .86rem; color: var(--muted); margin-bottom: 22px; line-height: 1.65; }
.tc-footer { display: flex; justify-content: space-between; align-items: center; }
.tc-price-orig { font-size: .8rem; text-decoration: line-through; color: var(--muted); display: block; }
.tc-price { font-family: var(--fd); font-size: 1.55rem; color: var(--mocha); line-height: 1; }
.tc-link {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--cream);
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--salmon);
  transition: var(--t);
  font-size: .9rem;
}
.tc-link:hover {
  background: var(--salmon);
  border-color: var(--salmon);
  color: var(--white);
  transform: rotate(45deg);
}

/* ── BRAND STRIP ─────────────────────────────────────────────── */
.brand-strip {
  background: linear-gradient(135deg, var(--white) 0%, var(--cream-2) 100%);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 56px 0;
}
.brand-strip-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  justify-content: center;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}
.brand-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  transition: var(--tf);
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp .6s ease-out forwards;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}
.brand-item:nth-child(1) { animation-delay: 0s; }
.brand-item:nth-child(2) { animation-delay: 0.1s; }
.brand-item:nth-child(3) { animation-delay: 0.2s; }
.brand-item:nth-child(4) { animation-delay: 0.3s; }
.brand-item:nth-child(5) { animation-delay: 0.4s; }
.brand-item:nth-child(6) { animation-delay: 0.5s; }
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.brand-item:hover {
  color: var(--white);
  background: linear-gradient(135deg, var(--salmon) 0%, #F69281 100%);
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(191, 124, 46, 0.2);
}
.brand-item i { font-size: 1.6rem; color: var(--salmon); }
.brand-item:hover i { color: var(--white); }

/* ── INSTAGRAM FEED STRIP ────────────────────────────────────── */
.instagram-section {
  background: var(--cream);
  padding: 80px 0;
}
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  margin-top: 48px;
}
.ig-item {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.ig-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.ig-item:hover img { transform: scale(1.08); }
.ig-overlay {
  position: absolute; inset: 0;
  background: rgba(191,124,46,.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity .3s ease;
}
.ig-item:hover .ig-overlay { opacity: 1; }
.ig-overlay i { color: var(--white); font-size: 1.4rem; }

/* ── RESPONSIVE ADDITIONS ────────────────────────────────────── */
@media (max-width: 1100px) {
  .process-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-grid::before { display: none; }
  .skin-types-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-strip { height: 300px; }
  .ba-wrapper { grid-template-columns: 1fr; gap: 56px; }
  .promo-inner { grid-template-columns: 1fr; gap: 44px; }
  .featured-inner { grid-template-columns: 1fr; gap: 56px; }
  .brand-strip-inner { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 24px; }
  .brand-item { padding: 16px; }
}
@media (max-width: 768px) {
  .process-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .skin-types-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-strip { display: none; }
  .parallax-text { font-size: clamp(2rem, 7vw, 3rem); }
  .ba-results { grid-template-columns: 1fr 1fr; }
  .promo-list { grid-template-columns: 1fr; }
  .brand-strip { padding: 40px 0; }
  .brand-strip-inner { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 16px; }
  .brand-item { padding: 14px; font-size: .65rem; }
  .brand-item i { font-size: 1.4rem; }
}
@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .brand-strip { padding: 32px 0; }
  .brand-strip-inner { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .brand-item { padding: 12px; font-size: .6rem; gap: 8px; }
  .brand-item i { font-size: 1.3rem; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ══════════════════════════════════════════════════════════
   HERO — per-slide content layout
   ══════════════════════════════════════════════════════════ */

/* Each slide now contains its own content */
.hero-slide-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
}
.hero-slide-content .container { width: 100%; }

/* Slide tag strip (slides 2, 3, 4 instead of proof) */
.hero-slide-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .9s ease 1.25s, transform .9s var(--ease) 1.25s;
}
.hero-slide.active .hero-slide-tags { opacity: 1; transform: translateY(0); }

.hero-slide-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.82);
  font-size: .72rem;
  letter-spacing: .06em;
  padding: 7px 14px;
  border-radius: 60px;
  backdrop-filter: blur(10px);
  font-family: var(--fb);
}
.hero-slide-tag i { color: var(--blush); font-size: .65rem; }

/* ══════════════════════════════════════════════════════════
   BLOG CARDS — premium redesign
   ══════════════════════════════════════════════════════════ */

/* Override base blog card for a richer look */
.blog-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: var(--t);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }

/* Image wrapper */
.bc-img {
  display: block;
  height: 230px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.bc-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
  display: block;
}
.blog-card:hover .bc-img img { transform: scale(1.06); }

/* Category pill: rendered as separate element in PHP, not via pseudo-element */
.bc-img { text-decoration: none; }

/* Card body */
.bc-body {
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Meta row */
.bc-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.bc-cat {
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--salmon);
  font-weight: 700;
  font-family: var(--fb);
}
.bc-sep {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
}
.bc-date {
  font-size: .76rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 5px;
}
.bc-date i { font-size: .65rem; color: var(--salmon); }

/* Title */
.bc-title {
  font-size: 1.1rem;
  color: var(--mocha);
  margin-bottom: 12px;
  line-height: 1.42;
  font-family: var(--fh);
  font-weight: 400;
}
.bc-title a { color: inherit; transition: color var(--tf); }
.bc-title a:hover { color: var(--salmon); }

/* Excerpt */
.bc-excerpt {
  font-size: .86rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 22px;
  flex: 1;
}

/* Footer row with read-more and read-time */
.bc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--border-soft);
  margin-top: auto;
}
.bc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .74rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--salmon);
  font-weight: 700;
  transition: gap var(--tf), color var(--tf);
  font-family: var(--fb);
}
.bc-link:hover { gap: 14px; color: var(--salmon-dark); }
.bc-link i { font-size: .7rem; }
.bc-read-time {
  font-size: .74rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 5px;
}
.bc-read-time i { font-size: .65rem; color: #E07060 !important; }

/* Homepage blog grid - featured first card larger */
.blog-grid-home {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
  margin-top: 72px;
}
.blog-grid-home .blog-card:first-child .bc-img { height: 300px; }
.blog-grid-home .blog-card:first-child .bc-title { font-size: 1.3rem; }

/* Blog page grid (2 col in main area) */
.blog-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* Responsive */
@media(max-width:1100px) {
  .blog-grid-home { grid-template-columns: 1fr 1fr; }
  .blog-grid-home .blog-card:first-child .bc-img { height: 240px; }
}
@media(max-width:768px) {
  .blog-grid-home { grid-template-columns: 1fr; }
  .blog-main-grid { grid-template-columns: 1fr; }
  .hero-slide-tags { gap: 8px; }
}

/* ── BLOG CARD: category pill overlaid on image ── */
.bc-img {
  position: relative;
}
.bc-cat-pill {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-size: .62rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--white);
  background: var(--salmon);
  padding: 5px 14px;
  border-radius: 60px;
  font-family: var(--fb);
  pointer-events: none;
  line-height: 1;
}

/* ── BRAND COLOR OVERRIDES ───────────────────────────────────── */
/* Ensure all brand elements use the new palette */
.btn-primary,
.marquee-wrap,
.bc-cat-pill { background:#F69281 !important; }

.label,
.bc-cat,
.bc-link,
.tc-link,
.tag-chip { color:#F69281 !important; }

.tag-chip { background:rgba(246,146,129,.1) !important; }

/* Parallax strip brand update */
.parallax-strip {
  background: linear-gradient(135deg, var(--mocha) 0%, #4A2E20 60%, #E07060 100%);
}
.parallax-text em { color: var(--blush); }

/* Process steps */
.process-step:hover .process-num {
  background: #F69281 !important;
  border-color: #F69281 !important;
}
.process-icon {
  background: #F69281;
}

/* Why cards */
.why-card:hover .why-icon {
  background: #F69281;
}
.why-icon { color: #F69281 !important; }
.why-card::after {
  background: linear-gradient(90deg, var(--salmon), #F69281);
}

/* BA section */
.ba-result-num { color: var(--blush); }

/* Promo section */
.promo-section {
  background: linear-gradient(135deg, #E07060 0%, #F69281 50%, var(--salmon-dark) 100%);
}

/* Featured float card */
.featured-float-num { color: #F69281 !important; }

/* Blog */
.bc-link { color: #F69281 !important; }
.bc-link:hover { color: #E07060 !important; }
.bc-date i { color: #F69281 !important; }

/* Instagram overlay */
.ig-overlay { background: rgba(191,124,46,.7); }

/* Skin type link */
.skin-type-link { color: var(--blush); }

/* Gallery strip overlay */
.gallery-strip-overlay { background: linear-gradient(to top, rgba(42,31,26,.7) 0%, transparent 60%); }

/* Testimonials responsive */
@media (max-width: 768px) {
  .testimonials-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .testimonials-grid::-webkit-scrollbar { display: none; }
  .testi-card {
    min-width: 85vw;
    scroll-snap-align: start;
    flex-shrink: 0;
  }
}

/* ── HERO ARROW BUTTONS (in HTML) ────────────────────────────── */
.hero-arrows {
  position: absolute;
  bottom: 44px;
  left: 72px;
  z-index: 4;
  display: flex;
  gap: 12px;
}
.hero-arrow {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.08);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; cursor: pointer;
  transition: all .25s ease;
  backdrop-filter: blur(8px);
}
.hero-arrow:hover { background: #F69281 !important; border-color: #F69281 !important; }

@media (max-width: 768px) {
  .hero-arrows { left: 20px; bottom: 28px; }
  .hero-arrow { width: 40px; height: 40px; font-size: .8rem; }
}

/* ── MOBILE OVERFLOW FIX ─────────────────────────────────────── */
html, body { overflow-x: hidden; max-width: 100%; }
.hero, section, footer, header { max-width: 100vw; overflow-x: hidden; }

/* ── HERO PROOF / TRUST ELEMENTS ─────────────────────────────── */
.hero-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .9s ease 1.1s, transform .9s var(--ease) 1.1s;
}
.hero-slide.active .hero-proof { opacity: 1; transform: translateY(0); }
.hero-avatars { display: flex; }
.hero-av {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.4);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fd); font-size: .95rem; color: var(--white);
  margin-left: -10px;
}
.hero-avatars .hero-av:first-child { margin-left: 0; }
.hero-av-plus { background: rgba(255,255,255,.12); font-size: .72rem; }
.hero-proof-meta { margin-left: 8px; }
.hero-stars { display: flex; gap: 2px; margin-bottom: 3px; }
.hero-stars i { color: #F69281 !important; font-size: .75rem; }
.hero-proof-text { font-size: .78rem; color: rgba(255,255,255,.65); }
.hero-proof-text strong { color: var(--white); }

/* ── HERO STAT COL ────────────────────────────────────────────── */
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-stat-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-stat-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 24px 28px;
  backdrop-filter: blur(12px);
  transition: var(--t);
}
.hero-stat-card:hover { background: rgba(191,124,46,.12); border-color: rgba(191,124,46,.3); }
.hero-stat-icon { font-size: 1.3rem; color: #F69281 !important; margin-bottom: 10px; }
.hero-stat-num {
  font-family: var(--fd);
  font-size: 2.2rem; color: var(--white);
  display: block; line-height: 1; margin-bottom: 4px;
}
.hero-stat-lbl { font-size: .76rem; color: rgba(255,255,255,.55); line-height: 1.4; }
.hero-stat-sub { font-size: .7rem; color: rgba(255,255,255,.35); margin-top: 2px; }

@media (max-width: 1100px) {
  .hero-layout { grid-template-columns: 1fr; padding-top: 80px; }
  .hero-stat-col, .hero-counter { display: none; }
}

/* ── COUNTER ─────────────────────────────────────────────────── */
.hero-counter {
  position: absolute;
  bottom: 44px; right: 72px;
  z-index: 4;
  font-family: var(--fd); font-size: 1rem;
  color: rgba(255,255,255,.4);
  display: flex; gap: 4px; align-items: center;
}
.hero-counter #heroCountCur { color: var(--blush); font-size: 1.3rem; }
.hero-counter-sep { font-size: .7rem; margin: 0 4px; }

@media (max-width: 1100px) { .hero-counter { display: none; } }

/* ── CONTACT PAGE SOCIAL ICONS — always visible ──────────────── */
.contact-socials .social-btn,
.contact-info-box .social-btn {
  color: #F69281 !important;
  border-color: rgba(246,146,129,.5) !important;
  background: rgba(246,146,129,.08) !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.contact-socials .social-btn:hover,
.contact-info-box .social-btn:hover {
  background: var(--gold) !important;
  color: var(--white) !important;
  border-color: var(--gold) !important;
}

/* ── MOBILE BUTTON SIZES ─────────────────────────────────────── */
@media (max-width: 768px) {
  .btn { padding: 13px 26px; font-size: .76rem; }
  .mobile-nav-cta { padding: 14px 24px !important; font-size: .8rem !important; }
  section { padding: 64px 0; }
}

/* ── FOOTER COPYRIGHT MOBILE ─────────────────────────────────── */
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 10px !important;
  }
  .footer-bottom-links { justify-content: center !important; gap: 16px !important; }
}

/* ══════════════════════════════════════════════════════════
   MISSING COMPONENTS — Complete fix for all pages
   ══════════════════════════════════════════════════════════ */

/* ── PAGE HERO (About / Treatments / Blog / Contact) ─────── */
.page-hero {
  background: var(--cream-2);
  padding: 160px 0 80px;
  border-bottom: 1px solid var(--border-soft);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(191,124,46,.07) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
}
.page-title {
  font-family: var(--fd);
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  color: var(--mocha);
  line-height: 1.1;
  margin-bottom: 16px;
  font-weight: 300;
}
.page-title .italic { color: var(--salmon); }

/* ── BREADCRUMB ──────────────────────────────────────────── */
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .75rem;
  letter-spacing: .08em;
  color: var(--muted);
  margin-top: 20px;
  font-family: var(--fb);
  font-weight: 500;
}
.breadcrumb a {
  color: var(--gold);
  transition: color var(--tf);
}
.breadcrumb a:hover { color: var(--salmon); }
.breadcrumb i {
  font-size: .55rem;
  color: var(--border);
}
.breadcrumb span {
  color: var(--mocha);
}

/* ── STATS BAR ───────────────────────────────────────────── */
.stats-bar {
  background: linear-gradient(135deg, rgba(191, 124, 46, 0.08) 0%, rgba(191, 124, 46, 0.04) 100%), var(--white);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 16px 0;
}
.stats-bar .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.stats-bar .stat-item {
  text-align: center;
  padding: 24px 20px;
  border-right: none;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stats-bar .stat-item:hover {
  transform: translateY(-8px);
}
.stats-bar .stat-item:last-child { border-right: none; }
.stat-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F69281, rgba(246, 146, 129, 0.7));
  border: 2px solid #F69281;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  color: var(--white);
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(191, 124, 46, 0.2);
}
.stats-bar .stat-item:hover .stat-icon {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 12px 32px rgba(191, 124, 46, 0.35);
}
.stat-number {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark);
  font-weight: 600;
}

@media(max-width:1100px) {
  .stats-bar .stats-grid { 
    grid-template-columns: repeat(2, 1fr); 
    gap: 24px;
  }
  .stat-icon {
    width: 56px; height: 56px;
    font-size: 1.3rem;
  }
  .stat-number {
    font-size: 2.4rem;
  }
}
@media(max-width:768px) {
  .stats-bar .stats-grid {
    gap: 20px;
    padding: 0 30px;
  }
  .stats-bar .stat-item {
    padding: 20px 16px;
  }
}
@media(max-width:480px) {
  .stats-bar .stats-grid { 
    grid-template-columns: 1fr 1fr; 
    gap: 16px;
    padding: 0 20px;
  }
  .stat-icon {
    width: 48px; height: 48px;
    margin: 0 auto 12px;
    font-size: 1.1rem;
  }
  .stat-number {
    font-size: 2rem;
  }
  .stat-label {
    font-size: 0.75rem;
  }
}

/* ── CTA SECTION ─────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--mocha) 0%, #3D2420 50%, var(--gold-dark) 100%);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,.02) 0px, rgba(255,255,255,.02) 1px,
    transparent 1px, transparent 44px
  );
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
}
.cta-title {
  font-family: var(--fd);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  color: var(--white);
  font-weight: 300;
  margin-bottom: 18px;
  line-height: 1.15;
}
.cta-title em { font-style: italic; color: var(--blush); }
.cta-sub {
  color: rgba(255,255,255,.65);
  max-width: 500px;
  margin: 0 auto 44px;
  font-size: .96rem;
  line-height: 1.85;
}
.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── TESTIMONIALS GRID (Google Reviews on Homepage) ──────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.testi-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-soft);
  transition: var(--t);
  position: relative;
}
.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.testi-card::before {
  content: '\201C';
  position: absolute;
  top: 20px; right: 24px;
  font-family: var(--fd);
  font-size: 4rem;
  color: var(--border-soft);
  line-height: 1;
}
.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.testi-stars i { color: #F69281 !important; font-size: .85rem; }
.testi-text {
  font-size: .9rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.testi-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--border-soft);
}
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #F69281;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fd);
  font-size: 1.1rem;
  font-weight: 600;
  flex-shrink: 0;
}
.testi-name {
  font-size: .88rem;
  font-weight: 700;
  color: var(--mocha);
  margin-bottom: 2px;
}
.testi-date {
  font-size: .74rem;
  color: var(--muted);
}
.testi-source {
  margin-left: auto;
  font-size: .72rem;
  color: var(--muted);
}

/* ══════════════════════════════════════════════════════════
   FOOTER — CTA, INSTAGRAM, CONTENT SECTIONS
   ══════════════════════════════════════════════════════════ */

/* Footer CTA Section - Light background */
.footer-cta {
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-2) 100%);
  padding: 80px 0;
  border-bottom: 1px solid rgba(191, 124, 46, .12);
}
.footer-cta .cta-inner {
  text-align: center;
}
.footer-cta .label {
  justify-content: center;
  color: var(--gold);
}
.footer-cta .cta-title {
  color: var(--mocha);
  margin-bottom: 18px;
}
.footer-cta .cta-title em {
  color: var(--salmon);
  font-style: italic;
}
.footer-cta .cta-sub {
  color: var(--text);
  max-width: 640px;
  margin: 0 auto 44px;
}
.footer-cta .cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
.footer-cta .btn-ghost {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  transition: var(--t);
}
.footer-cta .btn-ghost:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

/* Footer Instagram Section - White background */
.footer-instagram {
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.footer-instagram::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(239, 216, 208, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.footer-instagram::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -150px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(191, 124, 46, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.footer-instagram .section-header {
  margin-bottom: 72px;
  position: relative;
  z-index: 1;
}
.footer-instagram .label {
  justify-content: center;
  color: var(--gold);
}
.footer-instagram .section-title {
  color: var(--mocha);
  font-size: clamp(2rem, 4vw, 2.8rem);
}
.footer-instagram .section-sub {
  color: var(--text);
  font-size: 1rem;
}
.footer-instagram .section-sub a {
  color: var(--gold);
  font-weight: 600;
  transition: var(--tf);
}
.footer-instagram .section-sub a:hover {
  color: var(--salmon);
}

/* Footer Instagram Simple - Follow Button */
.footer-instagram-simple {
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
  border-top: 1px solid rgba(191, 124, 46, .12);
  position: relative;
  overflow: hidden;
}
.footer-instagram-simple::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(239, 216, 208, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.footer-instagram-simple .btn {
  position: relative;
  z-index: 2;
}

/* Footer Content - Dark background */
.footer-content {
  background: var(--mocha);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 0;
}

/* Responsive */
@media (max-width: 1100px) {
  .footer-cta,
  .footer-instagram-simple {
    padding: 70px 0;
  }
}

@media (max-width: 768px) {
  .footer-cta {
    padding: 50px 24px;
  }
  .footer-instagram-simple {
    padding: 60px 24px;
  }
  .footer-cta .cta-title {
    font-size: 1.8rem;
  }
  .footer-cta .cta-btns {
    flex-direction: column;
    align-items: stretch;
  }
  .footer-cta .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .footer-cta {
    padding: 40px 20px;
  }
  .footer-instagram-simple {
    padding: 45px 20px;
  }
  .footer-cta .cta-title {
    font-size: 1.4rem;
  }
  .footer-cta .cta-sub {
    font-size: .9rem;
  }
}
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}
.testi-source i { color: #4285F4; }

/* Scrolling testimonials track (Client Stories section) */
.testi-track-wrap {
  overflow: hidden;
  padding: 24px 0 40px;
}
.testi-track {
  display: flex;
  gap: 24px;
  animation: testiScroll 32s linear infinite;
  width: max-content;
}
.testi-track:hover { animation-play-state: paused; }
.testi-track .testi-card {
  width: 340px;
  flex-shrink: 0;
}
.testi-track .testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--border-soft);
}
.testi-track .testi-treatment {
  font-size: .74rem;
  color: var(--muted);
}
@keyframes testiScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── SOCIAL BUTTONS ──────────────────────────────────────── */
.social-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: .9rem;
  transition: var(--t);
  flex-shrink: 0;
}
.social-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(191,124,46,.35);
}

/* ── FORMS (Shared across Popup + Contact) ───────────────── */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group:last-child { margin-bottom: 0; }
.form-label {
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mocha);
  font-weight: 700;
  font-family: var(--fb);
}
.req { color: var(--salmon); }
.form-ctrl {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-family: var(--fb);
  font-size: .88rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color var(--tf), box-shadow var(--tf);
  appearance: none;
  -webkit-appearance: none;
}
.form-ctrl:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(191,124,46,.12);
}
.form-ctrl::placeholder { color: var(--gray-light); }
textarea.form-ctrl {
  min-height: 110px;
  resize: vertical;
  line-height: 1.7;
}
select.form-ctrl {
  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='%23BF7C2E' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
  cursor: pointer;
}
@media(max-width:768px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ── HOMEPAGE FILTER TABS ────────────────────────────────── */
.filter-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 44px;
}
.tab-btn {
  padding: 11px 26px;
  border-radius: 60px;
  font-family: var(--fb);
  font-size: .73rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1.5px solid var(--border);
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  transition: var(--tf);
}
.tab-btn.active,
.tab-btn:hover {
  background: #F69281 !important;
  color: var(--white);
  border-color: #F69281 !important;
  box-shadow: 0 6px 20px rgba(246,146,129,.3);
}

/* ── CONTACT PAGE ────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-soft);
  margin-bottom: 16px;
  transition: var(--t);
}
.contact-info-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow);
  border-color: var(--border);
}
.ci-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(191,124,46,.12), rgba(191,124,46,.08));
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
  transition: var(--t);
}
.contact-info-card:hover .ci-icon {
  background: #F69281;
  border-color: transparent;
  color: var(--white);
}
.ci-label {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 4px;
}
.ci-value {
  font-size: .9rem;
  color: var(--mocha);
  line-height: 1.65;
  transition: color var(--tf);
}
a.ci-value:hover { color: var(--gold); }
.contact-form-box {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 48px 44px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-soft);
  position: sticky;
  top: 100px;
}
.contact-form-box h2 {
  font-family: var(--fd);
  color: var(--mocha);
  margin-bottom: 8px;
}
.contact-form-box > p {
  font-size: .88rem;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.7;
}
@media(max-width:1100px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-box { position: static; }
}
@media(max-width:768px) {
  .contact-form-box { padding: 32px 24px; }
}

/* ── BLOG PAGE ───────────────────────────────────────────── */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 52px;
  align-items: start;
}
.blog-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sidebar-widget {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-soft);
}
.sidebar-head {
  font-size: .7rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-soft);
}
.search-row {
  display: flex;
  gap: 8px;
  align-items: center;
}
.search-input {
  flex: 1;
  padding: 11px 16px;
  border: 1.5px solid var(--border);
  border-radius: 60px;
  font-family: var(--fb);
  font-size: .84rem;
  color: var(--text);
  background: var(--cream);
  outline: none;
  transition: border-color var(--tf);
}
.search-input:focus { border-color: var(--gold); }
.search-input::placeholder { color: var(--gray-light); }
.search-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  cursor: pointer;
  transition: var(--tf);
  flex-shrink: 0;
  border: none;
}
.search-btn:hover {
  background: var(--gold-dark);
  transform: scale(1.08);
}
.recent-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-soft);
}
.recent-item:last-child { border-bottom: none; padding-bottom: 0; }
.recent-thumb {
  width: 64px; height: 64px;
  border-radius: var(--r);
  overflow: hidden;
  flex-shrink: 0;
}
.recent-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.recent-title {
  font-size: .84rem;
  color: var(--mocha);
  line-height: 1.45;
  transition: color var(--tf);
  display: block;
  margin-bottom: 4px;
  font-weight: 500;
}
.recent-title:hover { color: var(--gold); }
.recent-date { font-size: .72rem; color: var(--muted); }
.cat-list { display: flex; flex-direction: column; gap: 2px; }
.cat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px;
  border-radius: var(--r);
  font-size: .84rem;
  color: var(--text);
  transition: var(--tf);
}
.cat-row:hover, .cat-row.active {
  background: var(--cream);
  color: var(--gold);
}
.cat-count {
  font-size: .72rem;
  font-weight: 700;
  color: var(--gold);
  background: rgba(191,124,46,.1);
  padding: 2px 10px;
  border-radius: 60px;
}
@media(max-width:1100px) {
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
}

/* ── TREATMENT CARD BADGE (Homepage) ────────────────────── */
.tc-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--gold-dark);
  color: var(--white);
  font-size: .6rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 60px;
  font-weight: 700;
  font-family: var(--fb);
  z-index: 2;
}
.tc-badge.gold { background: linear-gradient(135deg, #D4AF37, #A0822B); }

/* ── INTRO STRIP FIXES ───────────────────────────────────── */
.intro-text {
  font-family: var(--fd);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--mocha);
  line-height: 1.4;
}
.intro-feats {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-left: 206px;
}
.intro-feat {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .84rem;
  color: var(--muted);
}
.intro-feat i { color: var(--gold); font-size: .9rem; flex-shrink: 0; }

/* ── HERO DOTS ───────────────────────────────────────────── */
.hero-dots {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 8px;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  border: none;
  cursor: pointer;
  transition: all .3s ease;
  padding: 0;
}
.hero-dot.active {
  background: var(--blush);
  width: 24px;
  border-radius: 4px;
}

/* ── HERO SCROLL INDICATOR ───────────────────────────────── */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: 180px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.4);
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.25);
  animation: scrollLine 1.8s ease infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: .3; transform: scaleY(.6); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}
@media(max-width:1100px) {
  .hero-dots { bottom: 28px; }
  .hero-scroll { display: none; }
}

/* ── PAGE HERO responsive ────────────────────────────────── */
@media(max-width:768px) {
  .page-hero { padding: 120px 0 60px; }
  .page-title { font-size: clamp(2rem, 8vw, 3rem); }
  .contact-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width:480px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .filter-tabs { gap: 8px; }
  .tab-btn { padding: 9px 18px; font-size: .69rem; }
}
