:root {
    --ink: #0b0b0c;
    --paper: #f6f1ea;
    --mute: rgba(246, 241, 234, 0.68);
    --line: rgba(246, 241, 234, 0.18);
    --gold: #e4b07a;
    --header-h: 92px;
    --announce-h: 0px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body.has-announce {
    --announce-h: 36px;
}

body {
    background: var(--ink);
    color: var(--paper);
    font-family: "Outfit", system-ui, sans-serif;
    font-weight: 420;
    line-height: 1.45;
}

img,
video {
    max-width: 100%;
    display: block;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

.announce {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 95;
    height: var(--announce-h);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #070707;
    color: var(--paper);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.announce span {
    color: var(--gold);
}

.site-header {
    position: fixed;
    top: var(--announce-h);
    left: 0;
    right: 0;
    z-index: 90;
    min-height: var(--header-h);
    height: auto;
    display: grid;
    grid-template-columns: minmax(120px, 1fr) auto minmax(120px, 1fr);
    align-items: center;
    padding: 20px clamp(16px, 3vw, 36px) 12px;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.12) 78%, transparent 100%);
}

.site-header > * {
    pointer-events: auto;
}

.brand-row {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.brand {
    display: flex;
    align-items: center;
    min-width: 0;
}

.weather-chip.is-mobile {
    display: none;
}

.weather-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex: 0 0 auto;
    border: 1px solid rgba(246, 241, 234, 0.32);
    border-radius: 999px;
    padding: 5px 10px 5px 7px;
    background: rgba(0, 0, 0, 0.28);
    color: inherit;
    cursor: pointer;
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.7);
}

.weather-glyph {
    width: 20px;
    height: 20px;
    display: block;
    flex: 0 0 20px;
}

.weather-layer {
    position: fixed;
    inset: 0;
    z-index: 190;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: calc(var(--header-h) + var(--announce-h) + 8px) 16px 32px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

body.weather-open .weather-layer {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.weather-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(5, 5, 5, 0.42);
    cursor: pointer;
}

.weather-card {
    position: relative;
    z-index: 1;
    width: min(380px, calc(100vw - 32px));
    padding: 22px 20px 18px;
    border-radius: 24px;
    border: 1px solid rgba(246, 241, 234, 0.12);
    background: rgba(12, 12, 14, 0.9);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    color: var(--paper);
}

.weather-place {
    margin: 0 36px 8px 0;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 11px;
    color: var(--gold);
}

.weather-now {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 10px;
    align-items: center;
    margin-bottom: 16px;
}

.weather-now .weather-glyph {
    width: 42px;
    height: 42px;
    grid-row: 1 / span 2;
}

.weather-now strong {
    font-family: "Instrument Serif", Georgia, serif;
    font-size: 42px;
    font-weight: 400;
    line-height: 0.9;
}

.weather-now span {
    grid-column: 2;
    color: var(--mute);
    text-transform: capitalize;
    font-size: 14px;
}

.weather-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
    margin: 0 0 16px;
}

.weather-facts div {
    margin: 0;
}

.weather-facts dt {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mute);
}

.weather-facts dd {
    margin: 2px 0 0;
    font-size: 16px;
}

.weather-days {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 6px;
    border-top: 1px solid rgba(246, 241, 234, 0.1);
    padding-top: 12px;
}

.weather-days div {
    display: grid;
    justify-items: center;
    gap: 4px;
    font-size: 11px;
    color: var(--mute);
}

.weather-days em {
    font-style: normal;
    color: var(--paper);
    font-size: 13px;
}

.weather-days .weather-glyph {
    width: 18px;
    height: 18px;
}

.brand img {
    height: 28px;
    width: auto;
    object-fit: contain;
    max-width: min(70vw, 420px);
}

.brand svg {
    height: 28px;
    width: auto;
    color: #fff;
}

.desk-nav {
    display: none;
    align-items: center;
    gap: clamp(14px, 2vw, 28px);
}

.desk-nav a {
    position: relative;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 1;
    padding-bottom: 6px;
    text-shadow: 0 1px 14px rgba(0, 0, 0, 0.85);
    transition: opacity 0.2s ease, color 0.2s ease;
}

.desk-nav a:hover {
    opacity: 1;
}

.desk-nav a.is-current {
    opacity: 1;
    color: var(--gold);
}

.desk-nav a.is-current::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1.5px;
    background: currentColor;
}

.header-end {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 14px;
}

