:root {
    --teal: #35c1bb;
    --teal-dark: #18aaa5;
    --brown: #3d2115;
    --white: #ffffff;
    --black: #050505;
    --cream: #f7f1e8;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--teal);
    color: var(--brown);
    font-family: Arial, Helvetica, sans-serif;
}

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

a {
    color: inherit;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin: 0 auto;
}


/* ---------------- HEADER ---------------- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;

    background: rgba(53, 193, 187, 0.97);

    border-bottom: 1px solid rgba(255,255,255,.25);

    backdrop-filter: blur(8px);

    transition: all .25s ease;
}

.header-inner {
    min-height: 110px;
    display: flex;
    align-items: center;
    gap: 34px;
}

/* Plain text logo */

.header-logo {
    width: auto;
    display: inline-block;

    font-family: "Bebas Neue", sans-serif;
    font-size: 72px;
    font-weight: 400;
    line-height: .85;

    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;

    transition: font-size .25s ease;
}

.site-header.scrolled .header-logo {
    font-size: 46px;
}


.main-nav {
    margin-left: auto;

    display: flex;

    gap: 28px;
}

.main-nav a {
    font-size: 14px;

    font-weight: 900;

    letter-spacing: .06em;

    text-decoration: none;

    text-transform: uppercase;
}

.main-nav a:hover {
    opacity: .65;
}


.header-ticket-btn,
.primary-btn,
.ticket-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    text-decoration: none;

    text-transform: uppercase;

    font-weight: 900;

    letter-spacing: .035em;
}


.header-ticket-btn {

    min-height: 46px;

    padding: 0 20px;

    background: var(--brown);

    color: var(--white);

    border-radius: 6px;
}


/* Shrink header after scrolling */

.header-logo {
    font-size: 72px;
    transition: font-size .25s ease;
}

.site-header.scrolled .header-logo {
    font-size: 65px;
}



/* ---------------- HERO ---------------- */

.hero {

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(90deg, rgba(0,0,0,.045), transparent 35%),
        var(--teal);
}


.hero::after {

    content: "";

    position: absolute;

    left: -8%;
    right: -8%;

    bottom: -170px;

    height: 370px;

    background: rgba(0,0,0,.04);

    transform: rotate(-5deg);
}


.hero-inner {

    position: relative;

    z-index: 1;

    min-height: 760px;

    display: grid;

    grid-template-columns: 54% 46%;

    align-items: stretch;
}


.hero-copy {

    position: relative;

    z-index: 3;

    padding: 82px 0 90px;
}


/* Show name */

.hero-copy h1 {

    margin: 0;

    color: var(--brown);

    font-family: "Bebas Neue", sans-serif;

    font-size: clamp(5rem, 9vw, 9rem);

    font-weight: 400;

    line-height: .82;

    letter-spacing: -.02em;

    text-transform: uppercase;
}


/* TOUR 2027 */

.tour-title {

    margin-top: 16px;

    color: var(--white);

    font-family: "Bebas Neue", sans-serif;

    font-size: clamp(2.4rem, 5vw, 4.7rem);

    font-weight: 400;

    line-height: .95;

    text-transform: uppercase;
}


.hero-intro {

    max-width: 500px;

    margin: 30px 0 26px;

    color: var(--white);

    font-size: 18px;

    line-height: 1.55;

    font-weight: 700;
}


.primary-btn {

    min-height: 52px;

    padding: 0 24px;

    background: var(--white);

    color: var(--brown);

    border-radius: 6px;

    transition:
        transform .18s ease,
        background .18s ease;
}


.primary-btn:hover,
.ticket-btn:hover {

    transform: translateY(-2px);
}


.primary-btn.dark {

    background: var(--teal);

    color: var(--white);
}


.hero-visual {

    position: relative;

    align-self: stretch;

    min-height: 760px;

    display: flex;

    align-items: flex-end;

    justify-content: center;

    padding: 30px 20px 0;

    overflow: visible;
}


.paddy-image {

    position: relative;

    display: block;

    width: auto;

    height: auto;

    max-width: 100%;

    max-height: 730px;

    object-fit: contain;

    object-position: bottom center;

    filter:
        drop-shadow(0 20px 24px rgba(0,0,0,.14));
}


.nigel-image {

    position: absolute;

    right: 0;

    bottom: 34px;

    width: 175px;

    transform: rotate(-3deg);

    z-index: 3;
}



/* ---------------- TOUR DATES ---------------- */

.tour-section {

    padding: 88px 0 100px;

    background: var(--cream);
}


.section-title {

    display: flex;

    align-items: end;

    justify-content: space-between;

    gap: 30px;

    padding-bottom: 28px;

    border-bottom: 4px solid var(--brown);
}


.section-title p {

    margin: 0 0 8px;

    color: var(--teal-dark);

    font-weight: 900;

    letter-spacing: .08em;

    text-transform: uppercase;
}


