/*
 * Theme Name:  Healing Imagined
 * Theme URI:   https://builtbydanny.com
 * Description: GeneratePress child theme for Carmynn Bradley's Healing Imagined yoga and hypnotherapy practice.
 * Author:      Built by Danny
 * Author URI:  https://builtbydanny.com
 * Template:    generatepress
 * Version:     1.0.0
 * License:     GNU General Public License v2 or later
 */

/* ============================================================
   DESIGN TOKENS
============================================================ */
:root {
  /* Yoga side */
  --yoga-bg-a:    #071a0d;
  --yoga-bg-b:    #0f2e18;
  --yoga-accent:  #6aab8a;
  --yoga-glow:    rgba(106, 171, 138, 0.18);

  /* Hypnotherapy side */
  --hypno-bg-a:   #0a0818;
  --hypno-bg-b:   #16102e;
  --hypno-accent: #9b8fd4;
  --hypno-glow:   rgba(155, 143, 212, 0.18);

  /* Neutrals */
  --hi-deep:      #060d08;
  --hi-mist:      #e2ede4;
  --hi-sage:      #8fb89e;
  --hi-earth:     #dfc9a8;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', sans-serif;
  --font-hand:    'Caveat', cursive;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  6rem;
}

/* ============================================================
   GLOBAL BASE
============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--hi-mist);
  background: var(--hi-deep);
  line-height: 1.75;
}

a {
  color: var(--yoga-accent);
  text-decoration: none;
  transition: opacity 0.2s;
}

a:hover { opacity: 0.75; }

/* ============================================================
   GENERATEPRESS OVERRIDES
   Strip GP chrome on all custom templates
============================================================ */

/* Hide GP header, nav, footer on all our standalone templates */
.hi-homepage .site-header,
.hi-homepage .site-footer,
.hi-homepage .navigation-bar,
.hi-classes-archive .site-header,
.hi-classes-archive .site-footer,
.hi-classes-archive .navigation-bar,
.hi-single-class-page .site-header,
.hi-single-class-page .site-footer,
.hi-single-class-page .navigation-bar {
  display: none !important;
}

/* Kill GP content column constraints */
.hi-homepage .site-content,
.hi-homepage .content-area,
.hi-homepage .inside-article,
.hi-homepage .entry-content,
.hi-classes-archive .site-content,
.hi-classes-archive .content-area,
.hi-classes-archive .inside-article,
.hi-classes-archive .entry-content,
.hi-single-class-page .site-content,
.hi-single-class-page .content-area,
.hi-single-class-page .inside-article,
.hi-single-class-page .entry-content {
  padding: 0 !important;
  margin: 0 !important;
  max-width: none !important;
  width: 100% !important;
}

/* Kill any GP body padding/margin */
.hi-homepage,
.hi-classes-archive,
.hi-single-class-page {
  margin: 0 !important;
  padding: 0 !important;
}

/* ============================================================
   HOMEPAGE BASE IMAGE
   The illustrated background -- sits beneath everything.
   Splits: woman/botanical left (yoga), ocean/sky right (hypno).
============================================================ */
.hi-homepage body,
body.hi-homepage {
  background: #060d08;
}

/* Full-viewport image fixed behind the split */
.hi-split::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image: url('https://healingwithcarmynn.com/wp-content/uploads/2026/06/Healing-Imagined-background.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  /* Warm desaturate so it reads as atmosphere not photo */
  filter: saturate(0.7) brightness(0.55);
  pointer-events: none;
}

/* ============================================================
   SPLIT SCREEN -- homepage
============================================================ */
.hi-split {
  position: fixed;
  inset: 0;
  display: flex;
}

