/* =====================================================================
   Rainbow Pencil — Design tokens
   Grounded in the physical object of a children's book: cloth-bound
   covers, gold foil lettering, library shelving — not a kids' app.
   Color: deep navy cloth + foil gold, with pine and berry as secondary
   accents for variety across categories.
   Type: Libre Caslon Display (headlines, book titles) + Karla (body).
   ===================================================================== */

:root {
    --ink: #1E2A3A;
    --ink-soft: #5C6B7A;
    --paper: #FBF7EF;
    --paper-deep: #F3ECDC;
    --gold: #C9973E;
    --gold-deep: #A87A28;
    --pine: #3F6E5B;
    --pine-deep: #2E5344;
    --berry: #A83B5E;
    --berry-deep: #8A2E4C;
    --line: #E4DBC5;
    --white: #FFFFFF;
    --radius-lg: 18px;
    --radius-md: 12px;
    --radius-sm: 8px;
    --shadow-card: 0 14px 32px -16px rgba(30, 42, 58, 0.28);
    --shadow-soft: 0 4px 14px -6px rgba(30, 42, 58, 0.16);
    --container: 1180px;

    /* Rainbow Pencil accent set — a curated 7-hue arc (rich jewel tones,
       not neon) used to color-code categories, the logo mark, the CTA
       banner, and card accents throughout the site. */
    --rb-1: #C1453C;
    --rb-2: #D9822F;
    --rb-3: #C9973E;
    --rb-4: #4C8A3F;
    --rb-5: #2E7C7A;
    --rb-6: #2F5C9A;
    --rb-7: #7A4E9E;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Karla', sans-serif;
    color: var(--ink);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}
h1, h2, h3, h4 {
    font-family: 'Libre Caslon Display', Georgia, serif;
    color: var(--ink);
    line-height: 1.2;
    margin: 0 0 0.5em;
    font-weight: 400;
}
p { margin: 0 0 1em; max-width: 62ch; color: var(--ink-soft); }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; }

.skip-link {
    position: absolute; left: -999px; top: 0; background: var(--gold);
    color: var(--ink); padding: 10px 16px; z-index: 999; border-radius: 0 0 6px 0;
}
.skip-link:focus { left: 0; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

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

/* ---------------------------------------------------------------------
   Buttons
   ------------------------------------------------------------------- */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'Karla', sans-serif; font-weight: 700; font-size: 0.98rem;
    padding: 13px 26px; border-radius: var(--radius-sm); border: 1.5px solid transparent; cursor: pointer;
    transition: transform 0.15s ease, background-color 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }
.btn--gold { background: var(--gold); color: var(--ink); }
.btn--gold:hover { background: var(--gold-deep); }
.btn--ink { background: var(--ink); color: var(--paper); }
.btn--ink:hover { background: #14202E; }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--paper); }
.btn--cta { background: var(--white); color: var(--ink); }
.btn--cta:hover { background: var(--paper); }
.btn--small { padding: 8px 16px; font-size: 0.85rem; }
.btn--full { width: 100%; justify-content: center; }
.btn[disabled] { opacity: 0.6; cursor: not-allowed; transform: none; }

/* ---------------------------------------------------------------------
   Header / Nav
   ------------------------------------------------------------------- */
.site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(251, 247, 239, 0.94);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-bottom: 1px solid var(--line);
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: transform;
}
.site-header__inner {
    max-width: var(--container); margin: 0 auto; padding: 18px 24px;
    display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.logo {
    font-family: 'Libre Caslon Display', Georgia, serif; font-weight: 400; font-size: 1.4rem;
    display: flex; align-items: center; gap: 8px; white-space: nowrap; color: var(--ink);
}
.logo__spark { color: var(--gold-deep); font-size: 1rem; }
.logo__little {
    background: linear-gradient(90deg, var(--rb-1), var(--rb-2), var(--rb-3), var(--rb-4), var(--rb-5), var(--rb-6), var(--rb-7));
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.logo__sparks { color: var(--ink); }

.main-nav { display: flex; gap: 30px; }
.main-nav a { font-weight: 700; font-size: 0.95rem; color: var(--ink-soft); padding: 6px 2px; border-bottom: 2px solid transparent; }
.main-nav a:hover, .main-nav a.is-active { color: var(--ink); border-color: var(--gold); }

.site-header__actions { display: flex; align-items: center; gap: 14px; }
.nav-toggle {
    display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); }

@media (max-width: 860px) {
    .main-nav {
        position: absolute; top: 100%; left: 0; right: 0; background: var(--paper);
        flex-direction: column; padding: 12px 24px 20px; gap: 4px; border-bottom: 1px solid var(--line);
        display: none; box-shadow: var(--shadow-soft);
    }
    .main-nav.is-open { display: flex; }
    .main-nav a { padding: 10px 0; border-bottom: none; }
    .site-header__actions .btn--small { display: none; }
    .nav-toggle { display: flex; }
}

/* ---------------------------------------------------------------------
   Hero
   ------------------------------------------------------------------- */
.hero { background: var(--paper); padding: 64px 0 80px; }
.hero__inner {
    max-width: var(--container); margin: 0 auto; padding: 0 24px;
    display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center;
}
.hero__title { font-size: clamp(2.4rem, 4.5vw, 3.6rem); margin-bottom: 0.3em; }
.hero__title span { display: block; }
.hero__title .line2 { color: var(--gold-deep); }
.hero__subtitle { color: var(--ink-soft); font-size: 1.1rem; max-width: 46ch; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 28px; }
.hero__image-wrap { position: relative; }
.hero__image {
    width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card); border: 1px solid var(--line);
}
.hero__bookshelf { background: var(--paper-deep); }

