/* =========================================================
   SOUND OF RIVIERA — 2026
   Shared stylesheet (home + line up + fullscreen menu)
   ========================================================= */

@font-face {
    font-family: "Marvin Visions";
    src: url("FONT/MarvinVisions-Bold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --orange: #ff3c00;
    --orange-deep: #d63100;
    --cream: #ecebe5;
    --ink: #15110d;
    --white: #ffffff;

    --display: "Marvin Visions", "Helvetica Neue", Arial, sans-serif;

    --pad-x: clamp(20px, 4.4vw, 56px);
    --header-h: clamp(64px, 8vh, 92px);
    --sparkle: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 0c2.6 27.8 19.6 47.4 47.4 50C69.6 52.6 52.6 72.2 50 100c-2.6-27.8-19.6-47.4-47.4-50C30.4 47.4 47.4 27.8 50 0z'/%3E%3C/svg%3E");
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--display);
    font-weight: 700;
    color: var(--ink);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
}

body.menu-open {
    overflow: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
    color: inherit;
    background: none;
    border: 0;
    cursor: pointer;
}

ul {
    list-style: none;
}

:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 4px;
}

/* small generic sparkle element */
.sparkle {
    display: inline-block;
    flex: 0 0 auto;
    background-color: currentColor;
    -webkit-mask: var(--sparkle) center / contain no-repeat;
    mask: var(--sparkle) center / contain no-repeat;
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
    position: relative;
    z-index: 60;
    display: flex;
    align-items: center;
    gap: clamp(16px, 3vw, 40px);
    padding: 14px var(--pad-x);
    min-height: var(--header-h);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
}

/* home: header floats over the hero video */
.site-header--overlay {
    position: absolute;
    inset: 0 0 auto 0;
}

.site-header__logo {
    flex: 0 0 auto;
    line-height: 0;
}

.site-header__logo svg {
    width: clamp(96px, 11vw, 148px);
    height: auto;
}

.site-header__date {
    flex: 1 1 auto;
    text-align: center;
    font-size: clamp(0.7rem, 0.95vw, 0.9rem);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.site-header__date sup {
    font-size: 0.58em;
    vertical-align: super;
}

.site-header__actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: clamp(14px, 2.6vw, 34px);
}

.link-tickets {
    font-size: clamp(0.84rem, 1.05vw, 1.05rem);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding-bottom: 3px;
    border-bottom: 2px solid currentColor;
    transition: opacity 0.2s ease;
}

.link-tickets:hover {
    opacity: 0.65;
}

.menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-right: -8px;
    transition: transform 0.3s ease;
}

.menu-toggle img {
    width: 30px;
    height: 30px;
}

.menu-toggle:hover {
    transform: rotate(18deg) scale(1.08);
}

/* =========================================================
   HERO (home)
   ========================================================= */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100svh;
    min-height: 540px;
    overflow: hidden;
    background: #050505;
}

.hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
}

.hero__scrim {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(to bottom,
            rgba(0, 0, 0, 0.34),
            rgba(0, 0, 0, 0) 18%,
            rgba(0, 0, 0, 0) 76%,
            rgba(0, 0, 0, 0.28));
}

.hero__scroll {
    position: absolute;
    left: 50%;
    bottom: clamp(14px, 3vh, 26px);
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--white);
    animation: floaty 2.6s ease-in-out infinite;
}

.hero__scroll .sparkle {
    width: 22px;
    height: 22px;
    animation: spin 9s linear infinite;
}

.hero__scroll::after {
    content: "";
    width: 1px;
    height: 30px;
    background: linear-gradient(to bottom, currentColor, transparent);
}

@keyframes floaty {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 9px); }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* =========================================================
   CREAM CANVAS (home statement + footer share one texture)
   ========================================================= */
.cream-canvas {
    flex: 1;
    display: flex;
    flex-direction: column;
    background-color: var(--cream);
    background-image: url("ELEMENTI/sfondo-grana-bianco.png");
    background-position: top center;
    background-size: 100% auto;
    background-repeat: repeat-y;
}

/* =========================================================
   STATEMENT SECTION
   ========================================================= */
.statement {
    /* the section height is derived from the star artwork so it never gets
       clipped — the star image is ~1011×1062 (h ≈ w × 1.05) */
    --star-w: min(94vw, 940px);
    --star-h: calc(var(--star-w) * 1.06);
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(64px, 10vh, 150px) var(--pad-x);
    min-height: calc(var(--star-h) + clamp(70px, 12vh, 170px));
    overflow: hidden;
    isolation: isolate;
}

