:root {
    --bg: #090411;
    --soft: #14091f;
    --panel: #151120;
    --text: #fff;
    --muted: #d8c9e8;
    --cyan: #22d3ee;
    --pink: #d946ef;
    --purple: #a855f7;
    --line: rgba(255, 255, 255, .16);
    --radius: 22px;
    --max: 1160px
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    background-image: radial-gradient(circle at 10% 10%, rgba(168, 85, 247, .2), transparent 34rem), radial-gradient(circle at 95% 35%, rgba(34, 211, 238, .12), transparent 30rem)
}

a {
    color: inherit
}

img {
    display: block;
    max-width: 100%
}

.skip,
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0)
}

.skip:focus {
    width: auto;
    height: auto;
    clip: auto;
    z-index: 999;
    background: var(--cyan);
    color: #001014;
    padding: .8rem
}

.topbar {
    height: 74px;
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(1rem, 3vw, 2.5rem);
    background: rgba(8, 2, 14, .9);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(16px)
}

.brand {
    display: flex;
    align-items: center;
    gap: .7rem;
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em
}

.brand img {
    width: 48px;
    height: 48px;
    object-fit: contain
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: .15rem
}

.desktop-nav a {
    padding: .55rem .62rem;
    text-decoration: none;
    color: var(--muted);
    font-size: .89rem;
    font-weight: 700;
    border-radius: 999px
}

.desktop-nav a:hover {
    color: #fff;
    background: rgba(255, 255, 255, .08)
}

.desktop-nav a[aria-current="page"] {
    color: #fff;
    background: rgba(34, 211, 238, .14);
    box-shadow: inset 0 0 0 1px rgba(34, 211, 238, .35)
}

.desktop-nav .nav-cta {
    color: #fff;
    border: 1px solid rgba(34, 211, 238, .5);
    padding: .55rem .9rem;
    margin-left: .3rem
}

.menu-button {
    display: none;
    width: 44px;
    height: 40px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: transparent;
    place-content: center;
    gap: 4px;
    cursor: pointer
}

.menu-button span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff
}

main {
    padding-top: 74px
}

.home-hero,
.page-hero {
    position: relative;
    min-height: calc(100vh - 74px);
    display: grid;
    place-items: center;
    overflow: hidden
}

.hero-bg,
.page-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.hero-overlay,
.page-hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(6, 2, 10, .92), rgba(6, 2, 10, .55) 58%, rgba(6, 2, 10, .75)), linear-gradient(0deg, #090411 0, transparent 35%)
}

.hero-copy,
.page-hero-copy {
    position: relative;
    z-index: 2;
    width: min(100%, var(--max));
    padding: 5rem 1rem;
    text-align: left
}

.hero-copy {
    max-width: 760px;
    margin-right: auto;
    margin-left: max(0px, calc((100vw - var(--max))/2))
}

.home-hero-classic {
    min-height: auto;
    padding: clamp(2.5rem, 5vw, 4.5rem) 1rem clamp(3rem, 6vw, 5.5rem);
    background:
        radial-gradient(circle at 18% 12%, rgba(217, 70, 239, .18), transparent 34%),
        radial-gradient(circle at 82% 88%, rgba(34, 211, 238, .13), transparent 36%),
        #07020d
}

.home-hero-classic .hero-copy {
    width: min(100%, 1080px);
    max-width: none;
    margin: 0 auto;
    padding: 0;
    text-align: center
}

.home-hero-classic .hero-logo {
    width: min(240px, 52vw);
    margin: .6rem auto
}

.home-hero-classic > .hero-copy > .eyebrow {
    font-size: clamp(1.05rem, 1.45vw, 1.3rem);
    line-height: 1.25
}

.home-hero-classic .lede {
    margin: .7rem auto 1.5rem
}

.home-hero-classic .actions {
    justify-content: center;
    margin-top: 1.5rem
}

