:root {
    /* Electric green accent */
    --primary: #22C55E;
    --primaryLight: #22C55E;
    --primaryDark: #15803D;
    --secondary: #22C55E;
    --secondaryLight: #22C55E;

    /* Dark base */
    --charcoal: #11150F;      /* primary/dark base */
    --offBlack: #1A1F17;      /* sections / cards */
    --lineColor: #2A3022;     /* borders / dividers */

    /* Text */
    --headerColor: #F4F6F2;       /* off-white headings on dark */
    --bodyTextColor: #C7CCC2;     /* readable light body text */
    --mutedText: #9CA39A;         /* secondary text */
    --bodyTextColorWhite: #F4F6F2;

    --topperFontSize: clamp(0.8125rem, 1.6vw, 1rem);
    --headerFontSize: clamp(1.9375rem, 3.9vw, 3.0625rem);
    --bodyFontSize: 1rem;
    --sectionPadding: clamp(3.75rem, 7.82vw, 6.25rem) 1rem;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Satoshi', sans-serif;
    background-color: var(--charcoal);
    color: var(--bodyTextColor);
}

/* Logo size override */

/* Barlow for nav and h1 */
#cs-navigation,
#cs-navigation .cs-logo,
#cs-navigation .cs-li-link,
#cs-navigation .cs-phone,
h1 {
    font-family: 'Barlow', sans-serif;
}

/* Capitalise nav and h1 */
#cs-navigation .cs-li-link,
#cs-navigation .cs-phone,
h1 {
    text-transform: uppercase;
}

*, *:before, *:after {
    box-sizing: border-box;
}

.cs-topper {
    font-size: var(--topperFontSize);
    line-height: 1.2em;
    text-transform: uppercase;
    text-align: inherit;
    letter-spacing: .1em;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cs-topper::before {
    content: '';
    display: block;
    width: 3px;
    height: 1em;
    background: #22C55E;
    border-radius: 2px;
    flex-shrink: 0;
}

.cs-title {
    font-size: var(--headerFontSize);
    font-weight: 700;
    line-height: 1.2em;
    text-align: inherit;
    max-width: 43.75rem;
    margin: 0 0 1rem 0;
    color: #ffffff;
    position: relative;
}

.cs-title span {
    color: var(--primaryLight);
}

.cs-text {
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    text-align: inherit;
    width: 100%;
    max-width: 40.625rem;
    margin: 0;
    color: rgba(255,255,255,0.85);
}
