:root {
    --guide-navy: #17343f;
    --guide-navy-deep: #102a34;
    --guide-teal: #087f78;
    --guide-teal-dark: #05645f;
    --guide-gold: #d79c35;
    --guide-ink: #172c35;
    --guide-muted: #58707a;
    --guide-line: #d7e1e2;
    --guide-soft: #eef5f4;
    --guide-warm: #fff7e8;
}

.guide-page .site-footer {
    margin-top: 0;
}

.guide-hero {
    position: relative;
    min-height: 500px;
    display: grid;
    align-items: center;
    overflow: hidden;
    background: var(--guide-navy);
    color: #fff;
}

.guide-hero-image,
.guide-hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.guide-hero-image {
    object-fit: cover;
}

.guide-hero-overlay {
    background: rgba(8, 31, 40, 0.74);
}

.guide-hero-content {
    position: relative;
    z-index: 1;
    padding-top: 48px;
    padding-bottom: 64px;
}

.guide-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 46px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
}

.guide-breadcrumbs a {
    color: #fff;
    text-decoration: none;
}

.guide-breadcrumbs a:hover {
    text-decoration: underline;
}

.guide-eyebrow,
.guide-kicker {
    display: block;
    color: var(--guide-teal);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.3;
    text-transform: uppercase;
}

.guide-eyebrow {
    color: #7ce0d5;
}

.guide-hero h1 {
    max-width: 820px;
    margin: 14px 0 18px;
    color: #fff;
    font-size: 64px;
    line-height: 1.02;
    letter-spacing: 0;
}

.guide-lead {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 20px;
    line-height: 1.65;
}

.guide-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.guide-button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.guide-button-primary {
    background: var(--guide-teal);
    color: #fff;
}

.guide-button-primary:hover {
    background: var(--guide-teal-dark);
    color: #fff;
}

.guide-button-secondary {
    border-color: rgba(255, 255, 255, 0.7);
    background: rgba(16, 42, 52, 0.44);
    color: #fff;
}

.guide-button-secondary:hover {
    border-color: #fff;
    background: #fff;
    color: var(--guide-navy);
}

.guide-section {
    padding: 72px 0;
}

.guide-section-soft {
    background: var(--guide-soft);
}

.guide-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.75fr);
    align-items: start;
    gap: 72px;
}

.guide-copy h2,
.guide-heading h2,
.guide-faq-heading h2,
.guide-cta h2 {
    margin: 10px 0 18px;
    color: var(--guide-ink);
    font-size: 38px;
    line-height: 1.16;
    letter-spacing: 0;
}

.guide-copy p,
.guide-heading p,
.guide-cta p {
    max-width: 760px;
    margin: 0 0 14px;
    color: var(--guide-muted);
    font-size: 17px;
    line-height: 1.75;
}

.guide-note {
    display: flex;
    gap: 16px;
    padding: 24px;
    border-left: 4px solid var(--guide-gold);
    background: var(--guide-warm);
    color: var(--guide-ink);
}

.guide-note > svg {
    flex: 0 0 auto;
    color: #9b6812;
}

.guide-note strong {
    display: block;
    margin-bottom: 7px;
    font-size: 17px;
}

.guide-note p {
    margin: 0;
    color: #665537;
    line-height: 1.65;
}

.guide-heading {
    max-width: 760px;
    margin-bottom: 36px;
}

.guide-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.guide-steps li {
    min-height: 250px;
    padding: 26px;
    border: 1px solid var(--guide-line);
    border-top: 4px solid var(--guide-teal);
    border-radius: 4px;
    background: #fff;
}

.guide-step-number {
    display: block;
    margin-bottom: 38px;
    color: var(--guide-teal);
    font-size: 14px;
    font-weight: 900;
}

.guide-steps h3,
.guide-checklist h3 {
    margin: 0 0 9px;
    color: var(--guide-ink);
    font-size: 19px;
    line-height: 1.3;
}

