/* ========================================
   SKINNEY-INSPIRED REDESIGN FOR TBA
   Color Palette:
   #ffdae1 - Powder Pink
   #d3a29d - Dusty Pink
   #A36361 - Burgundy (primary)
   #fff0ea - Ivory
   #2e2e2e - Khaki (dark)
   #d46a7e - Slate (accent)
   ======================================== */

/* --- SKINNEY-STYLE HEADER: left nav | center logo | right nav + book now --- */
body.redesigned #ry-header #ry-section-header.skinney-header {
  background: rgba(46,46,46,0.85) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 0 !important;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  float: none !important;
  width: 100% !important;
}

body.redesigned .skinney-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  height: 70px;
}

body.redesigned .skinney-nav-left,
body.redesigned .skinney-nav-right {
  display: flex;
  align-items: center;
  flex: 1;
}

body.redesigned .skinney-nav-right {
  justify-content: flex-end;
  gap: 4px;
}

body.redesigned .skinney-logo {
  flex: 0 0 auto;
  text-align: center;
  padding: 0 30px;
}

body.redesigned .skinney-logo img {
  height: 55px;
  width: auto;
  display: block;
}

body.redesigned .skinney-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0;
}

body.redesigned .skinney-nav-item {
  position: relative;
}

body.redesigned .skinney-nav-item > a {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #fff !important;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 16px;
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
  white-space: nowrap;
}

body.redesigned .skinney-nav-item > a:hover {
  opacity: 1;
  color: #d46a7e !important;
}

body.redesigned .skinney-caret {
  font-size: 8px;
  opacity: 0.6;
  margin-left: 2px;
}

body.redesigned .skinney-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(46,46,46,0.96);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  list-style: none;
  margin: 0;
  padding: 8px 0;
  min-width: 200px;
  z-index: 10000;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

body.redesigned .skinney-dropdown-wide {
  min-width: 240px;
  max-height: 70vh;
  overflow-y: auto;
}

/* ========================================
   MEGA MENU (full-width Skinney-style)
   ======================================== */
body.redesigned .skinney-mega-menu {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  width: 100vw;
  background: #fff;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: center;
  padding: 36px 0;
  z-index: 9998;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

body.redesigned .skinney-mega-menu::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 20px;
}

body.redesigned .skinney-mega-inner {
  display: flex;
  gap: 0;
  max-width: 1100px;
  width: 100%;
  padding: 0 40px;
}

body.redesigned .skinney-mega-col {
  flex: 1;
  min-width: 160px;
  padding: 0 24px;
}

body.redesigned .skinney-mega-col:first-child {
  padding-left: 0;
}

body.redesigned .skinney-mega-col:last-child {
  padding-right: 0;
}

body.redesigned .skinney-mega-heading {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #2e2e2e;
  padding: 0 0 12px;
  margin-bottom: 8px;
}

body.redesigned .skinney-mega-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

body.redesigned .skinney-mega-col ul li a {
  display: block;
  padding: 5px 0;
  color: #555;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  text-decoration: none;
  transition: color 0.15s;
  white-space: nowrap;
}

body.redesigned .skinney-mega-col ul li a:hover {
  color: #A36361;
}

body.redesigned .skinney-dropdown li a {
  display: block;
  padding: 7px 20px;
  color: rgba(255,255,255,0.8);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

body.redesigned .skinney-dropdown li a:hover {
  background: rgba(163,99,97,0.25);
  color: #d46a7e;
}

body.redesigned .skinney-dd-heading {
  padding: 10px 20px 4px;
  color: #d46a7e;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

body.redesigned .skinney-dd-heading:not(:first-child) {
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 4px;
  padding-top: 12px;
}

body.redesigned .skinney-book-btn {
  display: inline-block;
  background: #A36361;
  color: #fff !important;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 24px;
  border-radius: 4px;
  margin-left: 12px;
  transition: background 0.2s;
  white-space: nowrap;
}

body.redesigned .skinney-book-btn:hover {
  background: #d46a7e;
  color: #fff !important;
}

/* ========================================
   HERO SECTION
   ======================================== */
body.redesigned .hero-redesign {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

body.redesigned .hero-redesign .hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

body.redesigned .hero-redesign .hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(46,46,46,0.55) 0%, rgba(46,46,46,0.25) 50%, rgba(46,46,46,0.6) 100%);
  z-index: 2;
}

body.redesigned .hero-redesign .hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

body.redesigned .hero-redesign .hero-quote {
  font-family: 'Cormorant', serif;
  font-size: 52px;
  font-style: normal;
  color: #fff;
  font-weight: 300;
  line-height: 1.2;
  max-width: 700px;
  margin-bottom: 12px;
}

body.redesigned .hero-redesign .hero-attribution {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 35px;
}

body.redesigned .hero-redesign .hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(163,99,97,0.25);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,218,225,0.4);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 15px 36px;
  text-decoration: none;
  transition: all 0.3s;
}