.hi-half {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
  transition: flex 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.hi-split:has(.hi-half--yoga:hover)  .hi-half--yoga  { flex: 1.18; }
.hi-split:has(.hi-half--yoga:hover)  .hi-half--hypno { flex: 0.82; }
.hi-split:has(.hi-half--hypno:hover) .hi-half--hypno { flex: 1.18; }
.hi-split:has(.hi-half--hypno:hover) .hi-half--yoga  { flex: 0.82; }

/* ---- YOGA HALF ---- */
.hi-half--yoga {
  /* Transparent green tint overlay -- image shows through from ::before */
  background:
    radial-gradient(ellipse 90% 70% at 25% 30%, rgba(20,70,35,0.55) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 75% 85%, rgba(10,40,18,0.65) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 50% 10%, rgba(50,110,55,0.25) 0%, transparent 55%),
    linear-gradient(175deg, rgba(4,16,8,0.7) 0%, rgba(7,26,13,0.6) 40%, rgba(10,36,18,0.65) 70%, rgba(4,14,7,0.75) 100%);
}

/* ---- HYPNO HALF ---- */
.hi-half--hypno {
  /* Deep violet overlay -- image shows through, shifted right to show ocean */
  background:
    radial-gradient(ellipse 90% 70% at 75% 30%, rgba(55,35,120,0.65) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 25% 85%, rgba(20,12,60,0.7) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 50% 10%, rgba(80,55,160,0.3) 0%, transparent 55%),
    linear-gradient(175deg, rgba(6,4,18,0.75) 0%, rgba(13,10,31,0.65) 40%, rgba(19,13,46,0.7) 70%, rgba(6,4,18,0.8) 100%);
}

/* ---- TEXTURE OVERLAY ---- */
.hi-half-texture {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.2;
  transition: opacity 0.5s ease;
}

/* Yoga: botanical grain via SVG filter-like CSS */
.hi-half--yoga .hi-half-texture {
  background-image:
    radial-gradient(ellipse 3px 60px at 15% 20%, rgba(106,171,138,0.08) 0%, transparent 100%),
    radial-gradient(ellipse 2px 40px at 25% 55%, rgba(106,171,138,0.06) 0%, transparent 100%),
    radial-gradient(ellipse 3px 80px at 8% 70%, rgba(106,171,138,0.05) 0%, transparent 100%),
    radial-gradient(ellipse 2px 50px at 35% 15%, rgba(106,171,138,0.07) 0%, transparent 100%),
    radial-gradient(ellipse 1px 35px at 42% 80%, rgba(106,171,138,0.06) 0%, transparent 100%),
    radial-gradient(ellipse 80px 80px at 20% 40%, rgba(50,120,60,0.04) 0%, transparent 70%),
    radial-gradient(ellipse 60px 60px at 40% 70%, rgba(50,120,60,0.03) 0%, transparent 70%);
}

/* Hypno: star field */
.hi-half--hypno .hi-half-texture {
  background-image:
    radial-gradient(ellipse 1px 1px at 15% 20%, rgba(200,180,255,0.6) 0%, transparent 100%),
    radial-gradient(ellipse 1px 1px at 28% 65%, rgba(200,180,255,0.4) 0%, transparent 100%),
    radial-gradient(ellipse 2px 2px at 42% 30%, rgba(220,200,255,0.5) 0%, transparent 100%),
    radial-gradient(ellipse 1px 1px at 55% 80%, rgba(200,180,255,0.35) 0%, transparent 100%),
    radial-gradient(ellipse 1px 1px at 68% 45%, rgba(220,200,255,0.55) 0%, transparent 100%),
    radial-gradient(ellipse 2px 2px at 78% 15%, rgba(200,180,255,0.45) 0%, transparent 100%),
    radial-gradient(ellipse 1px 1px at 88% 70%, rgba(200,180,255,0.3) 0%, transparent 100%),
    radial-gradient(ellipse 1px 1px at 12% 88%, rgba(200,180,255,0.4) 0%, transparent 100%),
    radial-gradient(ellipse 1px 1px at 33% 10%, rgba(220,200,255,0.5) 0%, transparent 100%),
    radial-gradient(ellipse 2px 2px at 60% 55%, rgba(200,180,255,0.35) 0%, transparent 100%),
    radial-gradient(ellipse 1px 1px at 82% 35%, rgba(220,200,255,0.45) 0%, transparent 100%),
    radial-gradient(ellipse 1px 1px at 5% 50%, rgba(200,180,255,0.3) 0%, transparent 100%),
    radial-gradient(ellipse 1px 1px at 95% 90%, rgba(200,180,255,0.4) 0%, transparent 100%);
}

.hi-half:hover .hi-half-texture { opacity: 0.7; }

/* ---- GHOST WORD ---- */
.hi-half-ghost {
  position: absolute;
  z-index: 1;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(8rem, 22vw, 18rem);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.02em;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.hi-half--yoga  .hi-half-ghost {
  color: rgba(106,171,138,0.06);
  opacity: 1;
}

.hi-half--hypno .hi-half-ghost {
  color: rgba(155,143,212,0.06);
  opacity: 1;
}

.hi-half:hover .hi-half-ghost {
  opacity: 1;
  transform: translate(-50%, -52%) scale(1.03);
}

.hi-half--yoga:hover  .hi-half-ghost { color: rgba(106,171,138,0.1); }
.hi-half--hypno:hover .hi-half-ghost { color: rgba(155,143,212,0.1); }

/* ---- SHIMMER (yoga only) ---- */
.hi-half-shimmer {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s ease;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(180,230,180,0.03) 45%,
    rgba(200,255,200,0.06) 50%,
    rgba(180,230,180,0.03) 55%,
    transparent 70%
  );
  background-size: 200% 200%;
  animation: hi-shimmer 5s ease-in-out infinite;
}

.hi-half--yoga:hover .hi-half-shimmer { opacity: 1; }

@keyframes hi-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ---- ORBITAL RING (hypno only) ---- */
.hi-half-orbit {
  position: absolute;
  z-index: 2;
  width: clamp(280px, 55vw, 480px);
  height: clamp(280px, 55vw, 480px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(155,143,212,0.06);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s ease;
  animation: hi-orbit-spin 20s linear infinite;
}

.hi-half-orbit::before {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(155,143,212,0.5);
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 10px rgba(155,143,212,0.4);
}

.hi-half-orbit::after {
  content: '';
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(155,143,212,0.3);
  bottom: -1.5px;
  left: 30%;
  box-shadow: 0 0 6px rgba(155,143,212,0.3);
}

.hi-half--hypno:hover .hi-half-orbit { opacity: 1; }

@keyframes hi-orbit-spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ---- EDITORIAL WORDS ---- */
.hi-half-editorial {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.hi-half-editorial-word {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1rem, 2.8vw, 1.8rem);
  letter-spacing: 0.12em;
  line-height: 1.3;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  display: block;
}

.hi-half--yoga  .hi-half-editorial-word { color: rgba(198,232,213,0.7); }
.hi-half--hypno .hi-half-editorial-word { color: rgba(206,198,240,0.7); }

.hi-half:hover .hi-half-editorial-word:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0s; }
.hi-half:hover .hi-half-editorial-word:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.08s; }
.hi-half:hover .hi-half-editorial-word:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.16s; }

