/* Book a Day — elegant landing page */

.bad-page-wrap [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

.bad-page-wrap {
    color: #1a1a1a;
}

/* ── Shared typography ── */

.bad-page-section-label {
    display: inline-block;
    color: #7a4528;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 14px;
}

.bad-page-section-label--light {
    color: #e8c4a8;
}

.bad-page-section-title {
    font-size: clamp(1.75rem, 3.2vw, 2.5rem);
    line-height: 1.18;
    font-weight: 600;
    margin-bottom: 16px;
    color: #111;
    letter-spacing: -0.01em;
}

.bad-page-section-title--light {
    color: #fff;
}

.bad-page-section-text {
    color: #444;
    line-height: 1.85;
    margin-bottom: 0;
    font-size: 1rem;
}

.bad-page-section-text--center {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Buttons ── */

.bad-page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 30px;
    border: none;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.bad-page-btn--primary {
    background: #9a5c38;
    color: #fff;
    box-shadow: 0 8px 28px rgba(122, 69, 40, 0.28);
}

.bad-page-btn--primary:hover {
    transform: translateY(-2px);
    background: #8a4f2e;
    color: #fff;
    box-shadow: 0 12px 32px rgba(122, 69, 40, 0.36);
}

.bad-page-btn--ghost {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.45);
}

.bad-page-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.bad-page-btn--light {
    background: #fff;
    color: #7a4528;
}

.bad-page-btn--light:hover {
    color: #7a4528;
    transform: translateY(-2px);
}

/* ── Hero ── */

.bad-page-hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center 45%;
    color: #fff;
    overflow: hidden;
}

.bad-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(12, 10, 9, 0.88) 0%, rgba(12, 10, 9, 0.55) 50%, rgba(12, 10, 9, 0.78) 100%);
}

.bad-page-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 680px;
    padding: 90px 0 100px;
}

.bad-page-badge {
    display: inline-block;
    padding: 7px 18px;
    border: 1px solid rgba(232, 196, 168, 0.45);
    color: #e8c4a8;
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.bad-page-hero__title {
    font-size: clamp(2.1rem, 4.5vw, 3.4rem);
    line-height: 1.1;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: -0.02em;
}

.bad-page-hero__title span {
    color: #e8c4a8;
    font-weight: 500;
}

.bad-page-hero__text {
    font-size: 1.05rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 32px;
    max-width: 560px;
    font-weight: 300;
}

.bad-page-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* ── Intro pillars ── */

.bad-page-intro {
    padding: 100px 0;
    background: #fff;
}

.bad-page-intro__head {
    margin-bottom: 56px;
}

.bad-page-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid #d8d8d8;
    border-bottom: 1px solid #d8d8d8;
}

.bad-page-pillar {
    padding: 40px 28px;
    text-align: center;
    border-right: 1px solid #d8d8d8;
}

.bad-page-pillar:last-child {
    border-right: none;
}

.bad-page-pillar__icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #818080;
    border-radius: 50%;
    color: #818080;
    font-size: 1.25rem;
}

.bad-page-pillar h4 {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 10px;
    color: #111;
}

.bad-page-pillar p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.65;
    color: #666;
}

/* ── Booking process flow ── */

.bad-page-process {
    padding: 90px 0;
    background: #f0f0f0;
}

.bad-page-process__flow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 52px;
    position: relative;
}

.bad-page-process__flow::before {
    content: "";
    position: absolute;
    top: 36px;
    left: 12%;
    right: 12%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4b8a4 20%, #d4b8a4 80%, transparent);
    z-index: 0;
}

.bad-page-process__step {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 8px;
}

.bad-page-process__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #dccfc6;
    border-radius: 50%;
    color: #000;
    font-size: 1.35rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.bad-page-process__num {
    display: block;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    color: #000;
    font-weight: 600;
    margin-bottom: 8px;
}

.bad-page-process__step h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #111;
}

.bad-page-process__step p {
    margin: 0;
    font-size: 0.86rem;
    line-height: 1.65;
    color: #666;
}

