/* ===========================================================
   Greenstems Tours — design system
   Palette + type from the brand sheet; physical-media motifs
   (tickets, polaroid gallery stack, leaf borders) per dev spec §5.
   =========================================================== */

@font-face {
    font-family: 'Cabinet Grotesk';
    src: url('../fonts/CabinetGrotesk-Variable.ttf') format('truetype-variations');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mooli';
    src: url('../fonts/Mooli-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --olive: #4B5932;
    --lime: #B5CF5D;
    --orange: #FF6703;
    --sky: #A8C7E4;
    --brown: #753320;
    --ink: #283233;
    --cream: #FFFBF2;
    --cream-light: #FFFDFA;
    --font-display: 'Cabinet Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Mooli', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-accent: gelica, Georgia, serif;
    --wobble-freq: 335;
    --container: 1180px;
}


/* ---- custom cursor ---- */

.gs-cursor-active,
.gs-cursor-active * {
    cursor: none;
}

.gs-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
    margin: -9px 0 0 -9px;
    border-radius: 50%;
    background: var(--sky);
    box-shadow: 0 0 0 3px rgba(168, 199, 228, 0.35);
    pointer-events: none;
    z-index: 9999;
    transition: width 0.15s ease, height 0.15s ease, margin 0.15s ease, background 0.15s ease, opacity 0.2s ease;
}

.gs-cursor.is-active {
    width: 12px;
    height: 12px;
    margin: -6px 0 0 -6px;
    background: var(--orange);
}

.gs-cursor-trail {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    margin: -4px 0 0 -4px;
    border-radius: 50%;
    background: var(--sky);
    pointer-events: none;
    z-index: 9998;
    animation: gs-cursor-fade 0.6s ease-out forwards;
}

@keyframes gs-cursor-fade {
    from {
        opacity: 0.6;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0.2);
    }
}

@media (prefers-reduced-motion: reduce),
(pointer: coarse) {
    .gs-cursor,
    .gs-cursor-trail {
        display: none;
    }
}


/* ---- base ---- */

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--cream-light);
    color: var(--ink);
    font-size: 15px;
    line-height: 1.55;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    * {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

h1 {
    font-family: var(--font-display);
    font-weight: 900;
    line-height: 1.05;
    color: var(--olive);
    margin: 0 0 0.4em;
}

h2,
h3,
h4 {
    font-family: var(--font-display);
    font-weight: 900;
    line-height: 1.05;
    color: var(--olive);
    margin: 0 0 0.2em;
}

a {
    color: var(--olive);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--sky);
    outline-offset: 2px;
}

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

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
}


/* ---- rough-edge buttons ---- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    position: relative;
    font-family: var(--font-accent);
    font-style: italic;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.65em 2em;
    border: none;
    background: var(--olive);
    color: var(--cream);
    text-decoration: none;
    cursor: pointer;
    border-radius: 50px;
    /* clip-path: polygon(1% 8%, 6% 1%, 96% 4%, 99% 13%, 98% 88%, 94% 99%, 4% 96%, 1% 90%); */
    transition: transform 0.15s ease;
}

.btn:hover {
    background: var(--orange);
    transform: translateY(-2px) rotate(-0.4deg);
    transition: 0.5s;
}

.btn:hover::after {
    transition: 0.5s;
}

.btn--outline {
    background: transparent;
    color: var(--olive);
    box-shadow: inset 0 0 0 2px var(--olive);
}

.btn--sm {
    padding: 0.55em 1.5em;
    font-size: 0.9rem;
}

.btn--quiet {
    clip-path: none;
    background: none;
    color: var(--lime);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    padding: 0;
}

.btn--quiet:hover {
    color: var(--orange);
    text-decoration: underline;
    transition: 0.5s
}

.btn--quiet-prefix {
    color: var(--lime);
    font-weight: 500;
}


/* Stronger CTA variant — dark green, underline appears on hover (no color
   shift), for links that need more weight than .btn--quiet. */

.cta-link {
    display: inline-block;
    position: relative;
    font-weight: 700;
    font-size: 1rem;
    color: var(--olive);
    text-decoration: none;
}

