/* Site-wide editorial theme — dark studio / dance-community palette */

html:has(body.site-editorial) {
  --site-bg: #08070f;
  --site-glow-magenta: rgba(255, 77, 184, 0.24);
  --site-glow-violet: rgba(180, 122, 255, 0.2);
  --site-glow-cool: rgba(110, 231, 255, 0.07);
  --site-ambient-bg:
    radial-gradient(ellipse 48% 120% at 100% 42%, rgba(255, 77, 184, 0.14) 0%, transparent 72%),
    radial-gradient(ellipse 92% 68% at 100% 8%, var(--site-glow-magenta) 0%, transparent 66%),
    radial-gradient(ellipse 80% 58% at 88% 12%, var(--site-glow-magenta) 0%, transparent 58%),
    radial-gradient(ellipse 60% 48% at 6% 38%, var(--site-glow-violet) 0%, transparent 54%),
    radial-gradient(ellipse 70% 52% at 72% 68%, var(--site-glow-magenta) 0%, transparent 56%),
    radial-gradient(ellipse 55% 45% at 18% 88%, var(--site-glow-violet) 0%, transparent 52%),
    radial-gradient(ellipse 45% 35% at 50% 105%, var(--site-glow-cool) 0%, transparent 48%),
    var(--site-bg);
  background: var(--site-ambient-bg);
  overflow-x: hidden;
}

/* Behind all editorial content (including GSAP-transformed #smooth-content) */
html:has(body.site-editorial)::before {
  content: "";
  position: fixed;
  inset: -2px;
  z-index: 0;
  pointer-events: none;
  background: var(--site-ambient-bg);
}

body.site-editorial {
  --site-content-inset: clamp(22px, 5vw, 52px);
  --site-bg-deep: #050408;
  --project-preview-surface: #0c0a14;
  --site-accent: #ff4db8;
  --site-accent-violet: #b47aff;
  --site-accent-soft: rgba(255, 77, 184, 0.55);
  --site-glow-magenta: rgba(255, 77, 184, 0.24);
  --site-glow-violet: rgba(180, 122, 255, 0.2);
  --site-glow-cool: rgba(110, 231, 255, 0.07);
  --editorial-project-accent: #ff8ae0;
  --tj-color-theme-primary: #ff4db8;
  background-color: transparent;
  color: #ffffff;
  position: relative;
  z-index: 1;
}

body.site-editorial::selection {
  background-color: rgba(255, 77, 184, 0.35);
  color: #ffffff;
}

/* body::before retired — html::before paints under transformed scroll content */
body.site-editorial::before {
  content: none;
  display: none;
}

body.site-editorial #smooth-wrapper {
  position: relative;
  z-index: 1;
  background-color: transparent;
}

body.site-editorial #smooth-content,
body.site-editorial main {
  position: relative;
  z-index: 1;
  background-color: transparent;
}

@media only screen and (min-width: 768px) {
  body.site-editorial {
    --site-content-inset: clamp(32px, 4vw, 56px);
  }
}

/* Header */
body.site-editorial .tj-header.header-inner.header-absolute {
  background-color: transparent;
  background-image: none;
  box-shadow: none;
  border: 0;
}

/* Home: header + hero share body::before only (no band/header bg seam) */
body.page-home.site-editorial .tj-header.header-inner.header-absolute {
  background: transparent;
}

body.site-editorial .tj-header.header-inner.header-absolute .site_navigation nav ul:not(.sub-menu) > li > a {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(11px, 1vw, 12px);
  font-weight: var(--tj-fw-medium);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.25s ease, opacity 0.25s ease;
}

body.site-editorial .tj-header.header-inner.header-absolute .site_navigation nav ul:not(.sub-menu) > li.current-menu-item > a,
body.site-editorial .tj-header.header-inner.header-absolute .site_navigation nav ul:not(.sub-menu) > li:hover > a {
  color: var(--site-accent);
  opacity: 1;
}

body.site-editorial .tj-header .tj-header_wrap > .site_logo,
body.site-editorial .tj-header .site_logo,
body.site-editorial .tj-offcanvas .offcanvas_logo {
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

body.site-editorial .tj-header.header-inner.header-absolute .site_logo .logo,
body.site-editorial .tj-offcanvas .offcanvas_logo .logo,
body.site-editorial .tj-offcanvas.tj-offcanvas-2 .offcanvas_logo .logo {
  display: inline-flex;
  align-items: center;
  color: #ffffff;
  font-family: var(--tj-ff-heading, inherit);
  font-size: clamp(13px, 1.1vw, 15px);
  font-weight: var(--tj-fw-medium);
  letter-spacing: 0.08em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

body.site-editorial .tj-header.header-inner.header-absolute .site_logo .logo:hover,
body.site-editorial .tj-offcanvas .offcanvas_logo .logo:hover,
body.site-editorial .tj-offcanvas.tj-offcanvas-2 .offcanvas_logo .logo:hover {
  color: var(--site-accent);
}

body.site-editorial .tj-header.header-inner.header-absolute .tj-header_right .tj_btn {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

body.site-editorial .tj-header.header-inner.header-absolute .tj-header_right .tj_btn::before {
  background-color: rgba(255, 255, 255, 0.12);
}

body.site-editorial .tj-header.header-inner.header-absolute .tj_sidebar_toggle span {
  background-color: #ffffff;
}

body.site-editorial .tj-header .container-fluid {
  padding-left: var(--site-content-inset);
  padding-right: var(--site-content-inset);
}

body.site-editorial .tj-header .container-fluid > .row {
  margin-left: 0;
  margin-right: 0;
}

body.site-editorial .tj-header .container-fluid > .row > .col {
  padding-left: 0;
  padding-right: 0;
}

body.site-editorial .tj-header_wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 16px 24px;
}

body.site-editorial .site_logo {
  flex-shrink: 0;
  margin-right: auto;
}

body.site-editorial .tj-offcanvas .offcanvas_top {
  justify-content: flex-end;
}

body.site-editorial .site_navigation--always {
  display: flex;
  margin-left: auto;
  width: auto;
  flex: 0 0 auto;
}

body.site-editorial .site_navigation--always nav {
  padding-left: 0;
  padding-right: 0;
}

body.site-editorial .site_navigation--always nav ul:not(.sub-menu) {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 4px clamp(12px, 2.5vw, 28px);
}

/* Beat main.css header-inner 3-column grid (centers nav at ≥992px) */
@media only screen and (min-width: 992px) {
  body.site-editorial .tj-header.header-inner .tj-header_wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 16px 24px;
    grid-template-columns: unset;
  }

  body.site-editorial .tj-header.header-inner .site_navigation,
  body.site-editorial .tj-header.header-inner .site_navigation--always {
    justify-self: auto;
    width: auto;
    max-width: none;
    margin-left: auto;
    flex: 0 0 auto;
  }
}

@media only screen and (max-width: 767px) {
  body.site-editorial .site_navigation--always nav ul:not(.sub-menu) > li > a {
    font-size: 13px;
  }

  body.site-editorial .tj-header_wrap {
    gap: 12px;
  }
}

/* Mobile nav: hamburger + offcanvas (matches meanmenu / Bootstrap lg at 991px) */
@media only screen and (max-width: 991px) {
  body.site-editorial {
    overflow-x: clip;
  }

  body.site-editorial .tj-header .container-fluid {
    overflow-x: clip;
  }

  body.site-editorial .tj-header_wrap > .site_navigation,
  body.site-editorial .tj-header_wrap > .site_navigation--always {
    display: none !important;
  }

  body.site-editorial .tj-header_mobile_toggle {
    display: grid;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: auto;
    min-width: 44px;
    min-height: 44px;
    padding: 12px;
    border: 0;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.08);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  body.site-editorial .tj-header_mobile_toggle > span {
    background-color: #ffffff;
  }

  body.site-editorial .tj-header_mobile_toggle:focus-visible {
    outline: 2px solid var(--site-accent);
    outline-offset: 3px;
  }
}

@media only screen and (min-width: 992px) {
  body.site-editorial .tj-header_mobile_toggle {
    display: none !important;
  }
}

body.site-editorial .inner_top_gap {
  padding-top: 96px;
  background-color: transparent;
}

@media only screen and (min-width: 992px) {
  body.site-editorial .inner_top_gap {
    padding-top: 108px;
  }
}

body.page-home.site-editorial .inner_top_gap {
  padding-top: 88px;
}

@media only screen and (min-width: 992px) {
  body.page-home.site-editorial .inner_top_gap {
    padding-top: 96px;
  }
}

body.page-about.site-editorial .inner_top_gap,
body.page-resume.site-editorial .inner_top_gap {
  padding-top: 76px;
}

body.page-sachacks.site-editorial .inner_top_gap,
body.page-nordstrom-rack.site-editorial .inner_top_gap,
body.page-inclusive-lab.site-editorial .inner_top_gap,
body.page-inclusive-design-lab.site-editorial .inner_top_gap,
body.page-schedgo.site-editorial .inner_top_gap,
body.page-ibm-saas-console.site-editorial .inner_top_gap,
body.page-breaking-barriers.site-editorial .inner_top_gap,
body.page-bloom-and-vine.site-editorial .inner_top_gap,
body.page-makeability-lab.site-editorial .inner_top_gap {
  padding-top: 76px;
}

body.page-contact.site-editorial .inner_top_gap {
  padding-top: 76px;
}

body.page-playground.site-editorial .inner_top_gap {
  padding-top: 76px;
}

body.page-ideas.site-editorial .inner_top_gap {
  padding-top: 76px;
}

@media only screen and (min-width: 992px) {
  body.page-about.site-editorial .inner_top_gap,
  body.page-resume.site-editorial .inner_top_gap {
    padding-top: 84px;
  }

  body.page-sachacks.site-editorial .inner_top_gap,
  body.page-nordstrom-rack.site-editorial .inner_top_gap,
  body.page-inclusive-lab.site-editorial .inner_top_gap,
body.page-inclusive-design-lab.site-editorial .inner_top_gap,
  body.page-schedgo.site-editorial .inner_top_gap,
  body.page-ibm-saas-console.site-editorial .inner_top_gap,
  body.page-breaking-barriers.site-editorial .inner_top_gap,
  body.page-bloom-and-vine.site-editorial .inner_top_gap,
  body.page-makeability-lab.site-editorial .inner_top_gap {
    padding-top: 84px;
  }

  body.page-contact.site-editorial .inner_top_gap {
    padding-top: 84px;
  }

  body.page-playground.site-editorial .inner_top_gap {
    padding-top: 84px;
  }

  body.page-ideas.site-editorial .inner_top_gap {
    padding-top: 84px;
  }
}

/* Editorial sections */
.home-landing-section--editorial {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0 var(--site-content-inset) 72px;
  display: flex;
  align-items: flex-end;
  text-align: left;
  color: #ffffff;
  overflow: visible;
  background: transparent;
  box-sizing: border-box;
}

.home-landing-section--editorial.editorial-page-section {
  min-height: min(72vh, 780px);
}

body.page-home .home-landing-section--editorial:not(.editorial-page-section) {
  min-height: auto;
}

/* Per-section bg disabled — use body.site-editorial::before for continuous glow */
body.site-editorial .home-landing__bg {
  display: none;
}

.home-landing__container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.home-landing-section--editorial .home-landing__inner {
  width: 100%;
  max-width: 36em;
  margin: 0;
  padding: 0;
}

body.page-home .home-landing-section--split.home-landing-section--editorial .home-landing__inner.home-landing__inner--split,
body.page-home .home-landing-section--solo.home-landing-section--editorial .home-landing__inner.home-landing__inner--split {
  max-width: 100%;
  width: 100%;
}

/* Home — dance studio hero */
@keyframes studio-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

body.page-home .home-landing-section--dance-studio {
  position: relative;
  align-items: flex-start;
  padding-top: clamp(20px, 3.5vh, 48px);
  padding-bottom: clamp(44px, 6vh, 80px);
  overflow: hidden;
  min-height: min(88vh, 920px);
}

body.page-home .home-landing__studio-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

body.page-home .home-landing__marquee-track {
  position: absolute;
  top: clamp(8px, 2vh, 24px);
  left: 0;
  right: 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

body.page-home .home-landing__marquee-text {
  display: flex;
  width: max-content;
  margin: 0;
  animation: studio-marquee 28s linear infinite;
  font-size: 10px;
  font-weight: var(--tj-fw-medium);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  white-space: nowrap;
}

body.page-home .home-landing__marquee-text span {
  padding-right: 2.5em;
}

body.page-home .home-landing__barre {
  position: absolute;
  left: var(--site-content-inset);
  top: 18%;
  bottom: 12%;
  width: 2px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255, 77, 184, 0.45) 18%,
    rgba(180, 122, 255, 0.35) 82%,
    transparent 100%
  );
  border-radius: 2px;
  transform: rotate(-1.5deg);
  transform-origin: top center;
}

body.page-home .home-landing__spotlight {
  position: absolute;
  top: -10%;
  right: 8%;
  width: min(52vw, 420px);
  height: min(52vw, 420px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 77, 184, 0.14) 0%, transparent 68%);
  filter: blur(8px);
}

body.page-home .home-landing__inner--dance-studio {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: min(96vw, 72rem);
  margin: 0;
  padding-left: clamp(18px, 2.5vw, 28px);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(28px, 4vh, 40px);
  align-items: start;
}

body.page-home .home-landing__stage {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2.5vh, 28px);
  min-width: 0;
}

body.page-home .home-landing__aside {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vh, 28px);
  min-width: 0;
  padding-top: 2px;
}

body.page-home .home-landing-section--dance-studio .home-landing__eyebrow {
  margin: 0 0 4px;
  font-size: 11px;
  letter-spacing: 0.24em;
  color: rgba(255, 255, 255, 0.48);
}

body.page-home .home-landing-section--dance-studio .home-landing__display {
  margin: 0;
}

body.page-home .home-landing-section--dance-studio .home-landing__line {
  font-size: clamp(2.25rem, 5.2vw, 4.5rem);
  line-height: 0.95;
  text-wrap: balance;
}

body.page-home .home-landing-section--dance-studio .home-landing__line--accent {
  color: var(--site-accent);
  font-style: italic;
  padding-left: clamp(6px, 1.5vw, 16px);
}

body.page-home .home-landing-section--dance-studio .home-landing__lead {
  margin: 0;
  max-width: 22em;
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  line-height: 1.55;
  letter-spacing: -0.01em;
  text-wrap: pretty;
}

body.page-home .home-landing__program {
  display: grid;
  gap: 12px;
  padding: clamp(16px, 2.5vh, 22px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body.page-home .home-landing__program-label {
  margin: 0;
  font-size: 10px;
  font-weight: var(--tj-fw-medium);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

body.page-home .home-landing__program-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.page-home .home-landing__program-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  gap: 14px;
}

body.page-home .home-landing__program-num {
  font-size: 11px;
  font-weight: var(--tj-fw-sbold);
  letter-spacing: 0.12em;
  color: var(--site-accent);
  font-variant-numeric: tabular-nums;
}

body.page-home .home-landing__program-list a {
  font-size: clamp(0.9375rem, 1.1vw, 1.0625rem);
  font-weight: var(--tj-fw-medium);
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

body.page-home .home-landing__program-list a:hover {
  color: #ffffff;
  border-bottom-color: var(--site-accent-soft);
}

body.page-home .home-landing-section--dance-studio .home-landing__details {
  max-width: 26em;
}

body.page-home .home-landing__connect--studio {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: clamp(14px, 2vw, 24px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 4px;
  padding-top: clamp(16px, 2vh, 20px);
}

body.page-home .home-landing__connect-label {
  font-size: 10px;
  font-weight: var(--tj-fw-medium);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  flex: 0 0 100%;
  margin-bottom: 2px;
}

body.page-home .home-landing__connect-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(14px, 2.5vw, 28px);
}

body.page-home .home-landing__connect-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(0.8125rem, 0.95vw, 0.875rem);
  font-weight: var(--tj-fw-sbold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

body.page-home .home-landing__connect-link i {
  font-size: 1.05em;
  line-height: 1;
}

body.page-home .home-landing__connect-resume-icon {
  font-size: 1.1em;
  line-height: 1;
}

body.page-home .home-landing__connect-link:hover {
  color: var(--site-accent);
  transform: translateY(-1px);
}

body.page-home .home-landing__connect-links .home-landing__connect-link + .home-landing__connect-link {
  position: relative;
}

body.page-home .home-landing__connect-links .home-landing__connect-link + .home-landing__connect-link::before {
  content: "";
  position: absolute;
  left: calc(-1 * clamp(7px, 1.25vw, 14px));
  top: 50%;
  width: 1px;
  height: 14px;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
}

@media only screen and (min-width: 992px) {
  body.page-home .home-landing__inner--dance-studio {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    column-gap: clamp(40px, 6vw, 88px);
    row-gap: 0;
  }

  body.page-home .home-landing__aside {
    padding-top: clamp(48px, 8vh, 72px);
  }

  body.page-home .home-landing__barre {
    top: 14%;
    bottom: 8%;
  }
}

@media only screen and (max-width: 991px) {
  body.page-home .home-landing__barre {
    opacity: 0.35;
  }

  body.page-home .home-landing__inner--dance-studio {
    max-width: min(100%, 34rem);
  }

  body.page-home .home-landing-section--dance-studio .home-landing__lead {
    max-width: none;
  }
}

@media only screen and (max-width: 575px) {
  body.page-home .home-landing-section--dance-studio .home-landing__line {
    font-size: clamp(2rem, 10.5vw, 3rem);
  }

  body.page-home .home-landing__connect-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  body.page-home .home-landing__connect-links .home-landing__connect-link + .home-landing__connect-link::before {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.page-home .home-landing__marquee-text {
    animation: none;
  }

  body.page-home .home-landing__connect-link:hover {
    transform: none;
  }
}

/* Home — split hero (editorial two-column copy at desktop) */
body.page-home .home-landing-section--split {
  position: relative;
  align-items: center;
  text-align: left;
  padding-top: clamp(12px, 2.5vh, 32px);
  padding-bottom: clamp(32px, 5vh, 56px);
  min-height: min(72vh, 760px);
  overflow: hidden;
}

/* Home — solo headline hero */
body.page-home .home-landing-section--solo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  padding-top: clamp(12px, 2vh, 24px);
  padding-bottom: clamp(32px, 5vh, 56px);
  min-height: clamp(380px, 52svh, 620px);
  overflow: visible;
  background: transparent;
  box-sizing: border-box;
}

body.page-home .home-landing-section--solo .home-landing__container.container-fluid {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 0;
}

body.page-home .home-landing-section--solo .home-landing__inner--split {
  width: 100%;
}

body.page-home .home-landing-section--solo .home-landing__split {
  grid-template-columns: minmax(0, 1fr);
  min-height: 0;
  width: 100%;
}

body.page-home .home-landing-section--solo .home-landing__split-col--headline {
  width: 100%;
  max-width: none;
}

body.page-home .home-landing-section--solo .home-landing__inner--split {
  max-width: 100%;
  width: 100%;
  padding-left: var(--site-content-inset);
  padding-right: var(--site-content-inset);
}

body.page-home .home-landing__split-head--spread {
  width: 100%;
  max-width: none;
  gap: clamp(14px, 2.2vh, 24px);
}

body.page-home .home-landing__hero-statement {
  margin: 0;
  width: 100%;
  max-width: none;
  font-family: var(--tj-ff-body);
  font-size: clamp(1.875rem, 3.4vw + 0.5rem, 4.75rem);
  font-weight: var(--tj-fw-bold);
  line-height: 1.06;
  letter-spacing: -0.04em;
  text-transform: lowercase;
  color: #ffffff;
  text-wrap: pretty;
  overflow-wrap: break-word;
  hyphens: none;
}

body.page-home .home-landing-section--solo .home-landing__hero-statement {
  font-size: clamp(2rem, 4.2vw + 0.35rem, 5.25rem);
  line-height: 1.04;
}

body.page-home .home-landing__statement-kicker,
body.page-home .home-landing__statement-title,
body.page-home .home-landing__statement-tagline {
  display: inline;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  color: inherit;
}

body.page-home .home-landing__statement-title--accent {
  color: var(--site-accent);
}

body.page-home .home-landing__statement-tagline {
  font-weight: var(--tj-fw-bold);
  color: #ffffff;
}

/* Home — hero band (landing + preview); glow from body.site-editorial::before only */
body.page-home .home-hero-band {
  position: relative;
  z-index: 1;
  overflow: visible;
  background: transparent;
}

body.page-home.site-editorial .home-hero-band > .inner_top_gap {
  background-color: transparent;
}

body.page-home .home-hero-band__ambient {
  display: none;
}

body.page-home .home-hero-band > .home-landing-section {
  position: relative;
  z-index: 1;
  background: transparent;
}

body.page-home .home-landing-section--editorial .home-landing__ambient {
  display: none;
}

body.page-home .home-landing__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

body.page-home .home-landing__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  will-change: transform;
}

body.page-home .home-landing__glow--left {
  top: 4%;
  left: -10%;
  width: min(52vw, 420px);
  height: min(52vw, 420px);
  background: radial-gradient(circle, rgba(255, 77, 184, 0.18) 0%, transparent 70%);
}

body.page-home .home-landing__glow--right {
  top: 28%;
  right: -8%;
  width: min(56vw, 460px);
  height: min(56vw, 460px);
  background: radial-gradient(circle, rgba(140, 100, 255, 0.14) 0%, transparent 68%);
}

body.page-home .home-landing__glow--accent {
  bottom: 8%;
  left: 38%;
  width: min(40vw, 320px);
  height: min(32vw, 260px);
  background: radial-gradient(ellipse, rgba(255, 77, 184, 0.1) 0%, transparent 72%);
}

@media (prefers-reduced-motion: no-preference) {
  body.page-home .home-landing__glow--left {
    animation: homeLandingGlowDrift 20s ease-in-out infinite alternate;
  }

  body.page-home .home-landing__glow--right {
    animation: homeLandingGlowDrift 24s ease-in-out infinite alternate-reverse;
  }
}

@keyframes homeLandingGlowDrift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(14px, -20px, 0) scale(1.05);
  }
}

body.page-home .home-landing-section--split .home-landing__container.container-fluid,
body.page-home .home-landing-section--solo .home-landing__container.container-fluid {
  position: relative;
  z-index: 1;
  padding-left: 0;
  padding-right: 0;
}

body.page-home .home-landing__inner--split {
  width: 100%;
  max-width: min(96vw, 80rem);
  margin: 0 auto;
  padding-left: clamp(16px, 2.2vw, 28px);
  padding-right: clamp(16px, 2.2vw, 28px);
}

body.page-home .home-landing__split {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: clamp(28px, 4vh, 40px);
  min-width: 0;
  width: 100%;
  min-height: min(52vh, 560px);
}

body.page-home .home-landing__split-col {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

body.page-home .home-landing__split-col--headline {
  align-items: flex-start;
  text-align: left;
}

body.page-home .home-landing__split-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  padding-top: clamp(8px, 2vh, 24px);
  padding-bottom: 0;
  min-width: 0;
  text-align: left;
}

body.page-home .home-landing-section--split .home-landing__eyebrow--accent,
body.page-home .home-landing-section--solo .home-landing__eyebrow--accent {
  margin: 0 0 clamp(14px, 2vh, 18px);
  font-size: clamp(0.625rem, 0.75vw, 0.6875rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--site-accent);
}

body.page-home .home-landing__hero-kicker {
  margin: 0 0 clamp(10px, 1.4vh, 14px);
  font-family: var(--tj-ff-body);
  font-size: clamp(0.625rem, 0.75vw, 0.6875rem);
  font-weight: var(--tj-fw-medium);
  letter-spacing: 0.22em;
  line-height: 1.35;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}

body.page-home .home-landing__split-title {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0;
  text-align: left;
  position: relative;
  z-index: 1;
}

body.page-home .home-landing-section--split .home-landing__display,
body.page-home .home-landing-section--solo .home-landing__display {
  margin: 0;
  text-align: left;
}

body.page-home .home-landing-section--split .home-landing__line,
body.page-home .home-landing-section--solo .home-landing__line {
  font-size: clamp(2.5rem, 6.8vw, 5.75rem);
  line-height: 0.9;
  letter-spacing: -0.045em;
  font-weight: var(--tj-fw-bold);
  text-transform: lowercase;
  color: #ffffff;
}

body.page-home .home-landing-section--split .home-landing__line--accent,
body.page-home .home-landing-section--solo .home-landing__line--accent {
  color: var(--site-accent);
}

body.page-home .home-landing__tagline {
  margin: clamp(14px, 2.2vh, 22px) 0 0;
  max-width: min(18em, 100%);
  font-family: var(--tj-ff-body);
  font-size: clamp(1.125rem, 2vw, 1.625rem);
  font-weight: var(--tj-fw-bold);
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-wrap: pretty;
}

body.page-home .home-landing__split-body {
  margin: 0;
  max-width: min(22em, 100%);
  font-family: var(--tj-ff-body);
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  font-weight: var(--tj-fw-medium);
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.92);
  text-wrap: pretty;
}

/* Home — meta copy + project showcase (one landing unit) */
body.page-home .home-landing__hero-landing {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(24px, 3.2vh, 32px);
  width: 100%;
  max-width: 100%;
}

body.page-home .home-landing__hero-statement + .home-landing__hero-landing {
  margin-top: clamp(16px, 2.4vh, 24px);
}

body.page-home .home-landing__hero-meta {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  font-family: var(--tj-ff-body);
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  font-weight: var(--tj-fw-medium);
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.88);
  text-wrap: pretty;
}

@media only screen and (min-width: 768px) {
  body.page-home .home-landing__hero-meta {
    white-space: nowrap;
    text-wrap: nowrap;
  }
}

body.page-home .home-landing__hero-meta .home-landing__statement-title {
  display: inline;
  font: inherit;
  font-weight: var(--tj-fw-bold);
  letter-spacing: inherit;
  text-transform: inherit;
  color: inherit;
}

body.page-home .home-landing__hero-meta .home-landing__statement-title--accent {
  color: var(--site-accent);
}

body.page-home .home-landing__hero-meta-personal {
  display: inline;
  color: rgba(255, 255, 255, 0.6);
}

/* Home — hero project showcase grid */
body.page-home .home-hero-projects {
  margin-top: 0;
  width: 100%;
  max-width: 100%;
}

body.page-home .home-landing__hero-landing .home-hero-projects {
  margin-top: 0;
}

body.page-home .home-hero-projects__showcase {
  position: relative;
  width: 100%;
}

body.page-home .home-hero-projects__progress {
  width: 100%;
  flex-shrink: 0;
}

body.page-home .home-hero-projects__card:not(.is-active) .home-hero-projects__progress {
  visibility: hidden;
  pointer-events: none;
}

body.page-home .home-hero-projects__progress-track {
  position: relative;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

body.page-home .home-hero-projects__progress-fill {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: var(--site-accent);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  body.page-home .home-hero-projects__progress {
    display: none;
  }
}

body.page-home .home-hero-projects__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(10px, 1.4vw, 14px);
  width: 100%;
}

@media only screen and (min-width: 576px) {
  body.page-home .home-hero-projects__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media only screen and (min-width: 992px) {
  body.page-home .home-hero-projects__grid {
    gap: clamp(12px, 1.2vw, 16px);
  }
}

body.page-home .home-hero-projects__card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: clamp(8px, 1vh, 10px);
  margin: 0;
  padding: clamp(8px, 1vw, 10px);
  width: 100%;
  text-align: left;
  font: inherit;
  color: inherit;
  cursor: pointer;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  transition:
    border-color 0.35s ease,
    background-color 0.35s ease,
    opacity 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s ease;
}

body.page-home .home-hero-projects__card:focus {
  outline: none;
}

body.page-home .home-hero-projects__card:focus-visible {
  outline: 2px solid var(--site-accent);
  outline-offset: 3px;
}

body.page-home .home-hero-projects__card:not(.is-active) {
  opacity: 0.55;
}

body.page-home .home-hero-projects__card:not(.is-active):hover,
body.page-home .home-hero-projects__card:not(.is-active):focus-visible {
  opacity: 0.72;
}

body.page-home .home-hero-projects__card.is-active {
  opacity: 1;
  border-color: rgba(255, 77, 184, 0.62);
  background: rgba(255, 77, 184, 0.1);
  box-shadow:
    0 0 0 1px rgba(255, 77, 184, 0.18),
    0 0 24px rgba(255, 77, 184, 0.14);
}

body.page-home .home-hero-projects__card[data-work-href],
body.page-home .home-hero-projects__card[data-case-study-href] {
  cursor: pointer;
}

body.page-home .home-hero-projects__card--soon {
  cursor: default;
}

body.page-home .home-hero-projects__thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 16 / 10;
  background: var(--project-preview-surface, rgba(0, 0, 0, 0.35));
}

body.page-home .home-hero-projects__thumb img,
body.page-home .home-hero-projects__thumb video {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
  opacity: 0.88;
  transition: opacity 0.35s ease;
}

body.page-home .home-hero-projects__thumb img.home-hero-projects__thumb-scroll {
  width: 100%;
  height: auto;
  min-height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: top center;
  animation: scrollWebsite 22s linear infinite alternate;
  animation-play-state: running;
}

body.page-home .home-hero-projects__thumb--logo {
  padding: clamp(10px, 1.2vw, 14px);
  background: #ffffff;
}

body.page-home .home-hero-projects__thumb--logo img {
  width: auto;
  height: auto;
  max-width: min(72%, 14rem);
  max-height: min(80%, 100%);
  object-fit: contain;
  object-position: center center;
}

body.page-home .home-hero-projects__thumb--ibm img {
  max-width: 92%;
  max-height: 92%;
}

body.page-home .home-hero-projects__card.is-active .home-hero-projects__thumb img,
body.page-home .home-hero-projects__card.is-active .home-hero-projects__thumb video {
  opacity: 1;
}

body.page-home .home-hero-projects__card:not(.is-active):hover .home-hero-projects__thumb img,
body.page-home .home-hero-projects__card:not(.is-active):focus-visible .home-hero-projects__thumb img,
body.page-home .home-hero-projects__card:not(.is-active):hover .home-hero-projects__thumb video,
body.page-home .home-hero-projects__card:not(.is-active):focus-visible .home-hero-projects__thumb video {
  opacity: 0.95;
}

body.page-home .home-hero-projects__card-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding: 0 0.1rem 0.05rem;
  min-width: 0;
}

body.page-home .home-hero-projects__card-title {
  margin: 0 0 clamp(6px, 0.8vh, 8px);
  font-family: var(--tj-ff-body);
  font-size: clamp(0.8125rem, 0.95vw, 0.9375rem);
  font-weight: var(--tj-fw-bold);
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.72);
  text-transform: none;
  transition: color 0.35s ease;
}

