:root {
  --motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --motion-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  color-scheme: dark;
  color: #1c1c1c;
  background: #faf9f6;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #faf9f6;
  color: #1c1c1c;
}

body, button, input, textarea {
  font: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

img,
svg,
video,
canvas {
  max-width: 100%;
  height: auto;
}

.page-shell {
  display: flex;
  min-height: 100vh;
}

.chapter-nav {
  position: fixed;
  left: 0;
  top: 0;
  width: 58px;
  height: 100vh;
  padding: 56px 8px;
  display: flex;
  flex-direction: column;
  gap: 23px;
  border-right: 1px solid rgba(17, 17, 17, 0.08);
  background: #ffffff;
  align-items: center;
  z-index: 20;
}

.chapter-nav::before {
  content: "";
  position: absolute;
  top: 54px;
  bottom: 54px;
  left: 50%;
  width: 1px;
  background: rgba(17, 17, 17, 0.07);
  transform: translateX(-50%);
}

.chapter-nav a {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 2px 0;
  background: #ffffff;
  font-weight: 500;
  color: #737373;
  opacity: 0.84;
  transition: opacity 240ms ease, color 240ms ease;
  z-index: 1;
}

.chapter-nav a .nav-num {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #1c1c1c;
  opacity: 0.84;
  transition: opacity 240ms ease, color 240ms ease;
}

.chapter-nav a .nav-label {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  color: #9d9d9d;
  text-transform: uppercase;
  transition: color 240ms ease;
}

.chapter-nav a:hover,
.chapter-nav a.active {
  opacity: 1;
}

.chapter-nav a.active .nav-num {
  opacity: 1;
  color: #111;
}

.chapter-nav a.active .nav-label {
  color: #575757;
  font-weight: 650;
}

.content {
  margin-left: 118px;
  width: 100%;
  padding: 52px 80px 64px;
  max-width: 1320px;
}

.section {
  padding: 46px 0;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms var(--motion-ease), transform 560ms var(--motion-ease);
}

.section.revealed,
.section.hero.revealed {
  opacity: 1;
  transform: none;
}

.section-inner {
  width: min(1140px, 100%);
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: clamp(360px, 52vh, 470px);
  display: grid;
  align-items: start;
  padding: 0 0 18px;
}

.hero h1,
.hero .role,
.hero .belief-statement,
.hero-image {
  opacity: 0;
  transform: translateY(12px);
  animation: heroArrival 620ms var(--motion-ease) forwards;
}

.hero .role {
  animation-delay: 90ms;
}

.hero .belief-statement {
  animation-delay: 170ms;
}

.hero-image {
  transform: translateY(10px);
  animation-delay: 220ms;
}

@keyframes heroArrival {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
  padding-top: 12px;
}

.hero-copy {
  max-width: 430px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.7rem, 5.5vw, 5.7rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
}

.hero-meta {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.role {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #777;
}

.hero-meta hr {
  border: none;
  border-top: 1px solid rgba(17, 17, 17, 0.12);
  width: 72px;
  margin: 0;
}

.belief-statement {
  margin: 0;
  font-size: 1.02rem;
  max-width: 420px;
  line-height: 1.58;
  color: #3a3a3a;
}

.section-copy,
.project-copy p,
.result-grid p,
.journey-items p,
.interest-list a,
.contact-group p,
.contact-group a {
  color: #4f4f4f;
}

.eyebrow {
  margin: 0 0 20px;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #6f6f6f;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 4.5rem);
  letter-spacing: -0.06em;
}

.section-copy {
  margin-top: 20px;
  max-width: 42rem;
  font-size: 1rem;
  line-height: 1.82;
}

.hero-visual {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  min-height: 280px;
}

.hero-image {
  display: block;
  width: min(100%, 285px);
  height: auto;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: #f5f3f0;
}

.placeholder-box,
.project-image {
  display: grid;
  place-items: center;
  background: #f5f3f0;
  color: #575757;
  border: 1px solid rgba(17, 17, 17, 0.08);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.placeholder-box {
  min-height: 520px;
}

.project-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  letter-spacing: 0;
  text-transform: none;
}

.project-image--phone {
  max-height: 390px;
  object-position: top center;
}

.project-image--finance {
  width: auto;
  max-width: min(100%, 300px);
  max-height: 390px;
  margin: 0 auto;
}

.project-image--wide {
  aspect-ratio: 16 / 9;
  height: min(32vw, 356px);
  object-fit: cover;
  object-position: center;
}

.project-image--flowcasting {
  aspect-ratio: 4 / 3;
  object-fit: contain;
  height: min(31vw, 340px);
}

.about-section,
.results-section,
.brand-wall-section,
.journey-section,
.projects-section,
.beyond-section,
.contact-section {
  padding-top: 50px;
  padding-bottom: 50px;
}

.about-inner,
.results-inner,
.journey-inner,
.projects-inner,
.beyond-inner,
.contact-inner {
  display: grid;
  gap: 32px;
}

.about-inner {
  grid-template-columns: 1fr 1fr;
}

.about-list {
  display: grid;
  gap: 24px;
}

.about-list div,
.result-grid > div,
.journey-items article,
.interest-list a,
.contact-group a {
  display: grid;
  gap: 12px;
}

.about-list strong {
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1c1c1c;
}

.about-list p {
  margin: 0;
  max-width: 18rem;
}

.results-inner {
  text-align: center;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  margin-top: 26px;
}

.result-grid > div {
  gap: 10px;
}

.result-grid strong {
  display: block;
  font-size: clamp(3.4rem, 6vw, 5.5rem);
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.result-grid p {
  margin: 0;
}

.brand-wall {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px 60px;
  max-width: 980px;
  margin: 28px auto 0;
  padding: 10px 0;
}

.brand-logo {
  position: relative;
  display: flex;
  flex: 0 1 auto;
  align-items: center;
  justify-content: center;
  min-width: 176px;
  min-height: 96px;
  padding: 18px 14px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
  overflow: hidden;
  transition:
    transform 260ms var(--motion-soft),
    background 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.brand-logo img {
  display: block;
  width: auto;
  height: 34px;
  max-width: 154px;
  object-fit: contain;
  filter: grayscale(1) contrast(1.08);
  mix-blend-mode: multiply;
  opacity: 0.5;
  transition: opacity 250ms ease, transform 250ms var(--motion-soft);
}

.brand-logo span {
  display: block;
  color: #1c1c1c;
  font-size: 1.05rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  opacity: 0.5;
  transition: opacity 250ms ease, transform 250ms var(--motion-soft);
}

.brand-details {
  position: absolute;
  inset: 10px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 12px 14px;
  border-radius: 5px;
  background: rgba(250, 248, 245, 0.95);
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity 240ms ease, transform 240ms var(--motion-soft);
}

.brand-details p {
  margin: 0;
  color: #353535;
  font-size: 0.74rem;
  font-weight: 550;
  letter-spacing: 0.04em;
  line-height: 1.48;
  text-align: center;
}

.brand-logo--svg img {
  filter: grayscale(1) brightness(0);
}

.brand-logo--bitmap img {
  filter: grayscale(1) contrast(1.08);
  mix-blend-mode: multiply;
}

.brand-logo--native img {
  filter: none;
}

.section.revealed .brand-logo:is(:hover, :focus-visible) {
  transform: translateY(-4px);
}

.brand-logo:is(:hover, :focus-visible) {
  border-color: rgba(229, 226, 221, 0.95);
  background: rgba(250, 248, 245, 0.95);
  box-shadow: 0 14px 32px rgba(17, 17, 17, 0.045);
}

.brand-logo:is(:hover, :focus-visible) img,
.brand-logo:is(:hover, :focus-visible) span {
  opacity: 0.12;
  transform: scale(0.985);
}

.brand-logo:is(:hover, :focus-visible) .brand-details {
  opacity: 1;
  transform: translateY(0);
}

.brand-logo:focus-visible {
  outline: 1px solid rgba(17, 17, 17, 0.28);
  outline-offset: 3px;
}

.brand-logo--wide img {
  height: 31px;
  max-width: 190px;
}

.brand-logo--symbol img {
  height: 42px;
  max-width: 96px;
}

.brand-logo--tall img {
  height: 44px;
  max-width: 96px;
}

.brand-logo--text {
  min-width: 176px;
}

.brand-logo--heinz img {
  filter: grayscale(1) contrast(1.05);
  height: 66px;
  max-width: 328px;
}

.brand-logo--canon img {
  height: 30px;
  margin-left: 8px;
  max-width: 176px;
}

.brand-logo--sundell img {
  filter: grayscale(1) brightness(0);
  mix-blend-mode: multiply;
  height: 52px;
  max-width: 310px;
}

.brand-logo--docler-wordmark span {
  font-size: 0.96rem;
  letter-spacing: 0.1em;
}

.brand-logo--ing img {
  height: 30px;
  margin-left: -6px;
  max-width: 180px;
}

.brand-logo--hvg img {
  height: 28px;
  max-width: 126px;
}

.brand-logo--westend img {
  filter: grayscale(1) contrast(1.08);
  height: 38px;
  max-width: 82px;
}

.brand-logo.brand-logo--edesviz img {
  width: 124px;
  height: 34px;
  object-fit: cover;
  object-position: center bottom;
}

.brand-logo--oxygen img {
  filter: grayscale(1) invert(1) contrast(1.08);
  mix-blend-mode: multiply;
}

.brand-logo--knauf img {
  height: 34px;
  max-width: 180px;
}

.brand-logo--elmu img {
  height: 36px;
  max-width: 162px;
}

.brand-logo--demeter img {
  filter: grayscale(1) brightness(0);
  mix-blend-mode: multiply;
}

.brand-logo--docler img,
.brand-logo--mora img,
.brand-logo--edesviz img,
.brand-logo--oxygen img,
.brand-logo--perfekt img,
.brand-logo--drivingcamp img,
.brand-logo--demeter img {
  max-height: 34px;
}

.journey-items {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 36px;
  margin-top: 28px;
}

.journey-items article {
  position: relative;
  display: grid;
  grid-template-rows: 118px auto minmax(3rem, auto) auto 1fr;
  gap: 0;
  align-content: start;
  padding: 40px 32px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: #faf9f6;
}

.journey-items article:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 112px;
  left: calc(100% + 8px);
  width: 22px;
  height: 1.5px;
  background: rgba(17, 17, 17, 0.36);
  opacity: 0;
  transform: scaleX(0.5);
  transform-origin: left center;
  transition: opacity 520ms var(--motion-ease), transform 520ms var(--motion-ease);
}

.journey-items article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 108px;
  left: calc(100% + 27px);
  width: 9px;
  height: 9px;
  border-top: 1.5px solid rgba(17, 17, 17, 0.42);
  border-right: 1.5px solid rgba(17, 17, 17, 0.42);
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 520ms var(--motion-ease);
}

.journey-section.revealed .journey-items article:not(:last-child)::before {
  opacity: 1;
  transform: scaleX(1);
}

.journey-section.revealed .journey-items article:not(:last-child)::after {
  opacity: 1;
}

.journey-media {
  aspect-ratio: 16 / 9;
  display: block;
  justify-self: center;
  width: min(100%, 190px);
  height: 118px;
  margin-bottom: 24px;
  border: 1px solid rgba(17, 17, 17, 0.06);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.035), rgba(17, 17, 17, 0.015)),
    #f1efea;
}

