@font-face {
    font-family: "Chewy";
    src: url("fonts/Chewy-400.ttf") format("truetype");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Manrope";
    src: url("fonts/Manrope-400.ttf") format("truetype");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Manrope";
    src: url("fonts/Manrope-500.ttf") format("truetype");
    font-style: normal;
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: "Manrope";
    src: url("fonts/Manrope-600.ttf") format("truetype");
    font-style: normal;
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: "Manrope";
    src: url("fonts/Manrope-700.ttf") format("truetype");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: "Manrope";
    src: url("fonts/Manrope-800.ttf") format("truetype");
    font-style: normal;
    font-weight: 800;
    font-display: swap;
}

:root {
    --bg: #f7f7f3;
    --bg-soft: rgba(255, 255, 255, 0.9);
    --panel: rgba(255, 255, 255, 0.9);
    --panel-strong: rgba(248, 247, 242, 0.96);
    --surface: rgba(255, 255, 255, 0.72);
    --surface-strong: rgba(255, 255, 255, 0.92);
    --border: rgba(34, 39, 44, 0.1);
    --text: #1b2227;
    --muted: #5e686e;
    --green: #43ab39;
    --blue: #21a9e1;
    --red: #ff2c1d;
    --gray: #6f7781;
    --shadow: 0 22px 54px rgba(85, 90, 96, 0.12);
    --radius-lg: 28px;
    --radius-md: 20px;
    --radius-sm: 14px;
    --max-width: 1160px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Manrope", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(67, 171, 57, 0.12), transparent 28%),
        radial-gradient(circle at 85% 18%, rgba(255, 44, 29, 0.08), transparent 24%),
        radial-gradient(circle at 76% 42%, rgba(33, 169, 225, 0.1), transparent 22%),
        linear-gradient(180deg, #fcfcf8 0%, #f4f4ef 52%, #efefe8 100%);
}

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

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

.page-shell {
    width: min(calc(100% - 32px), var(--max-width));
    margin: 0 auto;
    padding: 24px 0 56px;
}
 #header-logo {
    width: 120px;
    height: auto;}
.site-nav {
    position: sticky;
    top: 10px;
    z-index: 35;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
    padding: 10px 14px;
    border: 1px solid rgba(34, 39, 44, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 24px rgba(85, 90, 96, 0.12);
    backdrop-filter: blur(3px);
}

.site-nav-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    border-radius: 999px;
    color: #2b7823;
    font-family: "Chewy", cursive;
    font-size: 1.32rem;
    line-height: 1;
    padding: 0 12px;
}

.site-nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
}

.site-nav-links a {
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--text);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition:
        background-color 180ms ease,
        color 180ms ease;
}

.site-nav-links a:hover,
.site-nav-links a:focus-visible {
    background: rgba(33, 169, 225, 0.12);
    color: #116a8e;
}

.site-nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(34, 39, 44, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: inherit;
    cursor: pointer;
}

.site-nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 2px 0;
    border-radius: 999px;
    background: var(--text);
}

.panel,
.site-footer {
    scroll-margin-top: 80px;
}

.site-header {
    display: flex;
    justify-content: center;
    padding: 24px 0 12px;
}

.site-logo {
    width: min(100%, 760px);
    height: auto;
    filter: drop-shadow(0 18px 26px rgba(89, 95, 102, 0.12));
}

.content {
    display: grid;
    gap: 24px;
}

.panel {
    position: relative;
    overflow: hidden;
    padding: 28px;
    background: linear-gradient(180deg, var(--panel) 0%, var(--panel-strong) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
}

.panel::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.55), transparent 40%);
}

.section-heading {
    display: grid;
    gap: 6px;
    margin-bottom: 24px;
}

.eyebrow {
    margin: 0;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gray);
}

h1,
h2 {
    margin: 0;
    font-family: "Chewy", cursive;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 0.98;
}

h1 {
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    color: var(--green);
}

h2 {
    font-size: clamp(1.8rem, 3vw, 3rem);
}

.panel-audio h2 {
    color: var(--blue);
}

.panel-about h2 {
    color: var(--gray);
}