.hero-quick-links {
    width: min(100%, 700px);
    margin: clamp(1.4rem, 3vw, 2.2rem) auto 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(.55rem, 1vw, .85rem)
}

.hero-quick-links a {
    min-height: 48px;
    padding: .5rem .75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    color: #fff;
    background: #123655;
    border: 2px solid rgba(34, 211, 238, .72);
    border-radius: 999px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .05);
    text-decoration: none;
    font-size: clamp(.9rem, 1vw, 1rem);
    font-weight: 900;
    line-height: 1;
    transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease
}

.hero-quick-links a:hover,
.hero-quick-links a:focus-visible {
    transform: translateY(-2px);
    border-color: var(--cyan);
    background: #17466d;
    box-shadow: 0 16px 34px rgba(0, 0, 0, .34), 0 0 22px rgba(34, 211, 238, .12)
}

.quick-link-icon {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round
}

.quick-link-facebook {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 24px;
    font-weight: 900;
    line-height: 1
}

.hero-video-wrap {
    width: min(100%, 854px);
    margin: 1.2rem auto 1rem;
    aspect-ratio: 16/9;
    padding: 0;
    border: 4px solid transparent;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cyan), var(--pink)) border-box;
    border-radius: calc(var(--radius) + 4px);
    box-shadow: 0 28px 75px rgba(0, 0, 0, .55)
}

.hero-video-wrap video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000;
    border-radius: var(--radius)
}

.hero-logo {
    width: min(390px, 75vw);
    filter: drop-shadow(0 0 28px rgba(217, 70, 239, .4));
    margin: .9rem 0
}

.eyebrow {
    margin: 0 0 .5rem;
    color: var(--cyan);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .13em;
    font-size: .9rem
}

.hero-kicker {
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    font-weight: 800;
    margin: .3rem 0;
    color: #fff
}

.lede {
    max-width: 760px;
    font-size: clamp(1.15rem, 2.2vw, 1.5rem);
    line-height: 1.5;
    color: var(--muted)
}

h1,
h2,
h3,
p {
    margin-top: 0
}

h1 {
    font-size: clamp(3rem, 7vw, 6.5rem);
    line-height: .95;
    letter-spacing: -.045em;
    max-width: 950px;
    margin-bottom: 1.2rem
}

h2 {
    font-size: clamp(2.1rem, 4.5vw, 4rem);
    line-height: 1.04;
    letter-spacing: -.035em;
    margin-bottom: 1rem
}

h3 {
    font-size: 1.45rem;
    line-height: 1.2
}

.actions {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    margin-top: 1.4rem
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: .8rem 1.2rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 850;
    border: 1px solid var(--line);
    transition: .2s
}

.button:hover {
    transform: translateY(-2px)
}

.primary {
    background: linear-gradient(135deg, #12395a, #28103b);
    border-color: rgba(34, 211, 238, .55);
    box-shadow: 0 0 24px rgba(34, 211, 238, .14)
}

.secondary {
    background: rgba(255, 255, 255, .07)
}

.fact-strip {
    max-width: var(--max);
    margin: -1.8rem auto 0;
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    background: rgba(20, 9, 31, .96);
    box-shadow: 0 22px 60px rgba(0, 0, 0, .4)
}

.fact-strip span {
    padding: 1.05rem;
    text-align: center;
    font-weight: 750;
    color: var(--muted);
    border-right: 1px solid var(--line)
}

.fact-strip span:last-child {
    border: 0
}

.section {
    width: min(100%, var(--max));
    margin: auto;
    padding: clamp(4rem, 8vw, 7rem) 1rem
}

.split {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: clamp(2rem, 6vw, 6rem)
}

.copy {
    font-size: 1.12rem;
    color: var(--muted)
}

.text-link {
    color: var(--cyan);
    font-weight: 850;
    text-decoration: none
}

.section-head {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem
}

.route-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem
}