body.redesigned .hero-redesign .hero-btn:hover {
  background: #A36361;
  border-color: #A36361;
  color: #fff;
}

body.redesigned .hero-redesign .hero-btn .fa {
  font-size: 14px;
}

body.redesigned .hero-redesign .hero-stars {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  text-align: center;
}

body.redesigned .hero-redesign .hero-stars .stars {
  color: #d46a7e;
  font-size: 16px;
  letter-spacing: 3px;
}

body.redesigned .hero-redesign .hero-stars .star-text {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 6px;
}

/* ========================================
   REVIEWS BAR
   ======================================== */
body.redesigned .reviews-bar {
  background: #fff;
  padding: 20px 0;
  border-bottom: 1px solid #f0f0f0;
}

body.redesigned .reviews-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

body.redesigned .reviews-bar-stars {
  color: #d46a7e;
  font-size: 16px;
  letter-spacing: 3px;
}

body.redesigned .reviews-bar-text {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #555;
}

/* ========================================
   SKINNEY SECTION COMMON
   ======================================== */
body.redesigned .section-skinney {
  padding: 90px 0;
  position: relative;
}

body.redesigned .section-white {
  background: #fff;
  color: #333;
}

body.redesigned .section-ivory {
  background: #fff0ea;
  color: #333;
}

body.redesigned .section-dark-stats {
  background: #2e2e2e;
  color: #fff;
}

body.redesigned .skinney-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

body.redesigned .skinney-section-header {
  text-align: center;
  margin-bottom: 60px;
}

body.redesigned .skinney-heading-large {
  font-family: 'Cormorant', serif;
  font-size: 46px;
  font-weight: 600;
  color: #2e2e2e;
  line-height: 1.15;
  margin: 0 0 8px;
}

body.redesigned .skinney-section-header-light .skinney-heading-large {
  color: #fff;
}

body.redesigned .skinney-heading-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #A36361;
  margin-bottom: 8px;
}

body.redesigned .skinney-section-header-light .skinney-heading-subtitle {
  color: #d46a7e;
}

body.redesigned .skinney-section-desc {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #888;
  max-width: 650px;
  margin: 15px auto 0;
  line-height: 1.7;
}

/* ========================================
   TREATMENTS HEADER WITH LINES
   ======================================== */
body.redesigned .treatments-header-line {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

body.redesigned .treatments-header-line::before,
body.redesigned .treatments-header-line::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #d3a29d;
}

body.redesigned .treatments-header-text {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #2e2e2e;
  white-space: nowrap;
}

/* ========================================
   TREATMENT GRID (3x3 square tiles, rounded)
   ======================================== */
body.redesigned .treatments-grid-3x3 {
  display: grid;
  grid-template-columns: repeat(3, 250px);
  justify-content: center;
  gap: 18px;
}

body.redesigned .treatment-tile {
  position: relative;
  display: block;
  overflow: hidden;
  text-decoration: none;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
}

body.redesigned .treatment-tile img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

body.redesigned .treatment-tile:hover img:first-child {
  transform: scale(1.04);
}

