/* workshops.css — HUM Workshops page
   Extends style.css design tokens; only page-specific components live here. */

/* ========================
   TOP BAR
   ======================== */
.wk-topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--space-6);
  background: var(--color-bg);
  border-bottom: 1px solid transparent;
}

.wk-topbar__logo {
  display: inline-flex;
  align-items: center;
}

.wk-topbar__logo img {
  height: 28px;
  width: auto;
  display: block;
}

.wk-topbar__cta {
  display: inline-flex;
  align-items: center;
  background: var(--color-primary);
  color: var(--color-text-inverse);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background var(--transition-interactive), transform var(--transition-interactive);
}

.wk-topbar__cta:hover {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .wk-topbar {
    padding: var(--space-3) var(--space-4);
  }
  .wk-topbar__cta {
    padding: var(--space-2) var(--space-4);
  }
}

/* ========================
   OVERLINE DASH (matches PDF: "—— HUM WORKSHOPS")
   ======================== */
.overline {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-primary);
  margin-bottom: var(--space-6);
}

.overline__dash {
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--color-primary);
}

.overline--on-dark {
  color: #F9C5C1;
}

.overline__dash--on-dark {
  background: #F9C5C1;
}

/* ========================
   HERO (workshops)
   ======================== */
.section--hero-wk {
  padding-block: clamp(var(--space-16), 10vw, var(--space-32));
}

.wk-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 1.5rem + 4.5vw, 5.5rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.005em;
  color: var(--color-text);
  max-width: 18ch;
  margin-bottom: var(--space-8);
}

.wk-hero__body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--color-text-muted);
  max-width: 58ch;
  margin-bottom: var(--space-10);
}

.wk-hero__actions {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  flex-wrap: wrap;
}

.wk-link-cta {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-interactive);
}

.wk-link-cta:hover {
  color: var(--color-primary-hover);
}

/* ========================
   SHARED: large section heading + prose
   ======================== */
.wk-heading-lg {
  font-size: clamp(2rem, 1.2rem + 2.8vw, 3.75rem);
  line-height: 1.05;
  max-width: 22ch;
  margin-bottom: var(--space-8);
}

.wk-prose {
  margin-bottom: var(--space-6);
  max-width: 62ch;
}

.wk-prose:last-child {
  margin-bottom: 0;
}

/* ========================
   FORMAT SECTION
   ======================== */
.wk-format__intro {
  margin-bottom: clamp(var(--space-12), 5vw, var(--space-20));
  max-width: var(--content-narrow);
}

.wk-format__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

@media (max-width: 768px) {
  .wk-format__grid {
    grid-template-columns: 1fr;
  }
}

.wk-card {
  background: var(--color-bg);
  border-radius: var(--radius-md);
  padding: clamp(var(--space-6), 3vw, var(--space-10));
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  border: 1px solid rgba(28, 24, 22, 0.04);
}

.wk-card__eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-primary);
  font-weight: 500;
  margin: 0;
}

.wk-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 1rem + 0.9vw, 1.875rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-text);
  margin: 0;
}

.wk-card__body {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  line-height: 1.7;
  color: var(--color-text-muted);
  margin: 0;
}

/* ========================
   EPOCH (WHAT YOU PRACTICE)
   ======================== */
.wk-practice__intro {
  margin-bottom: clamp(var(--space-12), 5vw, var(--space-16));
}

.wk-epoch {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--color-divider);
}

.wk-epoch__item {
  padding: clamp(var(--space-8), 3vw, var(--space-12)) clamp(var(--space-4), 3vw, var(--space-8));
  border-bottom: 1px solid var(--color-divider);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  position: relative;
}

.wk-epoch__item:nth-child(odd) {
  border-right: 1px solid var(--color-divider);
}

/* Solo last item spans full width */
.wk-epoch__item:last-child:nth-child(odd) {
  grid-column: span 2;
  border-right: none;
}

@media (max-width: 640px) {
  .wk-epoch {
    grid-template-columns: 1fr;
  }
  .wk-epoch__item,
  .wk-epoch__item:nth-child(odd) {
    border-right: none;
  }
  .wk-epoch__item:last-child:nth-child(odd) {
    grid-column: auto;
  }
}

.wk-epoch__glyph {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 1.5rem + 2vw, 3.25rem);
  line-height: 1;
  color: var(--color-primary);
  height: 2.5rem;
  display: flex;
  align-items: flex-start;
}

.wk-epoch__title {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 1rem + 0.7vw, 1.75rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-text);
  margin: 0;
}

.wk-epoch__body {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  line-height: 1.7;
  color: var(--color-text-muted);
  margin: 0;
  max-width: 44ch;
}

.wk-epoch__label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-text-faint);
  margin: var(--space-2) 0 0 0;
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-divider);
}

/* ========================
   WHO IT'S FOR
   ======================== */
.wk-who__intro {
  margin-bottom: clamp(var(--space-10), 4vw, var(--space-16));
  max-width: var(--content-narrow);
}

.wk-who__list {
  display: flex;
  flex-direction: column;
  max-width: var(--content-default);
}

.wk-who__item {
  padding-block: var(--space-8);
  border-top: 1px solid var(--color-divider);
}

.wk-who__item:last-child {
  border-bottom: 1px solid var(--color-divider);
}

.wk-who__title {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 1rem + 0.9vw, 1.75rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-text);
  margin: 0 0 var(--space-3) 0;
}

.wk-who__body {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  line-height: 1.7;
  color: var(--color-text-muted);
  margin: 0;
  max-width: 72ch;
}

/* ========================
   REQUEST FORM (dark)
   ======================== */
.wk-request__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 1.4rem + 3vw, 4rem);
  font-weight: 400;
  line-height: 1.05;
  color: #FBF9F4;
  margin-bottom: var(--space-6);
}

.wk-request__lead {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: rgba(251, 249, 244, 0.72);
  max-width: 42ch;
  margin-bottom: var(--space-12);
}

.wk-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  max-width: 720px;
}

.wk-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
}

@media (max-width: 640px) {
  .wk-form__row {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
}

.wk-form__field {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.wk-form__field label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(251, 249, 244, 0.72);
  font-weight: 500;
}

.wk-form__field input,
.wk-form__field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(251, 249, 244, 0.28);
  padding: var(--space-3) 0;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: #FBF9F4;
  min-height: 44px;
  border-radius: 0;
  transition: border-color var(--transition-interactive);
  resize: vertical;
}

.wk-form__field textarea {
  min-height: 96px;
  line-height: 1.6;
}

.wk-form__field input::placeholder,
.wk-form__field textarea::placeholder {
  color: rgba(251, 249, 244, 0.42);
}

.wk-form__field input:focus,
.wk-form__field textarea:focus {
  outline: none;
  border-bottom-color: var(--color-primary);
  box-shadow: none;
}

.wk-form__submit {
  align-self: flex-start;
  margin-top: var(--space-2);
}

.wk-form__note {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(251, 249, 244, 0.55);
  line-height: 1.7;
  margin: 0;
  max-width: 60ch;
}

/* ========================
   Small overrides
   ======================== */
.section--dark .btn--primary:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}
