/* ==========================================================================
   :sync_ Magazine — shared stylesheet
   Shared between newsletter-landing.html and the article templates
   (e.g. culture-article.html).
   ========================================================================== */


@font-face {
    font-family: 'Bitcount Grid Single';
  src: url('../fonts/BitcountGridSingle-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Bitcount Grid Single';
  src: url('../fonts/BitcountGridSingle-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* --------------------------------------------------------------------------
   1. Tokens & reset
   -------------------------------------------------------------------------- */
:root {
  --bg: #f2f2f2;
  --ink: #0a0a0a;
  --muted: #666;
  --border: 1px solid #0a0a0a;
  --container: min(1340px, calc(100vw - 6rem));
  --gap: 1.9rem;
  --font-ui: "Neue Montreal", Arial, sans-serif;
  --font-sans: "DM Sans", "Neue Montreal", Arial, sans-serif;
  --font-serif: "Cormorant Garamond", serif;
  --font-mono: "Cutive Mono", monospace;
  --font-grid: "Bitcount Grid Single", monospace;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
}

body {
  font-family: var(--font-sans);
  border-left: var(--border);
  border-right: var(--border);
  min-height: 100vh;
}

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

img {
  transform-origin: center center;
  will-change: transform;
}

body, h1, h2, h3, h4, h5, h6, p {
  all: unset;
}

blockquote {
  margin: 0;
  border-left: none;
  padding-bottom:1rem;
}
/* --------------------------------------------------------------------------
   2. Shell — site nav, frame, footer
   -------------------------------------------------------------------------- */
.site-nav {
  height: 84px;
  border-top: var(--border);
  border-bottom: var(--border);
  display: flex;
  align-items: center;
  padding: 0 2rem;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0;
}

.site-nav .left {
  text-transform: uppercase;
}

.site-nav .center {
  margin-left: 4.6rem;
  text-transform: uppercase;
}

.site-nav .right {
  margin-left: auto;
  text-transform: uppercase;
}

.frame {
  max-width: var(--container);
  margin: 0 auto;
  border-left: var(--border);
  border-right: var(--border);
}

footer {
  min-height: 239px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  align-items: start;
  gap: 3rem 1.4rem;
  padding: 3rem 2rem 1.25rem;
  font-family: var(--font-ui);
  border-top: var(--border);
}

.footer-left {
  font-weight: 500;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.2;
}

.footer-social {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-self: end;
}

.footer-social a {
  display: grid;
  place-items: center;
  min-width: 28px;
  min-height: 28px;
  position: relative;
}

.footer-social img {
  display: block;
  object-fit: contain;
}

.footer-social .youtube-icon {
  width: 39.6px;
  height: 27.13px;
}

.footer-social .instagram-icon,
.footer-social .linkedin-icon {
  width: 30.07px;
  height: 30.07px;
}

.footer-social .tiktok-icon {
  width: 27.87px;
  height: 33px;
}

.linkedin-icon {
  position: relative;
}

.linkedin-icon img {
  position: absolute;
  inset: 0;
}

.linkedin-icon img:first-child {
  width: 8.84px;
  height: 30.06px;
  left: 0;
  right: auto;
}

.linkedin-icon img:last-child {
  width: 19.45px;
  height: 20.59px;
  left: 10.62px;
  top: 9.48px;
  right: auto;
  bottom: auto;
}

.footer-curation-row {
  grid-column: 1 / -1;
  display: block;
  margin-inline: -2rem;
  padding-inline: 2rem;
  align-items: end;
  overflow: hidden;
}

.footer-curation {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: max-content;
  font-weight: 500;
  font-size: 1.26rem;
  color: rgba(10, 10, 10, 0.95);
  line-height: 1.25;
  white-space: nowrap;
  will-change: transform;
  gap: clamp(7rem, 58vw, 44rem);
}

.footer-curation--right {
  transform: translate3d(0, 0, 0);
}

.footer-curation .footer-logo {
  width: 121.42px;
  height: 68.3px;
  margin: -0.55rem 0 -0.45rem 0.6rem;
  object-fit: contain;
}

.footer-curation .network {
  margin-left: 0.2rem;
}

/* --------------------------------------------------------------------------
   3. Shared atoms
   -------------------------------------------------------------------------- */
.curation-copy {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 0;
  white-space: nowrap;
}

.curation img {
  height: 60px;
  width: auto;
  vertical-align: middle;
  margin: -0.7rem 0 -0.5rem 0.45rem;
}

.curation .network {
  margin-left: 0.15rem;
}

/* Round arrow button used in cards and step lists */
.card-arrow {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border: var(--border);
  background: #0a0a0a;
  color: #f2f2f2;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  line-height: 1;
}

.card-arrow.is-light {
  background: transparent;
  color: #0a0a0a;
}

/* Mono caption / image credit / writer line */
.mono-caption {
  font-family: var(--font-mono);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   4. Landing — hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 866px;
  border-bottom: var(--border);
  overflow: hidden;
  background: #0a0a0a;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(115deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.1)),
    var(--hero-bg-img, url("../img/sync/hero-fallback.svg"));
  background-size: cover;
  background-position: center top;
  filter: saturate(85%);
}

.hero .curation {
  position: absolute;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 1.25rem;
  color: rgba(242, 242, 242, 0.92);
  z-index: 1;
  pointer-events: none;
  will-change: transform;
}

.hero .curation--top {
  top: 28px;
  padding: 0 0.9rem;
}

.hero .curation--bottom {
  bottom: 20px;
  padding: 0 1rem;
}

.hero-title {
  position: absolute;
  left: 1.9rem;
  bottom: 88px;
  z-index: 1;
  margin: 0;
  max-width: 460px;
  color: #f2f2f2;
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 6.6rem);
  font-weight: 400;
  line-height: 0.76;
  letter-spacing: -0.06em;
}

body.header-white h1.hero-title {
    color: #f2f2f2;
}

.hero-lockup {
  position: absolute;
  right: 2.1rem;
  top: 49%;
  transform: translateY(-50%);
  width: clamp(220px, 31vw, 532px);
  z-index: 1;
}

.hero-lockup img {
  width: 100%;
  height: auto;
  display: block;
}

/* --------------------------------------------------------------------------
   5. Landing — intro grid
   -------------------------------------------------------------------------- */
.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr 1fr;
  border-bottom: var(--border);
}

.intro-cell {
  border-right: var(--border);
  padding: 1.35rem 1.55rem;
}

.intro-cell:last-child {
  border-right: 0;
}

.intro-note {
  padding: 0;
  display: grid;
  grid-template-rows: 180px 1fr;
}

.intro-note-header {
  border-bottom: var(--border);
  display: flex;
  align-items: center;
  padding: 0 1.55rem;
}

.intro-note-body {
  min-height: 0;
  padding: 1.35rem 1.55rem;
}

.intro-note-body p {
  display: block;
  margin: 0 0 1em;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.53;
  letter-spacing: -0.01em;
  color: rgba(10, 10, 10, 0.92);
  max-width: 44ch;
}

.intro-note-body p:last-child {
  margin-bottom: 0;
}

.intro-label {
  font-family: var(--font-serif);
  font-size: 2.375rem;
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 0 0 1.1rem;
}

.intro-copy {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.53;
  letter-spacing: -0.01em;
  color: rgba(10, 10, 10, 0.92);
  max-width: 44ch;
}

.intro-copy p {
  display: block;
  margin: 0 0 1em;
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

.quote-panel {
  display: grid;
  place-items: center;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.5rem, 2.3vw, 2rem);
  line-height: 1.24;
  letter-spacing: -0.01em;
  min-height: 720px;
}

.quote-panel .tag {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  font-family: "Cutive Mono", monospace;
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
}

/* --------------------------------------------------------------------------
   6. Section titles (CULTURE / TECH / DESIGN bands)
   -------------------------------------------------------------------------- */
.section-title {
  border-bottom: var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 170px;
  padding: 0 1.9rem;
  background: var(--bg);
  line-height: 0.86;
}

.section-title .index {
  font-size: clamp(2.3rem, 6vw, 6.8rem);
  font-weight: 400;
}

.section-title .name {
  text-align: right;
  font-size: clamp(2.3rem, 6vw, 6.8rem);
}

.section-title.culture {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.05em;
}

.section-title.tech {
  font-family: var(--font-grid);
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.section-title.tech .index,
.section-title.tech .name {
  font-weight: 400;
}

.section-title.design {
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   7. Cards grid (landing + related articles share .card visuals)
   -------------------------------------------------------------------------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
}

.card,
.text-card {
  border-right: var(--border);
  border-bottom: var(--border);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  padding: 0.75rem 1.5rem 1rem;
}

.cards-grid > :nth-child(2n) {
  border-right: 0;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 1rem;
  padding: 0.2rem 0.35rem 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.card-link:hover,
.card-link:focus-visible {
  text-decoration: none;
}

.card-media {
  flex: 0 0 auto;
  overflow: hidden;
  border: var(--border);
  background: #e7e7e7;
  height: 600px;
  width: 100%;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transform: scale(1.06);
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.85rem;
  padding: 0 0.35rem;
}

.card-title {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 1.125rem;
  line-height: 1.34;
  letter-spacing: -0.01em;
  padding: 0;
  flex: 1;
  display: flex;
  align-items: center;
}

.text-card {
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  padding: 0.85rem 2rem 2rem;
}

.text-card .label {
  display: block;
  font-family: var(--font-mono);
  font-size: 1rem;
  margin: 0 0 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.text-card .copy {
  margin: auto 0;
  max-width: 24ch;
}

.text-card .copy p {
  display: block;
  margin: 0 0 1em;
}

.text-card .copy p:last-child {
  margin-bottom: 0;
}

.text-card.culture {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.65rem, 2.15vw, 1.95rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.text-card.tech {
  font-family: var(--font-grid);
  font-weight: 300;
  font-size: clamp(1.5rem, 2.2vw, 2.375rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.text-card.design {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: clamp(1.2rem, 1.5vw, 1.45rem);
  line-height: 1.45;
  letter-spacing: -0.01em;
}

/* --------------------------------------------------------------------------
   8. Article — title block, hero, body, quote, image grids
   -------------------------------------------------------------------------- */
.article {
  --article-pad-x: 0rem;
  --left-col-width: 380px;
  --article-pad-right:4.9rem;
}

.article-header {
  padding: 4.5rem 1.9rem 4.5rem;
  text-align: center;
}

.article-title {
  margin: 0 auto;
  max-width: 1065px;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(3rem, 9.5vw, 9.7rem);
  line-height: 0.86;
  letter-spacing: -0.03em;
}

.article.article-type-tech .article-title,
.article.article-type-tech .article-pullquote__body,
.article.article-type-tech .step-card__copy p,
.article.article-type-tech .step-card__num {
  font-family: var(--font-grid);
}

.article.article-type-design .article-title,
.article.article-type-design .article-pullquote__body,
.article.article-type-design .step-card__copy p,
.article.article-type-design .step-card__num {
  font-family: var(--font-sans);
}

.article.article-type-culture .article-title,
.article.article-type-culture .article-pullquote__body,
.article.article-type-culture .step-card__copy p,
.article.article-type-culture .step-card__num {
  font-family: var(--font-serif);
}

.article-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.95rem 8rem;
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.article-hero-image {
  margin: 0;
  position: relative;
  width: 100%;
  height: clamp(420px, 62vw, 900px);
  overflow: hidden;
}

.article-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.05);
}

.article-hero-image .image-credit {
  position: absolute;
  right: 1rem;
  bottom: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: rgba(242, 242, 242, 0.92);
  letter-spacing: 0.04em;
}

.article .right-image-caption {
    padding-right: var(--article-pad-right);
}
/* Article body grid: 2 columns — label | content */
.article-section {
  display: grid;
  grid-template-columns: var(--left-col-width) 1fr;
  column-gap: 2.5rem;
  padding: 4.5rem var(--article-pad-x);
  position: relative;
}

.article-section + .article-section {
  padding-top: 0;
}

.article-section__label {
  position: sticky;
  top: 110px;
  align-self: start;
  text-align: right;
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding-top: 0.4rem;
}

.article-section__body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--ink);
  padding-right: var(--article-pad-right);
}

.article-section__body p {
  display: block;
  margin: 0 0 1.4em;
  padding:0 calc(var(--article-pad-right) * 2) 0 0;
}

.article-section__body p:last-child {
  margin-bottom: 0;
}

.article-section__body h1,
.article-section__body h2,
.article-section__body h3,
.article-section__body h4,
.article-section__body h5,
.article-section__body h6 {
  display: block;
  margin: 0 0 0.65em;
  padding: 0 calc(var(--article-pad-right) * 2) 0 0;
  font-family: var(--font-sans);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.article-section__body h1,
.article-section__body h2 {
  font-size: clamp(1.75rem, 2.8vw, 3rem);
}

.article-section__body h3 {
  font-size: clamp(1.45rem, 2.1vw, 2.25rem);
}

.article-section__body h4,
.article-section__body h5,
.article-section__body h6 {
  font-size: clamp(1.2rem, 1.5vw, 1.55rem);
}

.article-section__body h1:not(:first-child),
.article-section__body h2:not(:first-child),
.article-section__body h3:not(:first-child),
.article-section__body h4:not(:first-child),
.article-section__body h5:not(:first-child),
.article-section__body h6:not(:first-child) {
  margin-top: 1.25em;
}

/* Image pair: aligns to same 2-col grid as article-section */
.article-image-pair {
  display: grid;
  grid-template-columns: var(--left-col-width) 1fr;
  column-gap: 2.5rem;
  padding: 2.5rem var(--article-pad-x) 0.5rem;
}

.article-image-pair .pair-fig {
  margin: 0;
}

.article-image-pair .pair-media {
  position: relative;
  overflow: hidden;
  background: #e7e7e7;
  width: 100%;
  height: 100%;

}

.article-image-pair img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.06);
}

.article-image-pair figcaption {
  margin-top: 0.6rem;
  text-align: right;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Pull quote */
.article-pullquote {
  display: grid;
  grid-template-columns: var(--left-col-width) 1fr;
  column-gap: 2.5rem;
  padding: 4.5rem var(--article-pad-x) 2.5rem;
  position: relative;
}

.article-pullquote__label {
  position: sticky;
  top: 110px;
  align-self: start;
  text-align: right;
  font-family: var(--font-mono);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding-top: 0.6rem;
}

.article-pullquote__body {
  position: relative;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.75rem, 2.6vw, 2.375rem);
  line-height: 1.18;
  letter-spacing: -0.01em;
  padding: 0 calc(var(--article-pad-right) * 2) 0 0;
  margin: 0;
}

.article-pullquote__body::before,
.article-pullquote__body::after {
  font-family: var(--font-serif);
  font-size: 1.55em;
  line-height: 0;
}

.article-pullquote__body::before {
  content: "\201C";
  position: absolute;
  left: -0.55em;
  top: 0.35em;
}

.article-pullquote__body::after {
  content: "\201D";
  display: inline-block;
  margin-left: 0.12em;
  transform: translateY(0.2em);
}

.article-section__body > .article-pullquote__body {
  margin: 0.25rem 0 2.5rem;
}

/* Single full-width inline image */
.article-image-full {
  margin: 2.5rem 0 0;
  padding: 0 var(--article-pad-x);
}

.article-image-full .full-media {
  position: relative;
  aspect-ratio: 1340 / 552;
  overflow: hidden;
  background: #e7e7e7;
}

.article-image-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.04);
}

