/* FlowersStore — Funeral page */

/* ── Sub-hero banner (matches about / contact page layout) ── */
.flr-funeral__subhero {
    position: relative;
    min-height: clamp(380px, 50vh, 520px);
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

.flr-funeral__subhero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.flr-funeral__subhero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* object-position: center 42%;
    display: block; */
}

.flr-funeral__subhero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(42, 35, 32, 0.70) 0%, rgba(42, 35, 32, 0.35) 55%, rgba(42, 35, 32, 0.15) 100%),
        linear-gradient(180deg, rgba(42, 35, 32, 0.40) 0%, transparent 40%, rgba(42, 35, 32, 0.40) 100%);
}

.flr-funeral__subhero-content {
    position: relative;
    z-index: 1;
    padding-block: clamp(48px, 7vw, 96px);
    max-width: 760px !important;
    margin-inline: auto !important;
    margin-top: clamp(40px, 12vh, 100px);
}

.flr-funeral__crumb {
    font-family: var(--theme-font-family);
    font-size: 0.74rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.flr-funeral__crumb a {
    color: inherit;
    text-decoration: none;
}

.flr-funeral__crumb a:hover {
    color: #fff;
    text-decoration: underline;
}

.flr-funeral__heading {
    font-family: var(--theme-font-display);
    font-size: clamp(2.4rem, 6vw, 4.3rem);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.01em;
    color: #fff;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

.flr-funeral__lede {
    margin-top: 1.1rem;
    font-family: var(--theme-font-family);
    font-size: clamp(1rem, 1.4vw, 1.18rem);
    color: rgba(255, 255, 255, 0.92);
    max-width: 50ch;
}

/* ── Section spacing (unique — does not affect global .section) */
.flr-funeral__section {
    padding-block: var(--theme-section-spacing);
    background: var(--theme-bg);
}

/* ── Feature layout (text + image 2-col) ─────────────────── */
.flr-funeral__feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: clamp(36px, 6vw, 90px);
}

.flr-funeral__feature--reverse .flr-funeral__feature-media { order: 2; }

.flr-funeral__feature-media {
    position: relative;
    border-radius: var(--theme-radius-lg);
    overflow: hidden;
}

.flr-funeral__feature-media img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
}

.flr-funeral__badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: color-mix(in srgb, var(--theme-bg) 92%, transparent);
    color: var(--theme-coffee);
    font-family: var(--theme-font-family);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 0.6em 1.1em;
    border-radius: 999px;
}

/* ── Eyebrow ──────────────────────────────────────────────── */
.flr-funeral__eyebrow {
    font-family: var(--theme-font-family);
    font-weight: 500;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--theme-mocha-deep);
    margin-bottom: 1.1rem;
}

/* ── Section title ────────────────────────────────────────── */
.flr-funeral__title {
    font-family: var(--theme-font-display);
    font-size: clamp(2rem, 4.4vw, 3.3rem);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.01em;
    color: var(--theme-text);
    margin-bottom: 1.2rem;
}

.flr-funeral__feature-text p {
    font-family: var(--theme-font-family);
    color: var(--theme-text-muted);
    max-width: 48ch;
    margin-bottom: 1.4rem;
    line-height: 1.75;
}

/* ── Bullet list ──────────────────────────────────────────── */
.flr-funeral__list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.flr-funeral__list li {
    position: relative;
    padding-left: 1.7em;
    margin-bottom: 0.7em;
    font-family: var(--theme-font-family);
    font-size: 0.98rem;
    color: var(--theme-espresso);
}

.flr-funeral__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--theme-mocha-deep);
}

/* ── CTA button ───────────────────────────────────────────── */
.flr-funeral__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.05em 2.2em;
    border-radius: 999px;
    font-family: var(--theme-font-family);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    background: var(--theme-coffee);
    color: var(--theme-surface);
    border: 2px solid transparent;
    transition: background 0.3s var(--ease);
    cursor: pointer;
    white-space: nowrap;
}

.flr-funeral__btn:hover {
    background: var(--theme-espresso);
    transform: translateY(-2px);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 980px) {
    .flr-funeral__feature {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .flr-funeral__feature--reverse .flr-funeral__feature-media { order: 0; }

    .flr-funeral__feature-media img { aspect-ratio: 16 / 11; }
}

@media (max-width: 480px) {
    .flr-funeral__subhero {
        min-height: 50vh;
    }
}