body.redesigned .treatment-tile .tile-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-family: 'Cormorant', serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  pointer-events: none;
}
body.redesigned .treatment-tile .tile-logo {
  position: absolute;
  bottom: 14px;
  left: 14px;
  height: 28px;
  width: auto;
  max-width: 70%;
  object-fit: contain;
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: screen;
}
body.redesigned .treatment-tile .tile-text-label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  z-index: 2;
  pointer-events: none;
}
body.redesigned .treatment-tile .tile-logo-btl {
  position: absolute;
  bottom: 14px;
  left: 14px;
  height: 24px;
  width: auto;
  max-width: 70%;
  object-fit: contain;
  pointer-events: none;
  z-index: 2;
  filter: brightness(0) invert(1);
}
body.redesigned .treatment-tile::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 100%);
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 991px) {
  body.redesigned .treatments-grid-3x3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  body.redesigned .treatments-grid-3x3 {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* ========================================
   OUR STORY (50/50 split)
   ======================================== */
body.redesigned .our-story-layout {
  display: flex;
  align-items: center;
  gap: 60px;
}

body.redesigned .our-story-image {
  flex: 1;
  min-width: 0;
}

body.redesigned .our-story-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: #e8ddd8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant', serif;
  font-size: 24px;
  color: #A36361;
  font-style: normal;
}

body.redesigned .our-story-content {
  flex: 1;
  min-width: 0;
}

body.redesigned .our-story-content .skinney-heading-subtitle {
  margin-bottom: 6px;
}

body.redesigned .our-story-content .skinney-heading-large {
  margin-bottom: 16px;
}

body.redesigned .our-story-name {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #A36361;
  margin-bottom: 20px;
}

body.redesigned .our-story-text {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 30px;
}

body.redesigned .skinney-btn-outline {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #A36361;
  text-decoration: none;
  border: 1px solid #A36361;
  padding: 14px 36px;
  transition: all 0.3s;
}

body.redesigned .skinney-btn-outline:hover {
  background: #A36361;
  color: #fff;
}

@media (max-width: 991px) {
  body.redesigned .our-story-layout {
    flex-direction: column;
    gap: 40px;
  }
  body.redesigned .our-story-placeholder {
    aspect-ratio: 4 / 3;
  }
}

/* ========================================
   TESTIMONIALS (Skinney-style)
   ======================================== */
body.redesigned .testimonials-grid-skinney {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

body.redesigned .testimonial-card-skinney {
  background: #fff;
  border: 1px solid #f0ebe9;
  padding: 36px 30px;
}

body.redesigned .testimonial-card-skinney .tcs-stars {
  color: #d46a7e;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

body.redesigned .testimonial-card-skinney .tcs-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: normal;
}

body.redesigned .testimonial-card-skinney .tcs-name {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #2e2e2e;
  letter-spacing: 0.5px;
}

@media (max-width: 991px) {
  body.redesigned .testimonials-grid-skinney {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   EXPERIENCE THE DIFFERENCE / STATS
   ======================================== */
body.redesigned .stats-grid-skinney {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

body.redesigned .stat-item-skinney {
  text-align: center;
  min-width: 160px;
}

body.redesigned .stat-number-skinney {
  font-family: 'Cormorant', serif;
  font-size: 56px;
  font-weight: 700;
  color: #d46a7e;
  line-height: 1;
  margin-bottom: 10px;
}

body.redesigned .stat-number-skinney .fa {
  font-size: 36px;
  color: #d46a7e;
}

body.redesigned .stat-label-skinney {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

@media (max-width: 768px) {
  body.redesigned .stats-grid-skinney {
    gap: 40px;
  }
  body.redesigned .stat-number-skinney {
    font-size: 42px;
  }
}

/* ========================================
   INSTAGRAM MODERN
   ======================================== */
body.redesigned .ig-modern {
  text-align: center;
}

body.redesigned .ig-modern .ig-link {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #A36361;
  text-decoration: none;
  border: 1px solid #A36361;
  padding: 14px 36px;
  transition: all 0.3s;
  margin-top: 20px;
}

body.redesigned .ig-modern .ig-link:hover {
  background: #A36361;
  color: #fff;
}

/* ========================================
   MAP MODERN
   ======================================== */
body.redesigned .map-modern {
  position: relative;
  height: 400px;
  overflow: hidden;
  cursor: pointer;
}

body.redesigned .map-modern img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.redesigned .map-modern .map-overlay-text {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: rgba(46,46,46,0.85);
  backdrop-filter: blur(10px);
  padding: 20px 30px;
  border-radius: 8px;
  color: #fff;
  border: 1px solid rgba(211,162,157,0.2);
}

body.redesigned .map-modern .map-overlay-text .mo-title {
  font-family: 'Cormorant', serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
}

body.redesigned .map-modern .map-overlay-text .mo-address {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  opacity: 0.8;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
  body.redesigned .hero-redesign .hero-quote {
    font-size: 34px;
  }
  body.redesigned .skinney-heading-large {
    font-size: 34px;
  }
  body.redesigned .section-skinney {
    padding: 60px 0;
  }
  body.redesigned .skinney-section-header {
    margin-bottom: 40px;
  }
}

/* ========================================
   FOOTER MODERN OVERRIDE
   ======================================== */
body.redesigned #ry-footer .ry-footer-top {
  background: #2e2e2e !important;
}

body.redesigned #ry-footer .ry-footer-copyright {
  background: #222 !important;
}

body.redesigned #ry-footer .ry-footer-copyright p,
body.redesigned #ry-footer .ry-footer-copyright a {
  color: rgba(255,255,255,0.5) !important;
  font-size: 12px;
}

body.redesigned #ry-footer .ry-footer-copyright a:hover {
  color: #d46a7e !important;
}

/* ========================================
   HIDE LEGACY SECTIONS ON REDESIGNED PAGE
   ======================================== */
body.redesigned #ry-main > .sections {
  display: none !important;
}

body.redesigned #ry-pg-header {
  display: none !important;
}

