/* historygrapher.net -- botanical illustration garden */

:root {
    --bg: #f7f3ea;          /* Garden cream */
    --branch: #6b4c30;      /* Warm bark */
    --leaf: #5a8a5c;        /* Forest sage */
    --flower: #b07aa0;      /* Warm mauve */
    --amber: #d4a43c;       /* Resource gold */
    --ink: #2c2418;         /* Earth dark */
    --card: #faf6ee;        /* Soft ivory */
    --vine: #a08a68;        /* Vine brown */
    --link: #3a6b3e;        /* Deep green */

    --display: 'Playfair Display', 'Lora', Georgia, serif;
    --body: 'Source Serif 4', 'Lora', Georgia, serif;
    --ui: 'DM Sans', 'Space Grotesk', 'Inter', -apple-system, system-ui, sans-serif;
}

* { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--body);
    font-size: 17px;
    line-height: 1.85;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body {
    position: relative;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Faint paper grain overlay for the encyclopedic feel */
.paper-grain {
    pointer-events: none;
    position: fixed;
    inset: 0;
    z-index: 1;
    opacity: 0.5;
    mix-blend-mode: multiply;
    background-image:
        radial-gradient(circle at 12% 18%, rgba(160, 138, 104, 0.05) 0 1px, transparent 2px),
        radial-gradient(circle at 78% 62%, rgba(160, 138, 104, 0.06) 0 1px, transparent 2px),
        radial-gradient(circle at 30% 78%, rgba(160, 138, 104, 0.04) 0 1px, transparent 2px),
        radial-gradient(circle at 88% 8%, rgba(160, 138, 104, 0.05) 0 1px, transparent 2px);
    background-size: 220px 220px, 280px 280px, 320px 320px, 260px 260px;
}

a {
    color: var(--link);
    text-decoration: none;
    border-bottom: 1px solid rgba(58, 107, 62, 0.25);
    transition: border-color 0.2s ease, color 0.2s ease;
}
a:hover {
    color: var(--branch);
    border-bottom-color: var(--flower);
}

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

/* ---- HEADER ---- */
.site-header {
    position: relative;
    z-index: 5;
    padding: 28px 40px 0;
}
.header-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(160, 138, 104, 0.4);
    position: relative;
}
.header-inner::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -3px;
    height: 1px;
    background: rgba(160, 138, 104, 0.25);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}
.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--vine);
    border-radius: 50%;
    background: var(--card);
    box-shadow: inset 0 0 0 3px var(--bg);
}
.brand-name {
    font-family: var(--display);
    font-weight: 700;
    font-size: 1.45rem;
    letter-spacing: 0.01em;
    color: var(--ink);
    border: none;
}
.brand-tld {
    color: var(--branch);
    font-style: italic;
    font-weight: 600;
}

.nav {
    display: flex;
    gap: 28px;
    align-items: center;
    font-family: var(--ui);
    font-size: 0.95rem;
}
.nav-link {
    color: var(--ink);
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
}
.nav-link:hover {
    color: var(--link);
    border-bottom-color: var(--leaf);
}
.nav-link--accent {
    background: var(--amber);
    color: var(--ink);
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid rgba(107, 76, 48, 0.4);
    font-weight: 600;
}
.nav-link--accent:hover {
    background: #c8961f;
    color: var(--ink);
    border-bottom-color: rgba(107, 76, 48, 0.4);
}

/* ---- HERO ---- */
.hero {
    position: relative;
    z-index: 2;
    padding: 40px 40px 60px;
}
.hero-canvas {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
}

#historyTree {
    width: 100%;
    height: auto;
    max-height: 640px;
    filter: drop-shadow(0 6px 14px rgba(107, 76, 48, 0.08));
}
#historyTree .era-label {
    font-family: var(--display);
    font-size: 18px;
    font-style: italic;
    fill: var(--branch);
    letter-spacing: 0.02em;
}

