/* ─────────────────────────────────────────
   HEAVENLY MASSAGE — Main Site Stylesheet
   heavenlymassage.eu
   ───────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Jost:wght@300;400;500;600&display=swap');

/* ── TOKENS (identical to members theme) ── */
:root {
  --cream:        #FAF7F2;
  --beige:        #F0EAE0;
  --sand:         #E2D9CC;
  --warm-grey:    #8C8279;
  --dark:         #2C2825;
  --accent:       #B8956A;
  --gold:         #C9A96E;
  --gold-light:   #E8C98A;
  --vip-bg:       #FDF6E9;
  --vip-border:   #E8D9BC;
  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'Jost', sans-serif;
  --radius:       6px;
  --shadow:       0 2px 16px rgba(44,40,37,0.08);
  --shadow-lg:    0 8px 48px rgba(44,40,37,0.14);
  --transition:   0.24s ease;
  --container:    1320px;
  --header-h:     76px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--dark);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-decoration: none; transition: opacity var(--transition); }
a:hover { opacity: .75; }
img { max-width: 100%; height: auto; display: block; }

/* ── LAYOUT ── */
.hm-container { max-width: var(--container); margin: 0 auto; padding: 0 48px; }
@media (max-width: 900px) { .hm-container { padding: 0 20px; } }

/* ─────────────────────────────────────────
   HEADER
   ───────────────────────────────────────── */
#hm-header {
  background: rgba(250,247,242,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--sand);
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--header-h);
  transition: box-shadow var(--transition);
}
#hm-header.scrolled { box-shadow: 0 2px 24px rgba(44,40,37,0.08); }

#hm-header .hm-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.hm-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: .04em;
  color: var(--dark);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.hm-logo em { color: var(--accent); font-style: italic; }

/* ── MAIN NAV ── */
#hm-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  flex: 1;
  justify-content: center;
}
#hm-nav a {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--warm-grey);
  text-decoration: none;
  transition: color var(--transition);
  white-space: nowrap;
}
#hm-nav a:hover,
#hm-nav .current-menu-item a { color: var(--dark); }

.hm-btn-vip {
  background: var(--dark);
  color: var(--gold) !important;
  padding: 9px 20px;
  border-radius: 2px;
  font-size: 10px !important;
  letter-spacing: .18em !important;
  text-transform: uppercase;
  transition: background var(--transition), color var(--transition) !important;
}
.hm-btn-vip:hover { background: var(--accent); color: var(--cream) !important; opacity: 1 !important; }

/* ── HAMBURGER ── */
.hm-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

/* ── MOBILE NAV ── */
@media (max-width: 860px) {
  .hm-hamburger { display: block; }
  #hm-nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--sand);
    flex-direction: column;
    gap: 0;
    padding: 16px 0 24px;
    justify-content: flex-start;
    box-shadow: var(--shadow-lg);
  }
  #hm-nav.open { display: flex; }
  #hm-nav li { width: 100%; text-align: center; }
  #hm-nav a { display: block; padding: 14px 20px; font-size: 12px; }
  .hm-btn-vip { margin: 8px 32px 0; border-radius: 2px; }
}

/* ─────────────────────────────────────────
   HERO — HOMEPAGE
   ───────────────────────────────────────── */
.hm-hero {
  position: relative;
  background: var(--dark);
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  align-items: center;
}

.hm-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 65% 50%, rgba(184,149,106,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 15% 30%, rgba(201,169,110,0.10) 0%, transparent 60%);
}

/* Decorative lines */
.hm-hero__bg::before {
  content: '';
  position: absolute;
  top: 12%;
  right: 8%;
  width: 1px;
  height: 60%;
  background: linear-gradient(to bottom, transparent, rgba(201,169,110,0.3), transparent);
}
.hm-hero__bg::after {
  content: '';
  position: absolute;
  bottom: 15%;
  left: 8%;
  width: 120px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,169,110,0.35), transparent);
}

.hm-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hm-hero__inner .hm-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
}

.hm-hero__text { color: var(--cream); }

.hm-hero__eyebrow {
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 400;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hm-hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.hm-hero__title {
  font-family: var(--font-display);
  font-size: clamp(52px, 6vw, 82px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  color: var(--cream);
}
.hm-hero__title em {
  font-style: italic;
  color: var(--gold-light);
}

.hm-hero__sub {
  font-size: 15px;
  color: rgba(250,247,242,0.65);
  line-height: 1.75;
  max-width: 400px;
  margin-bottom: 40px;
}

.hm-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── FEATURED VIDEO (hero right) ── */
.hm-hero__video {
  position: relative;
}

.hm-hero__video-thumb {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--warm-grey);
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}
.hm-hero__video-thumb iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.hm-hero__video-label {
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.45);
  margin-top: 16px;
  text-align: center;
}