/* ---- DIVIDER LINE ---- */
.hi-split::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255,255,255,0.04) 20%,
    rgba(255,255,255,0.1) 50%,
    rgba(255,255,255,0.04) 80%,
    transparent 100%
  );
  z-index: 5;
  pointer-events: none;
}

/* ---- HALF CONTENT ---- */
.hi-half-content {
  position: relative;
  z-index: 4;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: 20vh;
  pointer-events: none;
  transition: transform 0.5s cubic-bezier(0.2, 0, 0.1, 1);
}

.hi-half:hover .hi-half-content { transform: translateY(-8px); }

.hi-half-icon {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  line-height: 1;
  opacity: 0.75;
  margin-bottom: 0.25rem;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.hi-half:hover .hi-half-icon {
  opacity: 1;
  transform: scale(1.1);
}

.hi-half-label {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.6rem, 4vw, 3rem);
  letter-spacing: 0.04em;
  line-height: 1;
  transition: letter-spacing 0.4s ease;
}

.hi-half--yoga  .hi-half-label { color: #c6e8d5; }
.hi-half--hypno .hi-half-label { color: #cec6f0; }

.hi-half:hover .hi-half-label { letter-spacing: 0.08em; }

.hi-half-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(0.58rem, 1.1vw, 0.7rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--hi-mist);
  opacity: 0.35;
  transition: opacity 0.4s ease;
}

.hi-half:hover .hi-half-sub { opacity: 0.6; }

.hi-half-cue {
  font-family: var(--font-hand);
  font-size: clamp(0.85rem, 1.8vw, 1.05rem);
  letter-spacing: 0.06em;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}

.hi-half--yoga  .hi-half-cue { color: var(--yoga-accent); }
.hi-half--hypno .hi-half-cue { color: var(--hypno-accent); }

.hi-half:hover .hi-half-cue { opacity: 0.8; transform: translateY(0); }

/* ---- GLOW BLOOM ---- */
.hi-half-bloom {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
  z-index: 2;
}

.hi-half--yoga  .hi-half-bloom {
  background:
    radial-gradient(ellipse 80% 60% at 50% 70%, rgba(80,180,110,0.12) 0%, transparent 65%),
    radial-gradient(ellipse 40% 30% at 50% 100%, rgba(50,150,80,0.1) 0%, transparent 60%);
}

.hi-half--hypno .hi-half-bloom {
  background:
    radial-gradient(ellipse 80% 60% at 50% 70%, rgba(130,100,220,0.12) 0%, transparent 65%),
    radial-gradient(ellipse 40% 30% at 50% 100%, rgba(90,60,180,0.1) 0%, transparent 60%);
}

.hi-half:hover .hi-half-bloom { opacity: 0.7; }

/* ============================================================
   BRAND BOX
============================================================ */
.hi-brand-box {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
  text-align: center;
  padding: clamp(1.2rem, 2.5vw, 2rem) clamp(1.5rem, 3.5vw, 2.8rem);
  background: rgba(6, 12, 8, 0.28);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  pointer-events: none;
  animation: hi-brand-float 8s ease-in-out infinite;
  box-shadow:
    /* Split glow -- green bleeds left, violet bleeds right */
    -30px 0 80px rgba(106,171,138,0.18),
    30px 0 80px rgba(155,143,212,0.18),
    /* Outer ambient halo */
    0 0 120px rgba(106,171,138,0.08),
    0 0 120px rgba(155,143,212,0.08),
    /* Subtle bottom shadow for lift */
    0 24px 60px rgba(0,0,0,0.35),
    /* Border highlight */
    0 0 0 1px rgba(255,255,255,0.06);
}

/* Subtle left/right color seam on the box border */
.hi-brand-box::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    rgba(106,171,138,0.08) 0%,
    transparent 40%,
    transparent 60%,
    rgba(155,143,212,0.08) 100%
  );
  pointer-events: none;
}

@keyframes hi-brand-float {
  0%, 100% { transform: translate(-50%, -50%) translateY(0px); }
  50%       { transform: translate(-50%, -50%) translateY(-8px); }
}

.hi-brand-eyebrow {
  font-family: var(--font-hand);
  font-size: clamp(0.8rem, 1.6vw, 1rem);
  color: var(--hi-sage);
  letter-spacing: 0.1em;
  opacity: 0.65;
  margin-bottom: 0.5rem;
}

.hi-brand-name {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.6rem, 2.8vw, 2.6rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--hi-mist);
  white-space: nowrap;
}

.hi-brand-name em {
  font-style: italic;
  color: var(--hi-earth);
}

.hi-brand-tagline {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(0.5rem, 1vw, 0.65rem);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--hi-sage);
  margin-top: 0.85rem;
  opacity: 0.4;
}

/* ============================================================
   FIREFLIES
============================================================ */
.hi-firefly {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: hi-ffloat linear infinite;
  z-index: 3;
}

@keyframes hi-ffloat {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.75; }
  100% { transform: translateY(-90px) translateX(var(--drift)); opacity: 0; }
}

