/* ====== Hero ====== */
.hero {
    --hero-text: hsl(20, 28%, 13%);

    max-width: 80rem;
    margin: 0 auto;
    padding-block: 3rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 3.5rem;
    align-items: stretch;
    color: var(--punchline-brown);
}

/* ---- Text column ---- */
.hero__text {
    display: grid;
    align-content: space-between;
}

.hero__label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625em;
    font-size: 0.75rem;
    font-family: var(--ff-semibold, sans-serif);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--punchline-terracotta);
    opacity: 0;
    animation: heroFadeUp 0.7s ease forwards 0.1s;
}

.hero__label::before, .hero__label::after {
    content: '';
    width: 1.75rem;
    height: 1.5px;
    background: var(--punchline-terracotta);
    opacity: 0.5;
}

.hero__title {
    font-family: var(--ff-serif);
    font-size: var(--fs-hero);
    font-weight: 700;
    line-height: 1.18;
    margin: 0;
    opacity: 0;
    animation: heroFadeUp 0.7s ease forwards 0.25s;
}

.hero__title em {
    font-style: italic;
    color: var(--punchline-terracotta);
}

.hero__subtitle-wrap {
    display: flex;
    justify-content: center;
    opacity: 0;
    animation: heroFadeUp 0.7s ease forwards 0.4s;
}

.hero__subtitle {
    font-family: var(--ff-serif);
    font-size: var(--fs-h3);
    font-weight: var(--fw-regular, 400);
    font-style: italic;
    line-height: var(--lh-relaxed, 1.6);
    color: var(--hero-text);
    text-wrap: balance;
    padding: 1rem 1.5rem;
    margin: 0;
    background: hsl(0 0% 100% / 0.55);
    border: 1px solid hsl(0 0% 0% / 0.06);
    border-radius: 0.875rem;
    backdrop-filter: blur(4px);
    text-align: center;
    box-shadow: 0 0.125rem 0.25rem hsl(0 0% 0% / 0.02),
                0 0.5rem 1rem hsl(0 0% 0% / 0.04);
}

/* ---- USPs ---- */
.hero__usps {
    display: grid;
    gap: 0.75rem;
    opacity: 0;
    animation: heroFadeUp 0.7s ease forwards 0.5s;
}

.hero__usp {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--hero-text);
}

.hero__usp-icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: hsl(8 55% 51% / 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--punchline-terracotta);
    margin-block-end: auto;
}

.hero__usp-icon svg {
    width: 1rem;
    height: 1rem;
}

.hero__usp strong {
    font-family: var(--ff-semibold, sans-serif);
    font-weight: var(--fw-bolder, 600);
}

/* ---- CTAs ---- */
.hero__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: heroFadeUp 0.7s ease forwards 0.6s;
}

.hero__btn-contact,
.hero__btn-order {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875em 1.75em;
    font-family: var(--ff-semibold, sans-serif);
    font-size: 0.9375rem;
    font-weight: var(--fw-bolder, 600);
    border-radius: 0.625em;
    cursor: pointer;
    text-decoration: none;
}

.hero__btn-contact {
    background: transparent;
    color: var(--punchline-terracotta);
    border: 2px solid var(--punchline-terracotta);
    transition: background 0.3s ease, color 0.3s ease;
}

.hero__btn-contact:hover {
    background: var(--punchline-terracotta);
    color: var(--white, hsl(0, 0%, 97%));
}

.hero__btn-order {
    background: var(--punchline-terracotta);
    color: var(--white, hsl(0, 0%, 97%));
    border: none;
    border-radius: 0.375em;
    transition: background 0.3s ease, transform 0.3s ease;
}

.hero__btn-order:hover,
.hero__btn-order:focus-visible {
    background: var(--punchline-terracotta-dark);
    transform: translateY(-1px);
}

/* ---- Visual column ---- */
.hero__visual {
    position: relative;
    display: grid;
    opacity: 0;
    animation: heroFadeIn 0.9s ease forwards 0.3s;
}

.hero__media {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 0.875rem;
    overflow: hidden;
    box-shadow: 0 1.25rem 3rem hsl(18 43% 16% / 0.1);
    position: relative;
    background: var(--punchline-cream);
}

.hero__media video,
.hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero__replay {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    width: 2.25rem;
    height: 2.25rem;
    display: grid;
    place-content: center;
    background: hsl(0 0% 0% / 0.35);
    backdrop-filter: blur(4px);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease, background 0.25s ease;
    z-index: 1;
}

.hero__replay.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.hero__replay:hover,
.hero__replay:focus-visible {
    background: hsl(0 0% 0% / 0.5);
}

.hero__replay-icon {
    width: 1rem;
    height: 1rem;
    color: hsl(0 0% 100%);
}

.hero__badge {
    position: absolute;
    top: -0.75rem;
    right: -0.75rem;
    width: 4.5rem;
    height: 4.5rem;
    background: var(--white, hsl(0, 0%, 97%));
    border-radius: 50%;
    display: grid;
    place-content: center;
    text-align: center;
    box-shadow: 0 0.25rem 1rem hsl(18 43% 16% / 0.1);
    border: 2px solid var(--punchline-gold-border);
    z-index: 2;
}

.hero__badge-since,
.hero__badge-year {
    line-height: 1;
}

.hero__badge-since {
    font-size: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--punchline-text-light);
}

.hero__badge-year {
    font-family: var(--ff-serif);
    font-size: 1.25rem;
    font-weight: 700;
}

/* ---- Animations ---- */
@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(1rem); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
    .hero__label,
    .hero__title,
    .hero__subtitle-wrap,
    .hero__usps,
    .hero__cta,
    .hero__visual {
        opacity: 1;
        animation: none;
    }
}

/* ---- Responsive ---- */
@media (max-width: 64em) {
    .hero {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 2.5rem 3rem 3.5rem;
    }
    .hero__visual { max-width: 35rem; }
}

@media (max-width: 40em) {
    .hero { padding: 2rem 1.5rem 3rem; }
}
