/* ══════════════════════════════════════
   AURA AESTHETIC — Treatments Page
   Mobile-first → Desktop @1024px
   ══════════════════════════════════════ */


/* ══════════════════════════════════
   PAGE HERO
   ══════════════════════════════════ */
.t-hero {
  background: var(--c-bg-dark);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 24px 24px;
  min-height: 260px;
  gap: 12px;
}

.t-hero__title {
  font-family: var(--ff-heading);
  font-size: 42px;
  font-weight: 700;
  color: var(--c-white);
}

.t-hero__desc {
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.47);
}

@media (min-width: 1024px) {
  .t-hero {
    min-height: 360px;
    padding: 0 64px 40px;
    gap: 16px;
  }

  .t-hero__title {
    font-size: 64px;
  }

  .t-hero__desc {
    font-size: 15px;
    letter-spacing: 0.5px;
  }
}


/* ══════════════════════════════════
   SHARED TREATMENT SECTION STYLES
   ══════════════════════════════════ */

/* Section backgrounds */
.t-section--dark {
  background: var(--c-bg-dark);
}

.t-section--light {
  background: var(--c-bg-warm);
}

/* ── Label (desktop) ── */
.t-section__label {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 5px;
  color: var(--c-accent);
  text-transform: uppercase;
}

/* ── Badge (non-surgical pill) ── */
.t-section__badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(196, 150, 122, 0.13);
  font-family: var(--ff-body);
  font-size: 10px;
  font-weight: 500;
  color: var(--c-accent);
}

@media (min-width: 1024px) {
  .t-section__badge {
    padding: 8px 20px;
    font-size: 12px;
  }
}


/* ══════════════════════════════════
   TREATMENT HERO IMAGE (T1)
   ══════════════════════════════════ */

/* Mobile: image + overlay */
.t-section__hero-img {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.t-section__hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t-section__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #0C0C0C 0%, #0C0C0C44 40%, #0C0C0C 100%);
}

/* Hide desktop hero content on mobile */
.t-section__hero-content {
  display: none;
}

.t-section__bg-num {
  display: none;
}

@media (min-width: 1024px) {
  .t-section__hero-img {
    height: 520px;
  }

  .t-section__hero-content {
    display: block;
    position: absolute;
    inset: 0;
    padding: 0 64px;
    max-width: 1440px;
    margin: 0 auto;
  }

  .t-section__bg-num {
    display: block;
    position: absolute;
    top: 40px;
    left: 64px;
    font-family: var(--ff-display);
    font-size: 160px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.04);
    pointer-events: none;
    user-select: none;
  }

  .t-section__hero-content .t-section__label {
    position: absolute;
    top: 60px;
    left: 64px;
  }

  .t-section__hero-title {
    position: absolute;
    top: 90px;
    left: 64px;
    font-family: var(--ff-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--c-white);
  }

  .t-section__hero-tagline {
    position: absolute;
    top: 160px;
    left: 64px;
    font-family: var(--ff-body);
    font-size: 15px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    max-width: 420px;
  }

  .t-section__usps {
    position: absolute;
    top: 420px;
    left: 64px;
    display: flex;
    gap: 16px;
  }

  .t-section__usp {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.07);
    font-family: var(--ff-body);
    font-size: 12px;
    color: var(--c-white);
  }
}


/* ══════════════════════════════════
   MOBILE BODY (shared by T1, T2, T3)
   ══════════════════════════════════ */
.t-section__mobile-body {
  padding: 24px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.t-section__mobile-tag {
  font-family: var(--ff-body);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 4px;
  color: var(--c-accent);
  text-transform: uppercase;
}

.t-section__mobile-tag--light {
  color: var(--c-accent);
}

.t-section__mobile-title {
  font-family: var(--ff-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--c-white);
}

.t-section__mobile-title--light {
  color: var(--c-text);
}

.t-section__mobile-desc {
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.53);
  line-height: 1.8;
}

.t-section__mobile-desc--light {
  color: rgba(75, 85, 99, 0.67);
}

.t-section__mobile-price {
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--c-accent);
}

/* Mobile USP pills */
.t-section__mobile-usps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.t-section__mobile-usp {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.07);
  font-family: var(--ff-body);
  font-size: 10px;
  color: var(--c-white);
}