/* ── Includes strip ── */

.bad-page-includes {
    padding: 80px 0;
    background: #fff;
}

.bad-page-includes__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: 48px;
    background: #e8e0da;
    border: 1px solid #e8e0da;
}

.bad-page-include {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 26px;
    background: #fff;
    font-size: 0.9rem;
    color: #333;
}

.bad-page-include i {
    color: #7a4528;
    font-size: 1.1rem;
    width: 22px;
    text-align: center;
    flex-shrink: 0;
}

/* ── Audience ── */

.bad-page-audience {
    padding: 90px 0;
    background: #141210;
}

.bad-page-audience__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.bad-page-audience__item {
    padding: 32px 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: border-color 0.25s ease;
}

.bad-page-audience__item:hover {
    border-color: rgba(232, 196, 168, 0.35);
}

.bad-page-audience__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(232, 196, 168, 0.3);
    border-radius: 50%;
    color: #e8c4a8;
    font-size: 1.1rem;
}

.bad-page-audience__item h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #fff;
}

.bad-page-audience__item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.65;
    font-size: 0.86rem;
}

/* ── Day journey (time-wise itinerary) ── */

.bad-day-journey {
    padding: 100px 0 80px;
    background: linear-gradient(180deg, #fff 0%, #f1eeec 35%, #fefefe 70%, #cecccc 100%);
}

.bad-day-journey__head {
    margin-bottom: 64px;
}

.bad-day-journey__track {
    position: relative;
    max-width: 820px;
    margin: 0 auto;
}

.bad-day-journey__track::before {
    content: "";
    position: absolute;
    left: 72px;
    top: 24px;
    bottom: 24px;
    width: 1px;
    background: linear-gradient(180deg, #f0d4b8 0%, #c98862 35%, #000000 65%, #000000 100%);
    z-index: 0;
}

.bad-day-phase {
    display: grid;
    grid-template-columns: 144px 1fr;
    gap: 32px;
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
}

.bad-day-phase:last-child {
    margin-bottom: 0;
}

.bad-day-phase__rail {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 8px;
}

.bad-day-phase__time {
    font-size: 1.5rem;
    font-weight: 300;
    color: #111;
    letter-spacing: -0.02em;
    line-height: 1;
}

.bad-day-phase__dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #9a5c38;
    margin: 12px 0;
    box-shadow: 0 0 0 4px rgba(154, 92, 56, 0.12);
}

.bad-day-phase--morning .bad-day-phase__dot {
    border-color: #e8b87a;
    box-shadow: 0 0 0 4px rgba(232, 184, 122, 0.2);
}

.bad-day-phase--midmorning .bad-day-phase__dot {
    border-color: #d4a07a;
    box-shadow: 0 0 0 4px rgba(212, 160, 122, 0.2);
}

.bad-day-phase--afternoon .bad-day-phase__dot {
    border-color: #c98862;
    box-shadow: 0 0 0 4px rgba(201, 136, 98, 0.2);
}

.bad-day-phase--late .bad-day-phase__dot {
    border-color: #7a4528;
    box-shadow: 0 0 0 4px rgba(122, 69, 40, 0.2);
}

.bad-day-phase__period {
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #000000;
    font-weight: 600;
}

.bad-day-phase__card {
    background: #fff;
    border: 1px solid #e8e0da;
    padding: 28px 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.bad-day-phase__card:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.07);
    transform: translateX(4px);
}

.bad-day-phase--morning .bad-day-phase__card {
    border-top: 3px solid #f0d4b8;
}

.bad-day-phase--midmorning .bad-day-phase__card {
    border-top: 3px solid #e8c4a8;
}

.bad-day-phase--afternoon .bad-day-phase__card {
    border-top: 3px solid #d4a07a;
}

.bad-day-phase--late .bad-day-phase__card {
    border-top: 3px solid #9a5c38;
}

.bad-day-phase__card-head {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 14px;
}

.bad-day-phase__icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.1rem;
}

.bad-day-phase__icon--morning {
    background: #fef6ed;
    color: #c98862;
    border: 1px solid #f0d4b8;
}

