:root {
    --page-bg: #ededed;
    --ink: #101016;
    --line: #565656;
    --muted: #6f6f72;
    --paper: #fdfdfb;
    --accent: #d7e4ec;
    --outside: 12px;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    box-sizing: border-box;
}

html {
    background: var(--page-bg);
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    margin: 0;
    overflow-x: hidden;
    background: var(--page-bg);
    color: var(--ink);
    font-family: "Inter", Arial, Helvetica, sans-serif;
    -webkit-font-smoothing: antialiased;
}

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

a:focus-visible {
    outline: 2px solid var(--ink);
    outline-offset: 3px;
}

.news-page-frame {
    position: fixed;
    z-index: 9000;
    inset: var(--outside);
    border: 1px solid var(--line);
    border-radius: 8px;
    pointer-events: none;
}

.news-page-island {
    position: fixed;
    z-index: 8000;
    top: 34px;
    left: 50%;
    display: grid;
    width: min(740px, calc(100vw - 220px));
    min-height: 62px;
    grid-template-columns: 132px minmax(0, 1fr) 132px;
    gap: 8px;
    transform: translateX(-50%);
}

.news-page-island > * {
    display: flex;
    min-width: 0;
    min-height: 62px;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    background: rgba(253, 253, 251, 0.94);
    box-shadow: 0 0 0 1px rgba(16, 16, 22, 0.4), 0 8px 26px rgba(16, 16, 22, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: background 0.3s ease, transform 0.45s var(--ease-out-expo);
}

.news-page-back,
.news-page-artist {
    padding: 0 12px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-align: center;
    text-transform: uppercase;
}

.news-page-back {
    border-radius: 19px 10px 22px 8px / 12px 20px 10px 23px;
    background: #d5dfda;
}

.news-page-artist {
    border-radius: 10px 19px 8px 22px / 20px 12px 23px 10px;
}

.news-page-back:hover,
.news-page-artist:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

.news-page-brand {
    padding: 0 26px;
    border-radius: 12px 12px 19px 19px / 18px 18px 10px 10px;
}

.news-page-brand img {
    display: block;
    width: min(270px, 100%);
    max-height: 36px;
    object-fit: contain;
}

@media (max-width: 1040px) and (min-width: 769px) {
    .news-page-island {
        width: min(650px, calc(100vw - 190px));
        grid-template-columns: 106px minmax(0, 1fr) 106px;
        gap: 7px;
    }
}

.news-article {
    width: min(1240px, calc(100% - 92px));
    margin: 0 auto;
    padding: 154px 0 74px;
}

.news-hero {
    position: relative;
    padding: 0 0 clamp(52px, 7vw, 92px);
    border-bottom: 1px solid rgba(16, 16, 22, 0.42);
}

.news-eyebrow,
.news-meta,
.news-embed-label,
.news-booking p,
.news-footer {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.news-eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 28px;
    color: var(--muted);
}

.news-eyebrow::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 1px rgba(16, 16, 22, 0.28);
}

.news-title {
    max-width: 9em;
    margin: 0;
    font-size: clamp(66px, 9.5vw, 138px);
    font-weight: 700;
    line-height: 0.82;
    letter-spacing: -0.075em;
    text-transform: uppercase;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-top: 40px;
    color: var(--muted);
}

.news-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
    gap: clamp(42px, 7vw, 112px);
    align-items: start;
    padding: clamp(58px, 8vw, 104px) 0;
}

.news-copy {
    max-width: 650px;
}

.news-copy p {
    margin: 0 0 1.45em;
    font-size: clamp(15px, 1.35vw, 18px);
    font-weight: 500;
    line-height: 1.68;
}