.journey-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 520ms var(--motion-ease);
}

.journey-media--carnation img {
  object-position: 42% center;
}

.journey-media--canon img {
  object-position: 38% center;
}

.journey-media--sundell img {
  object-position: center center;
}

.journey-media--ucg img {
  object-position: 38% center;
}

.journey-items span {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6f6f6f;
  margin-bottom: 18px;
}

.journey-items strong {
  display: block;
  font-size: 1.25rem;
  line-height: 1.15;
  margin-bottom: 8px;
}

.journey-items em {
  display: block;
  font-style: normal;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6f6f6f;
  margin-bottom: 16px;
}

.journey-items p {
  margin: 0;
  line-height: 1.8;
  text-align: left;
}

.projects-inner {
  display: grid;
  gap: 40px;
}

.project-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: clamp(44px, 5vw, 58px);
  align-items: center;
  padding: 6px 0;
  transition: transform 260ms var(--motion-soft);
}

.project-visual {
  min-height: 410px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border: 1px solid #e5e2dd;
  border-radius: 6px;
  background: #f4f2ee;
  box-shadow: 0 16px 36px rgba(17, 17, 17, 0.042);
  overflow: hidden;
}

.project-visual .project-image {
  transition: transform 260ms var(--motion-soft), border-color 260ms ease, box-shadow 260ms ease;
}

.project-feature--reverse {
  direction: rtl;
}

.project-feature--reverse > * {
  direction: ltr;
}

.project-copy {
  display: grid;
  align-content: center;
  max-width: 520px;
}

.project-label {
  margin: 0 0 12px;
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #6f6f6f;
}

.project-copy h3 {
  max-width: 10.5em;
  font-size: clamp(34px, 4.6vw, 52px);
  margin: 0 0 18px;
  line-height: 1.04;
}

.project-copy p {
  margin: 0;
  line-height: 1.76;
}

.project-subtitle {
  color: #575757;
}

.project-body {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.project-tags span {
  border: 1px solid rgba(17, 17, 17, 0.12);
  color: #575757;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  line-height: 1.35;
  padding: 8px 11px;
  text-transform: uppercase;
}

.project-story-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  margin-top: 20px;
  color: #1c1c1c;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 240ms ease, transform 240ms var(--motion-soft);
}

.project-story-link::after {
  content: "→";
  opacity: 0.72;
  transition: opacity 240ms ease, transform 240ms var(--motion-soft);
}

.project-story-link--external::after {
  content: "↗";
}

.project-story-link:hover,
.project-story-link:focus-visible {
  transform: translateX(3px);
}

.project-story-link:hover::after,
.project-story-link:focus-visible::after {
  opacity: 0.9;
  transform: translateX(5px);
}

.project-story-link:focus-visible {
  outline: 1px solid rgba(17, 17, 17, 0.18);
  outline-offset: 6px;
}

.project-image--teaching {
  object-fit: cover;
  object-position: 52% 42%;
}

.project-image--ux {
  object-fit: cover;
  object-position: 52% 44%;
}

.section .eyebrow,
.section h2,
.section .section-copy,
.about-list > div,
.result-grid > div,
.brand-logo,
.journey-items article,
.project-feature,
.interest-list a,
.end-credits-details {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 560ms var(--motion-ease),
    transform 560ms var(--motion-ease);
  transition-delay: var(--reveal-delay, 0ms);
}

.section.revealed .eyebrow,
.section.revealed h2,
.section.revealed .section-copy,
.section.revealed .about-list > div,
.section.revealed .result-grid > div,
.section.revealed .brand-logo,
.section.revealed .journey-items article,
.section.revealed .project-feature,
.section.revealed .interest-list a,
.section.revealed .end-credits-details {
  opacity: 1;
  transform: translateY(0);
}

.hero .eyebrow {
  opacity: 1;
  transform: none;
  transition: none;
}

.beyond-inner {
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  min-height: 450px;
}

.beyond-section {
  padding-top: 60px;
  padding-bottom: 72px;
}

.beyond-inner h2 {
  font-size: clamp(3.6rem, 7vw, 5.8rem);
  line-height: 0.96;
  max-width: 760px;
}

.interest-list {
  display: grid;
  gap: 28px;
}

