:root {
    --font-display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
    --font-ui: "Aptos", "Avenir Next", "Segoe UI", sans-serif;
    --font-mono: "SF Mono", "Aptos Mono", Consolas, monospace;
    --bg: #07090c;
    --bg-elevated: rgba(18, 24, 30, 0.82);
    --bg-soft: rgba(255, 255, 255, 0.05);
    --line: rgba(255, 255, 255, 0.11);
    --line-strong: rgba(255, 255, 255, 0.22);
    --text: #edf2f7;
    --text-soft: rgba(237, 242, 247, 0.72);
    --text-muted: rgba(237, 242, 247, 0.52);
    --accent: #d2de49;
    --accent-soft: rgba(210, 222, 73, 0.16);
    --rust: #c97834;
    --steel: #8fa1b6;
    --shadow-soft: 0 24px 60px rgba(0, 0, 0, 0.34);
    --shadow-strong: 0 36px 120px rgba(0, 0, 0, 0.5);
    --radius-sm: 1rem;
    --radius-md: 1.5rem;
    --radius-lg: 2rem;
    --radius-xl: 2.5rem;
    --shell: min(1180px, calc(100vw - 2rem));
    --space-1: clamp(0.75rem, 0.7rem + 0.3vw, 1rem);
    --space-2: clamp(1rem, 0.9rem + 0.55vw, 1.5rem);
    --space-3: clamp(1.5rem, 1.15rem + 1vw, 2.25rem);
    --space-4: clamp(2rem, 1.4rem + 1.5vw, 3.5rem);
    --space-5: clamp(3rem, 2rem + 2vw, 5rem);
    --space-6: clamp(4rem, 2.8rem + 4vw, 7rem);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    font-family: var(--font-ui);
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(201, 120, 52, 0.12), transparent 28%),
        radial-gradient(circle at top right, rgba(143, 161, 182, 0.12), transparent 30%),
        linear-gradient(160deg, #090c10 0%, #0b1014 34%, #07090c 100%);
    line-height: 1.6;
    overflow-x: hidden;
}

body::before,
body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -2;
}

body::before {
    background:
        radial-gradient(circle at 20% 10%, rgba(210, 222, 73, 0.08), transparent 0 18rem),
        radial-gradient(circle at 82% 22%, rgba(201, 120, 52, 0.08), transparent 0 20rem),
        radial-gradient(circle at 50% 100%, rgba(143, 161, 182, 0.09), transparent 0 22rem);
    filter: blur(10px);
}

body::after {
    z-index: -1;
    opacity: 0.16;
    background-image:
        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: 96px 96px;
    mask-image: linear-gradient(180deg, transparent, black 20%, black 80%, transparent);
}

