/* 
  Evacuate from Meaning - Brand Website
  Visual Direction: Ultra-minimalist, anti-design, conceptual
*/

:root {
  --bg-color: #fafafa;
  --text-color: #0a0a0a;
  --accent-color: #333;
  --muted: #888;
  --spacing-unit: 8px;
  --container-max: 1400px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  font-weight: 300;
  letter-spacing: 0.02em;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: calc(var(--spacing-unit) * 3) calc(var(--spacing-unit) * 4);
  background: rgba(250, 250, 250, 0.95);
  backdrop-filter: blur(10px);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
}

.nav-brand {
  font-size: 0;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  height: 40px;
  width: auto;
  display: block;
}

.brand-name {
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-color);
}

.nav-links {
  display: flex;
  gap: calc(var(--spacing-unit) * 4);
}

.nav-links a {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-decoration: none;
  color: var(--text-color);
  transition: opacity 0.3s ease;
}

.nav-links a:hover {
  opacity: 0.5;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(360px, 0.85fr) minmax(0, 1.15fr);
  gap: calc(var(--spacing-unit) * 2);
  padding: 112px calc(var(--spacing-unit) * 4) calc(var(--spacing-unit) * 6);
  align-items: end;
  max-width: var(--container-max);
  margin: 0 auto;
}

.hero-home {
  min-height: 96vh;
}

.hero-text {
  padding: calc(var(--spacing-unit) * 6) calc(var(--spacing-unit) * 2) calc(var(--spacing-unit) * 4) calc(var(--spacing-unit) * 5);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-text-home {
  max-width: 32rem;
}

.hero-eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: calc(var(--spacing-unit) * 3);
}

.manifesto-line {
  font-size: clamp(0.92rem, 1.08vw, 1.08rem);
  line-height: 1.72;
  color: var(--text-color);
}

.manifesto-line.indent {
  padding-left: calc(var(--spacing-unit) * 3.2);
  color: var(--muted);
}

.hero-note-block {
  margin-top: calc(var(--spacing-unit) * 4.5);
  padding-top: calc(var(--spacing-unit) * 2.5);
  border-top: 1px solid rgba(10, 10, 10, 0.08);
}

.hero-note {
  max-width: 24rem;
  font-size: 0.84rem;
  line-height: 1.68;
  color: rgba(10, 10, 10, 0.76);
}

.hero-actions {
  display: flex;
  gap: calc(var(--spacing-unit) * 1.5);
  flex-wrap: wrap;
  margin-top: calc(var(--spacing-unit) * 3.2);
}

.hero-action {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 calc(var(--spacing-unit) * 2.2);
  border: 1px solid rgba(10, 10, 10, 0.12);
  text-decoration: none;
  color: var(--text-color);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.hero-action:hover {
  background: var(--text-color);
  color: var(--bg-color);
  border-color: var(--text-color);
}

.hero-action--muted {
  color: var(--muted);
}

.hero-image {
  padding: 0;
}

.hero-image-home {
  align-self: stretch;
}

.hero-img {
  width: 100%;
  height: 100%;
  min-height: 72vh;
  object-fit: cover;
  display: block;
}

/* Sections */
.section {
  padding: calc(var(--spacing-unit) * 14) calc(var(--spacing-unit) * 4);
  max-width: var(--container-max);
  margin: 0 auto;
}

.section-curated {
  padding-top: calc(var(--spacing-unit) * 15);
}

.section-heading-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: calc(var(--spacing-unit) * 4);
  margin-bottom: calc(var(--spacing-unit) * 6.5);
}

.section-title {
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: calc(var(--spacing-unit) * 1.5);
  color: var(--muted);
}

.section-title a {
  color: var(--muted);
  text-decoration: none;
}

.section-title a:hover {
  color: var(--text-color);
}

.section-intro {
  max-width: 34rem;
  font-size: 0.93rem;
  line-height: 1.72;
  color: rgba(10, 10, 10, 0.72);
}

.section-link {
  white-space: nowrap;
  text-decoration: none;
  color: var(--text-color);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(10, 10, 10, 0.22);
}

.section-link:hover {
  border-color: var(--text-color);
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: calc(var(--spacing-unit) * 4);
}