.image-card {
    position: relative;
    min-height: 430px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    text-decoration: none;
    background: #000
}

.image-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .72;
    transition: .3s
}

.image-card:hover img {
    transform: scale(1.025);
    opacity: .82
}

.image-card>div {
    position: absolute;
    inset: auto 0 0;
    padding: 2rem;
    background: linear-gradient(0deg, rgba(5, 2, 8, .98), rgba(5, 2, 8, .1))
}

.image-card p {
    color: var(--muted);
    max-width: 520px
}

.image-card span {
    color: var(--cyan);
    font-weight: 850
}

.video {
    position: relative;
    width: min(960px, 100%);
    margin: auto;
    aspect-ratio: 16/9;
    border-radius: var(--radius);
    overflow: hidden;
    border: 4px solid transparent;
    background: linear-gradient(135deg, var(--cyan), var(--pink)) border-box;
    box-shadow: 0 28px 70px rgba(0, 0, 0, .4)
}

.video iframe {
    width: 100%;
    height: 100%;
    border: 0
}

.quotes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem
}

.quotes blockquote {
    margin: 0;
    padding: 1.5rem;
    background: rgba(21, 17, 32, .95);
    border: 1px solid var(--line);
    border-radius: var(--radius)
}

blockquote p {
    font-size: 1.05rem
}

blockquote cite {
    color: var(--cyan);
    font-style: normal;
    font-weight: 850
}

.upcoming {
    text-align: center
}

.mini-dates {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.4rem
}

.mini-dates>div {
    padding: 1.3rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
    display: grid;
    gap: .25rem
}

.mini-dates strong {
    color: var(--cyan);
    letter-spacing: .08em
}

.mini-dates small {
    color: var(--muted)
}

.page-hero {
    min-height: 68vh;
    place-items: end start
}

.page-hero-copy {
    margin: auto
}

.page-hero-shade {
    background: linear-gradient(90deg, rgba(6, 2, 10, .94), rgba(6, 2, 10, .45)), linear-gradient(0deg, #090411, transparent 55%)
}

.cta {
    width: min(calc(100% - 2rem), var(--max));
    margin: 2rem auto 6rem;
    padding: clamp(2rem, 6vw, 4rem);
    text-align: center;
    border: 1px solid rgba(34, 211, 238, .35);
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(34, 211, 238, .1), rgba(217, 70, 239, .13))
}

.cta p {
    color: var(--muted);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto
}

.cta .actions {
    justify-content: center
}

.wedding-services-section {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background: linear-gradient(90deg, rgba(9, 4, 17, .96), rgba(9, 4, 17, .78)), url("../imgs/wedding-card-web-optimised.jpg") center/cover no-repeat
}

.wedding-services-section .section-head,
.wedding-services-section .wedding-services {
    position: relative;
    z-index: 1
}

.wedding-services-section .tech-grid article {
    background: rgba(15, 8, 23, .82);
    backdrop-filter: blur(4px)
}

.wedding-services p {
    color: var(--muted);
    margin-bottom: 0
}

.route-contact {
    justify-content: center
}

@media(min-width:721px) {
    .page-hero-bg {
        object-position: center top
    }
}

.muted {
    color: var(--muted)
}

.center-actions {
    text-align: center;
    margin-top: 2rem
}

.dates-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem
}

.month h3 {
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 1rem;
    padding-bottom: .6rem;
    border-bottom: 1px solid rgba(34, 211, 238, .35)
}

.date-row {
    display: grid;
    grid-template-columns: 5rem 1fr auto;
    gap: 1rem;
    padding: .75rem .2rem;
    border-bottom: 1px solid var(--line);
    align-items: center
}

.date-row strong {
    color: var(--cyan);
    font-size: .85rem;
    letter-spacing: .07em
}

.date-row small {
    color: var(--muted)
}

.timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden
}