body.redesigned #ry-footer-pre,
body.redesigned .ry-footer-top,
body.redesigned .ry-footer-copyright,
body.redesigned #ry-pg-body .header-menu-wrap {
  display: none !important;
}

body.redesigned #ry-pg-body .ry-right-sidebar,
body.redesigned #ry-pg-body .ry-right.col-md-4,
body.redesigned #ry-pg-body .ry-right.col-lg-4 {
  display: none !important;
}

body.redesigned #ry-pg-body .ry-left {
  width: 100% !important;
  float: none !important;
}

body.redesigned #ry-pg-body {
  padding-top: 80px;
}

/* ========================================
   MOBILE HEADER OVERRIDE
   ======================================== */
body.redesigned #theme2-smHeader {
  background: rgba(46,46,46,0.95) !important;
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}

body.redesigned #theme2-smHeader .mobile_logo img {
  max-height: 35px;
}

body.redesigned #theme2-smHeader .hamburger-inner,
body.redesigned #theme2-smHeader .hamburger-inner::before,
body.redesigned #theme2-smHeader .hamburger-inner::after {
  background-color: #fff !important;
}

body.redesigned #theme2-smHeader .mobile-button a {
  color: #fff !important;
}

/* ======================= PROMOTIONAL SECTION ======================= */
.tba-promo-section {
  background: linear-gradient(135deg, #fff0ea 0%, #ffdae1 50%, #fff0ea 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.tba-promo-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(163,99,97,0.06);
  pointer-events: none;
}
.tba-promo-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.tba-promo-left {
  text-align: left;
}
.tba-promo-badge {
  display: inline-block;
  background: #A36361;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 20px;
}
.tba-promo-discount {
  font-family: 'Cormorant', serif;
  font-size: 72px;
  font-weight: 700;
  color: #A36361;
  line-height: 1;
  margin: 0 0 8px;
}
.tba-promo-service-name {
  font-family: 'Cormorant', serif;
  font-size: 28px;
  font-weight: 600;
  color: #2e2e2e;
  margin: 0 0 16px;
}
.tba-promo-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin: 0 0 24px;
}
.tba-promo-fine {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: #999;
  margin: 0;
}
.tba-promo-right {
  background: #fff;
  border-radius: 4px;
  padding: 40px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
}
.tba-promo-form-title {
  font-family: 'Cormorant', serif;
  font-size: 26px;
  font-weight: 600;
  color: #2e2e2e;
  margin: 0 0 6px;
  text-align: center;
}
.tba-promo-form-sub {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #999;
  text-align: center;
  margin: 0 0 28px;
}
.tba-promo-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 28px;
  position: relative;
}
.tba-promo-step {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #d0d0d0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #999;
  transition: all 0.3s;
  background: #fff;
  position: relative;
  z-index: 2;
}
.tba-promo-step-line {
  width: 180px;
  height: 2px;
  background: #d0d0d0;
  flex-shrink: 0;
  z-index: 1;
}
.tba-promo-step-line.completed {
  background: #A36361;
}
.tba-promo-step.active {
  background: #2e2e2e;
  border-color: #2e2e2e;
  color: #fff;
}
.tba-promo-step.completed {
  background: #d3a29d;
  border-color: #d3a29d;
  color: #fff;
}
.tba-promo-form-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 0;
}
.tba-promo-form-row.single {
  flex-direction: column;
}
.tba-promo-input {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid #d0d0d0;
  border-radius: 0;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #2e2e2e;
  background: #fff;
  outline: none;
  transition: border-color 0.3s;
  box-sizing: border-box;
}
.tba-promo-input:focus {
  border-color: #2e2e2e;
}
.tba-promo-input::placeholder {
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
}
.tba-promo-btn {
  width: 100%;
  padding: 16px;
  background: #2e2e2e;
  color: #fff;
  border: none;
  border-radius: 0;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 16px;
}
.tba-promo-btn:hover {
  background: #1a1a1a;
}
.tba-promo-btn:disabled {
  background: #d3a29d;
  cursor: not-allowed;
}
.tba-promo-btn-secondary {
  width: 100%;
  padding: 14px;
  background: transparent;
  color: #2e2e2e;
  border: 1px solid #2e2e2e;
  border-radius: 0;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 8px;
}
.tba-promo-btn-secondary:hover {
  background: rgba(0,0,0,0.04);
}
.tba-promo-form-page {
  display: none;
}
.tba-promo-form-page.active {
  display: block;
}
.tba-promo-success {
  text-align: center;
  padding: 20px 0;
  display: none;
}
.tba-promo-success.active {
  display: block;
}
.tba-promo-success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #A36361;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 16px;
}
.tba-promo-success h3 {
  font-family: 'Cormorant', serif;
  font-size: 24px;
  font-weight: 600;
  color: #2e2e2e;
  margin: 0 0 8px;
}
.tba-promo-success p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #666;
  margin: 0;
}
.tba-promo-error {
  background: #fff0ea;
  border: 1px solid #d46a7e;
  color: #A36361;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  padding: 10px 14px;
  border-radius: 3px;
  margin-bottom: 12px;
  display: none;
}
.tba-promo-error.active {
  display: block;
}
@media (max-width: 768px) {
  .tba-promo-inner {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .tba-promo-left {
    text-align: center;
  }
  .tba-promo-discount {
    font-size: 56px !important;
  }
  .tba-promo-right {
    padding: 28px 20px !important;
  }
  .tba-promo-form-row {
    grid-template-columns: 1fr !important;
  }
  .tba-promo-section {
    padding: 60px 0 !important;
  }
}

/* ========================================
   AWARDS SECTION
   ======================================== */
.tba-awards-section {
  background: #fff;
  padding: 50px 30px;
  text-align: center;
}
.tba-awards-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #2e2e2e;
  margin: 0 auto 36px;
  text-align: center;
}
.tba-awards-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 52px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}
.tba-awards-logos img {
  height: 83px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.75;
  transition: all 0.3s;
}
.tba-awards-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
}
@media (max-width: 768px) {
  .tba-awards-logos {
    gap: 28px;
  }
  .tba-awards-logos img {
    height: 56px;
  }
}

