/* FlowersStore — Weddings page */

/* ── Sub-hero banner (matches funeral / about / contact) ───── */
.flr-weddings__subhero {
    position: relative;
    min-height: clamp(430px, 58vh, 580px);
    display: flex;
    align-items: center;
    color: var(--theme-hero-text);
    overflow: hidden;
}

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

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

.flr-weddings__subhero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, color-mix(in srgb, var(--theme-text) 70%, transparent) 0%, color-mix(in srgb, var(--theme-text) 35%, transparent) 55%, color-mix(in srgb, var(--theme-text) 15%, transparent) 100%),
        linear-gradient(180deg, color-mix(in srgb, var(--theme-text) 40%, transparent) 0%, transparent 40%, color-mix(in srgb, var(--theme-text) 40%, transparent) 100%);
}

.flr-weddings__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-weddings__crumb {
    font-family: var(--theme-font-family);
    font-size: 0.74rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--theme-hero-text-soft);
    margin-bottom: 1rem;
}

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

.flr-weddings__crumb a:hover {
    color: var(--theme-hero-text);
    text-decoration: underline;
}

.flr-weddings__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: var(--theme-hero-text);
    text-shadow: 0 2px 24px color-mix(in srgb, var(--theme-text) 25%, transparent);
}

.flr-weddings__lede {
    margin-top: 1.1rem;
    font-family: var(--theme-font-family);
    font-size: clamp(1rem, 1.4vw, 1.18rem);
    color: var(--theme-hero-text-muted);
    max-width: 50ch;
}

/* ── Sections ─────────────────────────────────────────────── */
.flr-weddings__section {
    padding-block: var(--theme-section-spacing);
    background: var(--theme-bg);
}

.flr-weddings__section--surface {
    background: var(--theme-surface);
}

.flr-weddings__section--raised {
    background: var(--theme-surface-high);
}

/* ── Shared typography ───────────────────────────────────── */
.flr-weddings__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;
}

.flr-weddings__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: 0;
}

.flr-weddings__head {
    margin-bottom: clamp(32px, 4vw, 52px);
}

.flr-weddings__head--center {
    text-align: center;
    margin-inline: auto;
    max-width: 640px;
}

/* ── Feature (intro) ─────────────────────────────────────── */
.flr-weddings__feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: clamp(36px, 6vw, 90px);
}

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

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

.flr-weddings__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;
}

.flr-weddings__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;
}

.flr-weddings__feature-text .flr-weddings__title {
    margin-bottom: 1.2rem;
}

/* ── Values grid ─────────────────────────────────────────── */
.flr-weddings__values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 3vw, 40px);
}

.flr-weddings__value {
    padding: clamp(24px, 3vw, 36px);
    background: #fff;
    border: 1px solid var(--theme-border);
    border-radius: var(--theme-radius-lg);
    transition:
        border-color 0.3s var(--ease),
        box-shadow 0.3s var(--ease),
        transform 0.3s var(--ease);
}

.flr-weddings__value h3 {
    font-family: var(--theme-font-display);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--theme-text);
    margin-bottom: 0.6rem;
}

.flr-weddings__value p {
    font-family: var(--theme-font-family);
    color: var(--theme-text-muted);
    font-size: 0.98rem;
    line-height: 1.65;
    margin: 0;
}

/* ── Steps ───────────────────────────────────────────────── */
.flr-weddings__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 3vw, 44px);
}

.flr-weddings__step {
    text-align: center;
}

.flr-weddings__step-num {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--theme-surface-high);
    color: var(--theme-coffee);
    font-family: var(--theme-font-display);
    font-size: 1.4rem;
    font-weight: 500;
}

.flr-weddings__step h3 {
    font-family: var(--theme-font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--theme-text);
    margin-bottom: 0.5rem;
}

.flr-weddings__step p {
    font-family: var(--theme-font-family);
    color: var(--theme-text-muted);
    font-size: 0.96rem;
    line-height: 1.65;
    margin: 0;
}

/* ── Gallery ─────────────────────────────────────────────── */
.flr-weddings__gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: clamp(10px, 1.4vw, 18px);
}

.flr-weddings__gallery-item {
    overflow: hidden;
    border-radius: var(--theme-radius-lg);
}

.flr-weddings__gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.flr-weddings__gallery-item:nth-child(6) {
    grid-column: span 2;
}

.flr-weddings__gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s var(--ease);
}

.flr-weddings__gallery-item:hover img {
    transform: scale(1.06);
}

/* ── CTA band ────────────────────────────────────────────── */
.flr-weddings__cta {
    background: var(--theme-coffee);
    color: var(--theme-surface);
    padding-block: var(--theme-section-spacing);
}

.flr-weddings__cta-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: clamp(32px, 5vw, 70px);
}

.flr-weddings__cta-eyebrow {
    font-family: var(--theme-font-family);
    font-weight: 500;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--theme-primary);
    margin-bottom: 1.1rem;
}

.flr-weddings__cta-title {
    font-family: var(--theme-font-display);
    font-size: clamp(2rem, 4.4vw, 3.3rem);
    font-weight: 500;
    line-height: 1.08;
    color: var(--theme-surface);
    margin-bottom: 0;
}

.flr-weddings__cta-text p:not(.flr-weddings__cta-eyebrow) {
    font-family: var(--theme-font-family);
    color: color-mix(in srgb, var(--theme-surface) 82%, transparent);
    margin-top: 1rem;
    max-width: 44ch;
    line-height: 1.7;
}

.flr-weddings__cta-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    justify-content: flex-end;
}

/* ── Buttons ─────────────────────────────────────────────── */
.flr-weddings__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;
    border: 1px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    transition:
        background-color 0.35s var(--ease),
        color 0.35s var(--ease),
        border-color 0.35s var(--ease),
        transform 0.35s var(--ease);
}

.flr-weddings__btn {
    background: var(--theme-coffee);
    color: var(--theme-surface);
}

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

/* CTA band — default: text link + outline pill; hover: dark fill + white fill */
.flr-weddings__cta-actions .flr-weddings__btn {
    background: transparent;
    color: var(--theme-surface);
    border: 1px solid transparent;
}

.flr-weddings__cta-actions .flr-weddings__btn:last-child {
    border-color: var(--theme-hero-btn-border);
}

.flr-weddings__cta-actions .flr-weddings__btn:first-child:hover {
    background: var(--theme-espresso);
    color: var(--theme-surface);
    border-color: var(--theme-espresso);
    transform: translateY(-2px);
}

.flr-weddings__cta-actions .flr-weddings__btn:last-child:hover {
    background: var(--theme-surface);
    color: var(--theme-coffee);
    border-color: var(--theme-surface);
    transform: translateY(-2px);
}

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

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

    .flr-weddings__values {
        grid-template-columns: 1fr;
    }

    .flr-weddings__steps {
        grid-template-columns: 1fr;
        max-width: 460px;
        margin-inline: auto;
    }

    .flr-weddings__gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }

    .flr-weddings__gallery-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
    }

    .flr-weddings__gallery-item:nth-child(6) {
        grid-column: span 2;
    }

    .flr-weddings__cta-inner {
        grid-template-columns: 1fr;
    }

    .flr-weddings__cta-actions {
        justify-content: flex-start;
    }
}

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

    .flr-weddings__cta-actions {
        flex-direction: column;
    }

    .flr-weddings__btn {
        width: 100%;
    }
}