.news-copy p:first-child {
    margin-bottom: 1.35em;
    font-size: clamp(25px, 3.1vw, 44px);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.news-copy a {
    border-bottom: 1px solid rgba(16, 16, 22, 0.44);
}

.news-copy a:hover {
    border-color: transparent;
}

.news-embed {
    position: sticky;
    top: 116px;
    min-width: 0;
    padding: 18px;
    border-radius: 24px 14px 29px 12px / 18px 27px 14px 31px;
    background: var(--accent);
    box-shadow: 0 0 0 1px rgba(16, 16, 22, 0.32);
}

.news-embed-label {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 0 0 14px;
}

.news-embed .instagram-media {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    margin: 0 !important;
    border-radius: 12px !important;
}

.news-media-link {
    display: block;
    overflow: hidden;
    border-radius: 12px;
    background: var(--paper);
}

.news-media-link img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    filter: saturate(0.94) contrast(1.02);
    transition: transform 0.75s var(--ease-out-expo), filter 0.35s ease;
}

.news-media-link:hover img {
    filter: saturate(1) contrast(1.03);
    transform: scale(1.025);
}

.news-poster-link img {
    aspect-ratio: auto;
    object-fit: contain;
}

.tour-highlights,
.tour-posts {
    margin-bottom: clamp(58px, 8vw, 104px);
}

.tour-highlights {
    padding: clamp(28px, 4vw, 48px);
    border-radius: 28px 15px 33px 13px / 19px 31px 16px 35px;
    background: #dce5d6;
    box-shadow: 0 0 0 1px rgba(16, 16, 22, 0.34);
}

.tour-section-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 24px;
}

.tour-section-heading p,
.tour-section-heading > a {
    margin: 0 0 7px;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.tour-section-heading > a {
    margin: 0;
    border-bottom: 1px solid rgba(16, 16, 22, 0.42);
}

.tour-section-heading h2 {
    margin: 0;
    font-size: clamp(30px, 4.4vw, 64px);
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -0.055em;
    text-transform: uppercase;
}

.tour-highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 9px;
}

.tour-highlight-item {
    display: grid;
    min-height: 112px;
    align-content: space-between;
    padding: 14px;
    background: rgba(253, 253, 251, 0.72);
    box-shadow: 0 0 0 1px rgba(16, 16, 22, 0.38);
    transition: background 0.28s ease, color 0.28s ease, transform 0.45s var(--ease-out-expo);
}

.tour-highlight-item:nth-child(3n + 1) {
    border-radius: 18px 9px 21px 8px / 11px 20px 9px 22px;
}

.tour-highlight-item:nth-child(3n + 2) {
    border-radius: 9px 19px 8px 20px / 20px 10px 21px 9px;
}

.tour-highlight-item:nth-child(3n) {
    border-radius: 12px 17px 10px 19px / 18px 11px 20px 10px;
}

.tour-highlight-item:hover {
    background: var(--ink);
    color: var(--paper);
    transform: translateY(-3px);
}

.tour-highlight-item span,
.tour-highlight-item small {
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tour-highlight-item strong {
    font-size: clamp(17px, 2vw, 25px);
    line-height: 1;
    letter-spacing: -0.035em;
}

.tour-post-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(18px, 3vw, 36px);
    align-items: start;
}

.tour-post-card {
    position: relative;
    min-width: 0;
    padding: 16px;
    overflow: hidden;
    border-radius: 24px 14px 29px 12px / 18px 27px 14px 31px;
    background: var(--accent);
    box-shadow: 0 0 0 1px rgba(16, 16, 22, 0.32);
}

.tour-post-card:nth-child(2) {
    border-radius: 14px 25px 13px 29px / 27px 15px 30px 14px;
}

.tour-post-card .instagram-media {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    margin: 0 !important;
    border-radius: 12px !important;
}

.tour-static-post {
    display: block;
    overflow: hidden;
    border-radius: 12px;
    background: #0b0a0c;
}

.tour-static-post > img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: contain;
    transition: transform 0.75s var(--ease-out-expo), filter 0.35s ease;
}

.tour-static-post:hover > img {
    filter: brightness(1.04);
    transform: scale(1.018);
}

.tour-static-post > span {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 12px;
    background: var(--paper);
    color: var(--ink);
    font-size: 9px;
    letter-spacing: 0.04em;
}