.bad-day-phase__icon--midmorning {
    background: #fdf3ea;
    color: #b8734a;
    border: 1px solid #e8c4a8;
}

.bad-day-phase__icon--afternoon {
    background: #faf0e8;
    color: #9a5c38;
    border: 1px solid #d4a07a;
}

.bad-day-phase__icon--late {
    background: #f5ebe3;
    color: #7a4528;
    border: 1px solid #c98862;
}

.bad-day-phase__feel {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #b8937a;
    margin: 0 0 4px;
    font-weight: 500;
    font-style: italic;
}

.bad-day-phase__card-head h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0;
    color: #111;
    letter-spacing: -0.01em;
}

.bad-day-phase__text {
    margin: 0 0 16px;
    font-size: 0.92rem;
    line-height: 1.75;
    color: #555;
}

.bad-day-phase__tags {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
}

.bad-day-phase__tags li {
    font-size: 0.8rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
}

.bad-day-phase__tags i {
    color: #9a5c38;
    font-size: 0.7rem;
}

.bad-day-journey__cta {
    margin-top: 56px;
}

/* ── FAQ ── */

.bad-page-faq {
    padding: 90px 0;
    background: #fff;
}

.bad-page-faq__list {
    max-width: 760px;
    margin: 48px auto 0;
}

.bad-page-faq__item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px 0;
    border-bottom: 1px solid #ece6e0;
}

.bad-page-faq__item:last-child {
    border-bottom: none;
}

.bad-page-faq__icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dccfc6;
    border-radius: 50%;
    color: #7a4528;
    font-size: 0.95rem;
}

.bad-page-faq__item h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: #111;
}

.bad-page-faq__item p {
    margin: 0;
    color: #666;
    line-height: 1.7;
    font-size: 0.9rem;
}

/* ── CTA ── */

.bad-page-cta {
    padding: 80px 0;
    background: #141210;
    color: #fff;
    text-align: center;
}

.bad-page-cta h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 600;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}

.bad-page-cta p {
    max-width: 520px;
    margin: 0 auto 28px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    font-weight: 300;
}

/* ── Responsive ── */

@media (max-width: 991px) {
    .bad-page-pillars {
        grid-template-columns: repeat(2, 1fr);
    }

    .bad-page-pillar:nth-child(2) {
        border-right: none;
    }

    .bad-page-pillar:nth-child(1),
    .bad-page-pillar:nth-child(2) {
        border-bottom: 1px solid #e8e0da;
    }

    .bad-page-process__flow {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 24px;
    }

    .bad-page-process__flow::before {
        display: none;
    }

    .bad-page-includes__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bad-page-audience__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .bad-page-hero {
        min-height: 480px;
    }

    .bad-page-hero__inner {
        padding: 70px 0 80px;
    }

    .bad-page-hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .bad-page-pillars {
        grid-template-columns: 1fr;
    }

    .bad-page-pillar {
        border-right: none;
        border-bottom: 1px solid #e8e0da;
    }

    .bad-page-pillar:last-child {
        border-bottom: none;
    }

    .bad-page-process__flow {
        grid-template-columns: 1fr;
    }

    .bad-page-includes__grid {
        grid-template-columns: 1fr;
    }

    .bad-page-audience__grid {
        grid-template-columns: 1fr;
    }

    .bad-day-journey__track::before {
        left: 28px;
    }

    .bad-day-phase {
        grid-template-columns: 56px 1fr;
        gap: 16px;
    }

    .bad-day-phase__rail {
        align-items: flex-start;
    }

    .bad-day-phase__time {
        font-size: 0.78rem;
        letter-spacing: 0.06em;
        writing-mode: vertical-rl;
        transform: rotate(180deg);
        margin-top: 4px;
    }

    .bad-day-phase__period {
        display: none;
    }

    .bad-day-phase__dot {
        margin: 8px 0;
    }

    .bad-day-phase__card {
        padding: 22px 20px;
    }

    .bad-day-phase__card:hover {
        transform: none;
    }
}