.interest-list a {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1c1c1c;
  transition:
    color 240ms ease,
    opacity 240ms ease,
    transform 240ms var(--motion-soft);
}

.interest-list a::after {
  content: "→";
  opacity: 0.72;
  transform: translateX(0);
  transition:
    opacity 240ms ease,
    transform 240ms var(--motion-soft);
}

.interest-list a:hover,
.interest-list a:focus-visible {
  color: #111;
  transform: translateX(3px);
}

.interest-list a:hover::after,
.interest-list a:focus-visible::after {
  opacity: 0.9;
  transform: translateX(5px);
}

.interest-list a:focus-visible {
  outline: 1px solid rgba(17, 17, 17, 0.18);
  outline-offset: 6px;
}

.story-page .page-shell {
  display: block;
  overflow-x: hidden;
}

.story-page .content {
  margin-left: 0;
  width: 100%;
  max-width: none;
  padding: 72px clamp(28px, 8vw, 112px);
}

.story-page .hero {
  min-height: calc(100vh - 144px);
}

.story-page .hero-inner {
  grid-template-columns: minmax(0, 1fr);
  max-width: 900px;
}

.story-page .hero-copy {
  max-width: 760px;
}

.story-page .hero h1 {
  font-size: clamp(4.2rem, 10vw, 8.4rem);
}

.story-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 38px;
  color: #575757;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 240ms ease, transform 240ms var(--motion-soft);
}

.story-back::before {
  content: "←";
  color: #777;
}

.story-back:hover,
.story-back:focus-visible {
  color: #1c1c1c;
  transform: translateX(-3px);
}

.story-back:focus-visible {
  outline: 1px solid rgba(17, 17, 17, 0.18);
  outline-offset: 6px;
}

.photography-story {
  padding-top: 30px;
}

.photography-story-inner {
  max-width: 1080px;
}

.photography-header {
  display: grid;
  gap: 22px;
  margin-bottom: 54px;
}

.photography-header h1 {
  margin: 0;
  font-size: clamp(4.2rem, 10vw, 8.4rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.photography-header .hero-meta {
  margin-top: 0;
}

.photography-header .story-back {
  margin-top: 8px;
}

.photography-intro {
  margin: 0;
  max-width: 34rem;
  color: #4f4f4f;
  font-size: 1rem;
  line-height: 1.85;
}

.photo-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 32px);
  align-items: start;
}

.photo-gallery figure {
  margin: 0;
  overflow: hidden;
  background: #f5f3f0;
}

.photo-gallery img {
  display: block;
  width: 100%;
  height: auto;
  transition:
    opacity 260ms ease,
    transform 420ms var(--motion-soft);
}

.photo-gallery figure:hover img {
  opacity: 0.94;
  transform: scale(1.012);
}

.photography-more {
  max-width: 34rem;
  margin-top: 72px;
  padding-top: 34px;
  border-top: 1px solid rgba(17, 17, 17, 0.1);
}

.photography-more .eyebrow {
  margin-bottom: 18px;
}

.photography-more p:not(.eyebrow) {
  margin: 0;
  color: #4f4f4f;
  font-size: 1rem;
  line-height: 1.85;
}

.photography-more a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  color: #1c1c1c;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 240ms ease, transform 240ms var(--motion-soft);
}

.photography-more a::after {
  content: "→";
  opacity: 0.72;
  transition: opacity 240ms ease, transform 240ms var(--motion-soft);
}

.photography-more a:hover,
.photography-more a:focus-visible {
  transform: translateX(3px);
}

.photography-more a:hover::after,
.photography-more a:focus-visible::after {
  opacity: 0.9;
  transform: translateX(5px);
}

.photography-more a:focus-visible {
  outline: 1px solid rgba(17, 17, 17, 0.18);
  outline-offset: 6px;
}

.movement-story {
  padding-top: 30px;
}

.movement-story-inner {
  width: 100%;
  max-width: 1080px;
}

.movement-header {
  display: grid;
  gap: 22px;
  margin-bottom: 54px;
}

.movement-header h1 {
  margin: 0;
  font-size: clamp(4.2rem, 10vw, 8.4rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.movement-header .hero-meta {
  margin-top: 0;
}

.movement-header .story-back {
  margin-top: 8px;
}

.movement-intro {
  margin: 0;
  max-width: 39rem;
  color: #4f4f4f;
  font-size: 1rem;
  line-height: 1.85;
  overflow-wrap: break-word;
}

.movement-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 36px);
  align-items: start;
}

.movement-card {
  min-width: 0;
  display: grid;
  gap: 20px;
}

.movement-card video {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #f5f3f0;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.055);
  transition:
    box-shadow 260ms ease,
    opacity 260ms ease,
    transform 420ms var(--motion-soft);
}

.movement-card:hover video {
  opacity: 0.97;
  box-shadow: 0 22px 52px rgba(17, 17, 17, 0.075);
  transform: translateY(-2px) scale(1.004);
}

.movement-card-copy {
  display: grid;
  gap: 10px;
}

.movement-card-copy h2 {
  margin: 0;
  color: #1c1c1c;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.movement-card-copy p {
  margin: 0;
  color: #4f4f4f;
  font-size: 0.95rem;
  line-height: 1.75;
  overflow-wrap: break-word;
}

.movement-card-copy strong {
  color: #1c1c1c;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.meditation-story {
  padding-top: 30px;
}

.meditation-story-inner {
  width: 100%;
  max-width: 1080px;
}

.meditation-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: clamp(42px, 6vw, 88px);
  align-items: end;
  margin-bottom: 92px;
}

.meditation-hero-copy {
  display: grid;
  gap: 22px;
  min-width: 0;
}

