:root {
  --bg: #f4efe4;
  --bg-strong: #f7f1e7;
  --surface: rgba(248, 243, 234, 0.88);
  --surface-strong: #fbf6ee;
  --text: #242424;
  --muted: rgba(36, 36, 36, 0.72);
  --line: rgba(36, 36, 36, 0.08);
  --accent: #9fb0ff;
  --accent-soft: rgba(159, 176, 255, 0.22);
  --olive: #9fb0ff;
  --shadow: 0 30px 80px rgba(57, 45, 28, 0.12);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --max-width: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Mona Sans", sans-serif;
  background:
    radial-gradient(circle at 18% 26%, rgba(239, 125, 150, 0.34), transparent 34%),
    radial-gradient(circle at 52% 32%, rgba(247, 190, 134, 0.28), transparent 30%),
    radial-gradient(circle at 84% 22%, rgba(255, 247, 159, 0.26), transparent 28%),
    linear-gradient(90deg, #ec8f9b 0%, #f5b596 46%, #fbf3a8 100%);
  background-attachment: fixed;
}

img {
  display: block;
  width: 100%;
}

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

.page-shell {
  width: min(calc(100% - 48px), var(--max-width));
  margin: 0 auto;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 14px 0 12px;
  margin-bottom: 10px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.site-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #000000;
  z-index: -1;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px;
  margin-left: auto;
}

.site-nav a {
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--text);
  background: #fbf3a8;
  transform: translateY(-1px);
}

.hero,
.section {
  position: relative;
  scroll-margin-top: 92px;
}

.hero {
  display: block;
  padding: 48px 0 38px;
  margin: 8px 0 0;
  background:
    radial-gradient(circle at 16% 24%, rgba(239, 125, 150, 0.2), transparent 28%),
    radial-gradient(circle at 50% 35%, rgba(247, 190, 134, 0.16), transparent 24%),
    radial-gradient(circle at 84% 26%, rgba(255, 247, 159, 0.14), transparent 22%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-highlight {
  display: inline-block;
  color: #000000;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  text-transform: none;
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 24%,
    #fbf3a8 24%,
    #fbf3a8 88%,
    transparent 88%,
    transparent 100%
  );
  padding: 0 0.08em;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Mona Sans", sans-serif;
}

h1,
h2 {
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(2.7rem, 6vw, 4.9rem);
  max-width: none;
  width: 100%;
  line-height: 0.92;
  letter-spacing: -0.03em;
}

.title-chip {
  display: inline-block;
  padding: 0 0.08em;
  margin-bottom: 0.08em;
  border-radius: 0.04em;
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 18%,
    rgba(116, 226, 239, 0.88) 18%,
    rgba(116, 226, 239, 0.88) 88%,
    transparent 88%,
    transparent 100%
  );
}

.title-subline {
  display: inline-block;
  font-size: 0.74em;
  line-height: 1;
}

h2 {
  font-size: clamp(2.7rem, 5vw, 4.9rem);
  max-width: 12ch;
}

h3 {
  font-size: 1.18rem;
  line-height: 1.2;
}

.hero-text,
.card p,
.card li,
.section-heading + * p {
  color: var(--muted);
  line-height: 1.72;
  font-size: 1rem;
}

.hero-copy {
  width: 100%;
  margin: 0;
  text-align: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: #f3efe8;
  background: var(--text);
  box-shadow: 0 12px 24px rgba(36, 36, 36, 0.12);
}

.button.secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(36, 36, 36, 0.16);
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.section {
  padding: 52px 8px 0;
}

.overview {
  display: block;
  padding: 26px 8px 44px;
  border-bottom: 1px solid rgba(36, 36, 36, 0.08);
}

.overview-content {
  max-width: none;
}

.overview-lead {
  margin: 0 0 14px;
  color: var(--text);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 600;
  line-height: 1.5;
}

.overview-content p {
  margin: 0 0 14px;
  font-size: 1rem;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.grid,
.timeline,
.materials-grid,
.phase-grid,
.research-layout,
.reflections-grid {
  display: grid;
  gap: 18px;
}

.two-up {
  grid-template-columns: 1.1fr 0.9fr;
}

.timeline {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.workshop-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 42px;
  align-items: start;
}

.workshop-copy {
  max-width: 720px;
}

.workshop-copy p {
  margin: 0 0 18px;
}

.workshop-lead {
  color: var(--text);
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  font-weight: 700;
  line-height: 1.45;
}

.workshop-prompt {
  margin: 0 0 22px;
  color: #000000;
  font-size: clamp(1.45rem, 2.8vw, 2.1rem);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0;
}

.workshop-images {
  position: relative;
  min-height: 470px;
}

.workshop-image-card {
  position: absolute;
  width: min(100%, 420px);
  margin: 0;
  padding: 6px;
  background:
    linear-gradient(135deg, rgba(124, 230, 228, 0.72), rgba(157, 238, 146, 0.74));
  border: 1px solid rgba(36, 36, 36, 0.86);
  border-radius: 14px;
  box-shadow: 0 10px 0 rgba(24, 24, 24, 0.95);
}

.workshop-image-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
  border-radius: 8px;
}

