.hero {
    position: relative;
    overflow: hidden;
    background: var(--brand-dark);
    display: flex;
    align-items: center;
}
.hero--bg-darker { background: var(--brand-darker); }
.hero--bg-light  { background: var(--brand-light); color: var(--brand-dark); }
.hero--bg-light .hero__headline,
.hero--bg-light .hero__subhead { color: var(--brand-dark); }

.hero--h-full   { min-height: 100vh; }
.hero--h-large  { min-height: 80vh; }
.hero--h-medium { padding: 5rem 0 3rem; min-height: 50vh; }
.hero--h-small  { padding: 3rem 0 3rem; }
@media (min-width: 768px) {
    .hero--h-medium { padding: 7rem 0 4rem; }
    .hero--h-small  { padding: 4rem 0 4rem; }
}

.hero--align-center .hero__content { text-align: center; margin-left: auto; margin-right: auto; }
.hero--align-center .hero__cta { justify-content: center; }
.hero--align-center .hero__meta { justify-content: center; }

.hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero__video, .hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 70% center;
    filter: grayscale(0.2);
    animation: heroIn 2s var(--premium) both;
}
@media (min-width: 768px) {
    .hero__video, .hero__image { object-position: center; }
}
@keyframes heroIn {
    from { transform: scale(1.05); opacity: 0; filter: blur(4px) grayscale(0.2); }
    to   { transform: scale(1); opacity: 1; filter: blur(0) grayscale(0.2); }
}

.hero__gradient {
    position: absolute;
    inset: 0;
}
.hero__gradient--side {
    background: linear-gradient(to right, var(--brand-darker), rgba(31,31,31,0.8), transparent);
    width: 100%;
}
@media (min-width: 768px) {
    .hero__gradient--side { width: 70%; }
}
.hero__gradient--bottom {
    background: linear-gradient(to top, var(--brand-darker), transparent);
}

.hero--align-center .hero__gradient--side {
    background: linear-gradient(135deg, rgba(31,31,31,0.8), rgba(31,31,31,0.6), rgba(31,31,31,0.9));
    width: 100%;
}

.hero--h-small .hero__gradient--side,
.hero--h-medium .hero__gradient--side {
    background: linear-gradient(to bottom, rgba(31,31,31,0.8), rgba(31,31,31,0.6), rgba(31,31,31,0.9));
    width: 100%;
}

.hero__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.hero--h-full .hero__inner,
.hero--h-large .hero__inner { padding-top: 6rem; padding-bottom: 4rem; }
@media (min-width: 768px) {
    .hero--h-full .hero__inner,
    .hero--h-large .hero__inner { padding-top: 8rem; padding-bottom: 5rem; }
}

.hero__content {
    max-width: 60rem;
    display: flex; flex-direction: column;
    gap: 1.25rem;
}
@media (min-width: 768px) { .hero__content { gap: 1.75rem; } }

.hero--align-center .hero__content { max-width: 60rem; }

.hero__headline {
    font-size: 2.25rem;
    line-height: 1.15;
    font-weight: 500;
    color: var(--brand-light);
    letter-spacing: -0.015em;
    margin: 0;
}
@media (min-width: 640px)  { .hero__headline { font-size: 2.5rem; } }
@media (min-width: 768px)  { .hero__headline { font-size: 3rem; } }
@media (min-width: 1024px) { .hero__headline { font-size: 3.75rem; } }
@media (min-width: 1280px) { .hero__headline { font-size: 4.5rem; } }

.hero--h-small .hero__headline { font-size: 2.25rem; }
@media (min-width: 768px)  { .hero--h-small .hero__headline { font-size: 2.75rem; } }
@media (min-width: 1024px) { .hero--h-small .hero__headline { font-size: 3.5rem; } }
@media (min-width: 1280px) { .hero--h-small .hero__headline { font-size: 3.75rem; } }

.hero__subhead {
    font-size: 1.05rem;
    line-height: 1.65;
    font-weight: 300;
    color: var(--brand-gray);
    max-width: 48rem;
}
@media (min-width: 768px)  { .hero__subhead { font-size: 1.125rem; } }
@media (min-width: 1024px) { .hero__subhead { font-size: 1.25rem; } }
.hero--align-center .hero__subhead { margin-left: auto; margin-right: auto; }

.hero__meta {
    display: flex; flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    color: var(--brand-gray);
    font-size: 0.875rem;
    font-weight: 300;
}
.hero__meta-item { display: inline-flex; align-items: center; gap: 0.4rem; }
.hero__meta-dot  { width: 0.25rem; height: 0.25rem; border-radius: 50%; background: var(--brand-border); }

.hero__cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 0.5rem;
}
@media (min-width: 640px) {
    .hero__cta { flex-direction: row; align-items: center; gap: 1.5rem; }
}
