/* ============================================================
   Khorshid Joulaee · Artist Activities
   Design system stylesheet · v1.0
   Locked from MASTER_PROMPT.md (v0.7)
   ============================================================ */

/* ── FONTS ─────────────────────────────────────────────── */

@font-face {
  font-family: "Plex";
  src: url("../fonts/Plex-300.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Plex";
  src: url("../fonts/Plex-300i.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Plex";
  src: url("../fonts/Plex-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Plex";
  src: url("../fonts/Plex-400i.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Plex";
  src: url("../fonts/Plex-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Plex";
  src: url("../fonts/Plex-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ── DESIGN TOKENS ─────────────────────────────────────── */

:root {
  /* Palette (the only colors permitted) */
  --cream:       #F5F0E5;
  --saffron:     #D49035;
  --saffron-dp:  #B6761F;
  --olive:       #556032;
  --olive-dp:    #3F4824;
  --sage:        #B5B6A6;
  --sage-pale:   #D9D9CD;
  --ink:         #1A1A1A;
  --ink-soft:    #2B2B2B;

  /* Typography */
  --ff: "Plex", "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Helvetica, Arial, sans-serif;

  /* Layout */
  --gutter:        clamp(20px, 6vw, 96px);
  --max-w:         1440px;
  --hairline:      0.5px solid var(--ink);
  --radius:        0;

  /* Type scale */
  --fs-eyebrow:    11px;
  --fs-cap:        clamp(11px, 1.1vw, 12px);
  --fs-body:       clamp(16px, 1.2vw, 18px);
  --fs-lede:       clamp(17px, 1.4vw, 20px);
  --fs-h2:         clamp(28px, 3.4vw, 56px);
  --fs-h1:         clamp(48px, 8vw, 128px);
  --fs-hero:       clamp(64px, 11vw, 160px);

  --ls-cap:        0.32em;
  --ls-cap-sm:     0.18em;
  --ls-h:         -0.02em;
  --ls-body:       0;

  --lh-h:          0.95;
  --lh-body:       1.6;
}

/* ── RESET ─────────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff);
  background: var(--cream);
  color: var(--ink);
  font-weight: 400;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, video, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }

::selection { background: var(--saffron); color: var(--cream); }

:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 4px;
}

/* ── PAGE FRAME ────────────────────────────────────────── */

.page { padding-inline: var(--gutter); max-width: var(--max-w); margin-inline: auto; }
.section { padding-block: clamp(80px, 12vh, 160px); position: relative; }
.section--quiet { padding-block: clamp(60px, 10vh, 120px); }
.section--tight { padding-block: clamp(40px, 7vh, 80px); }
.section + .section { padding-top: 0; }
.section--first { padding-top: clamp(140px, 18vh, 220px); }

/* Inner pages: nav starts in cream/ink state */
body.page-inner { background: var(--cream); }
body.page-inner .nav { background: var(--cream); border-bottom: var(--hairline); color: var(--ink); }
body.page-inner .nav .nav__logo--cream { display: none; }
body.page-inner .nav .nav__logo--ink { display: block; }

/* ── NAVIGATION ────────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 24px;
  padding: 18px var(--gutter);
  background: transparent;
  transition: background 360ms ease, border-color 360ms ease, color 360ms ease;
  color: var(--cream);
}
.nav.is-scrolled {
  background: var(--cream);
  border-bottom: var(--hairline);
  color: var(--ink);
}
.nav__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.nav__logo { display: inline-flex; align-items: center; }
.nav__logo img { width: 40px; height: 40px; object-fit: contain; }
.nav__logo--cream { display: block; }
.nav__logo--ink { display: none; }
.nav.is-scrolled .nav__logo--cream { display: none; }
.nav.is-scrolled .nav__logo--ink { display: block; }
.nav__brand-contact {
  font-size: var(--fs-cap);
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: border-color 240ms ease;
  margin-left: 2px;
}
.nav__brand-contact:hover { border-bottom-color: currentColor; }
.nav__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 14px 22px;
  font-size: var(--fs-cap);
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  align-self: center;
  grid-column: 2 / span 2;
}
.nav__links a {
  position: relative;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: border-color 240ms ease, color 240ms ease, transform 240ms ease;
  white-space: nowrap;
}
.nav__links a:hover { border-color: currentColor; }
.nav__menu-toggle { display: none; }

@media (max-width: 920px) {
  .nav { grid-template-columns: auto 1fr auto; gap: 12px; padding: 14px var(--gutter); }
  .nav__links { display: none; }
  .nav__brand { gap: 4px; }
  .nav__brand-contact { font-size: 10px; letter-spacing: 0.24em; }
  .nav__menu-toggle {
    display: inline-flex;
    align-self: center;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: inherit;
  }
  .nav__menu-toggle::before {
    content: ""; width: 22px; height: 1px; background: currentColor;
  }
  body.is-menu-open { overflow: hidden; }
  .nav-drawer {
    position: fixed; inset: 0; z-index: 60;
    background: var(--cream);
    color: var(--ink);
    padding: 96px var(--gutter) 48px;
    transform: translateY(-100%);
    transition: transform 360ms cubic-bezier(.76,0,.24,1);
    display: flex; flex-direction: column; gap: 32px;
  }
  body.is-menu-open .nav-drawer { transform: translateY(0); }
  .nav-drawer a {
    font-size: clamp(28px, 7vw, 48px);
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.1;
    color: var(--ink);
  }
  .nav-drawer a em { color: var(--saffron); font-style: italic; font-weight: 300; }
  .nav-drawer__close {
    position: absolute; top: 20px; right: var(--gutter);
    font-size: 11px; font-weight: 500; letter-spacing: 0.28em; text-transform: uppercase;
  }
}
@media (min-width: 921px) {
  .nav-drawer { display: none; }
}

/* ── COMMON BLOCKS ─────────────────────────────────────── */

.eyebrow {
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: var(--ls-cap);
  text-transform: uppercase;
  color: var(--olive);
}
.eyebrow--cream { color: var(--cream); }
.eyebrow--ink { color: var(--ink); }

.h1, h1.section__title {
  font-size: var(--fs-h1);
  font-weight: 700;
  letter-spacing: var(--ls-h);
  line-height: var(--lh-h);
  color: var(--saffron);
}
.h2, h2.section__title {
  font-size: var(--fs-h2);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.05;
  color: var(--saffron);
}
.lede {
  font-size: var(--fs-lede);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--ink);
  opacity: 0.85;
}
.body-prose { font-weight: 300; line-height: 1.65; max-width: 64ch; }
.body-prose p + p { margin-top: 18px; }
.body-prose em { color: var(--saffron-dp); font-style: italic; font-weight: 300; }
.body-prose strong { font-weight: 500; color: var(--ink); }

.dot {
  display: inline-block;
  width: 14px; height: 14px;
  background: var(--saffron);
  border-radius: 50%;
}
.dot--lg { width: 30px; height: 30px; }
.dot--xl { width: 48px; height: 48px; }
.dot--xxl { width: 96px; height: 96px; }

.hairline { width: 24px; height: 0; border-top: 1px solid var(--ink); }
.hairline--full { width: 100%; height: 0; border-top: 0.5px solid rgba(26,26,26,0.18); }

/* Section opener */
.opener { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 40px; align-items: end; }
.opener__row { display: flex; align-items: center; gap: 16px; }
.opener__title { font-size: var(--fs-h1); font-weight: 700; color: var(--saffron); line-height: 0.95; letter-spacing: -0.02em; }
.opener__title em { color: var(--saffron-dp); font-style: italic; font-weight: 300; }

/* Breadcrumb */
.breadcrumb {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: var(--ls-cap);
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 16px;
}
.breadcrumb a:hover { color: var(--ink); }

/* CTA buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 56px;
  padding: 0 28px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--ink);
  transition: background 200ms ease, color 200ms ease, transform 200ms ease;
  white-space: nowrap;
}
.btn:hover { background: var(--ink); color: var(--cream); }
.btn .arrow { display: inline-block; transition: transform 240ms ease; }
.btn:hover .arrow { transform: translate(4px, -2px); }
.btn--cream { color: var(--cream); border-color: var(--cream); }
.btn--cream:hover { background: var(--cream); color: var(--ink); }
.btn--saffron { background: var(--saffron); border-color: var(--saffron); color: var(--ink); }
.btn--saffron:hover { background: var(--ink); border-color: var(--ink); color: var(--cream); }
.btn--ghost { border-color: transparent; padding-inline: 0; }
.btn--ghost:hover { background: transparent; color: var(--ink); }
.btn--ghost:hover .arrow { transform: translate(8px, -2px); }

/* External link row */
.ext-row {
  display: block;
  position: relative;
  padding-block: clamp(48px, 8vh, 96px);
}
.ext-row__eyebrow { color: var(--olive); margin-bottom: 16px; }
.ext-row__line {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 300;
  font-style: italic;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.05;
  display: flex;
  align-items: baseline;
  gap: 18px;
  flex-wrap: wrap;
}
.ext-row__line em { color: var(--saffron-dp); font-style: italic; font-weight: 300; }
.ext-row__line .arrow { color: var(--saffron); font-style: normal; transition: transform 240ms ease; }
.ext-row:hover .arrow { transform: translate(6px, -2px); }
.ext-row::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: var(--ink);
  transition: width 320ms cubic-bezier(.76,0,.24,1);
  margin-top: 18px;
}
.ext-row:hover::after { width: 240px; }
.ext-row__caption { font-size: 13px; font-weight: 300; color: rgba(26,26,26,0.65); margin-top: 14px; }

/* ── HERO (landing) ────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: flex-end;
  padding: 0;
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
}
.hero__media {
  position: absolute; inset: 0;
  background-image: url("/studio-banner.jpeg");
  background-size: cover;
  background-position: center;
  opacity: 0.55;
}
.hero__gradient {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(26,26,26,0.30) 0%, rgba(26,26,26,0.10) 35%, rgba(26,26,26,0.55) 100%),
    linear-gradient(135deg, rgba(245,240,229,0.25) 0%, rgba(245,240,229,0) 55%, rgba(26,26,26,0.20) 100%);
}
.hero__inner {
  position: relative;
  width: 100%;
  padding: 0 var(--gutter) clamp(48px, 9vh, 96px);
  display: grid;
  gap: 18px;
}
.hero__eyebrow {
  font-size: var(--fs-cap);
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cream);
  text-shadow: 0 1px 2px rgba(26,26,26,0.45);
}
.hero__headline {
  font-size: var(--fs-hero);
  font-weight: 700;
  color: var(--saffron);
  line-height: 0.92;
  letter-spacing: -0.025em;
  margin-bottom: 0;
  text-shadow: 0 2px 24px rgba(26,26,26,0.20);
}
.hero__subline {
  font-size: clamp(28px, 5vw, 64px);
  font-weight: 300;
  font-style: italic;
  letter-spacing: -0.01em;
  color: var(--cream);
  text-shadow: 0 1px 14px rgba(26,26,26,0.45);
}
.hero__dot {
  position: absolute;
  top: 28vh; right: var(--gutter);
  width: 18px; height: 18px;
  background: var(--saffron);
  border-radius: 50%;
}
.hero__scroll {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cream);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: scrollPulse 2.4s ease-in-out infinite;
}
.hero__scroll::after {
  content: ""; width: 1px; height: 28px; background: var(--cream);
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.35; transform: translate(-50%, 0); }
  50% { opacity: 0.85; transform: translate(-50%, 6px); }
}

/* ── BIO (split-frame) ─────────────────────────────────── */

.bio {
  display: grid;
  grid-template-columns: 5fr 1fr 6fr;
  gap: 32px;
  align-items: start;
}
.bio__media { position: relative; }
.bio__media-block {
  position: absolute;
  inset: 24px -24px -24px 24px;
  background: var(--saffron);
  z-index: 0;
}
.bio__media img {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  z-index: 1;
}
.bio__text { display: grid; gap: 18px; }
.bio__opener .opener__row { gap: 18px; }
.bio__roles {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--ink);
  font-size: clamp(11px, 1.2vw, 13px);
  font-weight: 500;
  letter-spacing: var(--ls-cap-sm);
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.6;
}
@media (max-width: 820px) {
  .bio { grid-template-columns: 1fr; gap: 36px; }
  .bio__media-block { inset: 18px -18px -18px 18px; }
}

/* ── TEASER (offers, classes, workshops landing) ───────── */

.teaser {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 48px;
  align-items: center;
}
.teaser--reverse { grid-template-columns: 7fr 5fr; }
.teaser--reverse .teaser__media { order: 2; }

.teaser__media { position: relative; }
.teaser__media-block {
  position: absolute;
  inset: 22px -22px -22px 22px;
  z-index: 0;
}
.teaser__media-block--saffron { background: var(--saffron); }
.teaser__media-block--olive { background: var(--olive); }
.teaser__media-block--sage { background: var(--sage-pale); }
.teaser__media img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  z-index: 1;
}
.teaser__media--placeholder {
  position: relative;
  background: var(--sage-pale);
  aspect-ratio: 4 / 3;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 18px;
  z-index: 1;
}
.teaser__media--placeholder .eyebrow { color: var(--olive); }

.teaser__text { display: grid; gap: 22px; }
.teaser__title {
  font-size: var(--fs-h1);
  font-weight: 700;
  color: var(--saffron);
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.teaser__lede { max-width: 520px; }
.teaser__cta-row { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; margin-top: 12px; }

@media (max-width: 820px) {
  .teaser, .teaser--reverse { grid-template-columns: 1fr; gap: 28px; }
  .teaser--reverse .teaser__media { order: 0; }
}

/* ── STUDIO (two-photo spread) ─────────────────────────── */

.studio { display: grid; gap: 28px; }
.studio__opener { margin-bottom: 24px; }
.studio__grid {
  display: grid;
  grid-template-columns: 6fr 6fr;
  gap: 24px;
  align-items: end;
}
.studio__media { position: relative; }
.studio__media-block {
  position: absolute;
  inset: 22px -22px -22px 22px;
  background: var(--olive);
  z-index: 0;
}
.studio__media img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  z-index: 1;
}
.studio__media--right img { aspect-ratio: 4 / 5; }
.studio__media--right { padding-bottom: 22px; }
.studio__media--right::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--ink); opacity: 0.6;
}
.studio__caption {
  font-size: var(--fs-lede);
  font-style: italic;
  font-weight: 300;
  margin-top: 24px;
  text-align: center;
}
.studio__strip {
  text-align: center;
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: var(--ls-cap);
  text-transform: uppercase;
  color: var(--olive);
}
@media (max-width: 820px) {
  .studio__grid { grid-template-columns: 1fr; gap: 32px; }
  .studio__media--right::after { display: none; }
}

/* ── COLLABORATION ─────────────────────────────────────── */

.collab {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: 32px;
  min-height: 60vh;
  align-items: center;
}
.collab__motif {
  display: flex; align-items: center; justify-content: center;
}
.collab__motif .dot--xxl { width: clamp(80px, 12vw, 160px); height: clamp(80px, 12vw, 160px); }
.collab__text { display: grid; gap: 22px; }
.collab__title { font-size: var(--fs-h1); font-weight: 700; color: var(--saffron); line-height: 0.95; letter-spacing: -0.02em; }
.collab__line {
  font-size: clamp(20px, 2.6vw, 32px);
  font-style: italic;
  font-weight: 300;
  color: var(--ink);
  max-width: 560px;
  line-height: 1.35;
}
@media (max-width: 820px) {
  .collab { grid-template-columns: 1fr; gap: 28px; min-height: auto; }
}

/* ── EXHIBITION (landing summary card) ─────────────────── */

.exhibit-summary {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 48px;
  align-items: center;
}
.exhibit-summary__media { position: relative; }
.exhibit-summary__media-block {
  position: absolute;
  inset: 22px -22px -22px 22px;
  background: var(--sage-pale);
  z-index: 0;
}
.exhibit-summary__media img {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  z-index: 1;
}
.exhibit-summary__text { display: grid; gap: 22px; }
.exhibit-summary__title { font-size: var(--fs-h1); font-weight: 700; color: var(--saffron); line-height: 0.95; letter-spacing: -0.02em; }
.exhibit-summary__script {
  font-size: var(--fs-lede);
  font-weight: 300;
  color: var(--ink);
  max-width: 560px;
  line-height: 1.55;
}
.exhibit-summary__script em { color: var(--saffron-dp); font-style: italic; font-weight: 700; }
.exhibit-summary__ctas { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-top: 6px; }
.exhibit-summary__see-all {
  font-size: 14px; font-style: italic; font-weight: 300; color: var(--ink); border-bottom: 1px solid transparent; padding-bottom: 2px;
}
.exhibit-summary__see-all:hover { border-color: var(--ink); }
@media (max-width: 820px) {
  .exhibit-summary { grid-template-columns: 1fr; gap: 28px; }
}

/* ── CONTACT BLOCK ─────────────────────────────────────── */

.contact {
  display: flex; flex-direction: column; align-items: center; gap: 24px;
  padding-block: clamp(80px, 14vh, 180px);
  text-align: center;
}
.contact__title { font-size: var(--fs-h1); font-weight: 700; color: var(--saffron); line-height: 0.95; letter-spacing: -0.02em; }
.contact__list { display: grid; gap: 28px; margin-top: 12px; }
.contact__list dt {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: var(--ls-cap);
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 4px;
}
.contact__list dd {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 400;
  color: var(--ink);
}
.contact__list dd a {
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 240ms ease;
}
.contact__list dd a:hover { border-bottom-color: var(--ink); }

/* ── PRODUCT CARD (offers page) ────────────────────────── */

.product {
  display: grid;
  grid-template-columns: 6fr 6fr;
  gap: 64px;
  align-items: center;
  padding-block: clamp(60px, 10vh, 120px);
}
.product--reverse { grid-template-columns: 6fr 6fr; }
.product--reverse .product__media { order: 2; }
.product__media { position: relative; }
.product__media-block { position: absolute; inset: 22px -22px -22px 22px; z-index: 0; }
.product__media-block--saffron { background: var(--saffron); }
.product__media-block--olive { background: var(--olive); }
.product__media-block--sage { background: var(--sage-pale); }
.product__media img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  z-index: 1;
}
.product__media--placeholder {
  position: relative;
  background: var(--sage-pale);
  aspect-ratio: 4 / 5;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 22px;
  z-index: 1;
}
.product__text { display: grid; gap: 22px; }
.product__num {
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: var(--ls-cap);
  text-transform: uppercase;
  color: var(--olive);
}
.product__title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  color: var(--saffron);
  line-height: 1.0;
  letter-spacing: -0.015em;
}
.product__desc { font-size: var(--fs-body); color: var(--ink); max-width: 50ch; line-height: 1.5; }
.product__variants {
  display: grid; gap: 16px;
  border-top: 1px solid var(--ink);
  padding-top: 18px;
  margin-top: 6px;
}
.product__variants dt {
  font-size: 13px; font-weight: 500;
  letter-spacing: var(--ls-cap-sm);
  text-transform: uppercase;
  color: var(--ink);
}
.product__variants dd {
  font-size: 17px; font-weight: 300; color: var(--ink); margin-top: 2px;
}
.product__variants dd em { color: var(--saffron-dp); font-style: italic; }