.workshop-image-top {
  top: -58px;
  right: 34px;
  transform: rotate(-4deg);
  z-index: 1;
}

.workshop-image-bottom {
  right: 0;
  bottom: 18px;
  transform: rotate(6deg);
  z-index: 2;
}

.materials-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.editorial-layout {
  grid-template-columns: 0.95fr 1.15fr;
  grid-template-areas:
    "copy wide"
    "small-a small-b";
}

.editorial-layout .tall-copy {
  grid-area: copy;
}

.editorial-layout .wide {
  grid-area: wide;
}

.editorial-layout .media-card:nth-of-type(2) {
  grid-area: small-a;
}

.editorial-layout .media-card:nth-of-type(3) {
  grid-area: small-b;
}

.phase-text-block {
  width: 100%;
}

.phase-text-block p {
  margin: 0 0 22px;
  max-width: none;
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.78;
}

.inline-audio-link {
  color: #000000;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.14em;
}

.documentation-collage {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
  margin: 8px 0 28px;
  align-items: start;
}

.documentation-card {
  margin: 0;
}

.documentation-card img {
  display: block;
  width: 100%;
  object-fit: cover;
  padding: 6px;
  background:
    linear-gradient(135deg, rgba(124, 230, 228, 0.72), rgba(157, 238, 146, 0.74));
  border: 1px solid rgba(36, 36, 36, 0.86);
  border-radius: 14px;
  box-shadow: 0 10px 0 rgba(24, 24, 24, 0.95);
}

.documentation-card-1 {
  transform: rotate(-2.4deg) translateY(6px);
}

.documentation-card-2 {
  transform: rotate(1.8deg) translateY(-4px);
}

.documentation-card-3 {
  transform: rotate(2.2deg) translateY(8px);
}

.documentation-card-4 {
  transform: rotate(-1.7deg) translateY(-2px);
}

.phase-inline-image {
  width: 100%;
  margin: 0 0 24px;
  display: flex;
  justify-content: center;
}

.phase-inline-image img,
.phase-collage-item img {
  display: block;
  width: 100%;
  object-fit: cover;
  padding: 6px;
  background:
    linear-gradient(135deg, rgba(124, 230, 228, 0.72), rgba(157, 238, 146, 0.74));
  border: 1px solid rgba(36, 36, 36, 0.86);
  border-radius: 14px;
  box-shadow: 0 10px 0 rgba(24, 24, 24, 0.95);
}

.phase-inline-image img {
  max-width: 980px;
}

.phase-collage {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  margin: 4px auto 28px;
  max-width: 1080px;
  overflow-x: auto;
  overflow-y: visible;
  padding: 14px 8px 24px;
}

