/* ============================================================
   YSM FAMILY EXPERIENCE — Luxury page styles
   ============================================================ */

/* Gold button */
.btn-gold {
    background: linear-gradient(135deg, #c7a253, #a07833);
    color: #1a0e06;
    font-weight: 900;
    box-shadow: 0 8px 28px rgba(199, 162, 83, 0.38);
}
.btn-gold:hover {
    background: linear-gradient(135deg, #d4b060, #b08840);
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(199, 162, 83, 0.48);
}

/* Glass button */
.btn-glass {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
    backdrop-filter: blur(8px);
}
.btn-glass:hover {
    background: rgba(255, 255, 255, 0.22);
}

/* Family Club nav pill */
.nav-family {
    background: linear-gradient(135deg, rgba(199, 162, 83, 0.22), rgba(199, 162, 83, 0.08)) !important;
    color: #7a5a1e !important;
    border: 1px solid rgba(199, 162, 83, 0.35) !important;
    border-radius: 999px !important;
    padding: 6px 14px !important;
}
.nav-family:hover, .nav-family.active {
    background: linear-gradient(135deg, rgba(199, 162, 83, 0.4), rgba(199, 162, 83, 0.18)) !important;
    color: #3c211b !important;
}

/* ============================================================
   HERO
   ============================================================ */
.fc-hero {
    position: relative;
    background: linear-gradient(160deg, #1a0a06 0%, #3c1810 40%, #1e0e08 100%);
    color: #fff;
    overflow: hidden;
    padding: 64px 0 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.fc-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(199, 162, 83, 0.18), transparent 50%),
        radial-gradient(circle at 80% 60%, rgba(120, 60, 30, 0.3), transparent 40%);
    pointer-events: none;
}

.fc-hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding-bottom: 48px;
}

.fc-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border: 1px solid rgba(199, 162, 83, 0.5);
    border-radius: 999px;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.fc-title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 8vw, 5rem);
    line-height: 1.06;
    margin: 0;
    color: #fff;
}
.fc-title em {
    font-style: italic;
    color: var(--gold);
}

.fc-subtitle {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: clamp(1rem, 3vw, 1.35rem);
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

.fc-tagline {
    font-size: 0.9rem;
    color: rgba(199, 162, 83, 0.8);
    font-weight: 700;
    letter-spacing: 0.06em;
    margin: 0;
}

.fc-hero-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
    width: 100%;
}

/* Hero flyer image — full natural size below text on mobile */
.fc-hero-flyer {
    position: relative;
    z-index: 2;
    width: 100%;
}
.fc-hero-flyer img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: top center;
}

/* ============================================================
   URGENCY BAR
   ============================================================ */