.panel-pack h2 {
    color: var(--red);
}

.section-copy,
.about-copy p {
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
}

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

.video-card {
    display: grid;
    gap: 12px;
    padding: 14px;
    border: 1px solid rgba(34, 39, 44, 0.08);
    border-radius: var(--radius-md);
    background: var(--surface);
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        background-color 180ms ease,
        box-shadow 180ms ease;
}

.video-card:hover,
.video-card:focus-within {
    transform: translateY(-4px);
    border-color: rgba(67, 171, 57, 0.35);
    background: rgba(67, 171, 57, 0.08);
    box-shadow: 0 14px 28px rgba(91, 97, 103, 0.12);
}

.video-card-link {
    display: grid;
    gap: 14px;
    color: inherit;
}

.video-card-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
}

.video-card-footer a {
    position: relative;
    color: inherit;
    text-decoration: none;
}

.video-card-footer a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: rgba(33, 169, 225, 0.8);
    transition: width 180ms ease;
}

.video-card-footer a:hover::after,
.video-card-footer a:focus-visible::after {
    width: 100%;
}

.video-card-footer a h2 {
    transition: color 180ms ease;
}

.video-card-footer a:hover h2,
.video-card-footer a:focus-visible h2 {
    color: #148cb9;
}

.video-card img {
    aspect-ratio: 16 / 9;
    width: 100%;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.media-preview {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: var(--radius-sm);
    background:
        linear-gradient(145deg, rgba(67, 171, 57, 0.12), rgba(33, 169, 225, 0.12)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(240, 242, 241, 0.94));
}

.media-preview img {
    display: none;
}

.media-preview.is-loaded img {
    display: block;
    width: 100%;
    height: 100%;
}

.video-preview-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 12px 24px rgba(27, 34, 39, 0.12);
    backdrop-filter: blur(6px);
    transform: translate(-50%, -50%);
}

.video-preview-triangle {
    width: 0;
    height: 0;
    margin-left: 4px;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    border-left: 18px solid rgba(27, 34, 39, 0.84);
}

.media-preview-placeholder {
    position: absolute;
    inset: 0;
    display: grid;
    align-content: center;
    gap: 8px;
    padding: 20px;
    text-align: left;
    color: var(--text);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0)),
        linear-gradient(140deg, rgba(67, 171, 57, 0.1), rgba(33, 169, 225, 0.08));
}

.media-preview-placeholder strong {
    font-family: "Chewy", cursive;
    font-size: 1.45rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--green);
}

.media-preview-placeholder span {
    max-width: 18ch;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.5;
}

.media-preview.is-loaded .media-preview-placeholder {
    display: none;
}

.video-role {
    justify-self: start;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(27, 34, 39, 0.06);
    color: var(--text);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

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

.portfolio-audio-button {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 16px;
    border: 1px solid rgba(27, 34, 39, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    color: var(--text);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1;
    cursor: pointer;
    transition:
        transform 180ms ease,
        background-color 180ms ease,
        border-color 180ms ease,
        color 180ms ease;
}

.portfolio-audio-button:hover,
.portfolio-audio-button:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(33, 169, 225, 0.24);
    background: rgba(255, 255, 255, 0.96);
}

.portfolio-audio-button.is-playing {
    border-color: rgba(33, 169, 225, 0.28);
    background: rgba(33, 169, 225, 0.14);
    color: #0f5977;
}

.portfolio-audio-button:disabled {
    opacity: 0.56;
    cursor: default;
}

.audio-layout,
.pack-layout,
.about-layout {
    display: grid;
    gap: 24px;
    align-items: center;
}

.audio-layout {
    grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.9fr);
}

.player-wrap {
    overflow: hidden;
    border: 1px solid rgba(34, 39, 44, 0.08);
    border-radius: var(--radius-md);
    background: var(--surface-strong);
}

.external-embed {
    position: relative;
    min-height: 360px;
}

.external-embed-placeholder {
    display: grid;
    align-content: center;
    gap: 14px;
    min-height: 360px;
    padding: 28px;
    background:
        linear-gradient(145deg, rgba(33, 169, 225, 0.12), rgba(67, 171, 57, 0.08)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 244, 239, 0.94));
}