.btn-header {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid var(--paper);
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 13px;
    letter-spacing: 0.06em;
    background: rgba(0, 0, 0, 0.18);
    color: inherit;
    cursor: pointer;
    font: inherit;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.7);
}

.btn-header.is-live,
.btn-header.is-maps,
.btn-header.is-news {
    position: relative;
    padding-inline: 12px 14px;
}

.news-badge {
    position: absolute;
    top: -6px;
    right: -5px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--gold);
    color: #1a1008;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-shadow: none;
}

.news-badge[hidden] {
    display: none;
}

.btn-header.is-drawer .news-badge {
    top: 8px;
    right: 12px;
}

.maps-glyph,
.news-glyph {
    width: 18px;
    height: 18px;
    display: block;
    flex: 0 0 18px;
}

.live-glyph {
    width: 18px;
    height: 18px;
    display: block;
    flex: 0 0 18px;
}

.live-dot {
    fill: #ff4a4a;
    transform-origin: 12px 12px;
    animation: live-pulse 1.6s ease-in-out infinite;
}

@keyframes live-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.35; }
}

.btn-header.is-drawer {
    width: 100%;
    margin: 0;
    padding: 14px 22px;
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: var(--paper);
    color: var(--ink);
    border-color: var(--paper);
}

.maps-layer {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: none;
    flex-direction: column;
    background: #050505;
}

body.maps-open .maps-layer {
    display: flex;
}

body.nav-open,
body.maps-open,
body.live-open,
body.weather-open,
body.news-open {
    overflow: hidden;
}

.news-layer {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #050505;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.45s ease, visibility 0.45s ease;
}

body.news-open .news-layer {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.news-layer-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.22;
    pointer-events: none;
}

.news-shell {
    position: relative;
    z-index: 1;
    flex: 1 1 auto;
    min-height: 0;
    overflow: auto;
    padding: calc(var(--header-h) + var(--announce-h) + 12px) clamp(18px, 5vw, 64px) 48px;
}

.news-pane h2 {
    margin: 0 0 22px;
    font-family: "Instrument Serif", Georgia, serif;
    font-weight: 400;
    font-size: clamp(36px, 6vw, 64px);
    line-height: 0.95;
}

.news-kicker {
    margin: 0 0 8px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 11px;
    color: var(--gold);
}

.news-index {
    display: grid;
    gap: 10px;
    max-width: 720px;
}

.news-index button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    text-align: left;
    padding: 16px 0;
    border: 0;
    border-bottom: 1px solid rgba(246, 241, 234, 0.12);
    background: transparent;
    color: inherit;
    cursor: pointer;
    font: inherit;
}

.news-index-copy {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.news-index-thumb {
    width: 72px;
    height: 72px;
    flex: 0 0 auto;
    object-fit: cover;
    border-radius: 10px;
}

.news-index time,
.news-article-bar time {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--mute);
}

.news-index strong {
    font-family: "Instrument Serif", Georgia, serif;
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 400;
}

.news-article-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 16px;
    margin: 0 0 22px;
}

.news-back,
.news-share {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    margin: 0;
    padding: 0 18px;
    border: 1px solid rgba(246, 241, 234, 0.35);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.28);
    color: var(--paper);
    cursor: pointer;
    font: inherit;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.news-share {
    margin-left: auto;
}

.news-share.is-copied {
    border-color: rgba(228, 176, 122, 0.7);
    color: var(--gold);
}

.news-spread {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 18px clamp(28px, 4vw, 56px);
    align-items: start;
}

.news-pane.has-image .news-spread {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.92fr);
}

.news-pane.has-image .news-spread h2,
.news-pane.has-image .news-html {
    grid-column: 1;
}

.news-figure {
    margin: 0;
    grid-column: 2;
    grid-row: 1 / span 4;
    position: sticky;
    top: calc(var(--header-h) + 16px);
}

.news-figure img {
    display: block;
    width: 100%;
    height: min(72vh, 760px);
    object-fit: cover;
    border-radius: 6px;
}

.news-html {
    max-width: 68ch;
    font-size: 17px;
    line-height: 1.65;
    color: rgba(246, 241, 234, 0.9);
}

.news-html p { margin: 0 0 1em; }
.news-html h2,
.news-html h3,
.news-html h4 {
    font-family: "Instrument Serif", Georgia, serif;
    font-weight: 400;
    color: var(--paper);
    margin: 1.2em 0 0.4em;
}
.news-html a { color: var(--gold); }
.news-html img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    margin: 12px 0;
}
.news-html ul,
.news-html ol { padding-left: 1.2em; }
.news-html blockquote {
    margin: 1em 0;
    padding-left: 16px;
    border-left: 2px solid var(--gold);
    color: var(--mute);
}

