/* Home-only canvas trial (#F4F1E9). Promote to :root --adom-canvas when client says "rest". */
body.front-page {
  --adom-canvas: #f4f1e9;
}

body.front-page .adom-site-header {
  background: rgba(244, 241, 233, 0.92);
}

@media (max-width: 1100px) {
  body.front-page .adom-site-header__nav {
    background: rgba(244, 241, 233, 0.98);
  }
}

/* Homepage sections */
.adom-hero {
  padding: clamp(48px, 8vw, 72px) 0 clamp(34px, 4vw, 52px);
}

.adom-hero__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 430px), 1fr));
  gap: clamp(38px, 5vw, 64px);
  align-items: center;
}

.adom-hero__line {
  display: block;
  overflow: hidden;
  padding: 0.16em 0 0.2em;
  margin: -0.16em 0 -0.2em;
}

.adom-hero__line > span {
  display: block;
}

.adom-hero__line em {
  font-style: italic;
  color: var(--adom-pink);
}

.adom-hero__lead {
  margin: 22px 0 0;
  max-width: 430px;
  font-size: 18px;
  line-height: 1.62;
}

.adom-hero__media {
  position: relative;
  min-width: 0;
  border-radius: var(--adom-radius);
  overflow: hidden;
  background: var(--adom-cream);
  width: 100%;
  height: clamp(500px, 72vh, 740px);
}

.adom-hero__media > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% top;
  display: block;
}

.adom-hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.04) 30%, transparent 52%);
  pointer-events: none;
}

.adom-hero__badge {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 14px;
  border-radius: var(--adom-pill);
  background: rgba(244, 241, 233, 0.94);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}

.adom-hero__badge i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--adom-orange);
  display: inline-block;
}

.adom-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.adom-hero__social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 20px;
  margin-top: clamp(34px, 4.5vw, 48px);
  padding-top: 26px;
  border-top: 1px solid var(--adom-line);
}

.adom-hero__avatars {
  display: flex;
  align-items: center;
}

.adom-hero__avatars > span {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 0 3px var(--adom-canvas);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--adom-cream);
}

.adom-hero__avatars > span + span {
  margin-left: -12px;
}

.adom-hero__avatars img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.adom-hero__avatars-more {
  font-size: 12px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.72);
  background: #efe8dc !important;
}

.adom-hero__social-title {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.35;
}

.adom-hero__social-meta {
  margin-top: 3px;
  font-size: 15px;
  line-height: 1.45;
  color: rgba(0, 0, 0, 0.6);
}

.adom-pillars {
  padding: 12px var(--adom-pad) 88px;
  max-width: var(--adom-max);
  margin: 0 auto;
}

.adom-pillars__frame {
  padding: clamp(28px, 4vw, 44px) clamp(22px, 3vw, 36px);
}

.adom-pillars__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 170px), 1fr));
  column-gap: 34px;
  border-top: 0;
}

.adom-pillars__item {
  padding: 12px 8px 8px;
  position: relative;
}

.adom-pillars__item + .adom-pillars__item::before {
  content: "";
  position: absolute;
  left: -17px;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: rgba(0, 0, 0, 0.1);
}

.adom-pillars__item h2,
.adom-pillars__item h3 {
  margin: 0 0 10px;
  font-family: var(--adom-font-display);
  font-weight: 400;
  font-size: 25px;
}

.adom-pillars__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  color: #ffffff;
}

.adom-pillars__icon svg {
  width: 22px;
  height: 22px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.adom-stats__icon {
  display: inline-flex;
  margin-bottom: 14px;
}

.adom-stats__icon svg {
  display: block;
}

.adom-pillars__item p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--adom-body);
  max-width: 220px;
}

.adom-conference__head,
.adom-articles__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px 40px;
  padding-bottom: 26px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--adom-line);
}

.adom-conference__intro {
  flex: 1 1 320px;
  max-width: 640px;
}

.adom-conference__intro .adom-h2 {
  margin-bottom: 10px;
}

.adom-conference__lead {
  margin: 0;
  max-width: 42ch;
}

.adom-conference__all {
  align-self: flex-start;
  margin-top: var(--adom-section-head-eyebrow-offset, 34px);
  border-color: rgba(121, 50, 233, 0.45);
  color: var(--adom-violet);
  padding: 12px 22px;
  font-size: 12px;
}

.adom-conference__all:hover {
  border-color: var(--adom-violet);
  color: var(--adom-violet);
  background: rgba(121, 50, 233, 0.06);
}

.adom-conference__foot {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.adom-link-accent {
  font-family: var(--adom-font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--adom-violet);
  text-decoration: none;
  white-space: nowrap;
}

.adom-link-accent:hover {
  color: #6420d4;
  text-decoration: none;
}

/* Legacy featured block (kept for other surfaces if needed) */
.adom-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(260px, 0.95fr);
  gap: 0;
  align-items: stretch;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--adom-radius-lg);
  overflow: hidden;
  background: var(--adom-white);
  margin-bottom: 46px;
  isolation: isolate;
  position: relative;
  z-index: 1;
  box-shadow: 0 22px 50px -38px rgba(0, 0, 0, 0.35);
}

.adom-featured__media {
  /* Event banners are 16:9 (1024×576) — match frame so nothing crops or letterboxes */
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  min-height: 0;
  align-self: center;
  background: transparent;
  overflow: hidden;
  z-index: 0;
}

.adom-featured__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.adom-featured__scrim {
  position: absolute;
  inset: 0;
  /* Light top wash only — keep banner date/location row readable */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.12), transparent 28%);
  pointer-events: none;
}

.adom-featured__badge {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 13px;
  border-radius: var(--adom-pill);
  background: rgba(255, 255, 255, 0.96);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  z-index: 2;
}

