:root {
    color-scheme: dark;
    --font-sans: "Plus Jakarta Sans", system-ui, sans-serif;
    --bg: #121416;
    --surface: #1a1d21;
    --surface-strong: #22262b;
    --panel: #202429;
    --border: rgba(214, 112, 63, 0.24);
    --text: #ffffff;
    --muted: #a3a3a3;
    --accent: #d6703f;
    --shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}

body[data-theme="light"] {
    color-scheme: light;
    --bg: #f3efe9;
    --surface: #fffaf5;
    --surface-strong: #ffffff;
    --panel: #f6f0e9;
    --border: rgba(214, 112, 63, 0.28);
    --text: #181512;
    --muted: #6f6862;
    --shadow: 0 18px 60px rgba(24, 21, 18, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-sans);
    transition: background-color 220ms ease, color 220ms ease;
}

body.nav-spaced {
    padding-bottom: 6.5rem;
}

::selection {
    background: rgba(214, 112, 63, 0.3);
}

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

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

button {
    font: inherit;
}

.page-shell {
    min-height: 100vh;
    padding: 4.5rem clamp(1.5rem, 4vw, 4rem) 8rem;
}

.contact-shell {
    display: grid;
    align-items: start;
}

.page-main {
    width: min(100%, 72rem);
    margin: 0 auto;
}

.contact-main {
    min-height: calc(100vh - 12rem);
    display: grid;
    grid-template-rows: auto 1fr;
}

.hero-centered {
    min-height: calc(100vh - 12rem);
    display: grid;
    place-items: center;
    text-align: center;
}

.hero-centered .page-main {
    width: min(100%, 54rem);
}

.content-block {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 700ms ease, transform 700ms ease;
}

.content-block.in-view {
    opacity: 1;
    transform: translateY(0);
}

.stack {
    display: grid;
    gap: 1.5rem;
}

.section-label,
.card-label {
    margin: 0 0 1rem;
    color: var(--muted);
    font-family: var(--font-sans);
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.card-label {
    font-size: 0.76rem;
    letter-spacing: 0.08em;
}

.headline,
.page-heading,
.story-heading {
    margin: 0;
    font-family: var(--font-sans);
    font-weight: 600;
    letter-spacing: -0.05em;
    line-height: 1.02;
}

.headline {
    font-size: clamp(2.0rem, 4.0vw, 4.0rem);
}

.page-heading {
    font-size: clamp(2.0rem, 2.8vw, 5rem);
}

.story-heading {
    font-size: clamp(2.6rem, 5.5vw, 4.2rem);
    line-height: 1.08;
}

.lede,
.body-copy,
.item-copy,
.contact-copy,
.writing-intro,
.story-body {
    color: var(--muted);
    line-height: 1.75;
  
}
.project-copy {
    color: var(--muted);
    line-height: 1.75;
}

.lede {
    margin: 1.25rem auto 0;
    max-width: 42rem;
    font-size: clamp(1rem, 1.5vw, 1.15rem);
}

.body-copy,
.item-copy,
.project-copy,
.contact-copy,
.story-body {
    margin: 0;
    max-width: 44rem;
    font-size: 1.02rem;
}

.writing-intro {
    margin: 0 0 2.5rem;
    max-width: 46rem;
    font-size: 0.98rem;
    font-style: italic;
}

.page-intro {
    display: grid;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.page-intro > .section-label,
.contact-main > .section-label,
.momo-header > .section-label,
.gallery-intro > .section-label {
    text-align: center;
}

.about-layout {
    display: grid;
    gap: 1.5rem;
}

[data-page="about"] .page-shell {
    display: grid;
    align-items: center;
}

[data-page="about"] .page-main {
    width: min(100%, 58rem);
}

[data-page="about"] .about-card {
    display: grid;
    gap: 1.25rem;
    padding: clamp(1.75rem, 4vw, 3rem);
}

[data-page="about"] .about-card .card-label {
    margin-bottom: 0.5rem;
    text-align: center;
}

[data-page="about"] .about-card .body-copy {
    width: 100%;
    max-width: 48rem;
    margin-inline: auto;
}

.card {
    padding: 1.4rem;
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-color: color-mix(in srgb, var(--border) 65%, rgba(255, 255, 255, 0.05));
    border-radius: 1.4rem;
    box-shadow: var(--shadow);
}

.center-card {
    width: min(100%, 52rem);
    margin: 2.25rem auto 0;
    text-align: left;
}

.arrow-list,
.nav-links,
.nav-socials,
.experience-list,
.project-list,
.writing-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.arrow-list,
.experience-list,
.project-list {
    display: grid;
    gap: 1rem;
}

.arrow-line,
.experience-title,
.project-title {
    display: flex;
    align-items: baseline;
    gap: 0.55rem;
    flex-wrap: wrap;
    font-size: 1rem;
    line-height: 1.5;
}

.arrow,
.arrow-accent,
.project-external,
.writing-number {
    color: var(--accent);
}

.accent-link,
.inline-link,
.contact-email {
    color: var(--accent);
    transition: color 180ms ease, text-shadow 180ms ease;
}

.accent-link:hover,
.inline-link:hover,
.contact-email:hover,
.nav-link:hover {
    color: var(--accent);
    text-shadow: 0 0 18px rgba(214, 112, 63, 0.22);
}

.skills-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.skill-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 0.9rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.02);
    color: var(--accent);
    font-size: 0.92rem;
    line-height: 1;
}

