:root {
    --ink: #080c0f;
    --navy: #10252d;
    --gold: #d4a952;
    --gold-light: #f1d28b;
    --paper: #f1ede3;
    --white: #fffdf8;
    --header-height: 70px;
    --display-font: "Noto Serif TC", "PMingLiU", serif;
    --body-font: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
    scrollbar-gutter: stable;
}

@supports not (scrollbar-gutter: stable) {
    html {
        overflow-y: scroll;
    }
}

body.appreciation-site {
    margin: 0;
    overflow-x: hidden;
    background: var(--ink);
    color: var(--white);
    font-family: var(--body-font);
    text-rendering: optimizeLegibility;
}

body.appreciation-site *,
body.appreciation-site *::before,
body.appreciation-site *::after {
    box-sizing: border-box;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1100;
    padding: 10px 18px;
    color: var(--ink);
    background: var(--gold-light);
    border-radius: 2px;
    font-weight: 700;
    transform: translateY(-160%);
    transition: transform 180ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

:focus-visible {
    outline: 3px solid var(--gold-light);
    outline-offset: 4px;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    min-height: var(--header-height);
    background: rgba(21, 27, 29, 0.54);
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px) saturate(108%);
    -webkit-backdrop-filter: blur(10px) saturate(108%);
    transition: background-color 300ms ease, box-shadow 300ms ease;
}

.site-header.is-scrolled,
.site-header:has(.navbar-collapse.show) {
    background: rgba(21, 27, 29, 0.82);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.24);
}

.site-header .navbar {
    min-height: calc(var(--header-height) - 1px);
    padding: 4px 0;
}

.nav-shell {
    gap: 20px;
    padding-inline: clamp(18px, 3vw, 48px);
}

.brand-cluster,
.navbar-brand {
    display: flex;
    align-items: center;
}

.brand-cluster {
    flex: 0 0 auto;
    gap: 14px;
}

.navbar-brand {
    margin: 0;
    color: var(--white);
}

.navbar-brand:hover,
.navbar-brand:focus {
    color: var(--gold-light);
}

.navbar-brand img {
    display: block;
    width: clamp(248px, 22vw, 320px);
    height: 50px;
    object-fit: contain;
    object-position: left center;
}

.audio-controller {
    position: relative;
    display: inline-grid;
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    place-items: center;
    padding: 0;
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 50%;
    transition: color 200ms ease, border-color 200ms ease, background-color 200ms ease, transform 200ms ease;
}

.audio-controller:hover {
    color: var(--gold-light);
    background: rgba(212, 169, 82, 0.12);
    border-color: var(--gold-light);
    transform: scale(1.05);
}

.audio-controller::after {
    position: absolute;
    width: 22px;
    height: 1px;
    content: "";
    background: currentColor;
    transform: rotate(-45deg);
    transform-origin: center;
    transition: opacity 160ms ease;
}

.audio-controller.is-playing::after {
    opacity: 0;
}

.audio-wave {
    display: flex;
    height: 18px;
    align-items: center;
    gap: 3px;
}

.audio-wave span {
    width: 2px;
    height: 5px;
    background: currentColor;
    border-radius: 2px;
}

.audio-controller.is-playing .audio-wave span {
    animation: audio-wave 900ms ease-in-out infinite alternate;
}

.audio-controller.is-playing .audio-wave span:nth-child(2) {
    animation-delay: -400ms;
}

.audio-controller.is-playing .audio-wave span:nth-child(3) {
    animation-delay: -180ms;
}

@keyframes audio-wave {
    from { height: 5px; }
    to { height: 18px; }
}