.adom-featured__badge i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--adom-violet);
}

.adom-featured__countdown {
  position: absolute;
  top: 18px;
  right: 18px;
  bottom: auto;
  left: auto;
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: var(--adom-white);
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(8px);
  z-index: 2;
}

.adom-featured__countdown strong {
  font-family: var(--adom-font-display);
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1;
  font-weight: 400;
}

.adom-featured__countdown span {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.adom-featured__body {
  position: relative;
  z-index: 2;
  padding: clamp(22px, 2.4vw, 36px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  background: var(--adom-white);
  min-height: 320px;
  min-width: 0;
}

.adom-featured__body > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.adom-featured__body .adom-eyebrow {
  margin: 0;
}

.adom-featured__body .adom-h3 {
  font-size: clamp(20px, 1.85vw, 28px);
  line-height: 1.28;
  letter-spacing: -0.01em;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.adom-featured__body .adom-lead {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(0, 0, 0, 0.58);
}

.adom-featured__body .adom-lead:empty {
  display: none;
}

.adom-featured__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  margin: 0;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.58);
}

.adom-featured__cta {
  margin-top: 4px;
}

.adom-featured__cta .adom-btn {
  padding: 14px 26px;
}

.adom-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.adom-filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px 28px;
  padding: 18px 22px;
  margin: 0 0 22px;
  border: 1px solid var(--adom-line-soft);
  border-radius: var(--adom-pill);
  background: var(--adom-cream);
}

.adom-filter-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.adom-filter-group__label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.75);
  margin-right: 4px;
}

.adom-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  border-radius: var(--adom-pill);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  background: #fff;
  color: rgba(0, 0, 0, 0.72);
  border: 1px solid rgba(0, 0, 0, 0.14);
  font-family: var(--adom-font-body);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.adom-chip:hover {
  border-color: rgba(121, 50, 233, 0.4);
  color: #54239b;
}

.adom-chip.is-active {
  background: var(--adom-violet);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 10px 24px -16px rgba(121, 50, 233, 0.85);
}

.adom-chip.is-active:hover {
  background: #6420d4;
  color: #fff;
  border-color: transparent;
}

.adom-event-count {
  margin: 0 0 18px;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.75);
}

.adom-event-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.adom-event-card {
  display: flex;
  flex-direction: column;
  background: var(--adom-white);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 18px 40px -28px rgba(27, 21, 34, 0.35);
  color: inherit;
  text-decoration: none;
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.adom-event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 48px -26px rgba(27, 21, 34, 0.42);
  border-color: rgba(121, 50, 233, 0.18);
  color: inherit;
  text-decoration: none;
}

.adom-event-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #efebe3;
  overflow: hidden;
}

.adom-event-card__media > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
}

.adom-event-card__kind {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  max-width: calc(100% - 24px);
  padding: 6px 12px;
  border-radius: var(--adom-pill);
  background: rgba(255, 255, 255, 0.96);
  color: var(--adom-violet);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.2;
  box-shadow: 0 8px 18px -12px rgba(27, 21, 34, 0.45);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.adom-event-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 16px 14px;
  flex: 1 1 auto;
}

.adom-event-card__body h3 {
  margin: 0;
  font-family: var(--adom-font-display);
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 400;
  line-height: 1.25;
  color: var(--adom-ink);
}

.adom-event-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.62);
}

.adom-event-card__date,
.adom-event-card__place {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.adom-event-card__date::before,
.adom-event-card__place::before {
  content: "";
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
  background: var(--adom-violet);
  opacity: 0.9;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}

.adom-event-card__date::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Crect x='3' y='5' width='18' height='16' rx='2'/%3E%3Cpath d='M3 10h18M8 3v4M16 3v4'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Crect x='3' y='5' width='18' height='16' rx='2'/%3E%3Cpath d='M3 10h18M8 3v4M16 3v4'/%3E%3C/svg%3E");
}

.adom-event-card__place::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M12 21s7-5.2 7-11a7 7 0 1 0-14 0c0 5.8 7 11 7 11z'/%3E%3Ccircle cx='12' cy='10' r='2.5'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M12 21s7-5.2 7-11a7 7 0 1 0-14 0c0 5.8 7 11 7 11z'/%3E%3Ccircle cx='12' cy='10' r='2.5'/%3E%3C/svg%3E");
}

.adom-event-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 2px;
}

.adom-event-card__cta {
  font-size: 13px;
  font-weight: 500;
  color: var(--adom-violet);
}

.adom-event-card__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--adom-violet);
  color: #fff;
  font-size: 15px;
  line-height: 1;
  transition: background 0.25s ease, transform 0.25s ease;
}

.adom-event-card:hover .adom-event-card__arrow {
  background: #6420d4;
  transform: translateX(2px);
}

@media (max-width: 980px) {
  .adom-event-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .adom-conference__all {
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  .adom-event-grid {
    grid-template-columns: 1fr;
  }

  .adom-event-card__body {
    padding: 12px 14px 12px;
  }

  .adom-conference__foot {
    margin-top: 28px;
  }
}

/* Legacy list rows (programs rail etc.) */
.adom-event-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.adom-event-row {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 26px;
  padding: 20px 26px 20px 30px;
  border: 1px solid var(--adom-line-soft);
  border-radius: var(--adom-radius);
  background: var(--adom-white);
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.adom-event-row::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--adom-event-ink, var(--adom-violet));
}

.adom-event-row::after {
  content: none;
}

.adom-event-row:hover {
  background: var(--adom-white);
  border-color: rgba(0, 0, 0, 0.14);
  box-shadow: 0 18px 40px -32px rgba(0, 0, 0, 0.35);
}

.adom-event-row:hover::after {
  opacity: 0;
}

.adom-event-row > * {
  position: relative;
  z-index: 1;
}