.live-layer {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    flex-direction: column;
    background: #050505;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.45s ease, visibility 0.45s ease;
}

body.live-open .live-layer {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.live-screen {
    flex: 1 1 auto;
    position: relative;
    min-height: 0;
    width: 100%;
    display: grid;
    place-items: center;
}

.live-screen iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    background: #000;
}

.live-soon {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: var(--paper);
    text-align: center;
    overflow: hidden;
}

.live-soon-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.22;
    pointer-events: none;
}

.live-soon-copy {
    position: relative;
    z-index: 1;
    display: grid;
    justify-items: center;
    gap: 16px;
    padding: 24px;
}

.live-soon .live-glyph {
    width: 42px;
    height: 42px;
}

.live-soon p {
    margin: 0;
    font-family: "Instrument Serif", Georgia, serif;
    font-size: clamp(36px, 7vw, 72px);
    line-height: 0.95;
    letter-spacing: -0.03em;
}

.maps-frames {
    flex: 1 1 auto;
    position: relative;
    min-height: 0;
    width: 100%;
}

.maps-layer iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    opacity: 0;
    pointer-events: none;
}

.maps-layer iframe.is-on {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}

.maps-tabs {
    flex: 0 0 auto;
    display: flex;
    background: #0c0c0c;
    border-top: 1px solid rgba(246, 241, 234, 0.12);
}

.maps-tabs button {
    flex: 1 1 0;
    min-height: 48px;
    border: 0;
    background: transparent;
    color: var(--mute);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 12px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
}

.maps-tabs button.is-on {
    color: var(--paper);
    border-bottom-color: var(--gold);
}

.maps-close {
    position: absolute;
    top: calc(12px + var(--announce-h));
    right: 16px;
    z-index: 2;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: rgba(5, 5, 5, 0.72);
    color: #fff;
    cursor: pointer;
}

.maps-close span,
.maps-close span::before {
    display: block;
    width: 16px;
    height: 1.5px;
    background: #fff;
    margin: 0 auto;
    position: relative;
}

.maps-close span { transform: rotate(45deg); }
.maps-close span::before {
    content: "";
    position: absolute;
    inset: 0;
    transform: rotate(90deg);
}

.maps-banner {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-height: 72px;
    padding: 14px 20px calc(14px + env(safe-area-inset-bottom));
    background: #111;
    color: #f6f1ea;
    text-align: center;
}

.maps-banner-addr {
    font-size: 13px;
    color: rgba(246, 241, 234, 0.65);
}

.maps-banner-go {
    font-size: 15px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.menu-toggle {
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    color: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
    display: block;
    width: 20px;
    height: 1.5px;
    background: currentColor;
    position: relative;
    transition: transform 0.28s ease, top 0.28s ease, opacity 0.2s ease, background 0.2s ease;
}

.menu-toggle span::before,
.menu-toggle span::after {
    content: "";
    position: absolute;
    left: 0;
}

.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }

body.nav-open .menu-toggle span {
    background: transparent;
}

body.nav-open .menu-toggle span::before {
    top: 0;
    transform: rotate(45deg);
}

body.nav-open .menu-toggle span::after {
    top: 0;
    transform: rotate(-45deg);
}

.drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 6, 0.28);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    z-index: 70;
}

.mobile-drawer {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    height: 100dvh;
    background: rgba(11, 11, 12, 0.96);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    z-index: 80;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: none;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    padding: calc(var(--header-h) + var(--announce-h) + 8px) clamp(22px, 6vw, 48px) calc(28px + env(safe-area-inset-bottom));
    display: flex;
    flex-direction: column;
    gap: 0;
}

body.nav-open .drawer-backdrop {
    opacity: 1;
    pointer-events: auto;
}