.navbar-toggler {
    padding: 8px;
    border-color: rgba(255, 255, 255, 0.34);
    border-radius: 2px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-nav {
    gap: clamp(2px, 0.5vw, 8px);
}

.navbar-nav .nav-item {
    display: flex;
    align-items: stretch;
}

.navbar-nav .nav-link {
    position: relative;
    display: flex;
    min-width: 84px;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 6px clamp(7px, 0.65vw, 12px);
    color: rgba(255, 255, 255, 0.88);
    border: 0;
    background: transparent;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.2;
    transition: color 200ms ease, background-color 200ms ease;
}

.navbar-nav .nav-link::before {
    position: absolute;
    right: 14px;
    bottom: 4px;
    left: 14px;
    height: 1px;
    content: "";
    background: var(--gold);
    opacity: 0;
    transform: scaleX(0.2);
    transition: opacity 200ms ease, transform 200ms ease;
}

.navbar-nav .nav-link:disabled {
    cursor: default;
    opacity: 1;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus-visible {
    color: var(--gold-light);
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link:focus-visible::before,
.navbar-nav .nav-link.active::before {
    opacity: 1;
    transform: scaleX(1);
}

.navbar-nav .nav-link.active {
    color: var(--gold-light);
}

.nav-item-featured .nav-link {
    margin-left: 4px;
    padding-inline: 16px;
    border: 1px solid rgba(212, 169, 82, 0.7);
}

#background-music {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.hero {
    position: relative;
    display: grid;
    min-height: 100vh;
    min-height: 100svh;
    overflow: hidden;
    place-items: center;
    isolation: isolate;
    background: var(--ink);
}

.hero-poster,
.hero-poster img,
.hero-video,
.hero-shade,
.hero-grain {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-poster {
    z-index: -5;
}

.hero-poster img,
.hero-video {
    object-fit: cover;
    object-position: center;
}

.hero-video {
    z-index: -4;
    opacity: 0;
    transition: opacity 1600ms ease;
}

.hero-video.is-ready {
    opacity: 1;
}

.hero-shade {
    z-index: -3;
    background:
        linear-gradient(180deg, rgba(3, 7, 9, 0.3) 0%, rgba(3, 7, 9, 0.02) 34%, rgba(3, 7, 9, 0.06) 68%, rgba(3, 7, 9, 0.34) 100%),
        radial-gradient(ellipse at 50% 52%, rgba(3, 7, 9, 0.2) 0%, rgba(3, 7, 9, 0.06) 35%, rgba(3, 7, 9, 0) 68%);
}

.hero-grain {
    z-index: -2;
    opacity: 0.04;
    background-image:
        repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.12) 0, rgba(255, 255, 255, 0.12) 1px, transparent 1px, transparent 5px),
        repeating-linear-gradient(35deg, rgba(0, 0, 0, 0.12) 0, rgba(0, 0, 0, 0.12) 1px, transparent 1px, transparent 7px);
    mix-blend-mode: soft-light;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: calc(var(--header-height) + 36px) 20px 110px;
    text-align: center;
    text-shadow: 0 3px 16px rgba(0, 0, 0, 0.58), 0 1px 3px rgba(0, 0, 0, 0.82);
}

.hero-kicker {
    display: grid;
    justify-items: center;
    gap: 11px;
    margin: 0 auto 20px;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(0.68rem, 1vw, 0.88rem);
    font-weight: 600;
    letter-spacing: 0.3em;
}

.hero-kicker-title {
    white-space: nowrap;
}

.hero-kicker-year {
    display: grid;
    width: 48px;
    height: 48px;
    color: var(--gold-light);
    border: 1px solid rgba(241, 210, 139, 0.72);
    border-radius: 50%;
    place-items: center;
    letter-spacing: 0;
}

.hero-rule {
    display: grid;
    width: min(420px, 72vw);
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 13px;
    margin: 0 auto 24px;
}

.hero-rule span {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-light));
}

.hero-rule span:last-child {
    background: linear-gradient(90deg, var(--gold-light), transparent);
}

.hero-rule i {
    width: 7px;
    height: 7px;
    border: 1px solid var(--gold-light);
    transform: rotate(45deg);
}

.hero h1 {
    display: grid;
    width: min(1200px, 100%);
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: baseline;
    column-gap: clamp(10px, 1.4vw, 26px);
    margin: 0 auto;
    font-family: var(--display-font);
    font-size: clamp(3rem, 6.5vw, 6.8rem);
    font-weight: 900;
    line-height: 1.18;
}

.hero-title-part {
    letter-spacing: 0.12em;
}

.hero-title-part:first-child {
    justify-self: end;
}

.hero-title-part:last-child {
    justify-self: start;
}

.hero-separator {
    letter-spacing: 0;
}