.adom-event-row__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--adom-white);
  border: 1px solid var(--adom-line-soft);
  font-family: var(--adom-font-display);
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--adom-event-ink, rgba(0, 0, 0, 0.35));
}

.adom-event-row__media {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: min(168px, 42vw);
  aspect-ratio: 16 / 9;
  height: auto;
  overflow: hidden;
  background: transparent;
  border-radius: 12px;
}

.adom-event-row__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.adom-event-row__body {
  display: block;
  flex: 1 1 300px;
  min-width: 0;
}

.adom-event-row__cat {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: var(--adom-pill);
  border: 1px solid var(--adom-event-ink, rgba(0, 0, 0, 0.45));
  background: var(--adom-white);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--adom-event-ink, rgba(0, 0, 0, 0.45));
  margin-bottom: 12px;
  font-weight: 500;
}

.adom-event-row h3 {
  margin: 0 0 8px;
  font-family: var(--adom-font-display);
  font-weight: 400;
  font-size: clamp(22px, 2vw, 27px);
  line-height: 1.18;
  color: var(--adom-ink);
}

.adom-event-row__blurb {
  margin: 0;
  max-width: 54ch;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.62);
}

.adom-event-row__aside {
  display: flex;
  flex: 0 0 auto;
  margin-left: auto;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  text-align: right;
  white-space: nowrap;
}

.adom-event-row__date {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: var(--adom-pill);
  background: var(--adom-white);
  border: 1px solid var(--adom-line-soft);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.78);
}

.adom-event-row__place {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5);
}

.adom-programs__list {
  position: relative;
  margin-top: 70px;
  border-top: 1px solid var(--adom-line);
  padding-left: 44px;
}

.adom-programs__rail {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 8px;
  width: 14px;
  pointer-events: none;
}

.adom-programs__rail-track {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 6px;
  width: 2px;
  background: rgba(0, 0, 0, 0.12);
  border-radius: 999px;
}

.adom-programs__rail-fill {
  position: absolute;
  top: 0;
  left: 6px;
  width: 2px;
  height: 0%;
  background: linear-gradient(180deg, #7932e9, #e34776 55%, #eba84d);
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(121, 50, 233, 0.35);
}

.adom-programs__rail-dot {
  position: absolute;
  left: 2px;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(0, 0, 0, 0.18);
  box-sizing: border-box;
}

.adom-program-row {
  position: relative;
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr) auto;
  align-items: start;
  gap: 28px 34px;
  padding: 26px 26px 26px 30px;
  margin: 14px -12px 0;
  border: 1px solid var(--adom-line-soft);
  border-radius: var(--adom-radius);
  background: var(--adom-white);
  overflow: hidden;
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.adom-program-row::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--adom-violet);
}

.adom-program-row:nth-child(4n + 2)::before {
  background: var(--adom-violet);
}

.adom-program-row:nth-child(4n + 3)::before {
  background: var(--adom-violet);
}

.adom-program-row:nth-child(4n + 4)::before {
  background: var(--adom-violet);
}

.adom-program-row:hover {
  background: var(--adom-white);
  border-color: rgba(0, 0, 0, 0.14);
  box-shadow: 0 18px 40px -32px rgba(0, 0, 0, 0.35);
}

.adom-program-row__meta {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.adom-program-row__num {
  font-family: var(--adom-font-display);
  font-size: 15px;
  letter-spacing: 0.1em;
  color: rgba(0, 0, 0, 0.4);
}

.adom-program-row h3 {
  margin: 0 0 8px;
  font-family: var(--adom-font-display);
  font-weight: 400;
  font-size: clamp(24px, 2.2vw, 30px);
  line-height: 1.18;
}

.adom-program-row__aside {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  text-align: right;
}

.adom-program-row__date {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: var(--adom-pill);
  background: var(--adom-cream);
  border: 1px solid var(--adom-line-soft);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.72);
  white-space: nowrap;
}

.adom-program-row__place {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.5);
}

.adom-program-row__link {
  margin-top: 4px;
  font-size: 14px;
  font-weight: 500;
  color: var(--adom-violet);
  white-space: nowrap;
  text-decoration: none;
}

.adom-program-row__link:hover {
  color: #6420d4;
}

.adom-stats__head {
  margin-bottom: 52px;
}

.adom-stats__head .adom-lead {
  max-width: 380px;
}

.adom-stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: 20px;
  margin-top: 0;
}

.adom-stats__item {
  position: relative;
  background: var(--adom-white);
  border: 1px solid var(--adom-line-soft);
  border-radius: var(--adom-radius-lg);
  padding: 30px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 16px 40px -34px rgba(0, 0, 0, 0.3);
}

.adom-stats__icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--adom-violet);
  border: 0;
  color: #ffffff !important;
}

.adom-stats__icon svg {
  display: block;
  stroke: currentColor;
}

.adom-stats__value {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--adom-font-display);
  font-weight: 400;
  font-size: clamp(44px, 4.4vw, 58px);
  line-height: 1;
}

.adom-stats__value strong {
  display: inline;
  font: inherit;
  font-size: inherit;
  font-weight: 400;
  line-height: 1;
}

.adom-stats__value em {
  font-style: normal;
  font-size: 26px;
  color: var(--adom-violet);
}

.adom-stats__bar {
  height: 3px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 999px;
  overflow: hidden;
}

.adom-stats__bar span {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--adom-violet);
  border-radius: 999px;
  transition: width 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

.adom-stats__item.is-in .adom-stats__bar span,
.adom-stats__bar span.is-on {
  width: var(--adom-bar, 70%);
}

.adom-stats__label {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.8);
}

.adom-stats__copy p {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(0, 0, 0, 0.55);
}

