:root {
    --dark: #171815;
    --dark-soft: #24251f;
    --light: #f4f0e8;
    --white: #ffffff;
    --accent: #b8905c;
    --accent-dark: #8d6a3e;
    --text: #22231f;
    --muted: #6f716b;
    --line: rgba(23, 24, 21, .13);
    --radius: 28px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--text);
    background: #fff;
    font-family: "Manrope", sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.section-space { padding: 110px 0; }

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: var(--accent-dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.section-label::before {
    width: 42px;
    height: 1px;
    content: "";
    background: currentColor;
}

.section-title {
    max-width: 850px;
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(36px, 4.7vw, 67px);
    font-weight: 600;
    line-height: 1.04;
    letter-spacing: -.05em;
}

/* HEADER */
.navbar-shell {
    position: absolute;
    z-index: 20;
    top: 0;
    right: 0;
    left: 0;
    padding: 22px 0;
}

.navbar {
    min-height: 78px;
    padding: 0 24px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 18px;
    background: rgba(17,18,15,.50);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #fff;
}

.brand-mark {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(255,255,255,.35);
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 700;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-text strong {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
}

.brand-text small {
    margin-top: 7px;
    color: rgba(255,255,255,.58);
    font-size: 9px;
    letter-spacing: .24em;
    text-transform: uppercase;
}

.navbar-nav .nav-link {
    position: relative;
    margin: 0 8px;
    padding: 30px 4px !important;
    color: rgba(255,255,255,.76);
    font-size: 13px;
    font-weight: 600;
}

.navbar-nav .nav-link::after {
    position: absolute;
    right: 50%;
    bottom: 20px;
    left: 50%;
    height: 1px;
    content: "";
    background: var(--accent);
    transition: .3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: #fff; }

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    right: 4px;
    left: 4px;
}

.header-cta {
    display: inline-flex;
    min-height: 48px;
    padding: 0 20px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.30);
    border-radius: 12px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: .3s ease;
}

.header-cta:hover {
    border-color: var(--accent);
    color: var(--dark);
    background: var(--accent);
}

.navbar-toggler {
    border: 0;
    box-shadow: none !important;
}

.navbar-toggler span {
    display: block;
    width: 26px;
    height: 1px;
    margin: 6px 0;
    background: #fff;
}

/* HERO */
.faq-hero {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    color: #fff;
    background: var(--dark);
}

.faq-hero__image {
    position: absolute;
    inset: 0;
}

.faq-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faq-hero__image::after {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(90deg, rgba(15,16,13,.96) 0%, rgba(15,16,13,.72) 48%, rgba(15,16,13,.22) 100%),
        linear-gradient(0deg, rgba(15,16,13,.82), transparent 55%);
}

.faq-hero__grid {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: .35;
    background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 90px 90px;
    mask-image: linear-gradient(to right, #000, transparent 82%);
}

.faq-hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 190px 0 72px;
}

.breadcrumb-custom {
    display: flex;
    margin: 0 0 30px;
    padding: 0;
    align-items: center;
    gap: 13px;
    list-style: none;
    color: rgba(255,255,255,.55);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.breadcrumb-custom li + li::before {
    margin-right: 13px;
    color: var(--accent);
    content: "/";
}

.faq-hero h1 {
    max-width: 950px;
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(53px, 7vw, 100px);
    font-weight: 600;
    line-height: .95;
    letter-spacing: -.06em;
}

.faq-hero h1 span {
    display: block;
    color: var(--accent);
}

.faq-hero__bottom { margin-top: 42px; }

.faq-hero__description {
    max-width: 640px;
    margin: 0;
    color: rgba(255,255,255,.68);
    font-size: 16px;
    line-height: 1.9;
}

.hero-scroll {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: rgba(255,255,255,.57);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.hero-scroll span {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 50%;
    color: var(--accent);
    font-size: 17px;
}

/* LIGHT FAQ CONTENT */
.faq-content {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 90% 8%, rgba(184,144,92,.10), transparent 25%),
        linear-gradient(180deg, #ffffff 0%, #f5f1e9 100%);
}

.faq-content::before {
    position: absolute;
    top: 90px;
    left: -170px;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(141,106,62,.12);
    border-radius: 50%;
    content: "";
}

.faq-content__inner {
    position: relative;
    z-index: 2;
}

.faq-head { margin-bottom: 58px; }

.faq-head__intro {
    max-width: 500px;
    margin: 0 0 8px auto;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.9;
}

.faq-layout {
    display: grid;
    grid-template-columns: .68fr 1.32fr;
    gap: 34px;
    align-items: start;
}

/* SUPPORT CARD */
.support-card {
    position: sticky;
    top: 28px;
    min-height: 410px;
    padding: 34px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 87% 15%, rgba(184,144,92,.20), transparent 32%),
        #eee8dc;
    box-shadow: 0 24px 65px rgba(30,28,23,.08);
}

.support-card::after {
    position: absolute;
    right: -88px;
    bottom: -88px;
    width: 240px;
    height: 240px;
    border: 1px solid rgba(141,106,62,.18);
    border-radius: 50%;
    content: "";
}

.support-card__inner {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 342px;
    flex-direction: column;
    justify-content: space-between;
}

.support-card__label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-dark);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.support-card__label::before {
    width: 30px;
    height: 1px;
    content: "";
    background: currentColor;
}

.support-card h3 {
    margin: 0 0 16px;
    font-family: "Montserrat", sans-serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.16;
    letter-spacing: -.04em;
}

.support-card p {
    margin: 0 0 24px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.85;
}

.support-card__link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--accent-dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.support-card__link span {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid rgba(141,106,62,.40);
    border-radius: 50%;
    transition: .3s ease;
}

.support-card__link:hover span {
    color: #fff;
    background: var(--accent-dark);
    transform: rotate(-35deg);
}

/* ACCORDION */
.faq-list {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255,255,255,.94);
    box-shadow: 0 22px 55px rgba(31,29,24,.055);
}