.product-grid-home {
  gap: calc(var(--spacing-unit) * 4.5);
}

.product-item {
  cursor: pointer;
}

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

.product-card-home {
  display: flex;
  flex-direction: column;
}

.product-image {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: calc(var(--spacing-unit) * 2);
  transition: opacity 0.2s ease, transform 0.25s ease;
}

.product-item:hover .product-image {
  opacity: 0.88;
  transform: translateY(-2px);
}

.product-copy {
  max-width: 18rem;
}

.product-name {
  font-size: 0.75rem;
  margin-bottom: calc(var(--spacing-unit) / 1.5);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1.35;
}

.product-description {
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--muted);
}

.product-price {
  font-size: 0.75rem;
  color: var(--muted);
}

/* Fashion Lookbook */
.fashion-section {
  padding-top: calc(var(--spacing-unit) * 18);
}

.fashion-heading-top {
  margin-bottom: calc(var(--spacing-unit) * 2);
}

.fashion-video-block {
  width: min(100%, 980px);
  margin: 0 0 calc(var(--spacing-unit) * 4.5);
}

.fashion-video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #111;
}

.fashion-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: calc(var(--spacing-unit) * 4);
  align-items: end;
  margin-bottom: calc(var(--spacing-unit) * 3.2);
}

.fashion-heading-block {
  display: flex;
  flex-direction: column;
  gap: calc(var(--spacing-unit) * 1.2);
}

.fashion-heading {
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: 0.92;
  font-weight: 600;
  letter-spacing: -0.05em;
}

.fashion-intro-copy {
  justify-self: end;
  display: flex;
  flex-direction: column;
  gap: calc(var(--spacing-unit) * 1.4);
  max-width: 30rem;
}

.fashion-copy {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-color);
  text-align: right;
}

.fashion-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, rgba(0,0,0,0.15), rgba(0,0,0,0.04));
  margin-bottom: calc(var(--spacing-unit) * 5.5);
}

.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: calc(var(--spacing-unit) * 5.5) calc(var(--spacing-unit) * 3.2);
}

.look-card {
  display: flex;
  flex-direction: column;
  gap: calc(var(--spacing-unit) * 1.6);
  align-items: stretch;
}

.look-frame {
  width: 100%;
  display: block;
}

.look-frame--uniform {
  width: 100%;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: #f0f0f0;
}

.look-image {
  width: 100%;
  height: auto;
  display: block;
  background: #f0f0f0;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.look-card:hover .look-image {
  transform: scale(1.018);
  filter: contrast(1.02);
}

