/*
 * campaignseminar.com — shared styles.
 * Brand tokens copied from campaignwisdom.com index.html; keep them in sync.
 */

:root {
    /* LOCKED BRAND COLORS */
    --gold:  #CF9D37;
    --blue:  #4472B8;
    --red:   #9E081D;
    --black: #0D0E0D;
    --cream: #D4CBC0;

    /* derived */
    --gold-bright: #e0ad45;
    --gold-dim:    #8a6a24;
    --white:       #F4F1EA;
    --muted:       #a49c88;
    --line:        #2a2823;
    --panel:       #141513;

    --f-display: 'Oswald', "Arial Narrow", sans-serif;
    --f-body:    'Barlow', -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    background: var(--black);
    color: var(--white);
    font-family: var(--f-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    font-variant-ligatures: none;
    -webkit-font-variant-ligatures: none;
    font-size: 18px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a   { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.wrap        { max-width: 1180px; margin: 0 auto; padding: 0 28px; width: 100%; }
.wrap-narrow { max-width: 520px;  margin: 0 auto; padding: 0 28px; width: 100%; }

.disp {
    font-family: var(--f-display);
    text-transform: uppercase;
    line-height: 1.02;
    font-weight: 700;
}


/* ---------- header / footer ---------- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(13, 14, 13, .94);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line);
}

.site-header nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 78px;
    gap: 20px;
}

.site-header .logo img { width: 210px; height: auto; }

.site-main { flex: 1; padding: 56px 0 64px; }

.site-footer {
    border-top: 1px solid var(--line);
    padding: 26px 0;
}

.site-footer .copyr {
    text-align: center;
    font-size: 14px;
    color: var(--muted);
}


/* ---------- type ---------- */

.page-head { font-size: clamp(38px, 4.2vw, 52px); margin-bottom: 4px; }

.starrule {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 18px 0 22px;
    max-width: 330px;
}
.starrule .ln { height: 1px; background: var(--gold-dim); flex: 1; }
.starrule .st { color: var(--gold); font-size: 12px; }

.lede  { font-size: 21px; color: var(--muted); margin-bottom: 26px; }
.muted { color: var(--muted); }
.gold  { color: var(--gold); }


/* ---------- buttons ---------- */

.btn {
    font-family: var(--f-display);
    text-transform: uppercase;
    letter-spacing: .09em;
    font-weight: 600;
    font-size: 16px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    cursor: pointer;
    border: none;
    transition: all .2s;
}

.btn-gold       { background: var(--gold); color: #150f02; padding: 14px 24px; }
.btn-gold:hover { background: var(--gold-bright); }

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--gold-dim);
    padding: 13px 23px;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn-block { width: 100%; }


/* ---------- forms ---------- */

.label {
    display: block;
    font-family: var(--f-display);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 15px;
    font-weight: 500;
    color: var(--muted);
    margin: 22px 0 8px;
}

.field {
    background: var(--panel);
    border: 1px solid var(--line);
    color: var(--white);
    font-family: var(--f-body);
    font-size: 18px;
    padding: 13px 14px;
    width: 100%;
}
.field:focus { outline: none; border-color: var(--gold); }

.form-actions { margin-top: 26px; }


/* ---------- notices ---------- */

.notice {
    border: 1px solid var(--gold-dim);
    padding: 12px 15px;
    font-size: 17px;
    margin-bottom: 26px;
}
.notice-test  { border-style: dashed; color: var(--gold); }
.notice-error { border-color: var(--red); background: rgba(158, 8, 29, .14); color: var(--white); }


@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; }
}