body.page-home .home-hero-projects__card.is-active .home-hero-projects__card-title {
  margin-bottom: clamp(8px, 1vh, 10px);
  font-size: clamp(0.9375rem, 1.1vw, 1.0625rem);
  color: #ffffff;
}

body.page-home .home-hero-projects__card-desc {
  margin: 0 0 clamp(10px, 1.2vh, 12px);
  font-family: var(--tj-ff-body);
  font-size: clamp(0.75rem, 0.88vw, 0.8125rem);
  font-weight: var(--tj-fw-regular);
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.72);
  text-wrap: pretty;
  transition: color 0.35s ease;
}

body.page-home .home-hero-projects__card.is-active .home-hero-projects__card-desc {
  color: rgba(255, 255, 255, 0.9);
}

@media (prefers-reduced-motion: reduce) {
  body.page-home .home-hero-projects__card {
    transition: none;
  }

  body.page-home .home-hero-projects__card:not(.is-active) {
    opacity: 0.72;
  }

  body.page-home .home-hero-projects__thumb img,
  body.page-home .home-hero-projects__thumb video {
    transition: none;
  }

  body.page-home .home-hero-projects__thumb img.home-hero-projects__thumb-scroll {
    animation: none;
  }

  body.page-home .home-hero-projects__card-desc {
    transition: none;
  }
}

body.page-home .home-hero-projects__case-study {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--tj-ff-body);
  font-size: clamp(0.875rem, 1.05vw, 0.9375rem);
  font-weight: var(--tj-fw-bold);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--site-accent);
  text-decoration: none;
  transition: color 0.2s ease, gap 0.2s ease;
}

body.page-home .home-hero-projects__case-study:hover,
body.page-home .home-hero-projects__case-study:focus-visible {
  color: #ff8fd4;
  gap: 0.5rem;
}

body.page-home .home-hero-projects__case-study:focus-visible {
  outline: 2px solid var(--site-accent);
  outline-offset: 3px;
}

body.page-home .home-hero-projects__case-study--soon {
  color: rgba(255, 255, 255, 0.42);
  text-transform: none;
  font-weight: var(--tj-fw-medium);
  letter-spacing: -0.01em;
  cursor: default;
}

body.page-home.site-editorial .home-project-grid--live .ibm-logo {
  display: block;
  width: auto;
  max-width: 100%;
  height: 1.5rem;
  object-fit: contain;
  object-position: left center;
  opacity: 0.92;
}

body.page-home.site-editorial .home-project-grid--live .nordstrom-rack-logo {
  display: block;
  width: auto;
  height: 1.3125rem;
  max-width: none;
  object-fit: contain;
  opacity: 0.92;
}

/* Shared circular social icon buttons (contact page, etc.) */
body.site-editorial .home-landing__social-link,
body.site-editorial .contact-page__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-sizing: border-box;
  width: 44px;
  height: 44px;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

body.site-editorial .home-landing__social-link i,
body.site-editorial .contact-page__social-link i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.125rem;
  height: 1.125rem;
  font-size: 1.125rem;
  line-height: 1;
}

body.site-editorial .home-landing__social-link .home-landing__resume-icon,
body.site-editorial .home-landing__social-link .home-landing__gmail-icon,
body.site-editorial .home-landing__social-link .home-landing__phone-icon,
body.site-editorial .contact-page__social-link .contact-page__resume-icon {
  display: block;
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
}

body.site-editorial .home-landing__social-link:hover,
body.site-editorial .contact-page__social-link:hover {
  color: var(--site-accent);
  border-color: rgba(255, 77, 184, 0.45);
  background-color: rgba(255, 77, 184, 0.08);
  transform: translateY(-1px);
}

body.site-editorial .home-landing__social-link:focus-visible,
body.site-editorial .contact-page__social-link:focus-visible {
  outline: 2px solid rgba(255, 77, 184, 0.55);
  outline-offset: 3px;
}

@media only screen and (min-width: 992px) {
  body.page-home .home-landing-section--split .home-landing__split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: clamp(32px, 5vw, 72px);
    row-gap: 0;
    align-items: center;
    min-height: min(56vh, 620px);
  }

  body.page-home .home-landing-section--solo .home-landing__split {
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
  }

  body.page-home .home-landing-section--solo .home-landing__hero-statement {
    font-size: clamp(2.75rem, 4.8vw, 5.75rem);
    line-height: 1.02;
  }

}

@media only screen and (min-width: 992px) and (max-height: 820px) {
  body.page-home .home-landing-section--solo {
    min-height: auto;
    max-height: none;
    padding-top: clamp(8px, 1.5vh, 16px);
    padding-bottom: clamp(16px, 2.5vh, 28px);
  }

  body.page-home .home-landing__hero-statement {
    font-size: clamp(2rem, 3.2vw, 3.35rem);
    line-height: 1.12;
  }

  body.page-home .home-landing__split-head--spread {
    gap: clamp(10px, 1.8vh, 16px);
  }
}

@media only screen and (max-width: 991px) {
  body.page-home .home-landing-section--split,
  body.page-home .home-landing-section--solo {
    min-height: auto;
  }

  body.page-home .home-landing__split {
    min-height: auto;
  }
}

@media only screen and (max-width: 767px) {
  body.page-home .home-landing-section--split .home-landing__line,
  body.page-home .home-landing-section--solo .home-landing__line {
    font-size: clamp(2.25rem, 11vw, 3.5rem);
  }

  body.page-home .home-landing__hero-statement {
    font-size: clamp(1.75rem, 7.2vw, 2.875rem);
    line-height: 1.14;
  }

  body.page-home .home-landing-section--solo {
    min-height: auto;
    max-height: none;
  }

  body.page-home .home-landing__tagline {
    font-size: clamp(1rem, 4.5vw, 1.25rem);
  }
}

@media only screen and (max-width: 575px) {
  body.page-home .home-landing-section--split .home-landing__line,
  body.page-home .home-landing-section--solo .home-landing__line {
    font-size: clamp(2rem, 12vw, 2.75rem);
  }

  body.page-home .home-landing__hero-statement {
    font-size: clamp(1.5rem, 8.8vw, 2.25rem);
    line-height: 1.16;
  }

  body.page-home .home-landing__split-head--spread {
    gap: clamp(12px, 2vh, 18px);
  }

  body.page-home .home-landing__inner--split {
    padding-left: 12px;
    padding-right: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.page-home .home-landing__glow--left,
  body.page-home .home-landing__glow--right {
    animation: none;
  }

  body.site-editorial .home-landing__social-link:hover {
    animation: none;
    transform: none;
  }
}

.home-landing__eyebrow {
  font-family: var(--tj-ff-body);
  font-size: clamp(10px, 2.5vw, 11px);
  font-weight: var(--tj-fw-medium);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 18px;
}

.home-landing__display {
  margin: 0 0 10px;
  font-family: var(--tj-ff-body);
  font-weight: var(--tj-fw-bold);
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: #ffffff;
}

.home-landing__line {
  display: block;
  font-size: clamp(2rem, 5.2vw, 4.75rem);
  text-transform: lowercase;
  color: #ffffff;
  overflow-wrap: break-word;
}

.home-landing__line--single {
  font-size: clamp(2.25rem, 6vw, 5rem);
}

body.site-editorial .tj-fade,
body.site-editorial .tj-reveal-line,
body.site-editorial .tj-reveal-line .reveal-line {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.home-landing__lead {
  margin: 0 0 24px;
  font-family: var(--tj-ff-body);
  font-size: clamp(1.125rem, 2.4vw, 1.65rem);
  font-weight: var(--tj-fw-medium);
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.92);
  text-wrap: pretty;
}

.home-landing__details {
  width: 100%;
  max-width: 34em;
}

.home-landing__detail {
  margin: 0;
  font-family: var(--tj-ff-body);
  font-size: clamp(0.9375rem, 1.1vw, 1.0625rem);
  font-weight: var(--tj-fw-regular);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  text-wrap: pretty;
  overflow-wrap: break-word;
}

.home-landing__detail + .home-landing__detail {
  margin-top: 0.9rem;
}

.home-landing__detail--muted {
  color: rgba(255, 255, 255, 0.5);
}

.home-landing__detail a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: var(--tj-color-theme-primary);
  text-underline-offset: 0.2em;
  transition: color 0.2s ease;
}

.home-landing__detail a:hover {
  color: #ffffff;
}

/* Legacy copy blocks on inner pages */
.home-landing-section--editorial .home-landing__copy {
  font-family: var(--tj-ff-body);
  font-size: clamp(0.9375rem, 1.1vw, 1.0625rem);
  font-weight: var(--tj-fw-regular);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  text-wrap: pretty;
  overflow-wrap: break-word;
  max-width: 34em;
}

.home-landing-section--editorial .home-landing__copy p {
  margin: 0;
}

.home-landing-section--editorial .home-landing__copy + .home-landing__copy {
  margin-top: 0.9rem;
}

.home-landing-section--editorial .home-landing__copy--secondary {
  color: rgba(255, 255, 255, 0.5);
}

.home-landing-section--editorial .home-landing__copy a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: var(--tj-color-theme-primary);
  text-underline-offset: 0.2em;
}

.home-landing-section--editorial .home-landing__title.site-page__title {
  font-family: var(--tj-ff-body);
  font-size: clamp(2.25rem, 6vw, 5rem);
  font-weight: var(--tj-fw-bold);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin: 0 0 24px;
  text-transform: lowercase;
}

.home-landing-section--editorial .home-landing__actions {
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin-top: 36px;
}

.home-landing__cta {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  max-width: 100%;
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.home-landing__cta:hover {
  opacity: 0.7;
  color: #ffffff;
}

.home-landing__cta-label {
  font-family: var(--tj-ff-body);
  font-size: clamp(0.8125rem, 1.1vw, 0.9375rem);
  font-weight: var(--tj-fw-medium);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-landing__cta-rule {
  display: block;
  width: min(240px, 100%);
  height: 1px;
  background-color: rgba(255, 255, 255, 0.45);
  transform-origin: left center;
  transition: transform 0.35s ease, background-color 0.35s ease;
}

.home-landing__cta:hover .home-landing__cta-rule {
  transform: scaleX(1.06);
  background-color: var(--site-accent);
}

.home-landing__cta--secondary .home-landing__cta-label {
  color: rgba(255, 255, 255, 0.55);
}

.home-landing__cta--secondary .home-landing__cta-rule {
  width: min(180px, 80%);
  background-color: rgba(255, 255, 255, 0.25);
}

/* Portfolio / projects (dark editorial) */
body.page-home.site-editorial .project-filter-section {
  position: relative;
  z-index: 1;
  background-color: transparent;
  margin: 0;
  padding: 24px var(--site-content-inset) 100px;
  box-sizing: border-box;
  color: #ffffff;
  overflow: visible;
}

body.page-home.site-editorial .project-filter-section .container-fluid {
  padding-left: 0;
  padding-right: 0;
}

body.page-playground.site-editorial .tj-header.header-inner.header-absolute .site_navigation nav ul:not(.sub-menu) > li.current-menu-item > a,
body.page-playground.site-editorial .tj-header.header-inner.header-absolute .site_navigation nav ul:not(.sub-menu) > li:hover > a {
  color: var(--site-accent);
}

body.page-playground .playground-page-section {
  position: relative;
  z-index: 1;
  padding: clamp(12px, 2vh, 28px) var(--site-content-inset) clamp(96px, 14vh, 160px);
  overflow: visible;
  min-height: 0;
}

body.page-playground .playground-page__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

body.page-playground .playground-page__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
}

body.page-playground .playground-page__glow--left {
  top: 6%;
  left: -8%;
  width: min(48vw, 380px);
  height: min(48vw, 380px);
  background: radial-gradient(circle, rgba(255, 77, 184, 0.14) 0%, transparent 70%);
}

body.page-playground .playground-page__glow--right {
  top: 22%;
  right: -6%;
  width: min(52vw, 420px);
  height: min(52vw, 420px);
  background: radial-gradient(circle, rgba(140, 100, 255, 0.12) 0%, transparent 68%);
}

body.page-playground .playground-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(28px, 4vh, 40px);
  align-items: start;
  max-width: 1320px;
  margin: 0 auto;
  overflow: visible;
}

@media only screen and (min-width: 992px) {
  body.page-playground .playground-layout--carousel-bleed {
    grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
    grid-template-rows: 1fr;
    gap: 0 clamp(20px, 3vw, 36px);
    align-items: start;
  }

  body.page-playground .playground-layout--carousel-bleed .playground-layout__intro {
    grid-column: 1;
    grid-row: 1;
    align-self: start;
  }

  body.page-playground .playground-layout--carousel-bleed .playground-layout__cards {
    grid-column: 1 / -1;
    grid-row: 1;
    min-height: 0;
    padding-left: clamp(200px, 24vw, 300px);
  }
}

body.page-playground .playground-layout.container-fluid {
  padding-left: 0;
  padding-right: 0;
}

body.page-playground .playground-layout__intro {
  position: relative;
  z-index: 4;
  margin: 0;
  padding: clamp(8px, 1.5vh, 20px) 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

@media only screen and (min-width: 992px) {
  body.page-playground .playground-layout__intro {
    position: sticky;
    top: clamp(84px, 11vh, 108px);
    align-self: start;
    max-height: calc(100dvh - clamp(96px, 12vh, 120px));
    overflow: visible;
    overscroll-behavior: auto;
    pointer-events: none;
  }

  body.page-playground .playground-layout__intro a,
  body.page-playground .playground-layout__intro button {
    pointer-events: auto;
  }
}

body.page-playground .playground-page__eyebrow {
  margin: 0 0 14px;
  font-family: var(--tj-ff-body);
  font-size: 0.6875rem;
  font-weight: var(--tj-fw-medium);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

body.page-playground .playground-page__title {
  margin: 0 0 clamp(16px, 2.2vh, 22px);
  font-family: var(--tj-ff-body);
  font-weight: var(--tj-fw-bold);
  letter-spacing: -0.04em;
  line-height: 0.88;
  color: #ffffff;
}

body.page-playground .playground-page__title-word {
  display: block;
  font-size: clamp(2.75rem, 8vw, 5.25rem);
  text-transform: lowercase;
}

body.page-playground .playground-page__title-word--accent {
  padding-left: clamp(0.28em, 5vw, 0.7em);
  color: var(--site-accent);
}

body.page-playground .playground-page__lead {
  margin: 0;
  font-size: clamp(0.9375rem, 1.05vw, 1.0625rem);
  font-weight: var(--tj-fw-medium);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  text-wrap: pretty;
}

body.page-playground .playground-page__lead + .playground-page__lead {
  margin-top: clamp(12px, 1.5vh, 16px);
}

body.page-playground .playground-page__link {
  margin: clamp(16px, 2vh, 20px) 0 0;
  font-size: 0.8125rem;
  font-weight: var(--tj-fw-medium);
}

body.page-playground .playground-page__link a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.22);
  text-underline-offset: 0.2em;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

body.page-playground .playground-page__link a:hover {
  color: #ffffff;
  text-decoration-color: var(--site-accent-soft);
}

body.page-playground .playground-layout__cards {
  position: relative;
  min-height: 0;
  overflow: visible;
}

/* Playground — horizontal carousel (dance reels pattern) */
body.page-playground .playground-carousel-stage {
  position: relative;
  min-height: 0;
  margin-right: calc(-1 * var(--site-content-inset) * 0.35);
  padding: clamp(8px, 1.5vh, 16px) 0 clamp(56px, 7vh, 80px);
  overflow-x: auto;
  overflow-y: visible;
  background: transparent;
  scroll-snap-type: x proximity;
  scroll-padding-inline: clamp(4vw, 8vw, 12vw);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 7%,
    #000 93%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 7%,
    #000 93%,
    transparent 100%
  );
}

body.page-playground .playground-carousel-stage::-webkit-scrollbar {
  display: none;
  height: 0;
}

body.page-playground .playground-carousel-track {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  gap: clamp(20px, 2.8vw, 36px);
  min-height: clamp(400px, 62vh, 720px);
  padding: clamp(16px, 2.5vh, 28px) clamp(4vw, 8vw, 12vw);
  overflow: visible;
  background: transparent;
}

body.page-playground .playground-carousel-track .playground-piece {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 0 0 clamp(300px, 34vw, 400px);
  scroll-snap-align: center;
  margin: 0;
  padding: 0;
  outline: none;
  width: auto;
  max-width: none;
  will-change: transform;
  animation: var(--pg-animation, playground-piece-float) var(--pg-duration, 10s) ease-in-out infinite;
  animation-delay: var(--pg-delay, 0s);
  transition: z-index 0s;
}

body.page-playground .playground-piece--slot-2 {
  margin-top: clamp(20px, 4vh, 40px);
}

body.page-playground .playground-piece--slot-1,
body.page-playground .playground-piece--slot-3 {
  margin-top: clamp(4px, 1vh, 12px);
}

body.page-playground .playground-piece--landscape {
  flex: 0 0 clamp(340px, 42vw, 480px);
}

body.page-playground .playground-piece.is-focused,
body.page-playground .playground-piece:hover,
body.page-playground .playground-piece:focus-within {
  z-index: 12;
  animation-play-state: paused;
  transform: translate3d(0, -8px, 0) scale(1.02) rotate(var(--pg-rotate, 0deg));
}

body.page-playground .playground-piece__media {
  position: relative;
  flex: 1 1 auto;
  align-self: stretch;
  width: 100%;
  min-height: 0;
  overflow: hidden;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.35);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.34);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

body.page-playground .playground-piece.is-focused .playground-piece__media,
body.page-playground .playground-piece:hover .playground-piece__media,
body.page-playground .playground-piece:focus-within .playground-piece__media {
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.42),
    0 0 28px rgba(255, 77, 184, 0.12);
}

body.page-playground .playground-piece__caption {
  flex: 0 0 auto;
  margin: clamp(6px, 0.9vh, 10px) 0 0;
  padding: 0 2px;
  font-family: var(--tj-ff-body);
  font-size: clamp(0.6875rem, 0.82vw, 0.8125rem);
  font-weight: var(--tj-fw-regular);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
}

body.page-playground .playground-piece__caption a {
  color: var(--site-accent);
  text-decoration: underline;
  text-decoration-color: var(--site-accent-soft);
  text-underline-offset: 0.15em;
}

body.page-playground .playground-piece__caption a:hover {
  color: #ffffff;
}

body.page-playground .playground-piece__media--poster a {
  display: block;
  padding: 0;
  margin: 0;
  background: transparent;
  border: 0;
  line-height: 0;
}

body.page-playground .playground-piece__media--poster {
  line-height: 0;
}

body.page-playground .playground-piece__media--poster a {
  line-height: 0;
}

body.page-playground .playground-piece__media--poster img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(56vh, 480px);
  object-fit: contain;
  object-position: center center;
  vertical-align: top;
}

body.page-playground .playground-piece__media--video {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 9 / 16;
  min-height: clamp(260px, 34vw, 400px);
  max-height: min(62vh, 540px);
  background: rgba(0, 0, 0, 0.55);
}

body.page-playground .playground-piece--film .playground-piece__media--video {
  min-height: clamp(260px, 32vw, 380px);
  max-height: min(58vh, 500px);
}

body.page-playground .playground-piece--landscape .playground-piece__media--video,
body.page-playground .playground-piece--landscape .playground-piece__media--poster {
  aspect-ratio: 16 / 9;
  min-height: 0;
  max-height: none;
}

body.page-playground .playground-sequence-video {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
  background: transparent;
}

body.page-playground .playground-piece__sound.video-sound-toggle {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 3;
}

body.page-playground .playground-piece--wics .wics-social-preview {
  display: block !important;
  position: relative !important;
  inset: auto !important;
  width: 100% !important;
  height: 100% !important;
  min-height: clamp(220px, 30vw, 340px);
  max-height: min(44vh, 360px);
  opacity: 1 !important;
  transform: none !important;
  pointer-events: auto !important;
}

body.page-playground .playground-piece--wics .wics-social-preview .preview-window {
  position: relative;
  width: 100%;
  min-height: clamp(220px, 30vw, 340px);
  max-height: min(44vh, 360px);
  aspect-ratio: 1;
  padding-bottom: 0;
  box-sizing: border-box;
  background: transparent !important;
  overflow: hidden;
}

body.page-playground .playground-piece--wics .wics-social-preview .preview-window img.wics-slide {
  max-width: 100%;
  max-height: calc(100% - 24px);
}

body.page-playground .playground-piece--wics .wics-dots {
  background: rgba(8, 6, 14, 0.72);
  border-color: rgba(255, 255, 255, 0.14);
}

body.page-playground .playground-piece--wics .wics-dot.is-active {
  background: var(--site-accent);
}

body.page-playground .playground-carousel-track .playground-piece--app {
  flex: 0 0 clamp(320px, 38vw, 440px);
}

body.page-playground .playground-piece__media--app {
  position: relative;
  aspect-ratio: 9 / 16;
  min-height: 0;
  max-height: min(64vh, 560px);
  background: #0a0a0a;
}

body.page-playground .playground-piece--app .fitted-preview,
body.page-playground .playground-piece--app .rulemate-preview {
  display: block !important;
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 0;
  max-height: none;
  opacity: 1 !important;
  transform: none !important;
  pointer-events: auto !important;
  background: #0a0a0a !important;
  border-radius: inherit;
}

body.page-playground .playground-piece--app .preview-window {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  border-radius: inherit;
  background: #0a0a0a !important;
}

body.page-playground .playground-piece--app .preview-window video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center center;
  background: #0a0a0a !important;
}

body.page-playground .playground-piece--app .preview-window .project-preview-link,
body.page-playground .playground-piece--app .preview-window .video-sound-toggle,
body.page-playground .playground-piece--app .preview-window .video-scrub {
  z-index: 3;
}

body.page-playground .playground-piece--app.playground-piece--landscape .playground-piece__media--app {
  aspect-ratio: 16 / 9;
  max-height: min(56vh, 500px);
}

body.page-playground .playground-carousel-stage--live .fitted-card .fitted-preview .preview-window,
body.page-playground .playground-carousel-stage--live .rulemate-card .rulemate-preview .preview-window,
body.page-playground .playground-carousel-stage--live .fitted-card .fitted-preview .preview-window video,
body.page-playground .playground-carousel-stage--live .rulemate-card .rulemate-preview .preview-window video {
  background: #0a0a0a !important;
  object-fit: cover !important;
}

body.page-playground .playground-piece--slot-2 .preview-window video {
  transform: scale(1.2);
  transform-origin: center center;
}

body.page-playground .playground-piece--slot-3 .preview-window video {
  transform: scale(1.45);
  transform-origin: center center;
}

body.page-playground .playground-piece--slot-2.playground-piece--landscape,
body.page-playground .playground-piece--slot-3.playground-piece--landscape {
  flex: 0 0 clamp(360px, 44vw, 520px);
}

body.page-playground .playground-piece--slot-2 .playground-piece__media--app,
body.page-playground .playground-piece--slot-3 .playground-piece__media--app {
  max-height: min(58vh, 540px);
}

@media only screen and (max-width: 991px) {
  body.page-playground .playground-carousel-stage {
    margin-right: 0;
    scroll-padding-inline: clamp(16px, 4vw, 24px);
    -webkit-mask-image: none;
    mask-image: none;
  }

  body.page-playground .playground-carousel-track {
    min-height: clamp(380px, 58vh, 560px);
    padding-inline: clamp(16px, 4vw, 24px);
    gap: clamp(16px, 3vw, 24px);
  }

  body.page-playground .playground-carousel-track .playground-piece {
    flex: 0 0 clamp(260px, 78vw, 340px);
  }

  body.page-playground .playground-piece--landscape,
  body.page-playground .playground-carousel-track .playground-piece--app {
    flex: 0 0 clamp(280px, 84vw, 380px);
  }

  body.page-playground .playground-piece--slot-2.playground-piece--landscape,
  body.page-playground .playground-piece--slot-3.playground-piece--landscape {
    flex: 0 0 clamp(300px, 88vw, 400px);
  }
}


/* Ideas — carousel (mirrors playground) */
body.page-ideas.site-editorial .tj-header.header-inner.header-absolute .site_navigation nav ul:not(.sub-menu) > li.current-menu-item > a,
body.page-ideas.site-editorial .tj-header.header-inner.header-absolute .site_navigation nav ul:not(.sub-menu) > li:hover > a {
  color: var(--site-accent);
}

body.page-ideas .ideas-page-section {
  position: relative;
  z-index: 1;
  padding: clamp(12px, 2vh, 28px) var(--site-content-inset) clamp(96px, 14vh, 160px);
  overflow: visible;
  min-height: 0;
}

body.page-ideas .ideas-page__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

body.page-ideas .ideas-page__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
}

body.page-ideas .ideas-page__glow--left {
  top: 6%;
  left: -8%;
  width: min(48vw, 380px);
  height: min(48vw, 380px);
  background: radial-gradient(circle, rgba(255, 77, 184, 0.14) 0%, transparent 70%);
}

body.page-ideas .ideas-page__glow--right {
  top: 22%;
  right: -6%;
  width: min(52vw, 420px);
  height: min(52vw, 420px);
  background: radial-gradient(circle, rgba(140, 100, 255, 0.12) 0%, transparent 68%);
}

body.page-ideas .ideas-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(28px, 4vh, 40px);
  align-items: start;
  max-width: 1320px;
  margin: 0 auto;
  overflow: visible;
}

@media only screen and (min-width: 992px) {
  body.page-ideas .ideas-layout--scatter-bleed {
    grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
    grid-template-rows: 1fr;
    gap: 0 clamp(20px, 3vw, 36px);
    align-items: start;
  }

  body.page-ideas .ideas-layout--scatter-bleed .ideas-layout__intro {
    grid-column: 1;
    grid-row: 1;
    align-self: start;
  }

  body.page-ideas .ideas-layout--scatter-bleed .ideas-layout__cards {
    grid-column: 1 / -1;
    grid-row: 1;
    min-height: 0;
    padding-left: clamp(200px, 24vw, 300px);
  }
}

body.page-ideas .ideas-layout.container-fluid {
  padding-left: 0;
  padding-right: 0;
}

body.page-ideas .ideas-layout__intro {
  position: relative;
  z-index: 4;
  margin: 0;
  padding: clamp(8px, 1.5vh, 20px) 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

@media only screen and (min-width: 992px) {
  body.page-ideas .ideas-layout__intro {
    position: sticky;
    top: clamp(84px, 11vh, 108px);
    align-self: start;
    max-height: calc(100dvh - clamp(96px, 12vh, 120px));
    overflow: visible;
    overscroll-behavior: auto;
    pointer-events: none;
  }

  body.page-ideas .ideas-layout__intro a,
  body.page-ideas .ideas-layout__intro button {
    pointer-events: auto;
  }
}

body.page-ideas .ideas-page__eyebrow {
  margin: 0 0 14px;
  font-family: var(--tj-ff-body);
  font-size: 0.6875rem;
  font-weight: var(--tj-fw-medium);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

body.page-ideas .ideas-page__title {
  margin: 0 0 clamp(16px, 2.2vh, 22px);
  font-family: var(--tj-ff-body);
  font-weight: var(--tj-fw-bold);
  letter-spacing: -0.04em;
  line-height: 0.88;
  color: #ffffff;
}

body.page-ideas .ideas-page__title-word {
  display: block;
  font-size: clamp(2.75rem, 8vw, 5.25rem);
  text-transform: lowercase;
}

body.page-ideas .ideas-page__title-word--accent {
  padding-left: clamp(0.28em, 5vw, 0.7em);
  color: var(--site-accent);
}

body.page-ideas .ideas-page__lead {
  margin: 0;
  font-size: clamp(0.9375rem, 1.05vw, 1.0625rem);
  font-weight: var(--tj-fw-medium);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  text-wrap: pretty;
}

body.page-ideas .ideas-page__lead + .ideas-page__lead {
  margin-top: clamp(12px, 1.5vh, 16px);
}

body.page-ideas .ideas-page__link {
  margin: clamp(16px, 2vh, 20px) 0 0;
  font-size: 0.8125rem;
  font-weight: var(--tj-fw-medium);
}

body.page-ideas .ideas-page__link a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.22);
  text-underline-offset: 0.2em;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

body.page-ideas .ideas-page__link a:hover {
  color: #ffffff;
  text-decoration-color: var(--site-accent-soft);
}

body.page-ideas .ideas-layout__cards {
  position: relative;
  min-height: 0;
  overflow: visible;
}

/* Ideas — scattered sketchbook stage */
body.page-ideas .ideas-scatter-stage {
  position: relative;
  display: block;
  width: 100%;
  min-height: clamp(720px, 94vh, 1120px);
  margin: 0;
  padding: clamp(12px, 2vh, 24px) clamp(8px, 2vw, 20px) clamp(72px, 10vh, 120px);
  overflow: visible;
  background: transparent;
}

body.page-ideas .ideas-scatter-stage .ideas-piece {
  position: absolute;
  left: var(--scatter-x, 50%);
  top: var(--scatter-y, 50%);
  display: flex;
  flex-direction: column;
  width: var(--scatter-width, clamp(260px, 32vw, 360px));
  max-width: none;
  margin: 0;
  padding: 0;
  outline: none;
  z-index: var(--scatter-z, 1);
  will-change: transform;
  transform: scale(var(--scatter-scale, 1)) rotate(var(--scatter-rotate, var(--pg-rotate, 0deg)));
  animation: var(--pg-animation, playground-piece-float) var(--pg-duration, 10s) ease-in-out infinite;
  animation-delay: var(--pg-delay, 0s);
  transition: z-index 0s, box-shadow 0.25s ease;
  cursor: default;
}

body.page-ideas .ideas-piece--scatter-1 {
  --scatter-x: 2%;
  --scatter-y: 2%;
  --scatter-rotate: -7deg;
  --pg-rotate: -7deg;
  --scatter-scale: 1.06;
  --scatter-z: 3;
  --scatter-width: clamp(200px, 24vw, 300px);
}

body.page-ideas .ideas-piece--scatter-2 {
  --scatter-x: 38%;
  --scatter-y: 0%;
  --scatter-rotate: 4deg;
  --pg-rotate: 4deg;
  --scatter-scale: 1;
  --scatter-z: 1;
  --scatter-width: clamp(280px, 38vw, 440px);
}

body.page-ideas .ideas-piece--scatter-3 {
  --scatter-x: 10%;
  --scatter-y: 46%;
  --scatter-rotate: -11deg;
  --pg-rotate: -11deg;
  --scatter-scale: 0.96;
  --scatter-z: 2;
  --scatter-width: clamp(260px, 34vw, 400px);
}

body.page-ideas .ideas-piece--scatter-4 {
  --scatter-x: 56%;
  --scatter-y: 40%;
  --scatter-rotate: 8deg;
  --pg-rotate: 8deg;
  --scatter-scale: 1;
  --scatter-z: 4;
  --scatter-width: clamp(220px, 28vw, 320px);
}

body.page-ideas .ideas-piece--landscape {
  width: var(--scatter-width, clamp(280px, 38vw, 440px));
}

body.page-ideas .ideas-piece.is-focused,
body.page-ideas .ideas-piece:hover,
body.page-ideas .ideas-piece:focus-within {
  z-index: 12;
  animation-play-state: paused;
  transform: translate3d(0, -10px, 0) scale(calc(var(--scatter-scale, 1) * 1.03)) rotate(var(--scatter-rotate, var(--pg-rotate, 0deg)));
}

body.page-ideas .ideas-piece__media {
  position: relative;
  flex: 1 1 auto;
  align-self: stretch;
  width: 100%;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  background: #0a0a0a;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.34);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

body.page-ideas .ideas-piece.is-focused .ideas-piece__media,
body.page-ideas .ideas-piece:hover .ideas-piece__media,
body.page-ideas .ideas-piece:focus-within .ideas-piece__media {
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.42),
    0 0 28px rgba(255, 77, 184, 0.12);
}

body.page-ideas .ideas-piece.is-focused .ideas-piece__caption,
body.page-ideas .ideas-piece:hover .ideas-piece__caption,
body.page-ideas .ideas-piece:focus-within .ideas-piece__caption {
  color: rgba(255, 255, 255, 0.92);
}

body.page-ideas .ideas-piece:focus-visible {
  outline: 2px solid var(--site-accent);
  outline-offset: 6px;
}

body.page-ideas .ideas-piece__caption {
  flex: 0 0 auto;
  margin: clamp(6px, 0.9vh, 10px) 0 0;
  padding: 0 2px;
  font-family: var(--tj-ff-body);
  font-size: clamp(0.6875rem, 0.82vw, 0.8125rem);
  font-weight: var(--tj-fw-regular);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
}

body.page-ideas .ideas-piece__caption a {
  color: var(--site-accent);
  text-decoration: underline;
  text-decoration-color: var(--site-accent-soft);
  text-underline-offset: 0.15em;
}

body.page-ideas .ideas-piece__caption a:hover {
  color: #ffffff;
}

body.page-ideas .ideas-piece__media--poster a {
  display: block;
  padding: 0;
  margin: 0;
  background: transparent;
  border: 0;
  line-height: 0;
}

body.page-ideas .ideas-piece__media--poster {
  line-height: 0;
}

body.page-ideas .ideas-piece__media--poster a {
  line-height: 0;
}

body.page-ideas .ideas-piece__media--poster img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(56vh, 480px);
  object-fit: contain;
  object-position: center center;
  vertical-align: top;
}