.look-image--uniform {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.look-copy {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  grid-template-areas:
    "label title"
    "label desc";
  column-gap: calc(var(--spacing-unit) * 1.2);
  row-gap: calc(var(--spacing-unit) * 0.45);
  align-items: start;
  padding-top: calc(var(--spacing-unit) * 0.95);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.look-label {
  grid-area: label;
  width: 100%;
  margin: 0;
  padding-top: 0.12rem;
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.look-title {
  grid-area: title;
  width: 100%;
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.02;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.look-description {
  grid-area: desc;
  width: 100%;
  margin: 0;
  font-size: 0.79rem;
  line-height: 1.48;
  color: var(--muted);
}


/* Art */
.art-coming-section {
  min-height: calc(100vh - 180px);
}

.art-coming-soon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  font-size: clamp(1rem, 2vw, 1.4rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.home-art-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: calc(var(--spacing-unit) * 1.25) calc(var(--spacing-unit) * 3.5);
  align-items: start;
}

.home-art-item {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.home-art-media {
  width: min(100%, 260px);
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: calc(var(--spacing-unit) * 1.15);
}

.home-art-image {
  width: auto;
  max-width: 100%;
  max-height: 220px;
  height: auto;
  display: block;
  background: #f1f1f1;
  object-fit: contain;
  transition: opacity 0.2s ease;
}

.home-art-item:hover .home-art-image {
  opacity: 0.85;
}

.home-art-copy {
  width: 100%;
  max-width: 260px;
}

.home-art-name {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1.35;
  margin-bottom: calc(var(--spacing-unit) * 0.25);
}

.home-art-year {
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  line-height: 1.3;
}

.art-page {
  padding-top: calc(var(--spacing-unit) * 18);
}

.art-hero-block {
  margin-bottom: calc(var(--spacing-unit) * 10);
}

.art-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: calc(var(--spacing-unit) * 6);
  align-items: stretch;
}

.art-hero-copy {
  max-width: 42rem;
}

.art-heading {
  font-size: clamp(2.6rem, 7vw, 6rem);
  line-height: 0.92;
  font-weight: 600;
  letter-spacing: -0.05em;
  margin-bottom: calc(var(--spacing-unit) * 4);
}

.art-intro {
  max-width: 34rem;
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: calc(var(--spacing-unit) * 3);
}

.art-intro-muted {
  color: var(--muted);
}

.art-hero-panel {
  display: flex;
}

.art-panel-frame {
  width: 100%;
  min-height: 540px;
  border: 1px solid #e4e4e4;
  background: linear-gradient(180deg, #f2f2f2 0%, #e8e8e8 100%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: calc(var(--spacing-unit) * 3);
}

.art-panel-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(10, 10, 10, 0.58);
}

.art-manifesto-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: calc(var(--spacing-unit) * 3);
  margin-bottom: calc(var(--spacing-unit) * 10);
}

.art-manifesto-card {
  border-top: 1px solid #d8d8d8;
  padding-top: calc(var(--spacing-unit) * 2.5);
}

.art-manifesto-card p {
  font-size: 0.9rem;
  line-height: 1.9;
}

.art-kicker {
  margin-bottom: calc(var(--spacing-unit) * 2);
  font-size: 0.72rem !important;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.art-section-block {
  padding-top: calc(var(--spacing-unit) * 2);
  margin-bottom: calc(var(--spacing-unit) * 10);
}

.art-section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: calc(var(--spacing-unit) * 4);
  margin-bottom: calc(var(--spacing-unit) * 4);
}

.art-section-note {
  font-size: 0.875rem;
  color: var(--muted);
  max-width: 28rem;
  text-align: right;
}

.art-list-grid {
  border-top: 1px solid #d8d8d8;
}

.art-list-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: calc(var(--spacing-unit) * 3);
  padding: calc(var(--spacing-unit) * 3) 0;
  border-bottom: 1px solid #ececec;
}

.art-list-index {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.art-list-title {
  font-size: 1rem;
  margin-bottom: calc(var(--spacing-unit) * 0.8);
}

.art-list-copy {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--muted);
}

.art-quote-block {
  border-top: 1px solid #d8d8d8;
  padding-top: calc(var(--spacing-unit) * 4);
}

.art-quote {
  max-width: 32rem;
  font-size: clamp(1.2rem, 2.4vw, 2rem);
  line-height: 1.5;
  letter-spacing: -0.02em;
}

/* Art Index */
.art-index-page {
  padding-top: calc(var(--spacing-unit) * 18);
}

.art-index-intro {
  margin-bottom: calc(var(--spacing-unit) * 8);
}

.art-index-headline-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: calc(var(--spacing-unit) * 6);
  align-items: end;
}

.art-index-heading {
  font-size: clamp(2.8rem, 7.5vw, 6rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  font-weight: 600;
}

.art-index-copy {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--muted);
}

.art-project-list {
  display: flex;
  flex-direction: column;
  gap: calc(var(--spacing-unit) * 5);
}

.art-project-card {
  border-top: 1px solid #dcdcdc;
  padding-top: calc(var(--spacing-unit) * 2.5);
}

.art-project-card--featured {
  padding-top: 0;
  border-top: none;
}

.art-project-link {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: calc(var(--spacing-unit) * 4);
  text-decoration: none;
  color: inherit;
}

.art-project-media {
  background: #f1f1f1;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--spacing-unit) * 2);
}

.art-project-media--placeholder {
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e8e8e8;
}

.art-project-placeholder-text {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.art-project-image {
  width: auto;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.art-project-meta {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: calc(var(--spacing-unit) * 2);
}

.art-project-title {
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: calc(var(--spacing-unit) * 1.2);
}

.art-project-info {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.art-project-excerpt {
  max-width: 28rem;
  font-size: 0.95rem;
  line-height: 1.85;
}

.art-project-card--placeholder .art-project-title,
.art-project-card--placeholder .art-project-excerpt {
  color: #a0a0a0;
}

/* Project Pages */
.project-page {
  padding-top: calc(var(--spacing-unit) * 18);
}

.project-back-row {
  margin-bottom: calc(var(--spacing-unit) * 5);
}

.project-back-link {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-back-link:hover {
  color: var(--text-color);
}

.project-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: calc(var(--spacing-unit) * 5);
  align-items: end;
  margin-bottom: calc(var(--spacing-unit) * 5);
}

.project-title {
  font-size: clamp(2.4rem, 6.5vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-weight: 600;
  margin-bottom: calc(var(--spacing-unit) * 2.5);
}

.project-meta,
.project-medium {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.project-medium {
  color: var(--muted);
  margin-top: calc(var(--spacing-unit) * 1.2);
  line-height: 1.8;
}

.project-hero-note {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--muted);
}

.project-video-block {
  margin-bottom: calc(var(--spacing-unit) * 6);
}

.project-video {
  width: 100%;
  display: block;
  background: #111;
}

.project-image-block {
  margin-bottom: calc(var(--spacing-unit) * 6);
}

.project-image-block--lead {
  width: min(100%, 980px);
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: calc(var(--spacing-unit) * 3);
  margin-bottom: calc(var(--spacing-unit) * 8);
}

.project-figure {
  grid-column: span 5;
}

.project-figure--large {
  grid-column: span 7;
}

.project-figure--wide {
  grid-column: span 12;
}

.project-image {
  width: 100%;
  display: block;
}

.project-gallery--white-shirt-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: calc(var(--spacing-unit) * 3);
  align-items: start;
}

.project-figure--white-shirt-grid {
  grid-column: span 1;
  margin: 0;
}

.project-figure--white-shirt-grid-last {
  grid-column: 1 / span 2;
}

.project-sequence-head {
  margin-bottom: calc(var(--spacing-unit) * 4);
}

.project-gallery--restriction-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: calc(var(--spacing-unit) * 3);
  width: 89%;
  margin: 0 auto calc(var(--spacing-unit) * 8);
}

.project-figure--restriction-grid {
  grid-column: span 1;
  margin: 0;
}

.project-figure--restriction-grid-wide {
  grid-column: 1 / span 2;
}

.project-gallery--absurd {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: calc(var(--spacing-unit) * 3);
  width: 89%;
  margin: 0 auto calc(var(--spacing-unit) * 8);
}

.project-figure--absurd-half {
  grid-column: span 1;
  margin: 0;
}

.project-figure--absurd-wide {
  grid-column: 1 / span 2;
  margin: 0;
}

.project-gallery--bare-minimum {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: calc(var(--spacing-unit) * 3);
}

.project-figure--bare-minimum {
  grid-column: span 1;
  margin: 0;
}

.project-figure--bare-minimum-wide {
  grid-column: 1 / span 2;
}

.project-gallery--bare-minimum-stacked {
  display: flex;
  flex-direction: column;
  gap: calc(var(--spacing-unit) * 3);
  width: 89%;
  margin: 0 auto calc(var(--spacing-unit) * 8);
}

.project-figure--bare-minimum-stack {
  margin: 0;
}

.project-gallery--bare-minimum-row3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: calc(var(--spacing-unit) * 3);
}

.project-figure--bare-minimum-third {
  grid-column: span 1;
  margin: 0;
}

.project-gallery--after-survival {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: calc(var(--spacing-unit) * 3);
}

.project-figure--after-survival-third {
  grid-column: span 1;
  margin: 0;
}

.project-gallery--re-sculpting-single {
  display: flex;
  flex-direction: column;
  gap: calc(var(--spacing-unit) * 3);
  width: 89%;
  margin: 0 auto calc(var(--spacing-unit) * 8);
}

.project-figure--re-sculpting-single {
  margin: 0;
}

.project-gallery--evacuate-single {
  display: flex;
  flex-direction: column;
  gap: calc(var(--spacing-unit) * 3);
}

.project-figure--evacuate-single {
  margin: 0;
}

.project-gallery--evacuate-double {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: calc(var(--spacing-unit) * 3);
  margin-bottom: calc(var(--spacing-unit) * 8);
}

.project-figure--evacuate-half {
  margin: 0;
}

.project-image--evacuate-gallery {
  width: 89%;
  margin: 0 auto;
}

.project-statement-image-block {
  margin: calc(var(--spacing-unit) * 1.5) 0 calc(var(--spacing-unit) * 5);
  width: min(100%, 1080px);
}

.project-statement--after-image {
  margin-top: calc(var(--spacing-unit) * 1.5);
}

.project-gallery-spacer {
  min-height: 1px;
}

.project-statement-block {
  border-top: 1px solid #dcdcdc;
  padding-top: calc(var(--spacing-unit) * 4);
  padding-bottom: calc(var(--spacing-unit) * 8);
}


.project-statement {
  max-width: 760px;
}

.project-statement p {
  font-size: 1rem;
  line-height: 2;
  margin-bottom: calc(var(--spacing-unit) * 3.5);
}

.essay-statement p {
  max-width: 46rem;
}

.meditative-statement p {
  max-width: 40rem;
}

.project-statement-block--meditative .project-statement {
  max-width: 680px;
}

/* Campaign Grid */
.campaign-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: calc(var(--spacing-unit) * 2);
}

.campaign-item .placeholder-image {
  height: 60vh;
}

/* Runway */
.runway-container {
  width: 100%;
}

.runway-video {
  height: 80vh;
  margin-bottom: calc(var(--spacing-unit) * 2);
}

.runway-info {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.1em;
}

/* About Section */
.about-section {
  padding: calc(var(--spacing-unit) * 16) calc(var(--spacing-unit) * 4);
}

.about-content {
  max-width: 600px;
  margin: 0 auto;
}

.about-content p {
  font-size: 0.9rem;
  line-height: 2;
  margin-bottom: calc(var(--spacing-unit) * 3);
}

.about-content .quote {
  font-style: italic;
  color: var(--muted);
  margin: calc(var(--spacing-unit) * 6) 0;
}

.about-content .final {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-top: calc(var(--spacing-unit) * 6);
}

/* Contact Section */
.contact-section {
  padding: calc(var(--spacing-unit) * 12) calc(var(--spacing-unit) * 4);
}

.contact-content p {
  font-size: 0.875rem;
  margin-bottom: calc(var(--spacing-unit) * 2);
}

.contact-content a {
  color: var(--text-color);
  text-decoration: none;
}

.contact-content a:hover {
  text-decoration: underline;
}

/* Newsletter */
.newsletter-section {
  padding: calc(var(--spacing-unit) * 12) calc(var(--spacing-unit) * 4);
  text-align: center;
  border-top: 1px solid #e5e5e5;
}

.newsletter-title {
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: calc(var(--spacing-unit) * 4);
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: calc(var(--spacing-unit) * 2);
  max-width: 400px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: calc(var(--spacing-unit) * 1.5);
  border: none;
  border-bottom: 1px solid #ccc;
  background: transparent;
  font-size: 0.875rem;
  outline: none;
}

.newsletter-form input::placeholder {
  color: var(--muted);
}

.newsletter-form input:focus {
  border-bottom-color: var(--text-color);
}

.newsletter-form button {
  padding: calc(var(--spacing-unit) * 1.5) calc(var(--spacing-unit) * 2);
  background: transparent;
  border: 1px solid var(--text-color);
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background: var(--text-color);
  color: var(--bg-color);
}

/* Footer */
.footer {
  padding: calc(var(--spacing-unit) * 6) calc(var(--spacing-unit) * 4);
  border-top: 1px solid #e5e5e5;
}

.footer-content {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.footer-links {
  display: flex;
  gap: calc(var(--spacing-unit) * 3);
}

.footer-links a {
  font-size: 0.75rem;
  text-decoration: none;
  color: var(--text-color);
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 0.5;
}

.footer-social a {
  font-size: 0.75rem;
  text-decoration: none;
  color: var(--text-color);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    gap: calc(var(--spacing-unit) * 4);
    min-height: auto;
    padding-top: 96px;
  }

  .hero-text {
    padding: calc(var(--spacing-unit) * 2) 0 0;
    max-width: 100%;
  }

  .hero-img {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .section-heading-row {
    flex-direction: column;
    align-items: flex-start;
    gap: calc(var(--spacing-unit) * 2);
  }

  .product-grid,
  .home-art-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-art-media {
    width: 100%;
    height: 220px;
  }

  .home-art-image {
    max-width: 100%;
    max-height: 220px;
  }

  .lookbook-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .fashion-video-block {
    width: min(100%, 820px);
  }

  .fashion-intro-copy {
    justify-self: start;
    max-width: 34rem;
  }

  .fashion-copy {
    text-align: left;
  }

  .look-copy {
    grid-template-columns: 1fr;
    grid-template-areas:
      "label"
      "title"
      "desc";
    row-gap: calc(var(--spacing-unit) * 0.55);
  }

  .art-hero-grid,
  .art-manifesto-grid,
  .art-index-headline-row,
  .art-project-link,
  .project-hero {
    grid-template-columns: 1fr;
  }

  .art-panel-frame {
    min-height: 420px;
  }

  .art-section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .art-section-note {
    text-align: left;
  }

  .project-gallery,
  .project-gallery--white-shirt-grid,
  .project-gallery--restriction-grid,
  .project-gallery--absurd {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-figure,
  .project-figure--large,
  .project-figure--wide,
  .project-figure--white-shirt-grid,
  .project-figure--restriction-grid,
  .project-figure--absurd-half {
    grid-column: span 1;
    width: 100%;
    margin-top: 0;
    margin-left: 0;
    padding-top: 0;
  }

  .project-figure--white-shirt-grid-last,
  .project-figure--restriction-grid-wide,
  .project-figure--absurd-wide {
    grid-column: 1 / span 2;
    width: 100%;
  }

  .project-sequence-item,
  .project-sequence-item.narrow,
  .project-sequence-item.wide {
    width: 100%;
  }

  .project-gallery--bare-minimum-row3,
  .project-gallery--after-survival {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero {
    padding-left: calc(var(--spacing-unit) * 2.5);
    padding-right: calc(var(--spacing-unit) * 2.5);
  }

  .hero-eyebrow,
  .section-link {
    font-size: 0.66rem;
  }

  .hero-actions {
    gap: calc(var(--spacing-unit) * 1);
  }

  .hero-action {
    min-height: 38px;
    padding: 0 calc(var(--spacing-unit) * 1.8);
  }

  .product-grid,
  .home-art-grid {
    grid-template-columns: 1fr;
  }

  .home-art-item--featured .home-art-media,
  .home-art-media {
    height: 300px;
  }

  .lookbook-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: calc(var(--spacing-unit) * 4);
  }

  .look-title {
    font-size: 1rem;
  }

  .look-description {
    font-size: 0.78rem;
  }

  .look-copy {
    grid-template-columns: 1fr;
    grid-template-areas:
      "label"
      "title"
      "desc";
  }

  .fashion-section {
    padding-top: calc(var(--spacing-unit) * 15);
  }

  .fashion-video-block {
    width: 100%;
  }

  .fashion-heading {
    font-size: clamp(2rem, 14vw, 3.5rem);
  }

  .art-page,
  .art-index-page,
  .project-page {
    padding-top: calc(var(--spacing-unit) * 15);
  }

  .art-heading {
    font-size: clamp(2.2rem, 13vw, 4rem);
  }

  .art-panel-frame,
  .art-project-media,
  .art-project-media--placeholder {
    min-height: 320px;
    height: 320px;
  }

  .art-list-item {
    grid-template-columns: 56px 1fr;
  }

  .art-project-title {
    font-size: 1.6rem;
  }

  .project-title {
    font-size: clamp(2.2rem, 13vw, 4rem);
  }
  
  .campaign-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    flex-direction: column;
    gap: calc(var(--spacing-unit) * 2);
    text-align: center;
  }
}

@media (max-width: 480px) {
  .lookbook-grid,
  .project-gallery,
  .project-gallery--bare-minimum-row3,
  .project-gallery--after-survival {
    grid-template-columns: 1fr;
  }
}
