/* ============================================================
   BOB HENRY BABER -- style.css
   Warm, literary, Appalachian author aesthetic
   Fonts: Playfair Display (headings) + Source Serif 4 (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Source+Serif+4:ital,wght@0,300;0,400;0,600;1,300;1,400&display=swap');

/* ── CUSTOM PROPERTIES ─────────────────────────────────────── */
:root {
    --cream:       #F6F1E7;
    --parchment:   #EDE5CE;
    --parchment-dk:#DDD3B5;
    --forest:      #2C4A2E;
    --forest-lt:   #3A6140;
    --forest-glow: rgba(44,74,46,.12);
    --sienna:      #8B4A2B;
    --sienna-lt:   #A85C38;
    --gold:        #B8913A;
    --gold-lt:     #D4A84B;
    --charcoal:    #28231E;
    --ink:         #3A322A;
    --warm-gray:   #6B6158;
    --warm-gray-lt:#9C9188;
    --white:       #FDFAF4;
    --border:      rgba(44,74,46,.15);
    --border-warm: rgba(139,74,43,.18);

    --nav-h: 72px;
    --max-w: 1100px;
    --max-w-text: 760px;
    --radius: 4px;
    --radius-lg: 8px;
    --shadow: 0 2px 16px rgba(40,35,30,.10);
    --shadow-lg: 0 8px 40px rgba(40,35,30,.16);

    font-size: 17px;
}

/* ── RESET & BASE ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Source Serif 4', Georgia, serif;
    background: var(--cream);
    color: var(--ink);
    line-height: 1.75;
    min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--forest); text-decoration: none; transition: color .2s; }
a:hover { color: var(--sienna); }

::selection { background: var(--gold-lt); color: var(--charcoal); }

/* ── TYPOGRAPHY ────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--charcoal);
    line-height: 1.25;
    font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1.25rem; }
p:last-child { margin-bottom: 0; }

.lead {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--warm-gray);
    font-weight: 300;
}

.section-label {
    font-family: 'Source Serif 4', serif;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--sienna);
    margin-bottom: .75rem;
    display: block;
}

/* ── ORNAMENTAL DIVIDER ─────────────────────────────────────── */
.ornament {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 2.5rem 0;
    color: var(--gold);
}
.ornament::before,
.ornament::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--parchment-dk));
}
.ornament::after {
    background: linear-gradient(to left, transparent, var(--parchment-dk));
}
.ornament span { font-size: 1.1rem; flex-shrink: 0; }

/* ── NAVIGATION ────────────────────────────────────────────── */
#site-nav {
    position: sticky;
    top: 0;
    z-index: 900;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    height: var(--nav-h);
    display: flex;
    align-items: center;
    box-shadow: 0 2px 12px rgba(40,35,30,.07);
}

.nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--forest);
    white-space: nowrap;
    flex-shrink: 0;
    letter-spacing: .01em;
}
.nav-brand:hover { color: var(--sienna); }

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2px;
    flex-wrap: nowrap;
    justify-content: flex-end;
}

.nav-links a {
    font-family: 'Source Serif 4', serif;
    font-size: .88rem;
    font-weight: 600;
    letter-spacing: .01em;
    color: var(--warm-gray);
    padding: 6px 9px;
    border-radius: var(--radius);
    transition: color .2s, background .2s;
    white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--forest);
    background: var(--forest-glow);
}
.nav-links a.active { color: var(--forest); font-weight: 700; }

.nav-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}
.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--forest);
    border-radius: 2px;
    transition: transform .25s, opacity .25s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 980px) {
    .nav-hamburger { display: flex; }
    .nav-links {
        display: none;
        position: absolute;
        top: var(--nav-h);
        left: 0; right: 0;
        background: var(--white);
        border-bottom: 2px solid var(--border);
        padding: 16px 24px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        box-shadow: 0 8px 24px rgba(40,35,30,.1);
    }
    .nav-links.open { display: flex; }
    .nav-links a { font-size: .95rem; padding: 9px 12px; width: 100%; }
}