.cta-link::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -3px;
    height: 2px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.cta-link:hover::after {
    transform: scaleX(1);
}


/* ---- header / nav ---- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    background: transparent;
    transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-solid {
    background: var(--cream-light);
    box-shadow: 0 2px 10px rgba(40, 50, 51, 0.08);
}

.site-header .nav-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 40px;
    padding: 14px 30px;
    margin: 0;
}

.nav-side {
    display: flex;
    align-items: center;
    gap: 24px;
    min-width: 0;
}

.nav-side--left {
    justify-content: flex-end;
}

.nav-side--right {
    justify-content: space-between;
}

.account-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--olive);
    color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    text-decoration: none;
}

.site-logo {
    flex-shrink: 0;
    justify-self: center;
}

.site-logo img {
    height: 50px;
    width: auto;
}

.primary-nav {
    display: flex;
    gap: 35px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.primary-nav a {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.85rem;
    text-decoration: none;
    color: var(--ink);
}

.site-header.is-solid .primary-nav a,
.site-header.is-solid .site-title-fallback {
    color: var(--olive);
}

.hamburger {
    display: none;
}

.mobile-find-bar {
    display: none;
}

.primary-nav.nav--mobile {
    display: none;
}

@media (max-width: 860px) {
    .nav-side--left {
        justify-content: flex-start;
    }
    .nav-side--right {
        justify-content: flex-end;
    }
    .primary-nav.nav--left,
    .primary-nav.nav--right {
        display: none;
    }
    .primary-nav.nav--mobile.is-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--cream);
        padding: 16px 24px;
        gap: 14px;
        box-shadow: 0 6px 12px rgba(40, 50, 51, 0.1);
    }
    .hamburger {
        display: inline-flex;
        background: none;
        border: none;
        cursor: pointer;
        flex-direction: column;
        gap: 4px;
        padding: 6px;
    }
    .hamburger span {
        width: 22px;
        height: 2px;
        background: var(--ink);
        display: block;
    }
    .mobile-find-bar {
        display: block;
        position: sticky;
        top: 0;
        z-index: 99;
        background: var(--olive);
        color: var(--cream);
        text-align: center;
        padding: 10px;
        font-family: var(--font-display);
        font-weight: 700;
        text-decoration: none;
    }
}


/* ---- hero + sightings strip: shared fold ---- */

.hero-fold {
    position: relative;
    overflow: hidden;
    background: var(--cream-light);
}


/* ---- hero ---- */

.hero {
    position: relative;
    padding: 90px 24px 60px;
    text-align: center;
    background: transparent;
}

.hero h1 {
    font-size: clamp(2.6rem, 8vw, 6.2rem);
    color: var(--orange);
    text-transform: none;
    max-width: 16ch;
    margin: 0 auto 0em;
    text-shadow: rgba(255, 104, 3, 0.1) 0px 0px 10px;
}

.hero .strapline {
    font-family: var(--font-accent);
    font-style: italic;
    font-weight: 500;
    font-size: 1.25rem;
    color: var(--olive);
    margin: 0 auto 0.7em;
}

.hero .intro {
    max-width: 80ch;
    margin: 0 auto 1.4em;
    color: var(--ink);
}

.hero .cta-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.leaf-deco {
    position: absolute;
    bottom: 0px;
    width: 700px;
    max-width: 65vw;
    height: auto;
    z-index: 0;
    pointer-events: none;
}

.leaf-deco--left {
    left: 0px;
}

.leaf-deco--right {
    right: 0px;
    transform: scaleX(-1);
}

@media (max-width: 700px) {
    .leaf-deco {
        width: 200px;
        bottom: -14px;
    }
}


/* ---- TRIAL: leaf sway — delete this whole block to switch it off ----
   Pushed further outside the viewport edge (left/right offset below) so
   the sway doesn't swing the artwork's own edge into view; the two sides
   run different durations/delays/keyframe shapes so they don't mirror
   each other in sync. */

@keyframes gs-leaf-sway {
    0% {
        transform: rotate(-2deg);
    }
    45% {
        transform: rotate(2.2deg);
    }
    100% {
        transform: rotate(-2deg);
    }
}

