/* ============================================================
   QUEER/ING FUTURES RESEARCH STUDIO
   Shared stylesheet

   ORGANIZATION
   01. Universal settings + base
   02. Universal header / navigation / utilities
   03. Universal subpage masthead
   04. Index page
   05. Approaches page
   06. Projects page
   07. Universal footer
   08. Responsive: universal / index
   09. Responsive: subpage masthead
   10. Responsive: approaches page
   11. Responsive: projects page

   Keep future page-specific styles in their own clearly labeled
   section before the universal footer / responsive sections.
   ============================================================ */


/* ============================================================
   01. UNIVERSAL SETTINGS + BASE
   ============================================================ */

:root {
  --paper: #ffffff;
  --ink: #0c0c0c;
  --hairline: #cfcfcf;
  --rail-width: 26px;
  --shell-pad: clamp(28px, 3.5vw, 56px);
  --header-h: 94px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Sofia Sans", Arial, sans-serif;
  background: var(--paper);
  color: var(--ink);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::selection {
  background: #111;
  color: #fff;
}

.rainbow-rail {
  position: fixed;
  inset: 0 auto 0 0;
  width: var(--rail-width);
  background: linear-gradient(
    to bottom,
    #ff3a46 0%,
    #ff8a2a 15%,
    #f4dd28 30%,
    #57c957 47%,
    #20aeb6 63%,
    #3685e8 76%,
    #6d4bd8 88%,
    #bd4bb5 100%
  );
  z-index: 10;
}

.page-shell {
  min-height: 100vh;
  margin-left: var(--rail-width);
  padding: 0 var(--shell-pad);
}

.site-header {
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: 1.15fr 2.5fr 1fr;
  align-items: start;
  gap: 28px;
  padding: 26px 0 18px;
}

.brand {
  color: inherit;
  text-decoration: none;
  width: max-content;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.brand-name {
  display: block;
  font-size: clamp(22px, 1.65vw, 31px);
  line-height: 1;
  letter-spacing: 0.13em;
  font-weight: 500;
  white-space: nowrap;
}

.brand-subtitle {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  letter-spacing: 0.48em;
  font-weight: 300;
  text-align: center;
}

.main-nav {
  display: flex;
  gap: clamp(20px, 2.3vw, 42px);
  justify-content: center;
  padding-top: 8px;
  flex-wrap: wrap;
}

.main-nav a,
.text-link,
.card-copy a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 4px;
}

.main-nav a {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.main-nav a:hover {
  font-weight: 700;
}

.main-nav a[aria-current="page"] {
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.nav-toggle { display: none; }

.header-clock {
  justify-self: end;
  display: grid;
  gap: 2px;
  justify-items: start;
  min-width: 118px;
  padding-top: 2px;
  font-family: "Sofia Sans", Arial, sans-serif;
  line-height: 1;
}

.clock-place,
.clock-date,
.clock-now {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.clock-time {
  margin: 3px 0;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}

.clock-date {
  color: #888;
}

.clock-now {
  margin-top: 7px;
}



/* ============================================================
   03. UNIVERSAL SUBPAGE MASTHEAD
   Shared by primary subpages so titles remain in the exact
   same position when navigating between sections.
   ============================================================ */

.subpage-masthead {
  min-height: 310px;
  padding: 48px 0 52px;
  border-bottom: 1px solid var(--hairline);
}

.subpage-masthead h1 {
  margin: 0;
  font-size: clamp(58px, 6vw, 108px);
  line-height: 0.92;
  letter-spacing: -0.055em;
  font-weight: 400;
}

.subpage-deck {
  margin: 24px 0 0;
  max-width: 30ch;
  color: #787878;
  font-size: clamp(24px, 2.1vw, 38px);
  line-height: 1.12;
  font-weight: 300;
  letter-spacing: -0.025em;
}

/* ============================================================
   04. INDEX PAGE
   Page-specific styles for index.html
   ============================================================ */

.hero-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(520px, 1.35fr) minmax(360px, 0.95fr);
  gap: clamp(32px, 3.5vw, 64px);
  align-items: center;
  min-height: 575px;
  border-bottom: 1px solid var(--hairline);
  padding: 26px 0 36px;
}

.hero-statement h1 {
  margin: 0;
  font-size: clamp(40px, 3.65vw, 66px);
  line-height: 1.03;
  letter-spacing: -0.045em;
  font-weight: 400;
}

.short-rule {
  display: block;
  width: 46px;
  height: 1.5px;
  background: var(--ink);
  margin-top: 20px;
}

.short-rule2 {
  display: block;
  width: 46px;
  height: 1.5px;
  background: var(--ink);
  margin-bottom: 20px;
}

.diagram-wrap {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 500px;
}

.diagram-wrap::before,
.diagram-wrap::after {
  content: "";
  position: absolute;
  top: 11%;
  bottom: 11%;
  width: 8px;
  opacity: 0.42;
  pointer-events: none;
  background: center / 8px 12px repeat-y
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='12' viewBox='0 0 8 12'%3E%3Cpath d='M4 0 C2.25 1.5 2.25 1.5 4 3 C5.75 4.5 5.75 4.5 4 6 C2.25 7.5 2.25 7.5 4 9 C5.75 10.5 5.75 10.5 4 12' fill='none' stroke='%23a8a8a8' stroke-width='0.9' stroke-linecap='round' vector-effect='non-scaling-stroke'/%3E%3C/svg%3E");
}

.diagram-wrap::before { left: calc(-1 * clamp(32px, 3.5vw, 64px) / 2); }
.diagram-wrap::after  { right: calc(-1 * clamp(32px, 3.5vw, 64px) / 2); }

.diagram {
  display: block;
  width: 100%;
  height: auto;
}

.diagram-stage {
  position: relative;
  width: min(100%, 570px);
}

.diagram-link {
  position: absolute;
  z-index: 1;
  transform: translate(-50%, -50%);
  border-radius: 3px;
  cursor: pointer;
}

.diagram-link:hover {
  background: rgb(12 12 12 / 5%);
  outline: 1px solid rgb(12 12 12 / 18%);
}

.diagram-link:focus-visible {
  background: rgb(12 12 12 / 7%);
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

.diagram-link-postnormal { left: 50%; top: 26%; width: 32%; height: 11%; }
.diagram-link-critical { left: 26%; top: 50%; width: 25%; height: 12%; }
.diagram-link-liberatory { left: 74%; top: 50%; width: 22%; height: 12%; }
.diagram-link-otherwise { left: 50%; top: 74%; width: 30%; height: 11%; }

.open-call {
  position: relative;
  padding: 0 clamp(28px, 2.5vw, 48px) 0 clamp(14px, 1.2vw, 24px);
  min-height: 490px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.open-call-section-label {
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.participate-item {
  padding: 20px 0 22px;
  border-top: 1px solid var(--hairline);
}

.participate-item:last-child {
  padding-bottom: 0;
}

.participate-type {
  margin: 0 0 24px;
  color: #000;
  font-size: 9px;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 600;
  text-transform: uppercase;
}

.participate-title,
.open-call-title,
.salon-title {
  display: block;
  margin: 0;
  font-size: clamp(22px, 1.65vw, 30px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 400;
  white-space: normal;
}

.salon-title,
.open-call-title {
  display: inline;
  width: fit-content;
  background: #fff200;
  padding: 0 0.12em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.participate-meta,
.salon-kicker {
  margin: 9px 0 0;
  color: #555;
  font-size: 10px;
  line-height: 1.3;
  letter-spacing: 0.13em;
  font-weight: 500;
  text-transform: uppercase;
  white-space: normal;
}

.participate-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 15px;
}

.text-link {
  margin-top: 0;
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: 0.12em;
  font-weight: 600;
}

.text-link span {
  margin-left: 6px;
  font-size: 1.2em;
}

.open-call-copy {
  margin: 16px 0 0;
  max-width: 32ch;
  color: #4f4f4f;
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1.35;
  font-weight: 300;
}

.open-call-question {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-weight: 500;
}

.values-stack {
  margin: 16px 0 0;
  color: #000;
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: 0.18em;
  font-weight: 500;
}

.approach-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 260px;
  border-bottom: 1px solid var(--hairline);
}

.approach-card {
  position: relative;
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 20px;
  padding: 34px 18px 34px 28px;
  border-right: 1px solid var(--hairline);
}

.approach-card:first-child { padding-left: 0; }
.approach-card:last-child { border-right: 0; padding-right: 0; }

.card-index {
  position: absolute;
  top: 34px;
  left: 0;
  font-size: 11px;
  font-weight: 500;
}

.approach-card:not(:first-child) .card-index { left: 28px; }

.thumb {
  margin-top: 36px;
  width: 112px;
  aspect-ratio: 0.82 / 1;
  background-image: var(--thumb-image);
  background-position: center;
  background-size: cover;
}

/* FPO: swap these paths independently as each approach gets its own image. */
.thumb-postnormal { --thumb-image: url("images/Sample_Them04.png"); }
.thumb-critical   { --thumb-image: url("images/Sample_Them04.png"); }
.thumb-tech       { --thumb-image: url("images/Sample_Them04.png"); }
.thumb-otherwise  { --thumb-image: url("images/Sample_Them04.png"); }

.card-copy h2 {
  margin: 12px 0 10px;
  font-size: clamp(20px, 1.5vw, 27px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 400;
}

.card-copy p {
  margin: 0;
  max-width: 21ch;
  font-size: 16px;
  line-height: 1.28;
  color: #4f4f4f;
  font-weight: 300;
}

.card-copy a {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  margin-top: 22px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}

.card-copy a span { font-size: 1.6em; }
/* ============================================================
   APPROACHES PAGE
   Page-specific styles for approaches.html
   ============================================================ */

/* Context block beneath the shared subpage masthead */
.approaches-context {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(52px, 7vw, 120px);
  align-items: center;
  padding: 42px 0 54px;
}

.approaches-intro-text {
  margin: 0;
  max-width: 48ch;
  font-size: clamp(17px, 1.15vw, 21px);
  line-height: 1.42;
  font-weight: 300;
}

.approaches-diagram-wrap {
  display: grid;
  place-items: center;
}

.approaches-diagram {
  display: block;
  width: min(100%, 470px);
  height: auto;
}

/* Column labels above the approach index */
.approaches-index {
  border-top: 1px solid var(--hairline);
}

.approaches-index-head {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(320px, 1.15fr) minmax(340px, 1.2fr);
  gap: clamp(28px, 4vw, 72px);
  align-items: end;
  min-height: 62px;
  padding: 18px 0 15px;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.22em;
  font-weight: 500;
  text-transform: uppercase;
}

/* Repeating row: approach / description / applications */
.approach-index-row {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(320px, 1.15fr) minmax(340px, 1.2fr);
  gap: clamp(28px, 4vw, 72px);
  align-items: start;
  padding: 30px 0 34px;
  border-top: 1px solid var(--hairline);
}

.approach-index-row h2 {
  margin: 0;
  font-size: clamp(28px, 2.3vw, 43px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 400;
}

.approach-description p {
  margin: 0;
  max-width: 40ch;
  color: #4f4f4f;
  font-size: clamp(16px, 1.05vw, 19px);
  line-height: 1.4;
  font-weight: 300;
}

/* Applications act as a compact relational index into other site sections */
.approach-applications {
  display: grid;
}

.application-link {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 20px;
  padding: 0 34px 15px 0;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--hairline);
  color: inherit;
  text-decoration: none;
}

.application-link:last-child {
  margin-bottom: 0;
}

.application-title {
  grid-column: 1;
  font-size: clamp(16px, 1vw, 18px);
  line-height: 1.22;
  font-weight: 400;
}

.application-meta {
  grid-column: 1;
  margin-top: 6px;
  color: #777;
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: 0.16em;
  font-weight: 500;
  text-transform: uppercase;
}

.application-arrow {
  position: absolute;
  top: 2px;
  right: 0;
  font-size: 20px;
  line-height: 1;
  transition: transform 160ms ease;
}

.application-link:hover .application-arrow,
.application-link:focus-visible .application-arrow {
  transform: translateX(4px);
}

.applications-empty {
  margin: 0;
  color: #888;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 300;
}

/* Quiet page close */
.approaches-closing {
  padding: 52px 0 66px;
}

.approaches-closing p {
  margin: 18px 0 0;
  color: #777;
  font-size: clamp(22px, 1.8vw, 32px);
  line-height: 1.15;
  font-weight: 300;
  letter-spacing: -0.025em;
}




/* ============================================================
   06. PROJECTS / PRACTICE PAGE
   Page-specific styles for projects.html. Text-led index: each
   entry is self-contained; links, when used, live in description.
   ============================================================ */

.projects-index {
  border-bottom: 1px solid var(--hairline);
}

.projects-index-head,
.project-index-row {
  display: grid;
  grid-template-columns: minmax(34px, .12fr) minmax(70px, .22fr) minmax(140px, .45fr) minmax(480px, 2.25fr) minmax(180px, .7fr);
  gap: clamp(24px, 3.2vw, 56px);
}

.projects-index-head {
  align-items: end;
  min-height: 62px;
  padding: 18px 0 15px;
  border-bottom: 1px solid var(--hairline);
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.22em;
  font-weight: 500;
  text-transform: uppercase;
}

.project-index-row {
  align-items: start;
  padding: 34px 0 38px;
  border-bottom: 1px solid var(--hairline);
}

.project-index-row:last-child { border-bottom: 0; }

.project-index-number {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .06em;
  font-variant-numeric: tabular-nums;
}

.project-index-title {
  margin: 0;
  max-width: none;
  color: var(--ink);
  font-size: clamp(17px, 1.15vw, 21px);
  line-height: 1.3;
  letter-spacing: -0.015em;
  font-weight: 300;
}

.project-index-title h2 {
  margin: 0;
  font: inherit;
  letter-spacing: inherit;
}

.project-kicker {
  margin: 12px 0 0;
  max-width: 26ch;
  color: #777;
  font-size: 10px;
  line-height: 1.35;
  letter-spacing: 0.16em;
  font-weight: 500;
  text-transform: uppercase;
}

.project-index-description p {
  margin: 0 0 14px;
  max-width: 52ch;
  color: #4f4f4f;
  font-size: clamp(16px, 1.05vw, 19px);
  line-height: 1.42;
  font-weight: 300;
}

.project-index-description p:last-child { margin-bottom: 0; }
.project-index-description .fpo-copy { color: #777; }

.project-index-description a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.project-type {
  margin: 0 0 12px;
  font-size: 11px;
  line-height: 1.42;
  letter-spacing: 0.16em;
  font-weight: 600;
  text-transform: uppercase;
}

.project-keywords {
  margin: 0;
  color: #666;
  font-size: 15px;
  line-height: 1.42;
  font-weight: 300;
}

.project-index-year p {
  margin: 0;
  font-size: 15px;
  line-height: 1.42;
  font-weight: 400;
  font-variant-numeric: tabular-nums;
}

/* ============================================================
   07. UNIVERSAL FOOTER
   ============================================================ */

.site-footer {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 12px;
  color: #5c5c5c;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-brand {
  color: var(--ink);
  font-weight: 600;
  letter-spacing: 0.12em;
}

.divider { color: #888; }

.footer-right {
  color: var(--ink);
  font-size: 11px;
  letter-spacing: 0.18em;
  white-space: nowrap;
}


/* ============================================================
   06. UNIVERSAL + INDEX PAGE — RESPONSIVE
   Existing responsive behavior retained from the supplied CSS.
   ============================================================ */

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }
  .main-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    padding-top: 0;
  }
  .hero-grid {
    grid-template-columns: 1fr 1.1fr;
  }
  .open-call {
    grid-column: 1 / -1;
    border-left: 0;
    border-top: 1px solid var(--hairline);
    min-height: auto;
    padding: 28px 0 0;
  }
  .diagram-wrap::before,
  .diagram-wrap::after { display: none; }
  .approach-row { grid-template-columns: repeat(2, 1fr); }
  .approach-card:nth-child(2) { border-right: 0; }
  .approach-card:nth-child(-n+2) { border-bottom: 1px solid var(--hairline); }
}

@media (max-width: 760px) {
  :root { --rail-width: 12px; --shell-pad: 20px; }
  .site-header { display: flex; flex-direction: column; gap: 18px; }
  .header-clock { justify-self: start; }
  .main-nav { gap: 14px 18px; justify-content: flex-start; }
  .brand-name { white-space: normal; }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .hero-statement h1 { font-size: clamp(38px, 11vw, 56px); }
  .diagram-wrap { min-height: auto; padding: 16px 0 20px; }
  .open-call { padding-left: 0; }
  .participate-title, .open-call-title, .salon-title { font-size: clamp(24px, 7vw, 32px); }
  .open-call-copy { max-width: none; }
  .approach-row { grid-template-columns: 1fr; }
  .approach-card { border-right: 0; border-bottom: 1px solid var(--hairline); padding-left: 0; }
  .approach-card:last-child { border-bottom: 0; }
  .approach-card:not(:first-child) .card-index { left: 0; }
  .site-footer { align-items: flex-start; flex-direction: column; padding: 24px 0; }
  .footer-right { white-space: normal; }
}

@media (max-width: 900px) {
  .site-header {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 18px 24px;
  }

  .brand { align-items: flex-start; }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    border: 0;
    padding: 2px 0;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
    font: 600 11px/1 "Sofia Sans", Arial, sans-serif;
    letter-spacing: .14em;
    text-transform: uppercase;
  }

  .nav-toggle:focus-visible {
    outline: 1px solid currentColor;
    outline-offset: 4px;
  }

  .nav-toggle-icon {
    display: grid;
    gap: 4px;
    width: 22px;
  }

  .nav-toggle-icon span {
    display: block;
    height: 1px;
    background: currentColor;
    transform-origin: center;
    transition: transform 160ms ease, opacity 160ms ease;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-icon span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] .nav-toggle-icon span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] .nav-toggle-icon span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

  .main-nav {
    display: none;
    grid-column: 1 / -1;
    grid-row: auto;
    width: 100%;
    gap: 0;
    padding: 8px 0 0;
    border-top: 1px solid var(--hairline);
  }

  .main-nav.is-open { display: flex; flex-direction: column; }

  .main-nav a {
    display: flex;
    align-items: center;
    min-height: 48px;
    border-bottom: 1px solid var(--hairline);
    font-size: 13px;
  }

  .header-clock {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-toggle-icon span { transition: none; }
}



/* ============================================================
   09. UNIVERSAL SUBPAGE MASTHEAD — RESPONSIVE
   ============================================================ */

@media (max-width: 760px) {
  .subpage-masthead {
    min-height: 0;
    padding: 34px 0 38px;
  }

  .subpage-masthead h1 {
    font-size: clamp(50px, 15vw, 76px);
  }

  .subpage-deck {
    font-size: clamp(22px, 7vw, 32px);
  }
}


/* ============================================================
   10. APPROACHES PAGE — RESPONSIVE
   ============================================================ */

@media (max-width: 1180px) {
  .approaches-context {
    grid-template-columns: 1fr minmax(300px, 0.8fr);
    gap: 40px;
  }

  .approaches-index-head,
  .approach-index-row {
    grid-template-columns: minmax(190px, 0.8fr) minmax(260px, 1fr) minmax(280px, 1fr);
    gap: 30px;
  }
}

@media (max-width: 900px) {
  .approaches-context {
    grid-template-columns: 1fr;
  }

  .approaches-diagram-wrap {
    justify-items: start;
  }

  .approaches-diagram {
    width: min(78vw, 460px);
  }

  .approaches-index-head {
    display: none;
  }

  .approach-index-row {
    grid-template-columns: minmax(180px, 0.75fr) 1.25fr;
    gap: 26px 40px;
    padding: 32px 0 36px;
  }

  .approach-applications {
    grid-column: 2;
  }
}

@media (max-width: 760px) {
  .approaches-context {
    padding: 32px 0 40px;
  }

  .approaches-diagram {
    width: min(92vw, 420px);
  }

  .approach-index-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .approach-index-row h2,
  .approach-description,
  .approach-applications {
    grid-column: 1;
  }

  .approach-index-row h2 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .application-link {
    padding-right: 30px;
  }

  .approaches-closing {
    padding: 42px 0 54px;
  }
}


/* ============================================================
   11. PROJECTS / PRACTICE PAGE — RESPONSIVE
   ============================================================ */

@media (max-width: 1000px) {
  .projects-index-head,
  .project-index-row {
    grid-template-columns: minmax(34px, .12fr) minmax(70px, .28fr) minmax(140px, .62fr) minmax(0, 1.1fr);
    gap: 28px 36px;
  }
  .projects-index-head span:nth-child(5) { display: none; }
  .project-index-description { grid-column: 4; }
}

@media (max-width: 760px) {
  .projects-index-head { display: none; }
  .project-index-row {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 32px 0 36px;
  }
  .project-index-title,
  .project-index-description,
  .project-index-meta,
  .project-index-year,
  .project-index-number { grid-column: 1; }
  .project-index-title { font-size: clamp(18px, 5vw, 22px); }
  .project-index-meta {
    padding-top: 18px;
    border-top: 1px solid var(--hairline);
  }
}

/* ============================================================
   APPROACHES PAGE — FOUR TEXT FIELDS
   Long-form, image-free 2 × 2 architecture. No numbering: the
   four approaches are presented as interrelated, non-hierarchical.
   ============================================================ */
.approaches-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-bottom: 1px solid var(--hairline);
}
.approach-field {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(180px, .72fr);
  gap: clamp(30px, 3vw, 54px);
  min-width: 0;
  padding: clamp(38px, 4vw, 68px) clamp(34px, 3.5vw, 62px);
  border-bottom: 1px solid var(--hairline);
}
.approach-field:nth-child(odd) { border-right: 1px solid var(--hairline); padding-left: 0; }
.approach-field:nth-child(even) { padding-right: 0; }
.approach-field:nth-last-child(-n+2) { border-bottom: 0; }
.approach-rule { display:block; width:38px; height:1px; background:var(--ink); margin-bottom:22px; }
.approach-field h2 { margin:0 0 24px; font-size:clamp(38px,3.25vw,60px); line-height:.96; letter-spacing:-.045em; font-weight:400; }
.approach-body { max-width: 39ch; }
.approach-body p { margin:0 0 18px; color:#414141; font-size:clamp(16px,1.02vw,19px); line-height:1.43; font-weight:300; }
.approach-body p:last-child { margin-bottom:0; }
.approach-body .fpo-copy { color:#777; }
.approach-notes { border-left:1px solid var(--hairline); padding-left:clamp(22px,2vw,34px); align-self:start; }
.approach-notes > div + div { margin-top:26px; padding-top:22px; position:relative; }
.approach-notes > div + div::before { content:""; position:absolute; top:0; left:0; width:28px; height:1px; background:var(--ink); }
.approach-notes h3 { margin:0 0 8px; font-size:10px; line-height:1.2; letter-spacing:.18em; font-weight:600; text-transform:uppercase; }
.approach-notes p { margin:0; color:#626262; font-size:14px; line-height:1.42; font-weight:300; }

@media (max-width: 1180px) {
  .approach-field { grid-template-columns:1fr; }
  .approach-notes { border-left:0; border-top:1px solid var(--hairline); padding:24px 0 0; display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
  .approach-notes > div + div { margin:0; padding:0; }
  .approach-notes > div + div::before { display:none; }
}
@media (max-width: 900px) {
  .approaches-fields { grid-template-columns:1fr; }
  .approach-field, .approach-field:nth-child(odd), .approach-field:nth-child(even) { border-right:0; border-bottom:1px solid var(--hairline); padding:44px 0 48px; }
  .approach-field:last-child { border-bottom:0; }
  .approach-body { max-width:58ch; }
}
@media (max-width: 600px) {
  .approach-notes { grid-template-columns:1fr; }
  .approach-notes > div + div { border-top:1px solid var(--hairline); padding-top:18px; }
  .approach-field h2 { font-size:clamp(36px,11vw,52px); }
}

/* ============================================================
   12. ABOUT PAGE
   Personal/studio introduction with double portrait, concise bio,
   positionality, external links, and four non-hierarchical commitments.
   ============================================================ */

.about-person {
  display: grid;
  grid-template-columns: minmax(360px, 1.2fr) minmax(340px, 1fr) minmax(180px, .48fr);
  gap: clamp(30px, 4vw, 70px);
  align-items: start;
  padding: clamp(38px, 4vw, 64px) 0;
  border-bottom: 1px solid var(--hairline);
}

.about-portrait { margin: 0; min-width: 0; }
.about-double-image { display: grid; grid-template-columns: 1fr; gap: 1px; background: #fff; }
.about-photo { display: grid; place-items: center; min-width: 0; overflow: hidden; background: #e7e7e7; color: #999; font-size: 10px; line-height: 1.45; letter-spacing: .18em; text-align: center; }
.about-photo + .about-photo { border-left: 0; background: #dedede; }
.about-portrait figcaption { margin-top: 12px; font-size: 10px; line-height: 1.3; letter-spacing: .17em; font-weight: 500; }

.about-copy { border-left: 1px solid var(--hairline); padding-left: clamp(24px, 3vw, 46px); }
.about-copy h2 { margin: -5px 0 18px; font-size: clamp(34px, 2.7vw, 50px); line-height: 1; letter-spacing: -.04em; font-weight: 400; }
.about-copy p { margin: 0; max-width: 48ch; color: #474747; font-size: clamp(16px, 1.02vw, 19px); line-height: 1.42; font-weight: 300; }
.about-positionality { margin-top: 30px; }
.about-positionality h3,
.about-links h3,
.commitments-head h2 { margin: 0; font-size: 10px; line-height: 1.2; letter-spacing: .2em; font-weight: 600; text-transform: uppercase; }
.about-positionality h3 { margin-bottom: 14px; }
.about-mini-rule { display: block; width: 30px; height: 1px; margin-bottom: 18px; background: var(--ink); }

.about-links { border-left: 1px solid var(--hairline); padding-left: clamp(22px, 2.5vw, 38px); display: flex; flex-direction: column; align-items: flex-start; }
.about-links h3 { margin-bottom: 18px; }
.about-links a { color: inherit; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; font-size: clamp(15px, .95vw, 18px); font-weight: 300; }
.about-links a + a { margin-top: 22px; }
.about-links a span { margin-left: 7px; text-decoration: none; }

.commitments { padding: 30px 0 0; border-bottom: 1px solid var(--hairline); }
.commitments-head { margin-bottom: 22px; }
.commitments-head .about-mini-rule { margin-bottom: 16px; }
.commitments-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.commitment { min-width: 0; padding: 0 clamp(28px, 3vw, 52px) clamp(42px, 4vw, 66px); border-left: 1px solid var(--hairline); }
.commitment:first-child { padding-left: 0; border-left: 0; }
.commitment:last-child { padding-right: 0; }
.commitment h3 { margin: 0 0 16px; font-size: clamp(32px, 2.7vw, 50px); line-height: 1; letter-spacing: -.04em; font-weight: 400; }
.commitment p { margin: 0; max-width: 27ch; color: #555; font-size: clamp(16px, 1vw, 18px); line-height: 1.4; font-weight: 300; }


/* Founder typography + portrait treatment */
.about-photo {
  position: relative;
  display: block;
  overflow: hidden;
  background: #ededed;
}

.about-photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}


.about-section-label,
.about-credentials,
.about-bio-label,
.about-philosophy h3 {
  margin: 0;
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: .2em;
  font-weight: 600;
  text-transform: uppercase;
}

.about-section-label {
  margin-bottom: 16px;
}

.about-copy h2 {
  margin: 0 0 10px;
  font-size: clamp(38px, 3vw, 56px);
  line-height: .96;
  letter-spacing: -.045em;
  font-weight: 400;
}

.about-credentials {
  margin-bottom: 30px;
  color: #777;
  font-weight: 500;
}

.about-bio-label {
  margin-bottom: 12px;
}

.about-bio > p:last-child {
  font-size: clamp(17px, 1.08vw, 20px);
  line-height: 1.4;
}

.about-positionality,
.about-philosophy {
  margin-top: 34px;
}

.about-positionality h3,
.about-philosophy h3 {
  margin-bottom: 14px;
}

.about-positionality p + p,
.about-philosophy p + p {
  margin-top: 12px;
}

.about-positionality p em,
.about-philosophy p em {
  color: var(--ink);
  font-weight: 400;
}

/* ============================================================
   13. ABOUT PAGE — RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {
  .about-person { grid-template-columns: minmax(300px, .9fr) minmax(0, 1.1fr); }
  .about-links { grid-column: 2; border-left: 1px solid var(--hairline); flex-direction: row; flex-wrap: wrap; gap: 14px 24px; }
  .about-links h3 { flex-basis: 100%; margin-bottom: 0; }
  .about-links a + a { margin-top: 0; }
  .commitments-grid { grid-template-columns: repeat(2, 1fr); }
  .commitment { border-bottom: 1px solid var(--hairline); padding: 0 34px 38px; margin-bottom: 34px; }
  .commitment:nth-child(odd) { padding-left: 0; border-left: 0; }
  .commitment:nth-child(even) { padding-right: 0; }
  .commitment:nth-last-child(-n+2) { border-bottom: 0; margin-bottom: 0; }
}

@media (max-width: 760px) {
  .about-person { grid-template-columns: 1fr; gap: 30px; padding: 34px 0 40px; }
  .about-copy, .about-links { grid-column: 1; border-left: 0; padding-left: 0; }
  .about-copy { border-top: 1px solid var(--hairline); padding-top: 30px; }
  .about-links { border-top: 1px solid var(--hairline); padding-top: 24px; }
  .commitments-grid { grid-template-columns: 1fr; }
  .commitment, .commitment:first-child, .commitment:last-child, .commitment:nth-child(odd), .commitment:nth-child(even), .commitment:nth-last-child(-n+2) { border-left: 0; border-bottom: 1px solid var(--hairline); padding: 0 0 30px; margin: 0 0 30px; }
  .commitment:last-child { border-bottom: 0; margin-bottom: 0; }
}

/* ============================================================
   14. CONTACT PAGE
   Text-led contact architecture: studio introduction at left,
   four inquiry territories at right, and a quiet external-links row.
   ============================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(620px, 1.5fr);
  gap: clamp(50px, 7vw, 120px);
  padding: clamp(44px, 5vw, 82px) 0;
  border-bottom: 1px solid var(--hairline);
}
.contact-rule { display:block; width:38px; height:1px; margin-bottom:22px; background:var(--ink); }
.contact-intro h2 { margin:0 0 22px; font-size:clamp(42px,4vw,72px); line-height:.96; letter-spacing:-.05em; font-weight:400; }
.contact-intro p { margin:0 0 18px; max-width:36ch; color:#474747; font-size:clamp(17px,1.12vw,20px); line-height:1.42; font-weight:300; }
.contact-intro .contact-fpo { color:#888; }

.contact-methods { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); border-top:1px solid var(--hairline); }
.contact-method { min-height:220px; padding:28px clamp(26px,3vw,48px) 34px 0; border-bottom:1px solid var(--hairline); }
.contact-method:nth-child(even) { padding-left:clamp(26px,3vw,48px); border-left:1px solid var(--hairline); }
.contact-label, .contact-bottom-label { margin:0 0 22px; font-size:10px; line-height:1.2; letter-spacing:.2em; font-weight:600; text-transform:uppercase; }
.contact-method h3 { margin:0 0 14px; font-size:clamp(27px,2.1vw,40px); line-height:1; letter-spacing:-.035em; font-weight:400; }
.contact-method p:not(.contact-label) { margin:0; max-width:34ch; color:#555; font-size:16px; line-height:1.42; font-weight:300; }
.contact-method a { display:inline-block; margin-top:22px; color:inherit; font-size:11px; letter-spacing:.15em; font-weight:600; text-decoration:none; }
.contact-method a:hover { text-decoration:underline; text-underline-offset:4px; }
.contact-method a span { margin-left:8px; }

.contact-bottom { display:grid; grid-template-columns:minmax(180px,.4fr) 1.6fr; gap:40px; align-items:start; padding:32px 0 38px; border-bottom:1px solid var(--hairline); }
.contact-bottom-label { margin:3px 0 0; }
.contact-bottom-links { display:flex; flex-wrap:wrap; gap:18px clamp(28px,4vw,64px); }
.contact-bottom-links a { color:inherit; font-size:clamp(16px,1.05vw,19px); font-weight:300; text-decoration:underline; text-decoration-thickness:1px; text-underline-offset:4px; }
.contact-bottom-links a span { margin-left:7px; text-decoration:none; }

/* ============================================================
   15. CONTACT PAGE — RESPONSIVE
   ============================================================ */

@media (max-width: 1000px) {
  .contact-grid { grid-template-columns:1fr; gap:44px; }
  .contact-intro p { max-width:56ch; }
}
@media (max-width: 760px) {
  .contact-grid { padding:36px 0 44px; }
  .contact-methods { grid-template-columns:1fr; }
  .contact-method, .contact-method:nth-child(even) { min-height:0; padding:28px 0 32px; border-left:0; }
  .contact-bottom { grid-template-columns:1fr; gap:18px; }
  .contact-bottom-links { flex-direction:column; align-items:flex-start; gap:16px; }
}

/* ============================================================
   14. CONTACT PAGE — FORM
   Primary contact experience. Form remains backend-agnostic until
   a form service or server endpoint is connected for production.
   ============================================================ */

.contact-form-section {
  display: grid;
  grid-template-columns: minmax(280px, .62fr) minmax(620px, 1.5fr);
  gap: clamp(50px, 7vw, 120px);
  padding: clamp(44px, 5vw, 82px) 0 clamp(50px, 5.5vw, 90px);
  border-bottom: 1px solid var(--hairline);
}

.contact-form-intro h2 {
  margin: 0 0 22px;
  font-size: clamp(42px, 4vw, 72px);
  line-height: .96;
  letter-spacing: -.05em;
  font-weight: 400;
}

.contact-form-intro p {
  margin: 0 0 18px;
  max-width: 34ch;
  color: #474747;
  font-size: clamp(17px, 1.12vw, 20px);
  line-height: 1.42;
  font-weight: 300;
}

.contact-form-intro .contact-form-note {
  color: #888;
  font-size: 15px;
}

.contact-form {
  position: relative;
  border-top: 1px solid var(--hairline);
}

.form-honeypot { position:absolute; left:-10000px; width:1px; height:1px; overflow:hidden; }

.contact-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-field {
  position: relative;
  min-width: 0;
  padding: 24px 0 28px;
  border-bottom: 1px solid var(--hairline);
}

.contact-form-row .form-field:first-child {
  padding-right: clamp(26px, 3vw, 48px);
}

.contact-form-row .form-field + .form-field {
  padding-left: clamp(26px, 3vw, 48px);
  border-left: 1px solid var(--hairline);
}

.form-field label {
  display: block;
  margin-bottom: 15px;
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: .2em;
  font-weight: 600;
  text-transform: uppercase;
}

.form-field label span {
  margin-left: 8px;
  color: #999;
  font-weight: 400;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 0;
  border-radius: 0;
  outline: 0;
  padding: 0;
  background: transparent;
  color: var(--ink);
  font: 300 clamp(19px, 1.35vw, 24px)/1.35 "Sofia Sans", Arial, sans-serif;
}

.form-field input { min-height: 38px; }
.form-field textarea { display: block; min-height: 210px; resize: vertical; }

.form-field select {
  min-height: 38px;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 34px;
}

.form-select-field::after {
  content: "↓";
  position: absolute;
  right: 0;
  bottom: 34px;
  font-size: 18px;
  pointer-events: none;
}

.contact-form-row .form-select-field::after {
  right: 0;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  box-shadow: inset 0 -2px 0 var(--ink);
}

.form-field-message {
  padding-top: 30px;
}

.contact-form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 28px;
}

.contact-form-actions button {
  border: 0;
  border-radius: 0;
  padding: 15px 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: 600 12px/1 "Sofia Sans", Arial, sans-serif;
  letter-spacing: .16em;
}

.contact-form-actions button span {
  display: inline-block;
  margin-left: 18px;
  font-size: 20px;
  font-weight: 300;
  transition: transform 160ms ease;
}

.contact-form-actions button:hover span,
.contact-form-actions button:focus-visible span {
  transform: translateX(4px);
}

.contact-form-actions p {
  margin: 0;
  max-width: 38ch;
  color: #999;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 300;
  text-align: right;
}

@media (max-width: 1000px) {
  .contact-form-section {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .contact-form-intro p { max-width: 56ch; }
}

@media (max-width: 760px) {
  .contact-form-section { padding: 36px 0 48px; }
  .contact-form-row { grid-template-columns: 1fr; }
  .contact-form-row .form-field:first-child,
  .contact-form-row .form-field + .form-field {
    padding: 24px 0 28px;
    border-left: 0;
  }
  .contact-form-actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .contact-form-actions p { text-align: left; }
}


/* ============================================================
   16. CIRCLE OF FRIENDS PAGE
   Filterable card directory for people, studios, organizations,
   collaborators, and research assistants.
   ============================================================ */
.friends-directory { padding: 0 0 52px; border-bottom: 1px solid var(--hairline); }
.friends-filters { display:flex; align-items:center; gap:clamp(24px,3.5vw,58px); min-height:68px; border-bottom:1px solid var(--hairline); overflow-x:auto; }
.friends-filters button { flex:0 0 auto; border:0; border-radius:0; padding:10px 0; background:transparent; color:var(--ink); cursor:pointer; font:500 11px/1 "Sofia Sans",Arial,sans-serif; letter-spacing:.16em; text-transform:uppercase; }
.friends-filters button.is-active { padding:10px 22px; background:var(--ink); color:var(--paper); }
.friends-filters button:focus-visible { outline:1px solid currentColor; outline-offset:3px; }
.friends-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:18px; padding-top:22px; }
.friend-card { min-width:0; border:1px solid var(--hairline); }
.friend-card[hidden] { display:none; }
.friend-image { display:grid; place-items:center; aspect-ratio:1.75/1; overflow:hidden; background:#e9e9e9; color:#999; font-size:10px; letter-spacing:.18em; }
.friend-image img { display:block; width:100%; height:100%; object-fit:cover; object-position:center; }
.portrait-guilherme { transform:translateY(-40px); }
.portrait-gem { transform:translateY(35px) scale(1.35); }
.portrait-maxim { transform:translateY(-45px); }
.portrait-sloan { transform:translateY(70px) scale(1.5); }
.portrait-coraline { transform:translateY(2px) scale(1.35); }
.portrait-kirstie { transform:translateY(-25px); }
.portrait-audax { transform:translateY(-60px); }
.portrait-colin-gray { transform:translateY(-25px); }
.portrait-kevin { transform:translateY(-25px) scale(1.1); }
.portrait-os { transform:translateY(-15px); }
.portrait-felix { transform:translateY(-55px); }
.portrait-ollie { transform:translateY(-45px) scale(1.1); }
.portrait-jessica { transform:translateY(-40px); }
.portrait-eva { transform:translate(-20px,-30px) scale(1.5); }
.portrait-rashid { transform:translateY(-35px); }
.portrait-colin-putnam { transform:translateY(10px) scale(1.55); }
.portrait-oskar {
  transform: scale(2.25);
  transform-origin: 55% 10%;
}
.friend-card:nth-child(3n+2) .friend-image { background:#dedede; }
.friend-card:nth-child(3n) .friend-image { background:#f0f0f0; }
.friend-card-copy { padding:10px 12px 14px; }
.friend-card-copy h2 { margin:0 0 4px; font-size:clamp(17px,1.1vw,20px); line-height:1.08; letter-spacing:-.02em; font-weight:400; }
.friend-card-copy p { margin:0; color:#666; font-size:14px; line-height:1.32; font-weight:300; }
@media (max-width:1100px){ .friends-grid{grid-template-columns:repeat(3,minmax(0,1fr));} }
@media (max-width:760px){ .friends-filters{gap:24px;} .friends-filters button.is-active{padding:10px 16px;} .friends-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;} }
@media (max-width:480px){ .friends-grid{grid-template-columns:1fr;} .friend-image{aspect-ratio:1.9/1;} }


/* ============================================================
   17. PARTICIPATE PAGE
   Chronological participation index. Access is reserved for the
   action needed to enter each opportunity: links, forms, etc.
   ============================================================ */

.participate-index {
  border-bottom: 1px solid var(--hairline);
}

.participate-index-head,
.participate-index-row {
  display: grid;
  grid-template-columns: minmax(190px, .85fr) minmax(380px, 1.55fr) minmax(180px, .7fr) minmax(190px, .72fr);
  gap: clamp(24px, 3.2vw, 54px);
}

.participate-index-head {
  align-items: end;
  min-height: 62px;
  padding: 18px 0 15px;
  border-bottom: 1px solid var(--hairline);
  font-size: 11px;
  line-height: 1;
  letter-spacing: .22em;
  font-weight: 500;
  text-transform: uppercase;
}

.participate-index-row {
  align-items: start;
  padding: 34px 0 38px;
  border-bottom: 1px solid var(--hairline);
}

.participate-index-row:last-child { border-bottom: 0; }

.participate-title h2 {
  margin: 0;
  max-width: 14ch;
  font-size: clamp(28px, 2.35vw, 44px);
  line-height: 1.01;
  letter-spacing: -.04em;
  font-weight: 400;
}

.participate-type {
  margin: 0 0 12px;
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: .16em;
  font-weight: 600;
  text-transform: uppercase;
}

.participate-description p {
  margin: 0;
  max-width: 52ch;
  color: #4f4f4f;
  font-size: clamp(16px, 1.05vw, 19px);
  line-height: 1.42;
  font-weight: 300;
}

.participate-frequency p {
  margin: 0 0 7px;
  color: #555;
  font-size: 11px;
  line-height: 1.45;
  letter-spacing: .12em;
  font-weight: 500;
  text-transform: uppercase;
}

.participate-frequency p:last-child { margin-bottom: 0; }

.participate-access {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}

.participate-access a {
  color: inherit;
  font-size: 10px;
  line-height: 1.25;
  letter-spacing: .12em;
  font-weight: 600;
  text-decoration: none;
}

.participate-access a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.participate-access a span { margin-left: 7px; }

.participate-access-label,
.participate-access-note {
  font-size: 10px;
  line-height: 1.25;
  letter-spacing: .14em;
  font-weight: 600;
  text-transform: uppercase;
}

.participate-access-note {
  color: #888;
  font-weight: 500;
}

.participate-index-row.is-archived .participate-frequency,
.participate-index-row.is-archived .participate-access-note { color: #999; }

/* ============================================================
   18. PARTICIPATE PAGE — RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {
  .participate-index-head,
  .participate-index-row {
    grid-template-columns: minmax(190px, .8fr) minmax(0, 1.35fr) minmax(170px, .65fr);
    gap: 28px 38px;
  }

  .participate-index-head span:nth-child(4) { display: none; }
  .participate-access { grid-column: 2 / 4; }
}

@media (max-width: 760px) {
  .participate-index-head { display: none; }

  .participate-index-row {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 32px 0 36px;
  }

  .participate-title,
  .participate-description,
  .participate-frequency,
  .participate-access { grid-column: 1; }

  .participate-title h2 { font-size: clamp(30px, 9vw, 42px); }

  .participate-frequency,
  .participate-access {
    padding-top: 18px;
    border-top: 1px solid var(--hairline);
  }
}