/* ── PAGE HERO ─────────────────────────────────────────────── */
.page-hero {
    background: var(--forest);
    padding: 56px 24px 52px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero .section-label { color: var(--gold-lt); }
.page-hero h1 { color: var(--white); position: relative; }
.page-hero p { color: rgba(253,250,244,.75); max-width: 600px; margin: .75rem auto 0; font-size: 1.05rem; position: relative; }

/* ── HOME HERO ─────────────────────────────────────────────── */
.home-hero {
    min-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px;
    position: relative;
    overflow: hidden;
    background: var(--forest);
}
.home-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center top;
    opacity: .35;
}
.home-hero-content { position: relative; max-width: 820px; margin: 0 auto; }
.home-hero-eyebrow {
    font-family: 'Source Serif 4', serif;
    font-size: .78rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold-lt);
    margin-bottom: 1.5rem;
    display: block;
}
.home-hero h1 {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1.08;
    margin-bottom: 1.5rem;
    letter-spacing: -.01em;
}
.home-hero h1 em {
    font-style: italic;
    color: var(--gold-lt);
}
.home-hero .tagline {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(253,250,244,.8);
    font-weight: 300;
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}
.home-hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(253,250,244,.45);
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    animation: bobScroll 2s ease-in-out infinite;
}
.home-hero-scroll::after {
    content: '';
    display: block;
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(253,250,244,.4), transparent);
}
@keyframes bobScroll { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* ── LAYOUT / CONTAINERS ───────────────────────────────────── */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
}
.container-text {
    max-width: var(--max-w-text);
    margin: 0 auto;
    padding: 0 24px;
}

.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-alt { background: var(--parchment); }
.section-dark { background: var(--forest); color: var(--white); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(253,250,244,.82); }
.section-dark .section-label { color: var(--gold-lt); }

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Source Serif 4', serif;
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 13px 28px;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all .2s;
    white-space: nowrap;
    text-decoration: none;
}
.btn-primary {
    background: var(--forest);
    color: var(--white);
    border-color: var(--forest);
}
.btn-primary:hover {
    background: var(--forest-lt);
    border-color: var(--forest-lt);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(44,74,46,.3);
}
.btn-outline {
    background: transparent;
    color: var(--forest);
    border-color: var(--forest);
}
.btn-outline:hover {
    background: var(--forest);
    color: var(--white);
    transform: translateY(-1px);
}
.btn-ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(253,250,244,.45);
}
.btn-ghost:hover {
    background: rgba(253,250,244,.12);
    border-color: rgba(253,250,244,.7);
    color: var(--white);
}
.btn-sienna {
    background: var(--sienna);
    color: var(--white);
    border-color: var(--sienna);
}
.btn-sienna:hover {
    background: var(--sienna-lt);
    border-color: var(--sienna-lt);
    color: var(--white);
    transform: translateY(-1px);
}

/* ── FEATURE CARDS (home page) ─────────────────────────────── */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-top: 48px;
}
.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 3px solid var(--forest);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: transform .2s, box-shadow .2s;
    display: flex;
    flex-direction: column;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.card-icon {
    font-size: 1.8rem;
    margin-bottom: 16px;
    line-height: 1;
}
.card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.card p { color: var(--warm-gray); font-size: .95rem; flex: 1; margin-bottom: 20px; }
.card .btn { align-self: flex-start; margin-top: auto; }
.card-sienna { border-top-color: var(--sienna); }
.card-gold { border-top-color: var(--gold); }

/* ── PULL QUOTE / POEM ─────────────────────────────────────── */
blockquote, .pull-quote {
    border-left: 3px solid var(--gold);
    padding: 20px 28px;
    margin: 2rem 0;
    background: var(--parchment);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--charcoal);
    line-height: 1.7;
}
blockquote cite, .pull-quote cite {
    display: block;
    font-family: 'Source Serif 4', serif;
    font-style: normal;
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--sienna);
    margin-top: 12px;
}

