/* =========================================================================
   Orlando guide pages — premium, scoped under .guide-page
   Honest informational content only (no offers / partnerships / discounts).
   ========================================================================= */
.guide-page {
    --g-primary: #f2730c;
    --g-primary-dark: #d9620a;
    --g-bg: #f6f7f9;
    --g-card: #ffffff;
    --g-ink: #1f2430;
    --g-muted: #5c6470;
    --g-soft: #767d8a;
    --g-border: #ebedf0;
    --g-radius: 20px;
    --g-shadow-sm: 0 1px 3px rgba(16, 24, 40, 0.05);
    --g-shadow-md: 0 14px 34px -18px rgba(16, 24, 40, 0.20);
    --g-shadow-lg: 0 30px 60px -26px rgba(16, 24, 40, 0.28);
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--g-ink);
    background: var(--g-bg);
}
.guide-page *,
.guide-page *::before,
.guide-page *::after { box-sizing: border-box; }

.guide-page h1,
.guide-page h2,
.guide-page h3 {
    font-family: "Sora", "Inter", sans-serif !important;
    color: var(--g-ink);
    letter-spacing: -0.02em;
    margin: 0;
}

/* ---- Hero ---- */
.guide-hero {
    position: relative;
    min-height: 460px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #11151c;
}
.guide-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.03);
}
.guide-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10, 13, 19, 0.20) 0%, rgba(10, 13, 19, 0.40) 45%, rgba(10, 13, 19, 0.86) 100%),
        radial-gradient(80% 60% at 15% 100%, rgba(242, 115, 12, 0.22) 0%, rgba(242, 115, 12, 0) 60%);
}
.guide-hero__inner {
    position: relative;
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 64px 24px 56px;
}
.guide-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 18px;
}
.guide-breadcrumb a { color: rgba(255, 255, 255, 0.78); text-decoration: none; transition: color .15s ease; }
.guide-breadcrumb a:hover { color: #fff; }
.guide-breadcrumb span { color: rgba(255, 255, 255, 0.45); }
.guide-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #ffb877;
    margin-bottom: 14px;
}
.guide-hero h1 {
    color: #fff !important;
    font-size: clamp(30px, 4.4vw, 50px);
    font-weight: 600;
    line-height: 1.08;
    max-width: 18ch;
}
.guide-hero__lead {
    margin: 18px 0 0;
    max-width: 60ch;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(15px, 1.4vw, 18px);
    line-height: 1.6;
}

/* ---- Body container ---- */
.guide-body {
    max-width: 1120px;
    margin: 0 auto;
    padding: 64px 24px 24px;
}
.guide-section { margin-bottom: 56px; }
.guide-section__head { max-width: 64ch; margin-bottom: 26px; }
.guide-section h2 {
    font-size: clamp(23px, 2.6vw, 30px);
    font-weight: 600;
}
.guide-section h2 + .guide-section__sub {
    margin-top: 12px;
    color: var(--g-muted);
    font-size: 16px;
    line-height: 1.6;
}
.guide-prose p {
    color: var(--g-muted);
    font-size: 16px;
    line-height: 1.7;
    margin: 0 0 16px;
}
.guide-prose p:last-child { margin-bottom: 0; }

/* ---- Card grid ---- */
.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}
.guide-card {
    background: var(--g-card);
    border: 1px solid var(--g-border);
    border-radius: var(--g-radius);
    box-shadow: var(--g-shadow-sm);
    padding: 26px 24px;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.guide-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--g-shadow-md);
    border-color: #e1e4e8;
}
.guide-card__ic {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(242, 115, 12, 0.10);
    color: var(--g-primary);
    margin-bottom: 16px;
}
.guide-card__ic svg { width: 23px; height: 23px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.guide-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}
.guide-card p {
    color: var(--g-muted);
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0;
}

/* ---- Checklist / tips ---- */
.guide-tips {
    background: var(--g-card);
    border: 1px solid var(--g-border);
    border-radius: var(--g-radius);
    box-shadow: var(--g-shadow-sm);
    padding: 30px 30px 26px;
}
.guide-tips h3 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 18px;
}
.guide-tips ul { list-style: none; margin: 0; padding: 0; }
.guide-tips li {
    position: relative;
    padding: 11px 0 11px 34px;
    border-top: 1px solid var(--g-border);
    color: var(--g-muted);
    font-size: 15px;
    line-height: 1.6;
}
.guide-tips li:first-child { border-top: 0; }
.guide-tips li strong { color: var(--g-ink); font-weight: 600; }
.guide-tips li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 14px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(242, 115, 12, 0.12)
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23f2730c' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat;
}

/* ---- Two-column feature ---- */
.guide-feature {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 36px;
    align-items: center;
}
.guide-feature__media {
    border-radius: var(--g-radius);
    overflow: hidden;
    box-shadow: var(--g-shadow-md);
    aspect-ratio: 4 / 3;
}
.guide-feature__media img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---- Note / honesty callout ---- */
.guide-note {
    display: flex;
    gap: 14px;
    background: #fff7f0;
    border: 1px solid rgba(242, 115, 12, 0.22);
    border-radius: 16px;
    padding: 18px 20px;
    color: #7a4a1d;
    font-size: 14.5px;
    line-height: 1.6;
}
.guide-note svg { flex-shrink: 0; width: 22px; height: 22px; stroke: var(--g-primary); fill: none; stroke-width: 1.8; margin-top: 1px; }

/* ---- CTA band ---- */
.guide-cta {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    margin: 16px auto 80px;
    max-width: 1120px;
    padding: 52px 40px;
    text-align: center;
    color: #fff;
    background:
        radial-gradient(60% 120% at 0% 0%, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0) 55%),
        linear-gradient(120deg, #1d2430 0%, #2a3340 100%);
    box-shadow: var(--g-shadow-lg);
}
.guide-cta h2 { color: #fff !important; font-size: clamp(24px, 3vw, 33px); font-weight: 600; }
.guide-cta p {
    margin: 14px auto 28px;
    max-width: 52ch;
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
    line-height: 1.6;
}
.guide-cta__actions { display: inline-flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.guide-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 14px 26px;
    border-radius: 13px;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.guide-btn svg { width: 17px; height: 17px; flex-shrink: 0; }
.guide-btn--primary {
    background: var(--g-primary);
    color: #fff;
    box-shadow: 0 12px 24px -10px rgba(242, 115, 12, 0.7);
}
.guide-btn--primary:hover { background: var(--g-primary-dark); color: #fff; transform: translateY(-2px); }
.guide-btn--ghost {
    background: rgba(255, 255, 255, 0.10);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.22);
}
.guide-btn--ghost:hover { background: rgba(255, 255, 255, 0.18); color: #fff; }

/* ---- Responsive ---- */
@media (max-width: 860px) {
    .guide-feature { grid-template-columns: 1fr; gap: 22px; }
    .guide-hero { min-height: 380px; }
    .guide-hero__inner { padding: 48px 20px 40px; }
    .guide-body { padding: 44px 20px 16px; }
    .guide-section { margin-bottom: 44px; }
    .guide-cta { padding: 42px 24px; border-radius: 22px; }
}