body.nav-open .mobile-drawer {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.drawer-kicker {
    margin: 0 0 10px;
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
}

.drawer-links {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.drawer-links a {
    display: flex;
    align-items: baseline;
    gap: 12px;
    font-size: clamp(20px, 5.2vw, 26px);
    font-family: "Instrument Serif", Georgia, serif;
    font-style: italic;
    line-height: 1.2;
    padding: 8px 0;
    border-bottom: 1px solid var(--line);
    opacity: 0;
    transform: translateY(18px);
    transition:
        opacity 0.5s ease,
        transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        color 0.2s ease;
    transition-delay: calc(var(--i, 0) * 0.055s);
}

body.nav-open .drawer-links a {
    opacity: 1;
    transform: none;
}

.drawer-index {
    flex: 0 0 auto;
    font-family: "Outfit", system-ui, sans-serif;
    font-style: normal;
    font-size: 11px;
    font-weight: 420;
    letter-spacing: 0.16em;
    color: var(--mute);
    min-width: 1.75em;
}

.drawer-label {
    min-width: 0;
}

.drawer-links a.is-current {
    color: var(--gold);
    border-bottom-color: rgba(228, 176, 122, 0.45);
}

.drawer-links a.is-current .drawer-index {
    color: var(--gold);
}

.drawer-foot {
    margin-top: auto;
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.45s ease 0.18s, transform 0.45s ease 0.18s;
}

body.nav-open .drawer-foot {
    opacity: 1;
    transform: none;
}

.drawer-mail {
    text-align: center;
    font-size: 13px;
    letter-spacing: 0.06em;
    color: var(--mute);
}

.stage {
    display: block;
    position: relative;
}

.slide-pin {
    position: sticky;
    top: 0;
    height: 100dvh;
    z-index: var(--stack, 1);
}

.slide-pin.is-footer {
    position: relative;
    height: auto;
    min-height: 100dvh;
}

.stage-slide {
    position: relative;
    height: 100%;
    overflow: hidden;
    box-shadow: 0 -30px 80px rgba(0, 0, 0, 0.45);
}

.site-footer {
    position: relative;
    overflow: hidden;
    box-shadow: 0 -30px 80px rgba(0, 0, 0, 0.45);
}

.slide-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    isolation: isolate;
}

.slide-media img,
.slide-media video,
.carousel-track img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-track {
    position: relative;
    height: 100%;
    width: 100%;
}

.carousel-track img {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 0.9s ease, transform 1.15s ease;
    z-index: 0;
}

.carousel-track img.is-on {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    z-index: 6;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(246, 241, 234, 0.45);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.28);
    color: #fff;
    cursor: pointer;
    transform: translateY(-50%);
}

.carousel-btn.is-prev { left: clamp(10px, 2vw, 24px); }
.carousel-btn.is-next { right: clamp(10px, 2vw, 24px); }

.carousel-btn::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-top: 1.5px solid #fff;
    border-right: 1.5px solid #fff;
    margin: 0 auto;
}

.carousel-btn.is-prev::before { transform: rotate(-135deg); }
.carousel-btn.is-next::before { transform: rotate(45deg); }

.carousel-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 56px;
    z-index: 6;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.carousel-dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
}

.carousel-dots span.is-on {
    background: #fff;
}

.slide-fallback {
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 20%, #3a2a22, transparent 45%),
        radial-gradient(circle at 80% 80%, #1c2430, transparent 40%),
        #111;
}

.slide-shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0.2) 42%, rgba(0, 0, 0, 0.06) 100%),
        rgba(0, 0, 0, clamp(0.12, var(--shade, 0.28), 0.32));
}

.stage-slide.is-center .slide-shade {
    background:
        radial-gradient(80% 70% at 50% 48%, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.38) 100%),
        rgba(0, 0, 0, clamp(0.12, var(--shade, 0.28), 0.32));
}

.stage-slide.is-right .slide-shade {
    background:
        linear-gradient(270deg, rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0.2) 42%, rgba(0, 0, 0, 0.06) 100%),
        rgba(0, 0, 0, clamp(0.12, var(--shade, 0.28), 0.32));
}

.slide-copy {
    position: relative;
    z-index: 2;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: calc(var(--header-h) + var(--announce-h) + 24px) clamp(20px, 6vw, 80px) 48px;
    max-width: 920px;
}

.stage-slide.is-center .slide-copy {
    margin: 0 auto;
    text-align: center;
    align-items: center;
}

.stage-slide.is-left .slide-copy {
    align-items: flex-start;
    text-align: left;
}

.stage-slide.is-right .slide-copy {
    margin-left: auto;
    align-items: flex-end;
    text-align: right;
}

.eyebrow {
    margin: 0 0 12px;
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--paper);
    text-shadow: 0 1px 16px rgba(0, 0, 0, 0.65);
}

.slide-title {
    margin: 0;
    font-family: "Instrument Serif", Georgia, serif;
    font-weight: 400;
    font-size: clamp(42px, 8vw, 92px);
    line-height: 0.95;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 28px rgba(0, 0, 0, 0.7);
}