::selection {
    background: rgba(210, 222, 73, 0.28);
    color: #fff;
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

.clipboard-helper {
    position: fixed;
    left: -9999px;
    top: 0;
    opacity: 0;
}

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

iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: 1rem;
    z-index: 60;
    padding: 0.8rem 1rem;
    border-radius: 999px;
    background: #fff;
    color: #111;
    transform: translateY(-200%);
    transition: transform 180ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

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

.shell {
    width: var(--shell);
    margin-inline: auto;
}

.section {
    padding-block: var(--space-6);
    position: relative;
}

.section-kicker {
    margin: 0 0 0.8rem;
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
}

.section-title {
    margin: 0;
    max-width: 18ch;
    font-family: var(--font-display);
    font-size: clamp(2rem, 1.35rem + 2vw, 4rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
    text-wrap: balance;
}

.section-intro {
    margin: 0;
    max-width: 42ch;
    color: var(--text-soft);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    min-height: 3.2rem;
    padding: 0.85rem 1.25rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        background-color 180ms ease,
        color 180ms ease,
        box-shadow 180ms ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button-primary {
    background: linear-gradient(135deg, var(--accent), #b3c032);
    color: #12140f;
    box-shadow: 0 16px 40px rgba(210, 222, 73, 0.24);
}

.button-secondary {
    border-color: var(--line-strong);
    background: rgba(255, 255, 255, 0.04);
}

.button-ghost {
    border-color: rgba(210, 222, 73, 0.26);
    background: rgba(210, 222, 73, 0.08);
    color: var(--text);
}

.text-link {
    color: var(--text-soft);
    text-decoration: underline;
    text-decoration-color: rgba(237, 242, 247, 0.2);
    text-underline-offset: 0.3em;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    padding-top: 1rem;
    transition: padding 220ms ease;
}

.site-header.is-scrolled {
    padding-top: 0.55rem;
}

.header-shell {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 0.8rem 1rem;
    border: 1px solid transparent;
    border-radius: 999px;
    background: rgba(8, 10, 14, 0.4);
    backdrop-filter: blur(14px);
    transition:
        background-color 220ms ease,
        border-color 220ms ease,
        box-shadow 220ms ease,
        transform 220ms ease;
}

.site-header.is-scrolled .header-shell {
    border-color: var(--line);
    background: rgba(8, 10, 14, 0.78);
    box-shadow: var(--shadow-soft);
}

.brand {
    display: inline-flex;
    align-items: center;
    min-width: 0;
}

.brand-logo {
    display: block;
    width: clamp(4.15rem, 4.8vw, 5.35rem);
    height: auto;
    filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.34));
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.site-nav-link {
    padding: 0.7rem 0.95rem;
    border-radius: 999px;
    color: var(--text-soft);
    transition: background-color 180ms ease, color 180ms ease;
}

.site-nav-link:hover,
.site-nav-link:focus-visible {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
}

.menu-toggle {
    display: none;
    align-items: center;
    gap: 0.85rem;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
}

.menu-toggle-label {
    font-weight: 700;
}

.menu-toggle-bars {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.menu-toggle-bars span {
    display: block;
    width: 1.1rem;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
}

body.nav-open .menu-toggle-bars span:first-child {
    transform: translateY(6px) rotate(45deg);
}

body.nav-open .menu-toggle-bars span:last-child {
    transform: translateY(-6px) rotate(-45deg);
}

.hero {
    padding-top: clamp(2rem, 1rem + 3vw, 4rem);
}

.hero-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
    gap: clamp(1.35rem, 0.95rem + 1.6vw, 3rem);
    align-items: stretch;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.1rem;
    padding-block: 0.5rem 0.8rem;
}

.hero-intro {
    display: grid;
    gap: 0.65rem;
    max-width: 38rem;
}

.hero-statement {
    margin: 0;
    max-width: 34ch;
    color: var(--text-soft);
    font-size: clamp(0.98rem, 0.93rem + 0.18vw, 1.08rem);
}

.hero-title {
    margin: 0;
    max-width: 10.8ch;
    font-family: var(--font-display);
    font-size: clamp(2.35rem, 1.55rem + 1.7vw, 3.95rem);
    line-height: 0.92;
    letter-spacing: -0.04em;
    text-wrap: balance;
}

.hero-lead {
    margin: 0;
    max-width: 40ch;
    color: var(--text-soft);
    font-size: clamp(1rem, 0.94rem + 0.2vw, 1.08rem);
}

.hero-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.hero-meta-item {
    padding: 0.95rem 1rem 1.05rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.hero-meta-label {
    display: block;
    margin-bottom: 0.45rem;
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.hero-meta-value {
    display: block;
    font-size: 0.98rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.9rem;
}

.tag-cluster {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.tag-pill {
    padding: 0.55rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(210, 222, 73, 0.24);
    background: var(--accent-soft);
    color: var(--text);
    font-size: 0.85rem;
}

.hero-visual {
    position: relative;
    display: grid;
    gap: 1.1rem;
    align-content: start;
}

.hero-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero-scene-chip {
    display: inline-flex;
    align-items: center;
    min-height: 2.4rem;
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(210, 222, 73, 0.22);
    background: rgba(210, 222, 73, 0.08);
    color: var(--text);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-scene-chip-muted {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-soft);
}

.hero-panel-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.hero-media-card,
.hero-note-card,
.hero-atmosphere-card {
    border-radius: var(--radius-xl);
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    box-shadow: var(--shadow-strong);
}

.hero-media-card {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 18%, rgba(210, 222, 73, 0.08), transparent 0 24%),
        linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.hero-media-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

.hero-media-card::before {
    content: "";
    position: absolute;
    inset: 1rem;
    border-radius: calc(var(--radius-xl) - 0.55rem);
    border: 1px solid rgba(255, 255, 255, 0.08);
    pointer-events: none;
    z-index: 1;
}

.hero-poster,
.hero-media-card > iframe {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 360ms ease, filter 360ms ease;
}

.hero-poster:hover img,
.hero-poster:focus-visible img {
    transform: scale(1.03);
    filter: saturate(1.08);
}

.hero-poster-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(7, 9, 12, 0.04) 0%, rgba(7, 9, 12, 0.14) 34%, rgba(7, 9, 12, 0.84) 100%),
        linear-gradient(90deg, rgba(7, 9, 12, 0.42) 0%, rgba(7, 9, 12, 0.02) 42%, rgba(7, 9, 12, 0.58) 100%),
        radial-gradient(circle at 18% 20%, rgba(210, 222, 73, 0.16), transparent 23%);
}

.hero-play-chip,
.hero-duration-badge {
    position: absolute;
    z-index: 1;
}

.hero-play-chip {
    left: 1.3rem;
    bottom: 1.3rem;
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.9rem 1rem;
    border-radius: 999px;
    background: rgba(8, 10, 14, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    font-weight: 700;
}

.hero-play-icon {
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #a5b22b);
    box-shadow: 0 0 0 0.4rem rgba(210, 222, 73, 0.14);
    position: relative;
}

.hero-play-icon::before {
    content: "";
    position: absolute;
    left: 0.88rem;
    top: 0.68rem;
    border-top: 0.45rem solid transparent;
    border-bottom: 0.45rem solid transparent;
    border-left: 0.72rem solid #1a1d0d;
}

.hero-duration-badge {
    right: 1.3rem;
    top: 1.3rem;
    padding: 0.7rem 0.9rem;
    border-radius: 999px;
    background: rgba(8, 10, 14, 0.68);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-family: var(--font-mono);
    font-size: 0.86rem;
}

.hero-atmosphere-card {
    padding: 1.15rem 1.2rem 1.25rem;
}

.hero-atmosphere-title {
    display: block;
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.45rem, 1.15rem + 0.7vw, 2rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
}

.hero-note-card {
    display: grid;
    gap: 0.35rem;
    align-content: start;
    padding: 1.15rem 1.15rem 1.25rem;
}

.hero-note-label {
    display: inline-block;
    margin-bottom: 0.35rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.76rem;
    font-weight: 700;
}

.hero-note-card strong {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 1.08rem + 0.45vw, 1.8rem);
    line-height: 1.04;
    letter-spacing: -0.02em;
}

.hero-note-card p {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.96rem;
    line-height: 1.55;
}

.section-videos::before,
.section-about::before,
.section-contact::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: min(94vw, 1080px);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.14), transparent);
    transform: translateX(-50%);
}

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

.video-card {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    overflow: hidden;
    transition:
        transform 200ms ease,
        border-color 200ms ease,
        box-shadow 200ms ease;
}

.video-card:hover,
.video-card.is-active {
    transform: translateY(-4px);
    border-color: rgba(210, 222, 73, 0.3);
    box-shadow: var(--shadow-soft);
}

.video-card-hit {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: left;
}

.video-card-media {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.video-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 260ms ease, filter 260ms ease;
}

.video-card:hover .video-card-media img,
.video-card:focus-within .video-card-media img {
    transform: scale(1.05);
    filter: saturate(1.06);
}

.video-card-duration {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    padding: 0.5rem 0.65rem;
    border-radius: 999px;
    background: rgba(8, 10, 14, 0.74);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-family: var(--font-mono);
    font-size: 0.82rem;
}

.video-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 0.85rem;
    padding: 1.1rem 1.1rem 1.25rem;
}