/* ============================================================
   PRACTICE PANELS (slide-up overlays)
============================================================ */
.hi-panel {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.hi-panel.is-open { transform: translateY(0); }

.hi-panel--yoga  { background: linear-gradient(160deg, #071a0d 0%, #0d2a15 40%, #122a1a 100%); }
.hi-panel--hypno { background: linear-gradient(160deg, #0d0a1f 0%, #16102b 40%, #1a1230 100%); }

.hi-panel-close {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: flex-end;
  padding: 1.2rem 1.5rem;
  z-index: 10;
  background: inherit;
}

.hi-panel-close button {
  background: none;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--hi-mist);
  font-family: var(--font-hand);
  font-size: 1rem;
  padding: 0.4rem 1rem;
  border-radius: 2px;
  cursor: pointer;
  letter-spacing: 0.1em;
  transition: border-color 0.2s, opacity 0.2s;
  opacity: 0.6;
}

.hi-panel-close button:hover { opacity: 1; border-color: rgba(255,255,255,0.4); }

.hi-panel-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 5vw, 3rem) 5rem;
  width: 100%;
}

.hi-panel-eyebrow {
  font-family: var(--font-hand);
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  letter-spacing: 0.08em;
  margin-bottom: 0.6rem;
}

.hi-panel--yoga  .hi-panel-eyebrow { color: var(--yoga-accent); }
.hi-panel--hypno .hi-panel-eyebrow { color: var(--hypno-accent); }

.hi-panel-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 1.05;
  color: var(--hi-mist);
}

.hi-panel--yoga  .hi-panel-title em { font-style: italic; color: var(--yoga-accent); }
.hi-panel--hypno .hi-panel-title em { font-style: italic; color: var(--hypno-accent); }

.hi-panel-divider {
  width: 60px;
  height: 1px;
  margin: 1.5rem 0;
}

.hi-panel--yoga  .hi-panel-divider { background: var(--yoga-accent); opacity: 0.5; }
.hi-panel--hypno .hi-panel-divider { background: var(--hypno-accent); opacity: 0.5; }

.hi-panel-lead {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 300;
  color: var(--hi-earth);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.hi-panel-body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  color: var(--hi-sage);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

/* Offerings grid */
.hi-offerings {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(clamp(140px, 30%, 200px), 1fr));
  gap: 1rem;
  margin: 2rem 0 2.5rem;
}

.hi-offering-item {
  padding: 1rem 1.2rem;
  border-radius: 2px;
}

.hi-panel--yoga  .hi-offering-item { border: 1px solid rgba(106,171,138,0.15); background: rgba(106,171,138,0.04); }
.hi-panel--hypno .hi-offering-item { border: 1px solid rgba(155,143,212,0.15); background: rgba(155,143,212,0.04); }

.hi-offering-name {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.hi-panel--yoga  .hi-offering-name { color: var(--yoga-accent); }
.hi-panel--hypno .hi-offering-name { color: var(--hypno-accent); }

.hi-offering-desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.8rem;
  color: var(--hi-sage);
  line-height: 1.5;
  opacity: 0.8;
}

/* Classes link inside panel */
.hi-panel-classes-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-hand);
  font-size: 1rem;
  letter-spacing: 0.06em;
  margin-bottom: 2rem;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.hi-panel--yoga  .hi-panel-classes-link { color: var(--yoga-accent); }
.hi-panel--hypno .hi-panel-classes-link { color: var(--hypno-accent); }

.hi-panel-classes-link:hover { opacity: 1; }

/* CTA button */
.hi-panel-cta {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.85rem 2.2rem;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  text-decoration: none;
}

.hi-panel--yoga  .hi-panel-cta { background: var(--yoga-accent); color: #071a0d; }
.hi-panel--hypno .hi-panel-cta { background: var(--hypno-accent); color: #0d0a1f; }

.hi-panel-cta:hover { opacity: 0.85; transform: translateY(-2px); }

/* Credentials */
.hi-credentials {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.hi-credentials-label {
  font-family: var(--font-hand);
  font-size: 0.9rem;
  color: var(--hi-sage);
  opacity: 0.6;
  margin-bottom: 0.8rem;
  letter-spacing: 0.08em;
}

.hi-credential-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hi-cred-tag {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  color: var(--hi-mist);
  opacity: 0.65;
}

.hi-panel--yoga  .hi-cred-tag { background: rgba(106,171,138,0.12); border: 1px solid rgba(106,171,138,0.2); }
.hi-panel--hypno .hi-cred-tag { background: rgba(155,143,212,0.12); border: 1px solid rgba(155,143,212,0.2); }

/* Bio card */
.hi-bio-card {
  margin-top: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  border-radius: 2px;
}

.hi-panel--yoga  .hi-bio-card { background: rgba(106,171,138,0.06); border: 1px solid rgba(106,171,138,0.1); }
.hi-panel--hypno .hi-bio-card { background: rgba(155,143,212,0.06); border: 1px solid rgba(155,143,212,0.1); }

.hi-bio-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.hi-panel--yoga  .hi-bio-avatar { background: rgba(106,171,138,0.2); }
.hi-panel--hypno .hi-bio-avatar { background: rgba(155,143,212,0.2); }

.hi-bio-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--hi-mist);
  margin-bottom: 0.2rem;
}

.hi-bio-role {
  font-family: var(--font-hand);
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
}

.hi-panel--yoga  .hi-bio-role { color: var(--yoga-accent); }
.hi-panel--hypno .hi-bio-role { color: var(--hypno-accent); }

.hi-bio-body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.82rem;
  color: var(--hi-sage);
  line-height: 1.7;
  opacity: 0.85;
}

