:root {
    --ink: #16120f;
    --charcoal: #25201b;
    --paper: #f7f0df;
    --parchment: #ead7ad;
    --brass: #c69437;
    --brass-dark: #8a6426;
    --ruby: #812e35;
    --moss: #45604d;
    --sapphire: #1f4f7a;
    --sapphire-dark: #10263f;
    --sapphire-soft: rgba(31, 79, 122, 0.12);
    --mist: #f9f6ed;
    --line: rgba(22, 18, 15, 0.14);
    --shadow: 0 24px 70px rgba(22, 18, 15, 0.22);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--mist);
    font-family: Inter, Arial, sans-serif;
    line-height: 1.6;
}

body.nav-open {
    overflow: hidden;
}

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

img {
    max-width: 100%;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 20;
    display: flex;
    width: 100%;
    min-height: 76px;
    align-items: center;
    justify-content: space-between;
    padding: 16px 36px;
    color: #fff;
    background: linear-gradient(180deg, rgba(15, 12, 10, 0.84), rgba(15, 12, 10, 0.16));
    transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
    background: linear-gradient(90deg, rgba(16, 38, 63, 0.95), rgba(24, 18, 14, 0.94) 42%, rgba(24, 18, 14, 0.96));
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(12px);
}

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

.brand img {
    display: block;
    width: 100px;
    height: 100px;
    max-width: 100px;
    object-fit: contain;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    font-weight: 700;
}

.site-nav a {
    position: relative;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.92rem;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown::after {
    position: absolute;
    top: 100%;
    right: 0;
    display: block;
    width: 380px;
    height: 18px;
    content: "";
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 0;
    padding: 0;
    color: rgba(255, 255, 255, 0.82);
    background: transparent;
    font: inherit;
    cursor: pointer;
}

.nav-dropdown-toggle::after {
    width: 0;
    height: 0;
    border-inline: 5px solid transparent;
    border-top: 6px solid currentColor;
    content: "";
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 18px);
    right: 0;
    z-index: 30;
    display: grid;
    width: 380px;
    max-height: min(70vh, 620px);
    overflow: auto;
    overscroll-behavior: contain;
    scrollbar-color: var(--brass) rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(71, 128, 174, 0.28);
    border-radius: 8px;
    background: linear-gradient(145deg, rgba(16, 38, 63, 0.98), rgba(24, 18, 14, 0.98) 48%, rgba(24, 18, 14, 0.98));
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.nav-dropdown-menu a {
    display: grid;
    gap: 2px;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    scroll-margin-block: 12px;
}

.nav-dropdown-menu a:last-child {
    border-bottom: 0;
}

.nav-dropdown-menu a::after {
    display: none;
}

.nav-dropdown-menu span {
    color: var(--parchment);
    font-size: 0.72rem;
    text-transform: uppercase;
}

.nav-dropdown-menu strong {
    color: #fff;
    font-size: 0.92rem;
}

.site-nav a::after {
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--brass), var(--sapphire));
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.site-nav a.active {
    color: #fff;
}

.site-nav a.active::after {
    transform: scaleX(1);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.24);
    color: #fff;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: currentColor;
}

.hero {
    position: relative;
    display: grid;
    min-height: 92vh;
    align-items: end;
    overflow: hidden;
    color: #fff;
    background: var(--ink);
}

.hero-media,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-media {
    background-image: url("images/chronicle-hero.png");
    background-position: center;
    background-size: cover;
    transform: scale(1.02);
}