@media (max-width: 880px) {
    .hero__inner { grid-template-columns: 1fr; text-align: center; }
    .hero__actions { justify-content: center; }
    .hero__image-wrap { max-width: 420px; width: 100%; min-width: 0; margin: 0 auto; }
    .hero__subtitle { margin-left: auto; margin-right: auto; }
}

/* ---------------------------------------------------------------------
   Section headings
   ------------------------------------------------------------------- */
.section { padding: 72px 0; }
.section--tight { padding: 48px 0; }
.section-heading { text-align: center; margin-bottom: 40px; }
.section-heading h2 { font-size: clamp(1.8rem, 3vw, 2.3rem); }
.section-heading p { margin: 0 auto; color: var(--ink-soft); }
.section-heading__row { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 32px; }
.section-heading__row h2 { margin: 0; }
.link-arrow { font-weight: 700; color: var(--ink); border-bottom: 1.5px solid var(--gold); white-space: nowrap; padding-bottom: 1px; }
.link-arrow:hover { color: var(--gold-deep); }

/* ---------------------------------------------------------------------
   Book cards / grid
   ------------------------------------------------------------------- */
.book-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; align-items: start;
}
@media (max-width: 1020px) { .book-grid { gap: 18px; } }
@media (max-width: 720px) { .book-grid { gap: 10px; } }
@media (max-width: 460px) { .book-grid { gap: 7px; } }