.poem {
    font-family: 'Source Serif 4', serif;
    font-style: italic;
    line-height: 2;
    color: var(--ink);
    font-size: 1rem;
    margin: 2rem 0;
    padding-left: 2rem;
    border-left: 2px solid var(--parchment-dk);
}
.poem-title {
    font-family: 'Playfair Display', serif;
    font-style: normal;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--forest);
    margin-bottom: .5rem;
    display: block;
}

/* ── BOOK CARD ─────────────────────────────────────────────── */
.book-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 36px;
    align-items: start;
    padding: 40px 0;
    border-bottom: 1px solid var(--border);
}
.book-card:last-child { border-bottom: none; }
.book-cover {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: 6px 8px 24px rgba(40,35,30,.2);
    transition: transform .25s, box-shadow .25s;
}
.book-cover:hover { transform: rotate(-1deg) scale(1.02); box-shadow: 10px 12px 32px rgba(40,35,30,.28); }
.book-cover-placeholder {
    width: 100%;
    aspect-ratio: 2/3;
    background: var(--parchment);
    border: 1px solid var(--border-warm);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: .85rem;
    color: var(--warm-gray);
    text-align: center;
    padding: 16px;
}
.book-meta { color: var(--sienna); font-size: .82rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 8px; }
.book-info h3 { margin-bottom: 6px; }
.book-stars { color: var(--gold); font-size: 1rem; margin: 8px 0; }
.book-review { background: var(--parchment); border-left: 3px solid var(--gold); padding: 16px 20px; margin: 16px 0; border-radius: 0 var(--radius) var(--radius) 0; font-style: italic; font-size: .95rem; color: var(--charcoal); }
.book-review cite { font-style: normal; font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--warm-gray); display: block; margin-top: 8px; }

@media (max-width: 640px) {
    .book-card { grid-template-columns: 1fr; }
    .book-cover, .book-cover-placeholder { max-width: 180px; }
}

/* ── GALLERY GRID ──────────────────────────────────────────── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
    margin-top: 32px;
}
.gallery-item {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer;
    position: relative;
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

/* ── CTA STRIP ─────────────────────────────────────────────── */
.cta-strip {
    background: var(--sienna);
    padding: 56px 24px;
    text-align: center;
}
.cta-strip h2 { color: var(--white); margin-bottom: 12px; }
.cta-strip p { color: rgba(253,250,244,.82); margin-bottom: 28px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-strip .btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── STAT ROW ──────────────────────────────────────────────── */
.stats-row {
    display: flex;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin: 40px 0;
}
.stat-item {
    flex: 1;
    text-align: center;
    padding: 32px 20px;
    border-right: 1px solid var(--border);
    background: var(--white);
}
.stat-item:last-child { border-right: none; }
.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--forest);
    line-height: 1;
    margin-bottom: 6px;
}
.stat-label { font-size: .8rem; color: var(--warm-gray); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }

@media (max-width: 600px) {
    .stats-row { flex-direction: column; }
    .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
    .stat-item:last-child { border-bottom: none; }
}