.fun-facts-card {
    display: grid;
    gap: 1rem;
    overflow: hidden;
}

.fun-fact-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: start;
    padding: 1.1rem;
    border-radius: 1.1rem;
    background: color-mix(in srgb, var(--accent) 8%, var(--surface));
    border: 1px solid color-mix(in srgb, var(--accent) 28%, transparent);
}

.fun-fact-number {
    width: 2.6rem;
    height: 2.6rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--accent);
    color: #ffffff;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 500;
    box-shadow: 0 10px 24px rgba(214, 112, 63, 0.2);
}

.fun-fact-content {
    display: grid;
    gap: 0.35rem;
}

.fun-fact-kicker {
    margin: 0;
    color: var(--accent);
    font-family: var(--font-sans);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.fun-fact-text {
    margin: 0;
    color: var(--text);
    font-size: 1.05rem;
    line-height: 1.7;
}

.experience-dates {
    color: var(--muted);
    font-family: var(--font-sans);
    font-size: 0.84rem;
}

.project-anchor {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.project-name {
    color: var(--accent);
    font-weight: 700;
    transition: color 180ms ease, text-shadow 180ms ease, transform 180ms ease;
}

.project-anchor:hover .project-name {
    color: color-mix(in srgb, var(--accent) 82%, var(--text));
    text-shadow: 0 0 18px rgba(214, 112, 63, 0.22);
    transform: translateX(2px);
}

[data-page="initiatives"] .project-list {
    gap: 0;
}

[data-page="initiatives"] .project-list > li {
    display: grid;
    gap: 1rem;
    padding: 2rem 0;
}

[data-page="initiatives"] .project-list > li:first-child {
    padding-top: 0.25rem;
}

[data-page="initiatives"] .project-list > li:last-child {
    padding-bottom: 0.25rem;
}

[data-page="initiatives"] .project-list > li:not(:last-child) {
    border-bottom: 1px solid color-mix(in srgb, var(--border) 55%, transparent);
}

[data-page="initiatives"] .project-copy {
    width: min(100%, 68ch);
    max-width: none;
    padding-left: 1.55rem;
    line-height: 1.9;
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: clamp(1.15rem, 2vw, 1.5rem);
    line-height: 1.3;
}

.social-row {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.contact-block {
    display: grid;
    justify-items: center;
    text-align: center;
    align-self: center;
}

.contact-block .section-label {
    display: none;
}

.contact-block .social-row {
    justify-content: center;
    margin-top: 3rem;
}

.icon-link,
.theme-toggle {
    width: 2.7rem;
    height: 2.7rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.03)),
        color-mix(in srgb, var(--surface-strong) 82%, transparent);
    color: var(--text);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.16),
        0 10px 24px rgba(0, 0, 0, 0.14);
    transition: color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.icon-link:hover,
.theme-toggle:hover {
    color: var(--accent);
    border-color: color-mix(in srgb, var(--border) 88%, rgba(255, 255, 255, 0.12));
    transform: translateY(-2px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 14px 28px rgba(0, 0, 0, 0.18),
        0 0 22px rgba(214, 112, 63, 0.12);
}

.bottom-nav {
    position: fixed;
    left: 50%;
    bottom: 1.25rem;
    transform: translateX(-50%);
    z-index: 30;
    isolation: isolate;
    overflow: hidden;
    width: min(calc(100% - 1.25rem), 70rem);
    padding: 0.82rem 0.92rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-radius: 2rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.04) 48%, rgba(255, 255, 255, 0.02)),
        rgba(16, 18, 23, 0.44);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.24),
        inset 0 -1px 0 rgba(255, 255, 255, 0.04),
        0 30px 80px rgba(0, 0, 0, 0.24),
        0 10px 26px rgba(0, 0, 0, 0.14);
    backdrop-filter: blur(38px) saturate(180%);
    -webkit-backdrop-filter: blur(38px) saturate(180%);
}

.bottom-nav::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    z-index: -1;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.06) 36%, transparent 78%),
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 34%);
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.95), transparent);
}

.bottom-nav::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    border-radius: inherit;
    background:
        radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.14), transparent 26%),
        radial-gradient(circle at 82% 120%, rgba(214, 112, 63, 0.08), transparent 30%);
}

