/* Campaign-specific overrides on top of site.css */

.nav-tag {
  display: none;
  font-family: var(--font-stamp);
  font-weight: var(--w-medium);
  font-size: 11px;
  letter-spacing: var(--track-stamp);
  text-transform: uppercase;
  color: var(--fg-2);
  opacity: 0.7;
}
@media (min-width: 900px) {
  .nav-tag { display: inline; }
}

.hero-bullets {
  margin-top: 28px;
  list-style: none;
  display: grid;
  gap: 10px;
  max-width: 42ch;
}
.hero-bullets li {
  font-family: var(--font-stamp);
  font-weight: var(--w-medium);
  font-size: 13px;
  letter-spacing: 0.04em;
  opacity: 0.82;
  padding-left: 22px;
  position: relative;
  line-height: 1.4;
}
.hero-bullets li::before {
  content: "→";
  position: absolute;
  left: 0;
  opacity: 0.6;
}

/* Vertical hero (Story/Reel format) — narrower content column, image right */
.hero-vertical .hero-photo {
  background-position: center right;
}
@media (min-width: 768px) {
  .hero-vertical {
    min-height: 100vh;
  }
  .hero-vertical .hero-photo {
    inset: 0 0 0 45%;
  }
  .hero-vertical .hero-photo::after {
    background:
      linear-gradient(180deg, rgba(14,14,16,0.10) 0%, rgba(14,14,16,0.10) 60%, rgba(14,14,16,0.4) 100%),
      linear-gradient(90deg, rgba(14,14,16,0.98) 0%, rgba(14,14,16,0.55) 30%, rgba(14,14,16,0) 70%);
  }
  .hero-vertical .hero-content {
    max-width: 900px;
    padding-bottom: 0;
    padding-top: 120px;
    align-self: center;
  }
}