.meditation-hero h1 {
  margin: 0;
  font-size: clamp(4.2rem, 10vw, 8.4rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.meditation-hero .hero-meta {
  margin-top: 0;
}

.meditation-hero .story-back {
  margin-top: 8px;
}

.meditation-intro {
  margin: 0;
  max-width: 34rem;
  color: #4f4f4f;
  font-size: 1rem;
  line-height: 1.85;
}

.meditation-intro--fragments {
  color: #1c1c1c;
  font-size: clamp(1.45rem, 2.6vw, 2.25rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.meditation-hero-image,
.meditation-image {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 8px;
  background: #f5f3f0;
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.055);
}

.meditation-hero-image {
  align-self: center;
}

.meditation-hero-image img,
.meditation-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    opacity 320ms ease,
    transform 520ms var(--motion-soft);
}

.meditation-hero-image img {
  aspect-ratio: 4 / 5;
}

.meditation-image img {
  aspect-ratio: 4 / 3;
}

.meditation-image--wide img {
  aspect-ratio: 16 / 10;
}

.meditation-image--portrait img {
  aspect-ratio: 3 / 4;
  object-position: center bottom;
}

.meditation-image--mood img {
  aspect-ratio: 3 / 4;
  object-position: center;
}

.meditation-image--bowl img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center bottom;
}

.meditation-image--small img {
  aspect-ratio: 1 / 1;
}

.meditation-hero-image:hover img,
.meditation-image:hover img {
  opacity: 0.96;
  transform: scale(1.012);
}

.meditation-chapters {
  display: grid;
  gap: clamp(72px, 9vw, 118px);
}

.meditation-chapter {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
  padding-top: clamp(42px, 6vw, 64px);
  border-top: 1px solid rgba(17, 17, 17, 0.09);
}

.meditation-chapter--forms {
  grid-template-columns: minmax(280px, 1fr) minmax(0, 0.82fr);
}

.meditation-chapter-copy {
  display: grid;
  gap: 14px;
}

.meditation-chapter-copy .eyebrow {
  margin-bottom: 0;
}

.meditation-chapter-copy h2 {
  margin: 0 0 6px;
  color: #1c1c1c;
  font-size: clamp(2.55rem, 5.4vw, 4.7rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.meditation-chapter-copy p:not(.eyebrow) {
  margin: 0;
  max-width: 34rem;
  color: #4f4f4f;
  font-size: 1rem;
  line-height: 1.85;
}

.meditation-sound-images {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: clamp(18px, 2.6vw, 28px);
  align-items: end;
}

.meditation-sound-images .meditation-image--small {
  transform: translateY(28px);
}

.meditation-closing {
  margin-top: clamp(86px, 10vw, 132px);
  padding-top: 54px;
  border-top: 1px solid rgba(17, 17, 17, 0.1);
}

.meditation-closing h2 {
  margin: 0;
  color: #1c1c1c;
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.meditation-closing h2 + h2 {
  margin-top: 10px;
}

.meditation-closing p {
  margin: 32px 0 0;
  max-width: 34rem;
  color: #4f4f4f;
  font-size: 1.08rem;
  line-height: 1.8;
}

.meditation-closing p + p {
  margin-top: 8px;
}

.ux-story {
  padding-top: 30px;
}

.ux-story-inner {
  width: 100%;
  max-width: 1080px;
}

.ux-header {
  display: grid;
  gap: 22px;
  margin-bottom: 72px;
}

.ux-header h1 {
  margin: 0;
  font-size: clamp(4.2rem, 10vw, 8.4rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.ux-header .hero-meta {
  margin-top: 0;
}

.ux-header .story-back {
  margin-top: 8px;
}

.ux-intro {
  margin: 0;
  max-width: 41rem;
  color: #4f4f4f;
  font-size: 1rem;
  line-height: 1.85;
}

.ux-notes {
  display: grid;
  gap: 34px;
}

.ux-article {
  display: grid;
  gap: 34px;
}

.ux-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.68fr);
  gap: clamp(44px, 6vw, 92px);
  align-items: center;
  padding: clamp(48px, 6vw, 76px) 0;
  border-top: 1px solid rgba(17, 17, 17, 0.09);
}

.ux-note-copy {
  display: grid;
  gap: 16px;
}

.ux-note-copy .eyebrow {
  margin-bottom: 0;
}

.ux-note-copy h2 {
  margin: 0;
  color: #1c1c1c;
  font-size: clamp(2.25rem, 4.6vw, 3.75rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.ux-note-copy p:not(.eyebrow) {
  margin: 0;
  max-width: 33rem;
  color: #4f4f4f;
  font-size: 1rem;
  line-height: 1.85;
}

.ux-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #4f4f4f;
  font-size: 1rem;
  line-height: 1.75;
}

.ux-list li {
  position: relative;
  padding-left: 20px;
}

.ux-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 6px;
  height: 1px;
  background: rgba(17, 17, 17, 0.34);
}

.ux-list--arrows li::before {
  content: "→";
  top: 0;
  width: auto;
  height: auto;
  background: none;
  color: rgba(17, 17, 17, 0.5);
}

.ux-list--quotes {
  gap: 10px;
  max-width: 31rem;
  color: #555;
  font-style: italic;
}

.ux-list--quotes li {
  padding: 14px 16px 14px 36px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(245, 243, 240, 0.68)),
    rgba(250, 248, 245, 0.76);
  color: #2f2f2f;
  font-size: 1.04rem;
  line-height: 1.55;
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.035);
}

.ux-list--quotes li::before {
  content: "“";
  left: 14px;
  top: 8px;
  width: auto;
  height: auto;
  background: none;
  color: rgba(255, 143, 77, 0.72);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.ux-research-insight {
  display: grid;
  gap: 8px;
  max-width: 34rem !important;
  padding: 16px 18px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-left: 3px solid rgba(255, 143, 77, 0.58);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(245, 243, 240, 0.64)),
    rgba(250, 248, 245, 0.82);
  box-shadow: 0 14px 34px rgba(17, 17, 17, 0.035);
}

.ux-mini-label {
  display: block;
  margin-right: 0;
  color: #6c6c6c;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.ux-note-copy blockquote {
  margin: 0;
  max-width: 31rem;
  padding: 16px 18px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-left: 3px solid rgba(255, 143, 77, 0.58);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  color: #2f2f2f;
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.03);
}

.ux-note-copy blockquote p {
  margin: 0;
  font-size: 1.06rem;
  font-style: italic;
  line-height: 1.65;
}

.artifact-topline {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
  color: #777;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.artifact-note {
  margin: 18px 0 0;
  color: #666;
  font-size: 0.82rem;
  line-height: 1.6;
}

.ux-research-page {
  background:
    radial-gradient(circle at 86% 7%, rgba(255, 153, 85, 0.12), transparent 26rem),
    radial-gradient(circle at 8% 28%, rgba(79, 140, 255, 0.08), transparent 24rem),
    #faf9f6;
}

.ux-header--research {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: clamp(42px, 6vw, 84px);
  align-items: start;
}

.ux-header-copy {
  display: grid;
  gap: 22px;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.ux-header--research h1 {
  max-width: 12ch;
}

.ux-hero-visual,
.ux-evidence {
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(17, 17, 17, 0.09);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(245, 243, 240, 0.92)),
    #f5f3f0;
  box-shadow: 0 22px 54px rgba(17, 17, 17, 0.055);
}

.ux-hero-visual {
  width: min(100%, 340px);
  justify-self: end;
  align-self: start;
  margin-top: clamp(18rem, 22vw, 23rem);
}

.ux-evidence {
  justify-self: end;
  width: min(100%, 420px);
  min-height: 0;
  padding: 20px;
}

.ux-takeaway {
  position: relative;
  max-width: 34rem !important;
  margin-top: 8px !important;
  padding: 18px 20px 18px 46px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 239, 222, 0.68), rgba(255, 255, 255, 0.72)),
    rgba(250, 248, 245, 0.86);
  color: #252525 !important;
  font-weight: 700;
  line-height: 1.65 !important;
  box-shadow: 0 16px 36px rgba(17, 17, 17, 0.04);
}

.ux-takeaway::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 26px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #ff8f4d;
  box-shadow: 0 0 0 7px rgba(255, 143, 77, 0.14);
}

.attention-map {
  display: grid;
  gap: 18px;
}

.attention-page,
.scan-board,
.heatmap-board {
  position: relative;
  min-height: 222px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(rgba(17, 17, 17, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.025) 1px, transparent 1px),
    rgba(250, 249, 246, 0.78);
  background-size: 32px 32px;
}

.attention-page span,
.scan-board span,
.heatmap-board span {
  display: block;
}

.attention-nav,
.attention-title,
.attention-copy,
.scan-item,
.heatmap-bar {
  position: absolute;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.12);
}

.attention-nav {
  left: 9%;
  top: 11%;
  width: 54%;
  height: 8px;
}

.attention-title {
  left: 9%;
  top: 23%;
  width: 70%;
  height: 28px;
  background: rgba(17, 17, 17, 0.16);
}

.attention-copy--one {
  left: 9%;
  top: 39%;
  width: 62%;
  height: 10px;
}

.attention-copy--two {
  left: 9%;
  top: 47%;
  width: 44%;
  height: 10px;
}

.attention-card {
  position: absolute;
  bottom: 12%;
  width: 22%;
  height: 58px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 7px;
  background: rgba(17, 17, 17, 0.045);
}

.attention-card--one {
  left: 9%;
}

.attention-card--two {
  left: 39%;
}

.attention-card--three {
  right: 9%;
}

.focus,
.heat-spot {
  position: absolute;
  border-radius: 999px;
  filter: blur(0.2px);
}

.focus--a {
  left: 12%;
  top: 17%;
  width: 96px;
  height: 96px;
  background: radial-gradient(circle, rgba(255, 91, 91, 0.42), rgba(255, 168, 77, 0.2) 44%, transparent 68%);
}