.branch-group {
    transform-box: fill-box;
    animation: sway 9s ease-in-out infinite;
    will-change: transform;
}
.branch-group:nth-of-type(2) { animation-duration: 10s; animation-delay: -2s; }
.branch-group:nth-of-type(3) { animation-duration: 11s; animation-delay: -4s; }
.branch-group:nth-of-type(4) { animation-duration: 8.5s;  animation-delay: -1s; }
.branch-group:nth-of-type(5) { animation-duration: 9.5s;  animation-delay: -3s; }
.branch-group:nth-of-type(6) { animation-duration: 10.5s; animation-delay: -5s; }

@keyframes sway {
    0%, 100% { transform: rotate(0deg); }
    50%      { transform: rotate(1.4deg); }
}

.hero-text {
    position: relative;
}
.eyebrow {
    font-family: var(--ui);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.78rem;
    color: var(--vine);
    margin: 0 0 16px;
    font-weight: 500;
}
.eyebrow--amber { color: var(--branch); }

.hero-title {
    font-family: var(--display);
    font-weight: 600;
    font-size: clamp(2.1rem, 3.6vw, 3.1rem);
    line-height: 1.15;
    margin: 0 0 22px;
    color: var(--ink);
    letter-spacing: -0.01em;
}
.hero-title em {
    font-style: italic;
    color: var(--branch);
    font-weight: 700;
}
.hero-lede {
    font-size: 1.08rem;
    line-height: 1.75;
    color: rgba(44, 36, 24, 0.88);
    margin: 0 0 28px;
    max-width: 560px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--ui);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 22px;
    border-radius: 999px;
    border: 1px solid var(--vine);
    background: var(--card);
    color: var(--ink);
    cursor: pointer;
    transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
    text-decoration: none;
}
.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(107, 76, 48, 0.12);
    border-color: var(--branch);
    color: var(--ink);
}

.btn--leaf {
    background: var(--leaf);
    color: var(--card);
    border-color: var(--leaf);
}
.btn--leaf:hover {
    background: var(--link);
    color: var(--card);
    border-color: var(--link);
}

.btn--ghost {
    background: transparent;
}

.btn--amber {
    background: var(--amber);
    color: var(--ink);
    border-color: rgba(107, 76, 48, 0.35);
    margin-top: 8px;
}
.btn--amber:hover {
    background: #c8961f;
    border-color: var(--branch);
}

.hero-stats {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 36px;
    border-top: 1px solid rgba(160, 138, 104, 0.4);
    padding-top: 22px;
    width: max-content;
    max-width: 100%;
}
.hero-stats li {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.hero-stats strong {
    font-family: var(--display);
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--branch);
    line-height: 1;
}
.hero-stats span {
    font-family: var(--ui);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--vine);
}

/* ---- SECTION HEADERS ---- */
.section-head {
    text-align: center;
    margin: 0 auto 56px;
    max-width: 720px;
    position: relative;
    z-index: 2;
}
.section-head--left {
    text-align: left;
    margin-left: 0;
    margin-right: auto;
}
.section-head h2 {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(1.7rem, 2.6vw, 2.4rem);
    margin: 8px 0 10px;
    color: var(--ink);
    letter-spacing: -0.005em;
}
.section-mark {
    display: inline-block;
    margin-bottom: 4px;
}
.section-sub {
    font-family: var(--body);
    font-style: italic;
    color: rgba(44, 36, 24, 0.75);
    font-size: 1.02rem;
    margin: 0;
}

/* ---- FEATURE SPREAD ---- */
.features {
    padding: 60px 40px 80px;
    position: relative;
    z-index: 2;
}
.features-inner {
    max-width: 1240px;
    margin: 0 auto;
}

.feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto 80px;
    padding: 28px 8px;
    position: relative;
}

.feature-vine {
    grid-column: 1 / -1;
    width: 100%;
    height: 24px;
    opacity: 0.55;
}
.feature-vine--top    { margin-bottom: -12px; }
.feature-vine--bottom { margin-top: -12px; }
.feature-vine svg {
    width: 100%;
    height: 24px;
}

.feature--right .feature-image { order: 2; }
.feature--right .feature-body  { order: 1; }