@keyframes gs-leaf-sway-flip {
    0% {
        transform: scaleX(-1) rotate(-2.4deg);
    }
    55% {
        transform: scaleX(-1) rotate(1.6deg);
    }
    100% {
        transform: scaleX(-1) rotate(-2.4deg);
    }
}

.leaf-deco--left {
    left: -40px;
    transform-origin: bottom center;
    animation: gs-leaf-sway 7.5s ease-in-out infinite;
}

.leaf-deco--right {
    right: -40px;
    transform-origin: bottom center;
    animation: gs-leaf-sway-flip 8.8s ease-in-out infinite;
    animation-delay: -2.3s;
}

@media (max-width: 700px) {
    .leaf-deco--left {
        left: -20px;
    }
    .leaf-deco--right {
        right: -20px;
    }
}


/* ---- END TRIAL: leaf sway ---- */


/* ---- leaf-deco, CTA variant — a separate copy of the hero's leaf
   artwork rules so the final-CTA leaves can be sized, positioned,
   coloured, and animated independently of the hero's without the two
   fighting over the same classes. Edit freely; nothing here touches
   .leaf-deco above. ---- */

.leaf-deco-cta {
    position: absolute;
    bottom: -25px;
    width: 700px;
    max-width: 65vw;
    height: auto;
    z-index: 1;
    opacity: 1;
    pointer-events: none;
}

.leaf-deco-cta--left {
    left: -40px;
    transform-origin: bottom center;
    animation: gs-leaf-sway-cta 7.5s ease-in-out infinite;
}

.leaf-deco-cta--right {
    right: -40px;
    transform: scaleX(-1);
    transform-origin: bottom center;
    animation: gs-leaf-sway-cta-flip 8.8s ease-in-out infinite;
    animation-delay: -2.3s;
}

@keyframes gs-leaf-sway-cta {
    0% {
        transform: rotate(-2deg);
    }
    45% {
        transform: rotate(2.2deg);
    }
    100% {
        transform: rotate(-2deg);
    }
}

@keyframes gs-leaf-sway-cta-flip {
    0% {
        transform: scaleX(-1) rotate(-2.4deg);
    }
    55% {
        transform: scaleX(-1) rotate(1.6deg);
    }
    100% {
        transform: scaleX(-1) rotate(-2.4deg);
    }
}

@media (max-width: 700px) {
    .leaf-deco-cta {
        width: 200px;
        bottom: -14px;
    }
    .leaf-deco-cta--left {
        left: -20px;
    }
    .leaf-deco-cta--right {
        right: -20px;
    }
}


/* ---- leaf-deco, CTA solid duplicate — a second, swaying copy of the
   CTA leaf per side at full (fill) opacity, sitting behind the
   .leaf-deco-cta layer above. Its own class, so it can be
   repositioned, recoloured, or resized without touching the other
   layer, but it sways too rather than sitting flat. ---- */

.leaf-deco-cta-fill {
    position: absolute;
    bottom: -25px;
    width: 700px;
    max-width: 65vw;
    height: auto;
    z-index: 1;
    opacity: 1;
    pointer-events: none;
}

.leaf-deco-cta-fill--left {
    left: -40px;
    transform-origin: bottom center;
    animation: gs-leaf-sway-cta 7.5s ease-in-out infinite;
}

.leaf-deco-cta-fill--right {
    right: -40px;
    transform: scaleX(-1);
    transform-origin: bottom center;
    animation: gs-leaf-sway-cta-flip 8.8s ease-in-out infinite;
    animation-delay: -2.3s;
}

@media (max-width: 700px) {
    .leaf-deco-cta-fill {
        width: 200px;
        bottom: -14px;
    }
    .leaf-deco-cta-fill--left {
        left: -20px;
    }
    .leaf-deco-cta-fill--right {
        right: -20px;
    }
}


/* ---- recent sightings strip: slow auto-scrolling carousel ---- */

.sightings-strip {
    position: relative;
    margin-top: -1px;
    overflow: hidden;
}

.sightings-strip .strip-track {
    display: flex;
    width: max-content;
    animation: gs-marquee 100s linear infinite;
}