@media (max-width: 860px) {
  .hm-hero__inner .hm-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .hm-hero { min-height: auto; }
  .hm-hero__title { font-size: 48px; }
}

/* ─────────────────────────────────────────
   BUTTONS
   ───────────────────────────────────────── */
.hm-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.hm-btn:active { transform: scale(.98); }

.hm-btn--primary {
  background: var(--accent);
  color: var(--cream);
}
.hm-btn--primary:hover { background: #a07550; opacity: 1; color: var(--cream); }

.hm-btn--ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(250,247,242,0.35);
}
.hm-btn--ghost:hover { border-color: var(--gold); color: var(--gold); opacity: 1; }

.hm-btn--dark {
  background: var(--dark);
  color: var(--cream);
}
.hm-btn--dark:hover { background: #3d3733; opacity: 1; color: var(--cream); }

.hm-btn--outline {
  background: transparent;
  color: var(--dark);
  border: 1px solid var(--sand);
}
.hm-btn--outline:hover { border-color: var(--accent); color: var(--accent); opacity: 1; }

.hm-btn--vip {
  background: var(--gold);
  color: var(--dark);
}
.hm-btn--vip:hover { background: var(--gold-light); opacity: 1; color: var(--dark); }

.hm-btn svg { width: 15px; height: 15px; }

/* ─────────────────────────────────────────
   SECTION HEADERS
   ───────────────────────────────────────── */
.hm-section { padding: 96px 0; }
.hm-section--tight { padding: 64px 0; }

.hm-section-header {
  margin-bottom: 56px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.hm-section-label {
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hm-section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.hm-section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--dark);
}
.hm-section-title em { font-style: italic; color: var(--accent); }

/* ─────────────────────────────────────────
   VIDEO GRID
   ───────────────────────────────────────── */
.hm-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 1000px) { .hm-video-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .hm-video-grid { grid-template-columns: 1fr; } }

.hm-video-card {
  background: var(--beige);
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.hm-video-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.hm-video-card__thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--sand);
  overflow: hidden;
}
.hm-video-card__thumb iframe {
  width: 100%;
  height: 100%;
  border: none;
  pointer-events: none;
}
.hm-video-card__thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.hm-video-card:hover .hm-video-card__thumb-img { transform: scale(1.04); }

.hm-video-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(44,40,37,0);
  transition: background var(--transition);
  cursor: pointer;
}
.hm-video-card__play:hover { background: rgba(44,40,37,0.35); }
.hm-video-card__play svg {
  width: 54px;
  height: 54px;
  opacity: 0;
  transition: opacity var(--transition);
}
.hm-video-card:hover .hm-video-card__play svg { opacity: 1; }

.hm-video-card__body { padding: 20px 22px 22px; }

.hm-video-card__cat {
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.hm-video-card__title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 8px;
}
.hm-video-card__meta {
  font-size: 12px;
  color: var(--warm-grey);
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ── VIDEO MODAL ── */
.hm-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20,16,14,0.88);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.hm-modal-overlay.open { display: flex; }
.hm-modal-box {
  width: 100%;
  max-width: 900px;
  position: relative;
}
.hm-modal-box iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
  border-radius: 4px;
}
.hm-modal-close {
  position: absolute;
  top: -44px;
  right: 0;
  background: none;
  border: none;
  color: rgba(250,247,242,0.7);
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition);
}
.hm-modal-close:hover { color: var(--cream); }

/* ─────────────────────────────────────────
   CATEGORY TABS
   ───────────────────────────────────────── */
.hm-category-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hm-tab {
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 8px 18px;
  border: 1px solid var(--sand);
  border-radius: 24px;
  color: var(--warm-grey);
  background: transparent;
  cursor: pointer;
  font-family: var(--font-body);
  text-decoration: none;
  display: inline-block;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.hm-tab:hover { border-color: var(--accent); color: var(--accent); opacity: 1; }
.hm-tab.active { background: var(--dark); border-color: var(--dark); color: var(--cream); }

/* ─────────────────────────────────────────
   THERAPISTS / MODELS
   ───────────────────────────────────────── */
.hm-therapist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 36px;
}