.focus--b {
  right: 14%;
  top: 28%;
  width: 78px;
  height: 78px;
  background: radial-gradient(circle, rgba(79, 140, 255, 0.34), rgba(79, 140, 255, 0.14) 44%, transparent 70%);
}

.focus--c {
  left: 39%;
  bottom: 12%;
  width: 88px;
  height: 88px;
  background: radial-gradient(circle, rgba(255, 205, 64, 0.42), rgba(255, 205, 64, 0.16) 46%, transparent 72%);
}

.focus--d {
  right: 9%;
  bottom: 15%;
  width: 62px;
  height: 62px;
  background: radial-gradient(circle, rgba(50, 190, 140, 0.3), rgba(50, 190, 140, 0.12) 48%, transparent 72%);
}

.scan-line {
  position: absolute;
  height: 1px;
  background: rgba(17, 17, 17, 0.2);
  transform-origin: left center;
}

.scan-line--one {
  left: 22%;
  top: 31%;
  width: 41%;
  transform: rotate(15deg);
}

.scan-line--two {
  left: 47%;
  top: 54%;
  width: 32%;
  transform: rotate(27deg);
}

.attention-legend {
  display: grid;
  gap: 8px;
}

.attention-legend p {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0;
  color: #555;
  font-size: 0.78rem;
  line-height: 1.5;
}

.attention-legend span {
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #ff8f4d;
}

.attention-legend p:nth-child(2) span {
  background: #4f8cff;
}

.attention-legend p:nth-child(3) span {
  background: #32be8c;
}

.scan-item--hero {
  left: 10%;
  top: 16%;
  width: 66%;
  height: 18px;
}

.scan-item--copy {
  left: 10%;
  top: 30%;
  width: 54%;
  height: 8px;
}

.scan-item--copy-short {
  left: 10%;
  top: 38%;
  width: 38%;
  height: 8px;
}

.scan-item--proof {
  right: 10%;
  top: 48%;
  width: 28%;
  height: 64px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 8px;
  background: rgba(79, 140, 255, 0.08);
}

.scan-item--action {
  left: 10%;
  bottom: 16%;
  width: 34%;
  height: 14px;
  background: rgba(17, 17, 17, 0.28);
}

.scan-dot {
  position: absolute;
  border-radius: 50%;
  background: #ff8f4d;
  box-shadow: 0 0 0 8px rgba(255, 143, 77, 0.14);
}

.scan-dot--one {
  left: 16%;
  top: 17%;
  width: 11px;
  height: 11px;
}

.scan-dot--two {
  left: 51%;
  top: 25%;
  width: 9px;
  height: 9px;
  background: #ffcd40;
}

.scan-dot--three {
  right: 24%;
  top: 52%;
  width: 12px;
  height: 12px;
  background: #4f8cff;
}

.scan-dot--four {
  left: 37%;
  bottom: 18%;
  width: 10px;
  height: 10px;
  background: #32be8c;
}

.scan-path,
.path-row svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.scan-path path {
  fill: none;
  stroke: rgba(17, 17, 17, 0.28);
  stroke-width: 1.4;
  stroke-dasharray: 5 8;
}

.path-study {
  display: grid;
  gap: 16px;
}

.path-row {
  position: relative;
  min-height: 96px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 8px;
  background: rgba(250, 249, 246, 0.72);
}

.path-row p {
  position: absolute;
  left: 18px;
  top: 16px;
  z-index: 1;
  margin: 0;
  color: #666;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.path-row path {
  fill: none;
  stroke-linecap: round;
  stroke-width: 4;
}

.path-row circle {
  fill: #1c1c1c;
}

.path-expected {
  stroke: rgba(50, 190, 140, 0.72);
}

.path-real {
  stroke: rgba(255, 143, 77, 0.82);
  stroke-dasharray: 9 9;
}

.heatmap-bar--one {
  left: 10%;
  top: 13%;
  width: 68%;
  height: 18px;
}

.heatmap-bar--two {
  left: 10%;
  top: 26%;
  width: 46%;
  height: 9px;
}

.heatmap-box {
  position: absolute;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 8px;
  background: rgba(17, 17, 17, 0.04);
}

.heatmap-box--one {
  left: 10%;
  top: 42%;
  width: 25%;
  height: 86px;
}

.heatmap-box--two {
  left: 39%;
  top: 42%;
  width: 25%;
  height: 86px;
}

.heatmap-box--three {
  right: 10%;
  top: 42%;
  width: 18%;
  height: 86px;
}

.heat-spot--hot {
  left: 11%;
  top: 37%;
  width: 104px;
  height: 104px;
  background: radial-gradient(circle, rgba(255, 76, 76, 0.62), rgba(255, 143, 77, 0.3) 42%, transparent 68%);
}

.heat-spot--warm {
  left: 42%;
  top: 15%;
  width: 88px;
  height: 88px;
  background: radial-gradient(circle, rgba(255, 205, 64, 0.5), rgba(255, 205, 64, 0.2) 44%, transparent 70%);
}

.heat-spot--cold {
  right: 12%;
  top: 47%;
  width: 68px;
  height: 68px;
  background: radial-gradient(circle, rgba(79, 140, 255, 0.3), rgba(79, 140, 255, 0.12) 48%, transparent 72%);
}

.ignored-area {
  position: absolute;
  right: 10%;
  bottom: 13%;
  padding: 6px 8px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 999px;
  color: #777;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.click-point {
  position: absolute;
  width: 11px;
  height: 11px;
  border: 2px solid rgba(17, 17, 17, 0.72);
  border-radius: 50%;
}

.click-point--one {
  left: 24%;
  top: 60%;
}

.click-point--two {
  left: 49%;
  top: 45%;
}

.research-quotes,
.journey-labels,
.observation-timeline {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.research-quotes p,
.journey-labels p {
  margin: 0;
  padding: 10px 12px;
  border-left: 2px solid rgba(255, 143, 77, 0.52);
  background: rgba(255, 255, 255, 0.46);
  color: #555;
  font-size: 0.76rem;
  line-height: 1.45;
}

.journey-labels p:first-child {
  border-left-color: rgba(50, 190, 140, 0.56);
}

.observation-timeline {
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.observation-timeline span {
  position: relative;
  padding: 9px 8px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  color: #555;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.priority-board {
  position: relative;
  min-height: 230px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(17, 17, 17, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, rgba(50, 190, 140, 0.08), rgba(255, 143, 77, 0.1));
  background-size: 33.33% 100%, 100% 33.33%, auto;
}

.priority-axis {
  position: absolute;
  color: #777;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.priority-axis--x {
  right: 16px;
  bottom: 14px;
}

.priority-axis--y {
  left: 14px;
  top: 16px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.priority-dot {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  min-height: 34px;
  padding: 8px 10px;
  border-radius: 999px;
  color: #1c1c1c;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 12px 26px rgba(17, 17, 17, 0.06);
}

.priority-dot--minor {
  left: 18%;
  bottom: 20%;
  background: rgba(79, 140, 255, 0.18);
}

.priority-dot--medium {
  left: 40%;
  top: 43%;
  background: rgba(255, 205, 64, 0.34);
}

.priority-dot--critical {
  right: 10%;
  top: 18%;
  max-width: 128px;
  background: rgba(255, 111, 79, 0.34);
}

.research-chain {
  display: grid;
  gap: 12px;
}

.research-chain div {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 8px;
  background: rgba(250, 249, 246, 0.76);
}

.research-chain div:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 36px;
  bottom: -13px;
  width: 1px;
  height: 13px;
  background: rgba(17, 17, 17, 0.18);
}

.research-chain span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(79, 140, 255, 0.12);
  color: #315fba;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.research-chain p {
  margin: 0;
  color: #1c1c1c;
  font-size: 1rem;
  font-weight: 700;
}

.ux-research-background {
  max-width: 42rem;
  margin-top: 52px;
  padding-top: 34px;
  border-top: 1px solid rgba(17, 17, 17, 0.1);
}

.ux-research-background .eyebrow {
  margin-bottom: 18px;
}

.ux-research-background h2 {
  margin: 0;
  color: #1c1c1c;
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  overflow-wrap: break-word;
}

.ux-research-background p {
  margin: 20px 0 0;
  color: #4f4f4f;
  font-size: 1rem;
  line-height: 1.85;
}

.ux-research-topics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 36px;
  margin-top: 34px;
}