.section-title h2 {

    margin: 0;

    font-family: "Bebas Neue", sans-serif;

    font-size: clamp(3.6rem, 8vw, 7rem);

    font-weight: 400;

    line-height: .82;

    letter-spacing: -.02em;

    text-transform: uppercase;
}


.tour-list {

    border-bottom: 4px solid var(--brown);
}


.tour-row {

    display: grid;

    grid-template-columns: 220px 1fr 160px;

    gap: 24px;

    align-items: center;

    padding: 22px 0;

    border-bottom:
        1px solid rgba(61,33,21,.2);
}


.tour-row:last-child {

    border-bottom: 0;
}


.tour-date {

    font-size: 25px;

    line-height: 1;

    font-weight: 1000;

    text-transform: uppercase;
}


.tour-location strong {

    display: block;

    margin-bottom: 4px;

    font-size: 26px;

    line-height: 1;

    text-transform: uppercase;
}


.tour-location span {

    display: block;

    font-size: 14px;

    font-weight: 800;

    letter-spacing: .04em;

    text-transform: uppercase;
}


.ticket-btn {

    min-height: 48px;

    padding: 0 18px;

    background: var(--brown);

    color: var(--white);

    border-radius: 6px;

    font-size: 13px;

    transition:
        transform .18s ease,
        background .18s ease;
}


.ticket-btn:hover {

    background: var(--teal-dark);
}



/* ---------------- ABOUT ---------------- */

.about-section {

    padding: 90px 0;

    background: var(--brown);

    color: var(--white);
}


.about-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: start;
}


.eyebrow {

    margin: 0 0 14px;

    color: var(--teal);

    font-weight: 900;

    letter-spacing: .08em;

    text-transform: uppercase;
}


.about-section h2 {

    margin: 0;

    font-family: "Bebas Neue", sans-serif;

    font-size: clamp(3rem, 6vw, 3.8rem);

    font-weight: 400;

    line-height: .92;

    letter-spacing: -.02em;

    text-transform: uppercase;
}


.about-copy {

    font-size: 18px;

    line-height: 1.7;
}


.about-copy p:first-child {

    margin-top: 0;
}



/* ---------------- CREDITS ---------------- */

.credits-strip {

    padding: 25px 0;

    background: var(--black);
}


.credits-strip img {

    width: 100%;

    max-height: 105px;

    object-fit: contain;

    object-position: center;
}



/* ---------------- FOOTER ---------------- */

.site-footer {

    background: var(--black);

    color: rgba(255,255,255,.72);

    border-top:
        1px solid rgba(255,255,255,.12);
}


.footer-inner {

    min-height: 82px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    font-size: 14px;
}


.footer-inner a {

    color: var(--white);

    text-decoration: none;
}



/* ---------------- TABLET ---------------- */

@media (max-width: 900px) {

    .main-nav {
        display: none;
    }


    .hero-inner {

        min-height: 0;

        grid-template-columns: 1fr;
    }


    .hero-copy {

        padding: 70px 0 0;
    }


    .hero-visual {

        min-height: 600px;

        margin-top: 0;

        padding-top: 20px;
    }


    .paddy-image {

        width: auto;

        max-width: 100%;

        max-height: 580px;
    }


    .nigel-image {

        right: 30px;
    }


    .tour-row {

        grid-template-columns:
            180px 1fr 150px;
    }


    .about-grid {

        grid-template-columns: 1fr;

        gap: 40px;
    }
}



/* ---------------- MOBILE ---------------- */

