/* =========================================================
   FAQ Section - Clean & Optimized
   ========================================================= */

/* --- 1. Base Styles --- */
.faq-section {
    position: relative;
    width: 100%;
    background: var(--faq-bg, #efeee6);
    color: var(--faq-text, #24142b);
    overflow: hidden;
    padding: clamp(54px, 6vh, 76px) 0;
}

.faq-section,
.faq-section * {
    box-sizing: border-box;
}

.faq-wrap {
    width: min(1360px, calc(100% - 72px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, .98fr) minmax(500px, .92fr);
    gap: clamp(34px, 4vw, 64px);
}

.faq-left, .faq-right {
    min-width: 0;
}

/* --- 2. Typography & Badges --- */
.faq-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 20px;
    padding: 6px 14px 7px;
    min-height: 32px;
    border-radius: 999px;
    background: var(--faq-accent, #67207f);
    color: #fff;
    font-family: Inter, "Helvetica Neue", Arial, sans-serif;
    font-size: 15px;
    line-height: 1;
    font-weight: 680;
}

.faq-heading {
    margin: 0;
    color: var(--faq-text, #24142b);
    font-family: var(--lumana-header-font);
    font-size: clamp(52px, 5.2vw, 86px);
    line-height: .98;
    font-weight: 500;
    letter-spacing: -.055em;
}

.faq-heading span { display: block; }

.faq-heading em {
    font-style: italic;
    font-weight: 400;
    letter-spacing: -.06em;
}

/* --- 3. Feature Image & Award Card --- */
.faq-feature {
    position: relative;
    width: min(620px, 100%);
    height: clamp(220px, 20vw, 300px);
    margin: clamp(42px, 5vw, 68px) 0 0;
    border: 6px solid #fff;
    border-radius: var(--faq-radius, 28px);
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(36, 20, 43, .09);
    background: #ddd;
}

.faq-feature img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

.faq-award-card {
    position: absolute;
    left: 24px;
    bottom: 18px;
    min-width: min(360px, calc(100% - 68px));
    min-height: 74px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 10px 24px 10px 10px;
    border-radius: 999px;
    background: rgba(247, 244, 236, .88);
    color: var(--faq-text, #24142b);
    backdrop-filter: blur(18px);
    box-shadow: 0 14px 40px rgba(36, 20, 43, .18);
}

.faq-award-icon {
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--faq-accent, #67207f);
    color: #fff;
    font-size: 32px;
    line-height: 1;
}

.faq-award-card strong {
    display: block;
    color: var(--faq-accent, #67207f);
    font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    font-size: clamp(22px, 1.7vw, 28px);
    line-height: 1;
    font-weight: 700;
    letter-spacing: -.035em;
}

.faq-award-card small {
    display: block;
    margin-top: 5px;
    color: var(--faq-text, #24142b);
    font-family: Inter, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.1;
    font-weight: 500;
}

/* --- 4. Accordion (FAQ Items) --- */
.faq-card {
    width: 100%;
    padding: 12px;
    border-radius: 30px;
    background: var(--faq-card-bg, #fbfaf6);
    box-shadow: 0 22px 60px rgba(36, 20, 43, .07);
}

.faq-item {
    border: 1px solid var(--faq-border, #dedbd2);
    border-radius: 23px;
    background: var(--faq-item-bg, #f7f6f1);
    overflow: hidden;
    transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
}

.faq-item + .faq-item { margin-top: 9px; }

.faq-item.is-open {
    border-color: color-mix(in srgb, var(--faq-accent, #67207f) 35%, var(--faq-border, #dedbd2));
    box-shadow: 0 14px 34px rgba(36, 20, 43, .06);
}

.faq-question {
    width: 100%;
    min-height: 72px;
    padding: 0 29px;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--lumana-segoe-font);
    gap: 22px;
    background: transparent;
    color: var(--faq-text, #24142b);
    font-size: clamp(15px, 1.65vw, 20px);
    line-height: 1.18;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
}

.faq-plus {
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    position: relative;
}

.faq-plus::before,
.faq-plus::after {
    content: "";
    position: absolute;
    inset: 50% auto auto 50%;
    width: 19px;
    height: 2px;
    border-radius: 999px;
    background: var(--faq-text, #24142b);
    transform: translate(-50%, -50%);
    transition: transform .25s ease;
}

.faq-plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item.is-open .faq-plus::after { transform: translate(-50%, -50%) rotate(0deg); }

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .34s cubic-bezier(.22,.9,.24,1);
}

.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }

.faq-answer > div {
    min-height: 0;
    overflow: hidden;
    padding: 0 23px;
    color: var(--faq-muted, #5d5361);
    font-family: var(--lumana-segoe-font);
    font-size: 14.5px;
    line-height: 1.45;
    font-weight: 500;
}

.faq-item.is-open .faq-answer > div { padding-bottom: 17px; }

/* --- 5. Entrance Animations --- */
[data-faq-animate] { opacity: 0; transform: translateY(34px); }
.faq-section.is-visible [data-faq-animate="left"] { animation: faqFadeUp .9s cubic-bezier(.22,.9,.24,1) forwards; }
.faq-section.is-visible [data-faq-animate="right"] { animation: faqFadeUp .9s cubic-bezier(.22,.9,.24,1) .16s forwards; }

@keyframes faqFadeUp {
    to { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   Responsive Breakpoints
   ========================================================= */

/* Desktop Only (Vertical centering) */
@media (min-width: 1181px) {
    .faq-section { min-height: 100vh; display: flex; align-items: center; }
    .faq-wrap { align-items: center; }
}

/* Tablet */
@media (max-width: 1180px) {
    .faq-section { padding: 64px 0; }
    .faq-wrap { grid-template-columns: 1fr; gap: 42px; }
    .faq-feature { width: min(760px, 100%); margin-top: 38px; }
    .faq-card { max-width: 100%; }
}

/* Mobile */
@media (max-width: 720px) {
    .faq-section { padding: 52px 0 56px; }
    .faq-wrap { width: calc(100% - 28px); gap: 34px; }
    
    .faq-badge { font-size: 14px; padding: 7px 14px; min-height: 32px; margin-bottom: 22px; }
    .faq-heading { font-size: clamp(42px, 13vw, 60px); letter-spacing: -.045em; }
    
    .faq-feature { margin-top: 34px; height: 250px; border-width: 5px; border-radius: 24px; }
    
    .faq-award-card {
        left: 16px; right: 16px; bottom: 14px;
        min-width: 0; min-height: 72px; padding: 10px 18px 10px 10px; gap: 12px;
    }
    .faq-award-icon { width: 35px; height: 35px; flex-basis: 35px; font-size: 21px; }
    .faq-award-card strong { font-size: clamp(18px, 5vw, 24px); }
    .faq-award-card small { font-size: 15px; }

    .faq-card { padding: 10px; border-radius: 26px; }
    .faq-item { border-radius: 21px; }
    .faq-item + .faq-item { margin-top: 10px; }
    
    .faq-question { min-height: 56px; padding: 0 16px; font-size: 16.5px; gap: 16px; }
    .faq-answer > div { padding: 0 16px; font-size: 13.5px; }
    .faq-item.is-open .faq-answer > div { padding-bottom: 18px; }
}

/* Small Mobile */
@media (max-width: 408px) {
    .faq-award-card strong { font-size: clamp(15px, 4.5vw, 18px); }
    .faq-award-card small { font-size: 14px; }
}