@media (max-width: 820px) {
  .product, .product--reverse { grid-template-columns: 1fr; gap: 32px; }
  .product--reverse .product__media { order: 0; }
}

/* ── TIMELINE / EXHIBITIONS PAGE ───────────────────────── */

.timeline {
  display: grid; gap: 56px;
}
.timeline__group-label {
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: var(--ls-cap);
  text-transform: uppercase;
  color: var(--olive);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--ink);
  margin-bottom: -28px;
}
.event-card {
  display: grid;
  grid-template-columns: 6fr 6fr;
  gap: 48px;
  align-items: start;
  padding-block: clamp(40px, 7vh, 80px);
}
.event-card--reverse { grid-template-columns: 6fr 6fr; }
.event-card--reverse .event-card__media { order: 2; }
.event-card__media { position: relative; }
.event-card__media-block { position: absolute; inset: 22px -22px -22px 22px; background: var(--sage-pale); z-index: 0; }
.event-card__media img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  z-index: 1;
  background: var(--cream);
}
.event-card__media--poster img { aspect-ratio: 4 / 5; object-fit: contain; }
.event-card__text { display: grid; gap: 18px; }
.event-card__eyebrow {
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: var(--ls-cap);
  text-transform: uppercase;
  color: var(--olive);
}
.event-card__title { font-size: clamp(36px, 5vw, 64px); font-weight: 700; color: var(--saffron); line-height: 1.0; letter-spacing: -0.015em; }
.event-card__sub { font-size: clamp(18px, 2.2vw, 22px); font-weight: 300; font-style: italic; color: var(--ink); }
.event-card__body { font-size: var(--fs-body); font-weight: 300; line-height: 1.6; color: var(--ink); max-width: 56ch; }
.event-card__detail {
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: var(--ls-cap);
  text-transform: uppercase;
  color: var(--olive);
}
.event-card__ended {
  font-size: 15px; font-weight: 300; font-style: italic; color: rgba(26,26,26,0.55); margin-top: 6px;
}
.event-card__photos {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 16px;
}
.event-card__photos img { aspect-ratio: 1 / 1; object-fit: cover; width: 100%; }

