/* Entertainment page — content only (scoped under .ent-show) */

.content-section.content-section--entertainment {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    font-family: "DM Sans", system-ui, sans-serif;
    font-size: 1.0625rem;
    line-height: 1.65;
    color: #222;
    background: #fff;
}

/* Align with site header: #4391c2 blue, black bar, neutrals */
.ent-show {
    --ent-accent: #4391c2;
    --ent-accent-deep: #2d6f96;
    --ent-accent-soft: #7eb3db;
    --ent-ink: #111;
    --ent-surface-dark: #1a1f26;
    --ent-surface-muted: #f0f2f5;
    --ent-muted: #555;
    --ent-border: rgba(0, 0, 0, 0.08);
    /* legacy aliases (same file still references these names) */
    --ent-gold: var(--ent-accent);
    --ent-gold-soft: var(--ent-accent-soft);
    --ent-warm: var(--ent-surface-dark);
    --ent-cream: var(--ent-surface-muted);
}

.ent-show * {
    box-sizing: border-box;
}

.ent-show a {
    color: inherit;
    text-decoration: none;
}

.ent-show a:hover,
.ent-show a:focus {
    text-decoration: none;
}

/* Beat `.ent-show a { color: inherit }` (higher specificity than `.ent-btn--primary` alone) */
.ent-show a.ent-btn--primary {
    color: #fff;
}

.ent-show a.ent-btn--ghost {
    color: var(--ent-ink);
}

.ent-show__inner {
    max-width: min(80rem, 100%);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 5vw, 3rem);
}

/* —— Intro —— */
.ent-intro {
    position: relative;
    padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(2.5rem, 5vw, 4rem);
    text-align: center;
    background:
        radial-gradient(ellipse 120% 80% at 50% -20%, rgba(67, 145, 194, 0.14), transparent 55%),
        #fff;
    border-bottom: 1px solid var(--ent-border);
}

.ent-intro__kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ent-gold);
    margin: 0 0 1rem;
}

.ent-intro__kicker::before,
.ent-intro__kicker::after {
    content: "";
    width: 2rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--ent-gold-soft), transparent);
    opacity: 0.9;
}

.ent-intro__title {
    font-family: "Raleway", system-ui, sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 5.5vw, 3.35rem);
    line-height: 1.28;
    letter-spacing: -0.02em;
    color: var(--ent-ink);
    margin: 0 auto 1.5rem;
    max-width: 22em;
    /* Room for descenders + background-clip text not eating glyphs */
    padding: 0.2em 0 0.35em;
}

.ent-intro__title-line {
    display: block;
}

.ent-intro__title-line + .ent-intro__title-line {
    margin-top: 0.2em;
}

.ent-intro__title em {
    font-style: normal;
    background: linear-gradient(120deg, var(--ent-accent) 0%, var(--ent-accent-deep) 50%, var(--ent-accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    padding: 0.06em 0;
}

.ent-intro__lede {
    margin: 0 auto 2rem;
    max-width: 38rem;
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    color: var(--ent-muted);
}

.ent-intro__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    justify-content: center;
    align-items: center;
}

.ent-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.65rem;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 999px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.ent-btn--primary {
    background: var(--ent-accent);
    color: #fff;
    box-shadow: 0 4px 24px rgba(67, 145, 194, 0.35);
}

.ent-btn--primary:hover,
.ent-btn--primary:focus {
    transform: translateY(-2px);
    background: var(--ent-accent-deep);
    box-shadow: 0 8px 32px rgba(67, 145, 194, 0.4);
}

.ent-btn--ghost {
    background: transparent;
    color: var(--ent-ink);
    border-color: rgba(0, 0, 0, 0.18);
}

.ent-btn--ghost:hover,
.ent-btn--ghost:focus {
    border-color: var(--ent-accent);
    background: rgba(67, 145, 194, 0.06);
}

/* —— Stats —— */
.ent-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin: 0;
    padding: 0;
    list-style: none;
    background: var(--ent-border);
    border-top: 1px solid var(--ent-border);
    border-bottom: 1px solid var(--ent-border);
}

.ent-stats li {
    background: #fff;
    padding: clamp(1.5rem, 4vw, 2.25rem) 1rem;
    text-align: center;
}

.ent-stats strong {
    display: block;
    font-family: "Raleway", system-ui, sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.35rem);
    font-weight: 800;
    color: var(--ent-ink);
    line-height: 1.22;
    padding: 0.1em 0;
}

.ent-stats span {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.875rem;
    color: var(--ent-muted);
    max-width: 14rem;
    margin-left: auto;
    margin-right: auto;
}

/* —— Split + placeholder media —— */
.ent-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
    padding: clamp(3rem, 7vw, 5rem) 0;
}

.ent-split--reverse .ent-split__text {
    order: 2;
}