.sightings-strip:hover .strip-track,
.sightings-strip:focus-within .strip-track {}

.sightings-strip .strip-row {
    display: flex;
    gap: 16px;
    height: 260px;
    padding-right: 16px;
}

.sightings-strip .sighting {
    flex: 0 0 400px;
    width: 400px;
    position: relative;
    overflow: hidden;
    background: var(--sky);
    border-radius: 20px;
}

.sightings-strip .sighting img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sightings-strip .sighting figcaption {
    position: absolute;
    left: 11px;
    top: 10px;
    background: rgba(255, 251, 242, 0.9);
    color: var(--ink);
    font-size: 0.6rem;
    padding: 3px 11px;
    border-radius: 20px;
}

.sightings-strip .fade {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 140px;
    background: linear-gradient(to bottom, rgba(255, 253, 250, 0) 0%, var(--cream-light) 100%);
    pointer-events: none;
}

@keyframes gs-marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}


/* ---- section headings ---- */

.section {
    background: linear-gradient(180deg, var(--cream-light), var(--cream));
    padding: 64px 24px;
}

.section--tint {
    background: var(--cream);
}

.section--compact {
    padding: 36px 24px;
}

.section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 36px;
}

.section-head h2 {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
}

.section-head p {
    color: var(--ink);
}

.section-foot {
    text-align: center;
    margin-top: 32px;
}


/* ---- what's coming up: ticket motif ---- */

.tickets-grid {
    display: flex;
    flex-direction: column;
    gap: 22px;
    max-width: var(--container);
    margin: 0 auto;
}

.ticket {
    position: relative;
    background: var(--cream-light);
    border-radius: 20px;
}

.ticket--featured {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
}

.ticket--featured .ticket-photo-wrap {
    position: relative;
}

.ticket--featured .ticket-photo-inner {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid #D5D5D5;
    height: 100%;
}

.ticket--featured .ticket-photo,
.ticket--featured img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 220px;
}

.ticket-date-badge {
    position: absolute;
    bottom: 26px;
    right: 26px;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--cream);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1;
    box-shadow: 0 6px 14px rgba(40, 50, 51, 0.25);
    z-index: 2;
    transform: rotate(-17deg);
}

.ticket-date-badge__day {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 2rem;
}

.ticket-date-badge__sub {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 0.70rem;
    margin-top: 1px;
    text-transform: lowercase;
}

.ticket-info {
    padding: 24px 26px;
    position: relative;
}

.ticket--featured .ticket-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 2px dashed rgba(40, 50, 51, 0.25);
    border-right: 1px solid #D5D5D5;
    border-top: 1px solid #D5D5D5;
    border-bottom: 1px solid #D5D5D5;
    border-radius: 20px;
}

.ticket--featured .ticket-info::before,
.ticket--featured .ticket-info::after {
    content: '';
    position: absolute;
    left: -30px;
    width: 60px;
    height: 30px;
    background: var(--cream-light);
}

.ticket--featured .ticket-info::before {
    top: -0.5px;
    border-radius: 0 0 30px 30px;
    border-bottom: 1px solid #D5D5D5;
    border-left: 1px solid #D5D5D5;
    border-right: 1px solid #D5D5D5;
}

.ticket--featured .ticket-info::after {
    bottom: -1px;
    border-radius: 30px 30px 0 0;
    border-top: 1px solid #D5D5D5;
    border-right: 1px solid #D5D5D5;
    border-left: 1px solid #D5D5D5;
}

.ticket-meta {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}

.ticket-info h3 {
    font-size: 2.3rem;
    margin-bottom: 0.25em;
}

.ticket-info .what-to-expect {
    font-family: var(--font-accent);
    font-style: italic;
    color: var(--olive);
    margin-bottom: 0.6em;
}

.ticket-info .desc {
    font-size: 1rem;
    margin-bottom: 1em;
}

.ticket-readmore {
    color: var(--lime);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    white-space: nowrap;
}

.ticket-readmore:hover {
    color: var(--orange);
    text-decoration: underline;
}

.ticket-foot {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    padding-top: 14px;
}

