:root {
    --fazea-navy: #071120;
    --fazea-navy-soft: #14213d;
    --fazea-gold: #b88a35;
    --fazea-gold-dark: #8f6723;
    --fazea-ivory: #fbfaf7;
    --fazea-surface: #ffffff;
    --fazea-text: #263247;
    --fazea-muted: #626a76;
    --fazea-border: rgba(7, 17, 32, 0.10);
    --fazea-shadow: 0 16px 42px rgba(7, 17, 32, 0.07);
}

.guides-page {
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    background: #ffffff;
    color: #071120;
}

.guides-page svg {
    display: inline-block;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.guides-container {
    width: min(100%, 1620px);
    margin: 0 auto;
    padding-left: clamp(42px, 5.5vw, 110px);
    padding-right: clamp(42px, 5.5vw, 110px);
}

/* HERO */

.guides-hero {
    width: 100%;
    min-height: 430px;
    background:
        radial-gradient(circle at 0% 45%, rgba(184, 138, 53, 0.10), transparent 26%),
        linear-gradient(90deg, #ffffff 0%, #ffffff 48%, #fbfaf7 100%);
    overflow: hidden;
}

.guides-hero-inner {
    position: relative;
    width: 100%;
    min-height: 430px;
    padding: 38px clamp(42px, 5.5vw, 110px) 64px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-image:
        linear-gradient(
            90deg,
            #ffffff 0%,
            #ffffff 37%,
            rgba(255, 255, 255, 0.98) 46%,
            rgba(255, 255, 255, 0.84) 56%,
            rgba(255, 255, 255, 0.42) 68%,
            rgba(255, 255, 255, 0) 82%
        ),
        url("/assets/images/hero-home.png");
    background-repeat: no-repeat, no-repeat;
    background-position: left center, right center;
    background-size: cover, auto 100%;
}

.guides-hero-inner::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 46%;
    height: 100%;
    pointer-events: none;
    background:
        radial-gradient(circle at 8% 28%, rgba(184, 138, 53, 0.12) 0 3px, transparent 4px),
        radial-gradient(circle at 3% 54%, rgba(0, 84, 255, 0.11) 0 4px, transparent 5px),
        radial-gradient(circle at 10% 72%, rgba(0, 84, 255, 0.09) 0 3px, transparent 4px),
        linear-gradient(90deg, rgba(238, 246, 255, 0.75), rgba(255,255,255,0));
}

.guides-hero-inner::after {
    content: "";
    position: absolute;
    right: 43%;
    top: 0;
    width: 260px;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.guides-breadcrumb,
.guides-hero-content {
    position: relative;
    z-index: 3;
}

.guides-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 66px;
    color: #071120;
    font-size: 13px;
    font-weight: 800;
}

.guides-breadcrumb a {
    color: #071120;
    text-decoration: none;
}

.guides-breadcrumb span {
    color: #747b86;
}

.guides-breadcrumb strong {
    color: #071120;
}

.guides-hero-content {
    width: min(100%, 620px);
}

.guides-hero-content h1 {
    margin: 0;
    color: #071120;
    font-size: clamp(38px, 3.7vw, 58px);
    line-height: 1.02;
    font-weight: 950;
    letter-spacing: -0.055em;
    text-transform: uppercase;
}

.guides-hero-content h2 {
    max-width: 600px;
    margin: 22px 0 0;
    color: #071120;
    font-size: clamp(21px, 1.75vw, 29px);
    line-height: 1.25;
    font-weight: 850;
    letter-spacing: -0.035em;
}

.guides-hero-content p {
    max-width: 560px;
    margin-top: 28px;
    color: #263247;
    font-size: clamp(16px, 1vw, 18px);
    line-height: 1.7;
    font-weight: 750;
}
/* CONTENT */

.guides-content {
    width: 100%;
    padding: 38px 0 70px;
    background: #ffffff;
}

.guide-section {
    width: 100%;
    margin-bottom: 18px;
    padding: 28px 34px;
    display: grid;
    grid-template-columns: 470px minmax(0, 1fr);
    gap: 38px;
    align-items: stretch;
    border: 1px solid rgba(7, 17, 32, 0.10);
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(7, 17, 32, 0.04);
}

.guide-section-left {
    display: grid;
    grid-template-columns: 78px 1fr;
    gap: 28px;
    align-items: start;
    padding-right: 34px;
    border-right: 1px solid rgba(7, 17, 32, 0.10);
}

.guide-icon {
    width: 78px;
    height: 78px;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #b88a35;
    background: #f8f6f0;
}

.guide-icon svg {
    width: 48px;
    height: 48px;
    stroke-width: 1.9;
}

.guide-title-row {
    display: flex;
    align-items: baseline;
    gap: 14px;
}

.guide-number {
    color: #071120;
    font-size: 18px;
    font-weight: 950;
    line-height: 1;
}

.guide-section h2 {
    margin: 0;
    color: #071120;
    font-size: clamp(16px, 1.2vw, 20px);
    line-height: 1.25;
    font-weight: 950;
    text-transform: uppercase;
}

.guide-section-left p {
    max-width: 330px;
    margin-top: 18px;
    color: #263247;
    font-size: 15px;
    line-height: 1.75;
    font-weight: 650;
}

.guide-accordion {
    display: grid;
    gap: 0;
    align-content: center;
}

.guide-item {
    border-bottom: 1px solid transparent;
}

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

.guide-item summary {
    min-height: 38px;
    display: grid;
    grid-template-columns: 1fr 24px;
    gap: 18px;
    align-items: center;
    color: #071120;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 900;
    cursor: pointer;
    list-style: none;
}

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

.guide-item summary svg {
    width: 18px;
    height: 18px;
    color: #b88a35;
    justify-self: end;
    transition: transform 0.2s ease;
}

.guide-item[open] summary svg {
    transform: rotate(180deg);
}

.guide-item p {
    max-width: 900px;
    margin: 0;
    padding: 4px 44px 18px 0;
    color: #59616c;
    font-size: 14px;
    line-height: 1.75;
    font-weight: 650;
}

/* RESPONSIVE */

@media (min-width: 1700px) {
    .guides-hero-inner {
        min-height: 470px;
        padding-left: 7vw;
        padding-right: 7vw;
        background-size: cover, auto 104%;
    }

    .guides-container {
        padding-left: 7vw;
        padding-right: 7vw;
    }
}

@media (max-width: 1550px) {
    .guides-hero-inner {
        min-height: 405px;
        padding-left: 64px;
        padding-right: 42px;
        padding-bottom: 58px;
        background-position: left center, right center;
        background-size: cover, auto 100%;
    }

    .guides-container {
        padding-left: 64px;
        padding-right: 64px;
    }

    .guides-breadcrumb {
        margin-bottom: 54px;
    }

    .guides-hero-content h1 {
        font-size: clamp(34px, 3.6vw, 52px);
    }

    .guides-hero-content h2 {
        font-size: clamp(20px, 1.7vw, 27px);
    }

    .guide-section {
        grid-template-columns: 430px minmax(0, 1fr);
    }
}

@media (max-width: 1380px) {
    .guides-hero-inner {
        min-height: 390px;
        padding-left: 54px;
        padding-right: 32px;
        background-position: left center, right -70px center;
        background-size: cover, auto 100%;
    }

    .guides-container {
        padding-left: 54px;
        padding-right: 54px;
    }

    .guides-hero-content {
        width: 560px;
        max-width: 560px;
    }
}

@media (max-width: 1180px) {
    .guides-hero-inner {
        min-height: 360px;
        background-image:
            linear-gradient(
                90deg,
                rgba(255, 255, 255, 0.98) 0%,
                rgba(255, 255, 255, 0.95) 46%,
                rgba(255, 255, 255, 0.74) 66%,
                rgba(255, 255, 255, 0.42) 100%
            ),
            url("/assets/images/hero-home.png");
        background-position: left center, right -160px center;
    }

    .guide-section {
        grid-template-columns: 1fr;
    }

    .guide-section-left {
        border-right: 0;
        border-bottom: 1px solid rgba(7, 17, 32, 0.10);
        padding-right: 0;
        padding-bottom: 24px;
    }

    .guide-section-left p {
        max-width: 100%;
    }
}

@media (max-width: 900px) {
    .guides-hero-inner {
        min-height: auto;
        padding: 34px 6% 52px;
        background-image:
            linear-gradient(
                180deg,
                rgba(255, 255, 255, 0.98) 0%,
                rgba(255, 255, 255, 0.94) 100%
            ),
            url("/assets/images/hero-home.png");
        background-position: center, center right;
        background-size: cover, cover;
    }

    .guides-container {
        padding-left: 6%;
        padding-right: 6%;
    }

    .guides-breadcrumb {
        margin-bottom: 42px;
        font-size: 12px;
    }

    .guides-hero-content {
        width: 100%;
        max-width: 100%;
    }

    .guides-hero-content h1 {
        font-size: clamp(34px, 9vw, 48px);
    }

    .guides-hero-content h2 {
        font-size: 21px;
    }

    .guides-hero-content p {
        font-size: 15px;
        line-height: 1.65;
    }

    .guides-content {
        padding-top: 30px;
    }

    .guide-section {
        padding: 24px 22px;
    }

    .guide-section-left {
        grid-template-columns: 58px 1fr;
        gap: 18px;
    }

    .guide-icon {
        width: 58px;
        height: 58px;
    }

    .guide-icon svg {
        width: 34px;
        height: 34px;
    }

    .guide-title-row {
        gap: 10px;
    }

    .guide-number {
        font-size: 16px;
    }

    .guide-section h2 {
        font-size: 16px;
    }

    .guide-item summary {
        min-height: 42px;
        font-size: 14px;
    }

    .guide-item p {
        padding-right: 0;
    }
}

@media (max-width: 520px) {
    .guides-hero-inner {
        padding: 28px 6% 44px;
    }

    .guides-breadcrumb {
        margin-bottom: 32px;
    }

    .guides-hero-content h1 {
        font-size: 34px;
    }

    .guides-hero-content h2 {
        font-size: 19px;
    }

    .guide-section {
        padding: 20px 18px;
    }

    .guide-section-left {
        grid-template-columns: 1fr;
    }

    .guide-icon {
        width: 62px;
        height: 62px;
    }

    .guide-title-row {
        align-items: flex-start;
    }
}