/* Centered variant — for homepage with 2 therapists */
.hm-therapist-grid--centered {
  grid-template-columns: repeat(2, minmax(0, 420px));
  justify-content: center;
}
@media (max-width: 860px) {
  .hm-therapist-grid--centered {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
}

/* VIP stats inside dark strip */
.hm-vip-stats {
  display: flex;
  gap: 32px;
  margin: 24px 0 20px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hm-vip-stat { text-align: center; }
.hm-vip-stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hm-vip-stat__lbl {
  display: block;
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.4);
  margin-top: 5px;
}

.hm-therapist-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--beige);
  border: 1px solid var(--sand);
  transition: box-shadow var(--transition), transform var(--transition);
}
.hm-therapist-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.hm-therapist-card__img {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--sand);
}
.hm-therapist-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .5s ease;
}
.hm-therapist-card:hover .hm-therapist-card__img img { transform: scale(1.05); }

.hm-therapist-card__body {
  padding: 28px;
}
.hm-therapist-card__name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0;
  margin-bottom: 6px;
  color: var(--dark);
}
.hm-therapist-card__title {
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.hm-therapist-card__bio {
  font-size: 14px;
  color: var(--warm-grey);
  line-height: 1.7;
  margin-bottom: 22px;
}
.hm-therapist-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 22px;
}
.hm-tag {
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 12px;
  background: var(--sand);
  border-radius: 24px;
  color: var(--warm-grey);
}

/* ─────────────────────────────────────────
   VIP STRIP
   ───────────────────────────────────────── */
.hm-vip-strip {
  background: var(--dark);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.hm-vip-strip::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 60% 100% at 80% 50%, rgba(201,169,110,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 30% 60% at 10% 20%, rgba(184,149,106,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hm-vip-strip .hm-container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.hm-vip-strip__label {
  font-size: 9px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
  margin-bottom: 14px;
}

.hm-vip-strip__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hm-vip-strip__title em { font-style: italic; color: var(--gold-light); }

.hm-vip-strip__perks {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}
.hm-vip-strip__perks li {
  font-size: 12px;
  color: rgba(250,247,242,0.6);
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  gap: 7px;
}
.hm-vip-strip__perks li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.7;
  flex-shrink: 0;
}

.hm-vip-strip__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.hm-vip-strip__cta .hm-btn { min-width: 200px; justify-content: center; }
.hm-vip-strip__note {
  font-size: 10px;
  color: rgba(250,247,242,0.35);
  letter-spacing: .06em;
  text-align: center;
}

@media (max-width: 760px) {
  .hm-vip-strip .hm-container { grid-template-columns: 1fr; }
  .hm-vip-strip__cta { align-items: flex-start; }
}

/* ─────────────────────────────────────────
   NEWSLETTER
   ───────────────────────────────────────── */
.hm-newsletter {
  background: var(--beige);
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
  padding: 72px 0;
  text-align: center;
}
.hm-newsletter__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 400;
  margin-bottom: 12px;
}
.hm-newsletter__sub {
  font-size: 14px;
  color: var(--warm-grey);
  margin-bottom: 36px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.hm-newsletter__form {
  display: flex;
  gap: 0;
  max-width: 460px;
  margin: 0 auto;
}
.hm-newsletter__form input[type="email"] {
  flex: 1;
  border: 1px solid var(--sand);
  border-right: none;
  border-radius: 2px 0 0 2px;
  padding: 0 20px;
  font-family: var(--font-body);
  font-size: 14px;
  background: var(--cream);
  color: var(--dark);
  outline: none;
  transition: border-color var(--transition);
  height: 48px;
}
.hm-newsletter__form input[type="email"]:focus { border-color: var(--accent); }
.hm-newsletter__form input[type="email"]::placeholder { color: var(--warm-grey); }
.hm-newsletter__form .hm-btn {
  border-radius: 0 2px 2px 0;
  height: 48px;
  padding: 0 24px;
}
.hm-newsletter__note {
  font-size: 11px;
  color: var(--warm-grey);
  margin-top: 14px;
  opacity: .7;
}

@media (max-width: 520px) {
  .hm-newsletter__form { flex-direction: column; }
  .hm-newsletter__form input[type="email"] { border-right: 1px solid var(--sand); border-bottom: none; border-radius: 2px 2px 0 0; }
  .hm-newsletter__form .hm-btn { border-radius: 0 0 2px 2px; justify-content: center; }
}

/* ─────────────────────────────────────────
   BLOG
   ───────────────────────────────────────── */
.hm-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px)  { .hm-blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .hm-blog-grid { grid-template-columns: 1fr; } }

.hm-post-card {
  background: var(--beige);
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.hm-post-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

.hm-post-card__img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--sand);
}
.hm-post-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.hm-post-card:hover .hm-post-card__img img { transform: scale(1.04); }