.guide-steps p,
.guide-checklist p {
    margin: 0;
    color: var(--guide-muted);
    line-height: 1.65;
}

.guide-checklist {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--guide-line);
    border-radius: 4px;
    background: var(--guide-line);
}

.guide-checklist article {
    min-width: 0;
    display: flex;
    gap: 16px;
    padding: 26px;
    background: #fff;
}

.guide-check-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ddf1ed;
    color: var(--guide-teal-dark);
}

.guide-faq-section {
    background: var(--guide-navy);
    color: #fff;
}

.guide-faq-layout {
    display: grid;
    grid-template-columns: minmax(240px, 0.65fr) minmax(0, 1.35fr);
    gap: 72px;
}

.guide-faq-heading .guide-kicker {
    color: #7ce0d5;
}

.guide-faq-heading h2 {
    color: #fff;
}

.guide-faq details {
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.guide-faq summary {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px 0;
    color: #fff;
    font-size: 18px;
    font-weight: 750;
    cursor: pointer;
    list-style: none;
}

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

.guide-faq summary svg {
    flex: 0 0 auto;
    transition: transform 160ms ease;
}

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

.guide-faq details p {
    max-width: 720px;
    margin: -2px 0 22px;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.7;
}

.guide-cta {
    padding: 64px 0;
    background: #fff;
}

.guide-cta-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
    align-items: center;
    gap: 72px;
}

.guide-cta h2 {
    margin-bottom: 12px;
}

.guide-cta-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.guide-cta-actions > .guide-button {
    min-width: 0;
}

.guide-contact-action {
    min-width: 0;
    min-height: 58px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border: 1px solid var(--guide-line);
    border-radius: 4px;
    color: var(--guide-ink);
    text-decoration: none;
}

.guide-contact-action:hover {
    border-color: var(--guide-teal);
    color: var(--guide-teal-dark);
}

.guide-contact-action > svg {
    flex: 0 0 auto;
}

.guide-contact-action span {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.guide-contact-action small {
    color: var(--guide-muted);
    font-size: 11px;
    font-weight: 800;
}

.guide-contact-action strong {
    overflow-wrap: anywhere;
    font-size: 14px;
}

@media (max-width: 900px) {
    .guide-hero h1 {
        font-size: 48px;
    }

    .guide-intro,
    .guide-faq-layout,
    .guide-cta-layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .guide-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .guide-cta-actions {
        max-width: 680px;
    }
}

@media (max-width: 620px) {
    .guide-hero {
        min-height: 520px;
    }

    .guide-hero-content {
        padding-top: 30px;
        padding-bottom: 46px;
    }

    .guide-breadcrumbs {
        margin-bottom: 36px;
    }

    .guide-hero h1 {
        font-size: 39px;
        line-height: 1.08;
    }

    .guide-lead {
        font-size: 17px;
        line-height: 1.55;
    }

    .guide-hero-actions,
    .guide-hero-actions .guide-button {
        width: 100%;
    }

    .guide-section {
        padding: 52px 0;
    }

    .guide-copy h2,
    .guide-heading h2,
    .guide-faq-heading h2,
    .guide-cta h2 {
        font-size: 30px;
    }

    .guide-copy p,
    .guide-heading p,
    .guide-cta p {
        font-size: 16px;
    }

    .guide-note {
        padding: 20px;
    }

    .guide-steps,
    .guide-checklist,
    .guide-cta-actions {
        grid-template-columns: 1fr;
    }

    .guide-steps li {
        min-height: 0;
    }

    .guide-step-number {
        margin-bottom: 24px;
    }

    .guide-checklist article {
        padding: 22px 18px;
    }

    .guide-faq summary {
        font-size: 17px;
    }

    .guide-cta {
        padding: 52px 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .guide-button,
    .guide-faq summary svg {
        transition: none;
    }
}