.ticket-foot .location {
    font-size: 0.8rem;
    color: var(--ink);
    opacity: 0.75;
}

.ticket-price {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.9rem;
    color: var(--orange);
}

.ticket-price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--ink);
}

.ticket-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border-radius: 25px;
    z-index: 2;
}

.ticket-badge--new {
    background: var(--cream-light);
    color: var(--olive);
}

.ticket-badge--filling {
    background: var(--orange);
    color: var(--cream);
}

.tickets-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.ticket--small {
    display: flex;
    flex-direction: column;
    border: 1px solid #D5D5D5;
    color: var(--ink);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ticket--small:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 22px rgba(40, 50, 51, 0.14);
}

.ticket--small .ticket-photo-wrap {
    height: 130px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    position: relative;
}

.ticket--small .ticket-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ticket--small .ticket-info {
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.ticket--small .ticket-foot {
    margin-top: auto;
    align-items: center;
    margin-left: -18px;
    margin-right: -18px;
    padding-left: 18px;
    padding-right: 18px;
    border-top: 2px dashed rgba(40, 50, 51, 0.25);
}

.ticket--small .ticket-info h3 {
    font-size: 1.5rem;
    line-height: 1.1;
}

.ticket--small .desc {
    font-size: 0.82rem;
}

.ticket--small .ticket-price {
    font-size: 1.35rem;
}

.ticket--promo {
    position: relative;
    overflow: hidden;
    background-color: var(--olive);
    color: var(--cream);
    border-color: var(--olive);
}

.ticket--promo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(180deg, rgba(181, 207, 93, 0.3), transparent);
    pointer-events: none;
}

.ticket--promo::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 251, 242, 0.24) 1px, transparent 1px);
    background-size: 22px 22px;
    -webkit-mask-image: radial-gradient(circle at center, black 30%, transparent 78%);
    mask-image: radial-gradient(circle at center, black 30%, transparent 78%);
    pointer-events: none;
}

.ticket--promo .ticket-info {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-top: none;
    padding: 30px 22px;
}

.ticket--promo .ticket-info h3 {
    color: var(--cream);
    font-size: 2rem;
    line-height: 1.1;
}

.ticket--promo .desc {
    color: var(--cream);
    opacity: 0.85;
}

.ticket-promo-tags {
    position: absolute;
    top: 18px;
    left: 18px;
    right: 18px;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px;
}

.ticket-promo-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: lowercase;
    letter-spacing: 0.02em;
    color: var(--cream-light);
    background: transparent;
    border: 1px solid rgba(255, 251, 242, 0.35);
    border-radius: 25px;
    padding: 4px 12px;
}

.ticket-promo-tag::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: currentColor;
    flex-shrink: 0;
}

.ticket--promo .btn {
    background: var(--orange);
    margin-top: 0.4em;
}

.ticket--promo .btn:hover {
    background: var(--lime);
    color: var(--ink);
}

@media (max-width: 1000px) {
    .tickets-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 760px) {
    .ticket--featured {
        grid-template-columns: 1fr;
    }
    .ticket--featured .ticket-photo-inner {
        border-radius: 20px 20px 0 0;
    }
    .ticket--featured .ticket-info {
        border-left: none;
        border-top: 2px dashed rgba(40, 50, 51, 0.25);
        border-radius: 0 0 20px 20px;
    }
    .ticket--featured .ticket-info::before,
    .ticket--featured .ticket-info::after {
        content: none;
    }
    .tickets-row {
        grid-template-columns: 1fr;
    }
}


/* ---- home ed + private: tabbed file ---- */

.tab-file {
    max-width: var(--container);
    margin: 0 auto;
}

.tab-file__tabs {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 6px;
    padding: 0;
}