.fc-urgency {
    background: linear-gradient(90deg, #3c211b, #5b312a);
    padding: 14px 0;
}
.fc-urgency-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.88);
}
.fc-urgency-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff4444;
    box-shadow: 0 0 8px #ff4444;
    flex-shrink: 0;
    animation: pulse-dot 1.6s infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.85); }
}
.fc-urgency strong { color: #fff; }
.fc-urgency a { color: var(--gold); font-weight: 900; }

/* ============================================================
   DETAILS SECTION
   ============================================================ */
.fc-details { padding: 64px 0; background: var(--linen); }

.fc-details-grid {
    display: grid;
    gap: 32px;
}

/* Info cards */
.fc-info-cards { display: grid; gap: 12px; margin-top: 28px; }

.fc-info-card {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 14px;
    align-items: center;
    padding: 16px 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}
.fc-info-card--price {
    background: linear-gradient(135deg, rgba(199, 162, 83, 0.12), rgba(199, 162, 83, 0.04));
    border-color: rgba(199, 162, 83, 0.35);
}
.fc-info-icon {
    font-size: 1.5rem;
    text-align: center;
    line-height: 1;
}
.fc-info-card strong { display: block; font-weight: 900; color: var(--espresso); font-size: 0.95rem; }
.fc-info-card span { display: block; font-size: 0.82rem; color: var(--muted); margin-top: 2px; }

/* Inclusions card */
.fc-inclusions-card {
    background: linear-gradient(160deg, #2a1208 0%, #3c1810 100%);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: 0 20px 60px rgba(36, 23, 19, 0.28);
}
.fc-inclusions-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gold);
    margin: 0 0 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(199, 162, 83, 0.25);
}
.fc-include-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 16px;
}
.fc-include-list li {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 12px;
    align-items: start;
}
.fc-include-icon { font-size: 1.3rem; text-align: center; padding-top: 2px; }
.fc-include-list strong { display: block; color: #fff; font-size: 0.95rem; font-weight: 900; }
.fc-include-list span { display: block; color: rgba(255, 255, 255, 0.58); font-size: 0.82rem; margin-top: 2px; }

/* ============================================================
   QUOTE BAND
   ============================================================ */
.fc-quote-band {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a0a06, #3c1810);
}
.fc-quote {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: clamp(1.3rem, 4vw, 2.2rem);
    color: #fff;
    margin: 0 0 16px;
    line-height: 1.3;
}
.fc-cite { color: var(--gold); font-weight: 900; font-size: 0.9rem; }

/* ============================================================
   HOW TO JOIN — STEPS
   ============================================================ */
.fc-step {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}
.fc-step-num {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), #a07833);
    color: #1a0e06;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 6px 20px rgba(199, 162, 83, 0.35);
}
.fc-step h3 { font-size: 1.2rem; margin-bottom: 10px; }
.fc-step p { color: var(--muted); font-size: 0.92rem; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.fc-final-cta {
    padding: 64px 0;
    background: linear-gradient(145deg, #1a0a06, #3c1810);
    color: #fff;
}
.fc-final-inner {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.fc-final-inner h2 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    color: #fff;
    margin: 0 0 12px;
    line-height: 1.15;
}
.fc-final-inner p { color: rgba(255, 255, 255, 0.7); font-size: 1.05rem; margin: 0; }
.fc-cta-actions { display: flex; flex-direction: column; gap: 16px; }
.fc-cta-number { display: flex; flex-direction: column; gap: 4px; }
.fc-cta-number span { font-size: 0.8rem; color: rgba(255, 255, 255, 0.5); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }
.fc-cta-number a { font-family: var(--font-heading); font-size: 1.6rem; color: var(--gold); font-weight: 700; }

/* ============================================================
   HOMEPAGE PROMO — used in index.html
   ============================================================ */
.fc-promo {
    padding: 0;
    background: linear-gradient(145deg, #1a0a06 0%, #3c1810 60%, #1e0e08 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.fc-promo::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 5% 50%, rgba(199, 162, 83, 0.16), transparent 40%),
        radial-gradient(circle at 95% 20%, rgba(120, 40, 20, 0.25), transparent 40%);
    pointer-events: none;
}
.fc-promo-inner {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0;
}
.fc-promo-text {
    padding: 52px 0 36px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.fc-promo-new {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 14px;
    border: 1px solid rgba(199, 162, 83, 0.45);
    border-radius: 999px;
    color: var(--gold);
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    width: fit-content;
}
.fc-promo-new::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ff4444;
    box-shadow: 0 0 6px #ff4444;
    animation: pulse-dot 1.6s infinite;
}
.fc-promo-text h2 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    color: #fff;
    margin: 0;
    line-height: 1.1;
}
.fc-promo-text h2 em {
    font-style: italic;
    color: var(--gold);
}
.fc-promo-text p { color: rgba(255, 255, 255, 0.72); font-size: 1rem; margin: 0; }
.fc-promo-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.fc-chip {
    padding: 6px 12px;
    background: rgba(199, 162, 83, 0.14);
    border: 1px solid rgba(199, 162, 83, 0.28);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    font-weight: 700;
}
.fc-promo-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.fc-promo-image {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    object-position: top center;
    display: block;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 640px) {
    .fc-hero-actions { flex-direction: row; }
    .fc-cta-actions { flex-direction: row; align-items: center; }
    .fc-hero-inner { flex-direction: row; align-items: center; }
    .fc-hero-flyer { max-width: 420px; margin: 0 auto; }
    .fc-promo-inner { grid-template-columns: 1fr 1fr; align-items: center; }
    .fc-promo-text { padding: 52px 0; }
    .fc-promo-actions { flex-direction: row; }
}

@media (min-width: 1024px) {
    .fc-hero {
        flex-direction: row;
        align-items: stretch;
        padding: 0;
    }
    .fc-hero-inner {
        flex: 1;
        padding: 80px 0 80px;
        justify-content: center;
    }
    .fc-hero-flyer {
        flex: 0 0 42%;
        max-width: 42%;
        align-self: stretch;
    }
    .fc-hero-flyer img {
        height: 100%;
        aspect-ratio: auto;
        min-height: 600px;
        object-fit: cover;
        object-position: top center;
    }
    .fc-details-grid { grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
    .fc-final-inner { flex-direction: row; align-items: center; justify-content: space-between; }
    .fc-cta-actions { flex-direction: column; align-items: flex-end; gap: 12px; }
    .fc-promo-image { aspect-ratio: 3/4; max-height: 560px; }
}