/* Mobile advantages */
.t-section__mobile-advs {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.t-section__mobile-adv {
  font-family: var(--ff-body);
  font-size: 12px;
  color: var(--c-text-secondary);
}

/* Mobile image (T2, T3) */
.t-section__mobile-img {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.t-section__mobile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* T3 chin image: shift focal point down */
#chin .t-section__mobile-img img {
  object-position: center 10%;
}

/* Mobile specs grid */
.t-section__mobile-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 4px;
}

.t-section__mobile-spec {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.t-section__mobile-specs--light .t-section__mobile-spec {
  border-top-color: rgba(26, 26, 26, 0.07);
}

.t-section__mobile-spec-label {
  font-family: var(--ff-body);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.27);
}

.t-section__mobile-spec-label--light {
  color: rgba(75, 85, 99, 0.4);
}

.t-section__mobile-spec-value {
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--c-white);
}

.t-section__mobile-spec-value--dark {
  color: var(--c-text);
}

.t-section__mobile-spec-value--accent {
  color: var(--c-accent);
}

/* Hide mobile elements on desktop */
@media (min-width: 1024px) {
  .t-section__mobile-body,
  .t-section__mobile-img {
    display: none;
  }
}


/* ══════════════════════════════════
   T1 DETAIL AREA (desktop)
   ══════════════════════════════════ */
.t-section__detail {
  display: none;
}

@media (min-width: 1024px) {
  .t-section__detail {
    display: block;
  }

  .t-section__detail-inner {
    display: flex;
    gap: 64px;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .t-section__detail-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .t-section__detail-label {
    font-family: var(--ff-body);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 4px;
    color: var(--c-accent);
    text-transform: uppercase;
  }

  .t-section__detail-title {
    font-family: var(--ff-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--c-white);
  }

  .t-section__detail-desc {
    font-family: var(--ff-body);
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.53);
    line-height: 1.9;
  }

  .t-section__detail-right {
    width: 400px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  /* Desktop spec rows */
  .t-section__specs {
    display: flex;
    flex-direction: column;
  }

  .t-section__spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .t-section__spec-label {
    font-family: var(--ff-body);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.33);
  }

  .t-section__spec-value {
    font-family: var(--ff-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--c-white);
  }

  .t-section__spec-value--accent {
    color: var(--c-accent);
  }
}


/* ══════════════════════════════════
   T2 DESKTOP BENTO GRID
   ══════════════════════════════════ */
.t2__desktop {
  display: none;
}

@media (min-width: 1024px) {
  .t2__desktop {
    display: block;
    padding: 80px 0;
  }

  .t2__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
  }

  .t2__header-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .t2__title {
    font-family: var(--ff-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--c-text);
  }

  .t2__header-right {
    font-family: var(--ff-body);
    font-size: 14px;
    font-weight: 300;
    color: var(--c-text-secondary);
  }

  /* Bento grid with CSS Grid for responsive layout */
  .t2__bento {
    display: grid;
    grid-template-columns: 560fr 352fr 352fr;
    grid-template-rows: auto auto;
    gap: 24px;
  }

  .t2__img-card {
    grid-row: 1 / 3;
    grid-column: 1;
    border-radius: var(--r-card);
    overflow: hidden;
  }

  .t2__img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .t2__desc-card {
    grid-row: 1;
    grid-column: 2 / 4;
    background: var(--c-white);
    border-radius: var(--r-card);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
  }

  .t2__card-label {
    font-family: var(--ff-body);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 4px;
    color: var(--c-accent);
    text-transform: uppercase;
  }

  .t2__card-text {
    font-family: var(--ff-body);
    font-size: 14px;
    font-weight: 300;
    color: var(--c-text-secondary);
    line-height: 1.9;
  }

  .t2__adv-card {
    grid-row: 2;
    grid-column: 2;
    background: var(--c-text);
    border-radius: var(--r-card);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
  }

  .t2__adv-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .t2__adv-item {
    font-family: var(--ff-body);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
  }

  .t2__spec-card {
    grid-row: 2;
    grid-column: 3;
    background: var(--c-white);
    border-radius: var(--r-card);
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .t2__spec-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    justify-content: center;
  }

  .t2__spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .t2__spec-label {
    font-family: var(--ff-body);
    font-size: 11px;
    color: rgba(75, 85, 99, 0.53);
  }

  .t2__spec-value {
    font-family: var(--ff-body);
    font-size: 12px;
    font-weight: 500;
    color: var(--c-text);
  }

  .t2__spec-value--accent {
    color: var(--c-accent);
  }
}


