:root {
    color-scheme: dark;
    --ink: #0a0a0c;
    --panel: #131318;
    --panel-2: #1b1b22;
    --bone: #f4f1ea;
    --muted: #9a9aa3;
    --blood: #d6242e;
    --blood-dark: #a51820;
    --line: rgba(244, 241, 234, .1);
    --display: "Oswald", "Arial Narrow", sans-serif;
    --body: "Archivo", system-ui, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--ink);
    color: var(--bone);
    font-family: var(--body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

img,
video {
    max-width: 100%;
}

.wrap {
    width: min(1200px, 92vw);
    margin-inline: auto;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .9rem clamp(1rem, 4vw, 2.5rem);
    background: rgba(10, 10, 12, .82);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}

.logo {
    display: flex;
    align-items: center;
    gap: .8rem;
}

.logo img {
    width: 42px;
    height: 42px;
    border-radius: 6px;
    object-fit: cover;
    border: 1px solid var(--line);
}

.logo h1 {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(1rem, 1.4vw, 1.25rem);
    letter-spacing: .12em;
    line-height: 1.05;
    text-transform: uppercase;
}

.links {
    display: flex;
    align-items: center;
    gap: .3rem;
}

.links a {
    font-family: var(--display);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .82rem;
    padding: .55rem .85rem;
    color: var(--muted);
    transition: color .2s, background .2s;
}

.links a:hover,
.links a.active {
    color: var(--bone);
}

.links a.active {
    background: rgba(244, 241, 234, .05);
}

.links a.cta {
    background: var(--blood);
    color: #fff;
    border-radius: 4px;
    margin-left: .5rem;
    transition: background .2s, transform .15s;
}

.links a.cta:hover {
    background: var(--blood-dark);
    transform: translateY(-1px);
}

.burger {
    display: none;
    background: none;
    border: 0;
    color: var(--bone);
    cursor: pointer;
    padding: .4rem;
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--bone);
    margin: 5px 0;
    transition: .25s;
}

.btn,
.button,
.add-to-cart,
.cart-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--display);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 600;
    font-size: .95rem;
    line-height: 1.1;
    padding: 1rem 2rem;
    border-radius: 4px;
    cursor: pointer;
    transition: transform .15s, background .2s, border-color .2s;
}

.btn-primary,
.add-to-cart,
.cart-button {
    background: var(--blood);
    color: #fff;
    border: 1px solid var(--blood);
}

.btn-primary:hover,
.add-to-cart:hover,
.cart-button:hover {
    background: var(--blood-dark);
    transform: translateY(-2px);
}

.btn-ghost,
.button {
    background: transparent;
    color: var(--bone);
    border: 1px solid var(--line);
}

.btn-ghost:hover,
.button:hover {
    border-color: var(--bone);
    transform: translateY(-2px);
}

.page-hero,
.hero-shop {
    position: relative;
    overflow: hidden;
    padding: clamp(4rem, 9vh, 7rem) 0 clamp(3rem, 7vh, 5rem);
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(180deg, rgba(10, 10, 12, .72) 0%, var(--ink) 100%),
        radial-gradient(120% 80% at 70% 20%, rgba(214, 36, 46, .22), transparent 60%);
}

.page-hero h1,
.hero-shop h2 {
    font-family: var(--display);
    font-weight: 700;
    text-transform: uppercase;
    font-size: clamp(2.5rem, 7vw, 5.4rem);
    line-height: .94;
    letter-spacing: -.01em;
}

.page-hero p,
.hero-shop p {
    max-width: 56ch;
    color: var(--muted);
    font-size: clamp(1.05rem, 1.6vw, 1.2rem);
    margin-top: 1.1rem;
}

.eyebrow,
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-family: var(--display);
    text-transform: uppercase;
    letter-spacing: .25em;
    font-size: .78rem;
    color: var(--blood);
    margin-bottom: 1rem;
}

.eyebrow::before,
.section-tag::before {
    content: "";
    width: 32px;
    height: 2px;
    background: var(--blood);
}

.btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.8rem;
}

.section,
.gallery,
.content,
.blog-container,
.shop-container {
    width: min(1200px, 92vw);
    margin-inline: auto;
}

.section,
.gallery,
.content {
    padding: clamp(4rem, 10vh, 7rem) 0;
}

.section h2,
.gallery h2,
.content h2,
.concepts-head {
    font-family: var(--display);
    font-weight: 700;
    text-transform: uppercase;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    line-height: 1;
    margin-bottom: 1.5rem;
}

.section p,
.content p {
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 70ch;
}

.panel-card,
.product,
.post,
.timetable-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 10px;
    background-image: radial-gradient(80% 60% at 80% 0%, rgba(214, 36, 46, .14), transparent 60%);
}

.shop-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.2rem;
    padding: clamp(3rem, 7vh, 5rem) 0 1.5rem;
}

.shop-sections {
    width: min(1200px, 92vw);
    margin-inline: auto;
    padding: clamp(3rem, 7vh, 5rem) 0 1.5rem;
}