.faq-item {
    padding: 0 30px;
    border-bottom: 1px solid var(--line);
}

.faq-item:last-child { border-bottom: 0; }

.faq-item summary {
    position: relative;
    display: grid;
    min-height: 108px;
    padding: 29px 68px 29px 0;
    grid-template-columns: 48px 1fr;
    align-items: center;
    gap: 18px;
    cursor: pointer;
    list-style: none;
}

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

.faq-item__number {
    color: var(--accent-dark);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .15em;
}

.faq-item__question {
    color: var(--text);
    font-family: "Montserrat", sans-serif;
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: -.025em;
}

.faq-item__toggle {
    position: absolute;
    top: 50%;
    right: 2px;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(23,24,21,.17);
    border-radius: 50%;
    transform: translateY(-50%);
    transition: .3s ease;
}

.faq-item__toggle::before,
.faq-item__toggle::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 13px;
    height: 1px;
    content: "";
    background: var(--accent-dark);
    transform: translate(-50%, -50%);
    transition: .3s ease;
}

.faq-item__toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-item__toggle {
    border-color: var(--accent);
    background: var(--accent);
}

.faq-item[open] .faq-item__toggle::before,
.faq-item[open] .faq-item__toggle::after {
    background: var(--dark);
}

.faq-item[open] .faq-item__toggle::after {
    transform: translate(-50%, -50%) rotate(0);
}

.faq-item__answer {
    padding: 0 68px 32px 66px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.9;
}

.faq-item__answer p {
    max-width: 760px;
    margin: 0;
}

/* DARK CTA */
.contact-cta {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: var(--dark);
}

.contact-cta::before {
    position: absolute;
    top: -170px;
    right: -120px;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(184,144,92,.15);
    border-radius: 50%;
    content: "";
}

.contact-cta__inner {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 350px;
    padding: 60px 0;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.contact-cta h2 {
    max-width: 800px;
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(38px, 5.1vw, 72px);
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: -.05em;
}

.contact-circle {
    display: grid;
    min-width: 150px;
    height: 150px;
    place-items: center;
    border: 1px solid rgba(255,255,255,.40);
    border-radius: 50%;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: .35s ease;
}

.contact-circle:hover {
    color: var(--dark);
    background: var(--accent);
    border-color: var(--accent);
    transform: rotate(-8deg);
}

/* FOOTER */
footer {
    padding: 76px 0 28px;
    color: #fff;
    background: #10110f;
}

.footer-brand .brand { margin-bottom: 28px; }

.footer-brand p {
    max-width: 390px;
    color: rgba(255,255,255,.48);
    font-size: 14px;
    line-height: 1.85;
}

.footer-title {
    margin-bottom: 22px;
    color: rgba(255,255,255,.38);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links li + li { margin-top: 13px; }

.footer-links a {
    color: rgba(255,255,255,.72);
    font-size: 14px;
    transition: .25s ease;
}

.footer-links a:hover { color: var(--accent); }

.footer-bottom {
    margin-top: 56px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.09);
    color: rgba(255,255,255,.35);
    font-size: 11px;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .75s ease, transform .75s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1199px) {
    .navbar { padding: 0 16px; }

    .navbar-collapse {
        margin: 12px -16px 0;
        padding: 12px 22px 22px;
        border-top: 1px solid rgba(255,255,255,.1);
        background: rgba(17,18,15,.96);
    }

    .navbar-nav .nav-link { padding: 14px 0 !important; }
    .navbar-nav .nav-link::after { display: none; }
    .header-cta { margin-top: 14px; }
}

@media (max-width: 991px) {
    .section-space { padding: 82px 0; }
    .faq-hero { min-height: 610px; }
    .faq-head__intro { margin: 28px 0 0; }

    .faq-layout {
        grid-template-columns: 1fr;
    }

    .support-card {
        position: relative;
        top: auto;
        min-height: 350px;
    }

    .support-card__inner { min-height: 282px; }

    .contact-cta__inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .navbar-shell { padding: 14px 0; }
    .navbar { min-height: 66px; }

    .brand-mark {
        width: 38px;
        height: 38px;
    }

    .brand-text strong { font-size: 15px; }
    .brand-text small { font-size: 7px; }

    .faq-hero { min-height: 580px; }

    .faq-hero__content {
        padding: 155px 0 46px;
    }

    .faq-hero h1 {
        font-size: clamp(47px, 15vw, 72px);
    }

    .faq-hero__bottom { margin-top: 30px; }
    .hero-scroll { margin-top: 28px; }

    .support-card {
        min-height: 320px;
        padding: 28px 24px;
    }

    .support-card__inner { min-height: 262px; }

    .faq-item { padding: 0 18px; }

    .faq-item summary {
        min-height: 94px;
        padding: 24px 50px 24px 0;
        grid-template-columns: 34px 1fr;
        gap: 12px;
    }

    .faq-item__toggle {
        width: 36px;
        height: 36px;
    }

    .faq-item__answer {
        padding: 0 40px 26px 46px;
    }

    .contact-circle {
        min-width: 120px;
        height: 120px;
    }
}