@media (max-width: 820px) {
  .event-card, .event-card--reverse { grid-template-columns: 1fr; gap: 24px; }
  .event-card--reverse .event-card__media { order: 0; }
}

/* ── CLASSES PAGE ──────────────────────────────────────── */

.classes-intro {
  max-width: 640px; margin-inline: auto;
}
.classes-intro p + p { margin-top: 18px; }
.classes-strip {
  text-align: center;
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: var(--ls-cap);
  text-transform: uppercase;
  color: var(--olive);
  margin-block: 32px;
}
.classes-about {
  display: flex; gap: 28px; justify-content: flex-end;
  font-size: 15px; font-weight: 300; font-style: italic;
  border-top: 1px solid rgba(26,26,26,0.18);
  padding-top: 18px;
  flex-wrap: wrap;
}
.classes-about a { border-bottom: 1px solid transparent; padding-bottom: 2px; }
.classes-about a:hover { border-color: var(--ink); }

.offerings {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  margin-top: 56px;
}
@media (max-width: 980px) {
  .offerings { grid-template-columns: 1fr; }
}
.offering {
  background: var(--cream);
  border: 1px solid var(--ink);
  padding: clamp(28px, 4vw, 48px);
  display: grid; gap: 18px;
  position: relative;
}
.offering--dark { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.offering--dark .offering__title,
.offering--dark .offering__price-main { color: var(--saffron); }
.offering--dark .offering__format,
.offering--dark .offering__num { color: var(--sage); }
.offering--dark .offering__note { color: var(--cream); border-color: rgba(245,240,229,0.25); }

.offering__num { font-size: var(--fs-eyebrow); font-weight: 500; letter-spacing: var(--ls-cap); text-transform: uppercase; color: var(--olive); }
.offering__title { font-size: clamp(28px, 3.6vw, 44px); font-weight: 700; color: var(--saffron); line-height: 1.05; letter-spacing: -0.015em; }
.offering__format { font-size: var(--fs-eyebrow); font-weight: 500; letter-spacing: var(--ls-cap); text-transform: uppercase; color: var(--olive); }
.offering__price-main { font-size: clamp(28px, 3.4vw, 40px); font-weight: 700; color: var(--saffron); }
.offering__price-main small { font-size: 0.4em; font-weight: 300; opacity: 0.55; padding-left: 6px; letter-spacing: 0.1em; text-transform: uppercase; }
.offering__price-alt { font-size: 14px; font-weight: 300; opacity: 0.7; }
.offering__desc { font-size: 16px; font-weight: 300; line-height: 1.55; }
.offering__desc em { color: var(--saffron-dp); font-style: italic; }
.offering__note {
  font-size: 13px; font-weight: 300; line-height: 1.5;
  padding: 12px 14px;
  border: 1px solid rgba(26,26,26,0.18);
  background: var(--sage-pale);
  color: var(--ink);
}
.offering--dark .offering__note { background: rgba(245,240,229,0.06); }
.offering__note strong { color: var(--saffron); font-weight: 500; }
.offering__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.offering__tag {
  font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 6px 10px;
  background: var(--olive); color: var(--cream);
}
.offering__paths { display: grid; gap: 22px; margin-top: 6px; }
.offering__path {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  border-top: 1px solid rgba(245,240,229,0.18);
  padding-top: 18px;
  align-items: start;
}
.offering__path-media { position: relative; }
.offering__path-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}
.offering__path-text { display: grid; gap: 6px; }
.offering__path-name { font-size: 18px; font-weight: 500; color: var(--saffron); margin-bottom: 4px; }
.offering__path-desc { font-size: 14px; font-weight: 300; opacity: 0.85; line-height: 1.5; }
.offering__path-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }
@media (max-width: 600px) {
  .offering__path { grid-template-columns: 1fr; }
  .offering__path-media img { aspect-ratio: 16 / 9; }
}