.adom-team-rail {
  position: relative;
  margin-top: clamp(20px, 2.5vw, 32px);
  overflow: visible;
}

/* Clip only the portrait strip — leave room for active scale + ring */
.adom-team-rail__clip {
  position: relative;
  overflow: hidden;
  padding: 48px 0 56px;
}

.adom-team-rail__clip::before,
.adom-team-rail__clip::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: min(120px, 14vw);
  z-index: 4;
  pointer-events: none;
}

.adom-team-rail__clip::before {
  left: 0;
  background: linear-gradient(90deg, var(--adom-mist, #f0eeea), transparent);
}

.adom-team-rail__clip::after {
  right: 0;
  background: linear-gradient(270deg, var(--adom-mist, #f0eeea), transparent);
}

.adom-team-rail__viewport {
  position: relative;
  overflow: visible;
  padding: 0;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.adom-team-rail__viewport.is-dragging {
  cursor: grabbing;
}

.adom-team-rail__track {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  will-change: transform;
  transition: transform 1.5s cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.adom-team-rail__track.is-instant {
  transition: none;
}

.adom-team-dot {
  flex: 0 0 auto;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  overflow: visible;
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
  display: block;
  opacity: 0.58;
  filter: grayscale(0.6);
  transform: scale(1);
  z-index: 1;
  box-shadow: 0 0 0 3px #ffffff, 0 0 0 4px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.5s ease, filter 0.6s ease, opacity 0.6s ease, transform 1.5s cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.adom-team-dot.is-active {
  opacity: 1;
  filter: none;
  transform: scale(1.38);
  z-index: 2;
  box-shadow:
    0 0 0 4px #ffffff,
    0 0 0 7px var(--adom-team-ink, #7932e9),
    0 26px 50px -26px rgba(0, 0, 0, 0.5);
}

.adom-team-dot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 14%;
  display: block;
  pointer-events: none;
  border-radius: 50%;
  background: var(--adom-cream);
}

.adom-team-copy {
  max-width: 680px;
  margin: 6px auto 0;
  padding: 0 var(--adom-pad);
  text-align: center;
}

.adom-team-copy.is-swap {
  animation: adom-team-copy-in 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes adom-team-copy-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.adom-team-copy__role {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--adom-team-ink, var(--adom-violet));
  transition: color 0.45s ease;
}

.adom-team-copy__name {
  margin: 0 0 16px;
  font-family: var(--adom-font-display);
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.15;
}

.adom-team-copy__bio {
  margin: 0;
  font-size: 17px;
  line-height: 1.66;
  color: rgba(0, 0, 0, 0.7);
}

.adom-team-pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
  font-family: var(--adom-font-display);
}

.adom-team-pager > span:first-child {
  font-size: 28px;
  line-height: 1;
  min-width: 44px;
  text-align: right;
  color: var(--adom-team-ink, var(--adom-violet));
  transition: color 0.45s ease;
}

.adom-team-pager > span:last-child {
  font-size: 15px;
  min-width: 44px;
  color: rgba(0, 0, 0, 0.55);
}

.adom-team-ticks {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 30px;
}

.adom-team-ticks button {
  position: relative;
  border: 0;
  padding: 0;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 2px;
  background: transparent;
  cursor: pointer;
}

.adom-team-ticks button::after {
  content: "";
  width: 2px;
  height: 13px;
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.35);
  transition: width 0.45s ease, height 0.45s ease, background 0.45s ease;
}

.adom-team-ticks button.is-active::after {
  width: 3px;
  height: 22px;
  background: var(--adom-team-ink, var(--adom-violet));
}

@media (prefers-reduced-motion: reduce) {
  .adom-team-rail__track,
  .adom-team-dot,
  .adom-team-copy.is-swap {
    transition: none !important;
    animation: none !important;
  }
}

.adom-watch {
  background: var(--adom-canvas);
}

.adom-watch__grid {
  display: flex;
  flex-direction: column;
  gap: clamp(36px, 4vw, 52px);
}

.adom-watch__top {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.35fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
}

.adom-watch__copy {
  max-width: 420px;
}

.adom-watch__copy .adom-lead {
  margin: 0 0 28px;
}

.adom-watch__title {
  margin: 0 0 22px;
  line-height: 1.06;
}

.adom-watch__title em {
  font-style: italic;
  color: var(--adom-pink);
}

.adom-watch__player {
  position: relative;
  min-width: 0;
  border-radius: var(--adom-radius);
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(0, 0, 0, 0.1);
  aspect-ratio: 16 / 9;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.08);
}

.adom-watch__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #111;
}

.adom-watch__row {
  display: flex;
  gap: 14px;
  height: clamp(280px, 30vw, 400px);
  min-width: 0;
  width: 100%;
}

.adom-watch__card {
  position: relative;
  flex: 1 1 0%;
  min-width: 0;
  border: 0;
  padding: 0;
  border-radius: var(--adom-radius);
  overflow: hidden;
  background: var(--adom-cream);
  cursor: pointer;
  transition: flex-grow 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  color: inherit;
  font: inherit;
  text-align: left;
}

.adom-watch__card.is-active {
  flex: 3 1 0%;
}

.adom-watch__card img,
.adom-watch__card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: 0;
}

.adom-watch__card-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.12) 52%, transparent 78%);
  pointer-events: none;
}

.adom-watch__card-open {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.adom-watch__card.is-active .adom-watch__card-open {
  opacity: 1;
}

.adom-watch__card-label {
  font-family: var(--adom-font-display);
  font-size: 26px;
  line-height: 1.15;
  color: #fff;
}

.adom-watch__card-play {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--adom-violet);
}