.video-card-meta {
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.video-card-title {
    font-size: 1.15rem;
    line-height: 1.25;
}

.video-card-text {
    color: var(--text-soft);
    font-size: 0.95rem;
}

.video-card-cta {
    margin-top: auto;
    color: var(--accent);
    font-weight: 700;
}

.video-card-link {
    padding: 0 1.1rem 1rem;
    color: var(--text-muted);
    font-size: 0.92rem;
}

.empty-panel {
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px dashed var(--line-strong);
    background: rgba(255, 255, 255, 0.03);
}

.empty-panel-title {
    margin: 0 0 0.45rem;
    font-weight: 700;
}

.empty-panel-text {
    margin: 0;
    color: var(--text-soft);
}

.about-shell {
    display: grid;
    gap: var(--space-4);
}

.about-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: var(--space-4);
}

.about-copy {
    display: grid;
    gap: 1rem;
    color: var(--text-soft);
}

.about-copy p {
    margin: 0;
}

.about-panels {
    display: grid;
    gap: 1rem;
}

.about-panel {
    padding: 1.3rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.about-panel strong {
    display: block;
    margin-bottom: 0.45rem;
    font-size: 1.08rem;
}

.about-panel p {
    margin: 0;
    color: var(--text-soft);
}

.contact-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: var(--space-4);
    align-items: center;
    padding: clamp(1.5rem, 1rem + 2vw, 3rem);
    border-radius: var(--radius-xl);
    border: 1px solid var(--line);
    background:
        linear-gradient(135deg, rgba(210, 222, 73, 0.08), transparent 42%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    box-shadow: var(--shadow-soft);
}

.contact-mail {
    display: inline-block;
    margin-bottom: 1rem;
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 1.2rem + 1.5vw, 2.6rem);
    line-height: 1;
}