.timeline>div {
    padding: 1.5rem;
    border-right: 1px solid var(--line);
    background: var(--panel)
}

.timeline>div:last-child {
    border: 0
}

.timeline b {
    display: block;
    color: var(--pink);
    font-size: 1.5rem
}

.media-split {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center
}

.media-split img {
    width: 100%;
    border-radius: var(--radius);
    border: 1px solid var(--line)
}

.run-order {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem
}

.run-order>div {
    padding: 1.6rem;
    border-radius: var(--radius);
    background: var(--panel);
    border: 1px solid var(--line)
}

.run-order b {
    color: var(--cyan)
}

.tech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem
}

.tech-grid article {
    padding: 1.6rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel)
}

.tech-grid li,
.check-list li {
    margin: .55rem 0;
    color: var(--muted)
}

.wide-image {
    width: min(calc(100% - 2rem), 1400px);
    margin: 0 auto 5rem
}

.wide-image img {
    width: 100%;
    max-height: 700px;
    object-fit: cover;
    border-radius: var(--radius)
}

.option-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem
}

.option-grid.two {
    grid-template-columns: 1fr 1fr;
    max-width: 900px;
    margin: auto
}

.option-grid article {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--panel)
}

.option-grid article img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover
}

.option-grid article>div {
    padding: 1.4rem
}

.option-grid small {
    color: var(--cyan);
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .08em
}

.option-grid p {
    color: var(--muted)
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem
}

.contact-card {
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid rgba(34, 211, 238, .35);
    background: var(--panel);
    display: flex;
    flex-direction: column;
    gap: .8rem
}

.contact-card a {
    color: var(--cyan);
    font-size: 1.15rem;
    font-weight: 800;
    text-decoration: none
}

.contact-card hr {
    width: 100%;
    border: 0;
    border-top: 1px solid var(--line)
}

.contact-card p {
    margin: 0;
    color: var(--muted)
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    color: var(--cyan);
    text-decoration: none;
    white-space: nowrap;
    min-width: 0
}

.footer-links a span {
    display: inline-block;
    min-width: 1.15em;
    text-align: center
}

@media(max-width:1000px) {
    .desktop-nav {
        display: none;
        position: absolute;
        top: 74px;
        left: 0;
        right: 0;
        background: rgba(8, 2, 14, .98);
        padding: 1rem;
        flex-direction: column;
        border-bottom: 1px solid var(--line)
    }

    .desktop-nav.open {
        display: flex
    }

    .desktop-nav a {
        width: 100%;
        text-align: center;
        padding: .72rem
    }

    .menu-button {
        display: grid
    }

    .fact-strip {
        margin-top: 0;
        border-radius: 0;
        grid-template-columns: 1fr 1fr
    }

    .fact-strip span:nth-child(2) {
        border-right: 0
    }

    .fact-strip span:nth-child(-n+2) {
        border-bottom: 1px solid var(--line)
    }
}

@media(max-width:720px) {
    .brand img {
        width: 42px;
        height: 42px
    }

    .home-hero {
        min-height: 720px
    }

    .hero-copy {
        text-align: center;
        margin: 0 auto
    }

    .hero-logo {
        margin: 1rem auto
    }

    .actions {
        justify-content: center
    }

    .split,
    .route-grid,
    .quotes,
    .mini-dates,
    .dates-grid,
    .media-split,
    .run-order,
    .tech-grid,
    .option-grid,
    .option-grid.two,
    .contact-grid {
        grid-template-columns: 1fr
    }

    .image-card {
        min-height: 390px
    }

    .page-hero {
        min-height: 72vh
    }

    .page-hero-copy {
        text-align: center
    }

    .fact-strip {
        grid-template-columns: 1fr
    }

    .fact-strip span {
        border-right: 0;
        border-bottom: 1px solid var(--line) !important
    }

    .timeline {
        grid-template-columns: 1fr
    }

    .timeline>div {
        border-right: 0;
        border-bottom: 1px solid var(--line)
    }

    .date-row {
        grid-template-columns: 4.5rem 1fr
    }

    .date-row small {
        grid-column: 2
    }

}

footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.05rem;
    padding: 2rem max(1rem, calc((100vw - var(--max))/2));
    border-top: 1px solid var(--line);
    background: #050208;
    color: var(--muted);
    text-align: center;
}
footer > div:first-child { display: contents; }
footer > div:first-child p {
    order: 1;
    max-width: none;
    margin: 0;
}
.footer-links {
    order: 2;
    width: 100%;
    max-width: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: .65rem 1.35rem;
}
.footer-links a:first-child {
    grid-column: auto;
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}
footer img {
    order: 3;
    width: 118px;
    margin: .15rem auto 0;
}
.copyright {
    order: 4;
    width: 100%;
    margin: 0;
    padding-top: .9rem;
    border-top: 1px solid rgba(255, 255, 255, .08);
    font-size: .85rem;
}
.photo-credit {
    order: 5;
    width: 100%;
    margin: -.55rem 0 0;
    font-size: .76rem;
    opacity: .82;
}
.photo-credit a {
    text-decoration: none;
}
.photo-credit a:hover,
.photo-credit a:focus-visible {
    color: var(--cyan);
    text-decoration: underline;
}
@media (max-width: 720px) {
    footer {
        gap: .95rem;
        padding-top: 1.6rem;
        padding-bottom: 1.6rem;
    }
    .footer-links { gap: .6rem 1rem; }
}

/* Homepage visual rhythm */
.home-intro {
    padding: clamp(2.6rem, 5vw, 4.5rem) 1rem clamp(2rem, 4vw, 3.5rem);
    background:
        radial-gradient(circle at 20% 0, rgba(217, 70, 239, .12), transparent 36%),
        radial-gradient(circle at 80% 100%, rgba(34, 211, 238, .1), transparent 38%)
}

.home-intro .section-head {
    margin-bottom: 0
}

.home-intro h2 {
    font-size: clamp(2rem, 4.2vw, 3.8rem)
}

.live-showcase {
    padding: clamp(2.5rem, 5vw, 5rem) 0 0;
    overflow: hidden;
    background: #030105
}

.live-showcase .section-head {
    width: min(calc(100% - 2rem), 1050px);
    margin-bottom: clamp(1.6rem, 3vw, 2.8rem)
}

.about-show {
    width: min(calc(100% - 2rem), 1180px);
    margin: 0 auto clamp(2rem, 4vw, 3.5rem);
    display: grid;
    grid-template-columns: minmax(180px, .55fr) minmax(0, 1.45fr);
    gap: clamp(2rem, 6vw, 6rem);
    align-items: start
}

.about-show-heading .eyebrow {
    font-size: clamp(1.05rem, 1.5vw, 1.3rem)
}

.about-show-copy p {
    margin-bottom: 1rem;
    color: var(--muted);
    font-size: clamp(1.02rem, 1.35vw, 1.18rem);
    line-height: 1.65
}

.about-show-copy p:last-child {
    margin-bottom: 0
}

.video-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(.8rem, 1.35vw, 1.35rem);
    width: 100%
}

.video-story {
    position: relative;
    min-width: 0;
    overflow: hidden;
    background: #000;
    border: 1px solid rgba(214, 219, 229, .42);
    border-radius: 16px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .05), 0 16px 38px rgba(0, 0, 0, .3)
}

.video-story .video {
    width: 100%;
    border: 0;
    border-radius: 15px;
    box-shadow: none;
    opacity: .92
}

.video-story .video-caption {
    position: absolute;
    z-index: 2;
    inset: auto 0 0;
    padding: 3.5rem 1.3rem 1.2rem;
    pointer-events: none;
    background: linear-gradient(0deg, rgba(4, 1, 7, .96), transparent)
}