.adom-watch__card-shut {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 26px;
  text-align: center;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  margin: 0 auto;
  font-family: var(--adom-font-display);
  font-size: 18px;
  color: #fff;
  opacity: 1;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.adom-watch__card.is-active .adom-watch__card-shut {
  opacity: 0;
}

.adom-community {
  padding-bottom: 0;
  padding-top: clamp(40px, 5vw, 64px);
  overflow-x: clip;
}

.adom-community-pin {
  position: relative;
}

.adom-community-pin__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 1;
  background: var(--adom-mist);
}

.adom-community-rail {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 24px);
  width: max-content;
  padding-left: max(var(--adom-pad), calc((100vw - var(--adom-max, 1200px)) / 2));
  padding-right: var(--adom-pad);
  will-change: transform;
}

.adom-community__copy {
  flex: 0 0 auto;
  width: clamp(260px, 28vw, 340px);
  padding-right: clamp(8px, 1.5vw, 20px);
}

.adom-community__copy .adom-h2 {
  margin: 0 0 14px;
  max-width: 12ch;
}

.adom-community__copy .adom-lead {
  margin: 0;
  max-width: 32ch;
  font-size: 16px;
  line-height: 1.6;
}

.adom-community-pin.is-static {
  height: auto !important;
}

.adom-community-pin.is-static .adom-community-pin__sticky {
  position: relative;
  height: auto;
  overflow: visible;
  display: block;
  padding: 0 0 48px;
  background: transparent;
}

.adom-community-pin.is-static .adom-community-rail {
  transform: none !important;
  width: auto;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 14px;
  padding: 8px var(--adom-pad) 16px;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--adom-pad);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.adom-community-pin.is-static .adom-community__copy {
  scroll-snap-align: start;
  width: min(340px, 78vw);
}

.adom-community-pin.is-static .adom-community-card {
  scroll-snap-align: start;
}

@media (max-width: 900px) {
  .adom-community-rail {
    padding-left: var(--adom-pad);
  }

  .adom-community__copy {
    width: min(300px, 78vw);
  }

  .adom-community__copy .adom-h2 {
    max-width: 14ch;
  }
}

.adom-community-card {
  flex: 0 0 auto;
  width: clamp(240px, 28vw, 300px);
  height: clamp(300px, 52vh, 380px);
  border-radius: var(--adom-radius);
  padding: clamp(24px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--adom-line);
  background: #fff;
  box-sizing: border-box;
}

.adom-community-card--cream {
  background: var(--adom-canvas);
  width: clamp(240px, 68vw, 300px);
}

.adom-community-card--plum {
  background: #4b1f7f;
  color: #fff;
  border-color: transparent;
  width: clamp(280px, 78vw, 380px);
}

.adom-community-card--violet {
  background: var(--adom-violet);
  color: #fff;
  border-color: transparent;
  width: clamp(300px, 82vw, 420px);
}

.adom-community-card--light {
  background: #fff;
  width: clamp(260px, 72vw, 340px);
}

.adom-community-card--photo {
  padding: 0;
  overflow: hidden;
  position: relative;
  width: clamp(250px, 70vw, 320px);
  min-height: 0;
}

.adom-community-card--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 100%;
}

.adom-community-card--photo figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px;
  color: #fff;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent);
  font-size: 16px;
  line-height: 1.5;
}

.adom-community-card__kicker {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--adom-violet);
}

.adom-community-card--plum .adom-community-card__kicker,
.adom-community-card--violet .adom-community-card__kicker {
  color: #ffffff;
}

.adom-community-card--cream .adom-community-card__kicker {
  color: #9a3412;
}

.adom-community-card__quote-mark {
  font-family: var(--adom-font-display);
  font-size: 54px;
  line-height: 1;
  color: var(--adom-gold);
}

.adom-community-card__title {
  margin: 0;
  font-family: var(--adom-font-display);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.25;
}

.adom-community-card--quote .adom-community-card__title {
  font-size: 23px;
  line-height: 1.45;
}

.adom-community-card--big .adom-community-card__title {
  font-size: clamp(42px, 12vw, 68px);
  line-height: 1;
}

.adom-community-card__meta {
  margin: 0;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.58);
}

.adom-community-card--plum .adom-community-card__meta,
.adom-community-card--violet .adom-community-card__meta {
  color: rgba(255, 255, 255, 0.85);
}

.adom-community-card__note {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.58);
}

.adom-community-card__person strong {
  display: block;
  font-size: 16px;
  font-weight: 500;
}

.adom-community-card__person span {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.58);
}

.adom-community-card--violet .adom-community-card__person span {
  color: rgba(255, 255, 255, 0.68);
}

.adom-membership__intro {
  max-width: 620px;
  margin-bottom: 48px;
}

.adom-membership__intro .adom-h2 {
  margin: 0 0 20px;
}

.adom-membership__intro .adom-lead {
  margin: 0;
  font-size: 18px;
}

.adom-membership__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  counter-reset: adom-mem;
}

.adom-membership__card {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: stretch;
  gap: 0;
  background: var(--adom-white);
  border: 1px solid var(--adom-line-soft);
  border-radius: var(--adom-radius-lg);
  overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  padding: 0;
  min-height: 0;
  counter-increment: adom-mem;
  position: relative;
}

.adom-membership__card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 0, 0, 0.14);
  box-shadow: 0 26px 52px -36px rgba(0, 0, 0, 0.42);
}

.adom-membership__media {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--adom-mist);
  min-height: 160px;
}

.adom-membership__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(121, 50, 233, 0.22);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.adom-membership__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: saturate(0.9) contrast(1.02);
  transition: transform 0.45s ease;
}

.adom-membership__card:hover .adom-membership__media img {
  transform: scale(1.04);
}