/* ── CONTACT FORM ──────────────────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 60px;
    align-items: start;
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--warm-gray);
    margin-bottom: 6px;
}
.form-control {
    width: 100%;
    background: var(--white);
    border: 1px solid var(--parchment-dk);
    border-radius: var(--radius);
    padding: 12px 16px;
    font-family: 'Source Serif 4', serif;
    font-size: .95rem;
    color: var(--ink);
    transition: border-color .2s, box-shadow .2s;
    outline: none;
}
.form-control:focus {
    border-color: var(--forest);
    box-shadow: 0 0 0 3px var(--forest-glow);
}
textarea.form-control { resize: vertical; min-height: 160px; }

.contact-sidebar h3 { font-size: 1.2rem; margin-bottom: 16px; }
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    font-size: .95rem;
    color: var(--warm-gray);
}
.contact-info-icon { font-size: 1.1rem; color: var(--sienna); flex-shrink: 0; margin-top: 2px; }

.form-message { padding: 14px 18px; border-radius: var(--radius); margin-bottom: 20px; font-size: .9rem; }
.form-message.success { background: rgba(44,74,46,.1); border: 1px solid rgba(44,74,46,.25); color: var(--forest); }
.form-message.error { background: rgba(139,74,43,.1); border: 1px solid rgba(139,74,43,.25); color: var(--sienna); }

/* ── VETERANS PAGE ─────────────────────────────────────────── */
.vets-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
@media (max-width: 700px) { .vets-intro { grid-template-columns: 1fr; } }
.vets-brochure-link {
    display: block;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform .25s;
}
.vets-brochure-link:hover { transform: scale(1.02); }
.vets-brochure-link img { width: 100%; }

/* ── WORKSHOPS PAGE ────────────────────────────────────────── */
.workshop-offerings {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin: 40px 0;
}
.workshop-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
}
.workshop-item h3 { font-size: 1.15rem; color: var(--forest); margin-bottom: 8px; }
.workshop-item p { font-size: .92rem; color: var(--warm-gray); margin: 0; }
.workshop-rate {
    background: var(--forest);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    text-align: center;
    margin: 40px 0;
}
.workshop-rate .rate-num {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--gold-lt);
    font-weight: 700;
    display: block;
    line-height: 1;
    margin-bottom: 4px;
}
.workshop-rate .rate-label { color: rgba(253,250,244,.8); font-size: .9rem; }

/* ── YEAGER PAGE ───────────────────────────────────────────── */
.impact-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin: 40px 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.impact-item {
    text-align: center;
    padding: 28px 16px;
    background: var(--white);
    border-right: 1px solid var(--border);
}
.impact-item:last-child { border-right: none; }
.impact-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--forest);
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
}
.impact-label { font-size: .78rem; color: var(--warm-gray); text-transform: uppercase; letter-spacing: .07em; font-weight: 600; }
@media (max-width: 560px) { .impact-strip { grid-template-columns: 1fr; } .impact-item { border-right: none; border-bottom: 1px solid var(--border); } .impact-item:last-child { border-bottom: none; } }

/* ── MEMORY PIECES ─────────────────────────────────────────── */
.memory-intro {
    background: var(--parchment);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-bottom: 48px;
    border: 1px solid var(--border-warm);
}

/* ── FOOTER ────────────────────────────────────────────────── */
#site-footer {
    background: var(--charcoal);
    color: rgba(253,250,244,.65);
    padding: 56px 24px 32px;
}
.footer-inner {
    max-width: var(--max-w);
    margin: 0 auto;
}
.footer-top {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(253,250,244,.1);
    align-items: start;
}
@media (max-width: 640px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 10px;
    display: block;
}
.footer-tagline { font-size: .88rem; line-height: 1.6; max-width: 360px; }
.footer-nav { list-style: none; display: flex; flex-direction: column; gap: 6px; text-align: right; }
@media (max-width: 640px) { .footer-nav { flex-direction: row; flex-wrap: wrap; text-align: left; gap: 4px 16px; } }
.footer-nav a { color: rgba(253,250,244,.6); font-size: .82rem; letter-spacing: .04em; transition: color .2s; }
.footer-nav a:hover { color: var(--gold-lt); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    font-size: .78rem;
    flex-wrap: wrap;
    gap: 8px;
}
.footer-bottom a { color: rgba(253,250,244,.45); }
.footer-bottom a:hover { color: var(--gold-lt); }

/* ── UTILITY ───────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-forest { color: var(--forest); }
.text-sienna { color: var(--sienna); }
.text-gold   { color: var(--gold); }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.flex-center { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ── ANIMATIONS ────────────────────────────────────────────── */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
    .fade-in { opacity: 1; transform: none; }
}