/*
 * Tickets navigation / Ticket Finder landing page.
 */

.chq-tickets-nav {
    --chq-tn-green: #1f4d32;
    --chq-tn-green-deep: #183d28;
    --chq-tn-blue: #5aa8d4;
    --chq-tn-ink: #1a1a1a;
    --chq-tn-muted: #6b6b6b;
    --chq-tn-line: #e4e4e4;
    /* --chq-tn-serif: "Playfair Display", Georgia, "Times New Roman", serif; */
    --chq-tn-serif: auto;
    --chq-tn-sans: Manrope, "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: var(--chq-tn-ink);
    font-family: var(--chq-tn-sans);
    background: #fff;
}

.chq-tickets-nav em {
    font-style: italic;
    font-family: var(--chq-tn-serif);
}

.chq-tn-section-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.chq-tn-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border: 1px solid transparent;
    border-radius: 2px;
    font-family: var(--chq-tn-sans);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.2;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease, opacity 0.15s ease;
}

.chq-tn-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.chq-tn-btn--light {
    background: #fff;
    color: #111;
}

.chq-tn-btn--light:hover {
    background: #f3f3f3;
    color: #111;
}

.chq-tn-btn--dark {
    background: #111;
    color: #fff;
}

.chq-tn-btn--dark:hover:not(:disabled) {
    background: #2a2a2a;
    color: #fff;
}

/* Hero */
.chq-tn-hero {
    background: var(--chq-tn-green);
    color: #fff;
    padding: 72px 24px 0;
    text-align: center;
}

.chq-tn-hero-inner {
    max-width: 760px;
    margin: 0 auto 48px;
}

.chq-tn-hero-icon {
    color: rgba(255, 255, 255, 0.28);
    margin-bottom: 18px;
}

.chq-tn-hero-title {
    margin: 0 0 14px;
    font-family: var(--chq-tn-serif);
    font-size: clamp(2.1rem, 4.5vw, 3.35rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: 0.01em;
}

.chq-tn-hero-title em {
    color: inherit;
}

.chq-tn-hero-sub {
    margin: 0 0 28px;
    font-size: 1.05rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
}

/* Ticket Finder card */
.chq-tn-finder {
    max-width: 980px;
    margin: 0 auto;
    padding: 36px 40px 32px;
    background: #fff;
    color: var(--chq-tn-ink);
    text-align: left;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
    transform: translateY(48px);
}

.chq-tn-finder-progress {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 28px;
}

.chq-tn-finder-step {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid #cfcfcf;
    background: #fff;
    flex: 0 0 auto;
}

.chq-tn-finder-step.is-active {
    background: var(--chq-tn-green);
    border-color: var(--chq-tn-green);
}

.chq-tn-finder-rail {
    flex: 1 1 auto;
    height: 2px;
    background: #d8d8d8;
}

.chq-tn-finder-rail.is-active {
    background: var(--chq-tn-green);
}

.chq-tn-finder-kicker {
    margin: 0 0 12px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--chq-tn-muted);
}

.chq-tn-finder-question {
    margin: 0 0 10px;
    font-family: var(--chq-tn-serif);
    font-size: clamp(1.7rem, 3vw, 2.25rem);
    font-weight: 400;
    line-height: 1.2;
}

.chq-tn-finder-help {
    margin: 0 0 28px;
    max-width: 46rem;
    font-size: 0.95rem;
    line-height: 1.55;
    color: #555;
}

.chq-tn-finder-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

.chq-tn-pill {
    appearance: none;
    background: #fff;
    border: 1px solid #cfcfcf;
    border-radius: 999px;
    padding: 12px 18px;
    font-family: var(--chq-tn-sans);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--chq-tn-ink);
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.chq-tn-pill:hover {
    border-color: var(--chq-tn-green);
}

.chq-tn-pill.is-selected,
.chq-tn-pill[aria-checked="true"] {
    background: var(--chq-tn-green);
    border-color: var(--chq-tn-green);
    color: #fff;
}

.chq-tn-finder-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 8px;
    border-top: 1px solid var(--chq-tn-line);
}

.chq-tn-finder-concierge {
    margin: 0;
    font-size: 0.9rem;
    color: #555;
}

.chq-tn-finder-concierge a {
    color: var(--chq-tn-ink);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Choose what you need */
.chq-tn-need {
    padding: 112px 0 72px;
    background: #fff;
}

.chq-tn-section-title {
    margin: 0 0 12px;
    text-align: center;
    font-family: var(--chq-tn-serif);
    font-size: clamp(1.9rem, 3.4vw, 2.6rem);
    font-weight: 400;
    line-height: 1.2;
}

.chq-tn-section-title--light {
    color: #fff;
}

.chq-tn-section-sub {
    margin: 0 auto 40px;
    max-width: 40rem;
    text-align: center;
    font-size: 1rem;
    line-height: 1.55;
    color: #555;
}

.chq-tn-section-sub--light {
    color: rgba(255, 255, 255, 0.9);
}

.chq-tn-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px 22px;
}

.chq-tn-card-grid--featured {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 28px;
    margin-bottom: 36px;
}