body[data-theme="light"] .bottom-nav {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.46) 54%, rgba(255, 255, 255, 0.28)),
        rgba(247, 243, 239, 0.44);
    border-color: rgba(255, 255, 255, 0.64);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.96),
        inset 0 -1px 0 rgba(255, 255, 255, 0.24),
        0 30px 80px rgba(24, 21, 18, 0.12),
        0 10px 26px rgba(24, 21, 18, 0.07);
}

.nav-links,
.nav-socials {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    flex-wrap: wrap;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1rem;
    border-radius: 0.95rem;
    color: var(--muted);
    font-size: 0.93rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    transition: color 180ms ease, background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    inset: auto 0.95rem 0.48rem;
    height: 1px;
    background: color-mix(in srgb, var(--accent) 86%, transparent);
    opacity: 0;
    transition: opacity 180ms ease;
}

.nav-link:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}

body[data-theme="light"] .nav-link:hover {
    background: rgba(255, 255, 255, 0.65);
}

.nav-link.active {
    color: var(--text);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06)),
        color-mix(in srgb, var(--surface-strong) 72%, transparent);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.14),
        0 10px 22px rgba(0, 0, 0, 0.12);
}

.nav-link.active::after {
    opacity: 1;
}

body[data-theme="light"] .nav-link.active {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.48)),
        rgba(255, 255, 255, 0.24);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 10px 22px rgba(24, 21, 18, 0.08);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.writing-list {
    display: grid;
    gap: 0;
}

.writing-row {
    border-bottom: 1px solid rgba(214, 112, 63, 0.35);
}

.writing-link {
    position: relative;
    display: grid;
    grid-template-columns: 6rem 1fr;
    gap: 1rem;
    align-items: start;
    width: 100%;
    padding: 1.3rem 0;
    transition: background-color 180ms ease;
}

.writing-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 1px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 220ms ease;
}

.writing-row:hover .writing-link {
    background: rgba(214, 112, 63, 0.04);
}

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

.writing-row:hover .writing-title {
    transform: translateX(10px);
}

.writing-number {
    font-family: var(--font-sans);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 500;
    line-height: 1;
}

.writing-title-wrap {
    display: grid;
    gap: 0.55rem;
}

.writing-title {
    margin: 0;
    font-family: var(--font-sans);
    font-size: clamp(1.5rem, 2vw, 2.35rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    transition: transform 220ms ease, color 220ms ease;
}

.writing-meta {
    color: var(--muted);
    font-size: 0.95rem;
}

.story-shell {
    min-height: 100vh;
    padding: 3rem 1.5rem 6rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 2.5rem;
    color: var(--accent);
}

.story-kicker {
    margin: 0 0 0.85rem;
    color: var(--muted);
    font-family: var(--font-sans);
    font-size: 0.86rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.story-layout {
    width: min(100%, 42.5rem);
    margin: 0 auto;
}

.story-body {
    margin-top: 2rem;
}

.momo-shell {
    min-height: 100vh;
    padding: 2.5rem 0 7rem;
}

.momo-header {
    width: min(100% - 3rem, 72rem);
    margin: 0 auto 1rem;
}

.momo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: calc(100vh - 11.5rem);
}

.momo-panel {
    position: relative;
    min-height: 24rem;
    max-height: calc(100vh - 11.5rem);
    overflow: hidden;
    background: var(--panel);
}

.momo-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.28);
    transition: opacity 220ms ease;
}

.momo-panel:hover::after {
    opacity: 0.08;
}

.momo-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.momo-label {
    position: absolute;
    left: clamp(1.25rem, 3vw, 2.25rem);
    bottom: clamp(1.25rem, 3vw, 2.25rem);
    z-index: 1;
    color: #ffffff;
    font-size: clamp(1.8rem, 4vw, 3.4rem);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: underline;
    text-decoration-color: #ffffff;
    text-underline-offset: 0.25em;
    transition: color 180ms ease, text-decoration-color 180ms ease, transform 180ms ease;
}

.momo-panel:hover .momo-label {
    color: var(--accent);
    text-decoration-color: var(--accent);
    transform: translateY(-4px);
}

.gallery-intro {
    margin-bottom: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    align-items: start;
}

.gallery-card {
    display: grid;
    grid-template-rows: auto 1fr;
    padding: 0;
    overflow: hidden;
    border-radius: 1.1rem;
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: var(--shadow);
}

.gallery-card img {
    width: 100%;
    aspect-ratio: 4 / 5;
    height: auto;
    object-fit: cover;
}

.gallery-caption {
    padding: 0.9rem 1rem 1rem;
    color: var(--muted);
    font-size: 0.92rem;
}

.hours-shell {
    position: relative;
    overflow: hidden;
}