.video-caption small {
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: .09em;
    font-weight: 850
}

.video-caption h3 {
    margin: .25rem 0 0;
    font-size: clamp(1.25rem, 2vw, 1.8rem)
}

.ticket-feature {
    width: min(calc(100% - 2rem), 1320px);
    margin: clamp(4rem, 8vw, 8rem) auto;
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(420px, .85fr);
    align-items: stretch;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: linear-gradient(135deg, #160520, #07020d);
    box-shadow: 0 35px 100px rgba(0, 0, 0, .55)
}

.ticket-image {
    position: relative;
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #000;
    border: 1px solid rgba(214, 219, 229, .42);
    border-radius: 16px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .05), 0 16px 38px rgba(0, 0, 0, .3)
}

.ticket-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease, filter .45s ease
}

.ticket-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 60%, #160520), linear-gradient(0deg, rgba(4, 1, 7, .45), transparent 55%)
}

.ticket-image:hover img {
    transform: scale(1.025);
    filter: saturate(1.12)
}

.play-badge {
    position: absolute;
    z-index: 2;
    left: 1.5rem;
    bottom: 1.5rem;
    padding: .75rem 1rem;
    border-radius: 999px;
    color: #fff;
    font-weight: 850;
    background: rgba(4, 1, 7, .82);
    border: 1px solid rgba(255, 255, 255, .3);
    backdrop-filter: blur(8px)
}

.ticket-copy {
    grid-column: 2;
    grid-row: 1;
    position: relative;
    z-index: 3;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: stretch;
    padding: clamp(2rem, 4vw, 4rem);
    background: linear-gradient(135deg, rgba(22, 5, 32, .98), rgba(7, 2, 13, .98))
}

.ticket-date {
    color: #fff;
    font-weight: 800;
    letter-spacing: .03em
}

.ticket-copy h2 {
    font-size: clamp(2.25rem, 3.35vw, 3.6rem)
}

.ticket-copy > p:not(.eyebrow):not(.ticket-date):not(.ticket-meta) {
    color: var(--muted);
    font-size: 1.1rem
}

.ticket-meta {
    color: var(--cyan);
    font-weight: 850
}

.ticket-copy .actions {
    align-items: center
}

.proof-feature {
    width: min(calc(100% - 2rem), var(--max));
    margin: clamp(4rem, 8vw, 8rem) auto;
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    gap: clamp(2.5rem, 7vw, 7rem);
    align-items: center
}

.proof-lead blockquote {
    margin: 0
}

.proof-lead blockquote p {
    margin-bottom: 1.4rem;
    font-size: clamp(2rem, 4vw, 4.2rem);
    line-height: 1.08;
    letter-spacing: -.035em
}

.proof-lead cite {
    color: var(--cyan);
    font-style: normal;
    font-weight: 850
}

.proof-stats {
    display: grid;
    gap: 1.8rem
}

.proof-stats div {
    padding-bottom: 1.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, .16)
}

.proof-stats strong,
.proof-stats span {
    display: block
}

.proof-stats strong {
    color: #fff;
    font-size: clamp(1.4rem, 2.5vw, 2.35rem)
}

.proof-stats span {
    color: var(--cyan);
    margin-top: .25rem
}

.dancers-feature {
    width: 100%;
    padding: 0;
    grid-template-columns: 1.2fr .8fr;
    gap: 0;
    background: linear-gradient(135deg, #13051c, #07020c)
}

.dancers-feature img {
    height: min(75vw, 720px);
    min-height: 520px;
    border: 0;
    border-radius: 0;
    object-fit: cover;
    object-position: center top
}

.dancers-feature > div {
    align-self: center;
    padding: clamp(2.5rem, 7vw, 7rem)
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: #030105
}

.gallery-grid img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    filter: saturate(1.08) contrast(1.03)
}

.route-section {
    padding-top: clamp(4rem, 8vw, 8rem)
}