.feature-image {
    position: relative;
    background: var(--card);
    border: 1px solid var(--vine);
    border-radius: 4px;
    padding: 18px;
    box-shadow: 0 8px 22px rgba(107, 76, 48, 0.08);
}
.feature-image svg {
    width: 100%;
    height: auto;
    border-radius: 2px;
}
.feature-image .mini-tl-tick {
    font-family: var(--ui);
    font-size: 11px;
    fill: var(--vine);
    letter-spacing: 0.04em;
}
.feature-medallion {
    position: absolute;
    top: -22px;
    right: -22px;
    background: var(--bg);
    border-radius: 50%;
    padding: 4px;
    box-shadow: 0 4px 8px rgba(107, 76, 48, 0.12);
}

.feature-body {
    padding: 0 4px;
}
.feature-meta {
    font-family: var(--ui);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.78rem;
    color: var(--vine);
    margin: 0 0 10px;
}
.feature-title {
    font-family: var(--display);
    font-weight: 600;
    font-size: clamp(1.4rem, 2.4vw, 1.95rem);
    line-height: 1.2;
    margin: 0 0 18px;
    color: var(--ink);
}
.feature-title em {
    font-style: italic;
    color: var(--branch);
}

.feature-prose {
    margin: 0 0 18px;
    color: rgba(44, 36, 24, 0.92);
    font-size: 1rem;
}
.feature-prose::first-letter {
    float: left;
    font-family: var(--display);
    font-weight: 900;
    font-size: 3.5rem;
    line-height: 0.8;
    color: var(--branch);
    margin: 6px 10px 0 0;
    padding-right: 4px;
}

.feature-byline {
    font-family: var(--ui);
    font-size: 0.85rem;
    color: var(--vine);
    margin: 0 0 16px;
}
.byline-name {
    color: var(--branch);
    font-weight: 600;
}
.feature-link {
    font-family: var(--ui);
    font-weight: 600;
    color: var(--link);
    border-bottom-color: var(--leaf);
}

/* ---- CONTENT GRID (community + sidebar) ---- */
.content-grid {
    padding: 30px 40px 80px;
    position: relative;
    z-index: 2;
}
.content-grid-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 56px;
    align-items: start;
}

.community {
    min-width: 0;
}

.masonry {
    columns: 3;
    column-gap: 24px;
    margin-top: 12px;
}

.card {
    break-inside: avoid;
    background: var(--card);
    border: 1px solid var(--vine);
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 24px;
    position: relative;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(107, 76, 48, 0.1);
    border-color: var(--branch);
}
.card--featured {
    background: linear-gradient(180deg, #fff9ec 0%, var(--card) 80%);
    border-color: var(--amber);
}

.card-branch {
    height: 36px;
    margin: -4px -4px 14px;
    overflow: hidden;
    border-bottom: 1px dashed rgba(160, 138, 104, 0.45);
    padding-bottom: 6px;
}
.card-branch svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.card-tag {
    font-family: var(--ui);
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--vine);
    margin: 0 0 8px;
}
.card--featured .card-tag {
    color: var(--branch);
}

.card-title {
    font-family: var(--ui);
    font-weight: 600;
    font-size: 1.02rem;
    line-height: 1.3;
    margin: 0 0 10px;
    color: var(--ink);
    letter-spacing: -0.005em;
}

.card-body {
    font-family: var(--body);
    font-size: 0.93rem;
    line-height: 1.6;
    color: rgba(44, 36, 24, 0.85);
    margin: 0 0 14px;
}

.card-meta {
    font-family: var(--ui);
    font-size: 0.8rem;
    color: var(--vine);
    margin: 0;
    padding-top: 10px;
    border-top: 1px dotted rgba(160, 138, 104, 0.5);
}
.card-author {
    color: var(--branch);
    font-weight: 600;
}
.card-events {
    font-style: italic;
}

.see-more {
    margin-top: 32px;
    text-align: center;
}

/* ---- EDUCATORS SIDEBAR ---- */
.educators {
    background: linear-gradient(180deg, rgba(212, 164, 60, 0.18) 0%, rgba(212, 164, 60, 0.08) 100%);
    border: 1px solid rgba(212, 164, 60, 0.6);
    border-radius: 6px;
    padding: 28px 28px 32px 40px;
    position: relative;
    overflow: hidden;
}