.shop-section {
    padding-bottom: clamp(2.5rem, 6vh, 4rem);
}

.shop-section .shop-container {
    width: 100%;
    padding: 1.25rem 0 0;
}

.shop-section-head {
    max-width: 760px;
}

.shop-section-head h3 {
    font-family: var(--display);
    font-weight: 700;
    text-transform: uppercase;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    line-height: 1;
    margin-bottom: .85rem;
}

.shop-section-head p {
    color: var(--muted);
    font-size: 1.05rem;
}

.shop-section-banner {
    display: block;
    width: min(100%, 760px);
    max-height: 280px;
    object-fit: cover;
    margin-top: 1.2rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #000;
}

.product {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.product > img,
.product-media {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #07070a;
}

.product > img,
.product-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product h2,
.product h3 {
    font-family: var(--display);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.25rem;
    line-height: 1.08;
    margin: 1.1rem 1.1rem .75rem;
}

.product p,
.description {
    color: var(--muted);
    margin: 0 1.1rem 1rem;
}

.product .price,
.price,
.product p:last-of-type {
    color: var(--bone);
    font-weight: 600;
}

.add-to-cart {
    width: calc(100% - 2.2rem);
    margin: auto 1.1rem 1.1rem;
    padding: .85rem 1rem;
}

.product-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1.1rem;
}

.product-body h3,
.product-body p {
    margin-left: 0;
    margin-right: 0;
}

.product-body .add-to-cart {
    width: 100%;
    margin: 0;
}

.actions {
    margin-top: auto;
    padding-top: 1rem;
}

.category,
.featured,
.tag {
    display: inline-flex;
    width: fit-content;
    font-family: var(--display);
    text-transform: uppercase;
    letter-spacing: .06em;
    font-size: .82rem;
    padding: .5rem .9rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--bone);
    background: rgba(244, 241, 234, .03);
    margin-bottom: .75rem;
}

.featured {
    border-color: rgba(214, 36, 46, .5);
    color: var(--blood);
}

.cart-button {
    width: fit-content;
    margin: 0 auto 3rem;
}

.blog-container {
    display: grid;
    gap: 1.25rem;
    padding: clamp(3rem, 7vh, 5rem) 0;
}

.content-grid {
    display: grid;
    width: min(1200px, 92vw);
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-inline: auto;
    padding: clamp(3rem, 7vh, 5rem) 0;
}

.content-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 10px;
    background-image: radial-gradient(80% 60% at 80% 0%, rgba(214, 36, 46, .14), transparent 60%);
}

.content-card.is-featured {
    border-color: rgba(214, 36, 46, .45);
}

.content-card-media {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    background: #07070a;
}

.content-card-media.square {
    aspect-ratio: 1 / 1;
}

.content-card-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1.25rem;
}

.content-card h2 {
    font-family: var(--display);
    font-weight: 700;
    text-transform: uppercase;
    font-size: clamp(1.35rem, 2.6vw, 2rem);
    line-height: 1;
    margin: .25rem 0 .7rem;
}

.content-card .button {
    width: fit-content;
    margin-top: auto;
    padding: .85rem 1.1rem;
}

.article-page {
    width: min(1100px, 92vw);
    margin-inline: auto;
    padding: clamp(3rem, 7vh, 5rem) 0;
}

.article-shell {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: clamp(1.5rem, 4vw, 3rem);
    background-image: radial-gradient(80% 60% at 80% 0%, rgba(214, 36, 46, .12), transparent 60%);
}

.article-shell h1 {
    font-family: var(--display);
    font-weight: 700;
    text-transform: uppercase;
    font-size: clamp(2.4rem, 6vw, 4.8rem);
    line-height: .95;
    margin: .7rem 0 1rem;
}

.article-summary {
    color: var(--bone);
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    margin: 1.2rem 0;
}

.article-body {
    color: var(--muted);
    font-size: 1.05rem;
    white-space: pre-line;
}

.article-image {
    display: block;
    width: 100%;
    max-height: 620px;
    object-fit: cover;
    margin: 1.5rem 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #000;
}

.back-link {
    display: inline-flex;
    margin-bottom: 1rem;
    font-family: var(--display);
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--blood);
}

.podcast-layout {
    display: grid;
    grid-template-columns: minmax(220px, 360px) 1fr;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: start;
}

.podcast-cover {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #000;
}

.audio-panel {
    margin: 1.5rem 0;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(244, 241, 234, .04);
}

.audio-panel h2 {
    font-family: var(--display);
    font-size: 1.2rem;
    text-transform: uppercase;
    margin-bottom: .8rem;
}

.audio-panel audio {
    width: 100%;
}

.audio-panel video {
    display: block;
    width: 100%;
    max-height: 520px;
    background: #000;
    border-radius: 6px;
}

.post {
    padding: clamp(1.5rem, 3vw, 2rem);
}

