/* ============================================================
   hero.css — Hero / landing section styles
   ============================================================ */

#home {
  min-height: 100vh;
  background: var(--obsidian);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 var(--gap) 80px;
  position: relative;
  overflow: hidden;
}

/* Subtle radial glow in the background */
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 70% 40%,
    rgba(200, 169, 110, 0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
}

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

/* Vertical amber line on the left */
.hero-line {
  position: absolute;
  left: var(--gap);
  top: var(--nav-h);
  width: 1px;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--amber));
  opacity: 0.4;
}

/* Hero text content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

/* Small label above the headline */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}
.hero-tag::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--amber);
}

/* Main headline */
h1.hero-title {
  font-family: var(--serif);
  font-size: clamp(52px, 8vw, 110px);
  line-height: 1.0;
  color: var(--ivory);
  letter-spacing: -2px;
  margin-bottom: 8px;
  opacity: 0;
  animation: fadeUp 0.9s 0.35s forwards;
}
h1.hero-title em {
  font-style: italic;
  color: var(--amber);
}

/* Subtitle */
.hero-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--ash);
  margin-bottom: 48px;
  max-width: 500px;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s forwards;
}

/* CTA buttons row */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  opacity: 0;
  animation: fadeUp 0.9s 0.65s forwards;
}

/* "Scroll" vertical label — bottom right */
.hero-scroll {
  position: absolute;
  right: var(--gap);
  bottom: 80px;
  writing-mode: vertical-rl;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ash);
  opacity: 0.5;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--ash), transparent);
}