.adom-membership__body {
  background: var(--adom-white);
  padding: clamp(22px, 2.4vw, 32px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.adom-membership__body::before {
  content: counter(adom-mem, decimal-leading-zero);
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(121, 50, 233, 0.1);
  font-family: var(--adom-font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--adom-violet);
}

.adom-membership__card h3 {
  margin: 0;
  font-family: var(--adom-font-display);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--adom-ink);
}

.adom-membership__card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(0, 0, 0, 0.58);
}

.adom-articles__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px 40px;
  margin-bottom: 48px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.adom-articles__head .adom-h2 {
  margin: 0;
}

.adom-articles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.adom-article-card {
  display: flex;
  flex-direction: column;
  padding: 14px 14px 26px;
  border: 1px solid var(--adom-line-soft);
  border-radius: var(--adom-radius-lg);
  background: var(--adom-white);
  color: inherit;
  text-decoration: none;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.adom-article-card:hover {
  transform: translateY(-4px);
  background: var(--adom-white);
  border-color: rgba(0, 0, 0, 0.14);
  box-shadow: 0 22px 48px -34px rgba(0, 0, 0, 0.35);
}

.adom-article-card__media {
  height: auto;
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  overflow: hidden;
  background: var(--adom-mist);
  position: relative;
}

.adom-article-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  filter: saturate(0.85) contrast(1.02);
  transition: transform 0.6s ease;
}

.adom-article-card:hover .adom-article-card__media img {
  transform: scale(1.03);
}

.adom-article-card__cat {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  margin: 20px 8px 0;
  padding: 5px 12px;
  border-radius: var(--adom-pill);
  border: 1px solid rgba(121, 50, 233, 0.4);
  background: var(--adom-white);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: #54239b;
}

.adom-article-card h3 {
  margin: 12px 8px 8px;
  font-family: var(--adom-font-display);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
  color: rgba(0, 0, 0, 0.72);
}

.adom-article-card:hover h3 {
  color: rgba(0, 0, 0, 0.9);
}

.adom-article-card .meta {
  margin: 0 8px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.75);
}

.adom-partners {
  padding: 20px var(--adom-pad) 80px;
  max-width: var(--adom-max);
  margin: 0 auto;
  text-align: center;
}

.adom-partners__frame {
  padding: clamp(28px, 3.5vw, 42px) clamp(20px, 3vw, 36px);
}

.adom-partners__label {
  display: inline-flex;
  align-items: center;
  margin: 0 0 28px;
  padding: 8px 18px;
  border-radius: var(--adom-pill);
  background: var(--adom-white);
  border: 1px solid var(--adom-line-soft);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.62);
}

.adom-partners__list {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 16px;
  font-family: var(--adom-font-display);
  font-size: 20px;
  color: rgba(0, 0, 0, 0.68);
}

.adom-partners__list > span {
  padding: 10px 22px;
  border-radius: var(--adom-pill);
  background: var(--adom-white);
  border: 1px solid var(--adom-line-soft);
  box-shadow: 0 14px 30px -28px rgba(0, 0, 0, 0.5);
}

.adom-cta-band {
  position: relative;
  border-radius: var(--adom-radius);
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 50% 120%, rgba(227, 71, 118, 0.35), transparent 55%),
    linear-gradient(145deg, #3a1768 0%, #4b1f7f 45%, #7932e9 100%);
  padding: clamp(64px, 8vw, 96px) clamp(24px, 4vw, 48px);
  text-align: center;
  color: #fff;
}

.adom-cta-band__inner {
  max-width: 760px;
  margin: 0 auto;
}

.adom-cta-band h2 {
  color: #fff;
  max-width: 720px;
  margin: 0 auto 18px;
}

.adom-cta-band p {
  margin: 0 auto 38px;
  max-width: 520px;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
}

.adom-cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.adom-newsletter {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 28px 40px;
  align-items: center;
  padding: 36px 36px;
  margin-top: 28px;
  margin-bottom: 40px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--adom-radius-lg);
  background:
    radial-gradient(100% 120% at 100% 0%, rgba(121, 50, 233, 0.08), transparent 50%),
    var(--adom-white);
  box-shadow: 0 24px 50px -40px rgba(0, 0, 0, 0.35);
  overflow-x: clip;
  max-width: 100%;
}

.adom-newsletter__kicker {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.45);
}

.adom-newsletter h3 {
  margin: 0 0 10px;
  font-family: var(--adom-font-display);
  font-weight: 400;
  font-size: clamp(24px, 2.4vw, 30px);
  line-height: 1.2;
  color: rgba(0, 0, 0, 0.88);
}

.adom-newsletter p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.58);
}

.adom-newsletter__form,
.adom-newsletter .mc4wp-form,
.adom-newsletter .mc4wp-form-fields,
.adom-newsletter form {
  display: flex !important;
  flex-wrap: wrap;
  gap: 10px;
  align-items: stretch;
  float: none !important;
  width: 100% !important;
  max-width: 100%;
  position: relative;
}

.adom-newsletter .mc4wp-form-fields::after,
.adom-newsletter .mc4wp-form::after {
  content: none !important;
  display: none !important;
}

/* MC4WP honeypot — must stay invisible (no off-canvas left that expands scrollWidth) */
.adom-newsletter .mc4wp-form > label,
.adom-newsletter .mc4wp-form label:has(input[name="_mc4wp_honeypot"]),
.adom-newsletter input[name="_mc4wp_honeypot"] {
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  opacity: 0 !important;
  overflow: hidden !important;
  pointer-events: none !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
}

.adom-newsletter input[type="email"],
.adom-newsletter input[type="text"]:not([name="_mc4wp_honeypot"]) {
  flex: 1 1 160px !important;
  float: none !important;
  width: auto !important;
  min-width: 0 !important;
  height: 52px !important;
  margin: 0 !important;
  padding: 0 18px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(0, 0, 0, 0.16) !important;
  background: #f4f4f4 !important;
  font: inherit !important;
  box-sizing: border-box !important;
  color: rgba(0, 0, 0, 0.82) !important;
}