.hm-post-card__body { padding: 24px; }
.hm-post-card__cat {
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.hm-post-card__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 10px;
}
.hm-post-card__excerpt {
  font-size: 13px;
  color: var(--warm-grey);
  line-height: 1.7;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hm-post-card__date {
  font-size: 11px;
  color: var(--warm-grey);
  opacity: .7;
}

/* ─────────────────────────────────────────
   SINGLE POST / PAGE
   ───────────────────────────────────────── */
.hm-single {
  max-width: 760px;
  margin: 72px auto;
  padding: 0 24px;
}
.hm-single-header { margin-bottom: 40px; }
.hm-single-cat {
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.hm-single-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--dark);
  margin-bottom: 20px;
}
.hm-single-meta {
  font-size: 12px;
  color: var(--warm-grey);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hm-single-meta::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--sand);
}

.hm-single-featured { margin: 36px 0; border-radius: var(--radius); overflow: hidden; }
.hm-single-featured img { width: 100%; }

.hm-entry-content {
  font-size: 16px;
  line-height: 1.8;
  color: #3d3830;
}
.hm-entry-content h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  margin: 48px 0 16px;
  color: var(--dark);
}
.hm-entry-content h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  margin: 36px 0 12px;
  color: var(--dark);
}
.hm-entry-content p { margin-bottom: 22px; }
.hm-entry-content ul, .hm-entry-content ol { margin: 0 0 22px 24px; }
.hm-entry-content li { margin-bottom: 6px; }
.hm-entry-content a { border-bottom: 1px solid var(--sand); }
.hm-entry-content a:hover { border-bottom-color: var(--accent); }
.hm-entry-content blockquote {
  border-left: 3px solid var(--accent);
  padding: 16px 0 16px 24px;
  margin: 32px 0;
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  color: var(--warm-grey);
}
.hm-entry-content img { border-radius: var(--radius); margin: 8px 0; }

/* ── Gutenberg blocks w artykułach ── */
.hm-single .wp-block-embed,
.hm-single .wp-block-image,
.hm-single .wp-block-group,
.hm-single .wp-block-cover,
.hm-single .wp-block-table {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/* Embed (YouTube iframe) */
.hm-single .wp-block-embed__wrapper {
  position: relative;
  width: 100%;
}
.hm-single .wp-block-embed__wrapper iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
  border-radius: var(--radius);
}

/* VIP CTA block wewnątrz artykułu */
.hm-single .wp-block-group[style*="#2C2825"] {
  border-radius: var(--radius);
  margin: 40px 0;
}
.hm-single .wp-block-group[style*="#2C2825"] p { margin-bottom: 10px; }
.hm-single .wp-block-group[style*="#2C2825"] h3 { margin-bottom: 10px; }

/* Lista w artykule */
.hm-entry-content ul li { line-height: 1.75; }
.hm-entry-content ul li strong { color: var(--dark); }

/* Table */
.hm-entry-content table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 14px; }
.hm-entry-content th { background: var(--beige); padding: 10px 14px; text-align: left; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--warm-grey); border-bottom: 2px solid var(--sand); }
.hm-entry-content td { padding: 10px 14px; border-bottom: 1px solid var(--sand); color: var(--dark); }
.hm-entry-content tr:last-child td { border-bottom: none; }

/* ─────────────────────────────────────────
   STATS STRIP (homepage)
   ───────────────────────────────────────── */
.hm-stats-strip {
  background: var(--dark);
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.hm-stats-strip .hm-container {
  display: flex;
  justify-content: space-around;
  gap: 32px;
  flex-wrap: wrap;
}
.hm-stat {
  text-align: center;
}
.hm-stat__num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hm-stat__label {
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.45);
  margin-top: 6px;
}

/* ─────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────── */
#hm-footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 56px 0 32px;
}

.hm-footer__top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.hm-footer__brand .hm-logo { color: var(--cream); font-size: 20px; }
.hm-footer__brand .hm-logo em { color: var(--gold); }
.hm-footer__tagline {
  font-size: 13px;
  color: rgba(250,247,242,0.4);
  margin-top: 12px;
  line-height: 1.65;
  max-width: 220px;
}