.route-section .image-card {
    border: 1px solid rgba(214, 219, 229, .42);
    border-radius: 18px;
    min-height: 500px
}

.route-section .image-card img {
    opacity: .82
}

.route-section .image-card > div {
    padding: clamp(1.5rem, 3vw, 2.5rem)
}

.addon-showcase {
    padding-top: clamp(4rem, 8vw, 7rem)
}

.addon-showcase .section-head {
    margin-bottom: 2rem
}

.addon-showcase .section-head .muted {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto
}

.addon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem
}

.addon-card {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    border: 1px solid rgba(214, 219, 229, .42);
    border-radius: 18px;
    background: #000;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 16px 38px rgba(0, 0, 0, .3)
}

.addon-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease, filter .35s ease
}

.addon-card:hover img {
    transform: scale(1.025);
    filter: saturate(1.1)
}

.addon-card > div {
    position: absolute;
    inset: auto 0 0;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    background: linear-gradient(0deg, rgba(5, 2, 8, .98), rgba(5, 2, 8, .08))
}

.addon-card small {
    color: var(--cyan);
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .09em
}

.addon-card h3 {
    margin: .3rem 0 .7rem;
    font-size: clamp(1.7rem, 3vw, 2.6rem)
}

.addon-card span {
    color: var(--cyan);
    font-weight: 850
}

.home-contact {
    margin-top: clamp(1rem, 3vw, 3rem);
    margin-bottom: clamp(3.5rem, 7vw, 6rem)
}

.home-contact > p:not(.eyebrow) {
    margin-bottom: .55rem
}

.home-contact .actions {
    align-items: center;
    justify-content: center;
    margin-top: 1.6rem
}

.home-contact .actions > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: .8rem 1.2rem;
    border: 1px solid rgba(34, 211, 238, .55);
    border-radius: 999px;
    background: linear-gradient(135deg, #12395a, #28103b);
    box-shadow: 0 0 24px rgba(34, 211, 238, .14);
    color: #fff;
    font-weight: 850;
    line-height: 1.2;
    text-decoration: none;
    transition: transform .2s ease
}

.home-contact .actions > a:hover,
.home-contact .actions > a:focus-visible {
    transform: translateY(-2px)
}

