/* ===== RESET & VARIABLES ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-y: scroll; }
.visually-hidden {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0);
    white-space: nowrap; border: 0;
}

:root {
    --cream:        #F8F0E5;
    --peach-soft:   #FFE4D2;
    --peach:        #FFD4B8;
    --paper:        #FFF8F0;
    --ink:          #2a1f17;
    --ink-soft:     #6e5a48;
    --accent:       #c97b4a;
    --accent-dark:  #9a5530;
    --accent-soft:  #e8a87c;
    --gold:         #d4a574;
    --green:        #6b9e3e;
    --green-dark:   #558030;
    --rule:         rgba(42, 31, 23, 0.10);
    --rule-strong:  rgba(42, 31, 23, 0.18);
    --glass:        rgba(255, 248, 240, 0.55);
    --glass-strong: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.7);
    --shadow-sm:    0 4px 12px -4px rgba(42, 31, 23, 0.08);
    --shadow-md:    0 12px 32px -16px rgba(42, 31, 23, 0.15);
    --shadow-lg:    0 24px 48px -24px rgba(42, 31, 23, 0.2);
    --radius:       20px;
    --radius-sm:    14px;
    --radius-lg:    28px;
    --radius-pill:  100px;
    --font:         'DM Sans', system-ui, 'Helvetica Neue', sans-serif;
    --font-head:    'DM Serif Display', Georgia, serif;

    /* legacy aliases — zachowane dla istniejących templatów */
    --bg:           var(--cream);
    --white:        var(--paper);
    --card-shadow:  var(--shadow-md);
    --text:         var(--ink);
    --text-muted:   var(--ink-soft);
    --text-dark:    var(--ink);
    --border:       var(--rule);
}

