*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-soft);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

p,
li,
dd,
dt,
h1,
h2,
h3,
h4,
.lead,
.about-copy,
.expr-lead,
.expr-story,
.leader-dir-summary,
.branch-leader-bio {
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}

a {
    color: inherit;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    z-index: 9999;
    background: var(--primary-red);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-decoration: none;
}

.skip-link:focus {
    top: 1rem;
}

h1, h2, h3, h4, .heading-font {
    font-family: var(--font-display);
    letter-spacing: 1px;
    line-height: 1.1;
}

h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    color: var(--deep-burgundy);
}

h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold-accent);
}

h2.text-left::after {
    left: 0;
    transform: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-center {
    text-align: center;
}

.section {
    padding: 4rem 1.5rem;
}

.section-alt {
    background: linear-gradient(145deg, var(--bg-soft) 0%, var(--bg-warm) 100%);
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.lead {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 720px;
    margin: 0 auto 2rem;
}

:focus-visible {
    outline: 3px solid var(--gold-accent);
    outline-offset: 3px;
}

/* Global mobile polish */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .section {
        padding: 2.75rem 1rem;
    }

    h2 {
        font-size: clamp(1.7rem, 7vw, 2.4rem);
        margin-bottom: 1.5rem;
    }

    .lead {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
        padding: 0 0.25rem;
    }

    .section-label {
        letter-spacing: 2px;
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.85rem;
    }

    .section {
        padding: 2.25rem 0.85rem;
    }
}