.tab-file__radio {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.tab-file__tab {
    display: inline-block;
    cursor: pointer;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1rem;
    padding: 14px 30px;
    background: var(--cream-light);
    color: var(--olive);
    border-radius: 14px 14px 0 0;
    border: 1px solid rgba(40, 50, 51, 0.12);
    border-bottom: none;
    opacity: 0.75;
    transform: translateY(3px);
    transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.tab-file__radio:focus-visible+.tab-file__tab {
    outline: 3px solid var(--sky);
    outline-offset: 2px;
}


/* ---- colour-coded tabs: each tab keeps its own colour always, active
   or not — only opacity and the pushed-down/pulled-up position change
   to show which is active. Tabs are now a dynamic, editor-configurable
   list (add/remove, any number, any colour/photo/copy per tab), so the
   actual per-tab colour + active/visible rules are generated inline by
   blocks/tabs/render.php for each block instance instead of being
   hardcoded here for a fixed 3 tabs. ---- */

.tab-file__body {
    position: relative;
    z-index: 2;
    background: var(--cream-light);
    border: 1px solid #D5D5D5;
    border-radius: 0 20px 20px 20px;
    overflow: hidden;
}

.tab-file__panel {
    display: none;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
}

.tab-file__photo-wrap {
    position: relative;
    display: flex;
    align-items: center;
    padding: 40px;
}

.tab-file__photo {
    display: block;
    width: 100%;
    max-height: 440px;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid #D5D5D5;
}

.tab-file__badge {
    position: absolute;
    top: 48px;
    left: 48px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--lime);
    color: var(--ink);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 6px 12px;
    border-radius: 25px;
}

.tab-file__content {
    padding: 40px;
    color: var(--ink);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tab-file__content h3 {
    font-size: 1.8rem;
}

.tab-file__content p {
    margin-bottom: 1em;
}

.tab-file__content .btn {
    align-self: flex-start;
    margin-top: 0.4em;
}

@media (max-width: 700px) {
    /* tabs are now editor-addable, so the row can grow past a fixed
       3 tabs — let it wrap instead of overflowing the container */
    .tab-file__tabs {
        flex-wrap: wrap;
    }
    .tab-file__tab {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
    .tab-file__panel {
        grid-template-columns: 1fr;
        min-height: 0;
    }
    .tab-file__photo-wrap {
        padding: 20px;
    }
    .tab-file__photo {
        max-height: 220px;
    }
    .tab-file__badge {
        top: 32px;
        left: 32px;
    }
}


/* ---- come as you are: ticker tape ---- */

.ticker-strip {
    position: relative;
    overflow: hidden;
    background: var(--sky);
    padding: 12px 0;
}

.ticker-strip__track {
    display: flex;
    width: max-content;
    animation: gs-marquee 90s linear infinite;
}

.ticker-strip:hover .ticker-strip__track,
.ticker-strip:focus-within .ticker-strip__track {
    animation-play-state: paused;
}

.ticker-strip__group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.ticker-strip__item {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.25rem;
    text-transform: lowercase;
    letter-spacing: 0.03em;
    color: var(--ink);
    text-decoration: none;
    padding: 0 18px;
    transition: color 0.25s ease;
}

.ticker-strip__item:hover {
    color: var(--cream-light);
    text-decoration: none;
}

.ticker-strip__item--accent {
    font-family: var(--font-accent);
    font-style: italic;
    font-weight: 500;
    text-transform: none;
    letter-spacing: normal;
}

.ticker-strip__dot {
    display: inline-flex;
    align-items: center;
    color: var(--ink);
    opacity: 0.6;
}


/* ---- gallery teaser: editorial masthead ---- */

.editorial-split {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 28px;
    max-width: var(--container);
    margin: 0 auto 36px;
}

.editorial-feature {
    background: var(--cream-light);
    border: 1px solid #D5D5D5;
    border-radius: 20px;
    overflow: hidden;
}

.editorial-feature__photo {
    height: 240px;
    background-color: var(--sky);
    background-size: cover;
    background-position: center;
}

.editorial-feature__body {
    padding: 26px 28px;
}

.editorial-feature__tag {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--orange);
}

.editorial-feature__body h3 {
    font-size: 1.6rem;
    margin: 0.35em 0 0.3em;
}

.editorial-feature__body h3 a {
    color: inherit;
    text-decoration: none;
}

.editorial-feature__body h3 a:hover {
    text-decoration: underline;
}

.editorial-feature__body p {
    color: var(--ink);
    opacity: 0.8;
    margin-bottom: 1em;
}

.editorial-secondary {
    display: flex;
    flex-direction: column;
}

.editorial-label {
    font-family: var(--font-display);
    font-weight: 900;
    color: var(--olive);
    font-size: 1.5rem;
    margin: 0 0 14px;
}

.editorial-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.editorial-links a {
    color: var(--olive);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
}

.editorial-links a:hover {
    text-decoration: underline;
    color: var(--orange);
}

.editorial-secondary__cta {
    margin-top: auto;
    padding-top: 20px;
}

.editorial-label--gallery {
    max-width: var(--container);
    margin: 0 auto 14px;
}

.editorial-strip {
    display: flex;
    gap: 14px;
    max-width: var(--container);
    margin: 0 auto 8px;
}

.editorial-strip__photo {
    position: relative;
    flex: 1;
    aspect-ratio: 3 / 4;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #D5D5D5;
    background: var(--sky);
    transform: rotate(calc(-2deg + var(--i) * 1.3deg));
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.editorial-strip__photo:hover {
    transform: rotate(0deg) translateY(-4px);
    box-shadow: 0 10px 20px rgba(40, 50, 51, 0.18);
    z-index: 2;
}

.editorial-strip__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ---- credit + location, revealed on hover over a bottom-up gradient ---- */
.editorial-strip__credit {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 26px 10px 10px;
    background: linear-gradient(to top, rgba(40, 50, 51, 0.85), transparent);
    color: var(--cream-light);
    font-size: 0.7rem;
    font-weight: 600;
    line-height: 1.3;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: none;
}

.editorial-strip__photo:hover .editorial-strip__credit,
.editorial-strip__photo:focus-within .editorial-strip__credit {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 760px) {
    .editorial-split {
        grid-template-columns: 1fr;
    }
    .editorial-strip {
        flex-wrap: wrap;
    }
    .editorial-strip__photo {
        flex: 0 0 calc(50% - 7px);
    }
}


/* ---- final CTA: leaf fold fading into the footer ---- */

.final-cta {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 110px 24px 150px;
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream) 60%, var(--sky) 100%);
}

.final-cta__inner {
    position: relative;
    z-index: 2;
    max-width: 620px;
    margin: 0 auto;
}

.final-cta h2 {
    color: var(--orange);
    font-size: clamp(2.2rem, 5vw, 4.1rem);
    margin-bottom: 0.35em;
}

.final-cta p {
    font-size: 0.85rem;
    color: var(--ink);
    max-width: 61ch;
    margin: 0 auto 1.6em;
}

.final-cta .btn {
    background: var(--orange);
}

.final-cta .btn:hover {
    background: var(--olive);
}


/* ---- particles: small flecks of light drifting up from behind the
   leaves and fading out as they rise. Sit at z-index: 0, below the
   leaf artwork's z-index: 1 above, so they read as coming from behind
   it rather than in front. ---- */

.final-cta__particles {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.final-cta__particles span {
    position: absolute;
    bottom: 40px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--sky);
    opacity: 0;
    animation: gs-particle-float 8s ease-in infinite;
}

.final-cta__particles span:nth-child(1) {
    left: 8%;
    animation-delay: 0s;
}

.final-cta__particles span:nth-child(2) {
    left: 18%;
    width: 4px;
    height: 4px;
    animation-delay: 1.4s;
}

.final-cta__particles span:nth-child(3) {
    left: 30%;
    animation-delay: 2.8s;
}

.final-cta__particles span:nth-child(4) {
    left: 42%;
    width: 5px;
    height: 5px;
    animation-delay: 0.7s;
}

.final-cta__particles span:nth-child(5) {
    left: 58%;
    animation-delay: 3.6s;
}

.final-cta__particles span:nth-child(6) {
    left: 70%;
    width: 4px;
    height: 4px;
    animation-delay: 2.1s;
}

.final-cta__particles span:nth-child(7) {
    left: 82%;
    animation-delay: 0.3s;
}

.final-cta__particles span:nth-child(8) {
    left: 92%;
    width: 5px;
    height: 5px;
    animation-delay: 3.1s;
}

@keyframes gs-particle-float {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    12% {
        opacity: 0.85;
    }
    80% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-280px) translateX(12px);
        opacity: 0;
    }
}