.book-card {
    background: var(--white); border-radius: var(--radius-md); overflow: hidden;
    box-shadow: var(--shadow-soft); border: 1px solid var(--line);
    display: flex; flex-direction: column; transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.book-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.book-card__accent { height: 5px; background: var(--accent-color, var(--gold)); }
.book-card__media { position: relative; }
.book-card__media img { width: 100%; height: auto; display: block; }
.book-card__age {
    position: absolute; top: 10px; right: 10px; background: rgba(251,247,239,0.94);
    color: var(--ink); font-weight: 700; font-size: 0.7rem; padding: 4px 9px; border-radius: 999px;
}
.book-card__body { padding: 16px 18px 20px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.book-card__cat { font-size: 0.78rem; font-style: italic; color: var(--pine); }
.book-card__title { font-family: 'Libre Caslon Display', Georgia, serif; font-weight: 400; font-size: 1.08rem; color: var(--ink); }
.book-card__title a { color: inherit; }
.book-card__meta { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 10px; }
.book-card__price { font-weight: 700; color: var(--ink); font-size: 1.02rem; }

@media (max-width: 720px) {
    .book-card__age { top: 6px; right: 6px; font-size: 0.58rem; padding: 3px 7px; }
    .book-card__body { padding: 8px 7px 10px; gap: 3px; }
    .book-card__cat { font-size: 0.6rem; }
    .book-card__title { font-size: 0.78rem; line-height: 1.25; }
    .book-card__price { font-size: 0.78rem; }
}
@media (max-width: 460px) {
    .book-card__age { font-size: 0.5rem; padding: 2px 5px; top: 4px; right: 4px; }
    .book-card__body { padding: 6px 5px 8px; gap: 2px; }
    .book-card__cat { font-size: 0.52rem; }
    .book-card__title { font-size: 0.66rem; line-height: 1.2; }
    .book-card__price { font-size: 0.68rem; }
}

.stars { color: var(--gold-deep); letter-spacing: 1px; }
.stars-count { font-size: 0.82rem; color: var(--ink-soft); }

/* ---------------------------------------------------------------------
   Testimonials
   ------------------------------------------------------------------- */
.testimonials-band {
    background: var(--paper-deep); border-radius: var(--radius-lg); padding: 52px 32px; text-align: center;
}
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; text-align: left; }
@media (max-width: 860px) { .testimonial-grid { grid-template-columns: 1fr; } }
.testimonial-card {
    background: var(--white); border-radius: var(--radius-md); padding: 24px; box-shadow: var(--shadow-soft); border: 1px solid var(--line);
}
.testimonial-card__quote { font-style: italic; color: var(--ink-soft); margin-bottom: 16px; }
.testimonial-card__person { display: flex; align-items: center; gap: 10px; }
.testimonial-card__avatar { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; }
.testimonial-card__name { font-weight: 700; }
.tagline-strip { font-family: 'Libre Caslon Display', Georgia, serif; font-size: 1.2rem; color: var(--ink); margin-top: 30px; }

/* ---------------------------------------------------------------------
   CTA banner
   ------------------------------------------------------------------- */
.cta-banner {
    text-align: center; border-radius: var(--radius-lg); position: relative; overflow: hidden;
    padding: 60px 32px;
    background: linear-gradient(115deg, var(--rb-6), var(--rb-7) 30%, var(--rb-1) 55%, var(--rb-2) 72%, var(--rb-3) 100%);
}
.cta-banner__inner { position: relative; max-width: 620px; margin: 0 auto; }
.cta-banner h2 { color: var(--white); }
.cta-banner p { color: rgba(255,255,255,0.88); margin: 0 auto 24px; }

/* ---------------------------------------------------------------------
   Category cards (categories overview, if used) & tabs
   ------------------------------------------------------------------- */
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 980px) { .category-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .category-grid { grid-template-columns: 1fr; } }
.category-card {
    display: block; border-radius: var(--radius-md); padding: 28px 22px; text-align: center;
    box-shadow: var(--shadow-soft); border: 1px solid var(--line); background: var(--white);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.category-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.category-card__icon {
    width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; margin: 0 auto 16px; color: var(--paper); background: var(--ink);
}
.category-card h3 { font-size: 1.15rem; margin-bottom: 6px; }
.category-card p { color: var(--ink-soft); font-size: 0.92rem; margin: 0 auto; }

.category-hero {
    background: var(--paper-deep);
    padding: 30px 0 20px; text-align: center; position: relative; overflow: hidden;
}
.category-hero h1 { font-size: clamp(1.7rem, 3vw, 2.1rem); margin-bottom: 0.2em; }
.category-hero__tagline { color: var(--pine); font-style: italic; font-size: 0.98rem; margin: 0; }

.category-tabs { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; padding: 18px 0 0; }
.category-tab {
    display: inline-flex; align-items: center; padding: 9px 18px;
    border-radius: var(--radius-md); background: var(--white); border: 2px solid var(--tab-color, var(--line));
    font-weight: 700; font-size: 0.85rem; color: var(--tab-color, var(--ink-soft));
    transition: background-color 0.15s ease, color 0.15s ease;
}
.category-tab.is-active { color: var(--white); background: var(--tab-color, var(--ink)); }
.category-tab--all {
    border: 2px solid transparent;
    background: linear-gradient(var(--white), var(--white)) padding-box,
                linear-gradient(90deg, var(--rb-1), var(--rb-2), var(--rb-3), var(--rb-4), var(--rb-5), var(--rb-6), var(--rb-7)) border-box;
    color: var(--ink);
}
.category-tab--all.is-active {
    background: linear-gradient(90deg, var(--rb-1), var(--rb-2), var(--rb-3), var(--rb-4), var(--rb-5), var(--rb-6), var(--rb-7));
    color: var(--white); border-color: transparent;
}

/* ---------------------------------------------------------------------
   Category listing (book grid + toolbar)
   ------------------------------------------------------------------- */
.listing-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; flex-wrap: wrap; gap: 12px; }
.listing-toolbar select { padding: 10px 14px; border-radius: var(--radius-sm); border: 1px solid var(--line); font-weight: 700; background: var(--white); }
.listing-count { color: var(--ink-soft); font-weight: 700; }
.empty-state { text-align: center; padding: 60px 20px; color: var(--ink-soft); }