.hours-shell::before,
.hours-shell::after {
    content: "";
    position: fixed;
    inset: auto;
    pointer-events: none;
    z-index: 0;
    border-radius: 999px;
    filter: blur(18px);
    opacity: 0.48;
}

.hours-shell::before {
    top: 7rem;
    right: 7vw;
    width: 16rem;
    height: 16rem;
    background: radial-gradient(circle, rgba(214, 112, 63, 0.22) 0%, rgba(214, 112, 63, 0) 72%);
}

.hours-shell::after {
    bottom: 9rem;
    left: 5vw;
    width: 18rem;
    height: 18rem;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 74%);
}

.hours-main {
    position: relative;
    z-index: 1;
}

.hours-intro {
    width: min(100%, 50rem);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.75rem;
    text-align: center;
}

.hours-intro .section-label {
    width: calc(100% + 6rem);
    margin-left: -6rem;
    text-align: left;
}

.hours-heading {
    max-width: 16ch;
}

.hours-copy {
    margin-bottom: 0;
    max-width: 42rem;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    align-items: start;
}

.video-card {
    display: grid;
    gap: 0.8rem;
    padding: 0.85rem;
    border-radius: 1.25rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
        color-mix(in srgb, var(--surface) 92%, transparent);
    border: 1px solid color-mix(in srgb, var(--border) 55%, rgba(255, 255, 255, 0.06));
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.video-frame {
    position: relative;
    display: grid;
    width: 100%;
    padding: 0;
    border: 0;
    border-radius: 1rem;
    background:
        linear-gradient(135deg, rgba(214, 112, 63, 0.16), rgba(255, 255, 255, 0.03)),
        #0e1014;
    cursor: pointer;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.video-frame:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
}

.video-frame:hover,
.video-frame.is-previewing,
.video-frame.is-playing {
    transform: translateY(-4px);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.1),
        0 20px 42px rgba(0, 0, 0, 0.28);
}

.video-media {
    position: relative;
    aspect-ratio: 16 / 11;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(214, 112, 63, 0.26), transparent 40%),
        linear-gradient(135deg, #090b0f 0%, #171c24 55%, #0d1015 100%);
}

.video-media::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 100% 3.25rem, 3.25rem 100%;
    mix-blend-mode: soft-light;
    opacity: 0.22;
    pointer-events: none;
}

.video-poster,
.video-embed {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.video-poster {
    background:
        linear-gradient(180deg, rgba(10, 11, 15, 0.04), rgba(10, 11, 15, 0.7)),
        linear-gradient(135deg, rgba(214, 112, 63, 0.18), transparent 45%);
    background-position: center;
    background-size: cover;
    transform: scale(1.02);
    transition: transform 280ms ease, opacity 220ms ease;
}

.video-frame:hover .video-poster,
.video-frame.is-previewing .video-poster,
.video-frame.is-playing .video-poster {
    transform: scale(1.06);
}

.video-frame.is-previewing .video-poster,
.video-frame.is-playing .video-poster {
    opacity: 0;
}

.video-embed {
    border: 0;
}

.video-embed.is-preview {
    pointer-events: none;
}

.video-overlay {
    position: absolute;
    inset: auto 0 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    padding: 0.85rem 0.85rem 0.9rem;
    background: linear-gradient(180deg, rgba(7, 8, 11, 0) 0%, rgba(7, 8, 11, 0.84) 62%, rgba(7, 8, 11, 0.96) 100%);
    color: #ffffff;
}

.video-badge,
.video-action {
    font-family: var(--font-sans);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.video-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.72rem;
}

.video-action {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.72rem;
}

.video-frame.is-placeholder .video-badge {
    color: var(--accent);
    border-color: rgba(214, 112, 63, 0.38);
    background: rgba(214, 112, 63, 0.12);
}

.video-card-copy {
    padding: 0.05rem 0.1rem 0.1rem;
}

.video-description {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
    font-size: 0.93rem;
}

@media (max-width: 960px) {
    .bottom-nav {
        width: calc(100% - 1rem);
        border-radius: 1.5rem;
        padding: 0.82rem;
        flex-direction: column;
        align-items: stretch;
    }

    .nav-links,
    .nav-socials {
        justify-content: center;
        width: 100%;
    }

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

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

@media (max-width: 720px) {
    body.nav-spaced {
        padding-bottom: 8.5rem;
    }

    .page-shell {
        padding: 4rem 1.2rem 9rem;
    }

    .writing-link {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }

    .momo-shell {
        padding-bottom: 9rem;
    }

    .momo-header {
        width: calc(100% - 2.4rem);
    }

    .momo-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .momo-panel {
        min-height: 22rem;
        max-height: none;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .hours-grid {
        grid-template-columns: 1fr;
    }

    .video-overlay {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

    .content-block {
        opacity: 1;
        transform: none;
    }
}