/* ============================================================
   UPCOMING SESSIONS SECTION (archive page)
============================================================ */
.hi-upcoming-section {
  max-width: 960px;
  margin: 0 auto var(--space-md);
  padding: 0 var(--space-sm);
}

.hi-upcoming-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.hi-upcoming-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--hi-mist);
  line-height: 1;
  margin-bottom: 0;
}

.hi-upcoming-title em { font-style: italic; color: var(--hi-earth); }

/* Inline filter variant -- sits beside the title */
.hi-classes-filters--inline {
  margin-bottom: 0;
  justify-content: flex-end;
}

.hi-upcoming-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.hi-upcoming-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 2px;
  transition: border-color 0.2s, background 0.2s;
  flex-wrap: wrap;
}

.hi-upcoming-row--yoga        { border-left: 3px solid var(--yoga-accent); }
.hi-upcoming-row--hypnotherapy { border-left: 3px solid var(--hypno-accent); }

.hi-upcoming-row.is-today {
  background: rgba(106,171,138,0.04);
}

.hi-upcoming-row:hover {
  background: rgba(255,255,255,0.05);
}

/* Date column */
.hi-upcoming-date-col {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 90px;
  flex-shrink: 0;
}

.hi-upcoming-date {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--hi-mist);
  line-height: 1.1;
}

.hi-upcoming-time {
  font-family: var(--font-hand);
  font-size: 0.85rem;
  color: var(--hi-sage);
  opacity: 0.65;
}

.hi-upcoming-today {
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--yoga-accent);
  color: #071a0d;
  padding: 0.15rem 0.45rem;
  border-radius: 100px;
  display: inline-block;
  margin-top: 0.2rem;
}

/* Info column */
.hi-upcoming-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.hi-upcoming-class-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--hi-mist);
  text-decoration: none;
  transition: opacity 0.2s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hi-upcoming-class-name:hover { opacity: 0.7; }

.hi-upcoming-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.hi-upcoming-style {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.15rem 0.5rem;
  border-radius: 100px;
  background: rgba(106,171,138,0.12);
  color: var(--yoga-accent);
  border: 1px solid rgba(106,171,138,0.2);
}

.hi-upcoming-row--hypnotherapy .hi-upcoming-style {
  background: rgba(155,143,212,0.12);
  color: var(--hypno-accent);
  border-color: rgba(155,143,212,0.2);
}

.hi-upcoming-location,
.hi-upcoming-spots {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--hi-sage);
  opacity: 0.55;
}

.hi-upcoming-notes {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 300;
  font-style: italic;
  color: var(--hi-sage);
  opacity: 0.4;
  width: 100%;
}

/* Book button */
.hi-upcoming-book-btn {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  border-radius: 2px;
  flex-shrink: 0;
  text-decoration: none;
  transition: opacity 0.2s;
}

.hi-upcoming-row--yoga         .hi-upcoming-book-btn { background: var(--yoga-accent); color: #071a0d; }
.hi-upcoming-row--hypnotherapy .hi-upcoming-book-btn { background: var(--hypno-accent); color: #0d0a1f; }
.hi-upcoming-book-btn:hover { opacity: 0.8; }

/* Offerings section title */
.hi-offerings-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--hi-mist);
  margin: var(--space-md) auto var(--space-sm);
  padding: 0 var(--space-sm);
  max-width: 960px;
  line-height: 1;
}

.hi-offerings-title em { font-style: italic; color: var(--hi-earth); }

/* ============================================================
   CLASS LIST PAGE
============================================================ */
.hi-classes-page {
  min-height: 100vh;
  background: linear-gradient(160deg, #071a0d 0%, #0a1f10 60%, #0d0818 100%);
  padding: var(--space-lg) var(--space-sm);
  transition: background 0.6s ease;
}

/* Yoga tint -- greens more saturated, subtle warm bloom top-left */
body.hi-from--yoga .hi-classes-page {
  background:
    radial-gradient(ellipse 70% 50% at 15% 20%, rgba(50,120,70,0.22) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(20,60,30,0.15) 0%, transparent 60%),
    linear-gradient(160deg, #071a0d 0%, #0d2e16 55%, #0d0818 100%);
}

/* Hypnotherapy tint -- violet bloom top-right, deeper indigo shift */
body.hi-from--hypnotherapy .hi-classes-page {
  background:
    radial-gradient(ellipse 70% 50% at 85% 20%, rgba(90,60,160,0.22) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(40,20,80,0.18) 0%, transparent 60%),
    linear-gradient(160deg, #0a0818 0%, #130d2a 55%, #071a0d 100%);
}

/* Tint the upcoming section accent and filter active state to match */
body.hi-from--hypnotherapy .hi-classes-title em,
body.hi-from--hypnotherapy .hi-upcoming-title em,
body.hi-from--hypnotherapy .hi-offerings-title em {
  color: var(--hypno-accent);
}

body.hi-from--hypnotherapy .hi-filter-btn.is-active {
  border-color: var(--hypno-accent);
  background: rgba(155,143,212,0.1);
  color: var(--hypno-accent);
}

body.hi-from--hypnotherapy .hi-classes-back:hover {
  color: var(--hypno-accent);
  opacity: 1;
}

.hi-classes-header {
  max-width: 820px;
  margin: 0 auto var(--space-lg);
  text-align: center;
}

.hi-classes-back {
  display: inline-block;
  font-family: var(--font-hand);
  font-size: 0.95rem;
  color: var(--hi-sage);
  opacity: 0.6;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-md);
  transition: opacity 0.2s;
}

.hi-classes-back:hover { opacity: 1; color: var(--hi-sage); }

.hi-classes-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.4rem, 6vw, 4rem);
  color: var(--hi-mist);
  line-height: 1.05;
}