.tour-static-post small {
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.instagram-fallback {
    display: flex;
    min-height: 420px;
    align-items: center;
    justify-content: center;
    padding: 24px;
    border-radius: 12px;
    background: var(--paper);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-align: center;
    text-transform: uppercase;
}

.news-booking {
    padding: clamp(38px, 5vw, 68px);
    border-radius: 28px 15px 33px 13px / 19px 31px 16px 35px;
    background: var(--accent);
    box-shadow: 0 0 0 1px rgba(16, 16, 22, 0.34);
}

.news-booking p {
    margin: 0 0 24px;
}

.news-booking a {
    display: inline-block;
    font-size: clamp(42px, 6.8vw, 96px);
    font-weight: 700;
    line-height: 0.84;
    letter-spacing: -0.06em;
    text-transform: uppercase;
}

.news-booking a::after {
    content: " ↗";
    font-size: 0.35em;
    vertical-align: top;
}

.news-footer {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-top: 54px;
    padding-top: 16px;
    border-top: 1px solid rgba(16, 16, 22, 0.34);
}

@media (max-width: 820px) {
    .news-page-island {
        width: min(650px, calc(100vw - 190px));
        grid-template-columns: 106px minmax(0, 1fr) 106px;
        gap: 7px;
    }

    .news-layout {
        grid-template-columns: 1fr;
    }

    .news-copy {
        max-width: 720px;
    }

    .news-embed {
        position: relative;
        top: auto;
        width: min(520px, 100%);
        margin: 0 auto;
    }

    .tour-highlight-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    :root {
        --outside: 0px;
    }

    .news-page-frame {
        display: none;
    }

    .news-page-island {
        top: 12px;
        width: calc(100vw - 24px);
        height: calc(100dvh - 24px);
        min-height: calc(100dvh - 24px);
        display: block;
        pointer-events: none;
    }

    .news-page-island > * {
        min-height: 0;
        pointer-events: auto;
    }

    .news-page-back,
    .news-page-artist {
        position: absolute;
        bottom: 0;
        width: clamp(92px, 28vw, 112px);
        min-height: 56px;
        padding: 0 10px;
        font-size: 10px;
        letter-spacing: 0.07em;
    }

    .news-page-back {
        left: 0;
    }

    .news-page-artist {
        right: 0;
    }

    .news-page-brand {
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        width: 100%;
        min-height: 62px;
        padding: 0 22px 0 8px;
    }

    .news-page-brand img {
        width: min(248px, calc(100% - 44px));
        max-height: 31px;
    }

    .news-article {
        width: calc(100% - 36px);
        padding: 104px 0 112px;
    }

    .news-hero {
        padding-bottom: 44px;
    }

    .news-eyebrow {
        margin-bottom: 20px;
        font-size: 8px;
    }

    .news-title {
        font-size: clamp(48px, 16vw, 72px);
        line-height: 0.84;
    }

    .news-meta {
        display: grid;
        gap: 7px;
        margin-top: 28px;
        font-size: 8px;
    }

    .news-layout {
        gap: 44px;
        padding: 48px 0 58px;
    }

    .news-copy p:first-child {
        font-size: 27px;
    }

    .news-embed {
        padding: 12px;
        border-radius: 18px 11px 21px 10px / 13px 20px 11px 23px;
    }

    .instagram-fallback {
        min-height: 330px;
    }

    .news-booking {
        padding: 32px 24px;
    }

    .news-booking a {
        font-size: 42px;
    }

    .news-footer {
        display: grid;
        gap: 8px;
        margin-top: 40px;
        font-size: 8px;
    }

    .tour-highlights {
        padding: 24px 18px;
    }

    .tour-section-heading {
        display: grid;
        gap: 12px;
        margin-bottom: 18px;
    }

    .tour-section-heading h2 {
        font-size: 34px;
    }

    .tour-section-heading > a {
        width: max-content;
        font-size: 8px;
    }

    .tour-highlight-grid,
    .tour-post-grid {
        grid-template-columns: 1fr;
    }

    .tour-highlight-item {
        min-height: 92px;
    }

    .tour-post-card {
        padding: 11px;
    }

}

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