@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,300;0,14..32,400;0,14..32,500;0,14..32,700;0,14..32,800;0,14..32,900;1,14..32,300&family=JetBrains+Mono:wght@400;500&display=swap');


/* ═══════════════════════════════════════════════════════════════
   DESIGN STUDIO BY WS — Award-Winning Cinematic Edition
   Typography: Inter / JetBrains Mono (Google Fonts)
═══════════════════════════════════════════════════════════════ */
/* ── Tokens ───────────────────────────────────────────────── */
:root {
  --paper:       #f5f2ea;
  --white:       #fffcf7;
  --ink:         #0d0e0c;
  --soft-ink:    #1a1a18;
  --muted:       #7a7369;
  --line:        rgba(13, 14, 12, 0.12);
  --line-mid:    rgba(13, 14, 12, 0.22);
  --clay:        #9d8267;
  --ochre:       #b5aa95;

  --font-sans:   'Inter', system-ui, Arial, sans-serif;
  --font-mono:   'JetBrains Mono', 'SFMono-Regular', monospace;

  --ease-expo:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-power3: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-cinema: cubic-bezier(0.77, 0, 0.175, 1);
}
/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  /* Natural browser cursor — no custom cursor */
}
body.modal-open { overflow: hidden; }
@media (hover: none) { body, button { cursor: auto; } }
img, video { display: block; width: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
button {
  color: inherit;
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}
::selection { background: var(--ink); color: var(--paper); }
/* ── Kicker ───────────────────────────────────────────────── */
.kicker {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 14px;
}
/* Cursor-related: completely removed — using natural browser cursor */
/* ═══════════════════════════════════════════════════════════════
   LOADER
═══════════════════════════════════════════════════════════════ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
}
.loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.loader__name {
  font-size: clamp(22px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--paper);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.loader__sub {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(245, 242, 234, 0.45);
}
.loader__bar {
  width: 280px;
  height: 1px;
  background: rgba(245, 242, 234, 0.15);
  overflow: hidden;
}
.loader__bar span {
  display: block;
  height: 100%;
  background: var(--paper);
  transform-origin: left center;
}
.white-fade {
  position: fixed;
  inset: 0;
  z-index: 8999;
  background: var(--paper);
  pointer-events: none;
}
/* ═══════════════════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  mix-blend-mode: difference;
  pointer-events: none;
}
.nav.is-visible { pointer-events: auto; }
.nav__brand, .nav__links a, .nav__links button {
  color: var(--paper);
  text-decoration: none;
  background: none;
  border: none;
  pointer-events: auto;
}
.nav__brand {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
.nav__links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav__links a,
.nav__links button {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.75;
  transition: opacity 0.3s ease;
}
.nav__links a:hover,
.nav__links button:hover { opacity: 1; }
/* ═══════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: #0d0e0c;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
.hero__img-wrap {
  position: absolute;
  inset: -8%;
  will-change: transform;
  z-index: 0;
}
.hero__img-parallax {
  position: absolute;
  inset: 0;
  will-change: transform;
}
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.03) brightness(0.88);
  will-change: transform;
}
.hero__gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(13,14,12,0.28) 0%, transparent 35%),
    linear-gradient(to top, rgba(13,14,12,0.65) 0%, transparent 55%),
    linear-gradient(to right, rgba(13,14,12,0.15) 0%, transparent 55%);
  pointer-events: none;
}
/* Cinematic grain */
.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.038;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='360' height='360'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='360' height='360' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 220px;
  animation: grainShift 0.15s steps(1) infinite;
}
@keyframes grainShift {
  0%  { background-position: 0 0; }
  20% { background-position: -45px -60px; }
  40% { background-position: 30px -90px; }
  60% { background-position: -70px 30px; }
  80% { background-position: 50px 50px; }
  100% { background-position: -30px -30px; }
}
/* Title */
.hero__title-wrap {
  position: relative;
  z-index: 3;
  padding: 0 48px 72px;
  will-change: opacity, transform;
}
.hero__line {
  display: flex;
  gap: 0.22em;
  line-height: 0.88;
  overflow: visible;
}
.hero__line--indent { padding-left: 0.22em; }
.hw {
  display: inline-block;
  font-size: clamp(60px, 9.5vw, 162px);
  font-weight: 900;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--paper);
  will-change: opacity, transform, filter;
}
/* Scroll hint */
.hero__scroll {
  position: absolute;
  bottom: 42px;
  right: 48px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  will-change: opacity, transform;
}
.hero__scroll-label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(245, 242, 234, 0.6);
}
.hero__scroll-line {
  width: 64px;
  height: 1px;
  background: rgba(245, 242, 234, 0.2);
  overflow: hidden;
}
.hero__scroll-fill {
  width: 100%;
  height: 100%;
  background: rgba(245, 242, 234, 0.7);
  transform-origin: left;
  animation: scrollFill 2.2s var(--ease-expo) infinite;
}
@keyframes scrollFill {
  0%   { transform: scaleX(0); transform-origin: left; }
  45%  { transform: scaleX(1); transform-origin: left; }
  55%  { transform: scaleX(1); transform-origin: right; }
  100% { transform: scaleX(0); transform-origin: right; }
}
/* Location badge — moved to bottom left to balance with the scroll hint and avoid nav link overlap */
.hero__meta {
  position: absolute;
  bottom: 42px;
  left: 48px;
  z-index: 3;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: rgba(245, 242, 234, 0.5);
}
/* ═══════════════════════════════════════════════════════════════
   INDEX STRIP
═══════════════════════════════════════════════════════════════ */
.index-strip {
  display: flex;
  border-top: 1px solid var(--line-mid);
  border-bottom: 1px solid var(--line-mid);
}
.index-strip > div {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 32px;
  border-right: 1px solid var(--line-mid);
}
.index-strip > div:last-child { border-right: none; }
.index-strip span {
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.index-strip strong {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--ink);
}
/* ═══════════════════════════════════════════════════════════════
   EXHIBITION SECTION
═══════════════════════════════════════════════════════════════ */
.exhibition {
  background: var(--white);
  padding-bottom: 160px;
}
.exhibition__intro {
  padding: 160px 64px 80px;
  max-width: 1200px;
  will-change: opacity, transform;
}
.exhibition__tagline {
  font-size: clamp(40px, 5.5vw, 92px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.88;
  color: var(--ink);
}
/* Exhibition Items */
.exhibition__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 1440px;
  margin: 0 auto;
}
.exh-item {
  display: grid;
  grid-template-columns: 72px 1fr 400px;
  gap: 0;
  border-top: 1px solid var(--line-mid);
  padding: 64px;
  will-change: opacity, transform;
  align-items: start;
}
.exh-item:last-child { border-bottom: 1px solid var(--line-mid); }
.exh-item__num {
  padding-top: 6px;
}
.exh-item__num span {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
}
.exh-item__img-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: none;
  display: block;
  width: 100%;
}
.exh-item__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #e8e4dc;
  width: 100%;
}
.exh-item__img-inner {
  position: absolute;
  inset: 0;
  will-change: transform;
}
.exh-item__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 1.0s var(--ease-power3), transform 1.4s var(--ease-expo);
  filter: saturate(0.82);
}
.exh-item__img-wrap:hover .exh-item__img {
  filter: saturate(1.0);
  transform: scale(1.04);
}
.exh-item__img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 14, 12, 0);
  transition: background 0.5s ease;
  pointer-events: none;
}
.exh-item__img-wrap:hover .exh-item__img-overlay {
  background: rgba(13, 14, 12, 0.12);
}
.exh-item__img-cta {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--paper);
  background: rgba(13, 14, 12, 0.5);
  backdrop-filter: blur(8px);
  padding: 8px 14px;
  border-radius: 2px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s var(--ease-power3);
}
.exh-item__img-wrap:hover .exh-item__img-cta {
  opacity: 1;
  transform: translateY(0);
}
/* Item Info */
.exh-item__info {
  padding-left: 64px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-self: center;
}
.exh-item__kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.exh-item__sep { opacity: 0.4; }
.exh-item__title {
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 0.92;
  text-transform: uppercase;
  color: var(--ink);
}
.exh-item__desc {
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.65;
  color: var(--muted);
  max-width: 38ch;
}
.exh-item__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink);
  background: none;
  border: none;
  border-bottom: 1px solid rgba(13, 14, 12, 0.35);
  padding-bottom: 6px;
  width: fit-content;
  transition: gap 0.4s var(--ease-power3), border-color 0.3s ease;
}
.exh-item__cta:hover { gap: 18px; border-color: var(--ink); }
.exh-item__cta svg { flex-shrink: 0; transition: transform 0.4s var(--ease-power3); }
.exh-item__cta:hover svg { transform: translateX(4px); }
/* ═══════════════════════════════════════════════════════════════
   PROJECTS GRID
═══════════════════════════════════════════════════════════════ */
.projects-grid {
  padding: 140px 64px;
  background: var(--ink);
  color: var(--paper);
}
.projects-grid__head {
  max-width: 1200px;
  margin: 0 auto 80px;
  will-change: opacity, transform;
}
.projects-grid__head .kicker { color: rgba(245,242,234,0.45); }
.projects-grid__head h2 {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.9;
  text-transform: uppercase;
}
.projects-grid__cards {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.project-card {
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: left;
  background: var(--soft-ink);
  border: 1px solid rgba(245, 242, 234, 0.08);
  overflow: hidden;
  transition: border-color 0.4s ease;
  will-change: opacity, transform;
}
.project-card:hover { border-color: rgba(245, 242, 234, 0.22); }
.project-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}
.project-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-expo), filter 0.9s ease;
  filter: saturate(0.85);
}
.project-card:hover .project-card__img {
  transform: scale(1.06);
  filter: saturate(1.0);
}
.project-card__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(13,14,12,0.7) 100%);
}
.project-card__content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid rgba(245, 242, 234, 0.08);
}
.project-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.project-card__id {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(245, 242, 234, 0.4);
}
.project-card__type {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(245, 242, 234, 0.4);
}
.project-card__title {
  display: block;
  font-size: clamp(26px, 3.5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 0.92;
  text-transform: uppercase;
  color: var(--paper);
}
.project-card__sub {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: rgba(245, 242, 234, 0.4);
}
.project-card__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(245, 242, 234, 0.5);
  border-top: 1px solid rgba(245, 242, 234, 0.08);
  transition: color 0.3s ease;
}
.project-card:hover .project-card__cta { color: var(--paper); }
/* ═══════════════════════════════════════════════════════════════
   STUDIO
═══════════════════════════════════════════════════════════════ */
.studio {
  padding: 140px 64px;
  background: var(--paper);
  border-top: 1px solid var(--line-mid);
}
.studio__statement {
  max-width: 1200px;
  margin: 0 auto 80px;
}
.studio__statement h2 {
  font-size: clamp(32px, 4.5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 0.92;
  text-transform: uppercase;
}
.studio__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-mid);
}
.studio__cell {
  padding: 40px 0;
  border-right: 1px solid var(--line-mid);
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-right: 32px;
}
.studio__cell:last-child { border-right: none; padding-right: 0; }
.studio__cell:first-child { padding-left: 0; }
.studio__cell span {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
}
.studio__cell strong {
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
}
/* ═══════════════════════════════════════════════════════════════
   FILM SECTION
═══════════════════════════════════════════════════════════════ */
.film {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  min-height: 640px;
  background: #151513;
  color: var(--paper);
  overflow: hidden;
}
.film__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  padding: clamp(60px, 8vw, 120px) clamp(40px, 6vw, 80px);
}
.film__copy .kicker { color: rgba(245, 242, 234, 0.45); }
.film__copy h2 {
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.0;
  color: var(--paper);
  text-transform: uppercase;
}
.film__copy p {
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.65;
  color: rgba(245, 242, 234, 0.6);
  max-width: 42ch;
}
.film__frame {
  position: relative;
  overflow: hidden;
}
.film__frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* ═══════════════════════════════════════════════════════════════
   CONTACT SECTION