.hero h1 br {
    display: none;
}

.hero-subtitle {
    margin: 26px 0 0;
    color: rgba(255, 255, 255, 0.94);
    font-size: clamp(1.08rem, 1.7vw, 1.55rem);
    font-weight: 500;
    letter-spacing: 0.28em;
}

.hero-kicker,
.hero-rule,
.hero h1,
.hero-subtitle,
.scroll-cue {
    opacity: 0;
    transform: translateY(20px);
}

.is-ready .hero-kicker,
.is-ready .hero-rule,
.is-ready .hero h1,
.is-ready .hero-subtitle {
    animation: hero-reveal 900ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.is-ready .hero-rule { animation-delay: 110ms; }
.is-ready .hero h1 { animation-delay: 210ms; }
.is-ready .hero-subtitle { animation-delay: 350ms; }

@keyframes hero-reveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-cue {
    position: absolute;
    bottom: 26px;
    left: 50%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    transform: translate(-50%, 20px);
}

.is-ready .scroll-cue {
    animation: scroll-reveal 900ms 650ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes scroll-reveal {
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

.scroll-cue:hover,
.scroll-cue:focus-visible {
    color: var(--gold-light);
}

.scroll-cue span {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.3em;
}

.scroll-cue i {
    position: relative;
    display: block;
    width: 1px;
    height: 42px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.32);
}

.scroll-cue i::after {
    position: absolute;
    inset: -100% 0 auto;
    height: 100%;
    content: "";
    background: var(--gold-light);
    animation: scroll-line 1800ms ease-in-out infinite;
}

@keyframes scroll-line {
    0% { transform: translateY(0); }
    70%, 100% { transform: translateY(200%); }
}

.latest-news {
    position: relative;
    display: flex;
    min-height: 100vh;
    min-height: 100svh;
    align-items: center;
    overflow: hidden;
    padding: calc(var(--header-height) + 72px) 0 110px;
    color: var(--navy);
    background:
        linear-gradient(115deg, transparent 0 68%, rgba(16, 37, 45, 0.045) 68% 68.2%, transparent 68.2%),
        radial-gradient(circle at 14% 24%, rgba(212, 169, 82, 0.12), transparent 30%),
        var(--paper);
}

.latest-news::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 7px;
    content: "";
    background: linear-gradient(90deg, var(--navy) 0 36%, var(--gold) 36% 43%, var(--navy) 43% 100%);
}

.news-index {
    position: absolute;
    top: 7%;
    right: -0.03em;
    color: rgba(16, 37, 45, 0.045);
    font-family: var(--display-font);
    font-size: clamp(14rem, 32vw, 34rem);
    font-weight: 900;
    line-height: 0.8;
    pointer-events: none;
}

.news-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(420px, 0.85fr) minmax(420px, 1.15fr);
    align-items: center;
    gap: clamp(48px, 6vw, 96px);
    padding-inline: clamp(24px, 5vw, 80px);
}

.section-kicker {
    margin: 0 0 18px;
    color: #9d7426;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.34em;
}

.news-heading h2 {
    position: relative;
    margin: 0 0 30px;
    font-family: var(--display-font);
    font-size: clamp(3.3rem, 6vw, 6.2rem);
    font-weight: 900;
    letter-spacing: 0.1em;
    line-height: 1.1;
    white-space: nowrap;
}

.news-heading h2::after {
    display: block;
    width: 74px;
    height: 3px;
    margin-top: 26px;
    content: "";
    background: var(--gold);
}

.news-heading-copy {
    max-width: 420px;
    margin: 0;
    color: #496067;
    font-size: 1.04rem;
    line-height: 2;
}

.news-preview-note {
    display: grid;
    max-width: 420px;
    grid-template-columns: auto 1fr;
    gap: 14px;
    margin: 30px 0 0;
    padding-top: 20px;
    color: rgba(73, 96, 103, 0.78);
    border-top: 1px solid rgba(16, 37, 45, 0.15);
    font-size: 0.76rem;
    line-height: 1.7;
}

.news-preview-note span {
    color: #9d7426;
    font-weight: 700;
    letter-spacing: 0.12em;
    white-space: nowrap;
}