body.page-ideas .ideas-piece__media--video {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 9;
  min-height: 0;
  max-height: min(58vh, 500px);
  background: #0a0a0a;
}

body.page-ideas .ideas-piece--film .ideas-piece__media--video {
  max-height: min(58vh, 500px);
}

body.page-ideas .ideas-piece--landscape .ideas-piece__media--video,
body.page-ideas .ideas-piece--landscape .ideas-piece__media--poster {
  aspect-ratio: 16 / 9;
  min-height: 0;
  max-height: none;
}

body.page-ideas .ideas-sequence-video {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
  background: transparent;
}

body.page-ideas .ideas-piece__sound.video-sound-toggle,
body.page-ideas .ideas-piece--film .video-sound-toggle,
body.page-ideas .ideas-piece--app .preview-window .video-sound-toggle,
body.page-ideas .ideas-piece--app .preview-window .video-scrub {
  display: none !important;
  pointer-events: none !important;
}

body.page-ideas .ideas-piece--wics .wics-social-preview {
  display: block !important;
  position: relative !important;
  inset: auto !important;
  width: 100% !important;
  height: 100% !important;
  min-height: clamp(220px, 30vw, 340px);
  max-height: min(44vh, 360px);
  opacity: 1 !important;
  transform: none !important;
  pointer-events: auto !important;
}

body.page-ideas .ideas-piece--wics .wics-social-preview .preview-window {
  position: relative;
  width: 100%;
  min-height: clamp(220px, 30vw, 340px);
  max-height: min(44vh, 360px);
  aspect-ratio: 1;
  padding-bottom: 0;
  box-sizing: border-box;
  background: transparent !important;
  overflow: hidden;
}

body.page-ideas .ideas-piece--wics .wics-social-preview .preview-window img.wics-slide {
  max-width: 100%;
  max-height: calc(100% - 24px);
}

body.page-ideas .ideas-piece--wics .wics-dots {
  background: rgba(8, 6, 14, 0.72);
  border-color: rgba(255, 255, 255, 0.14);
}

body.page-ideas .ideas-piece--wics .wics-dot.is-active {
  background: var(--site-accent);
}

body.page-ideas .ideas-scatter-stage .ideas-piece--app {
  width: var(--scatter-width, clamp(280px, 36vw, 420px));
}

body.page-ideas .ideas-piece__media--app {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 9;
  min-height: 0;
  max-height: min(58vh, 540px);
  background: #0a0a0a;
}

body.page-ideas .ideas-piece--app .fitted-preview,
body.page-ideas .ideas-piece--app .rulemate-preview {
  display: block !important;
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 0;
  max-height: none;
  opacity: 1 !important;
  transform: none !important;
  pointer-events: auto !important;
  background: #0a0a0a !important;
  border-radius: inherit;
}

body.page-ideas .ideas-piece--app .preview-window {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  border-radius: inherit;
  background: #0a0a0a !important;
}

body.page-ideas .ideas-piece--app .preview-window video {
  position: relative;
  inset: auto;
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center center;
  transform: none;
  background: transparent !important;
}

body.page-ideas .ideas-piece--app .preview-window .project-preview-link {
  z-index: 3;
}

body.page-ideas .ideas-piece--app.ideas-piece--landscape .ideas-piece__media--app {
  aspect-ratio: 16 / 9;
  max-height: min(58vh, 540px);
}

body.page-ideas .ideas-piece:not(.ideas-piece--landscape) .ideas-piece__media--app {
  aspect-ratio: 9 / 16;
}

body.page-ideas .ideas-scatter-stage--live .fitted-card .fitted-preview .preview-window,
body.page-ideas .ideas-scatter-stage--live .rulemate-card .rulemate-preview .preview-window {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #0a0a0a !important;
}

body.page-ideas .ideas-scatter-stage--live .fitted-card .fitted-preview .preview-window video,
body.page-ideas .ideas-scatter-stage--live .rulemate-card .rulemate-preview .preview-window video,
body.page-ideas .ideas-scatter-stage--live .ideas-piece__media--video video {
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  transform: none !important;
  background: transparent !important;
}

body.page-ideas .ideas-piece--scatter-2 .preview-window video,
body.page-ideas .ideas-piece--scatter-3 .preview-window video {
  transform: none !important;
  transform-origin: center center;
}

body.page-ideas .ideas-piece--scatter-2.ideas-piece--landscape,
body.page-ideas .ideas-piece--scatter-3.ideas-piece--landscape {
  width: var(--scatter-width, clamp(300px, 88vw, 400px));
}

body.page-ideas .ideas-piece--scatter-2 .ideas-piece__media--app,
body.page-ideas .ideas-piece--scatter-3 .ideas-piece__media--app {
  max-height: min(58vh, 540px);
}

body.page-ideas .ideas-piece--brand .ideas-piece__media--brand {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 9;
  min-height: 0;
  max-height: min(52vh, 420px);
  background: linear-gradient(150deg, #0d2a3a 0%, #1a5a6e 50%, #081820 100%);
}

body.page-ideas .ideas-piece--brand .ideas-piece__img {
  position: relative;
  z-index: 0;
  display: block;
  width: auto;
  height: auto;
  max-width: 72%;
  max-height: 52%;
  object-fit: contain;
  object-position: center center;
}

body.page-ideas .ideas-piece--coming-soon {
  cursor: default;
  pointer-events: auto;
}

body.page-ideas .ideas-piece--coming-soon .ideas-piece__coming-soon {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  background: rgba(6, 5, 12, 0.52);
  border-radius: inherit;
  transition: opacity 0.35s ease;
}

body.page-ideas .ideas-piece--coming-soon .ideas-piece__coming-soon-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(6.75rem, 16vw, 9.25rem);
  height: clamp(6.75rem, 16vw, 9.25rem);
  padding: 0.75rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 77, 184, 0.42);
  background: rgba(8, 6, 14, 0.88);
  box-shadow:
    0 0 36px rgba(255, 77, 184, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  font-family: var(--tj-ff-body);
  font-size: clamp(0.625rem, 0.72vw, 0.75rem);
  font-weight: var(--tj-fw-sbold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.35;
  color: rgba(230, 225, 242, 0.96);
}

@media (hover: hover) and (pointer: fine) {
  body.page-ideas .ideas-piece--coming-soon:hover .ideas-piece__coming-soon,
  body.page-ideas .ideas-piece--coming-soon:focus-within .ideas-piece__coming-soon {
    opacity: 1;
  }

  body.page-ideas .ideas-piece--coming-soon:hover .ideas-piece__img,
  body.page-ideas .ideas-piece--coming-soon:focus-within .ideas-piece__img {
    transform: none;
  }
}

@media only screen and (max-width: 1199px) and (min-width: 992px) {
  body.page-ideas .ideas-piece--scatter-2 {
    --scatter-x: 34%;
    --scatter-width: clamp(260px, 36vw, 400px);
  }

  body.page-ideas .ideas-piece--scatter-3 {
    --scatter-x: 6%;
    --scatter-y: 50%;
  }

  body.page-ideas .ideas-piece--scatter-4 {
    --scatter-x: 52%;
    --scatter-y: 44%;
    --scatter-width: clamp(200px, 26vw, 300px);
  }
}

@media only screen and (max-width: 991px) {
  body.page-ideas .ideas-scatter-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(32px, 6vh, 52px);
    min-height: 0;
    padding: clamp(8px, 1.5vh, 16px) clamp(12px, 4vw, 20px) clamp(48px, 8vh, 72px);
  }

  body.page-ideas .ideas-scatter-stage .ideas-piece {
    position: relative;
    left: auto;
    top: auto;
    width: min(100%, 400px);
    max-width: 400px;
    --scatter-scale: 1;
  }

  body.page-ideas .ideas-piece--scatter-1 {
    --scatter-rotate: -4deg;
    --pg-rotate: -4deg;
    align-self: flex-start;
    margin-right: auto;
    width: min(88%, 320px);
  }

  body.page-ideas .ideas-piece--scatter-2 {
    --scatter-rotate: 3deg;
    --pg-rotate: 3deg;
    width: min(100%, 400px);
  }

  body.page-ideas .ideas-piece--scatter-3 {
    --scatter-rotate: -6deg;
    --pg-rotate: -6deg;
    align-self: flex-end;
    margin-left: auto;
    width: min(92%, 380px);
  }

  body.page-ideas .ideas-piece--scatter-4 {
    --scatter-rotate: 5deg;
    --pg-rotate: 5deg;
    align-self: flex-start;
    margin-right: auto;
    width: min(88%, 340px);
  }

  body.page-ideas .ideas-piece--landscape,
  body.page-ideas .ideas-scatter-stage .ideas-piece--app {
    width: min(100%, 400px);
  }

  body.page-ideas .ideas-piece--scatter-2.ideas-piece--landscape,
  body.page-ideas .ideas-piece--scatter-3.ideas-piece--landscape {
    width: min(100%, 400px);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.page-ideas .ideas-scatter-stage .ideas-piece {
    animation: none;
    transform: scale(var(--scatter-scale, 1)) rotate(var(--scatter-rotate, var(--pg-rotate, 0deg)));
  }

  body.page-ideas .ideas-piece.is-focused,
  body.page-ideas .ideas-piece:hover,
  body.page-ideas .ideas-piece:focus-within {
    transform: scale(calc(var(--scatter-scale, 1) * 1.02)) rotate(var(--scatter-rotate, var(--pg-rotate, 0deg)));
  }
}

@media (prefers-reduced-motion: reduce) {
  body.page-playground .playground-carousel-track .playground-piece {
    animation: none;
    transform: rotate(var(--pg-rotate, 0deg));
  }
}

/* Scattered cards — legacy (unused on playground board) */
body.page-playground .playground-layout__cards .playground-float-stage,
body.page-playground .playground-layout__cards .playground-float-stage.editorial-project-grid {
  display: block;
  position: relative;
  width: 100%;
  min-height: clamp(960px, 108vh, 1280px);
  margin: 0;
  padding: clamp(8px, 2vh, 16px) 0 clamp(64px, 9vh, 100px);
  overflow: visible;
}

body.page-playground .playground-layout__cards .playground-float-stage .tj_project_item {
  position: absolute !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  width: clamp(200px, 40%, 288px) !important;
  max-width: none;
  margin: 0;
  padding: 0;
  z-index: 1;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(12, 10, 18, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.42);
  transform: rotate(var(--pg-rotate, 0deg));
  animation: playground-drift var(--pg-duration, 9s) ease-in-out infinite;
  animation-delay: var(--pg-delay, 0s);
  will-change: transform;
  transition: box-shadow 0.3s ease;
}

body.page-playground .playground-layout__cards .playground-float-stage .tj_project_item::before,
body.page-playground .playground-layout__cards .playground-float-stage .tj_project_item::after {
  content: none;
  display: none;
}

body.page-playground .playground-layout__cards .playground-float-stage .tj_project_item:hover {
  z-index: 12;
  border-color: rgba(255, 77, 184, 0.35);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.55),
    0 0 40px rgba(255, 77, 184, 0.12);
  animation-play-state: paused;
}

body.page-playground .playground-layout__cards .playground-float-card--pg-1 {
  --pg-rotate: -5deg;
  --pg-duration: 9s;
  --pg-delay: 0s;
  left: -54%;
  top: 2%;
  width: clamp(240px, 64%, 360px) !important;
}

body.page-playground .playground-layout__cards .playground-float-card--pg-2 {
  --pg-rotate: 4deg;
  --pg-duration: 10.2s;
  --pg-delay: -1.4s;
  left: -18%;
  top: 44%;
  width: clamp(230px, 58%, 340px) !important;
}

body.page-playground .playground-layout__cards .playground-float-card--pg-3 {
  --pg-rotate: -2deg;
  --pg-duration: 9.4s;
  --pg-delay: -2.2s;
  left: 40%;
  top: 6%;
  width: clamp(200px, 38%, 276px) !important;
}

body.page-playground .playground-layout__cards .playground-float-card--pg-4 {
  --pg-rotate: 5deg;
  --pg-duration: 10.6s;
  --pg-delay: -0.9s;
  left: 50%;
  top: 50%;
  width: clamp(200px, 38%, 272px) !important;
}

body.page-playground .playground-float-stage .project_description a {
  color: var(--site-accent);
  text-decoration: underline;
  text-decoration-color: var(--site-accent-soft);
  text-underline-offset: 0.15em;
}

body.page-playground .playground-float-stage .project_description a:hover {
  color: #ffffff;
}

body.page-playground .playground-float-stage .playground-float-card--pg-1 .project_content,
body.page-playground .playground-float-stage .playground-float-card--pg-2 .project_content,
body.page-playground .playground-float-stage .playground-float-card--pg-3 .project_content,
body.page-playground .playground-float-stage .playground-float-card--pg-4 .project_content {
  position: relative;
  z-index: 2;
  max-width: 100%;
  margin-top: 0;
  padding: 12px 14px 16px;
  background: transparent;
  opacity: 1;
}

body.page-playground .playground-float-stage .project_image {
  position: relative;
  z-index: 1;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
}

body.page-playground .playground-float-stage .project_description {
  display: block;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.6875rem, 0.82vw, 0.8125rem);
  line-height: 1.5;
}

body.page-playground .playground-float-stage .project_image > a {
  border-radius: 16px 16px 0 0;
  box-shadow: none;
}

body.page-playground .playground-float-stage .project_title .text {
  color: #ffffff;
  font-size: clamp(0.8125rem, 0.95vw, 0.9375rem);
  letter-spacing: -0.01em;
  text-transform: none;
  text-decoration: none;
}

body.page-playground .playground-float-stage .project_title a:hover .text {
  color: var(--site-accent);
}

body.page-playground .playground-float-stage .project_content a.category {
  display: inline-block;
  margin-top: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.625rem;
  font-weight: var(--tj-fw-sbold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

body.page-playground .playground-float-stage .project_content a.category:hover {
  color: var(--site-accent);
}

body.page-playground .playground-float-stage .project_content a.category .flip-text {
  text-decoration: none;
}

body.page-playground .playground-float-stage .project_year {
  color: rgba(255, 255, 255, 0.38);
}

@media only screen and (max-width: 991px) {
  body.page-playground .playground-layout {
    grid-template-columns: 1fr;
    gap: clamp(28px, 5vh, 40px);
  }

  body.page-playground .playground-layout__intro {
    position: static;
    max-width: 100%;
  }

  body.page-playground .playground-page__title-word {
    font-size: clamp(2.5rem, 12vw, 3.5rem);
  }

  body.page-playground .playground-layout__intro {
    padding: 0;
  }

  body.page-playground .playground-layout__cards {
    min-height: 0;
  }

  body.page-playground .playground-layout__cards .playground-float-stage,
  body.page-playground .playground-layout__cards .playground-float-stage.editorial-project-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(28px, 5vh, 44px);
    min-height: 0;
    padding-bottom: clamp(24px, 4vh, 40px);
  }

  body.page-playground .playground-layout__cards .playground-float-stage .tj_project_item {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    max-width: 400px;
    --pg-rotate: -2deg;
  }

  body.page-playground .playground-layout__cards .playground-float-stage .cs-conference-card.tj_project_item,
  body.page-playground .playground-layout__cards .playground-float-stage .cogsci-citation-card.tj_project_item {
    max-width: 100%;
    width: 100% !important;
    --pg-rotate: -1deg;
  }

  body.page-playground .playground-layout__cards .playground-float-card--pg-2 {
    --pg-rotate: 2deg;
  }

  body.page-playground .playground-layout__cards .playground-float-card--pg-3 {
    --pg-rotate: -1deg;
  }

  body.page-playground .playground-layout__cards .playground-float-card--pg-4 {
    --pg-rotate: 2deg;
  }

  body.page-playground .playground-layout__cards .cs-conference-card .project_image > a,
  body.page-playground .playground-layout__cards .cogsci-citation-card .project_image > a {
    max-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.page-playground .playground-layout__cards .playground-float-stage .tj_project_item {
    animation: none;
  }
}

/* Playground — always-on video for FITTED + RuleMate */
body.page-playground .playground-float-stage--live .fitted-card .project_image > a,
body.page-playground .playground-float-stage--live .rulemate-card .project_image > a {
  display: none !important;
}

body.page-playground .playground-float-stage--live .fitted-card .fitted-preview,
body.page-playground .playground-float-stage--live .rulemate-card .rulemate-preview {
  display: block !important;
  position: relative !important;
  inset: auto !important;
  width: 100% !important;
  height: auto !important;
  opacity: 1 !important;
  transform: none !important;
  pointer-events: auto !important;
  z-index: 1;
  border-radius: 14px 14px 0 0;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--project-preview-surface);
}

body.page-playground .playground-float-stage--live .fitted-preview .preview-window,
body.page-playground .playground-float-stage--live .rulemate-preview .preview-window {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 100%;
  border-radius: 0;
  background: var(--project-preview-surface) !important;
  overflow: hidden;
}

body.page-playground .playground-float-stage--live .fitted-preview .preview-window video,
body.page-playground .playground-float-stage--live .rulemate-preview .preview-window video {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
  background: transparent;
}

body.page-playground .playground-float-stage--live .fitted-card .video-sound-toggle,
body.page-playground .playground-float-stage--live .rulemate-card .video-sound-toggle,
body.page-playground .playground-float-stage--live .fitted-card .video-scrub,
body.page-playground .playground-float-stage--live .rulemate-card .video-scrub {
  display: none !important;
}

/* Override legacy main.css home+projects layout */
body.site-editorial.page-home.page-projects .home-landing-section.home-landing-section--editorial {
  display: flex;
  min-height: auto;
  align-items: flex-start;
  padding-top: clamp(20px, 4vh, 48px);
  padding-bottom: clamp(24px, 3.5vh, 40px);
  text-align: left;
}

body.site-editorial.page-home.page-projects .home-landing-section.home-landing-section--dance-studio {
  min-height: auto;
  align-items: flex-start;
}

body.site-editorial.page-home.page-projects .home-landing-section.home-landing-section--split {
  min-height: min(62vh, 680px);
  align-items: center;
}

@media only screen and (max-width: 991px) {
  body.site-editorial.page-home.page-projects .home-landing-section.home-landing-section--split {
    min-height: auto;
  }
}

body.site-editorial.page-home.page-projects .home-landing-section--split .home-landing__inner {
  max-width: 100%;
}

/* Home — selected work section */
body.page-home.site-editorial .home-work-section {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: clamp(40px, 5.5vh, 72px) var(--site-content-inset) clamp(112px, 12vh, 168px);
  overflow: visible;
  border-top: 0;
}

body.page-home.site-editorial .home-work-section::before {
  content: none;
  display: none;
}

body.page-home.site-editorial .home-work-section__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

body.page-home.site-editorial .home-work-section__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  will-change: transform;
}

body.page-home.site-editorial .home-work-section__glow--left {
  top: 10%;
  left: -8%;
  width: min(48vw, 380px);
  height: min(48vw, 380px);
  background: radial-gradient(circle, rgba(255, 77, 184, 0.16) 0%, transparent 70%);
}

body.page-home.site-editorial .home-work-section__glow--center {
  top: 42%;
  left: 50%;
  width: min(56vw, 440px);
  height: min(40vw, 320px);
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(255, 77, 184, 0.08) 0%, rgba(140, 100, 255, 0.06) 42%, transparent 72%);
}

@media (prefers-reduced-motion: no-preference) {
  body.page-home.site-editorial .home-work-section__glow--center {
    animation: homeWorkGlowDriftCenter 20s ease-in-out infinite alternate;
  }
}

@keyframes homeWorkGlowDriftCenter {
  from {
    transform: translateX(-50%) translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translateX(-50%) translate3d(10px, -16px, 0) scale(1.05);
  }
}

body.page-home.site-editorial .home-work-section__glow--right {
  bottom: 6%;
  right: -6%;
  width: min(52vw, 400px);
  height: min(52vw, 400px);
  background: radial-gradient(circle, rgba(140, 100, 255, 0.14) 0%, transparent 68%);
}

@media (prefers-reduced-motion: no-preference) {
  body.page-home.site-editorial .home-work-section__glow--left {
    animation: homeWorkGlowDrift 18s ease-in-out infinite alternate;
  }

  body.page-home.site-editorial .home-work-section__glow--right {
    animation: homeWorkGlowDrift 22s ease-in-out infinite alternate-reverse;
  }
}

@keyframes homeWorkGlowDrift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(12px, -18px, 0) scale(1.06);
  }
}

body.page-home.site-editorial .home-work-section__inner {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0;
}

body.page-home.site-editorial .home-work-grid-panel {
  padding: clamp(32px, 4vh, 48px) clamp(24px, 3vw, 40px) clamp(36px, 4.5vh, 52px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background:
    radial-gradient(ellipse 90% 55% at 50% 0%, rgba(255, 77, 184, 0.08) 0%, transparent 58%),
    rgba(6, 5, 12, 0.58);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

body.page-home.site-editorial .home-work-groups {
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 6vh, 72px);
}

body.page-home.site-editorial .home-work-group__header {
  margin: 0 0 clamp(26px, 3.2vh, 36px);
  padding-bottom: clamp(16px, 2vh, 22px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body.page-home.site-editorial .home-work-group__heading {
  display: flex;
  flex-direction: column;
  gap: clamp(6px, 0.8vh, 10px);
  min-width: 0;
}

body.page-home.site-editorial .home-work-group__eyebrow {
  display: block;
  font-family: var(--tj-ff-body);
  font-size: clamp(0.625rem, 0.75vw, 0.6875rem);
  font-weight: var(--tj-fw-medium);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--site-accent);
}

body.page-home.site-editorial .home-work-group--research .home-work-group__eyebrow {
  color: rgba(180, 140, 255, 0.95);
}

body.page-home.site-editorial .home-work-group__title {
  margin: 0;
  font-family: var(--tj-ff-body);
  font-size: clamp(1.25rem, 2.4vw, 1.625rem);
  font-weight: var(--tj-fw-sbold);
  letter-spacing: -0.02em;
  text-transform: none;
  line-height: 1.15;
  color: #ffffff;
}

body.page-home.site-editorial .home-work-group--research .home-work-group__title {
  color: rgba(255, 255, 255, 0.96);
}

body.page-home.site-editorial .home-work-group--design + .home-work-group--research {
  padding-top: clamp(8px, 1vh, 12px);
}

body.page-home.site-editorial .home-project-grid--uniform {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: none;
  gap: clamp(24px, 3vw, 36px);
  align-items: stretch;
  grid-auto-flow: row;
}

body.page-home.site-editorial .home-project-grid--uniform .tj_project_item,
body.page-home.site-editorial .home-project-grid--uniform .home-project-card--bento-feature,
body.page-home.site-editorial .home-project-grid--uniform .home-project-card--bento-tall,
body.page-home.site-editorial .home-project-grid--uniform .home-project-card--bento-wide,
body.page-home.site-editorial .home-project-grid--uniform .home-project-card--bento-compact,
body.page-home.site-editorial .home-project-grid--uniform .home-project-card--bento-tall-narrow,
body.page-home.site-editorial .home-project-grid--uniform .home-project-card--bento-stack {
  grid-column: auto;
  grid-row: auto;
  height: auto;
}

body.page-home.site-editorial .home-project-grid--uniform .home-project-card__media,
body.page-home.site-editorial .home-project-grid--uniform.home-project-grid--live .project_image.home-project-card__media {
  aspect-ratio: 4 / 3;
  min-height: clamp(200px, 22vw, 280px);
  flex: 0 0 auto;
}

body.page-home.site-editorial .home-project-grid--uniform .home-project-card__media--wide {
  aspect-ratio: 16 / 9;
}

@media only screen and (max-width: 1099px) {
  body.page-home.site-editorial .home-project-grid--uniform {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* UX Design — card-specific media (uniform grid) */
body.page-home.site-editorial .home-project-grid--design.home-project-grid--uniform .ibm-card .home-project-card__img,
body.page-home.site-editorial .home-project-grid--design.home-project-grid--uniform .ibm-card .project_image {
  background: var(--project-preview-surface) !important;
}

body.page-home.site-editorial .home-project-grid--design.home-project-grid--uniform .ibm-card .home-project-card__img {
  object-fit: contain;
  object-position: center center;
}

body.page-home.site-editorial .home-project-grid--design.home-project-grid--uniform .bloomandvine-card .home-project-card__video {
  object-fit: contain;
  object-position: center center;
}

body.page-home.site-editorial .home-project-grid--design.home-project-grid--uniform .sachacks-card .home-project-card__media {
  overflow: hidden;
}

body.page-home.site-editorial .home-project-grid--design.home-project-grid--uniform .sachacks-card .home-project-card__img--scroll {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: top center;
}

body.page-home.site-editorial .home-project-grid--design.home-project-grid--uniform .soundtransit-card .home-project-card__media--brand {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 3vw, 1.75rem);
  background: #ffffff !important;
}

body.page-home.site-editorial .home-project-grid--design.home-project-grid--uniform .soundtransit-card .home-project-card__img {
  position: relative;
  z-index: 0;
  width: min(72%, 14rem) !important;
  height: auto !important;
  max-width: none;
  max-height: min(80%, 13rem);
  object-fit: contain;
  object-position: center center;
  filter: drop-shadow(0 8px 20px rgba(43, 55, 110, 0.12));
}

body.page-home.site-editorial .home-work-group .project_content a.category {
  display: none;
}

@media only screen and (max-width: 767px) {
  body.page-home.site-editorial .home-work-groups {
    gap: 40px;
  }

  body.page-home.site-editorial .home-project-grid--uniform {
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(28px, 5vw, 40px);
  }

  body.page-home.site-editorial .home-project-grid .tj_project_item:focus-within {
    transform: none;
  }
}

@media only screen and (max-width: 767px) {
  body.page-home.site-editorial .home-work-grid-panel {
    padding: 20px 16px 24px;
    border-radius: 16px;
  }
}

body.page-home.page-projects.site-editorial .tj_project_grid {
  padding-top: 0;
  background-color: transparent;
}

/* Editorial project filters */
body.site-editorial .editorial-project-filter-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 0 clamp(28px, 4vh, 44px);
}

body.site-editorial .editorial-filter-btn-group {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

body.site-editorial .editorial-filter-btn-group .editorial-filter-btn {
  padding: 10px 18px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--tj-ff-body);
  font-size: clamp(0.8125rem, 0.95vw, 0.9375rem);
  font-weight: var(--tj-fw-sbold);
  letter-spacing: 0.02em;
  text-transform: none;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

body.site-editorial .editorial-filter-btn-group .editorial-filter-btn:hover,
body.site-editorial .editorial-filter-btn-group .editorial-filter-btn.active {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

body.site-editorial .editorial-filter-btn-group .editorial-filter-btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.55);
  outline-offset: 2px;
}

body.site-editorial .editorial-project-grid.is-filter-active .tj_filter_item.is-filter-hidden {
  display: none !important;
  visibility: hidden;
  pointer-events: none;
}

body.site-editorial.page-home .project-filter-section .container-fluid,
body.site-editorial.page-home .project-filter-section .row,
body.site-editorial.page-home .project-filter-section .col {
  background-color: transparent;
}

/* Contact page — split title + glass form panel, one viewport */
body.page-contact.site-editorial .contact-page-section {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: clamp(8px, 1.5vh, 16px) var(--site-content-inset) clamp(32px, 5vh, 48px);
  color: #ffffff;
  background: transparent;
  box-sizing: border-box;
  overflow: hidden;
}

body.page-contact.site-editorial .contact-page__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

body.page-contact.site-editorial .contact-page__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.45;
}

body.page-contact.site-editorial .contact-page__glow--left {
  width: min(42vw, 320px);
  height: min(42vw, 320px);
  top: 8%;
  left: -8%;
  background: radial-gradient(circle, rgba(255, 77, 184, 0.35) 0%, transparent 70%);
}

body.page-contact.site-editorial .contact-page__glow--right {
  width: min(36vw, 280px);
  height: min(36vw, 280px);
  bottom: 10%;
  right: 4%;
  background: radial-gradient(circle, rgba(120, 90, 255, 0.22) 0%, transparent 72%);
}

body.page-contact.site-editorial .contact-page-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vh, 40px);
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0;
  align-items: start;
}

