/* Newve — Treatment Archive (/treatments/)
 * Hero + Filter tabs + Card grid
 */

/* Hero */
.nt-archive-hero {
  text-align: center;
  padding: 64px 0 40px;
}
.nt-archive-hero__eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--newve-primary);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 8px;
}
.nt-archive-hero__title {
  font-family: var(--newve-font-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  color: var(--newve-dark);
  margin: 0 0 12px;
}
.nt-archive-hero__lead {
  font-size: 16px;
  color: var(--newve-black-06, #666);
  margin: 0;
}

/* Archive container */
.nt-archive__inner {
  max-width: var(--newve-container-base, 1280px);
  margin: 0 auto;
  padding: 0 var(--newve-pad-desktop, 15px) 64px;
}

/* Filter tabs */
.nt-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--newve-border-soft, #eee);
}
.nt-filter__tab {
  padding: 8px 20px;
  background: none;
  border: 1px solid var(--newve-border, #ddd);
  border-radius: var(--newve-radius-pill, 9999px);
  font-size: 14px;
  font-weight: 500;
  color: var(--newve-black-06, #666);
  cursor: pointer;
  transition: all 150ms;
  white-space: nowrap;
}
.nt-filter__tab:hover {
  border-color: var(--newve-primary);
  color: var(--newve-primary);
}
.nt-filter__tab--active {
  background: var(--newve-dark);
  border-color: var(--newve-dark);
  color: var(--newve-white);
}

/* Card grid */
.nt-archive__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Card */
.nt-card {
  display: block;
  text-decoration: none;
  background: var(--newve-white);
  border-radius: var(--newve-radius-md, 14px);
  overflow: hidden;
  border: 1px solid var(--newve-border-soft, #eee);
  transition: transform 300ms ease, box-shadow 300ms ease;
}
.nt-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--newve-shadow-hover);
}

.nt-card__image {
  position: relative;
  overflow: hidden;
}
.nt-card__image img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
}
.nt-card__placeholder {
  width: 100%;
  aspect-ratio: 3 / 2;
  background: linear-gradient(135deg, var(--newve-bg-light) 0%, var(--newve-bg-warm, #f8f8f8) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.nt-card__placeholder span {
  font-family: var(--newve-font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--newve-border, #ddd);
}
.nt-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--newve-primary);
  color: var(--newve-white);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--newve-radius-pill, 9999px);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.nt-card__body {
  padding: 16px 20px 20px;
}
.nt-card__title {
  font-family: var(--newve-font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--newve-dark);
  margin: 0 0 4px;
}
.nt-card__brand {
  display: block;
  font-size: 13px;
  color: var(--newve-black-08, #888);
  margin-bottom: 8px;
}
.nt-card__price {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: var(--newve-primary);
}
.nt-card__price--consult {
  color: var(--newve-black-08, #888);
  font-weight: 400;
  font-style: italic;
}

/* Responsive */
@media (max-width: 1023px) {
  .nt-archive__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .nt-archive__grid { grid-template-columns: 1fr; gap: 16px; }
  .nt-filter { gap: 6px; }
  .nt-filter__tab { padding: 6px 14px; font-size: 13px; }
}