.embed-title {
    margin: 0;
    font-family: "Chewy", cursive;
    font-size: 1.8rem;
    color: var(--blue);
}

.embed-copy {
    margin: 0;
    max-width: 42ch;
    color: var(--muted);
    line-height: 1.7;
}

.embed-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.soundcloud-player {
    display: none;
    width: 100%;
    min-height: 360px;
    border: 0;
}

.external-embed.is-loaded .external-embed-placeholder {
    display: none;
}

.external-embed.is-loaded .soundcloud-player {
    display: block;
}

.streaming-block {
    display: grid;
    gap: 18px;
}

.logo-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 112px;
    padding: 20px;
    border: 1px solid rgba(34, 39, 44, 0.08);
    border-radius: var(--radius-md);
    background: var(--surface-strong);
    box-shadow: 0 10px 24px rgba(99, 104, 110, 0.06);
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        background-color 180ms ease;
}

.logo-link:hover,
.logo-link:focus-visible {
    transform: translateY(-3px);
    border-color: rgba(33, 169, 225, 0.28);
    background: rgba(33, 169, 225, 0.08);
}

.logo-link img {
    max-height: 42px;
    width: auto;
    object-fit: contain;
}

.about-layout {
    grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
}

.profile-frame {
    position: relative;
    max-width: 320px;
    margin: 0 auto;
    padding: 10px;
    border-radius: 28px;
    background:
        linear-gradient(145deg, rgba(169, 173, 180, 0.36), rgba(169, 173, 180, 0.08)),
        rgba(255, 255, 255, 0.75);
    box-shadow: 0 18px 38px rgba(93, 98, 104, 0.12);
}

.profile-frame::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(145deg, rgba(169, 173, 180, 0.65), transparent 60%);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
}

.profile-frame img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 22px;
}

.about-copy {
    display: grid;
    gap: 16px;
}

.pack-layout {
    grid-template-columns: minmax(280px, 1.05fr) minmax(0, 0.95fr);
}

.pack-art {
    overflow: hidden;
    border-radius: var(--radius-md);
    border: 1px solid rgba(34, 39, 44, 0.08);
    box-shadow: 0 12px 28px rgba(99, 104, 110, 0.08);
}

.pack-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pack-copy {
    display: grid;
    gap: 20px;
}

.shop-links .logo-link {
    min-height: 120px;
}

.shop-links .logo-link:hover,
.shop-links .logo-link:focus-visible {
    border-color: rgba(255, 44, 29, 0.26);
    background: rgba(255, 44, 29, 0.08);
}

.shop-links .logo-link img {
    max-height: 54px;
}

.site-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
    padding: 0 8px;
    color: var(--muted);
    font-size: 0.96rem;
}

.site-footer p {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.74rem;
    font-weight: 800;
}

.site-footer a {
    color: var(--text);
    font-weight: 700;
}

.footer-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.footer-actions a,
.footer-actions button {
    white-space: nowrap;
}

.site-footer a:hover,
.site-footer a:focus-visible {
    color: var(--green);
}

.privacy-settings-link {
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--muted);
    font: inherit;
    cursor: pointer;
}

.privacy-settings-link:hover,
.privacy-settings-link:focus-visible {
    color: var(--blue);
}

.privacy-settings-fab,
.consent-button,
.consent-close {
    font: inherit;
    cursor: pointer;
}