.slide-body {
    margin: 18px 0 0;
    max-width: 36ch;
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(246, 241, 234, 0.92);
    text-shadow: 0 1px 18px rgba(0, 0, 0, 0.7);
}

.stage-slide.is-center .slide-body {
    max-width: 42ch;
}

.slide-cta {
    margin-top: 28px;
    position: relative;
    isolation: isolate;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 24px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    letter-spacing: 0.06em;
    overflow: visible;
    background: transparent;
    color: inherit;
}

.slide-cta-label {
    position: relative;
    z-index: 1;
}

.slide-cta-rim {
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    padding: 2px;
    pointer-events: none;
    overflow: hidden;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    mask-composite: exclude;
}

.slide-cta-rim::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 260%;
    aspect-ratio: 1;
    min-width: 240px;
    min-height: 240px;
    background: conic-gradient(
        from 0deg,
        transparent 0 68%,
        rgba(228, 176, 122, 0.15) 74%,
        var(--gold) 84%,
        #fff 92%,
        var(--gold) 97%,
        transparent 100%
    );
    animation: slide-cta-orbit 2.2s linear infinite;
}

@keyframes slide-cta-orbit {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.scroll-hint {
    position: fixed;
    left: 50%;
    bottom: calc(12px + env(safe-area-inset-bottom));
    transform: translateX(-50%);
    z-index: 40;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    display: grid;
    place-items: center;
    cursor: pointer;
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.scroll-hint span {
    display: block;
    width: 14px;
    height: 14px;
    border-right: 1.5px solid rgba(246, 241, 234, 0.95);
    border-bottom: 1.5px solid rgba(246, 241, 234, 0.95);
    transform: rotate(45deg);
    filter: drop-shadow(0 1px 8px rgba(0, 0, 0, 0.7));
    animation: scroll-hint-bounce 1.7s ease-in-out infinite;
}

body.is-scrolling .scroll-hint,
body.on-footer .scroll-hint,
body.nav-open .scroll-hint,
body.maps-open .scroll-hint,
body.live-open .scroll-hint,
body.news-open .scroll-hint {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

@keyframes scroll-hint-bounce {
    0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: 0.95; }
    50% { transform: rotate(45deg) translate(5px, 5px); opacity: 0.35; }
}

.site-footer {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--paper);
    height: auto;
    min-height: 100dvh;
}

.footer-bg {
    position: absolute;
    inset: 0;
}

.footer-bg img,
.footer-bg .slide-fallback {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.78) 55%, rgba(0, 0, 0, 0.9));
}

.footer-inner {
    position: relative;
    z-index: 2;
    padding: calc(var(--header-h) + 40px) clamp(20px, 5vw, 72px) 28px;
    display: grid;
    gap: 48px;
}

.footer-top h2 {
    margin: 0;
    font-family: "Instrument Serif", Georgia, serif;
    font-size: clamp(36px, 7vw, 72px);
    line-height: 0.95;
}

.footer-top p {
    margin: 12px 0 0;
    max-width: 40ch;
    color: var(--mute);
}

.news-form {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 520px;
}

.news-form input {
    flex: 1 1 220px;
    min-height: 48px;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    color: #fff;
    padding: 0 4px;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.news-form.is-inview:not(:focus-within) input {
    animation: news-glow 2.4s ease-in-out infinite;
}

.news-form input:focus {
    border-bottom-color: var(--gold);
}

.news-form input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.news-form.is-inview:not(:focus-within) input::placeholder {
    animation: news-placeholder 2.4s ease-in-out infinite;
}

.news-form button {
    min-height: 48px;
    padding: 0 22px;
    border: 0;
    border-radius: 999px;
    background: var(--paper);
    color: var(--ink);
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.news-form.is-inview:not(:focus-within) button {
    animation: news-pulse 2.4s ease-in-out infinite;
}

@keyframes news-glow {
    0%, 100% {
        border-bottom-color: rgba(255, 255, 255, 0.4);
        box-shadow: 0 10px 0 -9px rgba(228, 176, 122, 0);
    }
    50% {
        border-bottom-color: var(--gold);
        box-shadow: 0 12px 22px -10px rgba(228, 176, 122, 0.95);
    }
}

@keyframes news-placeholder {
    0%, 100% { opacity: 0.55; }
    50% { opacity: 1; }
}

@keyframes news-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(246, 241, 234, 0);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 8px rgba(246, 241, 234, 0.16);
    }
}