.ux-research-topics div {
  display: grid;
  gap: 8px;
}

.ux-research-topics span {
  color: #777;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.ux-research-topics h3 {
  margin: 0;
  color: #1c1c1c;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ux-research-topics p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.75;
}

.ux-closing {
  margin-top: 86px;
  padding-top: 54px;
  border-top: 1px solid rgba(17, 17, 17, 0.1);
}

.ux-closing h2 {
  margin: 0;
  color: #1c1c1c;
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.ux-closing h2 + h2 {
  margin-top: 10px;
}

.ux-closing p {
  margin: 32px 0 0;
  max-width: 34rem;
  color: #4f4f4f;
  font-size: 1.08rem;
  line-height: 1.8;
}

@media (max-width: 960px) {
  .photo-gallery,
  .movement-grid,
  .ux-note {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (hover: none) {
  .interest-list a::after {
    opacity: 0.72;
    transform: translateX(0);
  }

  .photo-gallery figure:hover img {
    opacity: 1;
    transform: none;
  }

  .movement-card:hover video {
    opacity: 1;
    transform: none;
  }
}

.end-credits-section {
  background: #1c1c1c;
  color: #f6f3ee;
}

.end-credits-inner {
  display: grid;
  gap: 72px;
  grid-template-columns: 1fr 380px;
  align-items: flex-start;
  padding: 72px 0 78px;
  max-width: 980px;
  margin: 0 auto;
}

.end-credits-copy {
  max-width: 520px;
}

.end-credits-copy .eyebrow {
  color: #d6cfc6;
}

.end-credits-copy h2 {
  margin: 0;
  font-size: clamp(3rem, 5.5vw, 4.2rem); /* reduced max size for balance */
  line-height: 1.02;
  color: #ffffff;
}

.end-credits-details {
  display: grid;
  gap: 20px;
  justify-items: start;
  padding-top: 46px;
  padding-left: 24px;
  color: #efeae4;
}

.end-credits-details p,
.end-credits-details a {
  margin: 0;
  color: #f6f3ee;
  letter-spacing: 0.1em;
}

.credits-person strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: #ffffff;
}

.credits-person p {
  line-height: 1.8;
  font-size: 0.95rem;
}

.credits-contact,
.credits-links {
  display: grid;
  gap: 10px;
}

.credits-contact a,
.credits-links a {
  color: #f6f3ee;
  font-size: 0.95rem;
  line-height: 1.7;
}

.credits-contact .credits-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid rgba(246, 243, 238, 0.42);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
  transition: border-color 250ms ease, background 250ms ease, color 250ms ease, transform 250ms ease;
}

.credits-contact .credits-cta:hover {
  border-color: #ffffff;
  background: #f6f3ee;
  color: #1c1c1c;
  transform: translateY(-1px);
}

.footer-note {
  margin-top: 24px;
  color: #b8b1a7;
  font-size: 0.95rem;
}

.end-credits-section .section-inner {
  width: min(1140px, 100%);
  margin: 0 auto;
}

@media (max-width: 1100px) {
  .end-credits-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1100px) {
  .content {
    margin-left: 0;
    padding: 40px 32px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-visual {
    justify-content: flex-start;
    min-height: auto;
    margin-top: 0;
  }

  .hero-image {
    width: min(100%, 340px);
  }

  .chapter-nav {
    position: sticky;
    width: 100%;
    height: auto;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 20px 24px;
    border-right: none;
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
    background: #ffffff;
    z-index: 20;
  }

  /* Mobile navigation: show only the active chapter as a subtle top indicator */
  .chapter-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
  }

  .chapter-nav::before {
    display: none;
  }

  .chapter-nav a { display: none; }
  .chapter-nav a.active { display: flex; }

  .chapter-nav a.active .nav-num { font-size: 1rem; }
  .chapter-nav a.active .nav-label { font-size: 0.72rem; color: #7a7a7a; }

  /* Mobile hero: show portrait first for a cinematic flow */
  .hero-visual { order: -1; }

  /* Reduce excessive section spacing on mobile */
  .section { padding: 34px 0; }

  .hero-inner,
  .about-inner,
  .beyond-inner,
  .contact-inner,
  .project-feature {
    grid-template-columns: 1fr;
  }

  .project-feature--reverse {
    direction: ltr;
  }

  .brand-wall {
    gap: 34px 42px;
    max-width: 680px;
    margin-top: 32px;
  }

  .brand-logo img {
    height: 30px;
    max-width: 140px;
  }

  .brand-logo span {
    font-size: 0.98rem;
  }

  .brand-details p {
    font-size: 0.72rem;
  }

  .brand-logo--wide img {
    height: 28px;
    max-width: 168px;
  }

  .brand-logo--symbol img {
    height: 38px;
  }

  .brand-logo--tall img {
    height: 40px;
  }

  .brand-logo--heinz img {
    height: 60px;
    max-width: 296px;
  }

  .brand-logo--canon img {
    height: 27px;
    margin-left: 6px;
    max-width: 158px;
  }

  .brand-logo--sundell img {
    height: 46px;
    max-width: 276px;
  }

  .brand-logo--ing img {
    height: 27px;
    margin-left: -4px;
    max-width: 162px;
  }

  .brand-logo--hvg img {
    height: 25px;
    max-width: 114px;
  }

  .brand-logo--westend img {
    height: 35px;
    max-width: 76px;
  }

  .brand-logo--knauf img {
    height: 31px;
    max-width: 160px;
  }

  .brand-logo--elmu img {
    height: 33px;
    max-width: 148px;
  }

  .journey-items {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  html,
  body {
    overflow-x: hidden;
  }

  .page-shell,
  .content,
  .section,
  .section-inner,
  .hero-inner,
  .about-inner,
  .results-inner,
  .journey-inner,
  .projects-inner,
  .beyond-inner,
  .project-feature,
  .brand-wall,
  .result-grid,
  .journey-items {
    max-width: 100%;
  }

  .content {
    width: 100%;
    max-width: none;
    padding: 58px 4vw 28px;
  }

  .section-inner {
    width: 100%;
  }

  .section {
    padding: 44px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 0;
    padding-bottom: 38px;
  }

  .hero-inner {
    gap: 20px;
  }

  .hero-copy {
    display: grid;
    gap: 14px;
  }

  .hero-copy .eyebrow {
    margin-bottom: 4px;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 14vw, 4.6rem);
    line-height: 0.9;
    letter-spacing: -0.04em;
    max-width: 100%;
  }

  .hero-meta {
    gap: 12px;
    margin-top: 0;
  }

  .role {
    font-size: 0.74rem;
    letter-spacing: 0.16em;
  }

  .belief-statement {
    max-width: 21rem;
    font-size: 0.96rem;
    line-height: 1.55;
  }

  .hero-visual {
    width: 100%;
    justify-content: center;
    margin-top: 0;
  }

  .hero-image {
    width: min(74vw, 290px);
    max-width: 100%;
    max-height: 42vh;
    object-fit: cover;
    object-position: center top;
    margin: 0 auto;
  }

  .about-section,
  .results-section,
  .brand-wall-section,
  .journey-section,
  .projects-section,
  .beyond-section,
  .contact-section {
    padding-top: 46px;
    padding-bottom: 46px;
  }

  .about-inner,
  .results-inner,
  .journey-inner,
  .projects-inner,
  .beyond-inner,
  .contact-inner {
    gap: 24px;
  }

  .beyond-section {
    padding-top: 58px;
    padding-bottom: 64px;
  }

  .beyond-inner {
    min-height: auto;
    gap: 34px;
  }

  .beyond-inner h2 {
    font-size: clamp(3.15rem, 13vw, 4.6rem);
  }

  .story-page .content {
    padding: 58px 5vw 28px;
  }

  .story-page .hero {
    min-height: calc(100vh - 86px);
  }

  .story-page .hero h1 {
    font-size: clamp(3.1rem, 13vw, 4.1rem);
  }

  .photography-story {
    padding-top: 42px;
  }

  .movement-story {
    padding-top: 42px;
  }

  .meditation-story {
    padding-top: 42px;
  }

  .ux-story {
    padding-top: 42px;
  }

  .ux-header--research {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .photography-header {
    gap: 18px;
    margin-bottom: 38px;
  }

  .movement-header {
    gap: 18px;
    margin-bottom: 38px;
  }

  .meditation-hero {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 58px;
  }

  .meditation-hero-copy {
    gap: 18px;
  }

  .ux-header {
    gap: 18px;
    margin-bottom: 44px;
  }

  .photography-header h1 {
    font-size: clamp(3.1rem, 13vw, 4rem);
  }

  .movement-header h1 {
    font-size: clamp(3.5rem, 15vw, 4.7rem);
  }

  .meditation-hero h1 {
    font-size: clamp(3.2rem, 14vw, 4.3rem);
  }

  .ux-header h1 {
    font-size: clamp(2.75rem, 11vw, 3.35rem);
  }

  .photography-intro,
  .photography-more p:not(.eyebrow),
  .movement-intro,
  .meditation-intro,
  .ux-intro,
  .meditation-chapter-copy p:not(.eyebrow),
  .ux-note-copy p:not(.eyebrow),
  .ux-research-background p {
    max-width: 21rem;
    font-size: 0.95rem;
    line-height: 1.75;
  }

  .meditation-intro--fragments {
    font-size: clamp(1.35rem, 7vw, 1.85rem);
    line-height: 1.25;
  }

  .movement-card-copy p {
    max-width: 21rem;
  }

  .photo-gallery,
  .movement-grid,
  .meditation-chapter,
  .meditation-chapter--forms,
  .ux-note {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .meditation-chapters {
    gap: 58px;
  }

  .meditation-chapter {
    padding-top: 34px;
  }

  .meditation-chapter--forms .meditation-image {
    order: 2;
  }

  .meditation-chapter-copy h2 {
    max-width: 21rem;
    font-size: clamp(2.05rem, 9vw, 2.65rem);
    line-height: 1.02;
    overflow-wrap: break-word;
  }

  .meditation-hero-image,
  .meditation-image {
    width: min(100%, 21rem);
  }

  .meditation-hero-image img {
    aspect-ratio: 4 / 5;
  }

  .meditation-sound-images {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .meditation-sound-images .meditation-image--small {
    transform: none;
  }

  .meditation-closing {
    margin-top: 64px;
    padding-top: 38px;
  }

  .meditation-closing h2 {
    font-size: clamp(2.7rem, 11vw, 3.8rem);
  }

  .meditation-closing p {
    max-width: 21rem;
    font-size: 1rem;
  }

  .ux-notes {
    gap: 18px;
  }

  .ux-article {
    gap: 18px;
  }

  .ux-note {
    padding: 34px 0;
  }

  .ux-note-copy {
    gap: 14px;
  }

  .ux-list {
    max-width: 21rem;
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .ux-note-copy blockquote {
    max-width: 21rem;
  }

  .ux-note-copy h2 {
    max-width: 21rem;
    font-size: clamp(1.95rem, 8.4vw, 2.55rem);
    line-height: 1.03;
    overflow-wrap: break-word;
  }

  .ux-hero-visual,
  .ux-evidence {
    width: min(100%, 21rem);
    min-height: auto;
    padding: 16px;
    border-radius: 8px;
    justify-self: start;
    margin-top: 0;
    box-shadow: 0 14px 32px rgba(17, 17, 17, 0.045);
  }

  .ux-research-insight {
    max-width: 21rem !important;
    padding: 14px 15px;
  }

  .ux-list--quotes {
    max-width: 21rem;
  }

  .ux-list--quotes li {
    padding: 13px 14px 13px 34px;
    font-size: 0.98rem;
  }

  .ux-note-copy blockquote {
    max-width: 21rem;
    padding: 14px 15px;
  }

  .ux-note-copy blockquote p {
    font-size: 1rem;
  }

  .ux-takeaway {
    max-width: 21rem !important;
    padding: 16px 16px 16px 42px;
    line-height: 1.58 !important;
  }

  .ux-takeaway::before {
    left: 17px;
    top: 24px;
  }

  .attention-page,
  .scan-board,
  .heatmap-board {
    min-height: 205px;
  }

  .attention-title {
    height: 22px;
  }

  .attention-card {
    height: 48px;
  }

  .focus--a {
    width: 74px;
    height: 74px;
  }

  .focus--b {
    width: 62px;
    height: 62px;
  }

  .focus--c {
    width: 66px;
    height: 66px;
  }

  .attention-legend p {
    font-size: 0.72rem;
  }

  .path-row {
    min-height: 92px;
  }

  .path-row p {
    left: 14px;
    top: 13px;
    font-size: 0.58rem;
  }

  .heat-spot--hot {
    width: 80px;
    height: 80px;
  }

  .heat-spot--warm {
    width: 70px;
    height: 70px;
  }

  .heat-spot--cold {
    width: 54px;
    height: 54px;
  }

  .research-quotes p,
  .journey-labels p {
    font-size: 0.7rem;
  }

  .observation-timeline {
    grid-template-columns: 1fr;
  }

  .priority-board {
    min-height: 210px;
  }

  .priority-dot {
    min-width: 62px;
    min-height: 30px;
    font-size: 0.55rem;
  }

  .priority-dot--medium {
    left: 34%;
  }

  .priority-dot--critical {
    right: 8%;
    max-width: 108px;
  }

  .research-chain div {
    grid-template-columns: 38px 1fr;
    padding: 12px 14px;
  }

  .research-chain span {
    width: 30px;
    height: 30px;
  }

  .artifact-topline {
    display: grid;
    gap: 6px;
    margin-bottom: 16px;
    font-size: 0.56rem;
  }

  .ux-research-background {
    margin-top: 34px;
    padding-top: 28px;
  }

  .ux-research-background h2 {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .ux-research-topics {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .ux-closing {
    margin-top: 58px;
    padding-top: 38px;
  }

  .ux-closing h2 {
    font-size: clamp(2.7rem, 11vw, 3.8rem);
  }

  .ux-closing p {
    max-width: 21rem;
    font-size: 1rem;
  }

  .movement-card {
    gap: 16px;
  }

  .photography-more {
    margin-top: 48px;
    padding-top: 28px;
  }

  .section-copy,
  .project-copy p,
  .journey-items p {
    font-size: 0.94rem;
    line-height: 1.7;
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 0.7rem;
  }

  .about-list {
    gap: 18px;
  }

  .about-list div,
  .result-grid > div,
  .journey-items article,
  .interest-list a,
  .contact-group a {
    gap: 8px;
  }

  .end-credits-details {
    padding-top: 0;
    padding-left: 0;
  }

  .chapter-nav {
    position: fixed;
    top: 10px;
    left: 4vw;
    width: auto;
    max-width: 92vw;
    height: auto;
    padding: 8px 10px;
    gap: 0;
    border: 1px solid rgba(17, 17, 17, 0.08);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    align-items: center;
    z-index: 50;
  }

  .chapter-nav a {
    font-size: 0.72rem;
  }

  .chapter-nav a.active {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
  }

  .chapter-nav a.active .nav-num {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }

  .chapter-nav a.active .nav-num::after {
    content: " / 08 —";
    margin-left: 4px;
    color: #8b8b8b;
    font-weight: 500;
  }

  .chapter-nav a.active .nav-label {
    max-width: 11rem;
    overflow: hidden;
    color: #555;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .section-heading h2 {
    font-size: clamp(3rem, 13vw, 4.35rem);
    line-height: 0.95;
  }

  .project-copy h3 {
    font-size: clamp(2rem, 8vw, 2.7rem);
    line-height: 1.05;
  }

  .result-grid {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-top: 24px;
  }

  .result-grid strong {
    font-size: clamp(4rem, 18vw, 6rem);
  }

  .brand-wall {
    max-width: 92vw;
    margin-top: 24px;
    gap: 14px;
    padding: 12px 0;
  }

  .journey-items {
    gap: 14px;
    margin-top: 24px;
  }

  .journey-items article {
    grid-template-rows: clamp(160px, 46vw, 198px) auto auto auto 1fr;
    padding: 28px 24px;
  }

  .journey-items article:not(:last-child)::before {
    top: auto;
    left: 50%;
    bottom: -20px;
    width: 1.5px;
    height: 22px;
    background: rgba(17, 17, 17, 0.36);
    transform: translateX(-50%) scaleY(0.5);
    transform-origin: center top;
  }

  .journey-items article:not(:last-child)::after {
    top: auto;
    left: 50%;
    bottom: -23px;
    width: 8px;
    height: 8px;
    border-top-color: rgba(17, 17, 17, 0.42);
    border-right-color: rgba(17, 17, 17, 0.42);
    transform: translateX(-50%) rotate(135deg);
  }

  .journey-section.revealed .journey-items article:not(:last-child)::before {
    transform: translateX(-50%) scaleY(1);
  }

  .journey-media {
    aspect-ratio: auto;
    width: 100%;
    height: clamp(160px, 46vw, 198px);
    margin-bottom: 18px;
  }

  .journey-media--carnation img {
    object-position: 50% 43%;
  }

  .journey-media--canon img {
    object-position: 38% 28%;
  }

  .journey-media--sundell img {
    object-position: 50% 30%;
  }

  .journey-media--ucg img {
    object-position: 42% 46%;
  }

  .project-feature {
    gap: 22px;
    padding: 0;
  }

  .project-visual {
    min-height: auto;
    padding: 10px;
    box-shadow: 0 12px 28px rgba(17, 17, 17, 0.04);
  }

  .project-copy {
    max-width: 92vw;
  }

  .project-image--phone {
    width: auto;
    max-width: min(100%, 300px);
    max-height: 420px;
    margin: 0 auto;
  }

  .project-image--finance {
    width: auto;
    max-width: min(100%, 300px);
    max-height: 420px;
  }

  .project-image--wide {
    width: 100%;
    height: auto;
    min-height: 220px;
  }

  .placeholder-box {
    min-height: 320px;
  }

  .brand-logo {
    flex: 1 1 100%;
    max-width: 320px;
    min-width: min(100%, 280px);
    min-height: 112px;
    display: grid;
    align-content: center;
    gap: 10px;
    padding: 16px 18px;
    border-color: rgba(229, 226, 221, 0.72);
    background: rgba(246, 244, 240, 0.46);
    box-shadow: none;
  }

  .brand-logo img {
    height: 26px;
    max-width: 118px;
    justify-self: center;
  }

  .brand-logo span {
    font-size: 0.9rem;
    justify-self: center;
  }

  .brand-details {
    position: static;
    inset: auto;
    padding: 0 8px;
    background: transparent;
    opacity: 1;
    transform: none;
  }

  .brand-details p {
    font-size: 0.72rem;
    letter-spacing: 0.03em;
    line-height: 1.42;
  }

  .section.revealed .brand-logo:is(:hover, :focus-visible),
  .brand-logo:is(:hover, :focus-visible) {
    transform: none;
    box-shadow: none;
  }

  .brand-logo:is(:hover, :focus-visible) img,
  .brand-logo:is(:hover, :focus-visible) span {
    opacity: 0.5;
    transform: none;
  }

  .brand-logo--wide img {
    height: 24px;
    max-width: 142px;
  }

  .brand-logo--symbol img {
    height: 34px;
  }

  .brand-logo--tall img {
    height: 36px;
  }

  .brand-logo--heinz img {
    height: 54px;
    max-width: 256px;
  }

  .brand-logo--canon img {
    height: 24px;
    margin-left: 4px;
    max-width: 132px;
  }

  .brand-logo--sundell img {
    height: 42px;
    max-width: 238px;
  }

  .brand-logo--ing img {
    height: 24px;
    margin-left: -3px;
    max-width: 136px;
  }

  .brand-logo--hvg img {
    height: 23px;
    max-width: 104px;
  }

  .brand-logo--westend img {
    height: 31px;
    max-width: 68px;
  }

  .brand-logo--knauf img {
    height: 28px;
    max-width: 136px;
  }

  .brand-logo--elmu img {
    height: 30px;
    max-width: 132px;
  }

  .end-credits-section {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .end-credits-inner {
    width: 100%;
    max-width: 100%;
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 46px 24px 42px;
  }

  .end-credits-copy {
    max-width: 100%;
  }

  .end-credits-copy .eyebrow {
    margin-bottom: 24px;
  }

  .end-credits-copy h2 {
    max-width: 100%;
    font-size: clamp(2.25rem, 10vw, 3.65rem);
    line-height: 1.04;
    letter-spacing: -0.03em;
    overflow-wrap: break-word;
  }

  .end-credits-details {
    padding-top: 0;
    gap: 30px;
    max-width: 100%;
  }

  .credits-person strong {
    font-size: 1rem;
  }

  .credits-person p {
    font-size: 0.95rem;
    line-height: 1.8;
    letter-spacing: 0.06em;
  }

  .credits-contact .credits-cta {
    min-height: 44px;
    max-width: 100%;
    padding: 0 18px;
    font-size: 0.82rem;
    white-space: nowrap;
  }

  .footer-note {
    margin-top: 4px;
    font-size: 0.86rem;
    letter-spacing: 0.08em;
  }

  .content {
    padding-bottom: 28px;
  }
}

@media (min-width: 721px) and (max-width: 768px) {
  .project-copy h3 {
    font-size: clamp(2.15rem, 6.4vw, 2.9rem);
    line-height: 1.05;
  }
}

@media (hover: hover) and (pointer: fine) {
  .journey-items article:hover .journey-media img {
    transform: scale(1.025);
  }

  .section.revealed .project-feature:hover {
    transform: translateY(-4px);
  }

  .project-feature:hover .project-image {
    border-color: rgba(17, 17, 17, 0.14);
    box-shadow: 0 14px 32px rgba(17, 17, 17, 0.055);
    transform: scale(1.015);
  }

  .credits-contact .credits-cta:hover {
    transform: translateY(-1px);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
    transition-delay: 0ms !important;
  }

  .section,
  .section .eyebrow,
  .section h2,
  .section .section-copy,
  .about-list > div,
  .result-grid > div,
  .brand-logo,
  .journey-items article,
  .project-feature,
  .interest-list a,
  .end-credits-details,
  .hero h1,
  .hero .role,
  .hero .belief-statement,
  .hero-image {
    opacity: 1;
    transform: none;
  }

  .journey-items article:not(:last-child)::before,
  .journey-items article:not(:last-child)::after {
    opacity: 1;
  }

  .brand-logo:hover img,
  .brand-logo:hover span,
  .journey-items article:hover .journey-media img,
  .section.revealed .project-feature:hover,
  .project-feature:hover .project-image,
  .interest-list a:hover,
  .credits-contact .credits-cta:hover {
    transform: none;
  }
}