/* ========================================
   CONSULTATION SECTION (after hero)
   ======================================== */
.tba-consult-section {
  background: #fff;
  padding: 80px 0 0;
}
.tba-consult-box,
.tba-consult-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.tba-consult-left {
  background: #ffdae1;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tba-consult-left-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #2e2e2e;
  margin: 0 0 20px;
  line-height: 1.6;
}
.tba-consult-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 400;
  color: #2e2e2e;
  line-height: 1.2;
  margin: 0 0 24px;
}
.tba-consult-left p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #555;
  line-height: 1.75;
  margin: 0 0 16px;
}
.tba-consult-left .consult-phone {
  color: #A36361;
  text-decoration: none;
  font-weight: 600;
}
.tba-consult-right {
  background: #faf6f4;
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tba-consult-logo {
  display: block;
  max-width: 160px;
  height: auto;
  margin: 0 auto 20px;
}
.tba-consult-right .tba-promo-form-title {
  font-family: 'Playfair Display', serif;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  color: #2e2e2e;
  text-align: center;
  margin-bottom: 16px;
}
.tba-consult-badge {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #2e2e2e;
  text-align: center;
  margin: 0 0 8px;
  font-weight: 700;
}
.tba-consult-service-name {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: #2e2e2e;
  text-align: center;
  margin: 0 0 8px;
}
.tba-consult-fill-text {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #999;
  text-align: center;
  margin: 0 0 24px;
}
.tba-consult-right .tba-promo-form {
  width: 100%;
}
.tba-consult-disclaimer {
  margin: 28px 0 0;
  padding-top: 0;
  width: 100%;
}
.tba-consult-disclaimer-title {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #2e2e2e;
  font-weight: 700;
  margin: 0 0 12px;
}
.tba-consult-disclaimer p {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  color: #999;
  line-height: 1.6;
  margin: 0 0 10px;
}
.tba-consult-disclaimer a {
  color: #A36361;
  text-decoration: underline;
}
.tba-consult-financing {
  margin: 24px 0 0;
  text-align: center;
  width: 100%;
  border-top: 1px solid #e8e0dd;
  padding-top: 20px;
}
.tba-consult-financing-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #999;
  margin: 0 0 16px;
}
.tba-consult-financing-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.tba-consult-financing-logos img {
  height: 22px;
  width: auto;
  object-fit: contain;
}
.tba-consult-treatable {
  max-width: 1100px;
  margin: 0 auto;
}
.tba-consult-treatable-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}
.tba-consult-treatable-image {
  position: relative;
  overflow: hidden;
  background: #faf6f4;
}
.tba-consult-treatable-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tba-consult-treatable-text {
  background: #ffdae1;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tba-consult-treatable-text h2 {
  font-family: 'Playfair Display', serif;
  font-style: normal;
  font-size: 36px;
  font-weight: 400;
  color: #2e2e2e;
  margin: 0 0 16px;
}
.tba-consult-treatable-text > p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #666;
  margin: 0 0 20px;
}
.tba-consult-treatable-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tba-consult-treatable-text ul li {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #2e2e2e;
  padding: 6px 0;
  line-height: 1.5;
}
.tba-consult-treatable-text ul li::before {
  content: '\2713';
  color: #A36361;
  font-weight: 700;
  margin-right: 10px;
}
@media (max-width: 768px) {
  .tba-consult-treatable-inner {
    grid-template-columns: 1fr;
  }
  .tba-consult-treatable-image {
    min-height: 300px;
  }
  .tba-consult-treatable-text {
    padding: 40px 28px;
  }
  .tba-consult-box,
  .tba-consult-inner {
    grid-template-columns: 1fr;
    margin: 0 16px;
  }
  .tba-consult-left {
    padding: 40px 28px;
  }
  .tba-consult-left h2 {
    font-size: 32px;
  }
  .tba-consult-right {
    padding: 32px 24px;
  }
  .tba-consult-section {
    padding: 50px 0;
  }
  .tba-promo-step-line {
    width: 80px;
  }
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
@keyframes anim-fade-up {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes anim-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes anim-slide-left {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes anim-slide-right {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes anim-scale-in {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes anim-count-line {
  from { width: 0; }
  to { width: 100%; }
}

.anim-ready {
  opacity: 0;
}
.anim-ready.anim-visible {
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}
.anim-fade-up.anim-visible { animation-name: anim-fade-up; }
.anim-fade-in.anim-visible { animation-name: anim-fade-in; }
.anim-slide-left.anim-visible { animation-name: anim-slide-left; }
.anim-slide-right.anim-visible { animation-name: anim-slide-right; }
.anim-scale-in.anim-visible { animation-name: anim-scale-in; }

.anim-d1 { animation-duration: 0.7s; }
.anim-d2 { animation-duration: 0.9s; }
.anim-d3 { animation-duration: 1.1s; }

.anim-delay-1 { animation-delay: 0.1s; }
.anim-delay-2 { animation-delay: 0.2s; }
.anim-delay-3 { animation-delay: 0.3s; }
.anim-delay-4 { animation-delay: 0.4s; }
.anim-delay-5 { animation-delay: 0.5s; }
.anim-delay-6 { animation-delay: 0.6s; }
.anim-delay-7 { animation-delay: 0.7s; }
.anim-delay-8 { animation-delay: 0.8s; }

body.redesigned .hero-redesign .hero-bg {
  animation: hero-zoom 20s ease-in-out infinite alternate;
}
@keyframes hero-zoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

body.redesigned .hero-redesign .hero-stars .stars .fa {
  animation: star-twinkle 2s ease-in-out infinite;
}
body.redesigned .hero-redesign .hero-stars .stars .fa:nth-child(2) { animation-delay: 0.15s; }
body.redesigned .hero-redesign .hero-stars .stars .fa:nth-child(3) { animation-delay: 0.3s; }
body.redesigned .hero-redesign .hero-stars .stars .fa:nth-child(4) { animation-delay: 0.45s; }
body.redesigned .hero-redesign .hero-stars .stars .fa:nth-child(5) { animation-delay: 0.6s; }
@keyframes star-twinkle {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

body.redesigned .treatment-tile {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}
body.redesigned .treatment-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(163,99,97,0.15);
}

body.redesigned .testimonial-card-skinney {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}
body.redesigned .testimonial-card-skinney:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(163,99,97,0.1);
}

body.redesigned .skinney-btn-outline {
  position: relative;
  overflow: hidden;
}
body.redesigned .skinney-btn-outline::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}
body.redesigned .skinney-btn-outline:hover::after {
  left: 100%;
}

body.redesigned .reviews-bar-stars .fa {
  transition: transform 0.3s ease;
}
body.redesigned .reviews-bar:hover .reviews-bar-stars .fa {
  animation: star-bounce 0.4s ease;
}
body.redesigned .reviews-bar:hover .reviews-bar-stars .fa:nth-child(2) { animation-delay: 0.05s; }
body.redesigned .reviews-bar:hover .reviews-bar-stars .fa:nth-child(3) { animation-delay: 0.1s; }
body.redesigned .reviews-bar:hover .reviews-bar-stars .fa:nth-child(4) { animation-delay: 0.15s; }
body.redesigned .reviews-bar:hover .reviews-bar-stars .fa:nth-child(5) { animation-delay: 0.2s; }
@keyframes star-bounce {
  0%, 100% { transform: scale(1); }
  40% { transform: scale(1.3); }
  70% { transform: scale(0.9); }
}

body.redesigned .stat-number-skinney {
  transition: transform 0.4s ease;
}
body.redesigned .stat-item-skinney:hover .stat-number-skinney {
  transform: scale(1.08);
}

body.redesigned .map-modern img {
  transition: transform 8s ease;
}
body.redesigned .map-modern:hover img {
  transform: scale(1.03);
}

body.redesigned .hero-redesign .hero-btn {
  position: relative;
  overflow: hidden;
}
body.redesigned .hero-redesign .hero-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}
body.redesigned .hero-redesign .hero-btn:hover::before {
  width: 300px;
  height: 300px;
}

/* ========================================
   SERVICE PAGE ANIMATIONS
   ======================================== */
.page-hero-bg-zoom {
  animation: hero-zoom 20s ease-in-out infinite alternate;
}

.page-btn-ripple {
  position: relative;
  overflow: hidden;
}
.page-btn-ripple::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
}
.page-btn-ripple:hover::before {
  width: 300px;
  height: 300px;
}

.page-card-hover {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease !important;
}
.page-card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(163,99,97,0.12) !important;
}

