:root {
    /* Tweak to taste */
    --nav-min: 84px;
    --brand: #1c1c1c;
    --brand-ink: #ffffff;
    --gold: #d4a047;
    --ink: #222;
    --page-bg: #faf9f7;
    --container-max: 1200px;

    --btn-ink: #111;
    --btn-bg: var(--gold);
    --btn-bg-hover: #e1b15b;
}

.hero {
    position: relative;
    height: 100vh;
    min-height: 560px;
    overflow: hidden;
}
/* darken/grade overlay for readability */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.25) 40%,
        rgba(0, 0, 0, 0.4) 100%
    );
}
.hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-video-toggle {
    font: inherit;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.22);
}

.hero-video-toggle:hover {
    background: rgba(0, 0, 0, 0.36);
}

.hero-content {
    position: relative;
    height: 100%;
    display: grid;
    align-content: end; /* sit near bottom for drama */
    padding: 0 0 clamp(80px, 14vh, 160px);
}
.hero-kicker {
    color: #fff;
    opacity: 0.9;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 10px;
}
.hero h1 {
    margin: 0 0 12px;
    color: #fff;
    font-family: "Libre Bodoni", serif;
    font-weight: 600;
    line-height: 1.1;
    font-size: clamp(32px, 6.2vw, 64px);
    text-wrap: balance;
    text-shadow: 0 10px 28px rgba(0, 0, 0, 0.65);
}
.hero p {
    margin: 0 0 22px;
    color: #f3f3f3;
    max-width: 60ch;
    font-size: clamp(16px, 2.2vw, 18px);
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.55);
}
.btn-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.btn,
.btn--ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
}
.btn {
    background: var(--btn-bg);
    color: var(--btn-ink);
}
.btn:hover {
    background: var(--btn-bg-hover);
}
.btn--ghost {
    border: 2px solid #ffffff;
    color: #fff;
}

@media (prefers-reduced-motion: reduce) {
    .hero-video-toggle {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero p {
        font-size: 1rem;
    }
}

@media (max-width: 980px) {
    .hero-content {
        align-content: end;
        padding-bottom: clamp(64px, 16vh, 140px);
    }
}
