*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --black: #111;
  --white: #fff;
  --bg: #f8f8f6;
  --gray: #666;
  --light: #ddd;
}

html {
  background: var(--bg);
  color: var(--black);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body { min-height: 100vh; }

a { color: inherit; text-decoration: none; }
a:hover { opacity: 0.5; }

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

/* === Nav === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 30px;
  background: var(--bg);
}

.nav__brand { font-weight: 700; font-size: 15px; letter-spacing: -0.01em; }
.nav__links { display: flex; gap: 24px; }
.nav__links a { font-size: 14px; font-weight: 500; }
.nav__links a.is-active { text-decoration: underline; text-underline-offset: 4px; }

/* === Main === */
main {
  max-width: 900px;
  margin: 0 auto;
  padding: 140px 30px 80px;
}

/* === Page Header === */
.page-header {
  margin-bottom: 80px;
}

.page-header h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 12px;
}

.page-header__sub {
  font-size: 16px;
  color: var(--gray);
}

/* === Collaborations === */
.project {
  padding: 40px 0;
  border-top: 1px solid var(--light);
}

.project__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 8px;
}

.project__header h2 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray);
}

.project__tag {
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 0.03em;
}

.project__body h3 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.project__body p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.65;
  max-width: 640px;
}

/* === Exhibitions === */
.exhibition {
  display: flex;
  gap: 40px;
  padding: 36px 0;
  border-top: 1px solid var(--light);
  align-items: baseline;
}

.exhibition__year {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  flex-shrink: 0;
  width: 120px;
}

.exhibition__venue {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray);
  margin-bottom: 6px;
}

.exhibition__desc {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.6;
}

.admissions-block {
  margin-top: 80px;
  padding: 60px 0;
  border-top: 1px solid var(--light);
  text-align: center;
}

.admissions-block__stat {
  font-size: clamp(56px, 10vw, 120px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 12px;
}

.admissions-block__label {
  font-size: 16px;
  color: var(--gray);
  margin-bottom: 20px;
}

.admissions-block__body {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.65;
  max-width: 560px;
  margin: 0 auto;
}

/* === Manifesto === */
.page-header--manifesto {
  margin-bottom: 40px;
}

.manifesto__block {
  padding: 40px 0;
  border-top: 1px solid var(--light);
}

.manifesto__block:first-child {
  border-top: none;
  padding-top: 20px;
  padding-bottom: 60px;
}

.manifesto__statement {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.manifesto__block h2 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray);
  margin-bottom: 12px;
}

.manifesto__block p {
  font-size: 17px;
  line-height: 1.7;
  max-width: 640px;
}

/* === About === */
.about-intro {
  margin-bottom: 60px;
}

.about-intro p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 660px;
}

.founders {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.founder h2 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.founder__title {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray);
  margin-bottom: 2px;
}

.founder__degree {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 14px;
}

.founder__bio {
  font-size: 14px;
  line-height: 1.65;
  color: var(--gray);
}

.coaching-mediums {
  padding: 50px 0;
  border-top: 1px solid var(--light);
  margin-bottom: 40px;
}

.coaching-mediums h2 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray);
  margin-bottom: 20px;
}

.mediums-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.mediums-grid span {
  padding: 8px 18px;
  border: 1px solid var(--light);
  border-radius: 24px;
  font-size: 14px;
  font-weight: 500;
}

.contact-section {
  padding: 50px 0;
  border-top: 1px solid var(--light);
}

.contact-section h2 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray);
  margin-bottom: 24px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-address {
  font-size: 15px;
  line-height: 1.7;
}

.contact-label {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 8px;
}

.qr-code {
  border-radius: 4px;
}

/* === Project Images === */
.project__images {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  overflow-x: auto;
}

.project__images img {
  height: 220px;
  width: auto;
  border-radius: 3px;
  flex-shrink: 0;
}

/* === Exhibition Images === */
.exhibition__images {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  overflow-x: auto;
}

.exhibition__images img {
  height: 180px;
  width: auto;
  border-radius: 3px;
  flex-shrink: 0;
}

/* === Manifesto Image === */
.manifesto__image {
  margin: 20px 0;
}

.manifesto__image img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  border-radius: 3px;
}

@media (max-width: 768px) {
  .project__images img { height: 160px; }
  .exhibition__images img { height: 140px; }
}

/* === Footer === */
.page-footer {
  text-align: center;
  padding: 40px 30px;
  font-size: 13px;
  color: var(--gray);
}

/* === Mobile === */
@media (max-width: 768px) {
  .nav { padding: 16px 18px; }
  .nav__brand { font-size: 13px; }
  .nav__links { gap: 14px; }
  .nav__links a { font-size: 12px; }

  main { padding: 110px 20px 60px; }

  .exhibition { flex-direction: column; gap: 8px; }
  .exhibition__year { width: auto; }

  .founders { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
