/* =========================
   FONT IMPORTS
========================= */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&display=swap');

/* =========================
   GLOBAL RESET / SCALE LOCK
========================= */
* { box-sizing: border-box; }

html { font-size: 16px; }

html, body {
  margin: 0;
  padding: 0;
  background: #000;
  color: #fff;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  overflow-x: hidden;
}

/* =========================
   HERO (homepage only)
========================= */
.hero {
  height: 70vh;
  padding-top: 18vh;
  padding-bottom: 2vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  background: #000;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(4.5rem, 8vw, 7rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  margin: 0;
  line-height: 1;
}

/* HOMEPAGE TAGLINE: FORCE FULL CAPS */
.hero h2 {
  margin-top: 1.4rem;
  font-size: 1.05rem;
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase; /* <- punch */
  opacity: 0.95;
}

.hero p {
  margin-top: 12vh;
  max-width: 560px;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  letter-spacing: 0.01em;
  color: #d0d0d0;
}

/* =========================
   IMMERSION IMAGE
========================= */
.immersion-section {
  margin-top: 0;
  background: #000;
}

.immersion-section img {
  width: 100%;
  height: auto;
  display: block;
}

/* =========================
   SERIES PAGE (legacy selectors; series.html uses its own local styles)
========================= */
.series {
  margin-top: 18vh;
}

.series-title {
  width: 100%;
  margin: 0 0 3rem 0;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: none;
  opacity: 0.95;
}

.series-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6rem 4rem;
  padding: 0 6vw;
}

@media (max-width: 900px) {
  .series-grid {
    grid-template-columns: 1fr;
    gap: 5rem;
  }
}

.series-work img {
  width: 100%;
  height: auto;
  display: block;
}

/* =========================
   CAROUSEL (homepage)
========================= */
.carousel {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding: 0 2rem 3rem 0;
  scroll-behavior: smooth;
}

.carousel::-webkit-scrollbar { display: none; }

.carousel img {
  height: 60vh;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
}

/* =========================
   RITUAL
========================= */
#ritual-image {
  display: block;
  margin-top: 28vh;
}

/* =========================
   FOOTER / BIO
========================= */
.bio {
  margin: 20vh auto 12vh auto;
  max-width: 700px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.01em;
  color: #bdbdbd;
}
