/* ── Beach House Shake Hero ── */
.bhs-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--color-surface-primary);
}

.bhs-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.bhs-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%) brightness(0.95);
}

.bhs-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(249,249,247,0.45) 0%, transparent 70%);
}

.bhs-hero__content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 0 var(--space-7);
    max-width: 1920px;
    margin: 0 auto;
}

.bhs-hero__inner {
    max-width: 820px;
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
}

.bhs-hero__eyebrow {
    font-family: var(--font-family-body);
    font-size: var(--font-size-xs);
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--color-brand-secondary);
    font-weight: var(--font-weight-bold);
}

.bhs-hero__heading {
    font-family: var(--font-family-heading);
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    line-height: var(--line-height-tight);
    color: var(--color-text-primary);
    font-weight: 300;
    letter-spacing: -0.02em;
    margin: 0;
}

.bhs-hero__heading em {
    font-style: italic;
    font-weight: 400;
}

.bhs-hero__body {
    font-family: var(--font-family-body);
    font-size: var(--font-size-lg);
    color: var(--color-text-secondary);
    max-width: 500px;
    line-height: var(--line-height-loose);
    margin: 0;
}

.bhs-hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-5);
    padding-top: var(--space-5);
}

.bhs-hero__btn {
    padding: var(--space-4) var(--space-8);
    font-family: var(--font-family-body);
    font-size: var(--font-size-xs);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.bhs-hero__btn--primary {
    background-color: var(--color-brand-primary);
    color: var(--color-text-inverse);
}

.bhs-hero__btn--primary:hover {
    filter: brightness(0.9);
}

.bhs-hero__btn--secondary {
    background-color: transparent;
    color: var(--color-text-primary);
    border: 1px solid var(--color-border-default);
}

.bhs-hero__btn--secondary:hover {
    background-color: var(--color-surface-secondary);
}
