#hero.hero-editorial {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(3rem, 8vh, 5rem);
}

#hero.hero-editorial .hero-media {
  position: absolute;
  inset: 0;
}

#hero.hero-editorial .hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
}

#hero.hero-editorial .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    165deg,
    rgba(12, 11, 10, 0.55) 0%,
    rgba(12, 11, 10, 0.35) 42%,
    rgba(12, 11, 10, 0.82) 100%
  );
}

#hero.hero-editorial .hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 90% 70% at 50% 20%,
    transparent 0%,
    rgba(12, 11, 10, 0.35) 70%
  );
}

.hero-editorial-panel {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 40rem;
  margin: 0 auto;
  padding: 1.5rem 1.35rem 1.75rem;
  text-align: center;
  border-radius: 1.25rem;
  border: 1px solid rgba(242, 237, 230, 0.14);
  background: rgba(12, 11, 10, 0.48);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 28px 56px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero-editorial-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-editorial-panel > * {
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .hero-editorial-panel {
    max-width: 46rem;
    padding: 2rem 2.5rem 2.25rem;
    border-radius: 1.5rem;
  }
}

.hero-editorial-eyebrow {
  display: inline-block;
  margin-bottom: 0.85rem;
  padding: 0.4rem 0.9rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ivory);
  border: 1px solid rgba(201, 176, 138, 0.35);
  border-radius: 9999px;
  background: rgba(0, 0, 0, 0.25);
}

.hero-editorial-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 500;
  line-height: 1.08;
  color: var(--ivory);
  margin: 0 0 0.75rem;
}

.hero-editorial-accent {
  font-style: italic;
  color: var(--champagne-bright);
}

.hero-editorial-lead {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--ivory-muted);
  margin: 0 0 1.25rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-editorial-lead--short {
  display: block;
}

.hero-editorial-lead--full {
  display: none;
}

@media (min-width: 768px) {
  .hero-editorial-lead--short {
    display: none;
  }
  .hero-editorial-lead--full {
    display: block;
  }
}

.hero-editorial-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

@media (min-width: 640px) {
  .hero-editorial-cta {
    flex-direction: row;
    justify-content: center;
  }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--champagne);
  border-radius: 9999px;
  transition: transform 0.25s var(--ease-out), background 0.25s var(--ease-out);
}

.btn-primary:hover {
  background: var(--champagne-bright);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ivory);
  border: 1px solid rgba(242, 237, 230, 0.28);
  border-radius: 9999px;
  transition: border-color 0.25s var(--ease-out), color 0.25s var(--ease-out);
}

.btn-secondary:hover {
  border-color: var(--champagne);
  color: var(--champagne-bright);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.champagne-text {
  background: linear-gradient(120deg, var(--champagne-bright), var(--champagne));
  -webkit-background-clip: text;
  background-clip: text;
  color: var(--champagne-bright);
}

@supports (-webkit-background-clip: text) {
  .champagne-text {
    color: transparent;
  }
}
