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

/* ===== BASE ===== */
body {
  font-family: 'Manrope', sans-serif;
  font-weight: 300;
  background: #eef0f1;
  color: #1f2326;
  line-height: 1.75;
}

/* ===== HEADER ===== */
.studio-bar {
  position: fixed;
  width: 100%;
  background: rgba(238,240,241,0.9);
  backdrop-filter: blur(8px);
  z-index: 20;
}

.studio-wrap {
  max-width: 1300px;
  margin: auto;
  padding: 22px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.studio-logo {
  font-weight: 400;
  letter-spacing: 1px;
}

.studio-logo span {
  display: block;
  font-size: 11px;
  opacity: 0.6;
  margin-top: 4px;
}

.studio-nav a {
  margin-left: 28px;
  font-size: 13px;
  text-decoration: none;
  color: #1f2326;
}

/* ===== SCENES ===== */
.scene {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.scene-secondary {
  min-height: 80vh;
}

.scene-mask {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.scene-mask.light {
  background: rgba(0,0,0,0.35);
}

.scene-content {
  position: relative;
  max-width: 620px;
  padding: 0 12%;
  color: #ffffff;
}

.scene-content h1,
.scene-content h2 {
  font-weight: 200;
  font-size: clamp(34px, 5vw, 58px);
  margin-bottom: 20px;
}

.scene-content p {
  font-size: 16px;
  opacity: 0.85;
}

/* ===== SPLIT ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
}

.split-image {
  background-size: cover;
  background-position: center;
}

.split-text {
  padding: 14%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #f7f8f8;
}

.split-text h2 {
  font-weight: 300;
  font-size: 42px;
  margin-bottom: 20px;
}

/* ===== MATERIAL GRID ===== */
.material-section {
  padding: 140px 10%;
  background: #ffffff;
}

.material-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 80px;
}

.material-item span {
  font-size: 12px;
  letter-spacing: 2px;
  opacity: 0.4;
}

.material-item h3 {
  font-weight: 300;
  margin: 16px 0;
}

/* ===== FOOTER ===== */
.studio-footer {
  text-align: center;
  padding: 50px 0;
  font-size: 12px;
  opacity: 0.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;
  }

  .scene,
  .scene-secondary {
    min-height: 80vh;
  }

  .studio-bar {
    position: relative;
  }
}
