/* ============================================================
   ARTICLE SOIN — Harmony Beauty Clinic
   ============================================================ */

/* ── HERO ─────────────────────────────────────────────────── */
.art-hero {
  position: relative;
  height: 72vh;
  min-height: 480px;
  max-height: 680px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.art-hero__bg {
  position: absolute;
  inset: 0;
}
.art-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.art-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20,14,10,.85) 0%,
    rgba(20,14,10,.45) 45%,
    rgba(20,14,10,.15) 100%
  );
}

.art-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2rem 2.5rem;
}

/* Breadcrumb in hero */
.art-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .3rem;
  font-size: .7rem;
  letter-spacing: .1em;
  color: rgba(255,255,255,.55);
  margin-bottom: 1.25rem;
}
.art-breadcrumb a { color: rgba(255,255,255,.55); transition: color .2s; }
.art-breadcrumb a:hover { color: var(--gold); }
.art-breadcrumb span:last-child { color: rgba(255,255,255,.8); }

.art-hero__eyebrow {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem;
}

.art-hero__title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 200;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 2rem;
  text-wrap: balance;
}

/* ── FACTS STRIP ──────────────────────────────────────────── */
.art-facts {
  display: flex;
  gap: 0;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px;
  overflow: hidden;
  max-width: 580px;
}

.art-fact {
  flex: 1;
  padding: .9rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: .2rem;
  border-right: 1px solid rgba(255,255,255,.12);
}
.art-fact:last-child { border-right: none; }

.art-fact__label {
  font-size: .58rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.art-fact__val {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--white);
  line-height: 1.2;
}

/* ── LAYOUT WRAP ──────────────────────────────────────────── */
.art-wrap {
  display: grid;
  grid-template-columns: minmax(0,1fr) 300px;
  gap: 4rem;
  max-width: 1140px;
  margin: 0 auto;
  padding: 4rem 2rem;
  align-items: start;
}

/* ── ARTICLE MAIN ─────────────────────────────────────────── */
.art-main { min-width: 0; }

.art-lead {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

/* ── ARTICLE BODY (editor output) ─────────────────────────── */
.art-body {
  font-family: var(--sans);
  font-size: .93rem;
  line-height: 1.9;
  color: var(--dark);
}

.art-body h2 {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 300;
  color: var(--dark);
  margin: 2.5rem 0 1rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid var(--border);
  letter-spacing: .01em;
}

.art-body h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--dark);
  margin: 1.75rem 0 .6rem;
}

.art-body p {
  color: var(--muted);
  margin-bottom: 1.1rem;
}

.art-body ul, .art-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1.1rem;
  color: var(--muted);
}

.art-body ul { list-style: none; padding-left: 0; }
.art-body ul li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: .5rem;
}
.art-body ul li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 1rem;
}

.art-body strong { color: var(--dark); font-weight: 600; }
.art-body a { color: var(--gold); text-decoration: underline; }

/* ── INLINE CTA ───────────────────────────────────────────── */
.art-inline-cta {
  margin-top: 3rem;
  background: linear-gradient(135deg, #2D2420 0%, #3D3028 100%);
  border-radius: 20px;
  padding: 2.25rem 2rem;
}

.art-inline-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.art-inline-cta__title {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: .3rem;
}

.art-inline-cta__sub {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  letter-spacing: .03em;
}

.art-inline-cta__btns {
  display: flex;
  gap: .75rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ── SIDEBAR ──────────────────────────────────────────────── */
.art-sidebar {
  position: sticky;
  top: 110px;
}

.art-sidebar__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-card);
}

.art-sidebar__eyebrow {
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}

.art-sidebar__title {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--dark);
  line-height: 1.2;
}

.art-sidebar__info {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.art-sidebar__info > div {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}

.art-sidebar__info strong {
  font-size: .6rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

.art-sidebar__info span,
.art-sidebar__info a {
  font-size: .85rem;
  color: var(--dark);
  text-decoration: none;
  line-height: 1.4;
}
.art-sidebar__info a:hover { color: var(--gold); }

.art-sidebar__link {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(196,154,122,.4);
  padding-bottom: 2px;
  align-self: flex-start;
  transition: color .2s, border-color .2s;
}
.art-sidebar__link:hover { color: var(--gold-dk); border-color: var(--gold-dk); }

/* ── FAQ SECTION ──────────────────────────────────────────── */
.art-faq-section {
  background: var(--white);
  padding: 5rem 2rem;
  border-top: 1px solid var(--border);
}

.art-faq-inner {
  max-width: 760px;
  margin: 0 auto;
}

.art-faq-header {
  margin-bottom: 2.5rem;
}

.art-faq-title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 200;
  color: var(--dark);
  margin-top: .4rem;
}
.art-faq-title em { color: var(--gold); font-style: italic; }

.art-faq-list { display: flex; flex-direction: column; gap: .75rem; }

.art-faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .2s;
}
.art-faq-item.open { border-color: var(--gold); }

.art-faq-q {
  width: 100%;
  padding: 1.1rem 1.25rem;
  background: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--sans);
  font-size: .92rem;
  font-weight: 500;
  color: var(--dark);
  text-align: left;
  transition: background .2s;
}
.art-faq-q:hover { background: var(--cream); }

.art-faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: background .2s, border-color .2s;
}
.art-faq-item.open .art-faq-icon {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.art-faq-a {
  padding: 0 1.25rem 1.25rem;
  font-size: .87rem;
  line-height: 1.8;
  color: var(--muted);
}
.art-faq-a p { margin-bottom: .75rem; }
.art-faq-a ul { padding-left: 1.2rem; }
.art-faq-a li { margin-bottom: .4rem; }

/* ── AUTRES SOINS ─────────────────────────────────────────── */
.art-autres {
  background: var(--cream);
  padding: 5rem 2rem;
  border-top: 1px solid var(--border);
}

.art-autres__inner { max-width: 1140px; margin: 0 auto; }

.art-autres__header { margin-bottom: 2.5rem; }

.art-autres__title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 200;
  color: var(--dark);
  margin-top: .4rem;
}
.art-autres__title em { color: var(--gold); font-style: italic; }

.art-autres__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.art-autre-card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  text-decoration: none;
  transition: transform .25s, box-shadow .25s;
}
.art-autre-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(180,140,110,.18);
}

.art-autre-card__img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.art-autre-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.art-autre-card:hover .art-autre-card__img img { transform: scale(1.04); }

.art-autre-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45,36,32,.4) 0%, transparent 60%);
}

.art-autre-card__body {
  padding: 1.25rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  flex: 1;
}

.art-autre-card__cat {
  font-size: .6rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
}

.art-autre-card__name {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--dark);
  line-height: 1.3;
}

.art-autre-card__price {
  font-size: .8rem;
  color: var(--muted);
}

.art-autre-card__cta {
  margin-top: auto;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: .75rem;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .art-wrap {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 2.5rem 1.5rem;
  }
  .art-sidebar { position: static; top: auto; }
  .art-autres__grid { grid-template-columns: repeat(2, 1fr); }
  .art-facts { flex-wrap: wrap; }
  .art-fact { flex: 1 1 40%; border-bottom: 1px solid rgba(255,255,255,.12); }
}

@media (max-width: 600px) {
  .art-hero { height: 60vh; min-height: 400px; }
  .art-hero__title { font-size: 1.6rem; }
  .art-autres__grid { grid-template-columns: 1fr; }
  .art-inline-cta__inner { flex-direction: column; align-items: flex-start; }
  .art-fact { flex: 1 1 45%; }
}