.hero-overlay {
    background:
        radial-gradient(circle at 78% 22%, rgba(31, 79, 122, 0.34), transparent 30%),
        radial-gradient(circle at 32% 58%, rgba(247, 213, 127, 0.26), transparent 26%),
        linear-gradient(90deg, rgba(14, 10, 8, 0.88), rgba(16, 38, 63, 0.36) 48%, rgba(14, 10, 8, 0.78)),
        linear-gradient(0deg, rgba(14, 10, 8, 0.86), transparent 52%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto 134px;
    padding-top: 130px;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--parchment);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.eyebrow.dark {
    color: var(--ruby);
}

h1,
h2,
h3 {
    margin: 0;
    font-family: Cinzel, Georgia, serif;
    line-height: 1.08;
}

h1 {
    max-width: 680px;
    font-size: 4.65rem;
}

h2 {
    font-size: 2.65rem;
}

h3 {
    font-size: 1.35rem;
}

.hero-copy {
    max-width: 620px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.16rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 12px 18px;
    font-weight: 800;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button.primary {
    background: var(--brass);
    color: #17120d;
    box-shadow: 0 10px 24px rgba(16, 38, 63, 0.18);
}

.button.ghost {
    border-color: rgba(255, 255, 255, 0.36);
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.light-button {
    background: var(--paper);
}

.hero-stats {
    position: absolute;
    right: 38px;
    bottom: 28px;
    z-index: 3;
    display: grid;
    width: min(520px, calc(100% - 76px));
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(18, 13, 10, 0.66);
    backdrop-filter: blur(14px);
}

.hero-stats div {
    min-height: 92px;
    padding: 18px;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-stats div:last-child {
    border-right: 0;
}

.hero-stats strong {
    display: block;
    color: var(--parchment);
    font-family: Cinzel, Georgia, serif;
    font-size: 1.9rem;
    line-height: 1;
}

.hero-stats span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.82rem;
}

.section-band {
    padding: 92px 36px;
}

.section-grid,
.section-heading,
.book-grid,
.feature-strip,
.character-grid,
.timeline,
.buy-band,
.site-footer {
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto;
}

.section-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 56px;
    align-items: start;
}

.rich-copy {
    color: rgba(22, 18, 15, 0.76);
    font-size: 1.05rem;
}

.rich-copy p:first-child {
    margin-top: 0;
}

.feature-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    padding: 0;
    background: var(--line);
}

.feature-strip article {
    min-height: 256px;
    padding: 34px;
    background: #fffaf0;
}

.feature-strip span,
.book-number,
.timeline-item span {
    color: var(--brass-dark);
    font-weight: 900;
}

.feature-strip h3 {
    margin-top: 40px;
}

.feature-strip p {
    color: rgba(22, 18, 15, 0.7);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 38px;
    text-align: center;
}

.section-heading p:last-child {
    color: rgba(22, 18, 15, 0.68);
}

.book-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.book-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 620px;
    padding: 24px;
    overflow: hidden;
    border: 1px solid rgba(31, 79, 122, 0.18);
    border-radius: 8px;
    background:
        radial-gradient(circle at 96% 4%, var(--sapphire-soft), transparent 32%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(234, 215, 173, 0.36)),
        #fffaf0;
    box-shadow: 0 14px 40px rgba(22, 18, 15, 0.08);
}

.book-card::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--ruby), var(--brass), var(--sapphire), var(--moss));
    content: "";
}

.book-cover {
    margin: 0 0 20px;
}

.book-cover img {
    display: block;
    width: 100%;
    aspect-ratio: 2 / 3;
    border: 1px solid rgba(22, 18, 15, 0.12);
    border-radius: 8px;
    background: var(--paper);
    box-shadow: 0 14px 30px rgba(16, 38, 63, 0.16);
    object-fit: cover;
}

.book-card h3 {
    margin-top: 18px;
}

.book-card p {
    color: rgba(22, 18, 15, 0.68);
}

.book-card .book-buy-button {
    min-height: 44px;
    align-self: center;
    margin-top: auto;
    color: #17120d;
    font-weight: 900;
}

.book-title-link {
    color: inherit;
}

.disabled-button {
    cursor: not-allowed;
    opacity: 0.78;
    pointer-events: none;
}

.book-buy-button {
    padding-inline: 16px;
    box-shadow: 0 10px 24px rgba(138, 100, 38, 0.22);
}

.about-page {
    background: var(--mist);
}

.about-hero {
    position: relative;
    display: grid;
    min-height: 82vh;
    align-items: end;
    overflow: hidden;
    padding: 140px 36px 96px;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(15, 11, 9, 0.9), rgba(15, 11, 9, 0.48) 46%, rgba(15, 11, 9, 0.76)),
        linear-gradient(0deg, rgba(15, 11, 9, 0.88), rgba(15, 11, 9, 0.12) 62%),
        var(--about-hero-image) center 18% / cover no-repeat,
        var(--charcoal);
}

.about-hero-copy {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto;
}

.about-hero-copy h1 {
    max-width: 780px;
}

.about-story {
    padding-top: 104px;
}

.about-milestones {
    display: grid;
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.about-milestone {
    min-height: 292px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(234, 215, 173, 0.3)),
        #fffaf0;
    box-shadow: 0 14px 40px rgba(22, 18, 15, 0.08);
}

.about-milestone span {
    color: var(--brass-dark);
    font-weight: 900;
}

.about-milestone h3 {
    margin-top: 28px;
}

.about-milestone p {
    color: rgba(22, 18, 15, 0.7);
}