.classes-note {
  max-width: 640px; margin: clamp(56px, 9vh, 96px) auto 0;
  text-align: center; font-size: 17px; font-style: italic; font-weight: 300;
  color: var(--ink); line-height: 1.55;
}
.classes-note + .dot { margin: 32px auto 0; display: block; }

.classes-howto {
  text-align: center;
  margin-top: clamp(56px, 8vh, 96px);
  font-size: 16px; font-weight: 300; line-height: 1.6;
}
.classes-howto strong { font-weight: 500; }
.classes-howto-email { display: block; font-weight: 500; font-size: 18px; margin-top: 14px; }
.classes-howto-email a { border-bottom: 1px solid transparent; padding-bottom: 2px; }
.classes-howto-email a:hover { border-color: var(--ink); }

.classes-foot {
  text-align: center; font-size: 14px; font-style: italic; font-weight: 300;
  color: rgba(26,26,26,0.65); margin-top: 56px;
}

/* ── OFFERS PAGE ───────────────────────────────────────── */

.letter {
  max-width: 640px; margin-inline: auto;
}
.letter p + p { margin-top: 18px; }
.letter strong { font-weight: 500; }
.letter em { color: var(--saffron-dp); font-style: italic; font-weight: 300; }
.letter__divider {
  width: 24px; height: 1px; background: var(--ink); margin: clamp(48px, 8vh, 96px) auto;
}
.thank-you-note {
  text-align: center; font-size: 17px; font-style: italic; font-weight: 300;
  color: rgba(26,26,26,0.7); margin-top: 56px;
}
.thank-you-note + .dot { margin: 32px auto 0; display: block; }