.hi-classes-title em {
  font-style: italic;
  color: var(--hi-earth);
}

.hi-classes-intro {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--hi-sage);
  margin-top: 0.8rem;
  letter-spacing: 0.05em;
  opacity: 0.75;
}

/* Filter tabs */
.hi-classes-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: var(--space-md);
}

.hi-filter-btn {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.12);
  background: transparent;
  color: var(--hi-mist);
  opacity: 0.5;
  cursor: pointer;
  transition: opacity 0.2s, border-color 0.2s, background 0.2s;
}

.hi-filter-btn:hover,
.hi-filter-btn.is-active {
  opacity: 1;
  border-color: var(--yoga-accent);
  background: rgba(106,171,138,0.08);
  color: var(--yoga-accent);
}

.hi-filter-btn[data-filter="hypnotherapy"].is-active,
.hi-filter-btn[data-filter="hypnotherapy"]:hover {
  border-color: var(--hypno-accent);
  background: rgba(155,143,212,0.08);
  color: var(--hypno-accent);
}

/* Classes grid */
.hi-classes-grid {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

/* Class card */
.hi-class-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 2px;
  padding: 1.5rem 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.hi-class-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.hi-class-card[data-type="yoga"]:hover         { border-color: rgba(106,171,138,0.35); }
.hi-class-card[data-type="hypnotherapy"]:hover { border-color: rgba(155,143,212,0.35); }

/* Class style tags row -- multiple badges */
.hi-class-style-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}

/* Practice badge -- top label */
.hi-class-type-badge {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.2rem 0.65rem;
  border-radius: 100px;
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 0.75rem;
}

.hi-class-card[data-type="yoga"]         .hi-class-type-badge { background: rgba(106,171,138,0.15); color: var(--yoga-accent); }
.hi-class-card[data-type="hypnotherapy"] .hi-class-type-badge { background: rgba(155,143,212,0.15); color: var(--hypno-accent); }

/* Class title */
.hi-class-title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  font-weight: 400;
  color: var(--hi-mist);
  line-height: 1.15;
  margin-bottom: 0.6rem;
}

/* Short description */
.hi-class-excerpt {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.85rem;
  color: var(--hi-sage);
  line-height: 1.65;
  opacity: 0.75;
  margin-bottom: 1rem;
  flex-grow: 1;
}

/* Divider before chips */
.hi-class-details-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 0.5rem;
}

.hi-class-detail-chip {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
  color: var(--hi-mist);
  opacity: 0.6;
}

.hi-class-card[data-type="yoga"]         .hi-class-detail-chip { background: rgba(106,171,138,0.08); border: 1px solid rgba(106,171,138,0.18); }
.hi-class-card[data-type="hypnotherapy"] .hi-class-detail-chip { background: rgba(155,143,212,0.08); border: 1px solid rgba(155,143,212,0.18); }

/* Good for note */
.hi-class-good-for {
  font-family: var(--font-hand);
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
  opacity: 0.55;
}

.hi-class-card[data-type="yoga"]         .hi-class-good-for { color: var(--yoga-accent); }
.hi-class-card[data-type="hypnotherapy"] .hi-class-good-for { color: var(--hypno-accent); }

/* CTA row */
.hi-class-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: auto;
}

.hi-class-book-link {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  border-radius: 2px;
  transition: opacity 0.2s;
  text-decoration: none;
}