/* ══════════════════════════════════
   T3 DESKTOP LAYOUT
   ══════════════════════════════════ */
.t3__desktop {
  display: none;
}

@media (min-width: 1024px) {
  .t3__desktop {
    display: block;
  }

  /* Top: side by side content + image, image flush right edge */
  .t3__top .t3__content {
    display: flex;
  }

  .t3__content-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    padding: 56px 56px 56px 64px;
  }

  .t3__title {
    font-family: var(--ff-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--c-white);
  }

  .t3__desc {
    font-family: var(--ff-body);
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.53);
    line-height: 1.9;
  }

  .t3__img {
    width: 560px;
    height: 480px;
    flex-shrink: 0;
    overflow: hidden;
  }

  .t3__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Timeline bar */
  .t3__timeline-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .t3__timeline-inner {
    display: flex;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 40px;
    gap: 40px;
  }

  .t3__timeline-label {
    font-family: var(--ff-body);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 4px;
    color: var(--c-accent);
    text-transform: uppercase;
    white-space: nowrap;
  }

  /* Specs bar */
  .t3__specs-bar {
    padding: 24px 0;
  }

  .t3__specs-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
  }

  .t3__spec {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }

  .t3__spec-label {
    font-family: var(--ff-body);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.27);
    text-transform: uppercase;
  }

  .t3__spec-value {
    font-family: var(--ff-body);
    font-size: 16px;
    font-weight: 500;
    color: var(--c-white);
  }

  .t3__spec-value--accent {
    color: var(--c-accent);
  }
}


/* ══════════════════════════════════
   TIMELINE (shared mobile + desktop)
   ══════════════════════════════════ */
.t3__timeline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
}

.t3__timeline--mobile {
  padding: 8px 0;
}

.t3__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.t3__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.t3__dot--1 { background: var(--c-accent); }
.t3__dot--2 { background: rgba(196, 150, 122, 0.53); }
.t3__dot--3 { background: rgba(196, 150, 122, 0.27); }
.t3__dot--4 {
  background: transparent;
  border: 2px solid var(--c-accent);
  box-sizing: border-box;
}

.t3__day {
  font-family: var(--ff-body);
  font-size: 10px;
  font-weight: 500;
  color: var(--c-white);
}

.t3__day--accent {
  color: var(--c-accent);
}

.t3__step-desc {
  font-family: var(--ff-body);
  font-size: 8px;
  color: rgba(255, 255, 255, 0.27);
}

.t3__line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 0 4px;
}

@media (min-width: 1024px) {
  .t3__dot {
    width: 10px;
    height: 10px;
  }

  .t3__day {
    font-size: 12px;
  }

  .t3__step-desc {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.33);
  }

  .t3__step {
    gap: 6px;
  }

  .t3__line {
    max-width: 120px;
    margin: 0 8px;
  }
}


/* ══════════════════════════════════
   CTA SECTION
   ══════════════════════════════════ */
.t-cta {
  background: var(--c-bg-dark);
  padding: 48px 24px;
}

.t-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.t-cta__title {
  font-family: var(--ff-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--c-white);
}

.t-cta__desc {
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
}

.t-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 14px 32px;
  background: var(--c-accent);
  border-radius: var(--r-pill);
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--c-white);
  letter-spacing: 1px;
  cursor: pointer;
  transition: background var(--t-fast), transform var(--t-fast);
}

.t-cta__btn:active {
  transform: scale(0.97);
}

.t-cta__btn span {
  font-size: 16px;
}

@media (min-width: 1024px) {
  .t-cta {
    padding: 80px 64px;
  }

  .t-cta__inner {
    gap: 20px;
  }

  .t-cta__title {
    font-size: 40px;
  }

  .t-cta__desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.47);
  }

  .t-cta__btn {
    padding: 16px 40px;
    font-size: 14px;
    gap: 10px;
  }

  .t-cta__btn span {
    font-size: 18px;
  }

  .t-cta__btn:hover {
    background: #b88568;
    transform: translateY(-1px);
  }
}