/* ── WORKSHOPS PLACEHOLDER PAGE ────────────────────────── */

.workshops-page {
  max-width: 640px; margin-inline: auto; text-align: center;
  display: grid; gap: 22px;
}
.workshops-page p { font-size: var(--fs-lede); font-weight: 300; line-height: 1.55; }

/* ── FOOTER ────────────────────────────────────────────── */

.footer {
  border-top: 1px solid var(--ink);
  padding: clamp(40px, 6vh, 64px) var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  font-size: 13px;
  font-weight: 300;
  color: var(--olive);
  background: var(--cream);
}
.footer h4 {
  font-size: 11px; font-weight: 500; letter-spacing: var(--ls-cap); text-transform: uppercase;
  color: var(--olive); margin-bottom: 12px;
}
.footer ul { list-style: none; display: grid; gap: 6px; }
.footer a { color: var(--ink); border-bottom: 1px solid transparent; padding-bottom: 1px; }
.footer a:hover { border-color: var(--ink); }
.footer__colophon { grid-column: 1 / -1; padding-top: 24px; border-top: 1px solid rgba(26,26,26,0.12); font-style: italic; font-size: 12px; opacity: 0.7; }
@media (max-width: 600px) {
  .footer { grid-template-columns: 1fr; }
}

/* ── UTILS ─────────────────────────────────────────────── */

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.text-saffron { color: var(--saffron); }
.text-olive { color: var(--olive); }
.text-ink { color: var(--ink); }
.italic-saffron { color: var(--saffron-dp); font-style: italic; font-weight: 300; }