.article-image-full figcaption {
  margin-top: 0.6rem;
  text-align: right;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   9. Article — step-by-step (numbered cards inside body column)
   -------------------------------------------------------------------------- */
.article-steps {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  row-gap: 1.5rem;
}

.article-steps--with-intro {
  margin-top: 2rem;
}

.step-card {
  display: flex;
  align-items: stretch;
  min-height: 280px;
  grid-column: 1 / span 9;
}

.step-card:nth-child(even) {
  grid-column: 2 / span 9;
}

.step-card__copy {
  flex: 0 0 45%;
  border: var(--border);
  background: var(--bg);
  padding: 1.4rem 1.6rem 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.step-card__copy p {
  margin: 0;
  padding-right: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(1.25rem, 1.8vw, 1.75rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  max-width: 18ch;
}

.step-card__num {
  align-self: flex-end;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(2rem, 3vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
}

.step-card__media {
  flex: 1;
  margin-left: -1px;
  overflow: hidden;
  background: #e7e7e7;
  position: relative;
}

.step-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.04);
}

.step-card__media-text {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--ink);
  width: 100%;
}

.step-card__media-text p {
  display: block;
  margin: 0 0 1em;
  padding: 0;
}

.step-card__media-text p:last-child {
  margin-bottom: 0;
}

.step-card__media--overlay .step-card__media-text {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 2;
  max-width: none;
  padding: 1rem 1.15rem;
  background: rgba(242, 242, 242, 0.82);
}

.step-card__media--text-only {
  display: flex;
  align-items: center;
  border: var(--border);
  background: var(--bg);
  padding: 1.4rem 1.6rem;
}

/* --------------------------------------------------------------------------
   10. Article — gallery carousel (image with side peeks)
   -------------------------------------------------------------------------- */
.article-carousel {
  position: relative;
  padding: 3.5rem 0 3rem;
  overflow: hidden;
}

.article-carousel__track {
  display: flex;
  gap: 1.6rem;
  align-items: stretch;
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
  padding: 0 calc(50% - 532px);
}

.article-carousel__slide {
  flex: 0 0 910px;
  aspect-ratio: 1065 / 648;
  overflow: hidden;
  background: #e7e7e7;
}

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

.article-carousel__slide.is-peek {
  filter: brightness(0.65);
}

.article-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 8rem 0;
}