.post h2 {
    font-family: var(--display);
    font-weight: 700;
    text-transform: uppercase;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    line-height: 1;
    margin-bottom: .65rem;
}

.post .date {
    font-family: var(--display);
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: .72rem;
    color: var(--muted);
    margin-bottom: 1rem;
}

.post .content {
    color: var(--muted);
    white-space: pre-line;
}

.post .media {
    margin-top: 1rem;
}

.post .media img,
.post .media video {
    display: block;
    width: 100%;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: #000;
}

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

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 1rem;
}

.gallery-grid img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--panel);
    transition: transform .2s, border-color .2s, filter .2s;
}

.gallery-grid img:hover {
    transform: translateY(-3px);
    border-color: rgba(214, 36, 46, .7);
    filter: contrast(1.08);
}

.gallery-intro {
    max-width: 760px;
    margin: -1rem auto 2rem;
    text-align: center;
    color: var(--muted);
}

.gallery-card {
    margin: 0;
}

.gallery-card a {
    display: block;
}

.gallery-card figcaption {
    display: grid;
    gap: .2rem;
    margin-top: .55rem;
    color: var(--muted);
    font-size: .9rem;
}

.gallery-card figcaption strong {
    color: var(--bone);
}

.content {
    text-align: left;
}

.content img,
.timetable-image {
    display: block;
    width: 100%;
    margin-top: 1.5rem;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--bone);
}

.timetable-card {
    padding: clamp(1.5rem, 3vw, 2rem);
}

.timetable-list {
    display: grid;
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.timetable-day {
    display: grid;
    gap: .8rem;
}

.timetable-day h3 {
    margin: 0;
    color: var(--bone);
}

.timetable-classes {
    display: grid;
    gap: .75rem;
}

.timetable-class {
    display: grid;
    grid-template-columns: minmax(180px, .8fr) 1.2fr;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .04);
}

.timetable-class strong,
.timetable-class span {
    display: block;
}

.timetable-class strong {
    color: var(--bone);
    font-family: var(--display);
    text-transform: uppercase;
}

.timetable-class span,
.timetable-class p {
    color: var(--muted);
    margin: .15rem 0 0;
}

@media (max-width: 720px) {
    .timetable-class {
        grid-template-columns: 1fr;
    }
}

.cta-band {
    background: var(--blood);
    padding: clamp(3rem, 7vh, 5rem) 0;
    text-align: center;
}

.cta-band h3 {
    font-family: var(--display);
    font-weight: 700;
    text-transform: uppercase;
    font-size: clamp(2rem, 5vw, 3.6rem);
    line-height: 1;
    color: #fff;
}

.cta-band p {
    color: rgba(255, 255, 255, .82);
    max-width: 54ch;
    margin: 1rem auto 1.8rem;
}

.cta-band .btn-primary {
    background: #fff;
    color: var(--blood);
    border-color: #fff;
}

footer {
    background: var(--panel-2);
    padding: 3.5rem 0 2rem;
    border-top: 1px solid var(--line);
}

.foot-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    align-items: flex-start;
}

.foot-logos {
    display: flex;
    gap: .8rem;
}

.foot-logos img {
    width: 46px;
    height: 46px;
    max-width: 46px;
    min-width: 46px;
    flex: 0 0 46px;
    border-radius: 6px;
    object-fit: cover;
    border: 1px solid var(--line);
}

footer .logo img {
    width: 42px;
    height: 42px;
    max-width: 42px;
    min-width: 42px;
    flex: 0 0 42px;
}

footer a.fb {
    font-family: var(--display);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .85rem;
    color: var(--bone);
    border-bottom: 2px solid var(--blood);
    padding-bottom: 2px;
}

.copy {
    color: var(--muted);
    font-size: .85rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
}

.preview-banner,
.preview-warning {
    margin: 0;
    padding: .7rem 1rem;
    text-align: center;
    font-weight: 600;
}

.preview-banner {
    background: #4b2a00;
    color: #ffd99a;
}

.preview-warning {
    background: #5b170f;
    color: #ffd1c9;
}

.placeholder {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    color: var(--muted);
}

.page-content-image {
    display: block;
    width: min(100%, 560px);
    max-height: 360px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--line);
    margin: 1.25rem 0;
}

.hero-content-image {
    width: min(100%, 680px);
    max-height: 420px;
}

.cta-content-image {
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 760px) {
    .burger {
        display: block;
    }

    .links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        background: rgba(10, 10, 12, .96);
        border-bottom: 1px solid var(--line);
        padding: .8rem 1rem 1rem;
    }

    .links.open {
        display: flex;
    }

    .links a {
        padding: .8rem;
    }

    .links a.cta {
        margin-left: 0;
        text-align: center;
    }

    .navbar {
        position: sticky;
    }

    .page-hero,
    .hero-shop {
        padding-top: 3rem;
    }

    .podcast-layout {
        grid-template-columns: 1fr;
    }

    .foot-logos {
        justify-content: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}