details {
  transition: background-color 0.3s ease;
}
details[open] summary {
  color: #A36361;
}
details summary {
  transition: color 0.3s ease;
}
details summary:hover {
  color: #A36361;
}

/* --- WHY WE LOVE IT (Skinney-style two-column: text left, image right) --- */
.tba-why-love-section {
  background: #fff;
  padding: 90px 0;
}
.tba-why-love-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.tba-why-love-text {
  padding-top: 10px;
}
.tba-why-love-text .tba-wl-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #A36361;
  margin: 0 0 14px;
  font-weight: 600;
}
.tba-why-love-text h2 {
  font-family: 'Cormorant', serif;
  font-size: 42px;
  font-weight: 400;
  font-style: normal;
  color: #2e2e2e;
  line-height: 1.15;
  margin: 0 0 28px;
}
.tba-why-love-text .tba-wl-desc {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  margin: 0 0 20px;
}
.tba-why-love-text .tba-wl-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #444;
  line-height: 1.8;
  margin: 0 0 16px;
}
.tba-why-love-checks {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tba-why-love-checks li {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #444;
  line-height: 1.6;
  padding: 5px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.tba-why-love-checks li::before {
  content: '\2713';
  color: #A36361;
  font-weight: 700;
  flex-shrink: 0;
}
.tba-why-love-image {
  position: relative;
}
.tba-why-love-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.tba-why-love-image .tba-wl-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #f5e6e8 0%, #e8d1cc 50%, #d3a29d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.tba-why-love-image .tba-wl-placeholder span {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #A36361;
  opacity: 0.6;
}
@media (max-width: 768px) {
  .tba-why-love-inner {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .tba-why-love-image {
    order: -1;
  }
  .tba-why-love-text h2 {
    font-size: 34px !important;
  }
}

/* --- TREATMENT INFO CARDS (Cost + Results + Side Effects) --- */
.tba-info-section {
  background: #ffdae1;
  padding: 90px 0;
}
.tba-info-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}
.tba-info-left {
  background: #fff;
  padding: 44px 40px;
}
.tba-info-left h3 {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #2e2e2e;
  font-weight: 600;
  margin: 0 0 24px;
}
.tba-info-left p {
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  color: #555;
  line-height: 1.75;
  margin: 0 0 18px;
}
.tba-info-left p:last-child {
  margin-bottom: 0;
}
.tba-info-right {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.tba-info-card-dark {
  background: #2e2e2e;
  padding: 40px;
}
.tba-info-card-dark h3 {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  margin: 0 0 20px;
}
.tba-info-card-dark p {
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  margin: 0 0 16px;
}
.tba-info-card-dark p:last-child {
  margin-bottom: 0;
}
.tba-info-dropcap::first-letter {
  font-family: 'Cormorant', serif;
  font-size: 3.2em;
  float: left;
  line-height: 0.85;
  margin-right: 8px;
  margin-top: 4px;
  font-weight: 600;
}
.tba-info-left .tba-info-dropcap::first-letter {
  color: #A36361;
}
.tba-info-card-dark .tba-info-dropcap::first-letter {
  color: #fff;
}
@media (max-width: 768px) {
  .tba-info-inner {
    grid-template-columns: 1fr !important;
  }
}

/* --- DEVICE + BENEFITS SECTION (Skinney-style two-column) --- */
.tba-device-section {
  background: #ffdae1;
  padding: 80px 0;
}
.tba-device-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.tba-device-image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.tba-device-image img {
  max-width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain;
}
.tba-device-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.tba-benefits-card {
  background: #fff;
  border: 1px solid #e8d5d3;
  padding: 36px 32px;
}
.tba-benefits-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #2e2e2e;
  font-weight: 600;
  margin: 0 0 24px;
}
.tba-benefits-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tba-benefits-card ul li {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #444;
  line-height: 1.6;
  padding: 7px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.tba-benefits-card ul li::before {
  content: '\2022';
  color: #A36361;
  font-weight: 700;
  flex-shrink: 0;
}
.tba-book-card {
  background: #fff;
  border: 1px solid #e8d5d3;
  padding: 32px;
}
.tba-book-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #2e2e2e;
  font-weight: 600;
  margin: 0 0 12px;
}
.tba-book-card p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0 0 16px;
}
.tba-book-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.tba-book-card ul li {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #444;
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tba-book-card ul li::before {
  content: '\2022';
  color: #A36361;
  font-weight: 700;
}
.tba-book-card .tba-book-btn {
  display: block;
  width: 100%;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #fff;
  background: #2e2e2e;
  text-decoration: none;
  padding: 16px 28px;
  transition: background 0.3s;
  border: none;
  cursor: pointer;
}
.tba-book-card .tba-book-btn:hover {
  background: #444;
}

/* --- HOW IT WORKS 3-PHASE SECTION --- */
.tba-phases-section {
  background: #fff;
  padding: 80px 0;
}
.tba-phases-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
}
.tba-phases-header {
  text-align: center;
  margin-bottom: 20px;
}
.tba-phases-header .tba-phases-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #A36361;
  margin: 0 0 10px;
}
.tba-phases-header h2 {
  font-family: 'Cormorant', serif;
  font-size: 42px;
  font-weight: 600;
  color: #2e2e2e;
  line-height: 1.15;
  margin: 0;
  font-style: normal;
}
.tba-phases-desc {
  max-width: 900px;
  margin: 0 auto 50px;
}
.tba-phases-desc p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  margin: 0 0 16px;
}
.tba-phases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.tba-phase-item {
  text-align: center;
}
.tba-phase-item .tba-phase-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  margin-bottom: 24px;
}
.tba-phase-item .tba-phase-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tba-phase-item h3 {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #2e2e2e;
  font-weight: 600;
  margin: 0 0 12px;
}
.tba-phase-item p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin: 0;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .tba-device-inner {
    grid-template-columns: 1fr !important;
  }
  .tba-device-image {
    order: -1;
  }
  .tba-phases-grid {
    grid-template-columns: 1fr !important;
  }
  .tba-phases-header h2 {
    font-size: 34px !important;
  }
}