.article-carousel__dots {
  display: flex;
  gap: 0.75rem;
}

.article-carousel__dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.25);
  display: block;
}

.article-carousel__dots span.is-active {
  background: var(--ink);
}

.article-carousel__btn {
  width: 35px;
  height: 35px;
  border: var(--border);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 1rem;
}

/* --------------------------------------------------------------------------
   11. Article — related articles strip
   -------------------------------------------------------------------------- */
.article-related {
  border-top: var(--border);
  border-bottom: var(--border);
  display: grid;
  grid-template-columns: 245px repeat(3, minmax(0, 1fr));
  min-height: 584px;
}

.article-related__label {
  border-right: var(--border);
  display: flex;
  align-items: flex-end;
  padding: 1rem 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: right;
  justify-content: flex-end;
}

.article-related__card {
  border-right: var(--border);
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--bg);
}

.article-related__card:last-child {
  border-right: 0;
}

.article-related__meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.article-related__media {
  flex: 1;
  overflow: hidden;
  background: #e7e7e7;
  min-height: 320px;
}

.article-related__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.04);
}

.article-related__footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.article-related__title {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.3;
  flex: 1;
}

/* --------------------------------------------------------------------------
   12. Archive page
   -------------------------------------------------------------------------- */
.archive-page .site-nav {
  height: 62px;
  min-height: 62px;
  padding: 0 1.9rem;
  font-size: 1rem;
}

