/* Studio-page specifics */
.studio-manifesto {
  background: var(--paper);
  color: var(--ink);
  padding: 140px 32px;
}
.manifesto-inner { max-width: 900px; margin: 0 auto; }
.manifesto-eyebrow {
  display: inline-block;
  padding: 8px 18px;
  border: 1px solid var(--ink);
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 40px;
}
.manifesto-inner p {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(24px, 3.2vw, 40px);
  line-height: 1.35;
  letter-spacing: -0.01em;
  text-wrap: balance;
  color: var(--ink);
  margin-bottom: 28px;
}
.manifesto-inner p em {
  font-family: var(--sans);
  font-style: normal;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.manifesto-inner p strong { font-weight: 700; color: var(--lime-2); background: var(--ink); padding: 0 8px; }
.manifesto-signature {
  margin-top: 60px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 20px;
  color: var(--mute-on-light);
}
.manifesto-signature b { color: var(--ink); font-weight: 400; }

/* Story with photo */
.story {
  background: var(--paper);
  color: var(--ink);
  padding: 40px 32px 140px;
}
.story-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.story-photo {
  aspect-ratio: 4/5;
  border-radius: 3px;
  overflow: hidden;
  background: var(--ink);
  position: relative;
}
.story-photo img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.05); }
.story-photo-tag {
  position: absolute;
  bottom: 20px; left: 20px;
  padding: 8px 14px;
  background: var(--lime);
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  border-radius: 100px;
}
.story h2 {
  font-weight: 900;
  font-size: clamp(38px, 5.4vw, 76px);
  line-height: 1;
  letter-spacing: -0.028em;
  text-wrap: balance;
}
.story h2 em { font-family: var(--serif); font-style: italic; font-weight: 300; letter-spacing: -0.01em; }
.story-body { margin-top: 34px; max-width: 460px; }
.story-body p { font-size: 15px; line-height: 1.75; color: rgba(14, 19, 37, 0.72); }
.story-body p + p { margin-top: 14px; }
.story-body p strong { color: var(--ink); font-weight: 700; }

/* Timeline */
.timeline {
  background: var(--ink);
  color: var(--paper);
  padding: 140px 32px;
}
.timeline-head { max-width: 1200px; margin: 0 auto 70px; }
.timeline-head h3 {
  font-weight: 900;
  font-size: clamp(38px, 5.4vw, 72px);
  line-height: 1;
  letter-spacing: -0.028em;
  text-wrap: balance;
  max-width: 700px;
}
.timeline-head h3 em { font-family: var(--serif); font-style: italic; font-weight: 300; }
.timeline-list {
  max-width: 1200px;
  margin: 0 auto;
  list-style: none;
  border-top: 1px solid var(--hair-on-dark);
}
.timeline-item {
  display: grid;
  grid-template-columns: 160px 1fr 1fr;
  gap: 40px;
  padding: 30px 0;
  border-bottom: 1px solid var(--hair-on-dark);
  transition: background .3s ease, padding .3s var(--ease-out-expo);
}
.timeline-item:hover { padding-left: 20px; }
.timeline-item:hover .timeline-year { color: var(--lime); }
.timeline-year {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 34px;
  color: var(--paper);
  transition: color .3s;
  line-height: 1;
}
.timeline-title { font-weight: 700; font-size: 18px; letter-spacing: -0.01em; }
.timeline-title em { font-family: var(--serif); font-style: italic; font-weight: 300; }
.timeline-desc { font-size: 14.5px; line-height: 1.7; color: var(--mute-on-dark); max-width: 380px; }

/* Awards / press strip */
.awards {
  background: var(--paper);
  color: var(--ink);
  padding: 120px 32px;
  border-top: 1px solid var(--hair-on-light);
}
.awards-head { max-width: 1200px; margin: 0 auto 50px; text-align: center; }
.awards-head span { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 700; color: var(--mute-on-light); }
.awards-head h3 {
  font-weight: 900;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-top: 20px;
  text-wrap: balance;
}
.awards-head h3 em { font-family: var(--serif); font-style: italic; font-weight: 300; }
.awards-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.award {
  padding: 40px 24px;
  border: 1px solid rgba(14, 19, 37, 0.15);
  border-radius: 3px;
  text-align: center;
  transition: background .3s, color .3s, transform .3s var(--ease-out-expo);
}
.award:hover { background: var(--ink); color: var(--paper); transform: translateY(-6px); }
.award:hover .award-year { color: var(--lime); }
.award b { display: block; font-family: var(--serif); font-style: italic; font-weight: 300; font-size: 36px; margin-bottom: 12px; }
.award .award-year { display: block; font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 700; color: var(--mute-on-light); margin-bottom: 12px; transition: color .3s; }
.award p { font-size: 13px; line-height: 1.5; }

@media (max-width: 900px) {
  .story-grid { grid-template-columns: 1fr; gap: 50px; }
  .story-body { max-width: none; }
  .awards-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline-item { grid-template-columns: 100px 1fr; gap: 20px; }
  .timeline-desc { grid-column: 1 / -1; padding-left: 100px; padding-top: 8px; }
}
@media (max-width: 560px) {
  .studio-manifesto, .story, .timeline, .awards { padding-left: 20px; padding-right: 20px; padding-top: 90px; padding-bottom: 90px; }
  .awards-grid { grid-template-columns: 1fr; }
  .timeline-item { grid-template-columns: 80px 1fr; }
  .timeline-desc { padding-left: 80px; }
}