@media (max-width: 700px) {
    .final-cta {
        padding: 80px 24px 120px;
    }
}


/* ---- footer ---- */

.site-footer {
    background: var(--olive);
    color: var(--cream);
    padding: 64px 24px 28px;
}

.footer-newsletter {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    max-width: var(--container);
    margin: 0 auto;
    background: var(--lime);
    color: var(--ink);
    border-radius: 16px;
    padding: 28px 32px;
}

.footer-newsletter__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-newsletter__copy h3 {
    color: var(--ink);
    font-size: 1.3rem;
}

.footer-newsletter__copy p {
    color: var(--ink);
    opacity: 0.75;
    font-size: 0.9rem;
}


/* ---- physical media: tear-off perforation between the copy and the
   sign-up form. An absolutely-positioned line (not a child border) so
   it spans the card's full height — including the card's own padding —
   regardless of how tall the copy/form content happens to be, and sits
   at a fixed two-thirds across rather than wherever the flex content
   naturally splits. ---- */

.footer-newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 66.666%;
    border-left: 2px dashed rgba(40, 50, 51, 0.3);
    pointer-events: none;
}

.newsletter-form {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    flex-shrink: 0;
}


/* ---- input + button joined into one cohesive pill ---- */

.newsletter-fieldgroup {
    display: flex;
    border-radius: 50px;
    overflow: hidden;
    background: #fff;
}