.news-carousel {
    min-width: 0;
}

.news-carousel .carousel-inner {
    border: 1px solid rgba(16, 37, 45, 0.16);
    box-shadow: 0 28px 80px rgba(34, 45, 47, 0.12);
}

.news-carousel .carousel-item {
    min-height: 404px;
}

.news-story {
    position: relative;
    display: grid;
    min-height: 404px;
    grid-template-columns: minmax(220px, 0.88fr) minmax(0, 1.12fr);
    overflow: hidden;
    background: rgba(255, 253, 248, 0.86);
}

.news-story::after {
    position: absolute;
    inset: 12px;
    z-index: 2;
    content: "";
    border: 1px solid rgba(212, 169, 82, 0.26);
    pointer-events: none;
}

.news-story-visual {
    position: relative;
    min-height: 404px;
    margin: 0;
    overflow: hidden;
    background: #cad4d6;
}

.news-story-visual::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, rgba(12, 29, 35, 0.06), rgba(12, 29, 35, 0.28));
    pointer-events: none;
}

.news-story-visual picture,
.news-story-visual img {
    display: block;
    width: 100%;
    height: 100%;
}

.news-story-visual img {
    position: absolute;
    inset: 0;
    object-fit: cover;
    transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.carousel-item.active .news-story-visual img {
    transform: scale(1.035);
}

.news-story-mark {
    position: absolute;
    top: 28px;
    left: 28px;
    z-index: 1;
    padding: 8px 11px 8px 14px;
    color: #fffdf8;
    background: rgba(16, 37, 45, 0.82);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2em;
}

.news-story-copy {
    position: relative;
    z-index: 1;
    display: grid;
    min-width: 0;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto 1fr auto;
    align-content: center;
    column-gap: clamp(20px, 2.2vw, 34px);
    row-gap: 18px;
    padding: clamp(38px, 3.2vw, 56px);
}

.news-story-meta {
    display: flex;
    grid-column: 1 / -1;
    align-items: center;
    gap: 11px;
    margin: 0;
    color: #9d7426;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.news-story-meta span + span::before,
.news-story-meta time + span::before {
    margin-right: 11px;
    content: "／";
    color: rgba(16, 37, 45, 0.35);
}

.news-story h3 {
    grid-column: 2;
    grid-row: 2 / 4;
    align-self: center;
    margin: 0;
    font-family: var(--display-font);
    font-size: clamp(1.65rem, 2vw, 2.15rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.18;
    text-wrap: balance;
    text-orientation: upright;
    writing-mode: vertical-rl;
}

.news-story-copy > p:not(.news-story-meta) {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
    margin: 0;
    color: #5c6a6e;
    font-size: 0.94rem;
    line-height: 1.85;
}

.news-story-link {
    display: inline-flex;
    grid-column: 1;
    grid-row: 3;
    align-items: center;
    align-self: flex-start;
    gap: 12px;
    margin-top: 0;
    padding-bottom: 5px;
    color: var(--navy);
    border-bottom: 1px solid rgba(16, 37, 45, 0.42);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: color 180ms ease, border-color 180ms ease;
}

.news-story-link span {
    color: var(--gold);
    font-size: 1rem;
    transition: transform 180ms ease;
}

.news-story-link:hover,
.news-story-link:focus-visible {
    color: #7c5a16;
    border-color: var(--gold);
}

.news-story-link:hover span,
.news-story-link:focus-visible span {
    transform: translate(3px, -3px);
}

.news-carousel-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 22px;
    color: #6b5a31;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.news-carousel-controls[hidden] {
    display: none;
}

.news-carousel-progress {
    display: flex;
    min-width: 0;
    flex: 1;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
}

.news-carousel-progress i {
    display: block;
    width: min(92px, 18vw);
    height: 1px;
    background: linear-gradient(90deg, var(--gold), rgba(16, 37, 45, 0.16));
}

.news-carousel-controls button {
    display: grid;
    width: 44px;
    height: 44px;
    padding: 0;
    color: var(--navy);
    background: rgba(255, 253, 248, 0.58);
    border: 1px solid rgba(16, 37, 45, 0.24);
    border-radius: 50%;
    place-items: center;
    transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.news-carousel-controls button:hover,
.news-carousel-controls button:focus-visible {
    color: #6b4d12;
    background: rgba(212, 169, 82, 0.18);
    border-color: var(--gold);
}

[data-page-container] {
    transition: opacity 180ms ease, transform 180ms ease;
}

[data-page-container].is-page-leaving {
    opacity: 0;
    transform: translateY(8px);
}

[data-page-container].is-page-entering {
    animation: page-enter 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes page-enter {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body.appreciation-inner .site-header {
    background: rgba(21, 27, 29, 0.88);
}

.inner-page {
    position: relative;
    display: grid;
    min-height: 100vh;
    min-height: 100svh;
    overflow: hidden;
    padding: calc(var(--header-height) + clamp(72px, 10vw, 150px)) 0 clamp(80px, 10vw, 140px);
    color: var(--navy);
    background:
        linear-gradient(115deg, transparent 0 67%, rgba(16, 37, 45, 0.05) 67% 67.2%, transparent 67.2%),
        radial-gradient(circle at 14% 24%, rgba(212, 169, 82, 0.13), transparent 30%),
        var(--paper);
    place-items: center;
}

.inner-page::before {
    position: absolute;
    top: var(--header-height);
    right: 0;
    left: 0;
    height: 6px;
    content: "";
    background: linear-gradient(90deg, var(--navy) 0 36%, var(--gold) 36% 43%, var(--navy) 43% 100%);
}

.inner-page-number {
    position: absolute;
    top: 15%;
    right: -0.04em;
    color: rgba(16, 37, 45, 0.045);
    font-family: var(--display-font);
    font-size: clamp(16rem, 34vw, 38rem);
    font-weight: 900;
    line-height: 0.72;
    pointer-events: none;
}

.inner-page-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(340px, 1.18fr);
    grid-template-rows: auto auto auto;
    align-items: end;
    gap: 18px clamp(64px, 10vw, 160px);
    padding-inline: clamp(24px, 7vw, 110px);
}

.inner-page-kicker {
    grid-column: 1;
    margin: 0;
    color: #9d7426;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.32em;
}

.inner-page h1 {
    grid-column: 1;
    margin: 0;
    font-family: var(--display-font);
    font-size: clamp(4rem, 7.8vw, 7.4rem);
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1.08;
    white-space: nowrap;
}

.inner-page-lead {
    grid-column: 1;
    max-width: 480px;
    margin: 14px 0 0;
    color: #496067;
    font-size: 1.06rem;
    line-height: 2;
}

.inner-page-status {
    position: relative;
    display: flex;
    min-height: 280px;
    grid-column: 2;
    grid-row: 1 / 4;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(36px, 5vw, 68px);
    background: rgba(255, 253, 248, 0.72);
    border: 1px solid rgba(16, 37, 45, 0.16);
    box-shadow: 0 28px 80px rgba(34, 45, 47, 0.1);
}

.inner-page-status::before {
    position: absolute;
    inset: 12px;
    content: "";
    border: 1px solid rgba(212, 169, 82, 0.3);
    pointer-events: none;
}

.inner-page-status::after {
    position: absolute;
    top: -1px;
    left: 64px;
    width: 92px;
    height: 3px;
    content: "";
    background: var(--gold);
}

.inner-page-status span,
.inner-page-status strong {
    position: relative;
    z-index: 1;
}

.inner-page-status span {
    margin-bottom: 14px;
    color: #9d7426;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.3em;
}

.inner-page-status strong {
    font-family: var(--display-font);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700;
    letter-spacing: 0.08em;
}

.news-footer-mark {
    position: absolute;
    right: clamp(22px, 4vw, 64px);
    bottom: 28px;
    left: clamp(22px, 4vw, 64px);
    display: flex;
    justify-content: space-between;
    color: rgba(16, 37, 45, 0.48);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.28em;
}

@media (max-width: 1199.98px) {
    .navbar-brand img {
        width: 232px;
    }

    .navbar-nav .nav-link {
        min-width: 80px;
        font-size: 0.92rem;
    }
}

@media (max-width: 991.98px) {
    :root {
        --header-height: 66px;
    }

    .site-header .navbar {
        min-height: calc(var(--header-height) - 1px);
    }

    .navbar-collapse {
        margin: 8px -24px -4px;
        padding: 12px 24px 18px;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .navbar-nav {
        gap: 0;
    }

    .navbar-nav .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar-nav .nav-link,
    .nav-item-featured .nav-link {
        width: 100%;
        min-height: 48px;
        flex-direction: row;
        justify-content: space-between;
        margin: 0;
        padding: 10px 6px;
        border: 0;
        text-align: left;
    }

    .navbar-nav .nav-link::before {
        display: none;
    }

    .navbar-nav .nav-link.active {
        background: rgba(212, 169, 82, 0.1);
    }

    .inner-page-layout {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .inner-page-status {
        grid-column: 1;
        grid-row: auto;
    }

    .news-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .news-heading > p:last-child {
        max-width: 580px;
    }

    .news-heading-copy,
    .news-preview-note {
        max-width: 580px;
    }
}

@media (max-width: 767.98px) {
    .site-header:has(.navbar-collapse.show) {
        background: rgba(21, 27, 29, 0.94);
    }

    .nav-shell {
        gap: 10px;
        padding-inline: 14px;
    }

    .brand-cluster {
        gap: 8px;
    }

    .audio-controller {
        flex-basis: 44px;
        width: 44px;
        height: 44px;
    }

    .navbar-brand img {
        width: 218px;
        height: 40px;
    }

    .navbar-toggler {
        width: 44px;
        height: 44px;
        padding: 6px;
    }

    .hero-content {
        padding-inline: 18px;
    }

    .hero-kicker {
        gap: 9px;
        letter-spacing: 0.18em;
    }

    .hero-kicker-year {
        width: 44px;
        height: 44px;
    }

    .hero-separator {
        display: none;
    }

    .hero h1 {
        grid-template-columns: 1fr;
        justify-items: center;
        font-size: clamp(2.55rem, 12vw, 4rem);
        line-height: 1.28;
    }

    .hero-title-part {
        justify-self: center !important;
        letter-spacing: 0.08em;
    }

    .hero-subtitle {
        margin-top: 20px;
        font-size: 1rem;
        letter-spacing: 0.18em;
    }

    .scroll-cue {
        bottom: 18px;
    }

    .latest-news {
        align-items: flex-start;
        padding-top: calc(var(--header-height) + 64px);
    }

    .news-index {
        top: 10%;
        font-size: 15rem;
    }

    .news-layout {
        gap: 36px;
    }

    .news-heading h2 {
        margin-bottom: 22px;
        font-size: clamp(3rem, 16vw, 4.7rem);
    }

    .news-carousel .carousel-item {
        min-height: 0;
    }

    .news-story {
        min-height: 0;
        grid-template-columns: 1fr;
    }

    .news-story-visual {
        min-height: 230px;
        aspect-ratio: 16 / 9;
    }

    .news-story-copy {
        display: flex;
        padding: 34px 32px 42px;
        flex-direction: column;
    }

    .news-story h3 {
        margin-bottom: 18px;
        font-size: clamp(1.75rem, 8vw, 2.3rem);
        letter-spacing: 0.04em;
        line-height: 1.35;
        text-orientation: mixed;
        writing-mode: horizontal-tb;
    }

    .news-story-link {
        margin-top: 24px;
    }

    .news-carousel-controls {
        margin-top: 16px;
    }

    .news-footer-mark {
        display: none;
    }

    .inner-page {
        align-items: start;
        padding-top: calc(var(--header-height) + 92px);
    }

    .inner-page-layout {
        gap: 32px;
        padding-inline: 24px;
    }

    .inner-page h1 {
        font-size: clamp(3.5rem, 19vw, 5.4rem);
    }

    .inner-page-lead {
        margin-top: 0;
    }

    .inner-page-status {
        min-height: 220px;
        padding: 38px 32px;
    }
}

@media (max-width: 374.98px) {
    .navbar-brand img {
        width: 190px;
    }

    .navbar-toggler {
        padding: 6px;
    }

    .hero-kicker {
        gap: 8px;
        font-size: 0.64rem;
        letter-spacing: 0.14em;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