.ent-split--reverse .ent-split__media {
    order: 1;
}

.ent-split__text {
    overflow: visible;
    min-width: 0;
}

.ent-split__eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ent-gold);
    margin: 0 0 0.85rem;
}

.ent-split h2 {
    font-family: "Raleway", system-ui, sans-serif;
    font-weight: 800;
    font-size: clamp(1.65rem, 3.5vw, 2.25rem);
    line-height: 1.3;
    color: var(--ent-ink);
    margin: 0 0 1.35rem;
    padding: 0.12em 0 0.2em;
}

.ent-split p {
    margin: 0 0 1rem;
    color: var(--ent-muted);
}

.ent-split p:last-child {
    margin-bottom: 0;
}

.ent-list {
    margin: 1.25rem 0 0;
    padding: 0;
    list-style: none;
}

.ent-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.85rem;
    color: var(--ent-muted);
}

.ent-list li:last-child {
    margin-bottom: 0;
}

.ent-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: var(--ent-accent);
    box-shadow: 0 0 0 3px rgba(67, 145, 194, 0.22);
}

/* Placeholder “image” blocks */
.ent-media {
    margin: 0;
    border-radius: clamp(12px, 2vw, 20px);
    overflow: hidden;
    box-shadow:
        0 24px 48px rgba(0, 0, 0, 0.1),
        0 0 0 1px var(--ent-border);
}

.ent-media > img {
    display: block;
    width: 100%;
    height: auto;
}

/* Match former 4:3 placeholder frame; crop wide assets (e.g. 16:9) cleanly */
.ent-media.ent-media--cover > img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    height: auto;
}

.ent-media.ent-media--ph {
    position: relative;
    aspect-ratio: 4 / 3;
    background: linear-gradient(145deg, #252b33 0%, #1a1f26 45%, #141820 100%);
    min-height: 220px;
}

.ent-media--ph::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(67, 145, 194, 0.18), transparent 50%);
    pointer-events: none;
}

.ent-media__ph-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    text-align: center;
    z-index: 1;
}

.ent-media__ph-icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
    opacity: 0.45;
    color: var(--ent-gold-soft);
}

.ent-media__ph-title {
    font-family: "Raleway", system-ui, sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
    margin: 0 0 0.35rem;
}

.ent-media__ph-path {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    font-family: ui-monospace, monospace;
    word-break: break-all;
    max-width: 100%;
}

/* —— Experience cards —— */
.ent-band {
    background: #fff;
    border-top: 1px solid var(--ent-border);
    border-bottom: 1px solid var(--ent-border);
    padding: clamp(3rem, 7vw, 5rem) 0;
}

.ent-band__head {
    text-align: center;
    max-width: 36rem;
    margin: 0 auto 2.75rem;
}

.ent-band__head h2 {
    font-family: "Raleway", system-ui, sans-serif;
    font-weight: 800;
    font-size: clamp(1.65rem, 3.5vw, 2.2rem);
    line-height: 1.28;
    margin: 0 0 0.75rem;
    padding: 0.1em 0;
    color: var(--ent-ink);
}

.ent-band__head p {
    margin: 0;
    color: var(--ent-muted);
}

.ent-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1rem, 2.5vw, 1.5rem);
}

.ent-card {
    padding: clamp(1.35rem, 3vw, 1.85rem);
    border-radius: 16px;
    background: var(--ent-surface-muted);
    border: 1px solid var(--ent-border);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ent-card:hover {
    border-color: rgba(67, 145, 194, 0.4);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.ent-card__num {
    font-family: "Raleway", system-ui, sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--ent-accent);
    opacity: 0.85;
    line-height: 1;
    margin-bottom: 0.65rem;
}

.ent-card h3 {
    font-family: "Raleway", system-ui, sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.3;
    margin: 0 0 0.5rem;
    color: var(--ent-ink);
}

.ent-card p {
    margin: 0;
    font-size: 0.98rem;
    color: var(--ent-muted);
}

/* —— Dark venues strip —— */
.ent-velvet {
    position: relative;
    padding: clamp(3.5rem, 8vw, 6rem) 0;
    background: var(--ent-warm);
    color: rgba(255, 255, 255, 0.92);
    overflow: hidden;
}

.ent-velvet::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(67, 145, 194, 0.15), transparent 55%),
        radial-gradient(circle at 100% 100%, rgba(67, 145, 194, 0.08), transparent 40%);
    pointer-events: none;
}

.ent-velvet .ent-show__inner {
    position: relative;
    z-index: 1;
}

.ent-velvet h2 {
    font-family: "Raleway", system-ui, sans-serif;
    font-weight: 800;
    font-size: clamp(1.65rem, 3.5vw, 2.25rem);
    line-height: 1.28;
    text-align: center;
    margin: 0 0 0.5rem;
    padding: 0.1em 0;
}