.pagination { display: flex; justify-content: center; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: 36px; }
.pagination__link {
    display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 12px;
    border-radius: var(--radius-sm); background: var(--white); border: 1px solid var(--line); font-weight: 700; color: var(--ink-soft);
}
.pagination__link:hover { border-color: var(--ink); color: var(--ink); }
.pagination__link.is-active { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.pagination__link.is-disabled { pointer-events: none; opacity: 0.4; }

/* ---------------------------------------------------------------------
   Book detail page
   ------------------------------------------------------------------- */
.book-detail { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 48px; align-items: flex-start; }
@media (max-width: 860px) {
    .book-detail { grid-template-columns: 1fr; }
    .book-detail__media { max-width: 420px; width: 100%; min-width: 0; margin: 0 auto; }
}
.back-link { display: inline-flex; align-items: center; gap: 6px; color: var(--ink); font-weight: 700; margin-bottom: 18px; border-bottom: 1.5px solid var(--gold); padding-bottom: 1px; }
.book-detail__media { position: relative; }
.book-detail__cover { border-radius: var(--radius-md); box-shadow: var(--shadow-card); width: 100%; height: auto; display: block; border: 1px solid var(--line); }
.book-detail__age-badge {
    position: absolute; top: 14px; right: 14px; background: rgba(251,247,239,0.94); color: var(--ink);
    font-weight: 700; padding: 6px 12px; border-radius: 999px; text-align: center; font-size: 0.8rem;
}
.preview-strip { display: flex; gap: 10px; margin-top: 16px; }
.preview-strip img { width: 64px; height: 64px; object-fit: cover; border-radius: var(--radius-sm); border: 1px solid var(--line); }

.book-detail__info h1 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.book-detail__price { font-size: 1.7rem; font-weight: 700; color: var(--ink); margin: 10px 0; }
.book-detail__desc-wrap { margin-bottom: 4px; }
.book-detail__desc {
    color: var(--ink-soft);
    display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 4; overflow: hidden;
}
.book-detail__desc.is-expanded { display: block; -webkit-line-clamp: unset; overflow: visible; }
.read-more-toggle {
    background: none; border: none; padding: 0; margin: 2px 0 18px; display: block;
    color: var(--ink); font-weight: 700; font-size: 0.92rem; cursor: pointer;
    text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 3px;
}
.badge-row { display: flex; gap: 12px; margin: 18px 0; flex-wrap: wrap; }
.badge {
    display: flex; align-items: center; gap: 6px; background: var(--paper-deep); border-radius: var(--radius-sm); padding: 9px 14px;
    font-weight: 700; font-size: 0.85rem; color: var(--ink);
}
.book-detail__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 20px; }
.trust-row { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 22px; color: var(--ink-soft); font-size: 0.85rem; }
.trust-row span { display: flex; align-items: center; gap: 6px; }

/* ---------------------------------------------------------------------
   About page
   ------------------------------------------------------------------- */
.about-hero { text-align: center; padding: 60px 0 30px; }
.about-store-card {
    display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 32px; align-items: center;
    background: var(--paper-deep); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 40px;
}
@media (max-width: 780px) {
    .about-store-card { grid-template-columns: 1fr; padding: 28px; }
    .about-store-card img { max-width: 420px; width: 100%; min-width: 0; margin: 0 auto; }
}
.about-store-card img { border-radius: var(--radius-md); }