.statement__star {
    position: absolute;
    top: 50%;
    left: 50%;
    width: var(--star-w);
    height: auto;
    z-index: -1;
    pointer-events: none;
    transform: translate(-50%, -50%);
}

.statement__text {
    text-align: center;
    color: var(--orange);
    text-transform: uppercase;
    font-size: clamp(1.55rem, 5vw, 3.35rem);
    line-height: 1.07;
    letter-spacing: 0.004em;
    max-width: min(960px, 92vw);
}

.statement__text span {
    display: block;
}

/* scroll-reveal (armed by JS only — degrades to fully visible without JS) */
.statement.reveal .statement__text,
.statement.reveal .statement__star {
    opacity: 0;
    transition: opacity 1s ease, transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.statement.reveal .statement__text {
    transform: translateY(30px);
}

.statement.reveal .statement__star {
    transform: translate(-50%, -50%) scale(0.86) rotate(-9deg);
}

.statement.reveal.is-visible .statement__text {
    opacity: 1;
    transform: none;
}

.statement.reveal.is-visible .statement__star {
    opacity: 1;
    transform: translate(-50%, -50%);
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
    flex: 0 0 auto;
    display: grid;
    gap: clamp(20px, 4vh, 34px);
    padding: clamp(26px, 5vh, 50px) var(--pad-x) clamp(16px, 3vh, 26px);
}

.site-footer__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-nav {
    display: flex;
    align-items: center;
    gap: clamp(14px, 2vw, 26px);
    font-size: clamp(0.95rem, 1.5vw, 1.35rem);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-nav a {
    transition: opacity 0.2s ease;
}

.footer-nav a:hover {
    opacity: 0.62;
}

.footer-nav__line {
    width: clamp(40px, 8vw, 96px);
    height: 2px;
    background: currentColor;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-social a {
    display: inline-flex;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-social a:hover {
    transform: translateY(-2px);
    opacity: 0.8;
}

.footer-social img {
    width: 26px;
    height: 26px;
}

.site-footer__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: clamp(0.6rem, 0.85vw, 0.74rem);
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.site-footer__meta a:hover {
    opacity: 0.62;
}

/* footer colour variants */
.site-footer--cream {
    color: var(--orange);
}

.site-footer--orange {
    color: var(--white);
}

/* =========================================================
   LINE UP PAGE
   ========================================================= */
body.page-lineup {
    background-color: var(--orange);
    background-image: url("ELEMENTI/sfondo-grana-arancione.png");
    background-position: top center;
    background-size: 100% auto;
    background-repeat: repeat-y;
    color: var(--white);
}

body.page-lineup .site-header {
    border-bottom-color: rgba(255, 255, 255, 0.45);
}

.lineup {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(40px, 8vh, 96px) var(--pad-x);
    overflow: hidden;
    isolation: isolate;
}

/* faint sunburst rays behind the names */
.lineup::before {
    content: "";
    position: absolute;
    top: 46%;
    left: 50%;
    width: 220vmax;
    height: 220vmax;
    transform: translate(-50%, -50%);
    z-index: -1;
    pointer-events: none;
    background: repeating-conic-gradient(from 0deg,
            rgba(255, 255, 255, 0.055) 0deg 5deg,
            rgba(255, 255, 255, 0) 5deg 16deg);
    -webkit-mask: radial-gradient(circle, #000 0%, #000 36%, transparent 72%);
    mask: radial-gradient(circle, #000 0%, #000 36%, transparent 72%);
    animation: spin 140s linear infinite;
}

.lineup__list {
    text-align: center;
    text-transform: uppercase;
    font-size: clamp(1.35rem, 4.6vw, 2.7rem);
    line-height: 1.16;
    letter-spacing: 0.01em;
    display: grid;
    gap: clamp(2px, 0.4vh, 8px);
}

.lineup__line {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.32em 0.55em;
}

.lineup__line--headliner {
    font-size: clamp(2.2rem, 7vw, 4.6rem);
    line-height: 1.05;
    margin-bottom: clamp(2px, 0.4vh, 8px);
}

.lineup__line--headliner + .lineup__line:not(.lineup__line--headliner) {
    margin-top: clamp(10px, 2vh, 28px);
}

.lineup__line--label {
    font-family: "Arial Rounded MT Bold", "Arial Rounded MT", ui-rounded, sans-serif;
    font-size: clamp(0.7rem, 2vw, 1rem);
    letter-spacing: 0.18em;
    opacity: 0.75;
    margin-bottom: clamp(2px, 0.6vh, 10px);
}

.lineup__dash {
    opacity: 0.6;
}

.lineup__line .sparkle {
    width: 0.5em;
    height: 0.5em;
    opacity: 0.92;
}

.lineup__line a {
    transition: opacity 0.2s ease;
}

.lineup__line a:hover {
    opacity: 0.7;
}

.lineup__list.reveal .lineup__line {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.lineup__list.reveal.is-visible .lineup__line {
    opacity: 1;
    transform: none;
}

.lineup__list.reveal.is-visible .lineup__line:nth-child(1)  { transition-delay: 0.02s; }
.lineup__list.reveal.is-visible .lineup__line:nth-child(2)  { transition-delay: 0.08s; }
.lineup__list.reveal.is-visible .lineup__line:nth-child(3)  { transition-delay: 0.14s; }
.lineup__list.reveal.is-visible .lineup__line:nth-child(4)  { transition-delay: 0.20s; }
.lineup__list.reveal.is-visible .lineup__line:nth-child(5)  { transition-delay: 0.26s; }
.lineup__list.reveal.is-visible .lineup__line:nth-child(6)  { transition-delay: 0.32s; }
.lineup__list.reveal.is-visible .lineup__line:nth-child(7)  { transition-delay: 0.38s; }
.lineup__list.reveal.is-visible .lineup__line:nth-child(8)  { transition-delay: 0.44s; }
.lineup__list.reveal.is-visible .lineup__line:nth-child(9)  { transition-delay: 0.50s; }
.lineup__list.reveal.is-visible .lineup__line:nth-child(10) { transition-delay: 0.56s; }
.lineup__list.reveal.is-visible .lineup__line:nth-child(11) { transition-delay: 0.62s; }
.lineup__list.reveal.is-visible .lineup__line:nth-child(12) { transition-delay: 0.68s; }

.footer-ticketsword {
    font-size: clamp(1.1rem, 2vw, 1.6rem);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: opacity 0.2s ease;
}

.footer-ticketsword:hover {
    opacity: 0.65;
}

/* Line up — temporary "coming soon" state */
.lineup__poster {
    display: block;
    max-width: min(480px, 90vw);
    max-height: 80vh;
    width: auto;
    height: auto;
    object-fit: contain;
}

.lineup__soon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(14px, 2.4vh, 26px);
    color: var(--white);
    text-align: center;
    max-width: min(680px, 100%);
}

.lineup__soon-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: clamp(10px, 1.2vw, 16px);
    font-family: var(--display);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: clamp(0.88rem, 1.5vw, 1.15rem);
    line-height: 1;
}

.lineup__soon-eyebrow .sparkle {
    width: 0.72em;
    height: 0.72em;
    animation: spin 14s linear infinite;
}

.lineup__soon-title {
    font-family: var(--display);
    font-weight: 700;
    text-transform: uppercase;
    font-size: clamp(2.3rem, 8.6vw, 5rem);
    line-height: 0.96;
    letter-spacing: 0.005em;
}

.lineup__soon-sub {
    margin-top: 2px;
    font-family: var(--display);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: clamp(0.78rem, 1.05vw, 0.95rem);
    line-height: 1.5;
    opacity: 0.86;
    max-width: 38ch;
}

/* =========================================================
   LEGAL PAGE (privacy / policy)
   ========================================================= */
body.page-legal {
    background-color: var(--cream);
    background-image: url("ELEMENTI/sfondo-grana-bianco.png");
    background-position: top center;
    background-size: 100% auto;
    background-repeat: repeat-y;
    color: var(--ink);
}

/* header variant for light backgrounds */
.site-header--dark {
    color: var(--orange);
    border-bottom-color: rgba(21, 17, 13, 0.18);
}

.legal {
    flex: 1;
    display: flex;
    justify-content: center;
    padding: clamp(48px, 9vh, 110px) var(--pad-x) clamp(40px, 7vh, 80px);
}

.legal__inner {
    width: min(760px, 100%);
}

.legal__title {
    font-family: var(--display);
    text-transform: uppercase;
    color: var(--orange);
    font-size: clamp(2rem, 5.6vw, 3.4rem);
    line-height: 1.04;
    letter-spacing: 0.01em;
}

.legal__updated {
    margin-top: 12px;
    font-family: var(--display);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.78rem;
    color: var(--orange);
    opacity: 0.85;
}

.legal__body {
    margin-top: clamp(28px, 4vh, 46px);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: clamp(0.96rem, 1.05vw, 1.05rem);
    line-height: 1.65;
    color: var(--ink);
}

.legal__body h2 {
    font-family: var(--display);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--orange);
    font-size: clamp(1.15rem, 2.1vw, 1.5rem);
    letter-spacing: 0.02em;
    line-height: 1.1;
    margin: clamp(34px, 5.5vh, 52px) 0 12px;
}

.legal__body h2:first-child {
    margin-top: 0;
}

.legal__body p {
    margin: 0 0 14px;
}

.legal__body ul {
    margin: 0 0 16px;
    padding-left: 22px;
    list-style: disc;
}

.legal__body li {
    margin-bottom: 7px;
}

.legal__body li::marker {
    color: var(--orange);
}

.legal__body a {
    color: var(--orange);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: opacity 0.2s ease;
}

.legal__body a:hover {
    opacity: 0.7;
}

.legal__body strong {
    font-weight: 700;
}

.legal__body hr {
    border: 0;
    border-top: 1px solid rgba(21, 17, 13, 0.18);
    margin: clamp(30px, 5vh, 48px) 0;
}

/* =========================================================
   FULLSCREEN MENU
   ========================================================= */
.site-menu {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    padding:
        max(var(--pad-x), env(safe-area-inset-top))
        max(var(--pad-x), env(safe-area-inset-right))
        max(var(--pad-x), env(safe-area-inset-bottom))
        max(var(--pad-x), env(safe-area-inset-left));
    color: var(--white);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.site-menu[hidden] {
    display: none;
}

.site-menu.is-open {
    opacity: 1;
}

.site-menu__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image: url("ELEMENTI/sfondo%20menu.png");
    background-size: cover;
    background-position: center;
    transform: scale(1.08);
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-menu.is-open .site-menu__bg {
    transform: scale(1);
}

.site-menu__close {
    position: absolute;
    top: max(var(--pad-x), env(safe-area-inset-top));
    right: max(var(--pad-x), env(safe-area-inset-right));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: var(--white);
    transition: transform 0.25s ease, opacity 0.2s ease;
}

.site-menu__close:hover {
    transform: rotate(90deg);
    opacity: 0.8;
}

.site-menu__close svg {
    width: 26px;
    height: 26px;
}

.site-menu__nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 3vw, 40px);
    padding: 0 clamp(0px, 2vw, 30px);
}

.site-menu__link {
    flex: 0 0 auto;
    font-size: clamp(2.2rem, 6.4vw, 4.4rem);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1;
    transition: transform 0.3s ease, opacity 0.3s ease, color 0.25s ease;
}

.site-menu__link:hover {
    transform: scale(1.04);
}

.site-menu__line {
    flex: 1 1 auto;
    height: 2px;
    max-width: 360px;
    background: currentColor;
}

.site-menu__star {
    flex: 0 0 auto;
    width: clamp(30px, 4.4vw, 56px);
    height: clamp(30px, 4.4vw, 56px);
    animation: spin 13s linear infinite;
}

.site-menu__social {
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 16px;
}

.site-menu__social a {
    display: inline-flex;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-menu__social a:hover {
    transform: translateY(-2px);
    opacity: 0.85;
}

.site-menu__social img {
    width: 30px;
    height: 30px;
}

/* staggered entrance of menu items */
.site-menu .site-menu__close,
.site-menu .site-menu__link,
.site-menu .site-menu__line,
.site-menu .site-menu__star,
.site-menu .site-menu__social {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-menu.is-open .site-menu__close { opacity: 1; transform: none; transition-delay: 0.05s; }
.site-menu.is-open .site-menu__link:first-of-type { opacity: 1; transform: none; transition-delay: 0.12s; }
.site-menu.is-open .site-menu__line { opacity: 1; transform: none; transition-delay: 0.18s; }
.site-menu.is-open .site-menu__star { opacity: 1; transform: none; transition-delay: 0.22s; }
.site-menu.is-open .site-menu__link:last-of-type { opacity: 1; transform: none; transition-delay: 0.28s; }
.site-menu.is-open .site-menu__social { opacity: 1; transform: none; transition-delay: 0.34s; }

/* =========================================================
   TICKETS — COMING SOON MODAL
   ========================================================= */
body.menu-open,
body.modal-open {
    overflow: hidden;
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(14px, 5vw, 40px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal[hidden] {
    display: none;
}

.modal.is-open {
    opacity: 1;
}

.modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 7, 4, 0.62);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
}

.modal__card {
    position: relative;
    width: min(480px, 100%);
    max-height: calc(100dvh - 28px);
    overflow-y: auto;
    color: var(--ink);
    background-color: var(--cream);
    background-image: url("ELEMENTI/sfondo-grana-bianco.png");
    background-position: top center;
    background-size: cover;
    border-radius: 22px;
    padding: clamp(26px, 5.5vw, 40px);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
    transform: translateY(20px) scale(0.97);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.modal.is-open .modal__card {
    transform: none;
}

.modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    color: var(--ink);
    border-radius: 999px;
    transition: background 0.2s ease, transform 0.25s ease;
}

.modal__close:hover {
    background: rgba(21, 17, 13, 0.09);
    transform: rotate(90deg);
}

.modal__close svg {
    width: 19px;
    height: 19px;
}

.modal__eyebrow {
    font-family: var(--display);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.72rem;
    color: var(--orange);
}

.modal__title {
    margin-top: 6px;
    font-family: var(--display);
    text-transform: uppercase;
    color: var(--orange);
    font-size: clamp(1.9rem, 6vw, 2.6rem);
    line-height: 1;
    letter-spacing: 0.01em;
}

.modal__lead {
    margin-top: 12px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--ink);
}

.ticket-form {
    margin-top: 22px;
    display: grid;
    gap: 12px;
}

.ticket-form__field {
    display: grid;
    gap: 6px;
}

.ticket-form__field label {
    font-family: var(--display);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.72rem;
    color: var(--ink);
}

.ticket-form__field input {
    width: 100%;
    min-height: 50px;
    border: 1px solid rgba(21, 17, 13, 0.22);
    border-radius: 12px;
    padding: 0 14px;
    background: rgba(255, 255, 255, 0.62);
    color: var(--ink);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.ticket-form__field input::placeholder {
    color: rgba(21, 17, 13, 0.42);
}

.ticket-form__field input:focus {
    border-color: var(--orange);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255, 60, 0, 0.16);
}

.ticket-form__submit {
    margin-top: 6px;
    min-height: 54px;
    border-radius: 999px;
    background: var(--orange);
    color: #fff;
    font-family: var(--display);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.95rem;
    transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.ticket-form__submit:hover {
    transform: translateY(-1px);
    background: var(--orange-deep);
}

.ticket-form__submit:disabled {
    opacity: 0.6;
    cursor: wait;
    transform: none;
}

.ticket-form__feedback {
    min-height: 18px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 0.88rem;
    line-height: 1.4;
    color: rgba(21, 17, 13, 0.7);
}

.ticket-form__feedback.is-success {
    color: #1c7a2e;
}

.ticket-form__feedback.is-error {
    color: #b3261e;
}

.modal__note {
    margin-top: 14px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 0.74rem;
    line-height: 1.5;
    color: rgba(21, 17, 13, 0.6);
}

.modal__note a {
    color: var(--orange);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.modal__note a:hover {
    opacity: 0.7;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
    .site-header__date {
        display: none;
    }

    .site-header {
        justify-content: space-between;
    }
}

@media (max-width: 720px) {
    .statement__text {
        font-size: clamp(1.5rem, 7.4vw, 2.4rem);
        max-width: 18ch;
    }

    .statement__text span {
        display: inline;
    }

    .site-footer__row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .site-footer__meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .site-menu__nav {
        flex-direction: column;
        gap: clamp(20px, 4.4vh, 38px);
    }

    .site-menu__line {
        display: none;
    }

    .lineup__list {
        font-size: clamp(1.15rem, 6.2vw, 2rem);
        line-height: 1.24;
    }
}

@media (max-width: 460px) {
    .link-tickets {
        letter-spacing: 0.08em;
    }

    .footer-nav {
        flex-wrap: wrap;
    }
}

/* shorter / landscape phones: keep hero usable */
@media (max-height: 480px) {
    .hero {
        min-height: 420px;
    }

    .hero__scroll {
        display: none;
    }
}

/* =========================================================
   MOTION / PRINT
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }

    .statement .statement__text,
    .lineup__list .lineup__line,
    .site-menu .site-menu__close,
    .site-menu .site-menu__link,
    .site-menu .site-menu__line,
    .site-menu .site-menu__star,
    .site-menu .site-menu__social {
        opacity: 1 !important;
        transform: none !important;
    }

    .statement .statement__star {
        opacity: 1 !important;
        transform: translate(-50%, -50%) !important;
    }
}