body {
    background:
        radial-gradient(ellipse 80% 60% at 20% -10%, var(--peach-soft) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 100% 30%, var(--peach) 0%, transparent 50%),
        radial-gradient(ellipse 70% 60% at 50% 100%, #f4e2d0 0%, transparent 60%),
        var(--cream);
    font-family: var(--font);
    color: var(--ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}
@media (hover: hover) and (min-width: 1024px) {
    body { background-attachment: fixed; }
}

/* ===== LAYOUT ===== */
.page-wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* ===== NAV ===== */
body > header { display: contents; }

/* Mobile hamburger toggle */
.nav-toggle {
    display: none;
    background: transparent; border: none; cursor: pointer;
    padding: 12px; margin: 0;
    width: 48px; height: 48px;
    flex-direction: column; justify-content: center; gap: 4px;
}
.nav-toggle span {
    display: block;
    width: 22px; height: 2px;
    background: var(--ink); border-radius: 2px;
    transition: transform .3s, opacity .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-container {
    background: #ffffff;
    border-bottom: 1px solid var(--rule);
    box-shadow: 0 1px 0 rgba(0,0,0,0.02), 0 8px 24px -16px rgba(42,31,23,0.1);
    position: sticky; top: 0; z-index: 100;
}
.nav-container .page-wrap {
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
}
.nav-logo {
    font-family: var(--font-head);
    font-weight: 400; color: var(--ink);
    text-decoration: none;
    font-size: 1.35rem;
    letter-spacing: -0.01em;
    display: flex; align-items: center; gap: 12px;
}
.nav-logo-img {
    height: 52px; width: 52px;
    display: block;
    object-fit: contain;
    flex-shrink: 0;
}
.nav-links {
    list-style: none; display: flex; gap: 32px;
}
.nav-links a {
    text-decoration: none;
    color: var(--ink); opacity: 0.75;
    font-size: .95rem; font-weight: 500;
    transition: opacity .2s, color .2s;
}
.nav-links a:hover { opacity: 1; color: var(--accent); }

/* ===== BREADCRUMB ===== */
.breadcrumb {
    display: flex; gap: 8px; align-items: center;
    padding: 18px 0 6px;
    font-size: .85rem; color: var(--ink-soft);
}
.breadcrumb a { color: var(--ink-soft); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--ink); }
.breadcrumb-sep { color: var(--rule-strong); }

/* ===== MAIN ===== */
main { padding: 28px 0 64px; }

/* ===== CAROUSEL ===== */
.carousel-wrap { margin-bottom: 48px; }
.carousel-slides { position: relative; }
.carousel-slide { display: none; }
.carousel-slide.active {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--glass);
    backdrop-filter: blur(20px) saturate(1.3);
    -webkit-backdrop-filter: blur(20px) saturate(1.3);
    min-height: 360px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-lg);
}
.slide-text {
    padding: 36px 44px;
    display: flex; flex-direction: column;
    justify-content: center;
    background: transparent;
    border-radius: 0;
}
.slide-cover {
    background: rgba(255, 255, 255, 0.4);
    border-radius: 0;
    display: flex; align-items: center; justify-content: center;
    padding: 24px 18px;
}
.slide-cover img {
    max-width: 100%; max-height: 240px;
    width: auto; height: auto;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: 0 16px 32px -16px rgba(42, 31, 23, 0.25);
}
.carousel-badge {
    display: inline-block;
    font-size: .72rem; font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    padding: 5px 14px;
    border-radius: var(--radius-pill);
    margin-bottom: 14px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
}
.badge-new      { color: var(--accent-dark); }
.badge-upcoming { color: var(--green-dark); }
.slide-title {
    font-family: var(--font-head);
    font-size: 2rem; font-weight: 400;
    color: var(--ink);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
}
.slide-author {
    font-size: .95rem; color: var(--ink-soft);
    margin-bottom: 14px;
    font-style: italic;
}
.slide-desc {
    font-size: .95rem; color: var(--ink-soft);
    line-height: 1.55;
    margin-bottom: 22px;
    max-width: 540px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.slide-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.carousel-controls {
    display: flex; align-items: center; justify-content: center;
    gap: 12px; margin-top: 18px;
}
.carousel-dot {
    width: 32px; height: 32px;
    background: transparent; cursor: pointer;
    border: none; padding: 0;
    position: relative;
}
.carousel-dot::before {
    content: '';
    position: absolute; left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--rule-strong);
    transition: all .25s ease;
}
.carousel-dot.active::before {
    background: var(--accent); width: 24px;
    border-radius: 100px;
}
.carousel-arrow {
    background: var(--glass-strong);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    width: 44px; height: 44px; cursor: pointer;
    font-size: 1.1rem; color: var(--ink);
    box-shadow: var(--shadow-sm);
    transition: all .25s;
    display: inline-flex; align-items: center; justify-content: center;
}
.carousel-arrow:hover {
    background: var(--ink); color: var(--paper);
    border-color: var(--ink);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 11px 24px;
    border-radius: var(--radius-pill);
    font-size: .9rem; font-weight: 500;
    font-family: var(--font);
    text-decoration: none; cursor: pointer;
    border: none;
    transition: all .25s ease;
    line-height: 1.2;
}
.btn-primary {
    background: var(--ink); color: var(--paper);
}
.btn-primary:hover {
    background: var(--accent-dark); transform: translateY(-1px);
}
.btn-secondary {
    background: var(--glass-strong);
    backdrop-filter: blur(12px);
    color: var(--ink);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
    background: var(--ink); color: var(--paper);
    border-color: var(--ink);
}
.btn-green { background: var(--green-dark); color: #ffffff; }
.btn-green:hover { background: #3f6022; transform: translateY(-1px); }

/* ===== SECTION DIVIDER ===== */
.section-divider {
    display: flex; align-items: center; gap: 18px;
    margin: 48px 0 28px;
}
.section-divider .line { flex: 1; height: 1px; background: var(--rule); }
.section-divider .label {
    font-size: .85rem; color: var(--accent);
    font-weight: 500;
    white-space: nowrap;
    letter-spacing: 0.04em;
}

/* ===== AUTHOR BLOCKS ===== */
.author-block {
    margin-bottom: 44px;
    padding: 24px;
    background: var(--glass);
    backdrop-filter: blur(20px) saturate(1.3);
    -webkit-backdrop-filter: blur(20px) saturate(1.3);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    display: grid;
    grid-template-areas:
        "header  link"
        "books   books";
    grid-template-columns: 1fr auto;
    gap: 20px 16px;
}
.author-header {
    grid-area: header;
    display: flex; align-items: flex-start; gap: 14px;
}
.author-info { flex: 1; min-width: 0; }
.books-row { grid-area: books; }
.author-avatar {
    width: 56px; height: 56px;
    border-radius: 50%; object-fit: cover;
    background: var(--peach);
    border: 2px solid var(--glass-border);
    flex-shrink: 0;
    box-shadow: 0 4px 12px -4px rgba(42, 31, 23, 0.15);
}
.author-name {
    font-family: var(--font-head); font-weight: 400;
    font-size: 1.25rem; color: var(--ink);
    letter-spacing: -0.01em;
}
.author-bio-short {
    font-size: .85rem; color: var(--ink-soft);
    margin-top: 2px;
    font-style: italic;
}
.author-more {
    grid-area: link;
    align-self: start;
    font-size: .85rem; color: var(--accent);
    font-weight: 500; text-decoration: none;
    white-space: nowrap;
    padding: 6px 0;
}
.author-more:hover { color: var(--accent-dark); text-decoration: underline; }
.books-row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 14px;
    padding-left: 70px;
}

/* ===== BOOK CARDS ===== */
.book-card {
    background: var(--glass-strong);
    backdrop-filter: blur(16px) saturate(1.3);
    -webkit-backdrop-filter: blur(16px) saturate(1.3);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 14px;
    box-shadow: var(--shadow-sm);
    text-decoration: none; color: inherit;
    transition: all .35s ease;
    display: block;
}
.book-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    background: var(--paper);
}
.book-cover {
    border-radius: var(--radius-sm);
    width: 100%;
    object-fit: cover;
    background: var(--peach-soft);
    display: block;
    margin-bottom: 10px;
}
.book-title {
    font-family: var(--font-head);
    font-size: 1rem; font-weight: 400;
    line-height: 1.2; letter-spacing: -0.01em;
    margin-bottom: 4px;
    color: var(--ink);
}
.book-format { font-size: .78rem; color: var(--accent); font-weight: 500; }
.book-format.ebook { color: var(--ink-soft); }
.book-format.upcoming { color: var(--green-dark); font-weight: 600; }
.book-format.planned { color: #8b6f9c; font-weight: 500; font-style: italic; }

/* ===== BLOG GRID ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.blog-card {
    background: var(--glass-strong);
    backdrop-filter: blur(16px) saturate(1.3);
    -webkit-backdrop-filter: blur(16px) saturate(1.3);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 18px;
    box-shadow: var(--shadow-sm);
    text-decoration: none; color: inherit;
    transition: all .35s ease;
    display: block;
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    background: var(--paper);
}
.blog-img {
    border-radius: var(--radius-sm);
    width: 100%; aspect-ratio: 16/9;
    object-fit: cover;
    background: var(--peach-soft);
    display: block; margin-bottom: 14px;
}
.blog-cat {
    font-size: .75rem; color: var(--accent);
    font-weight: 600; margin-bottom: 6px;
    text-transform: uppercase; letter-spacing: 0.12em;
}
.blog-post-title {
    font-family: var(--font-head);
    font-size: 1.15rem; font-weight: 400;
    line-height: 1.25; letter-spacing: -0.015em;
    margin-bottom: 8px;
    color: var(--ink);
}
.blog-date { font-size: .82rem; color: var(--ink-soft); }
.blog-excerpt {
    font-size: .9rem; color: var(--ink-soft);
    margin: 10px 0; line-height: 1.55;
}

/* ===== PAGE HEADINGS ===== */
.page-title {
    font-family: var(--font-head);
    font-size: 2.4rem; font-weight: 400;
    line-height: 1.05; letter-spacing: -0.025em;
    color: var(--ink);
    margin: 32px 0 16px;
}
.page-subtitle {
    font-size: 1.05rem; color: var(--ink-soft);
    margin-bottom: 32px;
    max-width: 640px;
    line-height: 1.55;
}

/* ===== BOOK DETAIL ===== */
.book-detail {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 48px; margin-top: 24px;
}
.book-detail-cover {
    border-radius: var(--radius);
    width: 100%;
    box-shadow: var(--shadow-lg);
}
.book-detail-meta {
    display: flex; flex-direction: column; gap: 10px;
    margin: 18px 0;
    font-size: .9rem; color: var(--ink-soft);
}
.book-detail-meta strong { color: var(--ink); font-weight: 600; }
.book-shops-list { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.book-long-desc {
    margin-top: 32px;
    font-size: 1rem; line-height: 1.75;
    color: var(--ink);
}

/* ===== AUTHOR DETAIL ===== */
.author-detail {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 44px; margin-top: 24px;
}
.author-detail-photo {
    border-radius: 50%;
    width: 100%; aspect-ratio: 1;
    object-fit: cover;
    border: 4px solid var(--glass-border);
    box-shadow: var(--shadow-md);
}
.author-social-links {
    display: flex; gap: 8px; margin-top: 20px;
    flex-wrap: wrap; justify-content: center;
}
.author-social-links .btn {
    padding: 12px 18px; font-size: .85rem;
    min-height: 44px; min-width: 44px;
    display: inline-flex; align-items: center; justify-content: center;
}
.author-books-section { margin-top: 44px; }

/* ===== BOOK REVIEWS ===== */
.book-reviews-section { margin-top: 48px; }
.book-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 24px;
}
.book-review {
    background: var(--glass-strong);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 20px 22px;
    box-shadow: var(--shadow-sm);
}
.book-review-stars {
    font-size: 1.05rem;
    margin-bottom: 12px;
}
.book-review-body {
    font-family: var(--font-head);
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.55;
    color: var(--ink);
    margin: 0 0 14px;
    border: none;
    padding: 0;
}
.book-review-author {
    font-size: .88rem;
    color: var(--ink-soft);
}
.book-review-author a { color: var(--accent); text-decoration: none; }
.book-review-author a:hover { color: var(--accent-dark); text-decoration: underline; }

/* ===== PAGINATION ===== */
.pagination {
    display: flex; justify-content: center; gap: 10px;
    margin-top: 44px;
}
.pagination a,
.pagination span {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px;
    border-radius: 50%;
    text-decoration: none;
    font-weight: 500; font-size: .9rem;
    transition: all .25s;
}
.pagination a {
    background: var(--glass-strong);
    backdrop-filter: blur(12px);
    color: var(--ink);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
}
.pagination a:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.pagination .current { background: var(--ink); color: var(--paper); }

/* ===== FOOTER ===== */
.site-footer {
    margin-top: 64px;
    padding: 36px 0;
    background: rgba(42, 31, 23, 0.04);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--rule);
}
.footer-inner {
    display: flex; justify-content: space-between; align-items: center;
    gap: 16px; flex-wrap: wrap;
}
.site-footer, .site-footer a {
    color: var(--ink-soft); font-size: .9rem;
    text-decoration: none;
    transition: color .2s;
}
.site-footer a:hover { color: var(--accent); }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }

/* Legal pages */
.legal-page { max-width: 820px; margin: 0 auto; padding: 16px 0 64px; }
.legal-page .page-title { margin-top: 0; }
.legal-page .legal-meta {
    color: var(--ink-soft); font-size: .9rem; font-style: italic;
    margin-bottom: 36px;
}
.legal-page h2 {
    font-family: var(--font-head);
    font-size: 1.4rem; font-weight: 400;
    margin: 36px 0 14px;
    color: var(--ink);
    letter-spacing: -0.01em;
}
.legal-page p { margin-bottom: 14px; line-height: 1.7; color: var(--ink); }
.legal-page ul, .legal-page ol { margin: 0 0 18px 24px; line-height: 1.7; }
.legal-page li { margin-bottom: 6px; }
.legal-page a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.legal-page a:hover { color: var(--accent-dark); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .page-wrap { padding: 0 20px; }
    .author-block {
        grid-template-areas:
            "header"
            "link"
            "books";
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .author-more {
        justify-self: center;
        padding: 10px 18px;
        background: rgba(255,255,255,0.6);
        border: 1px solid var(--glass-border);
        border-radius: 100px;
    }
    .author-bio-short {
        font-size: .9rem;
        line-height: 1.5;
    }
    .books-row { grid-template-columns: repeat(2, 1fr); padding-left: 0; }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .book-detail { grid-template-columns: 1fr; gap: 28px; }
    .author-detail { grid-template-columns: 1fr; gap: 28px; }
    .carousel-slide.active { grid-template-columns: 1fr; }
    .slide-cover { display: none; }
    .slide-text { padding: 28px 24px; }
    .slide-title { font-size: 1.6rem; }
    .page-title { font-size: 2rem; }
}
@media (max-width: 600px) {
    .books-row { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: 1fr; }
    .nav-container .page-wrap { height: 64px; }
}

@media (max-width: 768px) {
    .nav-toggle { display: inline-flex; }
    .nav-links {
        display: none;
        position: absolute; top: 100%; left: 0; right: 0;
        flex-direction: column; gap: 0;
        background: #fff;
        border-top: 1px solid var(--rule);
        box-shadow: 0 8px 24px -8px rgba(42,31,23,0.15);
        padding: 8px 0;
    }
    .nav-links.open { display: flex; }
    .nav-links li { width: 100%; }
    .nav-links a {
        display: block; padding: 14px 24px;
        font-size: 16px;
        border-bottom: 1px solid var(--rule);
    }
    .nav-links li:last-child a { border-bottom: none; }
    .nav-container { position: relative; }

    /* Disable backdrop-filter on mobile (perf) */
    .carousel-slide.active,
    .book-card,
    .blog-card,
    .author-block,
    .post {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
}

/* CLS prevention — wszystkie covers/avatars 1:1 */
.book-cover,
.book-card .book-cover,
.book-detail-cover,
.author-avatar,
.author-detail-photo {
    aspect-ratio: 1 / 1 !important;
    height: auto !important;
    object-fit: cover;
}
.blog-img { aspect-ratio: 16 / 9; }
.slide-cover img { aspect-ratio: 1 / 1; max-height: 320px; object-fit: cover; }
@font-face {
  font-family: 'DM Sans';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/dm-sans-400-italic-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'DM Sans';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/dm-sans-400-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/dm-sans-400-normal-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/dm-sans-400-normal-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/assets/fonts/dm-sans-500-normal-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/assets/fonts/dm-sans-500-normal-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/dm-sans-700-normal-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/dm-sans-700-normal-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'DM Serif Display';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/dm-serif-display-400-italic-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'DM Serif Display';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/dm-serif-display-400-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'DM Serif Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/dm-serif-display-400-normal-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'DM Serif Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/dm-serif-display-400-normal-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}