body.page-contact.site-editorial .contact-page-layout.container-fluid {
  padding-left: 0;
  padding-right: 0;
  max-width: 100%;
}

@media only screen and (min-width: 992px) {
  body.page-contact.site-editorial .contact-page-section {
    display: flex;
    align-items: center;
    min-height: calc(100dvh - 84px);
    padding-bottom: clamp(16px, 2.5vh, 28px);
  }

  body.page-contact.site-editorial .contact-page-layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(32px, 4vw, 56px);
    align-items: center;
  }
}

body.page-contact.site-editorial .contact-page-layout__intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  width: 100%;
  max-width: 28em;
}

body.page-contact.site-editorial .contact-page__eyebrow {
  margin: 0 0 clamp(10px, 1.5vh, 14px);
  font-family: var(--tj-ff-body);
  font-size: 11px;
  font-weight: var(--tj-fw-medium);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

body.page-contact.site-editorial .contact-page__title {
  margin: 0 0 clamp(12px, 2vh, 18px);
  font-family: var(--tj-ff-body);
  font-weight: var(--tj-fw-bold);
  letter-spacing: -0.04em;
  line-height: 0.88;
  color: #ffffff;
}

body.page-contact.site-editorial .contact-page__title-word {
  display: block;
  font-size: clamp(2.5rem, 8.5vw, 5.5rem);
  text-transform: lowercase;
}

body.page-contact.site-editorial .contact-page__title-word--accent {
  padding-left: clamp(0.35em, 7vw, 1em);
  color: var(--site-accent);
}

body.page-contact.site-editorial .contact-page__lead {
  margin: 0 0 clamp(12px, 1.8vh, 16px);
  font-family: var(--tj-ff-body);
  font-size: clamp(0.9375rem, 1.05vw, 1.0625rem);
  font-weight: var(--tj-fw-medium);
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.9);
  text-wrap: pretty;
  max-width: 22em;
}

body.page-contact.site-editorial .contact-page__resumes {
  margin: 0 0 clamp(10px, 1.5vh, 14px);
  max-width: 26em;
}

body.page-contact.site-editorial .contact-page__resumes-label {
  margin: 0 0 6px;
  font-family: var(--tj-ff-body);
  font-size: 0.75rem;
  font-weight: var(--tj-fw-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

body.page-contact.site-editorial .contact-page__resumes-list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: var(--tj-ff-body);
  font-size: clamp(0.875rem, 0.95vw, 0.9375rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
}

body.page-contact.site-editorial .contact-page__resumes-list li + li {
  margin-top: 4px;
}

body.page-contact.site-editorial .contact-page__resumes-list a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

body.page-contact.site-editorial .contact-page__resumes-list a:hover {
  color: #ffffff;
  border-bottom-color: rgba(255, 77, 184, 0.55);
}

body.page-contact.site-editorial .contact-page__resumes-formats {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.92em;
}

body.page-contact.site-editorial .contact-page__direct {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  margin: 0;
  padding: 0;
}

body.page-contact.site-editorial .contact-page__direct-link {
  font-family: var(--tj-ff-body);
  font-size: clamp(0.875rem, 0.95vw, 0.9375rem);
  font-weight: var(--tj-fw-medium);
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

body.page-contact.site-editorial .contact-page__direct-link:hover {
  color: #ffffff;
  border-bottom-color: rgba(255, 77, 184, 0.55);
}

body.page-contact.site-editorial .contact-page__direct-sep {
  color: rgba(255, 255, 255, 0.35);
  user-select: none;
}

body.page-contact.site-editorial .contact-page__social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: clamp(14px, 2vh, 18px) 0 0;
  padding: 0;
}

body.page-contact.site-editorial .contact-page__form-panel {
  position: relative;
  margin: 0;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body.page-contact.site-editorial .contact-page__form-panel::before {
  content: none;
  display: none;
}

body.page-contact.site-editorial .contact-page-layout__form.tj-contact-section-3,
body.page-contact.site-editorial .tj-contact-section-3 {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body.page-contact.site-editorial .contact-page-layout__form .contact-form.style-3 {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body.page-contact.site-editorial .contact-form--compact .contact-form__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2.2vh, 20px) clamp(14px, 2vw, 18px);
  margin: 0;
}

body.page-contact.site-editorial .contact-form--compact .contact-form__field--full,
body.page-contact.site-editorial .contact-form--compact .submit-area {
  grid-column: 1 / -1;
}

body.page-contact.site-editorial .contact-form--compact .form-input {
  width: 100%;
  padding: 0;
  margin: 0 !important;
}

body.page-contact.site-editorial .contact-form.style-3 .form-input .cf-label {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0 0 8px;
}

body.page-contact.site-editorial .contact-form.style-3 .form-input input,
body.page-contact.site-editorial .contact-form.style-3 .form-input textarea,
body.page-contact.site-editorial .contact-form.style-3 .form-input input[type=tel],
body.page-contact.site-editorial .contact-form.style-3 .form-input input[type=text],
body.page-contact.site-editorial .contact-form.style-3 .form-input input[type=email] {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0;
  min-height: 0;
  height: auto;
  padding: 14px 16px !important;
  box-sizing: border-box;
  border-radius: 12px;
  font-size: 0.9375rem !important;
  line-height: 1.45 !important;
  letter-spacing: 0;
}

body.page-contact.site-editorial .contact-form.style-3 .form-input input[type=text],
body.page-contact.site-editorial .contact-form.style-3 .form-input input[type=email],
body.page-contact.site-editorial .contact-form.style-3 .form-input input[type=tel] {
  min-height: 3rem;
}

body.page-contact.site-editorial .contact-form.style-3 .contact-form__field--message textarea {
  height: auto !important;
  min-height: 5.5rem;
  max-height: 8rem;
  padding: 14px 16px !important;
  resize: vertical;
}

body.page-contact.site-editorial .contact-form.style-3 input,
body.page-contact.site-editorial .contact-form.style-3 textarea {
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

body.page-contact.site-editorial .contact-form.style-3 input:focus,
body.page-contact.site-editorial .contact-form.style-3 textarea:focus {
  border-color: rgba(255, 77, 184, 0.45);
  background-color: rgba(255, 255, 255, 0.09);
  outline: none;
}

body.page-contact.site-editorial .contact-form.style-3 input::placeholder,
body.page-contact.site-editorial .contact-form.style-3 textarea::placeholder {
  color: rgba(255, 255, 255, 0.32);
}

body.page-contact.site-editorial .contact-form.style-3 .submit-area {
  display: flex;
  justify-content: flex-start;
  margin-top: clamp(6px, 1vh, 10px);
  padding-bottom: 0;
  opacity: 1;
  visibility: visible;
}

body.page-contact.site-editorial .contact-form.style-3 .submit-btn {
  opacity: 1;
  visibility: visible;
}

body.page-contact.site-editorial .contact-form.style-3 .tj_icon_btn {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.06);
}

body.page-contact.site-editorial .contact-form.style-3 .tj_icon_btn:hover,
body.page-contact.site-editorial .contact-form.style-3 .tj_icon_btn:focus {
  color: #ffffff;
  border-color: rgba(255, 77, 184, 0.45);
  background-color: rgba(255, 77, 184, 0.1);
}

body.page-contact.site-editorial .contact-form.style-3 .icon_btn {
  background-color: #ffffff;
  color: var(--site-bg-deep);
}

body.page-contact.site-editorial .contact-form.style-3 .icon_btn i {
  color: var(--site-bg-deep);
}

body.page-contact.site-editorial .contact-form.style-3 .icon_btn:hover {
  background-color: var(--site-accent);
  color: #ffffff;
}

body.page-contact.site-editorial .contact-form.style-3 .icon_btn:hover i {
  color: #ffffff;
}

body.page-contact.site-editorial .contact-form__alert {
  margin-bottom: 10px;
  padding: 10px 12px;
  font-size: 0.875rem;
}

body.page-contact.site-editorial .alert-success {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

body.page-contact.site-editorial .alert-warning {
  background-color: rgba(255, 77, 184, 0.12);
  border-color: rgba(255, 77, 184, 0.35);
  color: #ffffff;
}

@media (max-width: 575px) {
  body.page-contact.site-editorial .contact-form--compact .contact-form__fields {
    grid-template-columns: 1fr;
  }

  body.page-contact.site-editorial .contact-page__title-word {
    font-size: clamp(2.25rem, 12vw, 3.25rem);
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  body.site-editorial .inner_top_gap {
    padding-top: 88px;
  }

  .home-landing-section--editorial,
  .home-landing-section--editorial.editorial-page-section {
    min-height: auto;
    padding-bottom: 48px;
  }

  .home-landing-section--editorial .home-landing__inner {
    max-width: 100%;
  }

  .home-landing__line,
  .home-landing__line--single {
    font-size: clamp(1.875rem, 9vw, 2.75rem);
    line-height: 1.02;
  }

  .home-landing__details,
  .home-landing-section--editorial .home-landing__copy {
    max-width: 100%;
  }

  body.page-contact.site-editorial .contact-page-section {
    min-height: auto;
    padding-bottom: 48px;
  }
}

@media (max-width: 575px) {
  body.site-editorial .inner_top_gap {
    padding-top: 84px;
  }

  .home-landing-section--editorial {
    padding-bottom: 40px;
  }
}

/* —— Sidebar (offcanvas) —— */

body.site-editorial .tj-offcanvas-overlay {
  background-color: rgba(8, 7, 15, 0.62);
}

body.site-editorial .tj-offcanvas-overlay.opened {
  backdrop-filter: blur(12px);
}

body.site-editorial .tj-offcanvas,
body.site-editorial .tj-offcanvas.tj-offcanvas-2 {
  background-color: var(--site-bg-deep);
}

body.site-editorial .tj-offcanvas .offcanvas_bg,
body.site-editorial .tj-offcanvas.tj-offcanvas-2 .offcanvas_bg {
  background-color: var(--site-bg-deep);
  background-image:
    radial-gradient(ellipse 70% 50% at 100% 0%, var(--site-glow-magenta) 0%, transparent 55%),
    radial-gradient(ellipse 40% 35% at 0% 100%, var(--site-glow-violet) 0%, transparent 50%);
}

body.site-editorial .tj-offcanvas .offcanvas_top,
body.site-editorial .tj-offcanvas.tj-offcanvas-2 .offcanvas_top {
  border-color: rgba(255, 255, 255, 0.12);
}

body.site-editorial .tj-offcanvas .offcanvas_logo .logo,
body.site-editorial .tj-offcanvas.tj-offcanvas-2 .offcanvas_logo .logo {
  max-width: none;
  width: auto;
}

body.site-editorial .tj-offcanvas .offcanvas_close,
body.site-editorial .tj-offcanvas.tj-offcanvas-2 .offcanvas_close {
  color: #ffffff;
}

body.site-editorial .tj-offcanvas .offcanvas_close .close-text,
body.site-editorial .tj-offcanvas.tj-offcanvas-2 .offcanvas_close .close-text {
  color: #ffffff;
  opacity: 1;
  visibility: visible;
  transform: translate(0, -50%);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.site-editorial .tj-offcanvas .offcanvas_close .tj_sidebar_toggle > span,
body.site-editorial .tj-offcanvas.tj-offcanvas-2 .offcanvas_close .tj_sidebar_toggle > span {
  background-color: #ffffff;
}

body.site-editorial .tj-offcanvas .offcanvas_action .greetings,
body.site-editorial .tj-offcanvas.tj-offcanvas-2 .offcanvas_action .greetings {
  color: #ffffff;
  font-family: var(--tj-ff-body);
  font-weight: var(--tj-fw-bold);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  letter-spacing: -0.02em;
  text-transform: lowercase;
}

body.site-editorial .tj-offcanvas .tj_contact .contact_title span,
body.site-editorial .tj-offcanvas.tj-offcanvas-2 .tj_contact .contact_title span {
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
  font-weight: var(--tj-fw-medium);
}

body.site-editorial .tj-offcanvas .tj_contact .contact_info,
body.site-editorial .tj-offcanvas.tj-offcanvas-2 .tj_contact .contact_info {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.9375rem, 1.1vw, 1.0625rem);
}

body.site-editorial .tj-offcanvas .tj_contact a.contact_info:hover,
body.site-editorial .tj-offcanvas .tj_contact a.contact_info:focus,
body.site-editorial .tj-offcanvas.tj-offcanvas-2 .tj_contact a.contact_info:hover,
body.site-editorial .tj-offcanvas.tj-offcanvas-2 .tj_contact a.contact_info:focus {
  color: #ffffff;
}

body.site-editorial .tj-offcanvas .tj_socials > li > a,
body.site-editorial .tj-offcanvas.tj-offcanvas-2 .tj_socials > li > a {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.35);
  background-color: transparent;
}

body.site-editorial .tj-offcanvas .tj_socials > li > a:hover,
body.site-editorial .tj-offcanvas.tj-offcanvas-2 .tj_socials > li > a:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: #ffffff;
}

body.site-editorial .tj_socials > li > a .tj_socials__resume-icon {
  display: block;
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

body.site-editorial .tj-offcanvas .offcanvas_menu .mean-nav ul:not(.sub-menu) > li,
body.site-editorial .tj-offcanvas.tj-offcanvas-2 .offcanvas_menu .mean-nav ul:not(.sub-menu) > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

body.site-editorial .tj-offcanvas .offcanvas_menu .mean-nav ul:not(.sub-menu) > li > a:not(.mean-expand),
body.site-editorial .tj-offcanvas.tj-offcanvas-2 .offcanvas_menu .mean-nav ul:not(.sub-menu) > li > a:not(.mean-expand) {
  color: #ffffff;
  font-family: var(--tj-ff-body);
  font-weight: var(--tj-fw-bold);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  letter-spacing: -0.03em;
  text-transform: lowercase;
  line-height: 1.1;
  padding: 20px 0;
  min-height: 44px;
  display: flex;
  align-items: center;
}

body.site-editorial .tj-offcanvas .offcanvas_menu .mean-nav ul:not(.sub-menu) > li.current-menu-item > a:not(.mean-expand),
body.site-editorial .tj-offcanvas .offcanvas_menu .mean-nav ul:not(.sub-menu) > li.dropdown-opened > a:not(.mean-expand),
body.site-editorial .tj-offcanvas.tj-offcanvas-2 .offcanvas_menu .mean-nav ul:not(.sub-menu) > li.current-menu-item > a:not(.mean-expand),
body.site-editorial .tj-offcanvas.tj-offcanvas-2 .offcanvas_menu .mean-nav ul:not(.sub-menu) > li.dropdown-opened > a:not(.mean-expand) {
  color: var(--site-accent);
}

body.site-editorial .tj-offcanvas .offcanvas_menu .mean-nav ul:not(.sub-menu) > li a.mean-expand,
body.site-editorial .tj-offcanvas.tj-offcanvas-2 .offcanvas_menu .mean-nav ul:not(.sub-menu) > li a.mean-expand {
  color: rgba(255, 255, 255, 0.55);
  border: none;
}

/* Contact: unified intro + form */
body.page-contact.site-editorial .contact-page-layout__form.tj-contact-section-3 {
  padding-top: 0;
}

body.page-contact.site-editorial .contact-form.style-3 .cf-label {
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.page-contact.site-editorial .contact-form.style-3 .cf-label span:not(.cf-label-optional) {
  color: var(--tj-color-theme-primary);
}

body.page-contact.site-editorial .contact-form.style-3 .cf-label-optional {
  color: rgba(255, 255, 255, 0.45);
  font-weight: var(--tj-fw-regular);
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

body.page-contact.site-editorial .contact-form.style-3 .flip-text,
body.page-contact.site-editorial .contact-form.style-3 .flip-text .front,
body.page-contact.site-editorial .contact-form.style-3 .flip-text .back {
  color: #ffffff;
}

body.page-contact.site-editorial .tj-contact-section-3 .contact-form .row {
  --bs-gutter-x: 1.5rem;
}

/* Projects grid — uniform 4-column editorial layout */

body.site-editorial .editorial-project-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 32px);
  margin: 0;
  padding-top: 0;
  width: 100%;
}

body.site-editorial .editorial-project-grid .tj_project_item {
  width: 100% !important;
  max-width: none !important;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  order: unset !important;
  flex: unset !important;
}

body.site-editorial .editorial-project-grid .project_image {
  width: 100%;
  margin: 0;
}

body.site-editorial .editorial-project-grid .project_image > a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  background-color: #f8f5fc;
  box-sizing: border-box;
  padding: clamp(8px, 1.5%, 14px);
}

body.site-editorial .editorial-project-grid .project_image > a img {
  display: block;
  width: auto;
  height: auto;
  max-width: 94%;
  max-height: 94%;
  object-fit: contain;
  object-position: center center;
  transform: none !important;
}

body.site-editorial .editorial-project-grid .project_image:hover > a img {
  transform: scale(1.03) !important;
}

body.page-home.site-editorial .editorial-project-grid:not(.playground-float-stage):not(.home-project-grid) .ibm-preview,
body.page-home.site-editorial .editorial-project-grid:not(.playground-float-stage):not(.home-project-grid) .schedgo-preview,
body.page-home.site-editorial .editorial-project-grid:not(.playground-float-stage):not(.home-project-grid) .breaking-barriers-preview,
body.page-home.site-editorial .editorial-project-grid:not(.playground-float-stage):not(.home-project-grid) .bloomandvine-preview,
body.page-home.site-editorial .editorial-project-grid:not(.playground-float-stage):not(.home-project-grid) .makeability-preview,
body.page-home.site-editorial .editorial-project-grid:not(.playground-float-stage):not(.home-project-grid) .fitted-preview,
body.page-home.site-editorial .editorial-project-grid:not(.playground-float-stage):not(.home-project-grid) .rulemate-preview,
body.page-home.site-editorial .editorial-project-grid:not(.playground-float-stage):not(.home-project-grid) .nordstrom-preview,
body.page-home.site-editorial .editorial-project-grid:not(.playground-float-stage):not(.home-project-grid) .nordstrom-rack-preview,
body.page-home.site-editorial .editorial-project-grid:not(.playground-float-stage):not(.home-project-grid) .inclusive-design-lab-preview,
body.page-home.site-editorial .editorial-project-grid:not(.playground-float-stage):not(.home-project-grid) .soundtransit-preview,
body.page-home.site-editorial .editorial-project-grid:not(.playground-float-stage):not(.home-project-grid) .sachacks-preview,
body.page-home.site-editorial .editorial-project-grid:not(.playground-float-stage):not(.home-project-grid) .wics-preview,
body.page-home.site-editorial .editorial-project-grid:not(.playground-float-stage):not(.home-project-grid) [class*="-preview"] {
  display: none !important;
}

/* Home — editorial project grid */
body.page-home.site-editorial .editorial-project-grid.home-project-grid {
  width: 100%;
  min-height: 0;
  padding: 0;
  align-items: stretch;
}

body.page-home.site-editorial .editorial-project-grid.home-project-grid--single {
  grid-template-columns: minmax(0, 1fr);
  max-width: min(720px, 100%);
  margin-inline: auto;
}

body.page-home.site-editorial .home-project-grid .tj_project_item.home-project-card {
  cursor: pointer;
}

body.page-home.site-editorial .home-project-grid .tj_project_item {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100% !important;
  max-width: none !important;
  min-width: 0;
  height: 100%;
  margin: 0;
  padding: 0;
  animation: none;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 8, 18, 0.78);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease,
    box-shadow 0.4s ease;
}

body.page-home.site-editorial .home-project-grid .tj_project_item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 77, 184, 0.35);
  transition: opacity 0.35s ease;
  z-index: 3;
}

@media (hover: hover) and (pointer: fine) {
  body.page-home.site-editorial .home-project-grid .tj_project_item:hover,
  body.page-home.site-editorial .home-project-grid .tj_project_item.is-media-active {
    transform: translateY(-7px);
    border-color: rgba(255, 77, 184, 0.32);
    box-shadow:
      0 28px 56px rgba(0, 0, 0, 0.42),
      0 0 40px rgba(255, 77, 184, 0.12);
  }

  body.page-home.site-editorial .home-project-grid .tj_project_item:hover::after,
  body.page-home.site-editorial .home-project-grid .tj_project_item.is-media-active::after {
    opacity: 1;
  }
}

body.page-home.site-editorial .home-project-grid .tj_project_item:focus-within {
  border-color: rgba(255, 77, 184, 0.28);
  box-shadow:
    0 20px 44px rgba(0, 0, 0, 0.36),
    0 0 28px rgba(255, 77, 184, 0.1);
}

body.page-home.site-editorial .home-project-grid .tj_project_item:focus-within::after {
  opacity: 1;
}

/* Home project cards — full-card case study link + nested external links */
body.page-home.site-editorial .home-project-card__link {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  text-decoration: none;
  color: inherit;
}

body.page-home.site-editorial .home-project-card__link:focus-visible {
  outline: 2px solid var(--site-accent);
  outline-offset: 3px;
}

body.page-home.site-editorial .home-project-card__external,
body.page-home.site-editorial .home-project-card__case-study {
  position: relative;
  z-index: 3;
}

body.page-home.site-editorial .home-project-card__media {
  display: block !important;
  width: 100% !important;
  position: relative;
  flex: 0 0 auto;
  flex-grow: 0;
  aspect-ratio: 4 / 3;
  min-height: clamp(200px, 32vw, 320px);
  overflow: hidden !important;
  background: var(--project-preview-surface) !important;
  border-radius: 0;
}

body.page-home.site-editorial .home-project-card__media--wide {
  aspect-ratio: 16 / 9;
  background: linear-gradient(180deg, #b8d9ec 0%, #eef5f9 48%, #6aab72 100%) !important;
}

body.page-home.site-editorial .home-project-card__media--doc {
  background: #f5f2eb !important;
}

body.page-home.site-editorial .home-project-card__video,
body.page-home.site-editorial .home-project-card__img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
  background: transparent;
  opacity: 1 !important;
  visibility: visible !important;
  transform: scale(1);
  transform-origin: center center;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
  body.page-home.site-editorial .home-project-grid .tj_project_item:hover .home-project-card__video,
  body.page-home.site-editorial .home-project-grid .tj_project_item:hover .home-project-card__img:not(.home-project-card__img--scroll),
  body.page-home.site-editorial .home-project-grid .tj_project_item.is-media-active .home-project-card__video,
  body.page-home.site-editorial .home-project-grid .tj_project_item.is-media-active .home-project-card__img:not(.home-project-card__img--scroll) {
    transform: scale(1.045);
  }
}

body.page-home.site-editorial .home-project-card__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(6, 5, 12, 0.35) 100%);
  opacity: 0.65;
  transition: opacity 0.35s ease;
}

@media (hover: hover) and (pointer: fine) {
  body.page-home.site-editorial .home-project-grid .tj_project_item:hover .home-project-card__media::before,
  body.page-home.site-editorial .home-project-grid .tj_project_item.is-media-active .home-project-card__media::before {
    opacity: 0.35;
  }
}

body.page-home.site-editorial .home-project-card > .home-project-card__case-study {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin: 0;
  padding: clamp(8px, 1vw, 12px) clamp(16px, 2vw, 24px) clamp(16px, 2vw, 24px);
  background: linear-gradient(180deg, rgba(8, 6, 14, 0.88) 0%, rgba(8, 6, 14, 0.95) 100%);
  font-family: var(--tj-ff-body);
  font-size: clamp(0.75rem, 0.82vw, 0.8125rem);
  font-weight: var(--tj-fw-sbold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(210, 205, 228, 0.78);
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.2s ease;
}

body.page-home.site-editorial .home-project-card > .home-project-card__case-study .home-project-card__case-study-label {
  text-decoration: underline;
  text-decoration-color: rgba(255, 77, 184, 0.45);
  text-underline-offset: 0.22em;
  text-underline-thickness: 1px;
}

body.page-home.site-editorial .home-project-card > .home-project-card__case-study .home-project-card__case-study-arrow {
  font-size: 1rem;
  line-height: 1;
  color: var(--site-accent);
  transition: transform 0.2s ease;
}

body.page-home.site-editorial .home-project-card > .home-project-card__case-study:hover,
body.page-home.site-editorial .home-project-card > .home-project-card__case-study:focus-visible {
  color: rgba(230, 225, 242, 0.92);
  text-decoration: none;
}

body.page-home.site-editorial .home-project-card > .home-project-card__case-study:hover .home-project-card__case-study-label,
body.page-home.site-editorial .home-project-card > .home-project-card__case-study:focus-visible .home-project-card__case-study-label {
  text-decoration-color: var(--site-accent);
}

body.page-home.site-editorial .home-project-card > .home-project-card__case-study:hover .home-project-card__case-study-arrow,
body.page-home.site-editorial .home-project-card > .home-project-card__case-study:focus-visible .home-project-card__case-study-arrow {
  transform: translateX(3px);
}

body.page-home.site-editorial .home-project-card > .home-project-card__case-study:focus-visible {
  outline: 2px solid var(--site-accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Home — Sound Transit (coming soon on media; no case study page yet) */
body.page-home.site-editorial .home-project-card--coming-soon {
  cursor: default;
}

body.page-home.site-editorial .home-project-card--coming-soon .home-project-card__external {
  cursor: pointer;
}

body.page-home.site-editorial .home-project-card__case-study--soon {
  cursor: default;
  color: rgba(255, 255, 255, 0.45);
  pointer-events: none;
}

body.page-home.site-editorial .home-project-card__case-study--soon .home-project-card__case-study-label {
  text-decoration: none;
}

body.page-home.site-editorial .home-project-card--coming-soon .home-project-card__coming-soon {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  background: rgba(6, 5, 12, 0.52);
  transition: opacity 0.35s ease;
}

body.page-home.site-editorial .home-project-card--coming-soon .home-project-card__coming-soon-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(6.75rem, 16vw, 9.25rem);
  height: clamp(6.75rem, 16vw, 9.25rem);
  padding: 0.75rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 77, 184, 0.42);
  background: rgba(8, 6, 14, 0.88);
  box-shadow:
    0 0 36px rgba(255, 77, 184, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  font-family: var(--tj-ff-body);
  font-size: clamp(0.625rem, 0.72vw, 0.75rem);
  font-weight: var(--tj-fw-sbold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.35;
  color: rgba(230, 225, 242, 0.96);
}

@media (hover: hover) and (pointer: fine) {
  body.page-home.site-editorial .home-project-card--coming-soon:hover,
  body.page-home.site-editorial .home-project-card--coming-soon:focus-within {
    transform: none;
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow:
      0 12px 32px rgba(0, 0, 0, 0.26),
      inset 0 1px 0 rgba(255, 255, 255, 0.04);
  }

  body.page-home.site-editorial .home-project-card--coming-soon:hover::after,
  body.page-home.site-editorial .home-project-card--coming-soon:focus-within::after {
    opacity: 0;
  }

  body.page-home.site-editorial .home-project-card--coming-soon:hover .home-project-card__coming-soon,
  body.page-home.site-editorial .home-project-card--coming-soon:focus-within .home-project-card__coming-soon {
    opacity: 0;
  }

  body.page-home.site-editorial .home-project-card--coming-soon .home-project-card__media:hover .home-project-card__coming-soon,
  body.page-home.site-editorial .home-project-card--coming-soon .home-project-card__media:focus-within .home-project-card__coming-soon {
    opacity: 1;
  }

  body.page-home.site-editorial .home-project-card--coming-soon .home-project-card__media:hover::before,
  body.page-home.site-editorial .home-project-card--coming-soon .home-project-card__media:focus-within::before {
    opacity: 0.2;
  }

  body.page-home.site-editorial .home-project-card--coming-soon:hover .home-project-card__img,
  body.page-home.site-editorial .home-project-card--coming-soon:focus-within .home-project-card__img {
    transform: scale(1);
  }

  body.page-home.site-editorial .home-project-card--coming-soon .home-project-card__media:hover .home-project-card__img,
  body.page-home.site-editorial .home-project-card--coming-soon .home-project-card__media:focus-within .home-project-card__img {
    transform: scale(1);
  }
}

body.page-home.site-editorial .breaking-barriers-card .home-project-card__video {
  object-position: left center;
}

body.page-home.site-editorial .nordstrom-rack-card .home-project-card__img {
  object-position: center center;
  background: #f5f2eb !important;
}

body.page-home.site-editorial .home-project-card__img--scroll {
  width: 100%;
  height: auto;
  min-height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: top center;
  animation: scrollWebsite 22s linear infinite alternate;
  animation-play-state: running;
}

@keyframes scrollWebsite {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-60%);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.page-home.site-editorial .home-project-card__img--scroll,
  body.page-home.site-editorial .home-project-grid--live .sachacks-preview .preview-window img,
  body.page-sachacks .work-detail__figure-frame--scroll img,
  body.page-sachacks .work-detail__figure-scroll,
  body.page-breaking-barriers .work-detail__figure-frame--scroll img,
  body.page-breaking-barriers .work-detail__figure-scroll,
  body.page-bloom-and-vine .work-detail__figure-frame--scroll img,
  body.page-bloom-and-vine .work-detail__figure-scroll,
  body.page-sachacks .case-study-figure__frame--scroll img,
  body.page-sachacks .case-study-figure__scroll {
    animation: none;
  }
}

body.page-home.site-editorial .home-project-card__meta {
  flex: 0 0 auto;
}

body.page-home.site-editorial .home-project-card .project_title {
  margin: 0;
}

body.page-home.site-editorial .home-project-card .project_title .text {
  transform: none !important;
  color: #ffffff;
}

body.page-home.site-editorial .home-project-card:hover .project_title .text {
  color: var(--site-accent);
}

body.page-home.site-editorial .home-project-card .icon_btn {
  display: none !important;
}

/* Home grid — legacy preview overrides (kept for any remaining wrappers) */
body.page-home.site-editorial .home-project-grid--live .project_image {
  position: relative;
  width: 100%;
  flex: 0 0 auto;
  aspect-ratio: 4 / 3;
  min-height: 0;
  border-radius: 0;
  overflow: hidden !important;
  background: var(--project-preview-surface);
  border: 0;
  box-shadow: none;
  transition: none;
}

body.page-home.site-editorial .home-project-grid--live .breaking-barriers-card .project_image {
  aspect-ratio: 16 / 9;
  background: linear-gradient(180deg, #b8d9ec 0%, #eef5f9 48%, #6aab72 100%) !important;
}

body.page-home.site-editorial .home-project-grid--live .tj_project_item:hover .project_image {
  border-color: transparent;
  box-shadow: none;
}

body.page-home.site-editorial .home-project-grid--live .ibm-card .project_image,
body.page-home.site-editorial .home-project-grid--live .makeability-card .project_image,
body.page-home.site-editorial .home-project-grid--live .bloomandvine-card .project_image,
body.page-home.site-editorial .home-project-grid--live .sachacks-card .project_image,
body.page-home.site-editorial .home-project-grid--live .schedgo-card .project_image,
body.page-home.site-editorial .home-project-grid--live .inclusive-design-lab-card .project_image,
body.page-home.site-editorial .home-project-grid--live .nordstrom-rack-card .project_image {
  background: var(--project-preview-surface) !important;
}

body.page-home.site-editorial .home-project-grid--live .makeability-card .project_image,
body.page-home.site-editorial .home-project-grid--live .ibm-card .project_image,
body.page-home.site-editorial .home-project-grid--live .breaking-barriers-card .project_image,
body.page-home.site-editorial .home-project-grid--live .bloomandvine-card .project_image,
body.page-home.site-editorial .home-project-grid--live .sachacks-card .project_image,
body.page-home.site-editorial .home-project-grid--live .schedgo-card .project_image,
body.page-home.site-editorial .home-project-grid--live .inclusive-design-lab-card .project_image,
body.page-home.site-editorial .home-project-grid--live .nordstrom-rack-card .project_image {
  overflow: hidden !important;
}

body.page-home.site-editorial .home-project-grid--live .nordstrom-rack-card .project_image.home-project-card__media--doc {
  background: #f5f2eb !important;
}

body.page-home.site-editorial .home-project-grid--live .project_image > a:not(.project-preview-link) {
  display: none !important;
}

body.page-home.site-editorial .home-project-grid--live [class*="-preview"] {
  position: relative !important;
  inset: auto !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 1 !important;
  transform: none !important;
  pointer-events: auto !important;
  z-index: 1;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0;
  overflow: hidden;
}

body.page-home.site-editorial .home-project-grid--live .preview-window {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 100%;
  border-radius: 0;
  background: var(--project-preview-surface) !important;
  overflow: hidden;
}

body.page-home.site-editorial .home-project-grid--live .project-preview-link {
  background: transparent !important;
}

body.page-home.site-editorial .home-project-grid--live .project-preview-expand {
  display: none !important;
}

body.page-home.site-editorial .home-project-grid--live .preview-window video,
body.page-home.site-editorial .home-project-grid--live .preview-window img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain !important;
  object-position: center center;
  background: transparent !important;
}

/* Makeability — keep preview layer and video visible (overrides hover popup defaults) */
body.page-home.site-editorial .home-project-grid--live .makeability-card .makeability-preview {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: none !important;
}

body.page-home.site-editorial .home-project-grid--live .makeability-card .preview-window {
  position: relative !important;
  isolation: isolate;
  min-height: 100%;
}

body.page-home.site-editorial .home-project-grid--live .makeability-card .makeability-portfolio-video {
  position: relative !important;
  inset: auto !important;
  z-index: 1 !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 1 !important;
  visibility: visible !important;
  object-fit: contain !important;
  object-position: center center;
  background: transparent !important;
}

body.page-home.site-editorial .home-project-grid--live .makeability-card .project-preview-link {
  z-index: 2;
}

body.page-home.site-editorial .home-project-grid--live .breaking-barriers-card .breaking-barriers-preview,
body.page-home.site-editorial .home-project-grid--live .bloomandvine-card .bloomandvine-preview,
body.page-home.site-editorial .home-project-grid--live .schedgo-card .schedgo-preview {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: none !important;
}

body.page-home.site-editorial .home-project-grid--live .breaking-barriers-card .preview-window {
  position: relative !important;
  isolation: isolate;
  min-height: 100%;
  background: linear-gradient(180deg, #b8d9ec 0%, #eef5f9 48%, #6aab72 100%);
}

body.page-home.site-editorial .home-project-grid--live .bloomandvine-card .preview-window,
body.page-home.site-editorial .home-project-grid--live .schedgo-card .preview-window {
  position: relative !important;
  isolation: isolate;
  min-height: 100%;
}

body.page-home.site-editorial .home-project-grid--live .breaking-barriers-portfolio-video {
  position: relative !important;
  inset: auto !important;
  z-index: 1 !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 1 !important;
  visibility: visible !important;
  object-fit: contain !important;
  object-position: left center;
  background: transparent !important;
}

body.page-home.site-editorial .home-project-grid--live .bloomandvine-portfolio-video,
body.page-home.site-editorial .home-project-grid--live .schedgo-portfolio-video {
  position: relative !important;
  inset: auto !important;
  z-index: 1 !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 1 !important;
  visibility: visible !important;
  object-fit: contain !important;
  object-position: center center;
  background: transparent !important;
}

body.page-home.site-editorial .home-project-grid--live .breaking-barriers-card .project-preview-link,
body.page-home.site-editorial .home-project-grid--live .bloomandvine-card .project-preview-link,
body.page-home.site-editorial .home-project-grid--live .schedgo-card .project-preview-link {
  z-index: 2;
}

body.page-home.site-editorial .home-project-grid--live .inclusive-design-lab-card .project_image {
  aspect-ratio: 16 / 10;
  min-height: 0;
}

body.page-home.site-editorial .home-project-grid--live .inclusive-design-lab-preview .preview-window {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--project-preview-surface) !important;
}

body.page-home.site-editorial .home-project-grid--live .inclusive-design-lab-preview .preview-window img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain !important;
  object-position: center center;
  background: transparent !important;
}

body.page-home.site-editorial .home-project-grid--live .nordstrom-rack-preview .preview-window {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f2eb !important;
  overflow: hidden;
}

body.page-home.site-editorial .home-project-grid--live .nordstrom-rack-preview .preview-window img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain !important;
  object-position: center center;
  background: #f5f2eb !important;
}