.contact-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.contact-feedback {
    margin: 1rem 0 0;
    color: var(--accent);
}

.site-footer {
    padding-block: 0 2rem;
}

.footer-shell {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--line);
}

.footer-logo {
    display: block;
    width: clamp(8rem, 12vw, 11rem);
    height: auto;
    margin-bottom: 0.85rem;
    opacity: 0.94;
}

.footer-copy {
    margin: 0;
    max-width: 40ch;
    color: var(--text-muted);
}

.footer-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 1rem 1.25rem;
    color: var(--text-soft);
}

@media (max-width: 1120px) {
    .hero-shell,
    .about-layout,
    .contact-card {
        grid-template-columns: 1fr;
    }

    .contact-actions {
        justify-self: start;
    }
}

@media (max-width: 980px) {
    .video-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .menu-toggle {
        display: inline-flex;
    }

    .header-nav {
        position: absolute;
        left: 50%;
        top: calc(100% + 0.75rem);
        width: min(var(--shell), calc(100vw - 2rem));
        padding: 1rem;
        border-radius: 1.5rem;
        border: 1px solid var(--line);
        background: rgba(8, 10, 14, 0.94);
        box-shadow: var(--shadow-soft);
        transform: translate(-50%, -1rem);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
        flex-direction: column;
        align-items: stretch;
    }

    .site-nav {
        flex-direction: column;
        align-items: stretch;
    }

    .site-nav-link,
    .header-cta {
        min-height: 3.2rem;
        justify-content: center;
    }

    body.nav-open .header-nav {
        transform: translate(-50%, 0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
}

@media (max-width: 760px) {
    :root {
        --shell: min(1180px, calc(100vw - 1rem));
    }

    .section {
        padding-block: clamp(3rem, 10vw, 4.4rem);
    }

    .section-kicker {
        margin-bottom: 0.55rem;
        font-size: 0.72rem;
        letter-spacing: 0.2em;
    }

    .section-heading,
    .footer-shell {
        flex-direction: column;
        align-items: start;
    }

    .site-header {
        padding-top: 0.45rem;
    }

    .header-shell {
        gap: 0.8rem;
        padding: 0.66rem 0.72rem;
        border-radius: 1.25rem;
    }

    .header-nav {
        width: calc(100vw - 1rem);
        top: calc(100% + 0.55rem);
        padding: 0.8rem;
        border-radius: 1.2rem;
    }

    .menu-toggle {
        gap: 0.65rem;
        padding: 0.62rem 0.8rem;
    }

    .hero {
        padding-top: 0.55rem;
    }

    .hero-shell {
        gap: 1.1rem;
    }

    .hero-copy {
        gap: 0.8rem;
        padding-block: 0;
    }

    .hero-intro {
        gap: 0.4rem;
    }

    .hero-chip-row {
        gap: 0.55rem;
    }

    .hero-scene-chip {
        min-height: 2.1rem;
        padding: 0.45rem 0.7rem;
        font-size: 0.72rem;
    }

    .hero-title {
        max-width: 9.4ch;
        font-size: clamp(2.05rem, 8.2vw, 2.95rem);
        line-height: 0.92;
    }

    .hero-statement,
    .hero-lead {
        max-width: 100%;
        font-size: 0.96rem;
    }

    .hero-meta {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.62rem;
    }

    .hero-meta-item {
        padding: 0.78rem 0.88rem 0.84rem;
        border-radius: 1.15rem;
    }

    .hero-meta-item:last-child {
        grid-column: 1 / -1;
    }

    .hero-actions {
        gap: 0.7rem;
    }

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

    .hero-media-card,
    .hero-atmosphere-card,
    .hero-note-card,
    .about-panel,
    .contact-card,
    .video-card {
        border-radius: 1.45rem;
    }

    .hero-media-card::before {
        inset: 0.7rem;
        border-radius: 1rem;
    }

    .hero-play-chip {
        left: 0.8rem;
        bottom: 0.8rem;
        max-width: calc(100% - 1.6rem);
        gap: 0.7rem;
        padding: 0.74rem 0.82rem;
        font-size: 0.92rem;
    }

    .hero-duration-badge {
        right: 0.8rem;
        top: 0.8rem;
        padding: 0.55rem 0.68rem;
        font-size: 0.8rem;
    }

    .hero-atmosphere-card,
    .hero-note-card {
        padding: 1rem;
    }

    .hero-atmosphere-title,
    .hero-note-card strong {
        font-size: clamp(1.2rem, 4.6vw, 1.6rem);
    }

    .hero-note-card p,
    .section-intro,
    .about-copy,
    .about-panel p,
    .contact-copy .section-intro,
    .footer-copy {
        font-size: 0.96rem;
    }

    .tag-cluster {
        gap: 0.4rem;
    }

    .tag-pill {
        padding: 0.42rem 0.62rem;
        font-size: 0.74rem;
    }

    .video-card-body {
        padding: 0.95rem 0.95rem 1.1rem;
    }

    .video-card-title {
        font-size: 1.05rem;
    }

    .hero-panel-grid {
        grid-template-columns: 1fr;
    }

    .about-layout,
    .about-shell,
    .contact-card {
        gap: 1rem;
    }

    .contact-card {
        padding: 1.2rem;
    }

    .footer-meta {
        justify-content: flex-start;
        gap: 0.65rem 1rem;
    }
}

@media (max-width: 640px) {
    .header-shell {
        padding: 0.58rem 0.65rem;
        padding-right: 3.65rem;
    }

    .brand-logo {
        width: 3.45rem;
    }

    .hero-media-card {
        aspect-ratio: 16 / 9;
    }

    .hero-statement {
        display: none;
    }

    .hero-title {
        max-width: 12.2ch;
        font-size: clamp(1.88rem, 8.4vw, 2.38rem);
        line-height: 0.94;
    }

    .hero-lead {
        display: -webkit-box;
        overflow: hidden;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
    }

    .menu-toggle {
        gap: 0;
        min-width: 2.9rem;
        position: absolute;
        top: 50%;
        right: 0.65rem;
        justify-content: center;
        padding: 0.56rem 0.68rem;
        transform: translateY(-50%);
    }

    .menu-toggle-label {
        display: none;
    }

    .contact-mail {
        font-size: clamp(1.35rem, 1.1rem + 1.2vw, 1.9rem);
    }

    .contact-buttons,
    .hero-actions {
        width: 100%;
    }

    .contact-buttons .button {
        width: 100%;
        text-align: center;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: stretch;
    }

    .hero-actions .button-primary {
        grid-column: 1 / -1;
    }

    .hero-actions .button-secondary,
    .hero-actions .text-link {
        width: 100%;
        min-height: 3rem;
        text-align: center;
    }

    .hero-actions .button-secondary {
        display: inline-flex;
        justify-content: center;
    }

    .hero-actions .text-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .hero-actions {
        gap: 0.7rem;
    }

    .site-nav-link,
    .header-cta {
        min-height: 3rem;
        padding-inline: 1rem;
    }

    .tag-cluster {
        display: none;
    }
}

@media (max-width: 480px) {
    :root {
        --shell: min(1180px, calc(100vw - 0.75rem));
    }

    .section {
        padding-block: 2.7rem;
    }

    .hero-title {
        max-width: 12.8ch;
        font-size: clamp(1.64rem, 8.8vw, 2.08rem);
        line-height: 0.95;
    }

    .hero-statement {
        font-size: 0.94rem;
    }

    .hero-lead {
        font-size: 0.92rem;
    }

    .hero-meta {
        grid-template-columns: 1fr;
    }

    .hero-meta-item:last-child {
        grid-column: auto;
    }

    .hero-meta-item {
        padding: 0.72rem 0.8rem 0.78rem;
    }

    .hero-meta-label {
        margin-bottom: 0.3rem;
        font-size: 0.68rem;
    }

    .hero-meta-value {
        font-size: 0.92rem;
    }

    .hero-play-chip {
        padding: 0.68rem 0.74rem;
        font-size: 0.88rem;
    }

    .hero-play-icon {
        width: 1.8rem;
        height: 1.8rem;
    }

    .hero-play-icon::before {
        left: 0.72rem;
        top: 0.52rem;
    }

    .hero-note-card strong,
    .hero-atmosphere-title {
        font-size: 1.12rem;
    }

    .video-card-media {
        aspect-ratio: 16 / 9;
    }

    .brand-logo {
        width: 3.4rem;
    }

    .menu-toggle {
        min-width: 2.8rem;
        right: 0.62rem;
        padding: 0.52rem 0.62rem;
    }
}

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

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