.phase-collage-item {
  flex: 0 0 auto;
  margin: 0;
  opacity: 0;
  transition:
    opacity 420ms ease,
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.phase-collage-item-1 {
  width: clamp(130px, 12vw, 172px);
  transform: rotate(-8deg) translateY(52px);
}

.phase-collage-item-2 {
  width: clamp(132px, 12vw, 176px);
  margin-left: -10px;
  transform: rotate(4deg) translateY(64px);
}

.phase-collage-item-3 {
  width: clamp(132px, 12vw, 176px);
  margin-left: -8px;
  transform: rotate(-6deg) translateY(48px);
}

.phase-collage-item-4 {
  width: clamp(144px, 13vw, 188px);
  margin-left: -10px;
  transform: rotate(2deg) translateY(56px);
}

.phase-collage-item-5 {
  width: clamp(128px, 11.8vw, 170px);
  margin-left: -8px;
  transform: rotate(-7deg) translateY(44px);
}

.phase-collage-item.is-visible {
  opacity: 1;
}

.phase-collage-item-1.is-visible {
  transform: rotate(-8deg) translateY(10px);
}

.phase-collage-item-2.is-visible {
  transform: rotate(4deg) translateY(22px);
}

.phase-collage-item-3.is-visible {
  transform: rotate(-6deg) translateY(6px);
}

.phase-collage-item-4.is-visible {
  transform: rotate(2deg) translateY(14px);
}

.phase-collage-item-5.is-visible {
  transform: rotate(-7deg) translateY(2px);
}

.phase-grid {
  grid-template-columns: 1.05fr repeat(3, 1fr);
}

.group-showcase {
  margin-top: 28px;
}

.group-label {
  margin: 0 0 14px;
  color: #000000;
  font-family: "Caveat", cursive;
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 600;
  line-height: 1;
}

.group-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

.group-media-frame {
  margin: 0;
  width: fit-content;
  max-width: 100%;
}

.group-media-frame img,
.group-media-frame video {
  display: block;
  width: min(100%, 520px);
  padding: 6px;
  background:
    linear-gradient(135deg, rgba(124, 230, 228, 0.72), rgba(157, 238, 146, 0.74));
  border: 1px solid rgba(36, 36, 36, 0.86);
  border-radius: 14px;
  box-shadow: 0 10px 0 rgba(24, 24, 24, 0.95);
}

.group-media-frame img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.group-media-frame video {
  object-fit: contain;
  background-color: #ffffff;
}

.group-media-frame-video-landscape video {
  width: min(100%, 520px);
  aspect-ratio: 4 / 3;
}

.group-media-frame-video-portrait video {
  width: min(100%, 270px);
  aspect-ratio: 9 / 16;
}

.group-media-frame-image {
  transform: rotate(-2.4deg);
}

.group-media-frame-video {
  transform: rotate(2.2deg) translateY(10px);
}

.site-footer {
  position: relative;
  margin-top: auto;
  padding: 10px 0;
  background: #000000;
}

.site-footer p {
  margin: 0;
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 400;
  opacity: 0.88;
  line-height: 1.4;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  background: #000000;
  transform: translateX(-50%);
  z-index: -1;
}

.reflections-grid {
  grid-template-columns: 1.1fr repeat(3, 1fr);
}

.research-layout {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wide-card {
  grid-column: span 1;
}

.card {
  position: relative;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(247, 241, 232, 0.72)),
    rgba(255, 255, 255, 0.28);
  box-shadow: 0 8px 24px rgba(36, 36, 36, 0.04);
  overflow: hidden;
}

.card::after {
  content: "";
  position: absolute;
  inset: auto -18% -58% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(162, 178, 234, 0.24), rgba(162, 178, 234, 0));
  pointer-events: none;
}

.statement-card p {
  color: var(--text);
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  line-height: 1.3;
  font-weight: 700;
}

.step-number,
.material-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  height: 34px;
  padding: 0 12px;
  margin-bottom: 16px;
  border-radius: 999px;
  color: var(--accent);
  background: var(--accent-soft);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.materials-note {
  margin-top: 18px;
}

.media-card {
  padding: 14px;
}

.media-card img,
.hero-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: calc(var(--radius-xl) - 12px);
}

.hero-card img {
  aspect-ratio: 0.87;
}

figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.phase-summary {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bullet-list {
  padding-left: 18px;
  margin: 14px 0 0;
  color: var(--muted);
}

.quote-card {
  display: grid;
  place-items: center;
  min-height: 100%;
  background:
    linear-gradient(135deg, rgba(174, 190, 255, 0.16), rgba(255, 230, 166, 0.14)),
    rgba(255, 255, 255, 0.56);
}

.quote {
  margin: 0;
  color: var(--text);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .two-up,
  .workshop-layout,
  .group-media-grid,
  .phase-grid,
  .reflections-grid,
  .materials-grid,
  .research-layout,
  .timeline {
    grid-template-columns: 1fr;
  }

  .editorial-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "wide"
      "small-a"
      "small-b";
  }

  .quote {
    font-size: 2.2rem;
  }

  .overview {
    display: block;
  }

  .workshop-images {
    min-height: auto;
    display: grid;
    gap: 18px;
  }

  .workshop-image-card {
    position: relative;
    width: 100%;
    max-width: none;
  }

  .workshop-image-top,
  .workshop-image-bottom {
    top: auto;
    right: auto;
    bottom: auto;
    transform: none;
  }
}

@media (max-width: 840px) {
  .page-shell {
    width: min(calc(100% - 18px), var(--max-width));
    padding: 0;
  }

  .site-header {
    position: static;
    justify-content: flex-end;
    padding: 10px 0 12px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .site-header::before {
    display: none;
  }

  .site-nav {
    justify-content: flex-end;
  }

  .hero {
    padding: 34px 0 26px;
  }

  h1 {
    max-width: none;
    font-size: clamp(2.3rem, 11vw, 3.7rem);
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }
}