═══════════════════════════════════════════════════════════════ */
.contact {
  background: var(--ink);
  color: var(--paper);
  padding: 140px 64px;
  border-top: 1px solid rgba(245, 242, 234, 0.06);
  will-change: opacity, transform;
}
.contact__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact__header {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contact__header .kicker { color: rgba(245, 242, 234, 0.4); }
.contact__header h2 {
  font-size: clamp(40px, 5.5vw, 82px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.88;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.contact__header > p {
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.6;
  color: rgba(245, 242, 234, 0.6);
  max-width: 36ch;
  margin-bottom: 40px;
}
.contact__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-top: 1px solid rgba(245, 242, 234, 0.1);
  padding-top: 32px;
}
.contact__info-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact__info-item span {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(245, 242, 234, 0.35);
}
.contact__info-item a,
.contact__info-item strong {
  font-size: 16px;
  font-weight: 500;
  color: var(--paper);
}
.contact__info-item a:hover { text-decoration: underline; }
/* Form */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.form-field label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(245, 242, 234, 0.4);
}
.form-field input,
.form-field select,
.form-field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(245, 242, 234, 0.18);
  padding: 10px 0;
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--paper);
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
  transition: border-color 0.3s ease;
  width: 100%;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(245, 242, 234, 0.2);
}
.form-field select option { background: var(--soft-ink); color: var(--paper); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-bottom-color: rgba(245, 242, 234, 0.6);
}
.form-field textarea { resize: vertical; min-height: 100px; line-height: 1.5; }
.contact__submit {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--paper);
  color: var(--ink);
  padding: 18px 36px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  width: fit-content;
  transition: background 0.35s ease, gap 0.4s var(--ease-power3);
}
.contact__submit:hover { background: #e5e2da; gap: 22px; }
.contact__submit svg { flex-shrink: 0; transition: transform 0.4s var(--ease-power3); }
.contact__submit:hover svg { transform: translateX(4px); }
/* Success state */
.contact__success {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 48px 0;
}
.contact__success svg { color: rgba(245, 242, 234, 0.6); }
.contact__success h3 {
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.contact__success p {
  color: rgba(245, 242, 234, 0.6);
  font-size: 16px;
}
/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--white); /* White background for footer content */
  overflow: hidden;
  border-top: 1px solid var(--line-mid);
}
/* Big cinematic name marquee — pure white bold marquee on black strip */
.footer__name-marquee {
  overflow: hidden;
  background: var(--ink); /* Keep the marquee strip black */
  border-bottom: none;
}
.footer__name-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: nameMarquee 18s linear infinite;
  padding: 32px 0;
}
.footer__name-track span {
  flex-shrink: 0;
  padding-right: 80px;
  font-size: clamp(80px, 13vw, 190px); /* Larger, more bold */
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #ffffff; /* Pure white marquee text */
  line-height: 1;
}
@keyframes nameMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.footer__grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 64px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  border-bottom: 1px solid var(--line-mid);
  color: var(--ink);
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__brand {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.footer__sub {
  font-size: 13px;
  color: var(--muted);
}
.footer__label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 4px;
}
.footer__col strong,
.footer__col a {
  font-size: 15px;
  color: var(--ink);
  font-weight: 600; /* Bolder text for visibility */
}
.footer__col a:hover { text-decoration: underline; }
.footer__bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--muted);
}
/* ═══════════════════════════════════════════════════════════════
   PRESENTATION MODAL — Premium Light Layout Edition
═══════════════════════════════════════════════════════════════ */
.pres-overlay {
  position: fixed;
  inset: 0;
  z-index: 800;
  background: rgba(255, 255, 255, 0.98);
}
.pres-panel {
  position: absolute;
  inset: 0;
  background: var(--paper);
  display: flex;
  flex-direction: column;
}
/* Sticky bar */
.pres-bar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 18px 36px;
  background: rgba(245, 242, 234, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line-mid);
  flex-shrink: 0;
}
.pres-bar__left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pres-bar__type {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.pres-bar__title {
  font-size: clamp(18px, 2.5vw, 30px);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
}
.pres-bar__right {
  display: flex;
  align-items: center;
  gap: 28px;
}
.pres-bar__meta {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.pres-bar__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-mid);
  border-radius: 50%;
  color: var(--ink);
  background: none;
  transition: all 0.3s ease;
}
.pres-bar__close:hover {
  background: rgba(13, 14, 12, 0.05);
  border-color: var(--ink);
  color: var(--ink);
}
/* Scrollable deck — native browser scroll, Lenis disabled on this element */
.pres-deck {
  flex: 1;
  overflow-y: scroll;
  overflow-x: hidden;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: auto;
  /* Prevent Lenis from intercepting */
  touch-action: pan-y;
}
/* Individual slides — light presentation layout */
.pres-slide {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(60px, 8vh, 120px) clamp(40px, 6vw, 100px);
}
.pres-slide__img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 1500px;
  aspect-ratio: 16 / 9;
  background: #ffffff;
  box-shadow: 0 25px 75px rgba(13, 14, 12, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.pres-slide__img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Do NOT crop the drawings/text */
  background: #ffffff;
}
/* Room explanation overlay in light styling */
.pres-slide__info {
  position: absolute;
  bottom: clamp(24px, 4vh, 48px);
  left: clamp(36px, 5vw, 64px);
  z-index: 2;
  will-change: opacity, transform;
}
.pres-slide__info-inner {
  max-width: 520px;
}
.pres-slide__room-label {
  display: block;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.95;
  color: var(--ink);
  margin-bottom: 10px;
}
.pres-slide__room-desc {
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.6;
  color: var(--muted);
  max-width: 44ch;
}
/* Slide counter — positioned in whitespace */
.pres-slide__counter {
  position: absolute;
  top: clamp(80px, 12vh, 120px);
  right: clamp(36px, 5vw, 64px);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
  background: rgba(13, 14, 12, 0.04);
  backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: 3px;
}
/* ═══════════════════════════════════════════════════════════════
   GLOBAL GRAIN OVERLAY
═══════════════════════════════════════════════════════════════ */
.grain-overlay {
  position: fixed;
  inset: 0;
  z-index: 9997;
  pointer-events: none;
  opacity: 0.032;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='320' height='320'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='320' height='320' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 220px 220px;
  animation: grainShift 0.12s steps(1) infinite;
}
/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .exh-item {
    grid-template-columns: 48px 1fr 320px;
    padding: 48px 40px;
    gap: 0;
  }

  .exh-item__info { padding-left: 40px; }

  .projects-grid__cards { gap: 20px; }
}
@media (max-width: 1024px) {
  .exh-item {
    grid-template-columns: 1fr;
    padding: 48px 40px;
  }

  .exh-item__num { margin-bottom: 16px; }
  .exh-item__info { padding-left: 0; padding-top: 32px; }

  .projects-grid { padding: 80px 40px; }
  .projects-grid__cards { grid-template-columns: 1fr; max-width: 640px; }

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

  .contact__inner { grid-template-columns: 1fr; gap: 60px; }

  .film { grid-template-columns: 1fr; min-height: auto; }
  .film__frame { min-height: 400px; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; padding: 48px 40px; }
}
@media (max-width: 768px) {
  .nav { padding: 16px 20px; }
  .nav__links { gap: 20px; }

  .hero__title-wrap { padding: 0 24px 48px; }
  .hero__scroll { right: 24px; bottom: 32px; }
  .hero__meta { display: none; }

  .exhibition__intro { padding: 80px 24px 48px; }
  .exhibition__list .exh-item { padding: 40px 24px; }

  .projects-grid { padding: 80px 24px; }

  .studio { padding: 80px 24px; }
  .studio__grid { grid-template-columns: 1fr 1fr; gap: 0; }
  .studio__cell { padding: 28px 16px 28px 0; }

  .contact { padding: 80px 24px; }
  .form-row { grid-template-columns: 1fr; }

  .film { grid-template-columns: 1fr; }
  .film__frame { min-height: 320px; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 24px; padding: 40px 24px; }
  .footer__bottom { padding: 20px 24px; flex-direction: column; gap: 8px; text-align: center; }

  .pres-bar { padding: 14px 20px; }
  .pres-bar__meta { display: none; }

  .pres-slide__info { left: 20px; right: 20px; bottom: 28px; flex-direction: column; gap: 0; }
  .pres-slide__room-label { font-size: clamp(24px, 7vw, 40px); }
  .pres-slide__counter { top: 70px; right: 20px; }

  .index-strip { flex-wrap: wrap; }
  .index-strip > div { min-width: 50%; border-right: none; border-bottom: 1px solid var(--line-mid); }
}