/* ========================================
   GLOBAL TITLE CENTERING (all pages)
   ======================================== */
.tba-why-love-text .tba-wl-label,
.tba-why-love-text h2,
.tba-why-love-text .tba-wl-desc,
.tba-why-love-text .tba-wl-subtitle,
.tba-consult-left-label,
.tba-consult-left h2,
.tba-consult-treatable-text h2,
.tba-info-left h3,
.tba-info-card-dark h3,
.tba-phases-header h2,
.tba-phases-header p {
  text-align: center;
}

/* ========================================
   ENHANCED PAGE ANIMATIONS
   ======================================== */
@keyframes anim-fade-down {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}
.anim-fade-down.anim-visible { animation-name: anim-fade-down; }

@keyframes anim-zoom-in {
  from { opacity: 0; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1); }
}
.anim-zoom-in.anim-visible { animation-name: anim-zoom-in; }

.page-hero-bg-zoom {
  animation: hero-zoom 20s ease-in-out infinite alternate;
}

.page-section-reveal {
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.page-stagger-item {
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (prefers-reduced-motion: reduce) {
  .anim-ready { opacity: 1; }
  .anim-ready.anim-visible { animation: none !important; }
  body.redesigned .hero-redesign .hero-bg { animation: none !important; }
  body.redesigned .hero-redesign .hero-stars .stars .fa { animation: none !important; }
  body.redesigned .treatment-tile,
  body.redesigned .testimonial-card-skinney { transition: none !important; }
  .page-hero-bg-zoom { animation: none !important; }
  .page-card-hover { transition: none !important; }
  .page-btn-ripple::before { transition: none !important; }
}

/* --- AWARDS SECTION (Skinney-style) --- */
body.redesigned .tba-awards-section {
  background: #ffdae1;
  padding: 50px 0;
  text-align: center;
}
body.redesigned .tba-awards-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 30px;
}
body.redesigned .tba-awards-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #A36361;
  margin: 0 0 30px;
  font-weight: 500;
}
body.redesigned .tba-awards-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
body.redesigned .tba-award-logo {
  height: 100px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}
body.redesigned .tba-award-logo:hover {
  opacity: 1;
}
@media (max-width: 768px) {
  body.redesigned .tba-awards-section {
    padding: 35px 0;
  }
  body.redesigned .tba-award-logo {
    height: 75px;
  }
}