.news-note,
.news-status {
    margin: 10px 0 0;
    font-size: 13px;
    color: var(--mute);
}

.news-status.is-ok { color: #cde7c8; }
.news-status.is-dup { color: var(--gold); }
.news-status.is-err { color: #f0b4b4; }

.nl-layer {
    position: fixed;
    inset: 0;
    z-index: 210;
    display: grid;
    place-items: center;
    padding: 22px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

body.newsletter-popup-open .nl-layer {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.nl-veil {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(5, 5, 5, 0.62);
    cursor: pointer;
}

.nl-card {
    position: relative;
    z-index: 1;
    width: min(520px, 100%);
    padding: 36px 28px 26px;
    border: 1px solid rgba(246, 241, 234, 0.16);
    border-radius: 22px;
    background: #111010;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.55);
}

.nl-card h2 {
    margin: 0;
    font-family: "Instrument Serif", Georgia, serif;
    font-weight: 400;
    font-size: clamp(30px, 5vw, 46px);
    line-height: 1;
}

.nl-card > p {
    margin: 12px 0 0;
    max-width: 36ch;
    color: var(--mute);
}

.nl-form {
    margin-top: 22px;
    max-width: none;
}

.nl-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: rgba(5, 5, 5, 0.55);
    color: #fff;
    cursor: pointer;
}

.nl-close span,
.nl-close span::before {
    display: block;
    width: 14px;
    height: 1.5px;
    background: #fff;
    margin: 0 auto;
    position: relative;
}

.nl-close span { transform: rotate(45deg); }
.nl-close span::before {
    content: "";
    position: absolute;
    inset: 0;
    transform: rotate(90deg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

.footer-col h3 {
    margin: 0 0 12px;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-col p,
.footer-col a {
    margin: 0;
    color: var(--mute);
    line-height: 1.8;
}

.footer-col a:hover {
    color: var(--paper);
}

.socials {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 8px;
}

.footer-base {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    font-size: 13px;
    color: var(--mute);
}

@media (min-width: 860px) {
    .desk-nav {
        display: flex;
    }

    .menu-toggle,
    .drawer-backdrop,
    .mobile-drawer {
        display: none;
    }

    .footer-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 859px) {
    .site-header {
        grid-template-columns: minmax(0, 1fr) auto;
        padding-inline: 14px;
    }

    .desk-nav {
        display: none;
    }

    .weather-chip.is-desk {
        display: none;
    }

    .weather-chip.is-mobile {
        display: inline-flex;
    }

    .header-end {
        gap: 6px;
    }

    .header-end .weather-chip {
        width: auto;
        min-width: 40px;
        height: 40px;
        padding: 0 10px;
        border-radius: 999px;
        justify-content: center;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0;
    }

    .header-end .weather-chip .weather-glyph {
        display: none;
    }

    .header-end .btn-header {
        width: 40px;
        height: 40px;
        min-width: 40px;
        padding: 0;
        border-radius: 50%;
        justify-content: center;
        gap: 0;
    }

    .header-end .btn-header span:not(.news-badge) {
        display: none;
    }

    .header-end .live-glyph,
    .header-end .maps-glyph,
    .header-end .news-glyph {
        width: 18px;
        height: 18px;
        flex-basis: 18px;
    }

    .brand img,
    .brand svg {
        max-width: min(52vw, 220px);
    }

    .news-pane.has-image .news-spread {
        grid-template-columns: minmax(0, 1fr);
    }

    .news-pane.has-image .news-spread h2,
    .news-pane.has-image .news-html,
    .news-figure {
        grid-column: 1;
        grid-row: auto;
    }

    .news-figure {
        position: static;
    }

    .news-figure img {
        height: min(46vh, 420px);
    }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .slide-pin {
        position: relative;
    }
    .stage-slide,
    .site-footer {
        box-shadow: none;
    }
    .carousel-track img,
    .mobile-drawer,
    .drawer-backdrop,
    .drawer-links a,
    .drawer-foot,
    .live-layer,
    .weather-layer,
    .news-layer,
    .nl-layer {
        transition: none;
    }
    .carousel-track img {
        transform: none;
    }
    .live-dot,
    .scroll-hint span,
    .news-form input,
    .news-form button,
    .news-form input::placeholder,
    .slide-cta-rim::before {
        animation: none;
    }
    .drawer-links a,
    .drawer-foot {
        opacity: 1;
        transform: none;
    }
}