.adom-newsletter input[type="email"]::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.adom-newsletter input[type="submit"],
.adom-newsletter button[type="submit"],
.adom-newsletter .adom-newsletter__submit,
.adom-newsletter .fusion-button {
  flex: 0 0 auto !important;
  float: none !important;
  width: auto !important;
  height: 52px !important;
  margin: 0 !important;
  padding: 0 26px !important;
  border-radius: 999px !important;
  border: 0 !important;
  background: var(--adom-violet) !important;
  color: #fff !important;
  font-family: var(--adom-font-body) !important;
  font-size: 12px !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  line-height: 52px !important;
  cursor: pointer !important;
  box-shadow: none !important;
  text-shadow: none !important;
  white-space: nowrap !important;
}

.adom-newsletter .mc4wp-response {
  flex: 1 1 100%;
  margin: 4px 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.62);
}

@media (max-width: 1100px) {
  .adom-watch__top {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .adom-watch__copy {
    max-width: 560px;
  }

  .adom-featured {
    grid-template-columns: 1fr;
  }

  .adom-featured__media {
    width: 100%;
    min-height: 0;
    height: auto;
    aspect-ratio: 16 / 9;
    align-self: stretch;
  }

  .adom-featured__body {
    min-height: 0;
    justify-content: flex-start;
    padding: clamp(24px, 4vw, 34px);
  }

  .adom-featured__body .adom-h3 {
    font-size: clamp(22px, 4.5vw, 28px);
  }

  .adom-featured__media img {
    object-fit: cover;
    object-position: center center;
  }
}

@media (max-width: 900px) {
  .adom-program-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .adom-program-row__aside {
    align-items: flex-start;
    text-align: left;
  }

  .adom-newsletter {
    grid-template-columns: 1fr;
    padding: 28px 22px;
  }

  .adom-filter-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .adom-membership__grid {
    grid-template-columns: 1fr;
  }

  .adom-membership__card {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  }

  /* One column avoids sparse last-row gaps on tablet */
  .adom-articles__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .adom-article-card__media {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .adom-articles__head {
    margin-bottom: 28px;
  }

  .adom-featured {
    grid-template-columns: 1fr;
  }

  .adom-featured__media {
    min-height: 0;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .adom-featured__body {
    min-height: 0;
    justify-content: flex-start;
    padding: clamp(24px, 4vw, 32px);
  }

  .adom-featured__body .adom-h3 {
    font-size: clamp(22px, 5vw, 28px);
  }

  .adom-featured__media img {
    object-fit: cover;
    object-position: center center;
  }

  .adom-event-row__aside {
    flex: 1 1 100%;
    margin-left: 0;
    width: 100%;
    align-items: flex-start;
    text-align: left;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px 14px;
    white-space: normal;
  }

  .adom-event-row__date,
  .adom-event-row__place {
    white-space: nowrap;
  }

  .adom-watch__row {
    height: 320px;
  }

  .adom-watch__player {
    border-radius: 16px;
  }

  .adom-cta-band {
    padding: 56px 24px;
  }

  .adom-featured__countdown strong {
    font-size: 36px;
  }

  .adom-section {
    padding: 48px 0;
  }
}

@media (max-width: 600px) {
  .adom-section {
    padding: 44px 0;
  }

  .adom-membership__grid,
  .adom-articles__grid {
    grid-template-columns: 1fr;
  }

  .adom-membership__card {
    grid-template-columns: 1fr;
  }

  .adom-membership__media {
    aspect-ratio: 16 / 10;
    min-height: 0;
  }

  .adom-hero__media {
    height: clamp(360px, 70vw, 480px);
  }

  .adom-watch__row {
    flex-direction: column;
    height: auto;
  }

  .adom-watch__card,
  .adom-watch__card.is-active {
    flex: none;
    height: 220px;
  }

  .adom-watch__card-shut {
    display: none;
  }

  .adom-watch__card-open {
    opacity: 1;
  }

  .adom-hero__actions .adom-btn,
  .adom-cta-band__actions .adom-btn {
    width: 100%;
  }

  .adom-programs__list {
    padding-left: 0;
  }

  .adom-programs__rail {
    display: none;
  }

  .adom-event-row {
    gap: 12px 14px;
    padding: 18px 16px 18px 20px;
  }

  .adom-event-row__num {
    width: 32px;
    height: 32px;
  }

  .adom-event-row__media {
    width: 96px;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .adom-event-row__body {
    flex: 1 1 calc(100% - 140px);
    min-width: 0;
  }

  .adom-event-row__aside {
    flex: 1 1 100%;
    margin-left: 0;
    width: 100%;
    align-items: flex-start;
    text-align: left;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px 14px;
    white-space: normal;
  }

  .adom-event-row__blurb {
    display: none;
  }

  .adom-newsletter input[type="email"],
  .adom-newsletter input[type="submit"],
  .adom-newsletter .adom-newsletter__submit {
    flex: 1 1 100% !important;
    width: 100% !important;
  }

  .adom-articles__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* Motion safety */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  [data-hero],
  [data-animate],
  [data-item],
  [data-chapter],
  [data-split],
  .adom-word,
  .adom-word > span {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

body.adom-home {
  scroll-behavior: smooth;
}

/* Lightweight reveals — only when JS enables .adom-motion-on.
   Hero stays visible: hiding it delayed LCP and the slide counted as layout shift. */
.adom-motion-on [data-animate],
.adom-motion-on [data-item],
.adom-motion-on [data-chapter],
.adom-motion-on [data-split] {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.adom-motion-on [data-animate].is-in,
.adom-motion-on [data-item].is-in,
.adom-motion-on [data-chapter].is-in,
.adom-motion-on [data-split].is-in {
  opacity: 1;
  transform: none;
}

.adom-motion-on [data-split] .adom-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
}

.adom-motion-on [data-split] .adom-word > span {
  display: inline-block;
  opacity: 0;
  transform: translate3d(0, 110%, 0);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.adom-motion-on [data-split] .adom-word.is-in > span {
  opacity: 1;
  transform: none;
}

.adom-lift {
  transition:
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.35s ease,
    background 0.35s ease !important;
}

.adom-lift:hover {
  transform: translateY(-5px);
}

.adom-motion-on .adom-watch__player,
.adom-motion-on .adom-featured,
.adom-motion-on .adom-btn {
  transition:
    opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.35s ease;
}

.adom-chip {
  transition:
    background 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* —— Homepage testimonials (carousel) —— */
.adom-section--tight {
  padding-top: clamp(48px, 6vw, 68px);
  padding-bottom: clamp(48px, 6vw, 68px);
}

.adom-home-testimonials__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: clamp(20px, 3vw, 28px);
}

.adom-home-testimonials__copy .adom-eyebrow {
  margin-bottom: 10px;
}

.adom-home-testimonials__copy .adom-h2 {
  margin: 0;
  max-width: 16ch;
}

.adom-home-testimonials__controls {
  display: flex;
  gap: 8px;
  flex: 0 0 auto;
}

.adom-home-t-nav {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: #ffffff;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  color: inherit;
  font-family: inherit;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.adom-home-t-nav:hover {
  border-color: var(--adom-violet);
  color: var(--adom-violet);
}

.adom-home-t-nav:disabled {
  opacity: 0.35;
  cursor: default;
}

.adom-home-testimonials__carousel {
  position: relative;
}

.adom-home-testimonials__viewport {
  overflow: hidden;
  margin: 0 -4px;
  padding: 4px;
  cursor: grab;
  touch-action: pan-y;
}

.adom-home-testimonials__viewport.is-dragging {
  cursor: grabbing;
}

.adom-home-testimonials__track {
  display: flex;
  gap: 16px;
  will-change: transform;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.adom-home-testimonials__track.is-instant {
  transition: none;
}

.adom-home-tcard {
  margin: 0;
  flex: 0 0 auto;
  width: min(320px, 78vw);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 22px 20px;
  border-radius: var(--adom-radius);
  background: var(--adom-canvas);
  border: 1px solid rgba(0, 0, 0, 0.06);
  min-height: 0;
  height: 240px;
  box-sizing: border-box;
  scroll-snap-align: start;
  user-select: none;
}

.adom-home-tcard__quote {
  margin: 0;
  font-family: var(--adom-font-display);
  font-size: clamp(15px, 1.25vw, 17px);
  line-height: 1.45;
  color: var(--adom-ink);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  overflow: hidden;
}

.adom-home-tcard__quote::before {
  content: "“";
  display: inline;
  margin-right: 2px;
  color: var(--adom-violet);
}

.adom-home-tcard__person {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}

.adom-home-tcard__photo,
.adom-home-tcard__initial {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex: 0 0 auto;
  object-fit: cover;
}

.adom-home-tcard__initial {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(121, 50, 233, 0.12);
  color: var(--adom-violet);
  font-size: 14px;
  font-weight: 500;
}

.adom-home-tcard__person strong {
  display: block;
  font-size: 13px;
  font-weight: 500;
}

.adom-home-tcard__person span {
  display: block;
  margin-top: 1px;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.58);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 22ch;
}

.adom-home-testimonials__dots {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: 12px;
}

.adom-home-testimonials__dots button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.adom-home-testimonials__dots button::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
  transition: width 0.25s ease, background 0.25s ease;
}

.adom-home-testimonials__dots button.is-active::after {
  width: 18px;
  background: var(--adom-violet);
}

/* —— Homepage FAQ —— */
.adom-home-faq__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}

.adom-home-faq__intro .adom-eyebrow {
  margin-bottom: 10px;
}

.adom-home-faq__intro .adom-h2 {
  margin: 0 0 12px;
}

.adom-home-faq__intro .adom-lead {
  margin: 0 0 22px;
  max-width: 36ch;
}

.adom-home-faq__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.adom-home-faq__item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.adom-home-faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 2px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-size: 16px;
  line-height: 1.4;
  color: var(--adom-ink);
  font-family: inherit;
}

.adom-home-faq__q:hover {
  color: var(--adom-violet);
}

.adom-home-faq__sign {
  flex: 0 0 auto;
  font-size: 20px;
  color: var(--adom-violet);
  line-height: 1;
}

.adom-home-faq__a p {
  margin: 0;
  padding: 0 40px 18px 2px;
  max-width: 68ch;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(0, 0, 0, 0.7);
}

@media (max-width: 960px) {
  .adom-home-tcard {
    width: min(300px, 70vw);
    height: 230px;
  }

  .adom-home-faq__layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

@media (max-width: 640px) {
  .adom-home-testimonials__head {
    align-items: center;
  }

  .adom-home-tcard {
    width: min(280px, 86vw);
    height: 220px;
  }

  .adom-home-t-nav {
    width: 38px;
    height: 38px;
  }
}

.adom-chip:hover {
  transform: translateY(-1px);
}

.adom-event-row,
.adom-event-card,
.adom-program-row {
  transition:
    background 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.adom-event-row:hover,
.adom-program-row:hover {
  transform: translateY(-2px);
}

.adom-watch__video {
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 720px) {
  .adom-pillars__item + .adom-pillars__item::before {
    display: none;
  }

  .adom-pillars__grid {
    row-gap: 22px;
  }

  .adom-program-row {
    margin: 0;
    padding-left: 12px;
    padding-right: 12px;
  }
}