.about-photo-grid {
    display: grid;
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.about-photo-grid figure {
    margin: 0;
}

.about-photo-grid img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    border: 1px solid rgba(22, 18, 15, 0.12);
    border-radius: 8px;
    box-shadow: 0 18px 46px rgba(22, 18, 15, 0.13);
    object-fit: cover;
}

.about-photo-grid figcaption {
    margin-top: 10px;
    color: rgba(22, 18, 15, 0.68);
    font-size: 0.9rem;
    font-weight: 800;
}

.about-contact {
    display: grid;
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto 88px;
    grid-template-columns: 1fr auto;
    gap: 36px;
    align-items: center;
    padding: 56px;
    border-radius: 8px;
    color: #fff;
    background:
        radial-gradient(circle at 84% 18%, rgba(198, 148, 55, 0.32), transparent 26%),
        linear-gradient(135deg, var(--moss), #2d211c 52%, var(--ruby));
    box-shadow: var(--shadow);
}

.about-contact-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: flex-end;
}

.book-detail-page {
    background: var(--mist);
}

.book-detail-hero {
    padding: 132px 36px 82px;
    color: #fff;
    background:
        radial-gradient(circle at 78% 22%, rgba(198, 148, 55, 0.22), transparent 28%),
        linear-gradient(135deg, rgba(22, 18, 15, 0.98), rgba(63, 39, 31, 0.94) 56%, rgba(69, 96, 77, 0.92)),
        var(--charcoal);
}

.book-detail-shell {
    display: grid;
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto;
    grid-template-columns: 330px 1fr;
    gap: 58px;
    align-items: center;
}

.book-detail-cover {
    margin: 0;
}

.book-detail-cover img {
    display: block;
    width: 100%;
    aspect-ratio: 2 / 3;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
    object-fit: cover;
}

.book-detail-copy h1 {
    max-width: 780px;
}

.book-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.book-detail-body {
    display: grid;
    gap: 46px;
}

.book-detail-text {
    width: min(880px, calc(100% - 48px));
    margin-inline: auto;
    color: rgba(22, 18, 15, 0.78);
    font-size: 1.06rem;
}

.book-detail-kicker {
    margin: 0 0 18px;
    color: var(--ruby);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.book-detail-text p {
    margin: 0 0 22px;
}

.book-detail-text p:not(.book-detail-kicker) {
    padding: 22px 24px;
    border-left: 3px solid rgba(198, 148, 55, 0.55);
    border-radius: 8px;
    background: rgba(255, 250, 240, 0.7);
    box-shadow: 0 12px 34px rgba(22, 18, 15, 0.06);
}

.book-page-nav {
    display: grid;
    width: min(880px, calc(100% - 48px));
    margin-inline: auto;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.book-page-nav a {
    min-height: 118px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fffaf0;
    box-shadow: 0 14px 40px rgba(22, 18, 15, 0.08);
}

.book-page-nav span {
    color: var(--brass-dark);
    font-weight: 900;
    text-transform: uppercase;
}

.book-page-nav strong {
    display: block;
    margin-top: 8px;
    font-family: Cinzel, Georgia, serif;
    font-size: 1.15rem;
}

.characters {
    padding: 96px 36px;
    color: #fff;
    background:
        radial-gradient(circle at 86% 12%, rgba(31, 79, 122, 0.42), transparent 28%),
        linear-gradient(135deg, rgba(22, 18, 15, 0.96), rgba(16, 38, 63, 0.88) 50%, rgba(63, 39, 31, 0.94)),
        var(--charcoal);
}

.section-heading.light p:last-child {
    color: rgba(255, 255, 255, 0.7);
}

.character-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.character-card {
    min-height: 270px;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.07);
}

.character-card p {
    margin: 0 0 34px;
    color: var(--parchment);
    font-weight: 800;
}

.character-card span {
    display: block;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.72);
}

.timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.timeline-item {
    min-height: 230px;
    padding: 0 22px;
    border-left: 2px solid var(--brass);
}

.timeline-item h3 {
    margin-top: 22px;
}

.timeline-item p {
    color: rgba(22, 18, 15, 0.7);
}

.buy-band {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 36px;
    align-items: center;
    margin-bottom: 0;
    padding: 56px;
    border-radius: 8px;
    color: #fff;
    background:
        radial-gradient(circle at 18% 82%, rgba(31, 79, 122, 0.38), transparent 28%),
        radial-gradient(circle at 82% 22%, rgba(198, 148, 55, 0.34), transparent 26%),
        linear-gradient(135deg, var(--ruby), var(--sapphire-dark) 46%, var(--moss));
    box-shadow: var(--shadow);
}

.buy-band p:last-child {
    max-width: 660px;
    color: rgba(255, 255, 255, 0.78);
}