/* Anchor offset for fixed nav */
:target { scroll-margin-top: 100px; }


/* ── NAV CONTACT ACCENT ────────────────────────────────── */
.nav__links-contact {
  border: 1px solid currentColor;
  padding: 6px 14px 5px;
  margin-left: 6px;
  transition: background 240ms ease, color 240ms ease, border-color 240ms ease;
}
.nav__links-contact:hover {
  background: var(--saffron);
  border-color: var(--saffron);
  color: var(--ink);
}
.nav.is-scrolled .nav__links-contact:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
}
@media (max-width: 920px) {
  .nav__links-contact { padding: 0; border: 0; margin-left: 0; }
}


/* ── MY IRAN · PROCESS GALLERY ─────────────────────────── */
.product__variants--rich dd em { display: inline; }
.product__variants--rich div { padding-bottom: 4px; }

.process { display: grid; gap: clamp(32px, 5vw, 56px); }
.process__head { display: grid; gap: 10px; max-width: 640px; }
.process__title {
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 700;
  color: var(--saffron);
  line-height: 1.05;
  letter-spacing: -0.015em;
}
.process__caption {
  font-size: var(--fs-lede);
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  opacity: 0.85;
  max-width: 56ch;
}
.process__caption em { color: var(--saffron-dp); font-style: italic; font-weight: 300; }