.chq-tn-card {
    display: block;
    color: inherit;
    text-decoration: none;
}

.chq-tn-card:hover .chq-tn-card-title {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.chq-tn-card-media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #eaeaea;
    margin-bottom: 14px;
}

.chq-tn-card--featured .chq-tn-card-media {
    aspect-ratio: 16 / 10;
    margin-bottom: 16px;
}

.chq-tn-card--featured .chq-tn-card-title {
    font-size: 1.7rem;
}

.chq-tn-card--featured .chq-tn-card-desc {
    font-size: 0.98rem;
    max-width: 34rem;
}

.chq-tn-card-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.chq-tn-card:hover .chq-tn-card-media img {
    transform: scale(1.04);
}

.chq-tn-card-label {
    margin: 0 0 6px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--chq-tn-muted);
}

.chq-tn-card-title {
    margin: 0 0 8px;
    font-family: var(--chq-tn-serif);
    font-size: 1.35rem;
    font-weight: 400;
    line-height: 1.25;
}

.chq-tn-card-desc {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.5;
    color: #555;
}

/* Pass covers */
.chq-tn-covers {
    background: var(--chq-tn-green);
    color: #fff;
    padding: 72px 0 80px;
    /* border-top: 6px solid var(--chq-tn-blue); */
}

.chq-tn-covers-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 8px;
}

.chq-tn-covers-card {
    background: #fff;
    color: var(--chq-tn-ink);
    border-radius: 4px;
    padding: 28px 30px 24px;
}

.chq-tn-covers-card h3 {
    margin: 0 0 18px;
    font-family: var(--chq-tn-serif);
    font-size: 1.35rem;
    font-weight: 400;
}

.chq-tn-covers-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.chq-tn-covers-card li {
    position: relative;
    padding: 0 0 14px 28px;
    font-size: 0.95rem;
    line-height: 1.45;
    color: #333;
}

.chq-tn-covers-card li:last-child {
    padding-bottom: 0;
}

.chq-tn-covers-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.35em;
    width: 14px;
    height: 8px;
    border-left: 2px solid #8a8a8a;
    border-bottom: 2px solid #8a8a8a;
    transform: rotate(-45deg);
}

/* FAQ */
.chq-tn-faq {
    padding: 72px 0 96px;
    background: #fff;
    /* border-top: 3px solid var(--chq-tn-blue); */
}

.chq-tn-faq-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.7fr);
    gap: 40px;
    align-items: start;
}

.chq-tn-faq-main .chq-tn-section-title {
    text-align: left;
    margin-bottom: 28px;
}

.chq-tn-faq-item {
    border-bottom: 1px solid #d8d8d8;
}

.chq-tn-faq-item summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 0;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 500;
}

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

.chq-tn-faq-icon {
    position: relative;
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
}

.chq-tn-faq-icon::before,
.chq-tn-faq-icon::after {
    content: "";
    position: absolute;
    background: #222;
    transition: transform 0.15s ease, opacity 0.15s ease;
}

.chq-tn-faq-icon::before {
    left: 0;
    right: 0;
    top: 50%;
    height: 2px;
    margin-top: -1px;
}

.chq-tn-faq-icon::after {
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    margin-left: -1px;
}

.chq-tn-faq-item[open] .chq-tn-faq-icon::after {
    opacity: 0;
    transform: scaleY(0);
}

.chq-tn-faq-answer {
    padding: 0 28px 18px 0;
}

.chq-tn-faq-answer p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

.chq-tn-help-card {
    background: #efefef;
    padding: 36px 28px;
    text-align: center;
}

.chq-tn-help-card h3 {
    margin: 0 0 14px;
    font-family: var(--chq-tn-serif);
    font-size: 1.45rem;
    font-weight: 400;
    line-height: 1.3;
}

.chq-tn-help-card p {
    margin: 0 0 24px;
    font-size: 0.95rem;
    line-height: 1.55;
    color: #444;
}

/* Full-bleed page chrome */
body.page-tickets .chq-shell-main {
    background: #fff;
}

body.page-tickets .chq-shell-content {
    max-width: none;
    padding: 0;
    background: transparent;
}

@media (max-width: 980px) {
    .chq-tn-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .chq-tn-card-grid--featured {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-bottom: 28px;
    }

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

    .chq-tn-finder {
        padding: 28px 22px 24px;
    }
}

@media (max-width: 640px) {
    .chq-tn-hero {
        padding-top: 48px;
    }

    .chq-tn-card-grid,
    .chq-tn-card-grid--featured,
    .chq-tn-covers-grid {
        grid-template-columns: 1fr;
    }

    .chq-tn-card-grid--featured {
        margin-bottom: 24px;
    }

    .chq-tn-finder {
        transform: translateY(28px);
    }

    .chq-tn-need {
        padding-top: 72px;
    }

    .chq-tn-finder-options {
        flex-direction: column;
    }

    .chq-tn-pill {
        width: 100%;
        text-align: center;
    }

    .chq-tn-finder-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .chq-tn-finder-footer .chq-tn-btn {
        width: 100%;
    }
}
