:root {
    /* Add these styles to your global stylesheet, which is used across all site pages. You only need to do this once. All elements in the library derive their variables and base styles from this central sheet, simplifying site-wide edits. For instance, if you want to modify how your h2's appear across the site, you just update it once in the global styles, and the changes apply everywhere. */
    --primary: #ff6a3e;
    --primaryLight: #ffba43;
    --secondary: #ffba43;
    --secondaryLight: #ffba43;
    --headerColor: #1a1a1a;
    --bodyTextColor: #4e4b66;
    --bodyTextColorWhite: #fafbfc;
    /* 13px - 16px */
    --topperFontSize: clamp(0.8125rem, 1.6vw, 1rem);
    /* 31px - 49px */
    --headerFontSize: clamp(1.9375rem, 3.9vw, 3.0625rem);
    --bodyFontSize: 1rem;
    /* 60px - 100px top and bottom */
    --sectionPadding: clamp(3.75rem, 7.82vw, 6.25rem) 1rem;
    /* Navbar heights */
    --navHeightMobile: 7rem;
    --navHeightDesktop: 8rem;
    /* Extra breathing room below navbar so first content never tucks under */
    --navSafeGapMobile: 1.5rem;
    --navSafeGapDesktop: 2rem;
    /* Fixed navbar top offsets (matches nav.css top) */
    --navTopMobile: 2rem;
    --navTopDesktop: 2rem;
}

body {
    margin: 0;
    padding: 0;
    /* Global body font: clean system UI stack */
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji", sans-serif;
}

*, *:before, *:after {
    /* prevents padding from affecting height and width */
    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: var(--primary);
    margin-bottom: 0.25rem;
    display: block;
}

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

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

/* Layout helpers */
.main.fullscreen {
    padding: 0;
}
.main.fullscreen > .container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

/* Spacer below floating navbar for non-fullscreen pages */
/* Use nav-spacer element to create actual space that pushes content down */
.nav-spacer { 
    height: calc(var(--navTopMobile) + var(--navHeightMobile) + var(--navSafeGapMobile)); 
    width: 100%;
    display: block;

}
@media (min-width: 64rem) {
    .nav-spacer { height: calc(var(--navTopDesktop) + var(--navHeightDesktop) + var(--navSafeGapDesktop)); }
}