.contact {
    padding-top: 108px;
}

.contact-form {
    display: grid;
    gap: 18px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fffaf0;
    box-shadow: 0 18px 50px rgba(22, 18, 15, 0.1);
}

.contact-form label {
    display: grid;
    gap: 8px;
    font-weight: 800;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(22, 18, 15, 0.18);
    border-radius: 8px;
    padding: 13px 14px;
    background: #fff;
    color: var(--ink);
    font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 3px solid rgba(31, 79, 122, 0.2);
    border-color: var(--sapphire);
}

.form-success {
    border-radius: 8px;
    padding: 14px;
    background: rgba(69, 96, 77, 0.12);
    color: var(--moss);
    font-weight: 800;
}

.form-error {
    border-radius: 8px;
    padding: 14px;
    background: rgba(129, 46, 53, 0.12);
    color: var(--ruby);
    font-weight: 800;
}

.form-error p {
    margin: 0;
}

.form-error p + p {
    margin-top: 6px;
}

.site-footer {
    display: flex;
    min-height: 86px;
    align-items: center;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.74);
    background: var(--ink);
}

footer.site-footer {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 max(36px, calc((100% - 1180px) / 2));
}

.site-footer a {
    color: var(--parchment);
    font-weight: 800;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 22px;
}

@media (max-width: 980px) {
    h1 {
        font-size: 3.35rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    .section-grid,
    .buy-band,
    .about-contact,
    .book-detail-shell {
        grid-template-columns: 1fr;
    }

    .feature-strip,
    .book-grid,
    .character-grid,
    .timeline,
    .about-milestones,
    .about-photo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-contact-links {
        justify-content: flex-start;
    }

    .book-detail-cover {
        max-width: 320px;
    }
}

@media (max-width: 760px) {
    .site-header {
        min-height: 68px;
        padding: 12px 18px;
    }

    .brand img {
        width: 100px;
        height: 100px;
        max-width: 100px;
    }

    .nav-toggle {
        display: block;
    }

    .site-nav {
        position: fixed;
        inset: 68px 16px auto 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 8px;
        background: rgba(24, 18, 14, 0.98);
        box-shadow: var(--shadow);
    }

    .site-nav.open {
        display: flex;
    }

    .site-nav a {
        padding: 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    }

    .nav-dropdown-toggle {
        width: 100%;
        justify-content: space-between;
        padding: 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    }

    .nav-dropdown::after {
        display: none;
    }

    .nav-dropdown-menu {
        position: static;
        display: none;
        width: 100%;
        max-height: 45vh;
        border: 0;
        border-radius: 0;
        background: rgba(255, 255, 255, 0.06);
        box-shadow: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .nav-dropdown.open .nav-dropdown-menu {
        display: grid;
    }

    .site-nav a::after {
        display: none;
    }

    .hero {
        min-height: 850px;
    }

    .about-hero {
        min-height: 760px;
        padding: 118px 18px 72px;
        background-position: 62% center;
    }

    .book-detail-hero {
        padding: 108px 18px 64px;
    }

    .hero-inner {
        width: calc(100% - 36px);
        margin-bottom: 240px;
    }

    h1 {
        font-size: 2.7rem;
    }

    .hero-copy {
        font-size: 1rem;
    }

    .hero-stats {
        right: 18px;
        bottom: 22px;
        width: calc(100% - 36px);
        grid-template-columns: 1fr;
    }

    .hero-stats div {
        min-height: 74px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    }

    .hero-stats div:last-child {
        border-bottom: 0;
    }

    .section-band,
    .characters {
        padding: 70px 0;
    }

    .section-grid,
    .section-heading,
    .book-grid,
    .feature-strip,
    .character-grid,
    .timeline,
    .buy-band,
    .about-hero-copy,
    .about-milestones,
    .about-photo-grid,
    .about-contact,
    .book-detail-shell,
    .book-detail-text,
    .book-page-nav {
        width: calc(100% - 36px);
    }

    .feature-strip,
    .book-grid,
    .character-grid,
    .timeline,
    .about-milestones,
    .about-photo-grid {
        grid-template-columns: 1fr;
    }

    .book-page-nav {
        grid-template-columns: 1fr;
    }

    .buy-band {
        padding: 34px 24px;
    }

    .about-contact {
        padding: 34px 24px;
    }

    .about-contact-links {
        flex-direction: column;
        align-items: stretch;
    }

    footer.site-footer {
        flex-direction: column;
        gap: 10px;
        justify-content: center;
        padding: 22px;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px 18px;
    }
}