.newsletter-form input[type="email"] {
    min-width: 220px;
    padding: 12px 18px;
    border: none;
    background: transparent;
    color: var(--ink);
    font-family: var(--font-body);
}

.newsletter-form .btn {
    border-radius: 0;
    background: var(--orange);
}

.newsletter-form .btn:hover {
    background: var(--olive);
    color: var(--cream);
    transform: none;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: var(--container);
    margin: 44px auto;
}

.footer-columns h4 {
    color: var(--lime);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1em;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 251, 242, 0.1);
    color: var(--cream);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer-social__link:hover {
    background: var(--lime);
    color: var(--ink);
    transform: translateY(-2px);
}

.footer-logo {
    margin-bottom: 0.9em;
}

.footer-logo img {
    height: 30px;
    width: auto;
}

.footer-columns__about {
    color: var(--cream);
    opacity: 0.8;
    font-size: 0.88rem;
}

.footer-columns ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-columns li {
    margin-bottom: 10px;
}

.footer-columns a {
    color: var(--cream);
    text-decoration: none;
    font-size: 0.88rem;
}

.footer-columns a:hover {
    text-decoration: underline;
}

.footer-bottom {
    max-width: var(--container);
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 251, 242, 0.15);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.78rem;
    color: rgba(255, 251, 242, 0.75);
}

@media (max-width: 760px) {
    .footer-newsletter {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-newsletter::before {
        display: none;
    }
    .footer-newsletter__copy {
        width: 100%;
        padding-bottom: 20px;
        border-bottom: 2px dashed rgba(40, 50, 51, 0.3);
    }
    .newsletter-form {
        width: 100%;
        padding-top: 20px;
    }
    .newsletter-fieldgroup {
        width: 100%;
    }
    .newsletter-form input[type="email"] {
        flex: 1;
        min-width: 160px;
    }
    .footer-columns {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 500px) {
    .footer-columns {
        grid-template-columns: 1fr;
    }
}


/* ---- floating action button ---- */

.fab-button {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(255, 104, 3, 0.4) 0px 6px 9px;
    z-index: 90;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.fab-button:hover {
    transform: scale(1.06) rotate(-4deg);
}

.fab-icon {
    width: 33px;
    height: 33px;
    background-color: var(--cream);
    -webkit-mask-image: url('../img/fab-icon.png');
    mask-image: url('../img/fab-icon.png');
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
}

@media (max-width: 600px) {
    .fab-button {
        width: 50px;
        height: 50px;
        right: 16px;
        bottom: 16px;
    }
    .fab-icon {
        width: 26px;
        height: 26px;
    }
}