.home-faq-band {
    position: relative;
    z-index: 1;
    width: min(1240px, calc(100% - 48px));
    margin: clamp(44px, 6vw, 84px) auto 0;
    padding: 0;
    overflow: visible;
    color: #171716;
    background: none;
}

.home-faq-band::before,
.home-faq-band::after {
    content: none;
}

.home-faq-watermark {
    position: absolute;
    right: -1%;
    bottom: -6%;
    z-index: 0;
    pointer-events: none;
    font-family: "Cinzel", Georgia, serif;
    font-size: clamp(6rem, 18vw, 16rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.04em;
    color: rgba(16, 35, 63, 0.035);
    white-space: nowrap;
}

.home-faq-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(30px, 4.5vw, 80px);
    align-items: start;
    width: 100%;
    margin: 0 auto;
}

.home-faq-head {
    position: sticky;
    top: 110px;
}

.home-faq-head .home-eyebrow {
    color: #a9762b;
}

.home-faq-head h2 {
    margin: 0;
    color: #131b2c;
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    font-size: clamp(1.8rem, 3.4vw, 2.8rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.home-faq-head h2 em {
    font-family: "Cinzel", Georgia, serif;
    font-style: italic;
    font-weight: 500;
    color: #a9762b;
}

.home-faq-lead {
    max-width: 46ch;
    margin: 18px 0 0;
    color: #5b584f;
    font-size: 1rem;
    line-height: 1.7;
}

.home-faq-head .dg-btn {
    margin-top: 28px;
}

/* przycisk darkglass z markupu wygląda na jasnym tle jak glass */
.home-faq-band .dg-btn--darkglass {
    color: #10233f;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(16, 35, 63, 0.12);
    box-shadow: 0 6px 18px rgba(16, 35, 63, 0.06);
}

.home-faq-band .dg-btn--darkglass:hover {
    color: #10233f;
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(185, 138, 58, 0.45);
    box-shadow: 0 6px 18px rgba(16, 35, 63, 0.08);
}

/* lista pytań */
.home-faq-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(16, 35, 63, 0.14);
}

.home-faq-item {
    border-bottom: 1px solid rgba(16, 35, 63, 0.14);
    transition: border-color 0.3s ease;
}

.home-faq-item.is-open {
    border-bottom-color: rgba(185, 138, 58, 0.5);
}

.home-faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: clamp(18px, 2.2vw, 24px) 4px;
    cursor: pointer;
    list-style: none;
    color: #131b2c;
    font-weight: 700;
    font-size: clamp(1rem, 1.4vw, 1.12rem);
    line-height: 1.35;
    letter-spacing: -0.005em;
    transition: color 0.25s ease;
}

.home-faq-item summary::-webkit-details-marker { display: none; }

.home-faq-item summary:hover,
.home-faq-item.is-open summary {
    color: #a9762b;
}

.home-faq-item summary:focus-visible {
    outline: 2px solid rgba(185, 138, 58, 0.7);
    outline-offset: 4px;
    border-radius: 6px;
}

/* ikona chevron */
.home-faq-icon {
    position: relative;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(185, 138, 58, 0.4);
    border-radius: 50%;
    background: rgba(185, 138, 58, 0.08);
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.3s ease, border-color 0.3s ease;
}

.home-faq-icon::before {
    content: "";
    width: 9px;
    height: 9px;
    margin-top: -3px;
    border-right: 1.7px solid #a9762b;
    border-bottom: 1.7px solid #a9762b;
    border-radius: 1px;
    transform: rotate(45deg);
}

.home-faq-item.is-open .home-faq-icon {
    transform: rotate(180deg);
    background: rgba(185, 138, 58, 0.18);
    border-color: rgba(185, 138, 58, 0.65);
}

.home-faq-answer {
    overflow: hidden;
    transition: height 0.45s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.35s ease;
    will-change: height;
}

.home-faq-answer p {
    max-width: 62ch;
    margin: 0 0 clamp(20px, 2.4vw, 26px);
    padding: 0 4px;
    color: #514e46;
    font-size: 0.95rem;
    line-height: 1.7;
}

.home-faq-answer p + p {
    margin-top: -10px;
    margin-bottom: clamp(20px, 2.4vw, 26px);
}

/* responsywność */
@media (max-width: 940px) {
    .home-faq-inner {
        grid-template-columns: 1fr;
    }

    .home-faq-head {
        position: static;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-faq-answer,
    .home-faq-icon {
        transition: none;
    }
}