.ent-velvet__sub {
    text-align: center;
    margin: 0 auto 2.5rem;
    max-width: 32rem;
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.05rem;
}

.ent-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: center;
    max-width: 48rem;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

.ent-pill {
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(126, 179, 219, 0.35);
    color: rgba(255, 255, 255, 0.92);
}

/* —— Testimonial carousel (same copy as Speaking page) —— */
.ent-visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.ent-quote {
    padding: clamp(3rem, 7vw, 5rem) 0;
    text-align: center;
    background: var(--ent-surface-muted);
    border-top: 1px solid var(--ent-border);
    border-bottom: 1px solid var(--ent-border);
}

.ent-t-carousel {
    max-width: 40rem;
    margin: 0 auto;
}

.ent-t-carousel__viewport {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}

.ent-t-slide {
    grid-area: 1 / 1;
    margin: 0;
    padding: 0;
    border: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    pointer-events: none;
}

.ent-t-slide.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 1;
}

.ent-t-slide p {
    font-family: "Raleway", system-ui, sans-serif;
    font-weight: 600;
    font-size: clamp(1.15rem, 2.8vw, 1.5rem);
    line-height: 1.5;
    color: var(--ent-ink);
    margin: 0 0 1.35rem;
}

.ent-t-slide p::before,
.ent-t-slide p::after {
    content: none;
}

.ent-t-slide__footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    text-align: left;
    font-size: 0.9rem;
    color: var(--ent-muted);
}

.ent-t-slide__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.ent-t-slide__byline {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.ent-t-slide__name {
    font-style: normal;
    font-weight: 700;
    font-size: 1rem;
    color: var(--ent-ink);
}

.ent-t-slide__role {
    font-size: 0.875rem;
    color: var(--ent-muted);
}

.ent-t-carousel__dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.75rem;
}

.ent-t-carousel__dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.ent-t-carousel__dot:hover,
.ent-t-carousel__dot:focus-visible {
    background: var(--ent-accent);
    outline: none;
}

.ent-t-carousel__dot.is-active {
    background: var(--ent-accent);
    transform: scale(1.15);
}

/* —— FAQ —— */
.ent-faq {
    padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(3.5rem, 7vw, 5rem);
    background: #fff;
    border-top: 1px solid var(--ent-border);
}

.ent-faq h2 {
    font-family: "Raleway", system-ui, sans-serif;
    font-weight: 800;
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.28;
    text-align: center;
    margin: 0 0 2rem;
    padding: 0.1em 0;
    color: var(--ent-ink);
}

.ent-faq details {
    max-width: 40rem;
    margin: 0 auto 0.65rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    background: var(--ent-surface-muted);
    overflow: hidden;
}

.ent-faq summary {
    padding: 1rem 1.25rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: var(--ent-ink);
}

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

.ent-faq summary::after {
    content: "+";
    font-weight: 400;
    font-size: 1.25rem;
    color: var(--ent-gold);
    flex-shrink: 0;
}

.ent-faq details[open] summary::after {
    content: "−";
}

.ent-faq details > div {
    padding: 0 1.25rem 1.15rem;
    color: var(--ent-muted);
    font-size: 0.98rem;
}

/* —— Final CTA —— */
.ent-finale {
    padding: clamp(3.5rem, 8vw, 5.5rem) 0 clamp(4.5rem, 11vw, 7.5rem);
    background:
        linear-gradient(135deg, rgba(67, 145, 194, 0.2) 0%, transparent 45%),
        #000;
    color: #fff;
    text-align: center;
}

.ent-finale h2 {
    font-family: "Raleway", system-ui, sans-serif;
    font-weight: 800;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin: 0 0 0.75rem;
    line-height: 1.28;
    padding: 0.1em 0;
}

.ent-finale > .ent-show__inner > p {
    margin: 0 auto 1.75rem;
    max-width: 28rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.05rem;
}

.ent-finale .ent-btn--primary {
    background: #fff;
    color: var(--ent-ink);
    box-shadow: 0 4px 28px rgba(0, 0, 0, 0.25);
}

.ent-finale a.ent-btn--primary {
    color: var(--ent-ink);
}

.ent-finale .ent-btn--primary:hover,
.ent-finale .ent-btn--primary:focus {
    background: var(--ent-surface-muted);
    box-shadow: 0 8px 36px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .ent-stats {
        grid-template-columns: 1fr;
    }

    .ent-split {
        grid-template-columns: 1fr;
    }

    .ent-split--reverse .ent-split__text,
    .ent-split--reverse .ent-split__media {
        order: unset;
    }

    .ent-cards {
        grid-template-columns: 1fr;
    }

    .ent-intro__kicker::before,
    .ent-intro__kicker::after {
        display: none;
    }
}