body.page-home.site-editorial .home-project-grid--live .sachacks-preview .preview-window {
  display: block;
  height: 100%;
  overflow: hidden;
  background: var(--project-preview-surface) !important;
}

body.page-home.site-editorial .home-project-grid--live .sachacks-preview .preview-window img {
  width: 100%;
  height: auto;
  min-height: 100%;
  max-height: none;
  object-fit: cover !important;
  object-position: top center;
  animation: scrollWebsite 22s linear infinite alternate;
  animation-play-state: running;
}

/* IBM dashboard — show full screenshot, no crop */
body.page-home.site-editorial .home-project-grid--live .ibm-preview .preview-window {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--project-preview-surface) !important;
}

body.page-home.site-editorial .home-project-grid--live .ibm-preview .preview-window img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain !important;
  object-position: center center;
  background: transparent !important;
}

body.page-home.site-editorial .home-project-grid--live .preview-window--brand {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(150deg, #0d2a3a 0%, #1a5a6e 50%, #081820 100%) !important;
}

body.page-home.site-editorial .home-project-grid--live .preview-window--brand img {
  width: auto !important;
  height: auto !important;
  max-width: 72%;
  max-height: 52%;
  object-fit: contain !important;
}

body.page-home.site-editorial .home-project-grid--live .nordstrom-rack-preview .preview-window iframe.nordstrom-pdf-embed {
  display: none !important;
}

body.page-home.site-editorial .home-project-grid--live .project-interactive-popup {
  pointer-events: auto !important;
}

body.page-home.site-editorial .home-project-grid--live .preview-window .video-sound-toggle,
body.page-home.site-editorial .home-project-grid--live .preview-window .video-scrub {
  display: none !important;
}

/* Override main.css card black fills on home live grid */
body.page-home.site-editorial .home-project-grid--live .makeability-card .project_image > a,
body.page-home.site-editorial .home-project-grid--live .ibm-card .project_image > a,
body.page-home.site-editorial .home-project-grid--live .inclusive-design-lab-card .project_image > a,
body.page-home.site-editorial .home-project-grid--live .nordstrom-rack-card .project_image > a,
body.page-home.site-editorial .home-project-grid--live .schedgo-card .project_image > a,
body.page-home.site-editorial .home-project-grid--live .breaking-barriers-card .project_image > a,
body.page-home.site-editorial .home-project-grid--live .bloomandvine-card .project_image > a,
body.page-home.site-editorial .home-project-grid--live .sachacks-card .project_image > a,
body.page-home.site-editorial .home-project-grid--live .makeability-card .project_image,
body.page-home.site-editorial .home-project-grid--live .ibm-card .project_image,
body.page-home.site-editorial .home-project-grid--live .inclusive-design-lab-card .project_image,
body.page-home.site-editorial .home-project-grid--live .nordstrom-rack-card .project_image,
body.page-home.site-editorial .home-project-grid--live .schedgo-card .project_image,
body.page-home.site-editorial .home-project-grid--live .breaking-barriers-card .project_image,
body.page-home.site-editorial .home-project-grid--live .bloomandvine-card .project_image,
body.page-home.site-editorial .home-project-grid--live .sachacks-card .project_image {
  background: var(--project-preview-surface) !important;
}

@media only screen and (max-width: 767px) {
  body.page-home.site-editorial .editorial-project-grid.home-project-grid {
    grid-template-columns: 1fr;
    gap: clamp(24px, 5vw, 36px);
  }
}

body.site-editorial .editorial-project-grid .fitted-card .project_image,
body.site-editorial .editorial-project-grid .fitted-card .project_image > a {
  min-height: 0;
  aspect-ratio: 4 / 5;
}

body.site-editorial .editorial-project-grid .fitted-card .project_image > a img {
  object-fit: contain;
  object-position: center center;
}

body.site-editorial .editorial-project-grid .project_content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-top: 14px;
  width: 100%;
}

body.site-editorial .editorial-project-grid .project_description {
  margin: 0;
  font-family: var(--tj-ff-body);
  font-size: clamp(0.8125rem, 0.95vw, 0.9375rem);
  font-weight: var(--tj-fw-regular);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  text-wrap: pretty;
}

body.page-home.site-editorial .home-project-grid--live .project_description {
  max-width: 42em;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.6;
}

body.page-home.site-editorial .home-project-grid--live .project_content,
body.page-home.site-editorial .home-project-grid--live .home-project-card__meta {
  flex: 0 0 auto;
  gap: 6px;
  margin-top: 0;
  padding: clamp(16px, 2vw, 24px) clamp(16px, 2vw, 24px) clamp(12px, 1.5vw, 16px);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(180deg, rgba(12, 10, 20, 0.72) 0%, rgba(8, 6, 14, 0.88) 100%);
}

body.page-home.site-editorial .home-project-card > .project_description {
  margin: 0;
  padding: 0 clamp(16px, 2vw, 24px) clamp(12px, 1.5vw, 16px);
  background: linear-gradient(180deg, rgba(8, 6, 14, 0.88) 0%, rgba(8, 6, 14, 0.95) 100%);
}

body.page-home.site-editorial .home-project-grid--live .project_title_wrap {
  display: block;
  width: 100%;
}

body.page-home.site-editorial .home-project-grid--live .home-project-card__tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 10px;
  margin: 6px 0 0;
  padding: 0;
  font-family: var(--tj-ff-body);
  font-size: clamp(0.6875rem, 0.78vw, 0.75rem);
  font-weight: var(--tj-fw-medium);
  line-height: 1.35;
  letter-spacing: 0.04em;
  text-transform: none;
}

body.page-home.site-editorial .home-project-grid--live .home-project-card__tag {
  color: var(--site-accent);
  white-space: nowrap;
}

body.page-home.site-editorial .home-project-grid--live .home-project-card__summary {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(0.8125rem, 0.9vw, 0.875rem);
  line-height: 1.6;
  letter-spacing: 0.01em;
  text-wrap: pretty;
}

body.page-home.site-editorial .home-project-grid--live .project_title {
  min-width: 0;
  margin: 0;
}

body.page-home.site-editorial .home-project-grid--live .home-project-card .project_title a {
  display: block;
}

body.page-home.site-editorial .home-project-grid--live .project_title .icon_btn {
  display: none;
}

body.page-home.site-editorial .home-project-grid--live .project_year {
  display: none;
}

body.page-home.site-editorial .home-project-grid--live .project_title .text {
  display: block;
  color: #ffffff;
  font-size: clamp(1rem, 1.15vw, 1.125rem);
  font-weight: var(--tj-fw-bold);
  letter-spacing: -0.025em;
  line-height: 1.3;
  text-transform: none;
  text-decoration: none;
  overflow-wrap: break-word;
  transition: color 0.25s ease;
}

body.page-home.site-editorial .home-project-grid--live .home-project-card .project_title a:hover .text {
  color: var(--site-accent);
  text-decoration: none;
}

body.page-home.site-editorial .home-project-grid--live .project_content a.category {
  display: inline-flex;
  align-items: center;
  margin-top: 2px;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 77, 184, 0.22);
  background: rgba(255, 77, 184, 0.08);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.625rem;
  font-weight: var(--tj-fw-medium);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  pointer-events: none;
}

body.page-home.site-editorial .home-project-grid--live .project_description {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: clamp(0.8125rem, 0.9vw, 0.875rem);
  line-height: 1.6;
  letter-spacing: 0.01em;
}

body.page-home.site-editorial .home-project-grid--live .project_description a.home-project-card__external,
body.page-home.site-editorial .home-project-grid--live .project_description a.home-project-card__pill {
  display: inline-flex;
  align-items: center;
  position: relative;
  z-index: 3;
  padding: 5px 11px;
  margin: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 77, 184, 0.28);
  background: rgba(255, 77, 184, 0.1);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.6875rem;
  font-weight: var(--tj-fw-medium);
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-decoration: none;
  white-space: nowrap;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

body.page-home.site-editorial .home-project-grid--live .project_description a.home-project-card__external:hover,
body.page-home.site-editorial .home-project-grid--live .project_description a.home-project-card__external:focus-visible,
body.page-home.site-editorial .home-project-grid--live .project_description a.home-project-card__pill:hover,
body.page-home.site-editorial .home-project-grid--live .project_description a.home-project-card__pill:focus-visible {
  color: #ffffff;
  border-color: rgba(255, 77, 184, 0.5);
  background: rgba(255, 77, 184, 0.2);
  box-shadow: 0 0 0 1px rgba(255, 77, 184, 0.12);
  text-decoration: none;
}

@media (hover: none) {
  body.page-home.site-editorial .home-project-grid--live .project_description a.home-project-card__external,
  body.page-home.site-editorial .home-project-grid--live .project_description a.home-project-card__pill {
    min-height: 2rem;
    padding: 6px 12px;
  }
}

body.page-playground .playground-float-stage .project_description {
  font-size: clamp(0.6875rem, 0.82vw, 0.8125rem);
  line-height: 1.48;
  color: rgba(255, 255, 255, 0.65);
}

body.site-editorial .editorial-project-grid .project_title_wrap {
  width: 100%;
}

body.site-editorial .editorial-project-grid .project_title {
  max-width: 100%;
  margin: 0;
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  line-height: 1.25;
}

body.site-editorial .editorial-project-grid .project_title a {
  display: inline;
}

body.site-editorial .editorial-project-grid .project_title .icon_btn {
  display: none !important;
}

body.site-editorial .editorial-project-grid .project_title .text {
  display: inline;
  transform: none !important;
  color: var(--editorial-project-accent);
  font-family: var(--tj-ff-body);
  font-weight: var(--tj-fw-bold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  text-decoration-thickness: 1px;
}

body.site-editorial .editorial-project-grid .project_title a:hover .text {
  color: #ffffff;
  text-decoration-color: #ffffff;
}

body.site-editorial .editorial-project-grid .project_year {
  display: none;
}

body.site-editorial .editorial-project-grid .project_content a.category {
  display: inline-block;
  border: 0;
  border-radius: 0;
  padding: 0;
  margin: 2px 0 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--tj-ff-body);
  font-size: 10px;
  font-weight: var(--tj-fw-medium);
  line-height: 1.3;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  pointer-events: none;
}

body.site-editorial .editorial-project-grid .project_content a.category:hover {
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
}

body.site-editorial .editorial-project-grid .project_content a.category ~ a.category {
  display: none;
}

/* Legacy feed grid (playground / fallback) */
body.site-editorial .editorial-project-grid--feed {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 3.5vw, 48px) clamp(16px, 2vw, 28px);
}

body.site-editorial .editorial-project-grid--feed .project_image > a {
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  padding: clamp(10px, 2%, 16px);
}

body.site-editorial .editorial-project-grid--feed .project_image > a img {
  width: auto;
  height: 90%;
  max-width: 96%;
  max-height: 90%;
  min-width: 0;
  min-height: 0;
}

body.site-editorial .editorial-project-grid--feed .project_content--feed {
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  margin-top: 12px;
  padding-right: 4px;
}

body.site-editorial .editorial-project-grid--feed .project-feed-avatar {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255, 77, 184, 0.35), rgba(180, 122, 255, 0.28));
  color: rgba(255, 255, 255, 0.96);
  font-family: var(--tj-ff-body);
  font-size: 0.6875rem;
  font-weight: var(--tj-fw-bold);
  letter-spacing: 0.04em;
  line-height: 1;
}

body.site-editorial .editorial-project-grid--feed .project-feed-details {
  flex: 1;
  min-width: 0;
}

body.site-editorial .editorial-project-grid--feed .project_title--feed {
  font-size: clamp(0.875rem, 1.05vw, 1rem);
  line-height: 1.35;
  font-weight: var(--tj-fw-sbold);
}

body.site-editorial .editorial-project-grid--feed .project_title--feed a {
  display: block;
}

body.site-editorial .editorial-project-grid--feed .project_title--feed .text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.96);
  font-weight: var(--tj-fw-sbold);
  letter-spacing: 0;
  text-transform: none;
  text-decoration: none;
}

body.site-editorial .editorial-project-grid--feed .project_title--feed a:hover .text {
  color: var(--site-accent);
}

body.site-editorial .editorial-project-grid--feed .project-feed-meta {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--tj-ff-body);
  font-size: clamp(0.8125rem, 0.95vw, 0.875rem);
  font-weight: var(--tj-fw-regular);
  line-height: 1.35;
}

@media only screen and (max-width: 1199px) {
  body.site-editorial .editorial-project-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

}

@media only screen and (max-width: 991px) {
  body.site-editorial .editorial-project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(16px, 3vw, 24px);
  }

}

@media only screen and (max-width: 767px) {
  body.site-editorial .editorial-project-grid--feed {
    grid-template-columns: 1fr;
    gap: 28px 0;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  body.page-home.site-editorial .home-work-section {
    padding-bottom: 112px;
  }

  body.site-editorial .editorial-project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  body.site-editorial .editorial-project-grid .project_content {
    margin-top: 10px;
    gap: 4px;
  }

  body.site-editorial .editorial-project-grid--feed .project-feed-avatar {
    width: 32px;
    height: 32px;
    font-size: 0.625rem;
  }
}

/* Playground — floating project cards */
@keyframes playground-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(var(--pg-rotate, 0deg));
  }

  50% {
    transform: translate3d(0, -22px, 0) rotate(calc(var(--pg-rotate, 0deg) + 2deg));
  }
}

@keyframes playground-piece-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(var(--pg-rotate, 0deg));
  }

  25% {
    transform: translate3d(6px, -12px, 0) rotate(calc(var(--pg-rotate, 0deg) + 2deg));
  }

  50% {
    transform: translate3d(-4px, -20px, 0) rotate(calc(var(--pg-rotate, 0deg) - 1.5deg));
  }

  75% {
    transform: translate3d(-8px, -8px, 0) rotate(calc(var(--pg-rotate, 0deg) + 1.5deg));
  }
}

@keyframes playground-piece-float-b {
  0%,
  100% {
    transform: translate3d(0, 2px, 0) rotate(var(--pg-rotate, 0deg));
  }

  33% {
    transform: translate3d(14px, -16px, 0) rotate(calc(var(--pg-rotate, 0deg) + 3deg));
  }

  66% {
    transform: translate3d(-12px, -10px, 0) rotate(calc(var(--pg-rotate, 0deg) - 2.5deg));
  }
}

@keyframes playground-piece-float-c {
  0%,
  100% {
    transform: translate3d(-2px, 0, 0) rotate(var(--pg-rotate, 0deg));
  }

  40% {
    transform: translate3d(4px, -24px, 0) rotate(calc(var(--pg-rotate, 0deg) - 2deg));
  }

  70% {
    transform: translate3d(-6px, -14px, 0) rotate(calc(var(--pg-rotate, 0deg) + 2.5deg));
  }
}

@keyframes playground-piece-float-d {
  0%,
  100% {
    transform: translate3d(3px, 0, 0) rotate(var(--pg-rotate, 0deg));
  }

  20% {
    transform: translate3d(-10px, -8px, 0) rotate(calc(var(--pg-rotate, 0deg) + 1deg));
  }

  55% {
    transform: translate3d(8px, -18px, 0) rotate(calc(var(--pg-rotate, 0deg) - 3deg));
  }

  85% {
    transform: translate3d(-5px, -6px, 0) rotate(calc(var(--pg-rotate, 0deg) + 2deg));
  }
}

body.page-home .playground-float-stage {
  display: block;
  position: relative;
  width: 100%;
  margin: 0;
  overflow: visible;
}

body.page-home .playground-float-stage {
  min-height: clamp(940px, 104vh, 1240px);
  padding: clamp(24px, 4vh, 48px) 0 clamp(48px, 8vh, 96px);
}

body.page-playground .playground-float-stage::before,
body.page-home .playground-float-stage::before {
  display: none;
}

body.page-home .playground-float-stage .tj_project_item {
  position: absolute;
  width: clamp(168px, 19vw, 252px) !important;
  max-width: none !important;
  margin: 0;
  padding: 0;
  z-index: 1;
  will-change: transform;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.42);
  animation: playground-drift var(--pg-duration, 9s) ease-in-out infinite;
  animation-delay: var(--pg-delay, 0s);
}

body.page-home .playground-float-stage .tj_project_item:hover {
  z-index: 12;
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.55),
    0 0 40px rgba(255, 77, 184, 0.12);
  animation-play-state: paused;
}

body.page-playground .playground-float-card--1,
body.page-home .playground-float-card--1 {
  --pg-rotate: -5deg;
  --pg-duration: 8.5s;
  --pg-delay: 0s;
  left: 2%;
  top: 6%;
}

body.page-playground .playground-float-card--2,
body.page-home .playground-float-card--2 {
  --pg-rotate: 4deg;
  --pg-duration: 10s;
  --pg-delay: -1.2s;
  left: 24%;
  top: 2%;
  width: clamp(175px, 20vw, 265px) !important;
}

body.page-playground .playground-float-card--3,
body.page-home .playground-float-card--3 {
  --pg-rotate: -2deg;
  --pg-duration: 9.2s;
  --pg-delay: -2.4s;
  left: 50%;
  top: 14%;
}

body.page-playground .playground-float-card--4,
body.page-home .playground-float-card--4 {
  --pg-rotate: 6deg;
  --pg-duration: 11s;
  --pg-delay: -0.8s;
  left: 74%;
  top: 4%;
  width: clamp(160px, 18vw, 240px) !important;
}

body.page-playground .playground-float-card--5,
body.page-home .playground-float-card--5 {
  --pg-rotate: 3deg;
  --pg-duration: 9.8s;
  --pg-delay: -1.6s;
  left: 12%;
  top: 46%;
  width: clamp(185px, 21vw, 270px) !important;
}

body.page-playground .playground-float-card--6 {
  --pg-rotate: -4deg;
  --pg-duration: 10.5s;
  --pg-delay: -3s;
  left: 56%;
  top: 50%;
}

body.page-playground .playground-float-card--7 {
  --pg-rotate: 2deg;
  --pg-duration: 9.4s;
  --pg-delay: -2.1s;
  left: 34%;
  top: 72%;
  width: clamp(172px, 19.5vw, 258px) !important;
}

body.page-playground .playground-float-card--8 {
  --pg-rotate: -3deg;
  --pg-duration: 10.2s;
  --pg-delay: -1.4s;
  left: 78%;
  top: 58%;
  width: clamp(168px, 18.5vw, 248px) !important;
}

body.page-playground .playground-float-card--9 {
  --pg-rotate: 5deg;
  --pg-duration: 9.6s;
  --pg-delay: -2.8s;
  left: 6%;
  top: 22%;
  width: clamp(178px, 20vw, 262px) !important;
}

body.page-playground .playground-float-stage .soundtransit-preview .preview-window--brand {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff !important;
}

body.page-playground .playground-float-stage .soundtransit-preview .preview-window--brand img {
  width: auto !important;
  height: auto !important;
  max-width: 72%;
  max-height: 52%;
  object-fit: contain !important;
}

body.page-playground .playground-float-stage .nordstrom-rack-preview .preview-window iframe.nordstrom-pdf-embed {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Playground posters — readable inside scattered cards */
body.page-playground .playground-layout__cards .cs-conference-card,
body.page-playground .playground-layout__cards .cogsci-citation-card {
  grid-column: auto;
}

body.page-playground .playground-layout__cards .cs-conference-card .project_image,
body.page-playground .playground-layout__cards .cogsci-citation-card .project_image {
  background: transparent;
}

body.page-playground .playground-layout__cards .cs-conference-card .project_image > a,
body.page-playground .playground-layout__cards .cogsci-citation-card .project_image > a {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0;
  aspect-ratio: auto;
  min-height: 0;
  height: auto;
  padding: 0;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
  border: 0;
  border-radius: 16px 16px 0 0;
}

body.page-playground .playground-layout__cards .cs-conference-card .project_image > a img,
body.page-playground .playground-layout__cards .cogsci-citation-card .project_image > a img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: none;
  object-fit: contain;
  object-position: center center;
  transform: none;
}

body.page-playground .playground-layout__cards .cogsci-citation-card .project_image > a {
  max-width: 100%;
}

body.page-playground .playground-float-stage:not(.playground-float-stage--live) .project-interactive-popup,
body.page-playground .playground-float-stage .cs-conference-preview,
body.page-playground .playground-float-stage .cogsci-citation-preview,
body.page-playground .playground-float-stage .project-preview-expand {
  display: none !important;
  pointer-events: none !important;
}

body.page-playground .playground-float-stage .project_image > a,
body.page-home .playground-float-stage .project_image > a {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  padding: 0;
  box-sizing: border-box;
  border-radius: 16px 16px 0 0;
  box-shadow: none;
  background: transparent;
  border: 0;
  overflow: hidden;
}

body.page-playground .playground-float-stage .project_image > a img,
body.page-home .playground-float-stage .project_image > a img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
}

body.page-playground .playground-layout__cards .cs-conference-card .project_image > a img,
body.page-playground .playground-layout__cards .cogsci-citation-card .project_image > a img {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: none;
}

body.page-playground .playground-layout__cards .cs-conference-card .project_image > a,
body.page-playground .playground-layout__cards .cogsci-citation-card .project_image > a {
  aspect-ratio: auto;
  height: auto;
}

body.page-playground .playground-float-stage .project_content,
body.page-home .playground-float-stage .project_content {
  margin-top: 12px;
  opacity: 0.92;
}

body.page-playground .playground-float-stage .project_title .text,
body.page-home .playground-float-stage .project_title .text {
  font-size: clamp(0.6875rem, 0.85vw, 0.8125rem);
}

body.page-playground .playground-float-stage .project_title .text {
  color: #ffffff;
  text-decoration: none;
  text-transform: none;
  letter-spacing: -0.01em;
}

body.page-playground .playground-float-stage .project_year {
  color: rgba(255, 255, 255, 0.4);
}

@media only screen and (max-width: 1199px) {
  body.page-playground .playground-float-card--4,
  body.page-home .playground-float-card--4 {
    left: 68%;
  }

  body.page-playground .playground-float-card--6 {
    left: 50%;
  }

  body.page-playground .playground-float-card--7 {
    left: 28%;
    top: 68%;
  }

  body.page-playground .playground-float-card--8 {
    left: 72%;
    top: 54%;
  }

  body.page-playground .playground-float-card--9 {
    left: 4%;
    top: 20%;
  }
}

@media only screen and (max-width: 991px) {
  body.page-playground .playground-layout {
    grid-template-columns: 1fr;
    gap: clamp(32px, 6vw, 48px);
  }

  body.page-playground .playground-layout__cards {
    min-height: 0;
  }

  body.page-home .playground-float-stage {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(20px, 4vw, 32px);
    min-height: 0;
    padding-bottom: 32px;
  }

  body.page-home .playground-float-stage::before {
    display: none;
  }

  body.page-home .playground-float-stage .tj_project_item {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    --pg-rotate: 0deg;
  }

  body.page-playground .playground-float-card--2,
  body.page-home .playground-float-card--2,
  body.page-playground .playground-float-card--4,
  body.page-home .playground-float-card--4,
  body.page-playground .playground-float-card--5,
  body.page-home .playground-float-card--5 {
    width: 100% !important;
  }

  body.page-playground .playground-float-card--1,
  body.page-home .playground-float-card--1 {
    --pg-rotate: -2deg;
  }

  body.page-playground .playground-float-card--3,
  body.page-home .playground-float-card--3 {
    --pg-rotate: 2deg;
  }

  body.page-playground .playground-float-card--6 {
    --pg-rotate: -2deg;
  }

  body.page-playground .playground-float-card--7 {
    --pg-rotate: 1deg;
    width: 100% !important;
  }

  body.page-playground .playground-float-card--8,
  body.page-playground .playground-float-card--9 {
    width: 100% !important;
  }

  body.page-playground .playground-float-card--8 {
    --pg-rotate: -1deg;
  }

  body.page-playground .playground-float-card--9 {
    --pg-rotate: 2deg;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.page-playground .playground-float-stage .tj_project_item,
  body.page-playground .playground-layout__cards .playground-float-stage .tj_project_item {
    animation: none;
  }
}

/* Dance page — studio × UX editorial + floating reels */
body.page-dance .dance-page-section {
  position: relative;
  z-index: 1;
  padding: clamp(16px, 3vh, 40px) var(--site-content-inset) clamp(80px, 11vh, 128px);
  overflow: visible;
}

body.page-dance .dance-page__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

body.page-dance .dance-page__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
}

body.page-dance .dance-page__glow--left {
  top: 8%;
  left: -8%;
  width: min(48vw, 380px);
  height: min(48vw, 380px);
  background: radial-gradient(circle, rgba(255, 77, 184, 0.16) 0%, transparent 70%);
}

body.page-dance .dance-page__glow--right {
  top: 20%;
  right: -6%;
  width: min(56vw, 460px);
  height: min(56vw, 460px);
  background: radial-gradient(circle, rgba(140, 100, 255, 0.14) 0%, transparent 68%);
}