/* Masonry-style multi-column layout — preserves each image's natural ratio, no cropping */
.process__grid {
  column-count: 3;
  column-gap: 16px;
}
.process__cell {
  position: relative;
  display: block;
  margin: 0 0 16px 0;
  break-inside: avoid;
  background: var(--sage-pale);
  overflow: hidden;
}
.process__cell img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 600ms cubic-bezier(.22,.61,.36,1);
}
.process__cell:hover img { transform: scale(1.02); }
.process__cell figcaption {
  position: absolute;
  left: 14px; bottom: 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(26,26,26,0.62);
  padding: 6px 10px;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}
/* Width modifiers are not needed with masonry — neutralize the old span classes */
.process__cell--tall,
.process__cell--wide { grid-column: auto; grid-row: auto; }

@media (max-width: 1100px) {
  .process__grid { column-count: 2; }
}
@media (max-width: 600px) {
  .process__grid { column-count: 1; column-gap: 0; }
  .process__cell { margin-bottom: 14px; }
}

.process__final {
  position: relative;
  margin-top: clamp(40px, 6vw, 72px);
  padding: clamp(28px, 5vw, 56px) clamp(28px, 5vw, 56px) clamp(32px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.process__final-block {
  position: absolute;
  inset: 18px -18px -18px 18px;
  background: var(--olive);
  z-index: 0;
}
.process__final img {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: 100%;
  max-height: 85vh;
  height: auto;
  object-fit: contain;
  background: var(--cream);
  box-shadow: 0 30px 60px -32px rgba(26,26,26,0.35);
}
.process__final figcaption {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  text-align: center;
  font-size: var(--fs-lede);
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
}
.process__final figcaption em { color: var(--saffron-dp); font-style: italic; font-weight: 500; }
.process__final figcaption span {
  display: block;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive);
  margin-top: 8px;
}

/* My Iran product layout — image natural ratio, no crop */
.my-iran.product { grid-template-columns: 5fr 7fr; align-items: start; }
.my-iran .product__media { padding-bottom: 22px; }
.my-iran .product__media-block { inset: 22px -22px 0 22px; }
.my-iran .product__media img {
  aspect-ratio: auto;
  width: 100%;
  height: auto;
  max-height: 72vh;
  object-fit: contain;
  background: var(--cream);
}
@media (max-width: 820px) {
  .my-iran.product { grid-template-columns: 1fr; }
  .my-iran .product__media img { max-height: none; }
}