.privacy-settings-fab {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 40;
    padding: 12px 18px;
    border: 1px solid rgba(34, 39, 44, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 26px rgba(85, 90, 96, 0.14);
    color: var(--text);
}

.consent-banner,
.consent-panel {
    position: fixed;
    z-index: 50;
    border: 1px solid rgba(34, 39, 44, 0.12);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 24px 60px rgba(85, 90, 96, 0.18);
    backdrop-filter: blur(18px);
}

.consent-banner {
    top: 50%;
    left: 50%;
    width: min(calc(100% - 32px), 760px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px;
    align-items: end;
    padding: 22px;
    border-radius: 24px;
    transform: translate(-50%, -50%);
}

.consent-banner-copy p,
.consent-panel-text,
.consent-option-text {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.consent-banner-title,
.consent-option-title {
    margin: 0 0 6px;
    color: var(--text);
    font-weight: 800;
}

.consent-banner-actions,
.consent-panel-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.consent-button {
    padding: 12px 16px;
    border-radius: 999px;
    transition:
        transform 180ms ease,
        background-color 180ms ease,
        border-color 180ms ease;
}

.consent-button:hover,
.consent-button:focus-visible,
.consent-close:hover,
.consent-close:focus-visible,
.privacy-settings-fab:hover,
.privacy-settings-fab:focus-visible {
    transform: translateY(-2px);
}

.consent-button-primary {
    border: 1px solid rgba(67, 171, 57, 0.25);
    background: rgba(67, 171, 57, 0.14);
    color: #225d1c;
}

.consent-button-primary:hover,
.consent-button-primary:focus-visible {
    background: rgba(67, 171, 57, 0.2);
}

.consent-button-secondary,
.consent-close {
    border: 1px solid rgba(34, 39, 44, 0.12);
    background: rgba(255, 255, 255, 0.86);
    color: var(--text);
}

.consent-panel {
    top: 50%;
    left: 50%;
    width: min(calc(100% - 32px), 680px);
    padding: 24px;
    border-radius: 28px;
    transform: translate(-50%, -50%);
}

.consent-panel-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 16px;
}

.consent-panel-eyebrow {
    margin: 0 0 6px;
    color: var(--gray);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.consent-panel-text {
    margin-bottom: 18px;
}

.consent-close {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    font-size: 1.6rem;
    line-height: 1;
}

.consent-option {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    padding: 18px;
    margin-bottom: 12px;
    border: 1px solid rgba(34, 39, 44, 0.08);
    border-radius: 20px;
    background: rgba(244, 245, 242, 0.9);
}

.consent-option-locked {
    background: rgba(111, 119, 129, 0.06);
}

.consent-option input[type="checkbox"] {
    width: 22px;
    height: 22px;
    accent-color: var(--green);
}

.consent-badge {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(27, 34, 39, 0.07);
    color: var(--text);
    font-size: 0.8rem;
    font-weight: 700;
}

.consent-backdrop {
    position: fixed;
    inset: 0;
    z-index: 45;
    background: rgba(24, 28, 32, 0.32);
    backdrop-filter: blur(4px);
}

.is-hidden {
    display: none !important;
}

@media (max-width: 980px) {

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

    .audio-layout,
    .pack-layout,
    .about-layout {
        grid-template-columns: 1fr;
    }

    .profile-frame {
        max-width: 280px;
    }
}

@media (max-width: 820px) {
    .site-nav {
        position: sticky;
        border-radius: 22px;
    }

    .site-nav-toggle {
        display: inline-flex;
        flex-direction: column;
    }

    .site-nav-links {
        position: absolute;
        top: calc(100% + 8px);
        right: 0;
        left: 0;
        display: none;
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 10px;
        border: 1px solid rgba(34, 39, 44, 0.12);
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 12px 26px rgba(85, 90, 96, 0.14);
        backdrop-filter: blur(14px);
    }

    .site-nav.is-open .site-nav-links {
        display: grid;
    }

    .site-nav-links a {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 680px) {
    .page-shell {
        width: min(calc(100% - 20px), var(--max-width));
        padding: 18px 0 42px;
    }

    .site-header {
        padding-top: 8px;
    }

    .panel {
        padding: 22px 18px;
        border-radius: 24px;
    }

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

    .soundcloud-player {
        min-height: 320px;
    }

    .site-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-actions,
    .embed-actions,
    .consent-banner-actions,
    .consent-panel-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .consent-banner {
        left: 10px;
        right: 10px;
        top: auto;
        bottom: 10px;
        width: auto;
        grid-template-columns: 1fr;
        padding: 18px;
        transform: none;
    }

    .consent-option {
        grid-template-columns: 1fr;
    }

    .privacy-settings-fab {
        right: 10px;
        bottom: 10px;
    }
}
