:root {
    /* Brand Color Pool */
    --color-black: #000000;
    --color-black-rock: #2b303c;
    --color-blue-chalk: #ece6f2;
    --color-east-bay: #545773;
    --color-pattens-blue: #eaf1f8;
    --color-science-blue: #0049d1;
    --color-scorpion: #5f5f5f;
    --color-valhalla: #2a2d3e;
    --color-white: #fff;

    /* Primary Palette */
    --color-berkeley-blue: #002676;
    --color-california-gold: #fdb515;

    /* Secondary Palette - Dark */
    --color-blue-dark: #010133;
    --color-gold-dark: #fc9313;
    --color-green-dark: #00553a;
    --color-rose-dark: #770747;
    --color-purple-dark: #431170;

    /* Secondary Palette - Medium */
    --color-blue-medium: #004aae;
    --color-gold-medium: #ffc31b;
    --color-green-medium: #018943;
    --color-rose-medium: #e7115e;
    --color-purple-medium: #8236c7;

    /* Secondary Palette - Light */
    --color-blue-light: #9fd1ff;
    --color-gold-light: #ffe88d;
    --color-green-light: #b3e59a;
    --color-rose-light: #ffcfe5;
    --color-purple-light: #d9ceff;

    /* Black and Greys */
    --color-black: #000000;
    --color-grey-medium: #808080;
    --color-grey-light: #f2f2f2;

    /* Special Colors */
    --color-california-heritage-gold: #c09748;

    /* Font families styles */
    --font-family-primary: "Inter", sans-serif;
    --font-family-secondary: "Source Serif 4", serif;
    --font-family-accent: "Barlow Condensed", sans-serif;
    --color-breadcrumb-grey: #003366;
    /* container widths */
    --container-max-width: 1280px;

    /* container paddings */
    --container-margin-inline: 50px;
    --container-spacing: 75px;
    --viewport-container-padding: 80px; /* Full viewport width templates */

    /* navigation */
    --secondary-menu-height: 75px;
    --primary-menu-height: 105px;

    --primary-logo-height: 42.85px;
    --primary-logo-width: 300px;

    --secondary-menu-font-size: 14px;
    --primary-menu-font-size: 14px;

    --mobile-horizontal-padding: 28px;

    /* background component radius */
    --background-component-radius: clamp(60px, 12vw, 160px);

    --margin-left-nav-items: 1.5rem;

    /* Spacing scale - fluid responsive spacing */
    --space-2xs: clamp(0.25rem, 0.5vw, 0.5rem);
    --space-xs: clamp(0.5rem, 1vw, 0.75rem);
    --space-s: clamp(0.75rem, 1.5vw, 1rem);
    --space-m: clamp(1rem, 2vw, 1.5rem);
    --space-l: clamp(1.5rem, 3vw, 2rem);
    --space-xl: clamp(2rem, 4vw, 3rem);
    --space-2xl: clamp(3rem, 6vw, 4rem);

    --page-title-font-size-mobile: clamp(24px, 3.5vw + 12px, 40px);

    /* Font sizes - consistent type scale */
    --fs-100: 0.75rem;
    --fs-200: 0.8125rem;
    --fs-300: 0.875rem;
    --fs-400: 1rem;
    --fs-500: 1.125rem;
    --fs-600: 1.25rem;
    --fs-700: 1.5rem;
    --fs-800: 1.875rem;
    --fs-900: 2.25rem;
    --fs-1000: 2.625rem;

    --h6: clamp(1rem, 0.9412rem + 0.2041vw, 1.125rem);
    --h5: clamp(1.125rem, 1.0074rem + 0.4082vw, 1.375rem);
    --h4: clamp(1.25rem, 1.0735rem + 0.6122vw, 1.625rem);
    --h3: clamp(1.5rem, 1.3235rem + 0.6122vw, 1.875rem);
    --h2: clamp(2.25rem, 2.1324rem + 0.4082vw, 2.5rem);

    --copy-size-standard: 1.0625rem;

    /* Font weights - semantic naming */
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;

    /* Layout specific */
    --sidebar-width: 33%;
    --content-width: 66%;
    --hero-max-height: 400px;

    /* Border radius */
    --radius-s: 4px;
    --radius-m: 8px;
    --radius-l: 12px;

    /* Photo gallery nav */
    --gallery-nav-bg: rgba(255, 255, 255, 0.9);
    --gallery-nav-bg-hover: rgba(253, 181, 21, 0.9);

    /* ==========================================================================
        Component Context Variables
        Defaults reflect the standard template context.
        Override these at the body/template level as needed per component.
        ========================================================================== */

    --component-max-width: var(--container-max-width);
    --component-padding-inline: var(--container-margin-inline);
    --component-padding-block: var(--container-spacing);
    --component-section-radius: var(--background-component-radius);
}