@media (max-width: 900px) {
    .about-show {
        grid-template-columns: 1fr;
        gap: .65rem
    }

    .hero-quick-links {
        grid-template-columns: 1fr 1fr
    }

    .video-strip {
        grid-template-columns: 1fr
    }

    .video-story .video {
        aspect-ratio: 16/8.7
    }

    .ticket-feature,
    .proof-feature,
    .dancers-feature {
        grid-template-columns: 1fr
    }

    .ticket-image {
        grid-column: 1;
        grid-row: auto;
        min-height: 0;
        aspect-ratio: 16/9
    }

    .ticket-copy {
        grid-column: 1;
        grid-row: auto;
        display: flex
    }

    .ticket-image::after {
        background: linear-gradient(0deg, #160520, transparent 38%)
    }

    .dancers-feature img {
        height: 78vw;
        min-height: 420px
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr
    }

    .addon-grid {
        grid-template-columns: 1fr
    }
}

@media (max-width: 600px) {
    .hero-quick-links {
        grid-template-columns: 1fr;
        gap: .75rem
    }

    .hero-quick-links a {
        min-height: 48px;
        font-size: 1rem
    }

    .home-intro {
        padding-left: 1.2rem;
        padding-right: 1.2rem
    }

    .video-story .video {
        aspect-ratio: 16/9
    }

    .ticket-feature {
        width: 100%;
        margin: 3.5rem 0
    }

    .ticket-image {
        min-height: 0;
        aspect-ratio: 16/9
    }

    .ticket-copy {
        padding: 2rem 1.25rem 2.5rem
    }

    .proof-feature {
        margin: 4rem auto
    }

    .proof-lead blockquote p {
        font-size: clamp(1.8rem, 9vw, 2.65rem)
    }

    .dancers-feature img {
        height: 112vw;
        min-height: 390px
    }

    .dancers-feature > div {
        padding: 2.5rem 1.25rem 3rem
    }

    .route-section .image-card {
        min-height: 430px
    }
}

/* Shared call-to-action styling
   Keep cards and ordinary links visually distinct; every true button uses the
   same graduated treatment as the Contact Us actions. */
.button,
.hero-quick-links a,
.home-contact .actions > a,
.desktop-nav .nav-cta,
button:not(.menu-button),
[role="button"]:not(.menu-button) {
    color: #fff;
    background: linear-gradient(135deg, #12395a 0%, #20254d 48%, #28103b 100%);
    border-color: rgba(34, 211, 238, .55);
    box-shadow: 0 0 24px rgba(34, 211, 238, .14), inset 0 1px 0 rgba(255, 255, 255, .06);
    transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease
}

.button:hover,
.button:focus-visible,
.hero-quick-links a:hover,
.hero-quick-links a:focus-visible,
.home-contact .actions > a:hover,
.home-contact .actions > a:focus-visible,
.desktop-nav .nav-cta:hover,
.desktop-nav .nav-cta:focus-visible,
button:not(.menu-button):hover,
button:not(.menu-button):focus-visible,
[role="button"]:not(.menu-button):hover,
[role="button"]:not(.menu-button):focus-visible {
    color: #fff;
    transform: translateY(-2px);
    border-color: var(--cyan);
    background: linear-gradient(135deg, #17466d 0%, #29275b 48%, #35154d 100%);
    box-shadow: 0 14px 32px rgba(0, 0, 0, .3), 0 0 24px rgba(34, 211, 238, .16)
}


/* Homepage consolidation: show options, combined dancer proof and enhanced contact */
.proof-dancers{display:grid;grid-template-columns:minmax(0,1.15fr) minmax(420px,.85fr);background:linear-gradient(135deg,#07020d 0%,#091827 100%);overflow:hidden}
.proof-dancers-image img{width:100%;height:100%;min-height:680px;object-fit:cover;object-position:center top;display:block}
.proof-dancers-copy{padding:clamp(2rem,5vw,5rem);display:flex;flex-direction:column;justify-content:center}
.proof-main-quote{margin:1rem 0 2rem}.proof-main-quote p{font-size:clamp(2rem,3.4vw,4rem);line-height:1.08;margin:0 0 1.25rem}.proof-main-quote cite{color:var(--cyan);font-weight:800;font-style:normal}
.proof-mini-quotes>div{padding:1.35rem 0;border-top:1px solid rgba(255,255,255,.16);display:grid;gap:.35rem}.proof-mini-quotes strong{font-size:clamp(1.25rem,2vw,2rem)}.proof-mini-quotes span{color:var(--cyan)}
.show-options{margin-top:clamp(3rem,6vw,6rem);scroll-margin-top:100px}.show-option-grid article{height:100%}.show-option-grid .text-link{display:inline-block;margin-top:1rem}.enhancement-block{margin-top:clamp(2.5rem,5vw,5rem)}.section-head.compact{margin-bottom:1.5rem}.addon-card p{margin:.75rem 0 0}
.enhanced-contact{text-align:left}.enhanced-contact>.section-head{text-align:center;max-width:850px;margin-left:auto;margin-right:auto}.enhanced-contact .contact-grid{margin-top:2rem}.enhanced-contact .contact-card .text-link{margin-top:1rem}
@media(max-width:900px){.proof-dancers{grid-template-columns:1fr}.proof-dancers-image img{min-height:0;max-height:760px}.proof-dancers-copy{padding:2rem 1.25rem 3rem}.proof-main-quote p{font-size:clamp(1.8rem,7vw,3rem)}}