.archive-page .site-nav .center {
  margin-left: 4.6rem;
}

.archive-page .frame {
  padding-bottom: 0;
}

.archive-board {
  width: min(1130px, calc(100% - 48px));
  margin: 0 auto 3.8rem;
  border: var(--border);
  background: var(--bg);
  overflow: hidden;
}

.archive-board__header {
  min-height: 170px;
  padding: 1.9rem 2rem 1.8rem 1.2rem;
  border-bottom: var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-sans);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.88;
}

.archive-board__title,
.archive-board__year {
  margin: 0;
  font-size: clamp(4rem, 8vw, 7.1rem);
  font-weight: 400;
}

.archive-board__year {
  text-align: right;
}

.archive-board__issues {
  display: flex;
  flex-direction: column;
}

.archive-issue {
  min-height: 88.883px;
  border-top: var(--border);
  background: var(--bg);
  display: block;
}

.archive-issue:first-child {
  border-top: 0;
}

.archive-issue__toggle {
  width: 100%;
  min-height: 88.883px;
  display: grid;
  grid-template-columns: 39.26% 1fr;
  padding: 0;
  border: 0;
  border-bottom: var(--border);
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.archive-issue__toggle:focus-visible,
.archive-feature__arrow:focus-visible {
  outline: 2px solid #0a0a0a;
  outline-offset: -2px;
}

.archive-issue__label {
  border-right: var(--border);
  display: flex;
  align-items: center;
  padding: 0 1.15rem 0 1rem;
  font-family: var(--font-sans);
  font-size: clamp(1rem, 3.25vw, 2.5rem);
  line-height: 1;
  text-transform: uppercase;
}

.archive-issue__panel {
  overflow: hidden;
  height: 0;
  opacity: 0;
  border-top: var(--border);
}

.archive-issue__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 1.25rem 0 2.2rem;
  font-family: var(--font-mono);
  font-size: clamp(0.875rem, 1.65vw, 1.1875rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.archive-issue.is-active > .archive-issue__toggle {
  background: #0a0a0a;
  color: #f2f2f2;
}

.archive-feature {
  display: grid;
  grid-template-columns: 39.26% 1fr;
  min-height: 698px;
  background: var(--bg);
}

.archive-feature__copy {
  position: relative;
  border-right: var(--border);
  padding: 1.8rem 1.3rem 1.25rem 1.3rem;
}

.archive-feature__copy p {
  margin: 0;
  max-width: 18ch;
  font-family: var(--font-mono);
  font-size: clamp(1rem, 1.65vw, 1.1875rem);
  line-height: 1.25;
  letter-spacing: 0.02em;
}

.archive-feature__arrow {
  position: absolute;
  left: 1.35rem;
  bottom: 1.45rem;
  display: block;
  width: 35px;
  height: 35px;
}

.archive-feature__arrow img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.archive-feature__arrow-icon {
  transform: scale(0.58);
}

.archive-feature__media {
  overflow: hidden;
  background: #e7e7e7;
}

.archive-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.archive-page footer {
  min-height: 146px;
  padding: 1.85rem 2rem 0.95rem;
  gap: 1rem 1.4rem;
}

.archive-page .footer-left {
  font-size: 1rem;
}

.archive-page .footer-social {
  gap: 1.2rem;
}

.archive-page .footer-curation-row {
  align-items: end;
}

/* --------------------------------------------------------------------------
   13. Mobile
   -------------------------------------------------------------------------- */
.mobile-curation {
  display: none;
}

@media (max-width: 960px) {
  :root {
    --container: calc(100vw - 2rem);
  }

  .site-nav {
    padding: 0 1rem;
  }

  .intro-grid {
    grid-template-columns: 1fr;
  }

  .intro-cell {
    border-right: 0;
    border-bottom: var(--border);
    min-height: 0;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .cards-grid > :nth-child(2n) {
    border-right: 0;
  }

  .card,
  .text-card {
    border-right: 0;
  }

  .card-media {
    height: 560px;
  }

  .hero {
    min-height: 700px;
  }

  .hero-lockup {
    right: 18px;
    width: min(54vw, 320px);
  }

  .hero-title {
    font-size: clamp(2.4rem, 11vw, 4.6rem);
    left: 20px;
    bottom: 72px;
  }

  .hero .curation {
    font-size: 0.92rem;
  }

  .curation img {
    height: 46px;
  }

  /* Article */
  .article-section,
  .article-pullquote {
    grid-template-columns: 1fr;
    column-gap: 0;
    padding: 2.5rem 1.25rem;
  }

  .article-section__label,
  .article-pullquote__label {
    position: static;
    text-align: left;
    margin-bottom: 1rem;
  }

  .article-image-pair {
    grid-template-columns: 1fr;
  }

  .article-steps {
    grid-template-columns: 1fr;
  }

  .step-card,
  .step-card:nth-child(even) {
    grid-column: 1 / -1;
    flex-direction: column;
    min-height: 0;
  }

  .step-card__copy,
  .step-card__media {
    flex: 0 0 auto;
    width: 100%;
  }

  .step-card__media {
    aspect-ratio: 4 / 3;
    margin-left: 0;
  }

  .article-carousel__track {
    padding: 0 1rem;
  }

  .article-carousel__slide {
    flex: 0 0 88vw;
  }

  .article-related {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .article-related__label {
    border-right: 0;
    border-bottom: var(--border);
    justify-content: flex-start;
    text-align: left;
  }

  .article-related__card {
    border-right: 0;
    border-bottom: var(--border);
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(395px, 100vw);
  }

  body {
    border-left: var(--border);
    border-right: var(--border);
  }

  .frame {
    max-width: none;
    border-left: 0;
    border-right: 0;
  }

  .site-nav {
    display: grid;
    height: 65px;
    min-height: 65px;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    padding: 0 24px;
    font-size: 16px;
  }

  .site-nav a {
    display: flex;
    align-items: center;
    height: 100%;
    line-height: 1;
  }

  .site-nav .left {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }

  .site-nav .center {
    margin-left: 0;
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
  }

  .site-nav .right {
    margin-left: 0;
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    font-size: 14px;
    font-weight: 400;
  }

  .hero {
    min-height: 768px;
  }

  .hero .curation {
    font-size: 11.9px;
    color: rgba(242, 242, 242, 0.95);
  }

  .hero .curation--top {
    display: flex;
    top: 34px;
    padding: 0 16px;
  }

  .hero .curation--bottom {
    display: flex;
    bottom: 35px;
    padding: 0 16px;
  }

  .curation-copy {
    gap: 0;
  }

  .curation img {
    height: 35px;
    margin: -0.45rem 0 -0.35rem 0.2rem;
  }

  .hero-lockup {
    top: 48%;
    right: 24px;
    width: 313px;
  }

  .hero-title {
    left: 24px;
    bottom: 104px;
    max-width: 370px;
    font-size: 65px;
    line-height: 0.82;
    letter-spacing: -0.06em;
  }

  .intro-grid {
    display: none;
  }

  .section-title {
    width: calc(100% - 48px);
    margin: 0 auto;
    min-height: 110px;
    padding: 0 18px;
    border: var(--border);
    border-top: 0;
    border-bottom: 0;
  }

  .section-title .index,
  .section-title .name {
    font-size: 40px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    padding: 0 24px;
  }

  .cards-grid > :nth-child(2n) {
    border-right: var(--border);
  }

  .card,
  .text-card {
    border: var(--border);
    min-height: 540px;
    padding: 0;
  }

  .card + .card,
  .card + .text-card,
  .text-card + .card,
  .text-card + .text-card {
    margin-top: -1px;
  }

  .card-meta,
  .text-card .label {
    min-height: 52px;
    padding: 0.95rem 0.95rem 0.4rem;
    font-size: 14px;
  }

  .card-media {
    height: 436px;
    width: auto;
    margin: 0 16px;
  }

  .card-footer {
    margin-top: 0;
    padding: 0.85rem 0.95rem 0;
  }

  .card-title {
    font-size: 16px;
    line-height: 1.05;
    font-weight: 300;
    max-width: calc(100% - 52px);
  }

  .card-arrow {
    width: 26px;
    height: 26px;
    font-size: 0.8rem;
  }

  .text-card {
    justify-content: flex-start;
    align-items: stretch;
    text-align: center;
  }

  .text-card .label {
    margin: 0;
  }

  .text-card .copy {
    margin: auto;
    max-width: 27ch;
    padding: 0 16px;
    font-size: 20px;
    line-height: 1.2;
  }

  /* Article header / title at small screens */
  .article {
    --article-pad-x: 0;
    --left-col-width: 124px;
    --article-pad-right: 24px;
  }

  .article-header {
    padding: 3.7rem 24px 2rem;
  }

  .article-title {
    max-width: 345px;
    font-size: 65px;
    line-height: 50px;
    letter-spacing: -0.05em;
  }

  .article-meta {
    display: block;
    padding: 0 24px 1.9rem;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
  }

  .article-meta span {
    display: block;
  }

  .article-hero-image {
    height: 633px;
  }

  .article-hero-image .image-credit {
    right: 24px;
    bottom: 18px;
    font-size: 12px;
  }

  .article-section {
    grid-template-columns: var(--left-col-width) minmax(0, 1fr);
    column-gap: 0;
    padding: 3.6rem 0 0;
  }

  .article-section + .article-section {
    padding-top: 3.6rem;
  }

  .article-section__label {
    position: sticky;
    top: 88px;
    margin: 0;
    padding: 0.15rem 24px 0 0;
    text-align: right;
    font-size: 12px;
    line-height: 1.2;
  }

  .article-section__body {
    padding-right: var(--article-pad-right);
    font-size: 16px;
  }

  .article-section__body p {
    padding-right: 0;
  }

  .article-image-pair {
    grid-template-columns: var(--left-col-width) minmax(0, 1fr);
    column-gap: 0;
    padding: 2.7rem 0 0.5rem;
  }

  .article-image-pair .pair-media {
    aspect-ratio: auto;
  }

  .article-image-pair .pair-fig:first-child figcaption {
    padding-left: 24px;
    text-align: left;
  }

  .article-image-pair figcaption,
  .article-image-full figcaption {
    margin-top: 0.45rem;
    font-size: 12px;
  }

  .article-image-full {
    padding: 2.7rem 0 0.5rem;
  }

  .article-image-full .full-media {
    aspect-ratio: 393 / 485;
  }

  .right-image-caption,
  .article-image-pair .pair-fig:last-child figcaption {
    padding-right: 24px;
  }

  .article-pullquote__body {
    margin: 0 0 2.5rem;
    padding: 0 var(--article-pad-right) 0 0;
    font-size: 28px;
    line-height: 1.08;
  }

  .article-steps {
    row-gap: 1rem;
    margin-top: 2.4rem;
  }

  .step-card__copy {
    min-height: 202px;
    padding: 0.95rem 1rem 0.9rem;
  }

  .step-card__copy p {
    font-size: 22px;
    line-height: 1.05;
    max-width: none;
  }

  .step-card__num {
    font-size: 38px;
  }

  .step-card__media {
    aspect-ratio: 245 / 202;
  }

  .article-carousel {
    padding: 2.7rem 0 2.5rem;
  }

  .article-carousel__track {
    gap: 0;
    padding: 0;
  }

  .article-carousel__slide {
    flex-basis: 100%;
    aspect-ratio: 393 / 485;
  }

  .article-carousel__controls {
    padding: 1rem 24px 0;
  }

  .article-related__label {
    padding: 0.9rem 24px;
    font-size: 12px;
  }

  .article-related__card {
    padding: 0.9rem 24px;
  }

  .article-related__meta {
    font-size: 12px;
  }

  .article-related__media {
    min-height: 245px;
  }

  .article-related__title {
    font-size: 16px;
    line-height: 1.15;
  }

  .archive-page .site-nav {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 0 24px;
    height: 65px;
    min-height: 65px;
    font-size: 16px;
  }

  .archive-page .site-nav .right {
    margin-left: 0;
    grid-column: 2;
    justify-self: center;
    font-size: 14px;
    font-weight: 400;
  }

  .archive-page .site-nav .center {
    grid-column: 3;
    justify-self: end;
    font-size: 16px;
    font-weight: 500;
  }

  .archive-board {
    width: calc(100vw - 48px);
    margin: 30px auto 6.25rem;
  }

  .archive-board__header {
    min-height: 81px;
    padding: 0.9rem 0.65rem 0.8rem 0.55rem;
  }

  .archive-board__title,
  .archive-board__year {
    font-size: 33.5px;
    line-height: 1;
    letter-spacing: -0.05em;
  }

  .archive-issue {
    min-height: 60px;
  }

  .archive-issue__toggle {
    position: relative;
    display: block;
    min-height: 60px;
  }

  .archive-issue__label {
    position: absolute;
    left: 0;
    top: 0;
    width: 28.66%;
    height: 100%;
    padding: 0 0.55rem;
    font-size: 16px;
    font-weight: 500;
    align-items: center;
  }

  .archive-issue__meta {
    position: absolute;
    left: 28.98%;
    right: 2.86%;
    top: 0;
    height: 100%;
    padding: 0.35rem 0 0.35rem 0;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 0.08rem;
    font-size: 12px;
    line-height: 1.15;
    text-align: right;
    letter-spacing: 0;
  }

  .archive-issue__meta span {
    display: block;
    text-align: right;
    white-space: nowrap;
  }

  .archive-feature {
    min-height: 484px;
    grid-template-columns: 28.66% 1fr;
  }

  .archive-feature__copy {
    padding: 0.95rem 0.8rem 0.95rem 0.55rem;
  }

  .archive-feature__copy p {
    max-width: 11ch;
    font-size: 16px;
    line-height: 1.15;
  }

  .archive-feature__arrow {
    left: 0.8rem;
    bottom: 0.7rem;
    width: 15px;
    height: 15px;
  }

  .archive-page footer {
    min-height: 163px;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 0.5rem 1rem;
    padding: 1.55rem 1.45rem 1rem;
  }

  footer {
    min-height: 163px;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 0.5rem 1rem;
    padding: 1.55rem 1.45rem 1rem;
  }

  .footer-left {
    font-size: 16px;
  }

  .footer-social {
    justify-self: end;
    gap: 1.1rem;
  }

  .footer-social .youtube-icon {
    width: 32px;
    height: 22px;
  }

  .footer-social .instagram-icon,
  .footer-social .linkedin-icon {
    width: 24px;
    height: 24px;
  }

  .footer-social .tiktok-icon {
    width: 22px;
    height: 27px;
  }

  .linkedin-icon img:first-child {
    width: 18.2px;
    height: 24px;
  }

  .linkedin-icon img:last-child {
    width: 15.5px;
    height: 16.4px;
    left: 8.5px;
    top: 7.6px;
  }

  .footer-curation-row {
    grid-column: 1 / -1;
    margin-inline: -24px;
    padding-inline: 24px;
  }

  .footer-curation--right {
    display: flex;
  }

  .footer-curation {
    font-size: 16px;
    justify-content: flex-start;
    white-space: nowrap;
    gap: clamp(4rem, 62vw, 18rem);
  }

  .footer-curation .footer-logo {
    width: 87px;
    height: 49px;
    margin: -0.35rem 0 -0.32rem 0.35rem;
  }
}