.educators-vine {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 16px;
    width: 12px;
    pointer-events: none;
    opacity: 0.65;
}
.educators-vine svg {
    width: 12px;
    height: 100%;
    overflow: visible;
}

.educators-head h2 {
    font-family: var(--display);
    font-weight: 700;
    font-size: 1.55rem;
    margin: 4px 0 10px;
    color: var(--ink);
}
.educators-lede {
    font-family: var(--body);
    font-size: 0.96rem;
    color: rgba(44, 36, 24, 0.85);
    margin: 0 0 22px;
    line-height: 1.65;
}

.resources {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.resource {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px 14px;
    background: rgba(250, 246, 238, 0.65);
    border: 1px solid rgba(160, 138, 104, 0.3);
    border-radius: 4px;
    transition: background 0.18s ease, transform 0.18s ease;
    cursor: pointer;
}
.resource:hover {
    background: var(--card);
    transform: translateX(2px);
    border-color: var(--vine);
}

.resource-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.resource-title {
    font-family: var(--ui);
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--ink);
    margin: 0 0 4px;
    line-height: 1.3;
}
.resource-meta {
    font-family: var(--body);
    font-size: 0.82rem;
    color: var(--vine);
    margin: 0;
    line-height: 1.4;
    font-style: italic;
}

.educator-quote {
    margin: 28px 0 0;
    padding: 20px 22px;
    border-left: 2px solid var(--branch);
    background: rgba(250, 246, 238, 0.55);
    border-radius: 0 4px 4px 0;
    font-family: var(--body);
}
.educator-quote p {
    font-style: italic;
    font-size: 1rem;
    color: var(--ink);
    margin: 0 0 8px;
    line-height: 1.55;
}
.educator-quote em {
    color: var(--branch);
    font-weight: 600;
}
.educator-quote cite {
    font-family: var(--ui);
    font-style: normal;
    font-size: 0.82rem;
    color: var(--vine);
}

/* ---- JOURNAL ---- */
.journal {
    padding: 80px 40px 60px;
    background: linear-gradient(180deg, transparent 0%, rgba(160, 138, 104, 0.07) 100%);
    border-top: 1px solid rgba(160, 138, 104, 0.3);
    border-bottom: 1px solid rgba(160, 138, 104, 0.3);
    position: relative;
    z-index: 2;
}
.journal-inner {
    max-width: 760px;
    margin: 0 auto;
}
.journal-entry {
    margin-top: 32px;
}
.journal-prose {
    font-family: var(--body);
    font-size: 1.05rem;
    line-height: 1.85;
    color: rgba(44, 36, 24, 0.92);
    margin: 0 0 22px;
}
.journal-prose--lead::first-letter {
    float: left;
    font-family: var(--display);
    font-weight: 900;
    font-size: 4.2rem;
    line-height: 0.8;
    color: var(--branch);
    margin: 6px 10px 0 0;
    padding-right: 6px;
}
.journal-prose em {
    color: var(--branch);
    font-style: italic;
}
.journal-byline {
    font-family: var(--ui);
    font-size: 0.85rem;
    color: var(--vine);
    text-align: right;
    margin: 32px 0 0;
}

/* ---- SUBMIT STRIP ---- */
.submit-strip {
    padding: 80px 40px;
    position: relative;
    z-index: 2;
}
.submit-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 48px;
    align-items: start;
    background: var(--card);
    border: 1px solid var(--vine);
    border-radius: 6px;
    padding: 48px;
    box-shadow: 0 18px 30px -16px rgba(107, 76, 48, 0.18);
    position: relative;
}
.submit-inner::before {
    content: "";
    position: absolute;
    top: 14px;
    left: 14px;
    right: 14px;
    bottom: 14px;
    border: 1px solid rgba(160, 138, 104, 0.3);
    border-radius: 3px;
    pointer-events: none;
}

.submit-text h2 {
    font-family: var(--display);
    font-weight: 600;
    font-size: clamp(1.6rem, 2.6vw, 2.1rem);
    line-height: 1.18;
    margin: 8px 0 16px;
    color: var(--ink);
}
.submit-text p {
    margin: 0;
    font-size: 1rem;
    color: rgba(44, 36, 24, 0.85);
}