.hi-class-card[data-type="yoga"]         .hi-class-book-link { background: var(--yoga-accent); color: #071a0d; }
.hi-class-card[data-type="hypnotherapy"] .hi-class-book-link { background: var(--hypno-accent); color: #0d0a1f; }

.hi-class-book-link:hover { opacity: 0.8; color: inherit; }

.hi-class-details-link {
  font-family: var(--font-hand);
  font-size: 0.88rem;
  opacity: 0.45;
  transition: opacity 0.2s;
  text-decoration: none;
}

.hi-class-card[data-type="yoga"]         .hi-class-details-link { color: var(--yoga-accent); }
.hi-class-card[data-type="hypnotherapy"] .hi-class-details-link { color: var(--hypno-accent); }

.hi-class-details-link:hover { opacity: 1; }

/* Empty state */
.hi-classes-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: var(--space-lg) 0;
  font-family: var(--font-hand);
  font-size: 1.1rem;
  color: var(--hi-sage);
  opacity: 0.5;
  letter-spacing: 0.06em;
}

/* ============================================================
   SINGLE CLASS PAGE
============================================================ */
.hi-single-class {
  min-height: 100vh;
  background: linear-gradient(160deg, #071a0d 0%, #0a1f10 60%, #0d0818 100%);
  padding-top: 80px;
}

.hi-single-body {
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem 1.5rem 6rem;
}

.hi-single-back {
  display: inline-block;
  font-family: var(--font-hand);
  font-size: 0.9rem;
  color: var(--hi-sage);
  opacity: 0.5;
  letter-spacing: 0.06em;
  margin-bottom: 2rem;
  transition: opacity 0.2s;
  text-decoration: none;
}

.hi-single-back:hover { opacity: 1; color: var(--hi-sage); }

/* Main card */
.hi-booking-card {
  background: rgba(255,255,255,0.025);
  border-radius: 3px;
  overflow: hidden;
}

.hi-side--yoga         .hi-booking-card { border: 1px solid rgba(106,171,138,0.2); }
.hi-side--hypnotherapy .hi-booking-card { border: 1px solid rgba(155,143,212,0.2); }

/* Accent bar at top of card */
.hi-booking-card::before {
  content: '';
  display: block;
  height: 3px;
  width: 100%;
}

.hi-side--yoga         .hi-booking-card::before { background: linear-gradient(90deg, var(--yoga-accent), transparent); }
.hi-side--hypnotherapy .hi-booking-card::before { background: linear-gradient(90deg, var(--hypno-accent), transparent); }

/* Card inner padding wrapper */
.hi-card-inner {
  padding: clamp(1.5rem, 5vw, 2.5rem);
}

/* Style tags */
.hi-single-style-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
}

.hi-single-style-tag {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.22rem 0.7rem;
  border-radius: 100px;
}

.hi-side--yoga         .hi-single-style-tag { background: rgba(106,171,138,0.12); color: var(--yoga-accent); border: 1px solid rgba(106,171,138,0.22); }
.hi-side--hypnotherapy .hi-single-style-tag { background: rgba(155,143,212,0.12); color: var(--hypno-accent); border: 1px solid rgba(155,143,212,0.22); }

/* Title */
.hi-single-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  color: var(--hi-mist);
  line-height: 1.02;
  margin-bottom: 1.75rem;
}

/* Meta strip */
.hi-single-meta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 0;
  background: rgba(0,0,0,0.2);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.hi-single-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.05);
  flex: 1;
  min-width: 100px;
}

.hi-single-meta-item:last-child { border-right: none; }

.hi-single-meta-label {
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--hi-sage);
  opacity: 0.4;
}

.hi-single-meta-value {
  font-family: var(--font-hand);
  font-size: 1.1rem;
  color: var(--hi-mist);
  letter-spacing: 0.02em;
}

/* Divider */
.hi-single-divider {
  height: 1px;
  background: rgba(255,255,255,0.05);
  margin: 2rem 0;
}

/* Description */
.hi-single-content {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.975rem;
  color: var(--hi-sage);
  line-height: 1.9;
  margin-bottom: 2rem;
  opacity: 0.85;
}

.hi-single-content p { margin-bottom: 1rem; }
.hi-single-content p:last-child { margin-bottom: 0; }
.hi-single-content--placeholder p { opacity: 0.3; font-style: italic; }

/* CTA row */
.hi-single-cta-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.hi-single-book {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: opacity 0.2s, transform 0.2s;
  text-decoration: none;
}

.hi-side--yoga         .hi-single-book { background: var(--yoga-accent); color: #071a0d; }
.hi-side--hypnotherapy .hi-single-book { background: var(--hypno-accent); color: #0d0a1f; }
.hi-single-book:hover { opacity: 0.85; transform: translateY(-2px); }

.hi-single-good-for {
  font-family: var(--font-hand);
  font-size: 0.95rem;
  opacity: 0.45;
}

.hi-side--yoga         .hi-single-good-for { color: var(--yoga-accent); }
.hi-side--hypnotherapy .hi-single-good-for { color: var(--hypno-accent); }

/* Upcoming dates section inside card */
.hi-single-sessions {
  margin-top: 0;
  padding: clamp(1.5rem, 5vw, 2.5rem);
  border-top: 1px solid rgba(255,255,255,0.05);
  background: rgba(0,0,0,0.15);
}

.hi-single-sessions-title {
  font-family: var(--font-hand);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  color: var(--hi-sage);
  opacity: 0.6;
  margin-bottom: 1.25rem;
  font-weight: 400;
}

/* Session rows -- shared by single class page and archive */
.hi-sessions-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hi-session-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 2px;
  flex-wrap: wrap;
  transition: background 0.2s;
}

.hi-session-row:hover { background: rgba(255,255,255,0.05); }

.hi-side--yoga         .hi-session-row { border-left: 2px solid rgba(106,171,138,0.4); }
.hi-side--hypnotherapy .hi-session-row { border-left: 2px solid rgba(155,143,212,0.4); }

.hi-session-row-left {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 1rem;
  flex: 1;
  min-width: 0;
}

.hi-session-date {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--hi-mist);
  white-space: nowrap;
}

.hi-session-time {
  font-family: var(--font-hand);
  font-size: 0.9rem;
  color: var(--hi-sage);
  opacity: 0.7;
  white-space: nowrap;
}

.hi-session-style {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.15rem 0.55rem;
  border-radius: 100px;
}

.hi-side--yoga         .hi-session-style { background: rgba(106,171,138,0.12); color: var(--yoga-accent); border: 1px solid rgba(106,171,138,0.2); }
.hi-side--hypnotherapy .hi-session-style { background: rgba(155,143,212,0.12); color: var(--hypno-accent); border: 1px solid rgba(155,143,212,0.2); }

.hi-session-location {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--hi-sage);
  opacity: 0.5;
}

.hi-session-spots {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hi-sage);
  opacity: 0.35;
}

.hi-session-notes {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 300;
  font-style: italic;
  color: var(--hi-sage);
  opacity: 0.4;
}

