/* =========================================================
   TREATMENTS SECTION - FULL STANDALONE CSS
   ========================================================= */

.treat {
  --bg: #0a1632;
  --bg-elev: #0e1c3e;
  --bg-deep: #070f24;
  --bg-card: #13234c;
  --bg-warm: #0c1838;

  --text: #f5efe4;
  --text-dim: #a3adc8;
  --text-mute: #6b7592;

  --accent: #d4a574;
  --accent-soft: #e8c890;

  --line: rgba(245, 239, 228, 0.10);
  --line-soft: rgba(245, 239, 228, 0.05);
  --line-strong: rgba(245, 239, 228, 0.18);

  --tint: rgba(212, 165, 116, 0.08);
  --tint-strong: rgba(212, 165, 116, 0.18);

  --shadow: 0 30px 60px -25px rgba(0, 0, 0, 0.5);
  --max: 1320px;
  --pad: clamp(20px, 4vw, 64px);

  position: relative;
  background: var(--bg);
  color: var(--text);
  padding: clamp(80px, 10vw, 140px) var(--pad);
  font-family: "Manrope", sans-serif;
  overflow: hidden;
  box-sizing: border-box;
}

.treat,
.treat * {
  box-sizing: border-box;
}

.treat .container {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}

.treat h1,
.treat h2,
.treat h3,
.treat h4,
.treat p,
.treat ul,
.treat li {
  margin-top: 0;
}

.treat h1,
.treat h2,
.treat h3,
.treat h4 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--text);
}


/* ================================
   SECTION HEAD
   ================================ */

.treat__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
  align-items: end;
}

.treat__title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(40px, 6vw, 84px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 0;
}

.treat__title em {
  font-style: italic;
  color: var(--accent);
}

.treat__lead {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.85;
  max-width: 480px;
  margin: 0;
}


/* ================================
   CATEGORY GRID
   ================================ */

.treat__cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}


/* ================================
   CATEGORY CARD
   ================================ */

.treat .cat {
  background: var(--bg-card);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  position: relative;
  transition: background-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.treat .cat:hover {
  background: var(--bg-warm);
}

.treat .cat__num {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  line-height: 1;
}

.treat .cat__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  font-weight: 300;
  line-height: 1;
  color: var(--text);
  margin: 0 0 24px;
}

.treat .cat__title em {
  font-style: italic;
  color: var(--accent);
}

.treat .cat__desc {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
  margin: 0 0 32px;
}

/* ================================
   CATEGORY IMAGE
   ================================ */

.treat .cat__image {
  width: 100%;
  aspect-ratio: 16 / 10;
  margin: 0 0 32px;
  padding: 0;
  overflow: hidden;
  flex-shrink: 0;

  background: var(--bg-deep);
  border: 1px solid var(--line-soft);
}

.treat .cat__image-img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;

  object-fit: cover;
  object-position: center;
}

/* ================================
   CATEGORY LIST
   ================================ */

.treat .cat__list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.treat .cat__list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--line-soft);
  transition: background-color 0.3s ease, padding-left 0.3s ease, padding-right 0.3s ease;
}

.treat .cat__list li:last-child {
  border-bottom: 1px solid var(--line-soft);
}

.treat .cat__list .name {
  color: var(--text);
  font-weight: 500;
  line-height: 1.4;
}

.treat .cat__list .name em {
  color: var(--accent);
  font-style: normal;
  font-weight: 500;
}

.treat .cat__list .name small {
  display: block;
  font-size: 11px;
  color: var(--text-mute);
  font-weight: 400;
  margin-top: 2px;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.treat .cat__list .tag {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
  white-space: nowrap;
  line-height: 1.4;
  text-align: right;
}

.treat .cat__list li:hover {
  background: var(--tint);
  padding-left: 12px;
  padding-right: 12px;
}

.treat .cat__list li:hover .name {
  color: var(--accent);
}

.treat .cat__list li:hover .tag {
  color: var(--text-dim);
}


/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 1100px) {
  .treat__cats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 880px) {
  .treat__head {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 56px;
  }

  .treat__cats {
    grid-template-columns: 1fr;
  }

  .treat .cat {
    padding: 44px 36px;
  }
}

@media (max-width: 560px) {
  .treat {
    padding: 80px 20px;
  }

  .treat__title {
    font-size: clamp(42px, 12vw, 64px);
  }

  .treat__lead {
    font-size: 15px;
  }

  .treat .cat {
    padding: 40px 28px;
  }

  .treat .cat__title {
    font-size: 38px;
  }

  .treat .cat__list li {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .treat .cat__list .tag {
    text-align: left;
    white-space: normal;
  }
}