.submit-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.submit-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-family: var(--ui);
    font-size: 0.82rem;
    color: var(--branch);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
}
.submit-field--wide {
    grid-column: 1 / -1;
}
.submit-field input,
.submit-field textarea {
    font-family: var(--body);
    font-size: 1rem;
    background: var(--bg);
    border: 1px solid var(--vine);
    border-radius: 4px;
    padding: 12px 14px;
    color: var(--ink);
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
    transition: border-color 0.18s ease, background 0.18s ease;
    resize: vertical;
}
.submit-field input::placeholder,
.submit-field textarea::placeholder {
    color: rgba(160, 138, 104, 0.85);
    font-style: italic;
}
.submit-field input:focus,
.submit-field textarea:focus {
    outline: none;
    border-color: var(--leaf);
    background: var(--card);
}
.submit-button {
    grid-column: 1 / -1;
    justify-self: start;
}
.submit-status {
    grid-column: 1 / -1;
    margin: 4px 0 0;
    font-family: var(--ui);
    font-size: 0.92rem;
    color: var(--link);
    background: rgba(90, 138, 92, 0.12);
    border-left: 2px solid var(--leaf);
    padding: 10px 14px;
    border-radius: 0 4px 4px 0;
}

/* ---- FOOTER ---- */
.site-footer {
    padding: 64px 40px 28px;
    background: rgba(160, 138, 104, 0.08);
    border-top: 1px solid rgba(160, 138, 104, 0.3);
    position: relative;
    z-index: 2;
}
.footer-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2.4fr;
    gap: 56px;
}
.footer-brand .brand-name {
    font-size: 1.3rem;
}
.footer-tag {
    margin: 12px 0 0;
    font-family: var(--body);
    font-style: italic;
    font-size: 0.95rem;
    color: rgba(44, 36, 24, 0.75);
    max-width: 260px;
    line-height: 1.55;
}

.footer-cols {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.footer-col h4 {
    font-family: var(--display);
    font-weight: 700;
    font-size: 1rem;
    margin: 0 0 14px;
    color: var(--branch);
    letter-spacing: 0.01em;
}
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-col a {
    font-family: var(--ui);
    font-size: 0.92rem;
    color: var(--ink);
    border: none;
    transition: color 0.18s ease;
}
.footer-col a:hover {
    color: var(--link);
}

.footer-bottom {
    max-width: 1240px;
    margin: 56px auto 0;
    padding-top: 20px;
    border-top: 1px dashed rgba(160, 138, 104, 0.4);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}
.footer-bottom p {
    font-family: var(--ui);
    font-size: 0.82rem;
    color: var(--vine);
    margin: 0;
}
.footer-vine {
    flex-shrink: 0;
    opacity: 0.6;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1080px) {
    .hero-canvas {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .hero-text { order: 1; }
    .hero-canvas > svg, #historyTree { order: 2; max-height: 500px; }
    .content-grid-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .masonry { columns: 2; }
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-cols { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
    .site-header { padding: 20px 22px 0; }
    .header-inner { flex-wrap: wrap; gap: 16px; }
    .nav { gap: 16px; flex-wrap: wrap; font-size: 0.88rem; }
    .nav-link--accent { padding: 6px 14px; }

    .hero { padding: 24px 22px 40px; }
    .hero-stats { grid-template-columns: 1fr; gap: 12px; }

    .features { padding: 30px 22px 50px; }
    .feature {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px 4px;
        margin-bottom: 50px;
    }
    .feature--right .feature-image { order: 1; }
    .feature--right .feature-body  { order: 2; }
    .feature-medallion { top: -16px; right: -10px; }

    .content-grid { padding: 20px 22px 50px; }
    .masonry { columns: 1; }

    .journal { padding: 50px 22px; }
    .submit-strip { padding: 40px 22px; }
    .submit-inner {
        grid-template-columns: 1fr;
        padding: 28px 22px;
        gap: 28px;
    }
    .submit-form { grid-template-columns: 1fr; }

    .site-footer { padding: 48px 22px 24px; }
    .footer-cols { grid-template-columns: 1fr 1fr; gap: 24px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
}
