/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* ── Scene: full-bleed image container ── */
.scene {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  background: #1a1816;
}

.scene-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: contrast(1.2) saturate(0.55) brightness(0.78);
  transform: scale(1.02);
}

/* warm tint overlay */
.scene-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(30, 26, 22, 0.50) 0%,
      rgba(30, 26, 22, 0.05) 35%,
      rgba(30, 26, 22, 0.00) 50%,
      rgba(30, 26, 22, 0.45) 80%,
      rgba(30, 26, 22, 0.72) 100%
    );
  mix-blend-mode: normal;
}

/* film grain texture */
.scene-grain {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  background-size: 180px;
}

/* ── Top bar ── */
.bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 28px 36px;
}

.wordmark {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 26px;
  font-weight: 400;
  color: #fdf7f0;
  text-decoration: none;
  letter-spacing: 0.01em;
  opacity: 0.92;
  transition: opacity 0.3s;
}

.wordmark:hover {
  opacity: 1;
}

.bar-links {
  display: flex;
  gap: 24px;
}

.bar-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(253, 247, 240, 0.5);
  text-decoration: none;
  transition: color 0.3s;
}

.bar-links a:hover {
  color: rgba(253, 247, 240, 0.9);
}

/* ── Claim text ── */
.claim {
  position: absolute;
  bottom: 72px;
  left: 36px;
  z-index: 3;
  max-width: 520px;
}

.claim h1 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #fdf7f0;
  opacity: 0.95;
  margin-bottom: 10px;
}

.claim p {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(253, 247, 240, 0.5);
  letter-spacing: 0.02em;
}

/* ── Ground footer ── */
.ground {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  gap: 20px;
  padding: 18px 36px;
  flex-wrap: wrap;
}

.ground a {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(253, 247, 240, 0.28);
  text-decoration: none;
  transition: color 0.3s;
}

.ground a:hover {
  color: rgba(253, 247, 240, 0.7);
}

/* ── Responsive ── */
@media (max-width: 680px) {
  .bar {
    padding: 20px 22px;
  }

  .bar-links {
    gap: 14px;
  }

  .bar-links a {
    font-size: 10px;
  }

  .wordmark {
    font-size: 22px;
  }

  .claim {
    left: 22px;
    right: 22px;
    bottom: 56px;
  }

  .claim h1 {
    font-size: 30px;
  }

  .claim p {
    font-size: 13px;
  }

  .ground {
    padding: 14px 22px;
    gap: 14px;
  }
}

@media (max-width: 400px) {
  .bar-links a:nth-child(n+3) {
    display: none;
  }

  .claim h1 {
    font-size: 26px;
  }
}