.author-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
@media (max-width: 700px) { .author-grid { grid-template-columns: 1fr; } }
.author-card {
    display: flex; gap: 18px; align-items: flex-start; padding: 26px; border-radius: var(--radius-lg);
    border: 1px solid var(--line); background: var(--white);
}
.author-card img { width: 92px; height: 92px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.author-card h3 { margin-bottom: 2px; font-size: 1.1rem; }
.author-card .role { font-weight: 700; color: var(--ink-soft); font-size: 0.85rem; margin-bottom: 8px; }
.author-card p.bio { font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 6px; }
.author-card .quote { font-style: italic; font-size: 0.85rem; color: var(--pine); }

/* ---------------------------------------------------------------------
   Blog
   ------------------------------------------------------------------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card { background: var(--white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-soft); border: 1px solid var(--line); }
.blog-card__media { aspect-ratio: 16/10; }
.blog-card__media img { width: 100%; height: 100%; object-fit: cover; }
.blog-card__body { padding: 18px 20px 22px; }
.blog-card__date { font-size: 0.78rem; color: var(--ink-soft); font-weight: 700; }
.blog-card h3 { font-size: 1.12rem; margin: 6px 0 8px; }
.blog-post-header { text-align: center; padding: 50px 0 20px; }
.blog-post-body { max-width: 720px; margin: 0 auto; font-size: 1.05rem; }
.blog-post-cover { border-radius: var(--radius-lg); margin: 0 auto 30px; max-width: 720px; aspect-ratio: 16/9; overflow: hidden; }
.blog-post-cover img { width: 100%; height: 100%; object-fit: cover; }

/* ---------------------------------------------------------------------
   Contact
   ------------------------------------------------------------------- */
.contact-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; }
@media (max-width: 800px) { .contact-layout { grid-template-columns: 1fr; } }
.contact-info { background: var(--paper-deep); border-radius: var(--radius-lg); padding: 32px; }
.contact-info h2 { font-size: 1.3rem; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form label { font-weight: 700; font-size: 0.9rem; }
.contact-form input, .contact-form textarea {
    width: 100%; padding: 12px 14px; border-radius: var(--radius-sm); border: 1px solid var(--line); font-family: inherit; font-size: 1rem; background: var(--white);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.form-msg { padding: 14px 18px; border-radius: var(--radius-sm); font-weight: 700; margin-bottom: 20px; }
.form-msg--success { background: #E1EDE6; color: var(--pine-deep); }
.form-msg--error { background: #F4DEE3; color: var(--berry-deep); }

/* ---------------------------------------------------------------------
   Footer
   ------------------------------------------------------------------- */
.site-footer { background: var(--paper-deep); border-top: 1px solid var(--line); margin-top: 60px; }
.site-footer__inner {
    max-width: var(--container); margin: 0 auto; padding: 56px 24px 30px;
    display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px;
}
@media (max-width: 860px) { .site-footer__inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .site-footer__inner { grid-template-columns: 1fr; } }
.site-footer__brand p { color: var(--ink-soft); font-size: 0.92rem; margin-top: 10px; }
.site-footer__col h3 { font-family: 'Karla', sans-serif; font-weight: 700; font-size: 0.92rem; color: var(--ink); margin-bottom: 12px; }
.site-footer__col a { display: block; color: var(--ink-soft); padding: 4px 0; font-weight: 600; }
.site-footer__col a:hover { color: var(--ink); }
.social-row { display: flex; gap: 10px; }
.social-icon {
    width: 34px; height: 34px; border-radius: 50%; background: var(--white); border: 1px solid var(--line);
    display: flex; align-items: center; justify-content: center; color: var(--ink);
}
.social-icon svg { width: 17px; height: 17px; }
.social-icon:hover { border-color: var(--gold); color: var(--gold-deep); }
.footer-note { margin-top: 14px; font-size: 0.85rem; color: var(--ink-soft); }
.footer-illustration { display: none; }
.site-footer__bottom { text-align: center; padding: 18px 24px; font-size: 0.82rem; color: var(--ink-soft); border-top: 1px solid var(--line); }

/* ---------------------------------------------------------------------
   Misc
   ------------------------------------------------------------------- */
.page-hero-simple { text-align: center; padding: 56px 0 10px; }