:root {
  --warm: #d8b98a;
  --text: #f1f1f1;
  --muted: #b5b5b5;
}

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

body {
  background: #000;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

/* Banner Image */
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5) grayscale(15%);
  animation: breathe 22s ease-in-out infinite;
}

/* Overlay */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.4),
    rgba(0,0,0,0.85)
  );
}

/* Quote */
.quote {
  position: absolute;
  top: 40px;
  width: 100%;
  text-align: center;
  z-index: 3;
  animation: drop 1.2s ease forwards;
}

.quote h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 5vw, 3rem);
  letter-spacing: 0.18em;
  color: var(--warm);
}

.quote span {
  display: block;
  margin-top: 10px;
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  color: var(--muted);
}

/* Message */
.message {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding: 0 20px;
  text-align: center;
}

.line {
  font-size: clamp(1.2rem, 3.5vw, 1.6rem);
  font-weight: 300;
  opacity: 0;
  transform: translateY(30px);
}

/* Signature */
.signature {
  position: absolute;
  bottom: 22px;
  right: 28px;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.35);
  z-index: 3;
}

/* Animations */
@keyframes drop {
  from {
    opacity: 0;
    transform: translateY(-25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes breathe {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}