/* ============================================================
   layout.css — shared project-page styles
   (self-contained: base reset + grid folded in from the old
   normalize/skeleton/main stack — only the parts these pages use)
   ============================================================ */

/* ── Base reset ── */
html { font-size: 62.5%; }
@media (min-width: 1200px) { html { font-size: 67.5%; } }

body {
  margin: 0;
  font-size: 1.5em;
  line-height: 1.6;
  font-weight: 400;
  font-family: "futura-pt", sans-serif;
  color: #222;
  background-color: #f9f8f6;
}

img { width: 100%; }
a { color: initial; text-decoration: none; }
h1, h2, h3, h4, h5, h6 { font-family: "futura-pt", sans-serif; margin-top: 0; }

/* ── Grid (skeleton subset) ── */
.container {
  position: relative;
  width: 100%;
  max-width: 1300px;
  margin: 30px auto 0;
  padding: 0 20px;
  box-sizing: border-box;
}
.column,
.columns {
  width: 100%;
  float: left;
  box-sizing: border-box;
}
@media (min-width: 400px) {
  .container { width: 85%; padding: 0; }
}
@media (min-width: 550px) {
  .container { width: 90%; }
  .column,
  .columns { margin-left: 4%; }
  .column:first-child,
  .columns:first-child { margin-left: 0; }
  .one-half.column { width: 48%; }
}
@media (min-width: 1200px) {
  .container { width: 93%; max-width: 1350px; }
}
.container:after,
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* ── Top nav + spacer ── */
.top-nav a {
  color: black;
  text-decoration: none;
  border-bottom: none;
  opacity: .7;
}
.name-title {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: initial;
  font-size: 2rem;
  line-height: 1.5;
  margin-bottom: 2rem;
}
.top-nav .name-title:hover::before {
  content: url("../images/arrow_left.svg");
  position: absolute;
  top: 0;
  left: -30px;
}
.spacer { height: 150px; }
.project-page .row { margin-bottom: 0; }
@media (min-width: 550px) {
  .project-page .row { margin-bottom: 40px; }
}

/* ── Nav ── */
.top-nav {
  position: relative;
  margin-bottom: 0;
  //padding: 30px 0 28px;
}

/* ── Hero ── */
.hero {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  margin-bottom: 0;
}
.hero-image {
  overflow: hidden;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 60px 60px 60px 56px;
  background-color: #f9f8f6;
}
.hero-text .eyebrow {
  font-family: "futura-pt", sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
  margin-bottom: 20px;
}
.hero-text h1 {
  font-family: "futura-pt", sans-serif;
  font-weight: 700;
  font-size: 5.2rem;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
  color: #111;
}
.hero-text .meta {
  font-size: 1.35rem;
  line-height: 2;
  color: rgba(0,0,0,0.5);
  margin-bottom: 32px;
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
}
.hero-text .description {
  font-size: 1.7rem;
  line-height: 1.7;
  color: #222;
  max-width: 380px;
}

/* ── Divider ── */
.section-divider {
  border: none;
  border-top: 1px solid #e0ddd8;
  margin: 100px 0;
}

/* ── Section label ── */
.section-label {
  font-family: "futura-pt", sans-serif;
  font-size: 2.6rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: none;
  color: #111;
  margin-bottom: 40px;
}

/* ── Content sections ── */
.content-section {
  display: flex;
  flex-direction: column;
  gap: 100px;
}
.full-bleed img,
.full-bleed video {
  width: 100%;
  display: block;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.two-col-wide {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}
.two-col-narrow-wide {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
}
.body-text {
  font-family: "futura-pt", sans-serif;
  font-size: 1.7rem;
  line-height: 1.75;
  color: #333;
}
.body-text p {
  margin-bottom: 1.5em;
}
.body-text p:last-child {
  margin-bottom: 0;
}

/* ── Press / Exhibitions section ── */
.press-section {
  padding: 70px 0 60px;
}
.press-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.press-list li {
  border-top: 1px solid #e0ddd8;
}
.press-list li:last-child {
  border-bottom: 1px solid #e0ddd8;
}
.press-list a {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 22px 0;
  border-bottom: none !important;
  color: #111 !important;
  text-decoration: none;
  transition: opacity 0.2s;
}
.press-list a:hover {
  opacity: 0.55;
  color: #111 !important;
  border-bottom: none !important;
}
.press-outlet {
  font-family: "futura-pt", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.38);
  min-width: 130px;
  flex-shrink: 0;
}
.press-headline {
  font-family: "futura-pt", sans-serif;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.4;
  color: #111;
}
.press-arrow {
  margin-left: auto;
  font-size: 1.4rem;
  color: rgba(0,0,0,0.2);
  flex-shrink: 0;
  transition: transform 0.2s, color 0.2s;
}
.press-list a:hover .press-arrow {
  transform: translateX(4px);
  color: rgba(0,0,0,0.5);
}

/* ── Pull quote ── */
.pull-quote {
  border-top: 1px solid #e0ddd8;
  border-bottom: 1px solid #e0ddd8;
  padding: 48px 0;
}
.pull-quote p {
  font-family: "futura-pt", sans-serif;
  font-size: 2.8rem;
  font-weight: 300;
  line-height: 1.4;
  color: #111;
  max-width: 820px;
  margin: 0;
}
.pull-quote .quote-label {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
  margin-bottom: 20px;
}

/* ── Three-column ── */
.three-col {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* ── Text column in equal-split grid ── */
.two-col > .body-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 48px;
}

/* ── Section label inside body text ── */
.body-text .section-label {
  margin-bottom: 16px;
}

/* ── Caption ── */
.caption {
  font-family: "futura-pt", sans-serif;
  font-size: 1.5rem;
  line-height: 1.6;
  color: rgba(0,0,0,0.6);
  margin-top: 12px;
}

/* ── Video reset ── */
video {
  width: 100%;
  border: none !important;
  box-shadow: none !important;
}
video:hover {
  box-shadow: none !important;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero,
  .two-col,
  .two-col-wide,
  .two-col-narrow-wide {
    grid-template-columns: 1fr;
  }
  .three-col {
    grid-template-columns: 1fr 1fr;
  }
  .hero-text {
    padding: 40px 24px;
  }
  .hero-text h1 {
    font-size: 3.6rem;
  }
}
@media (max-width: 599px) {
  .hero-text h1 { font-size: 2.8rem; }
  .press-list a { flex-wrap: wrap; gap: 6px; }
  .press-outlet { min-width: auto; width: 100%; }
  .three-col { grid-template-columns: 1fr; }
  .two-col > .body-text { padding: 28px 24px; }
}