body.page-dance .dance-page-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0;
}

body.page-dance .dance-page-layout.container-fluid {
  padding-left: 0;
  padding-right: 0;
}

body.page-dance .dance-page-layout__intro {
  position: relative;
  width: 100%;
  max-width: none;
  padding: clamp(8px, 1.5vh, 20px) 0;
}

body.page-dance .dance-page__eyebrow {
  margin: 0 0 clamp(14px, 2vh, 18px);
  font-family: var(--tj-ff-body);
  font-size: clamp(0.875rem, 1.15vw, 1rem);
  font-weight: var(--tj-fw-medium);
  line-height: 1.45;
  letter-spacing: 0.02em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.58);
  text-wrap: pretty;
}

body.page-dance .dance-page__title {
  margin: 0 0 clamp(18px, 2.5vh, 24px);
  font-family: var(--tj-ff-body);
  font-weight: var(--tj-fw-bold);
  letter-spacing: -0.04em;
  line-height: 0.92;
  color: #ffffff;
}

body.page-dance .dance-page__title-line {
  display: block;
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  text-transform: none;
}

body.page-dance .dance-page__title-line--accent {
  padding-left: clamp(0.15em, 3vw, 0.45em);
  color: var(--site-accent);
}

body.page-dance .dance-page__lead {
  margin: 0 0 clamp(18px, 2.5vh, 24px);
  font-family: var(--tj-ff-body);
  font-size: clamp(1.25rem, 1.75vw, 1.5rem);
  font-weight: var(--tj-fw-medium);
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.94);
  text-wrap: pretty;
}

body.page-dance .dance-page__copy {
  margin: clamp(20px, 2.8vh, 28px) 0 0;
  max-width: none;
  font-family: var(--tj-ff-body);
  font-size: clamp(1rem, 1.25vw, 1.125rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.62);
  text-wrap: pretty;
}

body.page-dance .dance-page__cta {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  margin: clamp(20px, 2.8vh, 28px) 0 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.52);
  font-family: var(--tj-ff-body);
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  font-weight: var(--tj-fw-medium);
  letter-spacing: 0.02em;
  text-transform: none;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.22);
  text-underline-offset: 0.2em;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

body.page-dance .dance-page__cta:hover {
  color: rgba(255, 255, 255, 0.82);
  text-decoration-color: rgba(255, 77, 184, 0.55);
}

body.page-dance .dance-page__cta-arrow {
  font-size: 0.875rem;
  line-height: 1;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

body.page-dance .dance-page__cta:hover .dance-page__cta-arrow {
  opacity: 1;
  transform: translateX(2px);
}

body.page-dance .dance-page__prompt,
body.page-dance .dance-page__training {
  margin: 0;
  max-width: 34em;
  font-family: var(--tj-ff-body);
  font-size: clamp(1rem, 1.25vw, 1.125rem);
  font-weight: var(--tj-fw-regular);
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.62);
  text-wrap: pretty;
}

body.page-dance .dance-page__lead + .dance-page__prompt {
  margin-top: clamp(14px, 2vh, 18px);
}

body.page-dance .dance-page__prompt + .dance-page__training {
  margin-top: clamp(14px, 2vh, 18px);
}

body.page-dance .dance-reels-stage {
  position: relative;
  min-height: 0;
  margin-right: 0;
  padding: clamp(12px, 2vh, 24px) 0;
  overflow: visible;
  background: transparent;
}

body.page-dance .dance-reels-track {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 0;
  padding: clamp(12px, 2vh, 20px) 0;
  overflow: visible;
  background: transparent;
}

/* Dance reels — bento grid */
body.page-dance .dance-reels-bento {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(clamp(140px, 38vw, 200px), auto);
  gap: clamp(10px, 1.8vw, 14px);
  align-items: stretch;
  justify-items: stretch;
}

body.page-dance .dance-reels-bento .dance-reel-card--1 {
  grid-column: 1 / -1;
  grid-row: span 2;
}

body.page-dance .dance-reels-bento .dance-reel-card--2 {
  grid-column: 1 / 2;
  grid-row: span 1;
}

body.page-dance .dance-reels-bento .dance-reel-card--3 {
  grid-column: 2 / 3;
  grid-row: span 1;
}

body.page-dance .dance-reels-bento .dance-reel-card--4 {
  grid-column: 1 / -1;
  grid-row: span 1;
}

body.page-dance .dance-reels-bento .dance-reel-card--5 {
  grid-column: 1 / 2;
}

body.page-dance .dance-reels-bento .dance-reel-card--6 {
  grid-column: 2 / 3;
}

body.page-dance .dance-reels-bento .dance-reel-card--7 {
  grid-column: 1 / -1;
}

@media only screen and (min-width: 992px) {
  body.page-dance .dance-page-layout {
    grid-template-columns: minmax(0, 0.44fr) minmax(0, 0.56fr);
    gap: clamp(28px, 4vw, 48px);
    align-items: start;
  }

  body.page-dance .dance-page-layout__intro {
    position: relative;
    align-self: start;
    z-index: 2;
    width: 100%;
    padding-right: clamp(8px, 2vw, 20px);
  }

  body.page-dance .dance-page__title-line {
    font-size: clamp(2.75rem, 4.2vw, 4.75rem);
  }

  body.page-dance .dance-page__lead {
    font-size: clamp(1.3125rem, 1.6vw, 1.5625rem);
  }

  body.page-dance .dance-page__prompt,
  body.page-dance .dance-page__training {
    font-size: clamp(1.0625rem, 1.15vw, 1.1875rem);
  }

  body.page-dance .dance-page__copy {
    font-size: clamp(1.0625rem, 1.15vw, 1.1875rem);
    line-height: 1.55;
  }

  body.page-dance .dance-reels-bento {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: minmax(clamp(88px, 10vw, 118px), auto);
    gap: clamp(10px, 1.2vw, 14px);
  }

  body.page-dance .dance-reels-bento .dance-reel-card--1 {
    grid-column: 1 / 4;
    grid-row: span 3;
  }

  body.page-dance .dance-reels-bento .dance-reel-card--2 {
    grid-column: 4 / 7;
    grid-row: span 2;
  }

  body.page-dance .dance-reels-bento .dance-reel-card--3 {
    grid-column: 4 / 7;
    grid-row: span 1;
  }

  body.page-dance .dance-reels-bento .dance-reel-card--4 {
    grid-column: 1 / 3;
    grid-row: span 2;
  }

  body.page-dance .dance-reels-bento .dance-reel-card--5 {
    grid-column: 3 / 5;
    grid-row: span 1;
  }

  body.page-dance .dance-reels-bento .dance-reel-card--6 {
    grid-column: 5 / 7;
    grid-row: span 1;
  }

  body.page-dance .dance-reels-bento .dance-reel-card--7 {
    grid-column: 3 / 7;
    grid-row: span 1;
  }

  body.page-dance .dance-reels-bento .dance-reel-card--landscape {
    grid-column: 1 / -1;
    grid-row: span 2;
  }
}

body.page-dance .dance-reel-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
  height: 100%;
  min-height: 0;
  text-decoration: none;
  color: inherit;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

body.page-dance .dance-reel-card:hover {
  z-index: 2;
  transform: translateY(-4px);
}

body.page-dance .dance-reel-card__frame {
  display: block;
  position: relative;
  flex: 1 1 auto;
  width: 100%;
  min-height: clamp(140px, 22vw, 220px);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(10, 8, 16, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.38);
  transition:
    border-color 0.25s ease,
    box-shadow 0.28s ease;
}

body.page-dance .dance-reels-bento .dance-reel-card--1 .dance-reel-card__frame {
  min-height: clamp(200px, 32vw, 320px);
}

body.page-dance .dance-reel-card__frame--landscape {
  aspect-ratio: 16 / 9;
  min-height: clamp(120px, 14vw, 180px);
}

body.page-dance .dance-reel-card:hover .dance-reel-card__frame {
  border-color: rgba(255, 77, 184, 0.38);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.48),
    0 0 28px rgba(255, 77, 184, 0.12);
}

body.page-dance .dance-reel-card__video,
body.page-dance .dance-reel-card__poster {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  background: #0a0810;
  border-radius: 0;
  vertical-align: top;
}

body.page-dance .dance-reel-card__poster {
  pointer-events: none;
}

@media only screen and (max-width: 991px) {
  body.page-dance .dance-page-layout {
    grid-template-columns: 1fr;
    gap: clamp(28px, 5vh, 40px);
  }

  body.page-dance .dance-page__title-line {
    font-size: clamp(1.875rem, 7.5vw, 2.5rem);
  }

  body.page-dance .dance-page-layout__intro {
    position: static;
    max-width: 100%;
    padding-right: 0;
  }

  body.page-dance .dance-reels-bento {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(clamp(150px, 42vw, 220px), auto);
    gap: clamp(10px, 2.5vw, 14px);
  }

  body.page-dance .dance-reels-bento .dance-reel-card--1 {
    grid-column: 1 / -1;
    grid-row: span 2;
  }

  body.page-dance .dance-reels-bento .dance-reel-card--2,
  body.page-dance .dance-reels-bento .dance-reel-card--3,
  body.page-dance .dance-reels-bento .dance-reel-card--5,
  body.page-dance .dance-reels-bento .dance-reel-card--6 {
    grid-column: auto;
    grid-row: auto;
  }

  body.page-dance .dance-reels-bento .dance-reel-card--4,
  body.page-dance .dance-reels-bento .dance-reel-card--7,
  body.page-dance .dance-reels-bento .dance-reel-card--landscape {
    grid-column: 1 / -1;
    grid-row: auto;
  }
}

@media only screen and (max-width: 575px) {
  body.page-dance .dance-reels-bento {
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(12px, 4vw, 16px);
  }

  body.page-dance .dance-reels-bento .dance-reel-card--1,
  body.page-dance .dance-reels-bento .dance-reel-card--2,
  body.page-dance .dance-reels-bento .dance-reel-card--3,
  body.page-dance .dance-reels-bento .dance-reel-card--4,
  body.page-dance .dance-reels-bento .dance-reel-card--5,
  body.page-dance .dance-reels-bento .dance-reel-card--6,
  body.page-dance .dance-reels-bento .dance-reel-card--7,
  body.page-dance .dance-reels-bento .dance-reel-card--landscape {
    grid-column: 1 / -1;
    grid-row: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.page-dance .dance-reel-card:hover {
    transform: none;
  }
}

/* Dance page — anonymous creative outlet wall */
body.page-dance .dance-outlet-wall {
  position: relative;
  z-index: 1;
  padding: clamp(48px, 8vh, 88px) var(--site-content-inset) clamp(96px, 12vh, 140px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

body.page-dance .dance-outlet-wall__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0;
}

body.page-dance .dance-outlet-wall__inner.container-fluid {
  padding-left: 0;
  padding-right: 0;
}

body.page-dance .dance-outlet-wall__eyebrow {
  margin: 0 0 clamp(12px, 1.8vh, 16px);
  font-family: var(--tj-ff-body);
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  font-weight: var(--tj-fw-medium);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--site-accent-soft);
}

body.page-dance .dance-outlet-wall__title {
  margin: 0 0 clamp(14px, 2vh, 18px);
  max-width: none;
  width: 100%;
  font-family: var(--tj-ff-body);
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  font-weight: var(--tj-fw-bold);
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: #ffffff;
  text-wrap: pretty;
}

body.page-dance .dance-outlet-wall__title::before {
  content: "“";
  color: var(--site-accent);
  margin-right: 0.12em;
}

body.page-dance .dance-outlet-wall__title::after {
  content: "”";
  color: var(--site-accent);
  margin-left: 0.08em;
}

body.page-dance .dance-outlet-wall__note {
  margin: 0;
  max-width: none;
  width: 100%;
  font-family: var(--tj-ff-body);
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.48);
}

body.page-dance .dance-outlet-wall__header {
  max-width: none;
  width: 100%;
  margin-bottom: clamp(28px, 4vh, 40px);
}

body.page-dance .dance-outlet-wall__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(24px, 3.5vw, 44px);
  align-items: start;
}

body.page-dance .dance-outlet-wall__form {
  position: sticky;
  top: clamp(72px, 10vh, 96px);
  align-self: start;
}

body.page-dance .dance-outlet-wall__label {
  display: block;
  margin: 0 0 10px;
  font-family: var(--tj-ff-body);
  font-size: 0.8125rem;
  font-weight: var(--tj-fw-medium);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.52);
}

body.page-dance .dance-outlet-wall__textarea {
  display: block;
  width: 100%;
  min-height: 7.5rem;
  max-height: 14rem;
  margin: 0;
  padding: clamp(14px, 2vh, 18px) clamp(16px, 2vw, 18px);
  box-sizing: border-box;
  resize: vertical;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font-family: var(--tj-ff-body);
  font-size: clamp(0.9375rem, 1.1vw, 1rem);
  line-height: 1.5;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

body.page-dance .dance-outlet-wall__textarea::placeholder {
  color: rgba(255, 255, 255, 0.32);
}

body.page-dance .dance-outlet-wall__textarea:focus {
  outline: none;
  border-color: rgba(255, 77, 184, 0.5);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 0 0 3px rgba(255, 77, 184, 0.12);
}

body.page-dance .dance-outlet-wall__form-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 16px;
  margin-top: clamp(12px, 1.8vh, 16px);
}

body.page-dance .dance-outlet-wall__counter {
  font-family: var(--tj-ff-body);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.42);
  font-variant-numeric: tabular-nums;
}

body.page-dance .dance-outlet-wall__counter--limit {
  color: var(--site-accent);
}

body.page-dance .dance-outlet-wall__submit {
  margin: 0;
  padding: 12px 22px;
  border: 1px solid rgba(255, 77, 184, 0.55);
  border-radius: 999px;
  background: rgba(255, 77, 184, 0.14);
  color: #ffffff;
  font-family: var(--tj-ff-body);
  font-size: 0.875rem;
  font-weight: var(--tj-fw-medium);
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

body.page-dance .dance-outlet-wall__submit:hover:not(:disabled) {
  background: rgba(255, 77, 184, 0.28);
  border-color: var(--site-accent);
}

body.page-dance .dance-outlet-wall__submit:disabled {
  opacity: 0.55;
  cursor: wait;
}

body.page-dance .dance-outlet-wall__submit:focus-visible {
  outline: 2px solid var(--site-accent);
  outline-offset: 3px;
}

body.page-dance .dance-outlet-wall__status {
  margin: clamp(10px, 1.5vh, 14px) 0 0;
  font-size: 0.875rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.62);
}

body.page-dance .dance-outlet-wall__status--success {
  color: rgba(255, 180, 220, 0.95);
}

body.page-dance .dance-outlet-wall__status--error {
  color: #ff8a9a;
}

body.page-dance .dance-outlet-wall__feed {
  position: relative;
  z-index: 1;
  min-width: 0;
}

body.page-dance .dance-outlet-wall__responses {
  min-height: clamp(360px, 52vh, 520px);
  max-height: min(72vh, 640px);
  overflow: hidden;
  padding: clamp(20px, 2.8vw, 28px);
  border-radius: 20px;
  background:
    radial-gradient(ellipse 90% 70% at 18% 22%, rgba(255, 77, 184, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 80% 60% at 82% 78%, rgba(180, 122, 255, 0.1) 0%, transparent 50%),
    linear-gradient(165deg, #141018 0%, #0c0a10 100%);
}

body.page-dance .dance-outlet-wall__empty {
  position: relative;
  z-index: 1;
  margin: 0 0 clamp(18px, 2.4vh, 24px);
  padding: clamp(14px, 2vh, 18px) clamp(16px, 2vw, 20px);
  max-width: 22em;
  transform: rotate(-1deg);
  border-radius: 2px;
  border: 1px solid rgba(255, 77, 184, 0.22);
  background: rgba(28, 20, 30, 0.88);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
  font-family: var(--tj-ff-heading);
  font-style: italic;
  font-size: clamp(1.0625rem, 1.8vw, 1.25rem);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.55);
  font-style: normal;
}

body.page-dance .dance-outlet-wall__empty[hidden] {
  display: none;
}

body.page-dance .dance-outlet-wall__list {
  position: relative;
  min-height: clamp(300px, 44vh, 460px);
  margin: 0;
  padding: 0;
  list-style: none;
}

body.page-dance .dance-outlet-wall__card {
  position: absolute;
  width: clamp(148px, 30%, 228px);
  margin: 0;
  padding: clamp(16px, 2.2vh, 20px) clamp(14px, 2vw, 18px) clamp(14px, 1.8vh, 18px);
  box-sizing: border-box;
  display: block;
  border-radius: 18px 18px 18px 4px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 16px 32px rgba(0, 0, 0, 0.34),
    0 4px 10px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  transform-origin: center center;
  transform: rotate(var(--note-rotate, 0deg));
  animation: danceOutletBubbleFloat 7s ease-in-out infinite;
  animation-delay: calc(var(--bubble-index, 0) * -0.85s);
  transition:
    transform 0.4s ease,
    width 0.4s ease,
    box-shadow 0.35s ease,
    border-color 0.25s ease,
    z-index 0s;
}

body.page-dance .dance-outlet-wall__remove {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  margin: 0;
  padding: 2px 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.42);
  color: rgba(255, 255, 255, 0.52);
  font-family: var(--tj-ff-body);
  font-size: 0.6875rem;
  font-weight: var(--tj-fw-medium);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.4;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    color 0.2s ease,
    background-color 0.2s ease;
}

body.page-dance .dance-outlet-wall__card:hover .dance-outlet-wall__remove,
body.page-dance .dance-outlet-wall__card:focus-within .dance-outlet-wall__remove,
body.page-dance .dance-outlet-wall__card.is-expanded .dance-outlet-wall__remove {
  opacity: 1;
  pointer-events: auto;
}

body.page-dance .dance-outlet-wall__remove:hover {
  background: rgba(255, 77, 184, 0.22);
  color: rgba(255, 255, 255, 0.92);
}

body.page-dance .dance-outlet-wall__remove:focus-visible {
  outline: 2px solid var(--site-accent);
  outline-offset: 2px;
  opacity: 1;
  pointer-events: auto;
}

body.page-dance .dance-outlet-wall__card--note-4 .dance-outlet-wall__remove {
  background: rgba(26, 18, 24, 0.12);
  color: rgba(26, 18, 24, 0.48);
}

body.page-dance .dance-outlet-wall__card--note-4:hover .dance-outlet-wall__remove,
body.page-dance .dance-outlet-wall__card--note-4:focus-within .dance-outlet-wall__remove,
body.page-dance .dance-outlet-wall__card--note-4.is-expanded .dance-outlet-wall__remove {
  color: rgba(26, 18, 24, 0.72);
}

body.page-dance .dance-outlet-wall__card--note-4 .dance-outlet-wall__remove:hover {
  background: rgba(184, 50, 122, 0.16);
  color: #1a1218;
}

body.page-dance .dance-outlet-wall__card--note-1 {
  --note-rotate: -3.5deg;
  background: linear-gradient(168deg, #221a24 0%, #18121c 100%);
  border-color: rgba(255, 77, 184, 0.2);
}

body.page-dance .dance-outlet-wall__card--note-2 {
  --note-rotate: 2.25deg;
  background: linear-gradient(152deg, #2a1828 0%, #1a1018 100%);
  border-color: rgba(180, 122, 255, 0.18);
}

body.page-dance .dance-outlet-wall__card--note-3 {
  --note-rotate: -1.75deg;
  background: linear-gradient(180deg, #1e1816 0%, #14100e 100%);
  border-color: rgba(255, 255, 255, 0.1);
}

body.page-dance .dance-outlet-wall__card--note-4 {
  --note-rotate: 3.25deg;
  padding-bottom: clamp(22px, 3vh, 28px);
  background: linear-gradient(180deg, #ece4df 0%, #ddd4ce 100%);
  border-color: rgba(255, 255, 255, 0.65);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.5) inset,
    0 18px 36px rgba(0, 0, 0, 0.38);
}

body.page-dance .dance-outlet-wall__card--note-5 {
  --note-rotate: -2.5deg;
  background: linear-gradient(165deg, #2c2418 0%, #1a1610 55%, #221820 100%);
  border-color: rgba(255, 77, 184, 0.16);
}

body.page-dance .dance-outlet-wall__card:nth-child(6n + 1) {
  top: 6%;
  left: 4%;
  --bubble-index: 0;
}

body.page-dance .dance-outlet-wall__card:nth-child(6n + 2) {
  top: 14%;
  left: 38%;
  --bubble-index: 1;
}

body.page-dance .dance-outlet-wall__card:nth-child(6n + 3) {
  top: 8%;
  right: 6%;
  left: auto;
  --bubble-index: 2;
}

body.page-dance .dance-outlet-wall__card:nth-child(6n + 4) {
  top: 46%;
  left: 10%;
  --bubble-index: 3;
}

body.page-dance .dance-outlet-wall__card:nth-child(6n + 5) {
  top: 52%;
  left: 44%;
  --bubble-index: 4;
}

body.page-dance .dance-outlet-wall__card:nth-child(6n + 6) {
  top: 40%;
  right: 8%;
  left: auto;
  --bubble-index: 5;
}

body.page-dance .dance-outlet-wall__card::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 18px;
  width: 14px;
  height: 14px;
  border-radius: 0 0 0 12px;
  background: inherit;
  transform: rotate(45deg);
  box-shadow: inherit;
  opacity: 0.92;
}

body.page-dance .dance-outlet-wall__card.is-expanded {
  z-index: 12;
  width: min(320px, 88%);
  top: 50% !important;
  left: 50% !important;
  right: auto !important;
  margin: 0;
  animation: none;
  transform: translate(-50%, -50%) rotateY(0deg) scale(1);
  border-color: rgba(255, 77, 184, 0.5);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.45),
    0 0 40px rgba(255, 77, 184, 0.18);
}

body.page-dance .dance-outlet-wall__card:not(.is-expanded):active {
  transform: scale(0.98) rotateY(8deg);
}

body.page-dance .dance-outlet-wall__card:focus-visible {
  outline: 2px solid var(--site-accent);
  outline-offset: 4px;
}

body.page-dance .dance-outlet-wall__quote {
  position: static;
  z-index: auto;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  font-family: var(--tj-ff-body);
  font-size: clamp(0.875rem, 1.1vw, 0.9375rem);
  font-weight: 500;
  font-style: normal;
  line-height: 1.42;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.92);
  text-wrap: pretty;
}

body.page-dance .dance-outlet-wall__card--note-4 .dance-outlet-wall__quote {
  color: #1a1218;
}

body.page-dance .dance-outlet-wall__card--note-4 .dance-outlet-wall__quote::before,
body.page-dance .dance-outlet-wall__card--note-4 .dance-outlet-wall__quote::after {
  color: #b8327a;
}

body.page-dance .dance-outlet-wall__quote::before {
  content: "“";
  color: var(--site-accent);
  margin-right: 0.08em;
  font-size: 1.15em;
  line-height: 0;
}

body.page-dance .dance-outlet-wall__quote::after {
  content: "”";
  color: var(--site-accent);
  margin-left: 0.06em;
  font-size: 1.15em;
  line-height: 0;
}

@keyframes danceOutletBubbleFloat {
  0%,
  100% {
    transform: translateY(0) rotate(var(--note-rotate, 0deg));
  }
  50% {
    transform: translateY(-10px) rotate(calc(var(--note-rotate, 0deg) + 2deg));
  }
}

@media (hover: none) {
  body.page-dance .dance-outlet-wall__remove {
    opacity: 0.72;
    pointer-events: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.page-dance .dance-outlet-wall__empty {
    transform: none;
  }

  body.page-dance .dance-outlet-wall__card {
    animation: none;
    position: relative;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    width: 100%;
    margin-bottom: 14px;
  }

  body.page-dance .dance-outlet-wall__list {
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: min(56vh, 520px);
    overflow: auto;
  }

  body.page-dance .dance-outlet-wall__card.is-expanded {
    transform: none;
    width: 100%;
  }

  body.page-dance .dance-outlet-wall__card:not(.is-expanded):active {
    transform: none;
  }
}

@media only screen and (max-width: 991px) {
  body.page-dance .dance-outlet-wall__layout {
    grid-template-columns: 1fr;
  }

  body.page-dance .dance-outlet-wall__responses {
    max-height: min(56vh, 560px);
  }

  body.page-dance .dance-outlet-wall__form {
    position: static;
  }
}

/* About page — portrait + editorial story */
body.page-about.site-editorial .about-page-section {
  position: relative;
  z-index: 1;
  padding: clamp(8px, 1.5vh, 16px) var(--site-content-inset) clamp(48px, 8vh, 80px);
  overflow: visible;
}

body.page-about.site-editorial .about-page-layout {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

body.page-about.site-editorial .about-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: start;
}

@media only screen and (min-width: 992px) {
  body.page-about.site-editorial .about-page-section {
    display: flex;
    align-items: center;
    min-height: calc(100dvh - 84px);
    padding-bottom: clamp(20px, 3vh, 36px);
  }

  body.page-about.site-editorial .about-page-layout {
    width: 100%;
  }

  body.page-about.site-editorial .about-page-grid:not(.about-page-grid--story-only) {
    grid-template-columns: minmax(0, 0.38fr) minmax(0, 0.62fr);
    gap: clamp(32px, 4vw, 52px);
    align-items: center;
  }

  body.page-about.site-editorial .about-page-grid--story-only {
    grid-template-columns: minmax(0, 1fr);
    max-width: 40rem;
  }

  body.page-about.site-editorial .about-page-aside {
    position: relative;
    top: auto;
  }
}

body.page-about.site-editorial .about-portrait {
  margin: 0;
}

body.page-about.site-editorial .about-portrait__frame {
  position: relative;
  aspect-ratio: 9 / 16;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  border-radius: clamp(16px, 2vw, 24px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(145deg, rgba(255, 77, 184, 0.12) 0%, transparent 42%),
    linear-gradient(220deg, rgba(120, 80, 255, 0.18) 0%, transparent 50%),
    rgba(255, 255, 255, 0.04);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

@media only screen and (min-width: 992px) {
  body.page-about.site-editorial .about-portrait__frame {
    margin: 0;
    max-width: none;
    width: 100%;
    max-height: min(72vh, 560px);
    height: auto;
    aspect-ratio: 9 / 16;
    transform: rotate(-2deg);
    transform-origin: center center;
  }
}

body.page-about.site-editorial .about-portrait__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

body.page-about.site-editorial .about-portrait__frame:has(.about-portrait__img) .about-portrait__placeholder {
  display: none;
}

body.page-about.site-editorial .about-portrait__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 24px;
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
}

body.page-about.site-editorial .about-portrait__placeholder-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px dashed rgba(255, 255, 255, 0.28);
  font-size: 1.75rem;
  font-weight: var(--tj-fw-regular);
  line-height: 1;
  color: rgba(255, 255, 255, 0.45);
}

body.page-about.site-editorial .about-portrait__placeholder-label {
  font-family: var(--tj-ff-body);
  font-size: 0.9375rem;
  font-weight: var(--tj-fw-medium);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

body.page-about.site-editorial .about-portrait__placeholder-hint {
  font-family: var(--tj-ff-body);
  font-size: 0.6875rem;
  letter-spacing: 0.04em;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.35);
  max-width: 16em;
}

body.page-about.site-editorial .about-page-main {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2vh, 18px);
  padding-top: 0;
}

body.page-about.site-editorial .about-page__eyebrow {
  margin: 0 0 10px;
  font-family: var(--tj-ff-body);
  font-size: clamp(10px, 2.5vw, 11px);
  font-weight: var(--tj-fw-medium);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

body.page-about.site-editorial .about-page-header {
  margin: 0;
}

body.page-about.site-editorial .about-page__title {
  margin: 0;
  font-family: var(--tj-ff-body);
  font-weight: var(--tj-fw-bold);
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: #ffffff;
}

body.page-about.site-editorial .about-page__title-word {
  display: block;
  font-size: clamp(2.75rem, 10vw, 6.5rem);
  text-transform: lowercase;
}

body.page-about.site-editorial .about-page__title-word--accent {
  padding-left: clamp(0.35em, 8vw, 1.1em);
  color: var(--site-accent);
}

body.page-about.site-editorial .about-page__title-word--accent:only-child {
  padding-left: 0;
}

body.page-about.site-editorial .about-page-story {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2.2vh, 20px);
  max-width: 34em;
  padding-left: 0;
  border-left: 0;
}

body.page-about.site-editorial .about-page__lead {
  margin: 0;
  font-family: var(--tj-ff-body);
  font-size: clamp(0.9375rem, 1.05vw, 1.0625rem);
  font-weight: var(--tj-fw-medium);
  line-height: 1.6;
  letter-spacing: -0.01em;
  color: #ffffff;
  text-wrap: pretty;
}

body.page-about.site-editorial .about-page__text {
  margin: 0;
  font-family: var(--tj-ff-body);
  font-size: clamp(0.875rem, 0.98vw, 0.9375rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
  text-wrap: pretty;
}

body.page-about.site-editorial .about-page__lead a,
body.page-about.site-editorial .about-page__text a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: var(--tj-color-theme-primary);
  text-underline-offset: 0.2em;
}

body.page-about.site-editorial .about-page__lead a:hover {
  color: #ffffff;
}

body.page-about.site-editorial .about-page-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  margin-top: clamp(16px, 2.5vh, 24px);
}

body.page-about.site-editorial .about-page__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: #ffffff;
  color: var(--site-bg-deep);
  font-family: var(--tj-ff-body);
  font-size: 0.8125rem;
  font-weight: var(--tj-fw-sbold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

body.page-about.site-editorial .about-page__cta:hover {
  background: var(--site-accent);
  border-color: var(--site-accent);
  color: #ffffff;
  transform: translateY(-1px);
}

body.page-about.site-editorial .about-page__cta--ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  border-color: rgba(255, 255, 255, 0.22);
}

body.page-about.site-editorial .about-page__cta--ghost:hover {
  background: rgba(255, 77, 184, 0.1);
  border-color: rgba(255, 77, 184, 0.45);
  color: #ffffff;
}

body.page-about.site-editorial .about-page__cta-arrow {
  font-size: 1.125rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

body.page-about.site-editorial .about-page__cta:hover .about-page__cta-arrow {
  transform: translateX(3px);
}

@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  body.page-about.site-editorial .about-page-section {
    padding-bottom: 72px;
  }

}