@media (max-width: 620px) {


    .container {

        width:
            min(calc(100% - 28px), var(--container));
    }



    /* HEADER */

    .header-ticket-btn {

        display: none;
    }


    .header-inner {

        min-height: 70px;

        justify-content: center;
    }


    .header-logo {

        width: auto;

        margin: 0 auto;

        font-family: "Bebas Neue", sans-serif;

        font-size: 48px;

        font-weight: 400;

        line-height: .85;
    }


    .site-header.scrolled .header-logo {

        font-size: 40px;
    }


    .site-header.scrolled .header-inner {

        min-height: 62px;
    }



    /* HERO */

    .hero {

        overflow: hidden;
    }


    .hero-inner {

        display: block;

        min-height: 0;
    }


    .hero-copy {

        padding: 38px 0 6px;

        text-align: center;
    }


    .hero-copy h1 {

        margin: 0;

        font-family: "Bebas Neue", sans-serif;

        /* Same size as mobile logo */

        font-size: 48px;

        font-weight: 400;

        line-height: .86;

        letter-spacing: -.02em;
    }


    .tour-title {

        margin-top: 12px;

        font-size: 2.3rem;

        line-height: 1;
    }


    .hero-intro {

        max-width: 340px;

        margin: 22px auto 24px;

        font-size: 16px;

        line-height: 1.5;
    }


    .hero-copy .primary-btn {

        margin-bottom: 10px;
    }


    .hero-visual {

        position: relative;

        min-height: 0;

        padding: 42px 0 0;

        display: flex;

        justify-content: center;

        align-items: flex-end;

        overflow: visible;
    }


    .paddy-image {

        position: relative;

        left: auto;

        right: auto;

        bottom: auto;

        width: 84%;

        max-width: 330px;

        max-height: none;

        margin: 0 auto;

        object-fit: contain;

        object-position: bottom center;
    }


    .nigel-image {

        position: absolute;

        right: 4px;

        bottom: 18px;

        width: 105px;

        z-index: 4;
    }



    /* TOUR */

    .tour-section {

        padding: 64px 0 74px;
    }


    .section-title {

        display: block;
    }


    .section-title p {

        margin-bottom: 10px;
    }


    .section-title h2 {

        font-size: 4rem;

        line-height: .88;
    }


    .tour-row {

        grid-template-columns: 1fr auto;

        gap: 10px 14px;

        padding: 20px 0;
    }


    .tour-date {

        grid-column: 1;

        font-size: 20px;
    }


    .tour-location {

        grid-column: 1;
    }


    .tour-location strong {

        font-size: 22px;
    }


    .tour-location span {

        font-size: 13px;
    }


    .ticket-btn {

        grid-column: 2;

        grid-row: 1 / span 2;

        min-width: 112px;

        align-self: stretch;

        padding: 0 12px;

        text-align: center;
    }



    /* ABOUT */

    .about-section {

        padding: 65px 0;
    }


    .about-grid {

        gap: 30px;
    }


    .about-section h2 {

        font-size: 3.2rem;
    }


    .about-copy {

        font-size: 16px;
    }



    /* CREDITS */

    .credits-strip {

        padding: 20px 0;
    }



    /* FOOTER */

    .footer-inner {

        padding: 22px 0;

        flex-direction: column;

        align-items: flex-start;

        justify-content: center;

        gap: 10px;
    }
}



/* ---------------- HERO LOAD ANIMATIONS ---------------- */

.hero-copy h1,
.tour-title,
.hero-intro,
.hero-copy .primary-btn {

    opacity: 0;

    transform: translateY(24px);

    animation:
        heroFadeUp .7s ease forwards;
}


.hero-copy h1 {

    animation-delay: .15s;
}


.tour-title {

    animation-delay: .3s;
}


.hero-intro {

    animation-delay: .45s;
}


.hero-copy .primary-btn {

    animation-delay: .6s;
}


.paddy-image {

    opacity: 0;

    transform: translateX(40px);

    animation:
        paddyIn .9s ease .3s forwards;
}


.nigel-image {

    opacity: 0;

    transform:
        scale(.85)
        rotate(-3deg);

    animation:
        nigelPop .5s ease .9s forwards;
}



@keyframes heroFadeUp {

    from {

        opacity: 0;

        transform:
            translateY(24px);
    }

    to {

        opacity: 1;

        transform:
            translateY(0);
    }
}



@keyframes paddyIn {

    from {

        opacity: 0;

        transform:
            translateX(40px);
    }

    to {

        opacity: 1;

        transform:
            translateX(0);
    }
}



@keyframes nigelPop {

    from {

        opacity: 0;

        transform:
            scale(.85)
            rotate(-3deg);
    }

    to {

        opacity: 1;

        transform:
            scale(1)
            rotate(-3deg);
    }
}



/* ---------------- REDUCED MOTION ---------------- */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {

        animation-duration: .01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: .01ms !important;
    }
}

        /* ---------------- COUNTDOWN ---------------- */

.ticket-countdown {
    margin-top: 28px;
}

.countdown-label {
    margin-bottom: 10px;

    color: var(--white);

    font-size: 18px;
    font-weight: 900;

    letter-spacing: .08em;
    text-transform: uppercase;
}

#countdown {
    display: flex;
    gap: 10px;
}

.countdown-item {
    min-width: 74px;

    padding: 10px 12px 8px;

    background: var(--white);

    color: var(--brown);

    border-radius: 6px;

    text-align: center;
}

.countdown-item span {
    display: block;

    font-family: "Bebas Neue", sans-serif;

    font-size: 34px;
    line-height: 1;

    font-weight: 400;
}

.countdown-item small {
    display: block;

    margin-top: 3px;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: .08em;

    text-transform: uppercase;
}

@media (max-width: 620px) {

    .ticket-countdown {
        margin-top: 24px;
    }

    #countdown {
        justify-content: center;
        gap: 7px;
    }

    .countdown-item {
        min-width: 64px;
        padding: 9px 8px 7px;
    }

    .countdown-item span {
        font-size: 30px;
    }

    .countdown-item small {
        font-size: 9px;
    }
}