.hi-session-book-btn {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.45rem 1.1rem;
  border-radius: 2px;
  flex-shrink: 0;
  text-decoration: none;
  transition: opacity 0.2s;
}

.hi-side--yoga         .hi-session-book-btn { background: var(--yoga-accent); color: #071a0d; }
.hi-side--hypnotherapy .hi-session-book-btn { background: var(--hypno-accent); color: #0d0a1f; }
.hi-session-book-btn:hover { opacity: 0.8; }

/* ============================================================
   FOOTER
============================================================ */
.hi-footer {
  padding: 3rem 1.5rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.hi-footer-wordmark {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--hi-mist);
  letter-spacing: 0.04em;
  line-height: 1;
  text-decoration: none;
}

.hi-footer-wordmark em {
  font-style: italic;
  color: var(--hi-earth);
}

.hi-footer-name {
  font-family: var(--font-hand);
  font-size: 0.95rem;
  color: var(--hi-sage);
  letter-spacing: 0.08em;
  opacity: 0.6;
}

.hi-footer-ig {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  color: var(--hi-sage);
  opacity: 0.5;
  transition: opacity 0.2s, border-color 0.2s;
  text-decoration: none;
}

.hi-footer-ig:hover {
  opacity: 1;
  border-color: rgba(255,255,255,0.3);
}

.hi-footer-ig svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hi-footer-credit {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hi-sage);
  opacity: 0.25;
  margin-top: 0.5rem;
}

.hi-footer-credit a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s;
}

.hi-footer-credit a:hover { opacity: 2; color: var(--hi-sage); }

/* ============================================================
   GLOBAL NAV (non-homepage pages)
============================================================ */
.hi-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: rgba(6,13,8,0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.hi-nav-brand {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.2rem;
  color: var(--hi-mist);
  letter-spacing: 0.05em;
  text-decoration: none;
}

.hi-nav-brand em { font-style: italic; color: var(--hi-earth); }

.hi-nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hi-nav-links a {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--hi-sage);
  opacity: 0.6;
  transition: opacity 0.2s;
}

.hi-nav-links a:hover { opacity: 1; }

/* Offset content below fixed nav */
.hi-classes-page,
.hi-single-class {
  padding-top: calc(var(--space-lg) + 60px);
}

/* ============================================================
   MOBILE
============================================================ */
@media (max-width: 600px) {
  .hi-split {
    flex-direction: column;
  }

  .hi-half {
    flex: 1;
    transition: flex 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .hi-split:has(.hi-half--yoga:hover)  .hi-half--yoga  { flex: 1.15; }
  .hi-split:has(.hi-half--yoga:hover)  .hi-half--hypno { flex: 0.85; }
  .hi-split:has(.hi-half--hypno:hover) .hi-half--hypno { flex: 1.15; }
  .hi-split:has(.hi-half--hypno:hover) .hi-half--yoga  { flex: 0.85; }

  .hi-split::after {
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    transform: none;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.06) 20%, rgba(255,255,255,0.12) 50%, rgba(255,255,255,0.06) 80%, transparent 100%);
  }

  .hi-half-content { margin-top: 0; }

  /* Strip background image on mobile -- use solid color blocks instead */
  .hi-split::before {
    display: none;
  }

  .hi-half--yoga {
    background:
      radial-gradient(ellipse 90% 70% at 25% 30%, rgba(40,100,55,0.5) 0%, transparent 60%),
      radial-gradient(ellipse 60% 80% at 75% 85%, rgba(15,50,25,0.6) 0%, transparent 60%),
      linear-gradient(175deg, #041008 0%, #071a0d 40%, #0a2412 70%, #071008 100%);
  }

  .hi-half--hypno {
    background:
      radial-gradient(ellipse 90% 70% at 75% 30%, rgba(70,45,140,0.55) 0%, transparent 60%),
      radial-gradient(ellipse 60% 80% at 25% 85%, rgba(25,15,70,0.6) 0%, transparent 60%),
      linear-gradient(175deg, #060412 0%, #0d0a1f 40%, #130d2e 70%, #060412 100%);
  }

  /* Always show cue on mobile */
  .hi-half-cue {
    opacity: 0.6;
    transform: translateY(0);
  }

  /* Show editorial words on mobile */
  .hi-half-editorial-word {
    opacity: 0.6;
    transform: translateY(0);
  }

  /* Scale down ghost word on mobile */
  .hi-half-ghost {
    font-size: clamp(4rem, 18vw, 8rem);
    opacity: 0.6;
  }

  /* Orbit ring smaller */
  .hi-half-orbit {
    width: 180px;
    height: 180px;
    opacity: 0.5;
  }

  .hi-brand-box {
    width: 80vw;
    padding: 1rem 1.4rem;
  }

  .hi-brand-name {
    white-space: normal;
    font-size: clamp(1.6rem, 8vw, 2.4rem);
  }

  .hi-brand-tagline {
    font-size: 0.55rem;
    letter-spacing: 0.22em;
  }

  .hi-nav-links { display: none; }
  .hi-classes-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   REDUCED MOTION
============================================================ */
@media (prefers-reduced-motion: reduce) {
  .hi-panel,
  .hi-half,
  .hi-half-cue,
  .hi-class-card { transition: none; }
  .hi-firefly { animation: none; opacity: 0; }
  .hi-brand-box { animation: none; }
}