@media only screen and (min-width: 992px) {
  body.page-about.site-editorial .about-page__eyebrow {
    margin-bottom: 8px;
  }

  body.page-about.site-editorial .about-page__title-word {
    font-size: clamp(2.35rem, 4.5vw, 4.5rem);
  }

  body.page-about.site-editorial .about-page__title-word--accent:not(:only-child) {
    padding-left: clamp(0.28em, 4.5vw, 0.75em);
  }

  body.page-about.site-editorial .about-page-main {
    gap: clamp(10px, 1.6vh, 14px);
  }

  body.page-about.site-editorial .about-page-story {
    gap: clamp(12px, 1.8vh, 16px);
  }

  body.page-about.site-editorial .about-page__lead {
    line-height: 1.58;
  }

  body.page-about.site-editorial .about-page__text {
    line-height: 1.62;
  }

  body.page-about.site-editorial .about-page-actions {
    padding-top: 2px;
  }
}

@media only screen and (max-width: 991px) {
  body.page-about.site-editorial .about-page-story {
    gap: clamp(16px, 3vh, 22px);
  }

  body.page-about.site-editorial .about-page__lead {
    line-height: 1.65;
  }

  body.page-about.site-editorial .about-page__text {
    line-height: 1.7;
  }
}

/* Community page — editorial intro + photo grid */
body.page-community .community-page-section {
  position: relative;
  z-index: 1;
  padding: clamp(16px, 3vh, 40px) var(--site-content-inset) clamp(80px, 11vh, 128px);
  overflow: visible;
}

body.page-community .community-page__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

body.page-community .community-page__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
}

body.page-community .community-page__glow--left {
  top: 6%;
  left: -8%;
  width: min(44vw, 360px);
  height: min(44vw, 360px);
  background: radial-gradient(circle, rgba(140, 100, 255, 0.14) 0%, transparent 70%);
}

body.page-community .community-page__glow--right {
  top: 28%;
  right: -6%;
  width: min(52vw, 420px);
  height: min(52vw, 420px);
  background: radial-gradient(circle, rgba(255, 77, 184, 0.12) 0%, transparent 68%);
}

body.page-community .community-page-layout {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 5vh, 56px);
  max-width: 1120px;
  margin: 0 auto;
  padding: 0;
}

body.page-community .community-page-layout.container-fluid {
  padding-left: 0;
  padding-right: 0;
}

body.page-community .community-page-layout__intro {
  max-width: 42em;
  padding: clamp(8px, 1.5vh, 20px) 0;
}

body.page-community .community-page__eyebrow {
  margin: 0 0 clamp(14px, 2vh, 18px);
  font-family: var(--tj-ff-body);
  font-size: clamp(0.875rem, 1.15vw, 1rem);
  font-weight: var(--tj-fw-medium);
  line-height: 1.45;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.58);
  text-wrap: pretty;
}

body.page-community .community-page__title {
  margin: 0 0 clamp(18px, 2.5vh, 24px);
  font-family: var(--tj-ff-body);
  font-weight: var(--tj-fw-bold);
  letter-spacing: -0.04em;
  line-height: 0.92;
  color: #ffffff;
}

body.page-community .community-page__title-line {
  display: block;
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  text-wrap: pretty;
}

body.page-community .community-page__title-line--accent {
  padding-left: clamp(0.15em, 3vw, 0.45em);
  color: var(--site-accent);
}

body.page-community .community-page__lead {
  margin: 0;
  font-family: var(--tj-ff-body);
  font-size: clamp(1.125rem, 1.6vw, 1.375rem);
  font-weight: var(--tj-fw-medium);
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.9);
  text-wrap: pretty;
}

body.page-community .community-page__links {
  margin: clamp(18px, 2.5vh, 24px) 0 0;
  font-family: var(--tj-ff-body);
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  font-weight: var(--tj-fw-medium);
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.52);
}

body.page-community .community-page__links a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.22);
  text-underline-offset: 0.2em;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

body.page-community .community-page__links a:hover {
  color: rgba(255, 255, 255, 0.82);
  text-decoration-color: rgba(255, 77, 184, 0.55);
}

body.page-community .community-page__links-sep {
  margin: 0 0.35em;
  opacity: 0.45;
}

body.page-community .community-page-layout__galleries {
  display: flex;
  flex-direction: column;
  gap: clamp(36px, 6vh, 56px);
  width: 100%;
}

body.page-community .community-subsection__heading {
  margin: 0 0 clamp(10px, 1.5vh, 14px);
  font-family: var(--tj-ff-body);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: var(--tj-fw-sbold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}

body.page-community .community-subsection__lead {
  margin: 0 0 clamp(16px, 2.5vh, 22px);
  max-width: 36em;
  font-family: var(--tj-ff-body);
  font-size: clamp(0.875rem, 1.1vw, 1rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.52);
}

body.page-community .community-subsection__lead a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.22);
  text-underline-offset: 0.18em;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

body.page-community .community-subsection__lead a:hover {
  color: #ffffff;
  text-decoration-color: rgba(255, 77, 184, 0.55);
}

body.page-community .community-subsection__case-link {
  display: inline-block;
  margin-top: 0.65em;
  color: var(--site-accent);
  text-decoration-color: rgba(255, 77, 184, 0.4);
}

body.page-community .community-subsection__case-link:hover {
  color: #ffffff;
}

/* Community — horizontal auto-scroll carousels (playground pattern) */
body.page-community .community-gallery-carousel {
  position: relative;
  width: 100%;
  margin-right: calc(-1 * var(--site-content-inset) * 0.35);
}

body.page-community .community-gallery-carousel__hint {
  position: absolute;
  right: clamp(12px, 3vw, 24px);
  bottom: clamp(6px, 1vh, 12px);
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  pointer-events: none;
  z-index: 2;
}

body.page-community .community-gallery-carousel--static .community-gallery-carousel__hint,
body.page-community .community-gallery-carousel--marquee .community-gallery-carousel__hint {
  opacity: 0;
}

@keyframes community-gallery-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

body.page-community .community-gallery-carousel__viewport {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  margin: 0;
  padding: clamp(4px, 1vh, 8px) 0 clamp(28px, 4vh, 40px);
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: none;
  scroll-padding-inline: 0;
  scroll-behavior: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 6%,
    #000 94%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 6%,
    #000 94%,
    transparent 100%
  );
}

body.page-community .community-gallery-carousel__viewport::-webkit-scrollbar {
  display: none;
  height: 0;
}

body.page-community .community-gallery-carousel__track {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: clamp(14px, 2vw, 22px);
  width: max-content;
  min-width: 100%;
  padding: clamp(2px, 0.5vh, 6px) clamp(8px, 2vw, 16px) clamp(6px, 1vh, 10px);
}

body.page-community .community-gallery-carousel__track .community-gallery__item {
  flex: 0 0 auto;
  scroll-snap-align: none;
  scroll-snap-stop: normal;
}

body.page-community .community-gallery-carousel--marquee .community-gallery-carousel__viewport {
  overflow-x: hidden;
  overflow-y: visible;
}

body.page-community .community-gallery-carousel--marquee .community-gallery-carousel__track {
  animation: community-gallery-marquee var(--community-marquee-duration, 60s) linear infinite;
  will-change: transform;
}

body.page-community .community-gallery-carousel--marquee:hover .community-gallery-carousel__track,
body.page-community .community-gallery-carousel--marquee:focus-within .community-gallery-carousel__track {
  animation-play-state: paused;
}

body.page-community .community-gallery-carousel--manual .community-gallery-carousel__viewport {
  overflow-x: auto;
  scroll-snap-type: none;
}

body.page-community .community-gallery-carousel--manual .community-gallery-carousel__track {
  animation: none;
  transform: none;
  will-change: auto;
}

body.page-community .community-gallery-carousel--schedgo {
  --schedgo-tile-size: clamp(200px, 28vw, 280px);
}

body.page-community .community-gallery-carousel--sachacks {
  --sachacks-tile-size: clamp(200px, 28vw, 280px);
}

body.page-community .community-gallery--wics .community-gallery__item--square,
body.page-community .community-gallery--cssa .community-gallery__item--square,
body.page-community .community-gallery--cssa .community-gallery__item--poster {
  width: clamp(200px, 28vw, 280px);
}

body.page-community .community-gallery--cssa .community-gallery__item--poster:not(.community-gallery__item--citation) .community-gallery__media {
  aspect-ratio: 1 / 1;
}

body.page-community .community-gallery--schedgo .community-gallery__item--square {
  width: var(--schedgo-tile-size);
}

body.page-community .community-gallery--sachacks .community-gallery__item--square {
  width: var(--sachacks-tile-size);
}

body.page-community .community-gallery--feature .community-gallery__item--poster {
  width: min(88vw, 560px);
  max-width: 560px;
}

body.page-community .community-gallery {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.page-community .community-gallery__item {
  margin: 0;
  min-width: 0;
}

body.page-community .community-gallery__figure {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.5vh, 14px);
  margin: 0;
  height: 100%;
}

body.page-community .community-gallery__media {
  display: block;
  overflow: hidden;
  border-radius: clamp(14px, 2vw, 20px);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  transition: border-color 0.2s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

body.page-community .community-gallery__media:hover {
  border-color: rgba(255, 77, 184, 0.35);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.36);
  transform: translateY(-2px);
}

body.page-community .community-gallery__media img {
  display: block;
  width: 100%;
  height: auto;
}

body.page-community .community-gallery__item--square .community-gallery__media {
  aspect-ratio: 1 / 1;
}

body.page-community .community-gallery__item--square .community-gallery__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

body.page-community .community-gallery__item--poster .community-gallery__media {
  padding: clamp(10px, 1.5vw, 16px);
}

body.page-community .community-gallery__item--poster .community-gallery__media img {
  object-fit: contain;
  object-position: center center;
}

/* CSSA citation — landscape photo; frame height follows image (not square tile stretch) */
body.page-community .community-gallery--cssa .community-gallery__item--citation {
  align-self: flex-start;
}

body.page-community .community-gallery--cssa .community-gallery__item--citation .community-gallery__media {
  aspect-ratio: auto;
  padding: 0;
  height: auto;
}

body.page-community .community-gallery__item--poster.community-gallery__item--citation .community-gallery__media {
  padding: 0;
}

body.page-community .community-gallery__item--poster.community-gallery__item--citation .community-gallery__media img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center center;
}

body.page-community .community-gallery__caption {
  margin: 0;
  font-family: var(--tj-ff-body);
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  font-weight: var(--tj-fw-regular);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.58);
  text-wrap: pretty;
}

body.page-community .community-gallery__caption a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.22);
  text-underline-offset: 0.18em;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

body.page-community .community-gallery__caption a:hover {
  color: #ffffff;
  text-decoration-color: rgba(255, 77, 184, 0.55);
}

@media (prefers-reduced-motion: reduce) {
  body.page-community .community-gallery-carousel--marquee .community-gallery-carousel__track {
    animation: none;
    transform: none;
    will-change: auto;
  }

  body.page-community .community-gallery-carousel--marquee .community-gallery-carousel__viewport {
    overflow-x: auto;
  }
}

@media (max-width: 575px) {
  body.page-community .community-gallery-carousel--schedgo {
    --schedgo-tile-size: clamp(180px, 72vw, 260px);
  }

  body.page-community .community-gallery-carousel--sachacks {
    --sachacks-tile-size: clamp(180px, 72vw, 260px);
  }

  body.page-community .community-gallery--wics .community-gallery__item--square,
  body.page-community .community-gallery--cssa .community-gallery__item--square,
  body.page-community .community-gallery--cssa .community-gallery__item--poster {
    width: clamp(180px, 72vw, 260px);
  }

  body.page-community .community-gallery--feature .community-gallery__item--poster {
    width: min(92vw, 520px);
  }
}

/* Minimal redirect / stub pages */
body.site-editorial.site-redirect {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  margin: 0;
  padding: var(--site-content-inset);
  font-family: var(--tj-ff-body);
}

body.site-editorial.site-redirect p {
  margin: 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.88);
}

body.site-editorial.site-redirect a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  text-decoration-color: var(--tj-color-theme-primary);
}

body.site-editorial.site-redirect a:hover {
  opacity: 0.75;
}

/* Work detail pages — shared chrome */
body.page-sachacks .work-detail,
body.page-schedgo .work-detail,
body.page-ibm-saas-console .work-detail,
body.page-breaking-barriers .work-detail,
body.page-bloom-and-vine .work-detail,
body.page-makeability-lab .work-detail,
body.page-nordstrom-rack .work-detail,
body.page-inclusive-lab .work-detail {
  position: relative;
  z-index: 1;
  padding: 0 var(--site-content-inset) clamp(72px, 10vh, 120px);
}

body.page-sachacks .work-detail__hero,
body.page-schedgo .work-detail__hero,
body.page-ibm-saas-console .work-detail__hero,
body.page-breaking-barriers .work-detail__hero,
body.page-bloom-and-vine .work-detail__hero,
body.page-makeability-lab .work-detail__hero,
body.page-nordstrom-rack .work-detail__hero,
body.page-inclusive-lab .work-detail__hero {
  padding: clamp(8px, 1.5vh, 20px) 0 clamp(40px, 6vh, 64px);
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
}

body.page-sachacks .work-detail__hero::before,
body.page-sachacks .work-detail__hero::after,
body.page-schedgo .work-detail__hero::before,
body.page-schedgo .work-detail__hero::after,
body.page-ibm-saas-console .work-detail__hero::before,
body.page-ibm-saas-console .work-detail__hero::after,
body.page-breaking-barriers .work-detail__hero::before,
body.page-breaking-barriers .work-detail__hero::after,
body.page-bloom-and-vine .work-detail__hero::before,
body.page-bloom-and-vine .work-detail__hero::after,
body.page-makeability-lab .work-detail__hero::before,
body.page-makeability-lab .work-detail__hero::after,
body.page-nordstrom-rack .work-detail__hero::before,
body.page-nordstrom-rack .work-detail__hero::after,
body.page-inclusive-lab .work-detail__hero::before,
body.page-inclusive-lab .work-detail__hero::after {
  content: none;
  display: none;
}

body.page-sachacks .work-detail__hero-inner,
body.page-schedgo .work-detail__hero-inner,
body.page-ibm-saas-console .work-detail__hero-inner,
body.page-breaking-barriers .work-detail__hero-inner,
body.page-bloom-and-vine .work-detail__hero-inner,
body.page-makeability-lab .work-detail__hero-inner,
body.page-nordstrom-rack .work-detail__hero-inner,
body.page-inclusive-lab .work-detail__hero-inner,
body.page-sachacks .work-detail__inner,
body.page-schedgo .work-detail__inner,
body.page-ibm-saas-console .work-detail__inner,
body.page-breaking-barriers .work-detail__inner,
body.page-bloom-and-vine .work-detail__inner,
body.page-makeability-lab .work-detail__inner,
body.page-nordstrom-rack .work-detail__inner,
body.page-inclusive-lab .work-detail__inner {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
}

body.page-sachacks .work-detail__back,
body.page-schedgo .work-detail__back,
body.page-ibm-saas-console .work-detail__back,
body.page-breaking-barriers .work-detail__back,
body.page-bloom-and-vine .work-detail__back,
body.page-makeability-lab .work-detail__back,
body.page-nordstrom-rack .work-detail__back,
body.page-inclusive-lab .work-detail__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 clamp(20px, 3vh, 28px);
  font-family: var(--tj-ff-body);
  font-size: 0.75rem;
  font-weight: var(--tj-fw-medium);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s ease;
}

body.page-sachacks .work-detail__back:hover,
body.page-schedgo .work-detail__back:hover,
body.page-ibm-saas-console .work-detail__back:hover,
body.page-breaking-barriers .work-detail__back:hover,
body.page-bloom-and-vine .work-detail__back:hover,
body.page-makeability-lab .work-detail__back:hover,
body.page-nordstrom-rack .work-detail__back:hover,
body.page-inclusive-lab .work-detail__back:hover,
body.page-inclusive-lab .work-detail__back:hover {
  color: var(--site-accent);
}

body.page-sachacks .work-detail__eyebrow,
body.page-schedgo .work-detail__eyebrow,
body.page-ibm-saas-console .work-detail__eyebrow,
body.page-breaking-barriers .work-detail__eyebrow,
body.page-bloom-and-vine .work-detail__eyebrow,
body.page-makeability-lab .work-detail__eyebrow,
body.page-nordstrom-rack .work-detail__eyebrow,
body.page-inclusive-lab .work-detail__eyebrow {
  margin: 0 0 10px;
  font-family: var(--tj-ff-body);
  font-size: clamp(10px, 2.5vw, 11px);
  font-weight: var(--tj-fw-medium);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

body.page-sachacks .work-detail__title,
body.page-schedgo .work-detail__title,
body.page-ibm-saas-console .work-detail__title,
body.page-breaking-barriers .work-detail__title,
body.page-bloom-and-vine .work-detail__title,
body.page-makeability-lab .work-detail__title,
body.page-nordstrom-rack .work-detail__title,
body.page-inclusive-lab .work-detail__title {
  margin: 0;
  font-family: var(--tj-ff-body);
  font-weight: var(--tj-fw-bold);
  letter-spacing: -0.04em;
  line-height: 0.92;
  color: #ffffff;
}

body.page-sachacks .work-detail__title-line,
body.page-schedgo .work-detail__title-line,
body.page-ibm-saas-console .work-detail__title-line,
body.page-breaking-barriers .work-detail__title-line,
body.page-bloom-and-vine .work-detail__title-line,
body.page-makeability-lab .work-detail__title-line,
body.page-nordstrom-rack .work-detail__title-line,
body.page-inclusive-lab .work-detail__title-line {
  display: block;
  font-size: clamp(2.5rem, 9vw, 5.5rem);
  text-transform: lowercase;
}

body.page-sachacks .work-detail__title-line--accent,
body.page-schedgo .work-detail__title-line--accent,
body.page-ibm-saas-console .work-detail__title-line--accent,
body.page-breaking-barriers .work-detail__title-line--accent,
body.page-bloom-and-vine .work-detail__title-line--accent,
body.page-makeability-lab .work-detail__title-line--accent,
body.page-nordstrom-rack .work-detail__title-line--accent,
body.page-inclusive-lab .work-detail__title-line--accent {
  padding-left: clamp(0.35em, 8vw, 1em);
  color: var(--site-accent);
}

body.page-ibm-saas-console .work-detail__title {
  line-height: 1;
}

body.page-ibm-saas-console .work-detail__title-logo {
  display: block;
  width: auto;
  height: clamp(2.25rem, 8vw, 5rem);
  max-width: min(92vw, 28rem);
  object-fit: contain;
  object-position: left center;
}

body.page-nordstrom-rack .work-detail__title {
  line-height: 1;
}

body.page-nordstrom-rack .work-detail__title-logo {
  display: block;
  width: auto;
  height: clamp(2.25rem, 8vw, 5rem);
  max-width: min(92vw, 28rem);
  object-fit: contain;
  object-position: left center;
}

body.page-sachacks .work-detail__subtitle,
body.page-schedgo .work-detail__subtitle,
body.page-ibm-saas-console .work-detail__subtitle,
body.page-breaking-barriers .work-detail__subtitle,
body.page-bloom-and-vine .work-detail__subtitle,
body.page-makeability-lab .work-detail__subtitle,
body.page-nordstrom-rack .work-detail__subtitle,
body.page-inclusive-lab .work-detail__subtitle {
  margin: clamp(16px, 2.5vh, 24px) 0 0;
  max-width: 36em;
  font-family: var(--tj-ff-body);
  font-size: clamp(1.0625rem, 1.2vw, 1.1875rem);
  font-weight: var(--tj-fw-medium);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
  text-wrap: pretty;
}

body.page-sachacks .work-detail__meta,
body.page-schedgo .work-detail__meta,
body.page-ibm-saas-console .work-detail__meta,
body.page-breaking-barriers .work-detail__meta,
body.page-bloom-and-vine .work-detail__meta,
body.page-makeability-lab .work-detail__meta,
body.page-nordstrom-rack .work-detail__meta,
body.page-inclusive-lab .work-detail__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 20px) clamp(20px, 4vw, 32px);
  margin: clamp(24px, 4vh, 36px) 0 0;
  padding: 0;
}

body.page-sachacks .work-detail__meta-item,
body.page-schedgo .work-detail__meta-item,
body.page-ibm-saas-console .work-detail__meta-item,
body.page-breaking-barriers .work-detail__meta-item,
body.page-bloom-and-vine .work-detail__meta-item,
body.page-makeability-lab .work-detail__meta-item,
body.page-nordstrom-rack .work-detail__meta-item,
body.page-inclusive-lab .work-detail__meta-item {
  margin: 0;
}

body.page-sachacks .work-detail__meta dt,
body.page-schedgo .work-detail__meta dt,
body.page-ibm-saas-console .work-detail__meta dt,
body.page-breaking-barriers .work-detail__meta dt,
body.page-bloom-and-vine .work-detail__meta dt,
body.page-makeability-lab .work-detail__meta dt,
body.page-nordstrom-rack .work-detail__meta dt,
body.page-inclusive-lab .work-detail__meta dt {
  margin: 0 0 4px;
  font-family: var(--tj-ff-body);
  font-size: clamp(0.75rem, 0.85vw, 0.8125rem);
  font-weight: var(--tj-fw-medium);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

body.page-sachacks .work-detail__meta dd,
body.page-schedgo .work-detail__meta dd,
body.page-ibm-saas-console .work-detail__meta dd,
body.page-breaking-barriers .work-detail__meta dd,
body.page-bloom-and-vine .work-detail__meta dd,
body.page-makeability-lab .work-detail__meta dd,
body.page-nordstrom-rack .work-detail__meta dd,
body.page-inclusive-lab .work-detail__meta dd {
  margin: 0;
  font-family: var(--tj-ff-body);
  font-size: clamp(0.9375rem, 1.05vw, 1rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}

body.page-sachacks .work-detail__actions,
body.page-schedgo .work-detail__actions,
body.page-ibm-saas-console .work-detail__actions,
body.page-breaking-barriers .work-detail__actions,
body.page-bloom-and-vine .work-detail__actions,
body.page-makeability-lab .work-detail__actions,
body.page-nordstrom-rack .work-detail__actions,
body.page-inclusive-lab .work-detail__actions,
body.page-sachacks .work-detail__footer-actions,
body.page-schedgo .work-detail__footer-actions,
body.page-ibm-saas-console .work-detail__footer-actions,
body.page-breaking-barriers .work-detail__footer-actions,
body.page-bloom-and-vine .work-detail__footer-actions,
body.page-makeability-lab .work-detail__footer-actions,
body.page-nordstrom-rack .work-detail__footer-actions,
body.page-inclusive-lab .work-detail__footer-actions,
body.page-inclusive-lab .work-detail__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-top: clamp(20px, 3vh, 28px);
}

body.page-sachacks .work-detail__cta,
body.page-schedgo .work-detail__cta,
body.page-ibm-saas-console .work-detail__cta,
body.page-breaking-barriers .work-detail__cta,
body.page-bloom-and-vine .work-detail__cta,
body.page-makeability-lab .work-detail__cta,
body.page-nordstrom-rack .work-detail__cta,
body.page-inclusive-lab .work-detail__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: #ffffff;
  color: var(--site-bg-deep);
  font-family: var(--tj-ff-body);
  font-size: 0.8125rem;
  font-weight: var(--tj-fw-sbold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

body.page-sachacks .work-detail__cta:hover,
body.page-schedgo .work-detail__cta:hover,
body.page-ibm-saas-console .work-detail__cta:hover,
body.page-breaking-barriers .work-detail__cta:hover,
body.page-bloom-and-vine .work-detail__cta:hover,
body.page-makeability-lab .work-detail__cta:hover,
body.page-nordstrom-rack .work-detail__cta:hover,
body.page-inclusive-lab .work-detail__cta:hover,
body.page-inclusive-lab .work-detail__cta:hover {
  background: var(--site-accent);
  border-color: var(--site-accent);
  color: #ffffff;
  transform: translateY(-1px);
}

body.page-sachacks .work-detail__cta--ghost,
body.page-schedgo .work-detail__cta--ghost,
body.page-ibm-saas-console .work-detail__cta--ghost,
body.page-breaking-barriers .work-detail__cta--ghost,
body.page-bloom-and-vine .work-detail__cta--ghost,
body.page-makeability-lab .work-detail__cta--ghost,
body.page-nordstrom-rack .work-detail__cta--ghost,
body.page-inclusive-lab .work-detail__cta--ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  border-color: rgba(255, 255, 255, 0.22);
}

body.page-sachacks .work-detail__cta--ghost:hover,
body.page-schedgo .work-detail__cta--ghost:hover,
body.page-ibm-saas-console .work-detail__cta--ghost:hover,
body.page-breaking-barriers .work-detail__cta--ghost:hover,
body.page-bloom-and-vine .work-detail__cta--ghost:hover,
body.page-makeability-lab .work-detail__cta--ghost:hover,
body.page-nordstrom-rack .work-detail__cta--ghost:hover,
body.page-inclusive-lab .work-detail__cta--ghost:hover,
body.page-inclusive-lab .work-detail__cta--ghost:hover {
  background: rgba(255, 77, 184, 0.1);
  border-color: rgba(255, 77, 184, 0.45);
  color: #ffffff;
}

body.page-sachacks .work-detail__section,
body.page-schedgo .work-detail__section,
body.page-ibm-saas-console .work-detail__section,
body.page-breaking-barriers .work-detail__section,
body.page-bloom-and-vine .work-detail__section,
body.page-makeability-lab .work-detail__section,
body.page-nordstrom-rack .work-detail__section,
body.page-inclusive-lab .work-detail__section {
  padding: clamp(36px, 6vh, 56px) 0 0;
  border-top: none;
  border-bottom: none;
}

body.page-sachacks .work-detail__heading,
body.page-schedgo .work-detail__heading,
body.page-ibm-saas-console .work-detail__heading,
body.page-breaking-barriers .work-detail__heading,
body.page-bloom-and-vine .work-detail__heading,
body.page-makeability-lab .work-detail__heading,
body.page-nordstrom-rack .work-detail__heading,
body.page-inclusive-lab .work-detail__heading {
  margin: 0;
  font-family: var(--tj-ff-body);
  font-size: clamp(1.625rem, 4.2vw, 2.375rem);
  font-weight: var(--tj-fw-bold);
  letter-spacing: -0.03em;
  color: #ffffff;
  text-transform: lowercase;
}

body.page-sachacks .work-detail__kicker,
body.page-schedgo .work-detail__kicker,
body.page-ibm-saas-console .work-detail__kicker,
body.page-breaking-barriers .work-detail__kicker,
body.page-bloom-and-vine .work-detail__kicker,
body.page-makeability-lab .work-detail__kicker,
body.page-nordstrom-rack .work-detail__kicker,
body.page-inclusive-lab .work-detail__kicker {
  margin: clamp(12px, 2vh, 18px) 0 0;
  font-family: var(--tj-ff-body);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: var(--tj-fw-sbold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--site-accent);
}

body.page-sachacks .work-detail__lead,
body.page-schedgo .work-detail__lead,
body.page-ibm-saas-console .work-detail__lead,
body.page-breaking-barriers .work-detail__lead,
body.page-bloom-and-vine .work-detail__lead,
body.page-makeability-lab .work-detail__lead,
body.page-nordstrom-rack .work-detail__lead,
body.page-inclusive-lab .work-detail__lead {
  margin: clamp(12px, 2vh, 16px) 0 0;
  max-width: 100%;
  font-family: var(--tj-ff-body);
  font-size: clamp(1.0625rem, 1.15vw, 1.125rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  text-wrap: pretty;
}

body.page-sachacks .work-detail__prose,
body.page-schedgo .work-detail__prose,
body.page-ibm-saas-console .work-detail__prose,
body.page-breaking-barriers .work-detail__prose,
body.page-bloom-and-vine .work-detail__prose,
body.page-makeability-lab .work-detail__prose,
body.page-nordstrom-rack .work-detail__prose,
body.page-inclusive-lab .work-detail__prose {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2vh, 18px);
  max-width: 100%;
  margin-top: clamp(12px, 2vh, 16px);
}

body.page-sachacks .work-detail__prose p,
body.page-schedgo .work-detail__prose p,
body.page-ibm-saas-console .work-detail__prose p,
body.page-breaking-barriers .work-detail__prose p,
body.page-bloom-and-vine .work-detail__prose p,
body.page-makeability-lab .work-detail__prose p,
body.page-nordstrom-rack .work-detail__prose p,
body.page-inclusive-lab .work-detail__prose p {
  margin: 0;
  font-family: var(--tj-ff-body);
  font-size: clamp(1.0625rem, 1.1vw, 1.125rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  text-wrap: pretty;
}

body.page-nordstrom-rack .work-detail__prose ul {
  margin: 0;
  padding-left: 1.25em;
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1.2vh, 12px);
}

body.page-nordstrom-rack .work-detail__prose li {
  font-family: var(--tj-ff-body);
  font-size: clamp(1.0625rem, 1.1vw, 1.125rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  text-wrap: pretty;
}

body.page-sachacks .work-detail__stats,
body.page-schedgo .work-detail__stats,
body.page-ibm-saas-console .work-detail__stats,
body.page-breaking-barriers .work-detail__stats,
body.page-bloom-and-vine .work-detail__stats,
body.page-makeability-lab .work-detail__stats,
body.page-nordstrom-rack .work-detail__stats,
body.page-inclusive-lab .work-detail__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 16px);
  margin: clamp(20px, 3vh, 28px) 0 0;
  padding: 0;
  list-style: none;
}