.hm-footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.hm-footer__col-title {
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.35);
  margin-bottom: 16px;
}
.hm-footer__col-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hm-footer__col-list a {
  font-size: 13px;
  color: rgba(250,247,242,0.55);
  transition: color var(--transition);
}
.hm-footer__col-list a:hover { color: var(--gold); opacity: 1; }

.hm-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.hm-footer__copy {
  font-size: 12px;
  color: rgba(250,247,242,0.3);
}
.hm-footer__legal {
  display: flex;
  gap: 24px;
  list-style: none;
}
.hm-footer__legal a {
  font-size: 11px;
  color: rgba(250,247,242,0.3);
}
.hm-footer__legal a:hover { color: rgba(250,247,242,0.6); opacity: 1; }

.hm-footer__social {
  display: flex;
  gap: 14px;
}
.hm-footer__social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250,247,242,0.45);
  transition: border-color var(--transition), color var(--transition);
}
.hm-footer__social a:hover { border-color: var(--gold); color: var(--gold); opacity: 1; }
.hm-footer__social svg { width: 16px; height: 16px; }

@media (max-width: 800px) {
  .hm-footer__top { grid-template-columns: 1fr; gap: 36px; }
  .hm-footer__links { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .hm-footer__links { grid-template-columns: 1fr; }
  .hm-footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ─────────────────────────────────────────
   PAGE HERO (inner pages)
   ───────────────────────────────────────── */
.hm-page-hero {
  background: var(--beige);
  border-bottom: 1px solid var(--sand);
  padding: 72px 0 60px;
  text-align: center;
}
.hm-page-hero__label {
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.hm-page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.08;
  color: var(--dark);
  margin-bottom: 16px;
}
.hm-page-hero__title em { font-style: italic; color: var(--accent); }
.hm-page-hero__sub {
  font-size: 15px;
  color: var(--warm-grey);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─────────────────────────────────────────
   PAGINATION
   ───────────────────────────────────────── */
.hm-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 64px;
  flex-wrap: wrap;
}
.hm-pagination a,
.hm-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--sand);
  border-radius: 2px;
  font-size: 13px;
  color: var(--warm-grey);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.hm-pagination a:hover { border-color: var(--accent); color: var(--accent); opacity: 1; }
.hm-pagination .current {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--cream);
}

/* ─────────────────────────────────────────
   UTILITIES
   ───────────────────────────────────────── */
.hm-text-center { text-align: center; }
.hm-bg-beige { background: var(--beige); }
.hm-divider {
  border: none;
  border-top: 1px solid var(--sand);
  margin: 0;
}

/* Fade-in on scroll — tylko dla elementow z hm-fade-in w HTML (nie kart filmow) */
.hm-fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s ease, transform .5s ease;
}
.hm-fade-in.visible {
  opacity: 1;
  transform: none;
}

/* Karty zawsze widoczne - bez animacji */
.hm-video-card,
.hm-post-card,
.hm-therapist-card,
.hm-video-card.hm-fade-in,
.hm-post-card.hm-fade-in,
.hm-therapist-card.hm-fade-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition: box-shadow var(--transition), transform var(--transition) !important;
}

/* ─────────────────────────────────────────
   TESTIMONIALS
   ───────────────────────────────────────── */
.hm-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
@media (max-width: 860px) { .hm-testimonials-grid { grid-template-columns: 1fr; } }
@media (max-width: 1000px) and (min-width: 861px) { .hm-testimonials-grid { grid-template-columns: repeat(2, 1fr); } }

.hm-testimonial {
  background: var(--cream);
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow var(--transition);
}
.hm-testimonial:hover { box-shadow: var(--shadow); }

.hm-testimonial__stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
}
.hm-testimonial__quote {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  color: var(--dark);
  line-height: 1.6;
  flex: 1;
  margin: 0;
  border: none;
  padding: 0;
}
.hm-testimonial__author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--sand);
}
.hm-testimonial__name {
  font-size: 12px;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: .04em;
}
.hm-testimonial__platform {
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(184,149,106,0.1);
  padding: 3px 10px;
  border-radius: 12px;
}

/* ─────────────────────────────────────────
   MILESTONES
   ───────────────────────────────────────── */
.hm-milestones {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 32px;
  padding: 32px 0;
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
}
.hm-milestone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--warm-grey);
}
.hm-milestone__icon {
  font-size: 18px;
  line-height: 1;
}
.hm-milestone__text strong { color: var(--dark); }