@media only screen and (min-width: 768px) {
  body.page-sachacks .work-detail__stats,
  body.page-schedgo .work-detail__stats,
  body.page-ibm-saas-console .work-detail__stats,
  body.page-breaking-barriers .work-detail__stats,
  body.page-bloom-and-vine .work-detail__stats,
  body.page-makeability-lab .work-detail__stats,
  body.page-nordstrom-rack .work-detail__stats,
  body.page-inclusive-lab .work-detail__stats,
  body.page-inclusive-design-lab .work-detail__stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  body.page-sachacks .work-detail__stats--outcome,
  body.page-schedgo .work-detail__stats--outcome,
  body.page-ibm-saas-console .work-detail__stats--outcome,
  body.page-breaking-barriers .work-detail__stats--outcome,
  body.page-bloom-and-vine .work-detail__stats--outcome,
  body.page-makeability-lab .work-detail__stats--outcome,
  body.page-nordstrom-rack .work-detail__stats--outcome,
  body.page-inclusive-lab .work-detail__stats--outcome,
  body.page-inclusive-design-lab .work-detail__stats--outcome {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

body.page-sachacks .work-detail__stats-item,
body.page-schedgo .work-detail__stats-item,
body.page-ibm-saas-console .work-detail__stats-item,
body.page-breaking-barriers .work-detail__stats-item,
body.page-bloom-and-vine .work-detail__stats-item,
body.page-makeability-lab .work-detail__stats-item,
body.page-nordstrom-rack .work-detail__stats-item,
body.page-inclusive-lab .work-detail__stats-item {
  padding: clamp(14px, 2vw, 18px);
  border-radius: clamp(12px, 1.5vw, 16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(145deg, rgba(255, 77, 184, 0.08) 0%, transparent 48%),
    rgba(255, 255, 255, 0.03);
}

body.page-sachacks .work-detail__stats-value,
body.page-schedgo .work-detail__stats-value,
body.page-ibm-saas-console .work-detail__stats-value,
body.page-breaking-barriers .work-detail__stats-value,
body.page-bloom-and-vine .work-detail__stats-value,
body.page-makeability-lab .work-detail__stats-value,
body.page-nordstrom-rack .work-detail__stats-value,
body.page-inclusive-lab .work-detail__stats-value {
  display: block;
  font-family: var(--tj-ff-body);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: var(--tj-fw-bold);
  letter-spacing: -0.03em;
  color: var(--site-accent);
  line-height: 1.1;
}

body.page-sachacks .work-detail__stats-label,
body.page-schedgo .work-detail__stats-label,
body.page-ibm-saas-console .work-detail__stats-label,
body.page-breaking-barriers .work-detail__stats-label,
body.page-bloom-and-vine .work-detail__stats-label,
body.page-makeability-lab .work-detail__stats-label,
body.page-nordstrom-rack .work-detail__stats-label,
body.page-inclusive-lab .work-detail__stats-label {
  display: block;
  margin-top: 6px;
  font-family: var(--tj-ff-body);
  font-size: 0.6875rem;
  line-height: 1.45;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.62);
}

body.page-sachacks .work-detail__highlights,
body.page-schedgo .work-detail__highlights,
body.page-ibm-saas-console .work-detail__highlights,
body.page-breaking-barriers .work-detail__highlights,
body.page-bloom-and-vine .work-detail__highlights,
body.page-makeability-lab .work-detail__highlights,
body.page-nordstrom-rack .work-detail__highlights,
body.page-inclusive-lab .work-detail__highlights {
  margin: clamp(20px, 3vh, 28px) 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2.5vh, 20px);
}

body.page-sachacks .work-detail__highlight,
body.page-schedgo .work-detail__highlight,
body.page-ibm-saas-console .work-detail__highlight,
body.page-breaking-barriers .work-detail__highlight,
body.page-bloom-and-vine .work-detail__highlight,
body.page-makeability-lab .work-detail__highlight,
body.page-nordstrom-rack .work-detail__highlight,
body.page-inclusive-lab .work-detail__highlight {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(14px, 2.5vw, 20px);
  align-items: start;
  padding: clamp(16px, 2.5vw, 22px);
  border-radius: clamp(12px, 1.5vw, 18px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
}

body.page-sachacks .work-detail__highlight-index,
body.page-schedgo .work-detail__highlight-index,
body.page-ibm-saas-console .work-detail__highlight-index,
body.page-breaking-barriers .work-detail__highlight-index,
body.page-bloom-and-vine .work-detail__highlight-index,
body.page-makeability-lab .work-detail__highlight-index,
body.page-nordstrom-rack .work-detail__highlight-index,
body.page-inclusive-lab .work-detail__highlight-index {
  font-family: var(--tj-ff-body);
  font-size: 0.75rem;
  font-weight: var(--tj-fw-sbold);
  letter-spacing: 0.12em;
  color: var(--site-accent);
}

body.page-sachacks .work-detail__highlight-title,
body.page-schedgo .work-detail__highlight-title,
body.page-ibm-saas-console .work-detail__highlight-title,
body.page-breaking-barriers .work-detail__highlight-title,
body.page-bloom-and-vine .work-detail__highlight-title,
body.page-makeability-lab .work-detail__highlight-title,
body.page-nordstrom-rack .work-detail__highlight-title,
body.page-inclusive-lab .work-detail__highlight-title {
  margin: 0 0 6px;
  font-family: var(--tj-ff-body);
  font-size: clamp(0.9375rem, 1vw, 1rem);
  font-weight: var(--tj-fw-sbold);
  color: #ffffff;
}

body.page-sachacks .work-detail__highlight-body p,
body.page-schedgo .work-detail__highlight-body p,
body.page-ibm-saas-console .work-detail__highlight-body p,
body.page-breaking-barriers .work-detail__highlight-body p,
body.page-bloom-and-vine .work-detail__highlight-body p,
body.page-makeability-lab .work-detail__highlight-body p,
body.page-nordstrom-rack .work-detail__highlight-body p,
body.page-inclusive-lab .work-detail__highlight-body p {
  margin: 0;
  font-family: var(--tj-ff-body);
  font-size: clamp(1rem, 1.05vw, 1.0625rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}

body.page-sachacks .work-detail__figure,
body.page-schedgo .work-detail__figure,
body.page-ibm-saas-console .work-detail__figure,
body.page-breaking-barriers .work-detail__figure,
body.page-bloom-and-vine .work-detail__figure,
body.page-makeability-lab .work-detail__figure,
body.page-nordstrom-rack .work-detail__figure,
body.page-inclusive-lab .work-detail__figure {
  margin: clamp(20px, 3vh, 28px) 0 0;
}

body.page-sachacks .work-detail__figure-frame,
body.page-schedgo .work-detail__figure-frame,
body.page-ibm-saas-console .work-detail__figure-frame,
body.page-breaking-barriers .work-detail__figure-frame,
body.page-bloom-and-vine .work-detail__figure-frame,
body.page-makeability-lab .work-detail__figure-frame,
body.page-nordstrom-rack .work-detail__figure-frame,
body.page-inclusive-lab .work-detail__figure-frame {
  border-radius: clamp(14px, 2vw, 20px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--project-preview-surface);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.4);
  max-height: min(72vh, 640px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}


body.page-sachacks .work-detail__figure-frame video,
body.page-schedgo .work-detail__figure-frame video,
body.page-ibm-saas-console .work-detail__figure-frame video,
body.page-breaking-barriers .work-detail__figure-frame video,
body.page-bloom-and-vine .work-detail__figure-frame video,
body.page-makeability-lab .work-detail__figure-frame video,
body.page-nordstrom-rack .work-detail__figure-frame video,
body.page-inclusive-lab .work-detail__figure-frame video {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center center;
}

body.page-sachacks .work-detail__figure-frame--video,
body.page-schedgo .work-detail__figure-frame--video,
body.page-ibm-saas-console .work-detail__figure-frame--video,
body.page-breaking-barriers .work-detail__figure-frame--video,
body.page-bloom-and-vine .work-detail__figure-frame--video,
body.page-makeability-lab .work-detail__figure-frame--video,
body.page-nordstrom-rack .work-detail__figure-frame--video,
body.page-inclusive-lab .work-detail__figure-frame--video {
  max-height: none;
  overflow: hidden;
}

body.page-inclusive-lab .work-detail__figure-frame--poster,
body.page-inclusive-design-lab .work-detail__figure-frame--poster {
  max-height: none;
  overflow: hidden;
  overflow-y: visible;
}

body.page-inclusive-lab .work-detail__figure-frame--poster img,
body.page-inclusive-design-lab .work-detail__figure-frame--poster img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center center;
}

body.page-schedgo .work-detail__figure-video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--project-preview-surface);
}

body.page-sachacks .work-detail__figure-frame--scroll,
body.page-breaking-barriers .work-detail__figure-frame--scroll,
body.page-bloom-and-vine .work-detail__figure-frame--scroll {
  overflow: hidden;
  max-height: min(70vh, 640px);
}

body.page-sachacks .work-detail__figure-frame--scroll img,
body.page-sachacks .work-detail__figure-scroll,
body.page-breaking-barriers .work-detail__figure-frame--scroll img,
body.page-breaking-barriers .work-detail__figure-scroll,
body.page-bloom-and-vine .work-detail__figure-frame--scroll img,
body.page-bloom-and-vine .work-detail__figure-scroll {
  width: 100%;
  height: auto;
  min-height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: top center;
  animation: scrollWebsite 22s linear infinite alternate;
  animation-play-state: running;
}

body.page-sachacks .work-detail__figure-frame img,
body.page-schedgo .work-detail__figure-frame img,
body.page-ibm-saas-console .work-detail__figure-frame img,
body.page-breaking-barriers .work-detail__figure-frame img,
body.page-bloom-and-vine .work-detail__figure-frame img,
body.page-makeability-lab .work-detail__figure-frame img,
body.page-nordstrom-rack .work-detail__figure-frame img,
body.page-inclusive-lab .work-detail__figure-frame img {
  display: block;
  width: 100%;
  height: auto;
}

body.page-nordstrom-rack .work-detail__meta--line {
  grid-template-columns: minmax(0, 1fr);
  margin-top: clamp(12px, 2vh, 18px);
}

body.page-nordstrom-rack .work-detail__compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 28px);
  margin: clamp(20px, 3vh, 28px) 0 0;
}

body.page-nordstrom-rack .work-detail__figure--caption-only {
  margin: 0;
}

body.page-nordstrom-rack .work-detail__figure--caption-only .work-detail__figure-caption {
  margin: 0;
  padding-top: clamp(14px, 2vh, 18px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

body.page-sachacks .work-detail__figure-caption,
body.page-schedgo .work-detail__figure-caption,
body.page-ibm-saas-console .work-detail__figure-caption,
body.page-breaking-barriers .work-detail__figure-caption,
body.page-bloom-and-vine .work-detail__figure-caption,
body.page-makeability-lab .work-detail__figure-caption,
body.page-nordstrom-rack .work-detail__figure-caption,
body.page-inclusive-lab .work-detail__figure-caption {
  margin: 10px 0 0;
  font-family: var(--tj-ff-body);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.5);
}

body.page-sachacks .work-detail__gallery,
body.page-schedgo .work-detail__gallery,
body.page-ibm-saas-console .work-detail__gallery,
body.page-breaking-barriers .work-detail__gallery,
body.page-bloom-and-vine .work-detail__gallery,
body.page-makeability-lab .work-detail__gallery,
body.page-nordstrom-rack .work-detail__gallery,
body.page-inclusive-lab .work-detail__gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(10px, 2vw, 14px);
  margin: clamp(20px, 3vh, 28px) 0 0;
  padding: 0;
  list-style: none;
}

body.page-sachacks .work-detail__gallery a,
body.page-schedgo .work-detail__gallery a,
body.page-ibm-saas-console .work-detail__gallery a,
body.page-breaking-barriers .work-detail__gallery a,
body.page-bloom-and-vine .work-detail__gallery a,
body.page-makeability-lab .work-detail__gallery a,
body.page-nordstrom-rack .work-detail__gallery a,
body.page-inclusive-lab .work-detail__gallery a {
  display: block;
  border-radius: clamp(10px, 1.2vw, 14px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  aspect-ratio: 1;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

body.page-sachacks .work-detail__gallery a:hover,
body.page-schedgo .work-detail__gallery a:hover,
body.page-ibm-saas-console .work-detail__gallery a:hover,
body.page-breaking-barriers .work-detail__gallery a:hover,
body.page-bloom-and-vine .work-detail__gallery a:hover,
body.page-makeability-lab .work-detail__gallery a:hover,
body.page-nordstrom-rack .work-detail__gallery a:hover,
body.page-inclusive-lab .work-detail__gallery a:hover {
  border-color: rgba(255, 77, 184, 0.45);
  transform: translateY(-2px);
}

body.page-sachacks .work-detail__gallery img,
body.page-schedgo .work-detail__gallery img,
body.page-ibm-saas-console .work-detail__gallery img,
body.page-breaking-barriers .work-detail__gallery img,
body.page-bloom-and-vine .work-detail__gallery img,
body.page-makeability-lab .work-detail__gallery img,
body.page-nordstrom-rack .work-detail__gallery img,
body.page-inclusive-lab .work-detail__gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}/* SacHacks — design system (2-col) and social posts (3-col) galleries */
body.page-sachacks .work-detail__gallery--design-system {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.page-sachacks .work-detail__gallery--design-system .work-detail__gallery-item--wide {
  grid-column: 1 / -1;
}

body.page-sachacks .work-detail__gallery--posts {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* SacHacks Brand & social — bento grid (banner hero + 2×2 tiles) */
body.page-sachacks .work-detail__gallery--posts.work-detail__gallery--bento {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.page-sachacks .work-detail__gallery--bento .work-detail__gallery-item--banner {
  grid-column: 1 / -1;
}

body.page-sachacks .work-detail__gallery--bento .work-detail__gallery-figure {
  height: 100%;
}

body.page-sachacks .work-detail__gallery--bento .work-detail__gallery-frame--banner {
  aspect-ratio: 596 / 216;
  min-height: clamp(280px, 32vw, 360px);
  padding: 0;
  display: block;
}

body.page-sachacks .work-detail__gallery--bento .work-detail__gallery-frame--banner img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  max-height: none;
  object-fit: contain;
  object-position: center;
}

body.page-sachacks .work-detail__gallery--bento .work-detail__gallery-frame--flat-wide {
  aspect-ratio: 596 / 216;
  min-height: clamp(140px, 20vw, 220px);
  padding: 0;
  display: block;
}

body.page-sachacks .work-detail__gallery--bento .work-detail__gallery-frame--flat-wide img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center;
}

body.page-sachacks .work-detail__gallery-frame {
  display: block;
  border-radius: clamp(12px, 1.5vw, 18px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

body.page-sachacks .work-detail__gallery--posts:not(.work-detail__gallery--bento) .work-detail__gallery-frame {
  aspect-ratio: 1;
}

body.page-sachacks .work-detail__gallery--posts.work-detail__gallery--bento .work-detail__gallery-frame:not(.work-detail__gallery-frame--banner):not(.work-detail__gallery-frame--flat-wide) {
  aspect-ratio: 1;
}

body.page-sachacks .work-detail__gallery--design-system .work-detail__gallery-frame {
  aspect-ratio: auto;
  min-height: clamp(120px, 18vw, 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(12px, 2vw, 20px);
}

body.page-sachacks .work-detail__gallery--design-system .work-detail__gallery-item--wide .work-detail__gallery-frame {
  min-height: clamp(140px, 22vw, 240px);
}

body.page-sachacks .work-detail__gallery-frame:hover {
  border-color: rgba(255, 77, 184, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

body.page-sachacks .work-detail__gallery--design-system img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: min(220px, 28vw);
  object-fit: contain;
}

body.page-sachacks .work-detail__gallery-figure {
  margin: 0;
  display: flex;
  flex-direction: column;
}

body.page-sachacks .work-detail__gallery-caption {
  margin: 10px 0 0;
  font-family: var(--tj-ff-body);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.5);
}

body.page-sachacks .work-detail__note,
body.page-schedgo .work-detail__note,
body.page-ibm-saas-console .work-detail__note,
body.page-breaking-barriers .work-detail__note,
body.page-bloom-and-vine .work-detail__note,
body.page-makeability-lab .work-detail__note,
body.page-nordstrom-rack .work-detail__note,
body.page-inclusive-lab .work-detail__note,
body.page-inclusive-design-lab .work-detail__note {
  margin: clamp(16px, 2.5vh, 20px) 0 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
}

body.page-sachacks .work-detail__note a,
body.page-schedgo .work-detail__note a,
body.page-ibm-saas-console .work-detail__note a,
body.page-breaking-barriers .work-detail__note a,
body.page-bloom-and-vine .work-detail__note a,
body.page-makeability-lab .work-detail__note a,
body.page-nordstrom-rack .work-detail__note a,
body.page-inclusive-lab .work-detail__note a,
body.page-inclusive-design-lab .work-detail__note a {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-color: var(--site-accent);
  text-underline-offset: 0.2em;
}
body.page-sachacks .work-detail__section--footer,
body.page-schedgo .work-detail__section--footer,
body.page-ibm-saas-console .work-detail__section--footer,
body.page-breaking-barriers .work-detail__section--footer,
body.page-bloom-and-vine .work-detail__section--footer,
body.page-makeability-lab .work-detail__section--footer,
body.page-nordstrom-rack .work-detail__section--footer,
body.page-inclusive-lab .work-detail__section--footer {
  padding-bottom: clamp(16px, 3vh, 24px);
}

body.page-ibm-saas-console .work-detail__section--extra {
  padding-bottom: clamp(48px, 8vh, 80px);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


@media only screen and (max-width: 575px) {
  body.page-sachacks .work-detail__meta,
  body.page-schedgo .work-detail__meta,
  body.page-ibm-saas-console .work-detail__meta,
  body.page-breaking-barriers .work-detail__meta,
  body.page-bloom-and-vine .work-detail__meta,
  body.page-makeability-lab .work-detail__meta,
  body.page-nordstrom-rack .work-detail__meta,
  body.page-inclusive-lab .work-detail__meta,
  body.page-inclusive-design-lab .work-detail__meta {
    grid-template-columns: 1fr;
  }

  body.page-sachacks .work-detail__gallery,
  body.page-schedgo .work-detail__gallery,
  body.page-ibm-saas-console .work-detail__gallery,
  body.page-breaking-barriers .work-detail__gallery,
  body.page-bloom-and-vine .work-detail__gallery,
  body.page-makeability-lab .work-detail__gallery,
  body.page-nordstrom-rack .work-detail__gallery,
  body.page-inclusive-lab .work-detail__gallery {
    grid-template-columns: 1fr;
  }

  body.page-sachacks .work-detail__gallery--design-system,
  body.page-sachacks .work-detail__gallery--posts {
    grid-template-columns: 1fr;
  }

  body.page-sachacks .work-detail__gallery--posts.work-detail__gallery--bento {
    grid-template-columns: 1fr;
  }

  body.page-sachacks .work-detail__gallery--bento .work-detail__gallery-item--banner {
    grid-column: 1 / -1;
  }

  body.page-sachacks .work-detail__gallery--design-system .work-detail__gallery-item--wide {
    grid-column: auto;
  }
}

/* Work detail — shared tiles, timeline, quote (neutral, no per-page skins) */
.work-detail__tiles {
  display: grid;
  gap: clamp(12px, 2vw, 16px);
  margin: clamp(20px, 3vh, 28px) 0 0;
  padding: 0;
  list-style: none;
}

@media only screen and (min-width: 768px) {
  .work-detail__tiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .work-detail__tiles .work-detail__tile--wide {
    grid-column: 1 / -1;
  }
}

.work-detail__tile {
  padding: clamp(16px, 2.5vw, 22px);
  border-radius: clamp(12px, 1.5vw, 18px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
}

.work-detail__tile h4 {
  margin: 0 0 6px;
  font-size: clamp(0.9375rem, 1vw, 1rem);
  font-weight: var(--tj-fw-sbold);
  color: #ffffff;
}

.work-detail__tile p {
  margin: 0;
  font-size: clamp(1rem, 1.05vw, 1.0625rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}

.work-detail__split {
  display: grid;
  gap: clamp(12px, 2vw, 16px);
  margin: clamp(20px, 3vh, 28px) 0 0;
}

@media only screen and (min-width: 768px) {
  .work-detail__split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.work-detail__split-panel {
  padding: clamp(16px, 2.5vw, 22px);
  border-radius: clamp(12px, 1.5vw, 18px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
}

.work-detail__split-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.6875rem;
  font-weight: var(--tj-fw-sbold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--site-accent);
}

.work-detail__split-panel p {
  margin: 0;
  font-size: clamp(1rem, 1.05vw, 1.0625rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}

.work-detail__timeline {
  list-style: none;
  margin: clamp(20px, 3vh, 28px) 0 0;
  padding: 0;
  display: grid;
  gap: clamp(12px, 2vw, 16px);
}

@media only screen and (min-width: 768px) {
  .work-detail__timeline {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.work-detail__timeline-step {
  padding: clamp(16px, 2.5vw, 20px);
  border-top: 2px solid var(--site-accent);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.work-detail__timeline-phase {
  display: block;
  font-size: 0.6875rem;
  font-weight: var(--tj-fw-sbold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--site-accent);
}

.work-detail__timeline-step p {
  margin: 8px 0 0;
  font-size: clamp(1rem, 1.05vw, 1.0625rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

.work-detail__quote {
  margin: clamp(16px, 2.5vh, 24px) 0 0;
  padding: clamp(20px, 3vw, 28px);
  border-left: 3px solid var(--site-accent);
  background: rgba(255, 77, 184, 0.06);
}

/* Override main.css blog blockquote (dark bar pseudo-element, theme background) */
blockquote.work-detail__quote,
.work-detail__quote blockquote {
  position: static;
  margin: 0;
  margin-bottom: 0;
  padding: 0;
  background: transparent;
  z-index: auto;
}

blockquote.work-detail__quote {
  margin-top: clamp(16px, 2.5vh, 24px);
  padding: clamp(20px, 3vw, 28px);
  border-left: 3px solid var(--site-accent);
  background: rgba(255, 77, 184, 0.06);
}

.work-detail__quote p {
  margin: 0;
  font-size: clamp(1.0625rem, 1.15vw, 1.1875rem);
  font-style: italic;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.94);
  padding-inline-start: 0;
  -webkit-padding-start: 0;
  font-family: inherit;
  font-weight: inherit;
  letter-spacing: normal;
}

.work-detail__quote p::before {
  content: none;
  display: none;
}

/* IBM work page — client cards, compare, dance row */
@media only screen and (min-width: 768px) {
  body.page-ibm-saas-console .work-detail__tiles {
    grid-template-columns: 1fr;
  }
}

body.page-ibm-saas-console .work-detail__tile-label {
  margin: 0 0 clamp(10px, 1.5vh, 14px);
  padding-bottom: 8px;
  border-bottom: 2px solid var(--site-accent);
  font-family: var(--tj-ff-body);
  font-size: 0.6875rem;
  font-weight: var(--tj-fw-sbold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--site-accent);
}

body.page-ibm-saas-console .work-detail__tile p + p {
  margin-top: 1em;
}

body.page-ibm-saas-console .work-detail__figure--hero {
  margin-top: clamp(20px, 3vh, 28px);
}

body.page-ibm-saas-console .work-detail__media-row {
  display: grid;
  gap: clamp(20px, 3vw, 32px);
  margin-top: clamp(8px, 1.5vh, 12px);
  align-items: start;
}

@media only screen and (min-width: 768px) {
  body.page-ibm-saas-console .work-detail__media-row {
    grid-template-columns: minmax(0, 1fr) minmax(0, 20rem);
    gap: clamp(24px, 4vw, 48px);
    align-items: center;
  }
}

body.page-ibm-saas-console .work-detail__figure--inline {
  margin: 0;
}

body.page-ibm-saas-console .work-detail__figure-frame--reel {
  aspect-ratio: 9 / 16;
}

body.page-ibm-saas-console .work-detail__figure-frame--reel video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.page-ibm-saas-console .work-detail__media-row .work-detail__figure-frame--reel {
  max-width: 100%;
  margin-inline: 0;
}

@media only screen and (max-width: 767px) {
  body.page-ibm-saas-console .work-detail__media-row .work-detail__figure-frame--reel {
    max-width: min(100%, 18rem);
    margin-inline: auto;
  }
}

/* Resume page — original document-style single column */
body.page-resume.site-editorial .resume-page-section {
  padding: clamp(24px, 4vh, 48px) clamp(20px, 5vw, 48px) clamp(72px, 10vh, 120px);
}

body.page-resume.site-editorial .resume-page-layout {
  max-width: 720px;
  margin: 0 auto;
}

body.page-resume.site-editorial .resume-page__eyebrow {
  margin: 0 0 8px;
  font-family: var(--tj-ff-body);
  font-size: 0.75rem;
  font-weight: var(--tj-fw-sbold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--site-accent);
}

body.page-resume.site-editorial .resume-page__title {
  margin: 0;
  font-family: var(--tj-ff-heading);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: var(--tj-fw-bold);
  line-height: 1.05;
  color: #ffffff;
}

body.page-resume.site-editorial .resume-page__title-word--accent {
  color: var(--site-accent);
}

body.page-resume.site-editorial .resume-page__contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 16px 0 0;
}

body.page-resume.site-editorial .resume-page__contact-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.15em 0;
  margin: 0;
  padding: 0.05em 0;
  list-style: none;
  font-size: 0.875rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.65);
}

body.page-resume.site-editorial .resume-page__contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  margin: 0;
  padding: 0.05em 0;
  white-space: nowrap;
}

body.page-resume.site-editorial .resume-page__contact-row li + li::before {
  content: "·";
  margin: 0 0.4em;
  opacity: 0.55;
}

body.page-resume.site-editorial .resume-page__contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  color: inherit;
  text-decoration: none;
}

body.page-resume.site-editorial .resume-page__contact-link .resume-page__contact-label {
  text-decoration: underline;
  text-decoration-color: rgba(255, 77, 184, 0.5);
  text-underline-offset: 0.18em;
}

body.page-resume.site-editorial .resume-page__contact-link:hover {
  color: #ffffff;
}

body.page-resume.site-editorial .resume-contact-icon {
  display: block;
  flex-shrink: 0;
  width: 0.95em;
  height: 0.95em;
  max-width: 14px;
  max-height: 14px;
  color: var(--site-accent);
}

body.page-resume.site-editorial .resume-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 20px;
}

body.page-resume.site-editorial .resume-page__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: #ffffff;
  color: var(--site-bg-deep);
  font-family: var(--tj-ff-body);
  font-size: 0.8125rem;
  font-weight: var(--tj-fw-sbold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

body.page-resume.site-editorial .resume-page__cta:hover {
  background: var(--site-accent);
  border-color: var(--site-accent);
  color: #ffffff;
  transform: translateY(-1px);
}

body.page-resume.site-editorial .resume-page__cta--ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  border-color: rgba(255, 255, 255, 0.22);
}

body.page-resume.site-editorial .resume-page__cta--ghost:hover {
  background: rgba(255, 77, 184, 0.1);
  border-color: rgba(255, 77, 184, 0.45);
  color: #ffffff;
}

body.page-resume.site-editorial .resume-page-intro {
  margin-top: clamp(28px, 4vh, 40px);
}

body.page-resume.site-editorial .resume-page__lead {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}

body.page-resume.site-editorial .resume-page__tagline-accent,
body.page-resume.site-editorial .resume-page__accent,
body.page-resume.site-editorial a.resume-page__accent {
  color: var(--site-accent);
}

body.page-resume.site-editorial .resume-page__lead a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(255, 77, 184, 0.55);
  text-underline-offset: 0.18em;
}

body.page-resume.site-editorial .resume-page__lead a:hover {
  color: #ffffff;
}

body.page-resume.site-editorial .resume-block {
  margin-top: clamp(32px, 5vh, 48px);
  padding-top: clamp(24px, 3vh, 32px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

body.page-resume.site-editorial .resume-block__heading {
  margin: 0 0 20px;
  font-family: var(--tj-ff-body);
  font-size: 0.75rem;
  font-weight: var(--tj-fw-sbold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--site-accent);
}

body.page-resume.site-editorial .resume-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

body.page-resume.site-editorial .resume-entry + .resume-entry {
  margin-top: 28px;
}

body.page-resume.site-editorial .resume-entry__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 4px 16px;
}

body.page-resume.site-editorial .resume-entry__title {
  margin: 0;
  font-family: var(--tj-ff-heading);
  font-size: 1.125rem;
  font-weight: var(--tj-fw-sbold);
  color: #ffffff;
  line-height: 1.3;
}

body.page-resume.site-editorial .resume-entry__detail {
  font-family: var(--tj-ff-body);
  font-size: 0.9375rem;
  font-weight: var(--tj-fw-regular);
  color: rgba(255, 255, 255, 0.65);
}

body.page-resume.site-editorial .resume-entry__when {
  flex-shrink: 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
}

body.page-resume.site-editorial .resume-entry__org {
  margin: 4px 0 0;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.62);
}

body.page-resume.site-editorial .resume-entry__org a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(255, 77, 184, 0.45);
  text-underline-offset: 0.16em;
}

body.page-resume.site-editorial .resume-entry__org a:hover {
  color: #ffffff;
}

body.page-resume.site-editorial .resume-entry--compact .resume-entry__title {
  font-size: 1rem;
}

body.page-resume.site-editorial .resume-list--awards .resume-entry + .resume-entry {
  margin-top: 20px;
}

body.page-resume.site-editorial .resume-work-grid {
  margin: 0;
  padding: 0;
  list-style: none;
}

body.page-resume.site-editorial .resume-work-card {
  padding: 0 0 20px;
  margin: 0 0 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body.page-resume.site-editorial .resume-work-card:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

body.page-resume.site-editorial .resume-work-card__type {
  display: block;
  margin-bottom: 4px;
  font-size: 0.6875rem;
  font-weight: var(--tj-fw-sbold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
}

body.page-resume.site-editorial .resume-work-card__title {
  margin: 0 0 6px;
  font-family: var(--tj-ff-heading);
  font-size: 1.0625rem;
  font-weight: var(--tj-fw-sbold);
  line-height: 1.25;
  color: #ffffff;
}

body.page-resume.site-editorial .resume-work-card__title a {
  color: #ffffff;
  text-decoration: none;
}

body.page-resume.site-editorial .resume-work-card__title a:hover {
  color: var(--site-accent);
}

body.page-resume.site-editorial .resume-work-card__text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}

body.page-resume.site-editorial .resume-work-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 0.8125rem;
  font-weight: var(--tj-fw-sbold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--site-accent);
  text-decoration: none;
}

body.page-resume.site-editorial .resume-work-card__link:hover {
  color: #ffffff;
}

body.page-resume.site-editorial .resume-skill-groups {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

body.page-resume.site-editorial .resume-skill-group__label {
  margin: 0 0 8px;
  font-size: 0.8125rem;
  font-weight: var(--tj-fw-sbold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

body.page-resume.site-editorial .resume-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.page-resume.site-editorial .resume-tags li {
  font-size: 0.875rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.78);
}

body.page-resume.site-editorial .resume-tags li:not(:last-child)::after {
  content: "·";
  margin-left: 6px;
  opacity: 0.45;
}

body.page-resume.site-editorial .resume-page__cta-arrow {
  transition: transform 0.2s ease;
}

body.page-resume.site-editorial .resume-page__cta:hover .resume-page__cta-arrow {
  transform: translate(2px, -2px);
}

body.page-resume.site-editorial .resume-page-section a:not(.resume-page__cta):not(.resume-work-card__link) {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(255, 77, 184, 0.5);
  text-underline-offset: 0.16em;
  transition: color 0.2s ease;
}

body.page-resume.site-editorial .resume-page-section a:not(.resume-page__cta):not(.resume-work-card__link):hover {
  color: #ffffff;
}

body.page-resume.site-editorial .resume-page-section .resume-work-card__title a {
  text-decoration: none;
}

