/**
 * UPFIT INDUSTRIES — Design Tokens
 * Luxury Dark Burgundy + White
 */

:root {
    /* Primary brand — Dark Burgundy Red */
    --uf-primary: #7A0F1D;
    --uf-primary-bright: #8B1E2D;
    --uf-primary-deep: #6B0F1A;
    --uf-primary-hot: #A1162A;
    --uf-primary-soft: #F7E9EB;

    /* Aliases (legacy token names → burgundy) */
    --uf-navy: #7A0F1D;
    --uf-navy-deep: #6B0F1A;
    --uf-navy-soft: #8B1E2D;
    --uf-blue: #7A0F1D;
    --uf-blue-bright: #A1162A;
    --uf-blue-soft: #F7E9EB;

    --uf-burgundy: #7A0F1D;
    --uf-burgundy-deep: #6B0F1A;
    --uf-burgundy-bright: #8B1E2D;
    --uf-burgundy-soft: #F7E9EB;

    /* Neutrals */
    --uf-white: #FFFFFF;
    --uf-accent: #F7F7F7;
    --uf-border: #E8E8E8;
    --uf-dark: #1B1B1B;
    --uf-grey: #8A8F98;
    --uf-grey-light: #E8E8E8;
    --uf-text: #111111;
    --uf-text-soft: #3A3F4B;

    /* Gradients */
    --uf-gradient-btn: linear-gradient(135deg, #8B1E2D 0%, #7A0F1D 55%, #6B0F1A 100%);
    --uf-gradient-btn-hover: linear-gradient(135deg, #A1162A 0%, #7A0F1D 55%, #6B0F1A 100%);
    --uf-gradient-navy: linear-gradient(145deg, #1B1B1B 0%, #2A1216 45%, #6B0F1A 100%);
    --uf-gradient-dark: linear-gradient(145deg, #1B1B1B 0%, #2A1216 50%, #1B1B1B 100%);
    --uf-gradient-hero: linear-gradient(105deg, rgba(27, 27, 27, 0.88) 0%, rgba(122, 15, 29, 0.45) 48%, rgba(122, 15, 29, 0.12) 100%);
    --uf-gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.05));
    --uf-gradient-card: linear-gradient(180deg, rgba(27, 27, 27, 0) 40%, rgba(27, 27, 27, 0.78) 100%);

    --font-display: 'Bebas Neue', 'Syne', sans-serif;
    --font-brand: 'Ethnocentric Rg', 'Ethnocentric', Impact, sans-serif;
    --font-body: 'Manrope', sans-serif;

    --section-pad: clamp(4.5rem, 8vw, 7.5rem);
    --container-max: 1280px;

    --shadow-sm: 0 4px 18px rgba(122, 15, 29, 0.06);
    --shadow-md: 0 14px 40px rgba(122, 15, 29, 0.1);
    --shadow-lg: 0 28px 64px rgba(122, 15, 29, 0.14);
    --shadow-blue: 0 12px 36px rgba(122, 15, 29, 0.28);
    --shadow-burgundy: 0 12px 36px rgba(122, 15, 29, 0.28);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --transition: 0.4s var(--ease);
    --transition-fast: 0.25s var(--ease);

    --header-h: 148px;
    --announce-h: 0px;
}

.brand-logo--upfit {
    display: inline-flex;
    align-items: center;
    gap: 0;
    padding: 0;
    line-height: 0;
    background: transparent !important;
}
.brand-logo .logo-mark,
.logo-mark {
    display: block;
    width: auto;
    height: 132px;
    max-height: 132px;
    object-fit: contain;
    object-position: left center;
    background: transparent !important;
    filter: none !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
    aspect-ratio: auto;
}
.logo-mark--header {
    height: 132px;
    max-height: 132px;
}
.logo-mark--footer {
    display: none;
}
.logo-mark--mobile {
    height: 132px;
    max-height: 132px;
}
/* Single red logo everywhere; white variant only when explicitly set in markup */
.logo-mark--white,
.logo-mark--red,
.brand-logo--on-dark .logo-mark,
.site-header.is-transparent:not(.is-scrolled) .logo-mark,
.site-header:not(.is-transparent) .logo-mark,
.site-header.is-scrolled .logo-mark,
.mobile-panel .logo-mark {
    filter: none !important;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 15.5px;
    line-height: 1.7;
    color: var(--uf-text-soft);
    background: var(--uf-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.is-loading {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast), opacity var(--transition-fast);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--uf-text);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0;
}

p {
    margin: 0;
}

.container {
    width: min(100% - 2.5rem, var(--container-max));
    margin-inline: auto;
}

.section {
    padding: var(--section-pad) 0;
    position: relative;
}

.section-accent {
    background: var(--uf-accent);
}

.section-navy,
.section-dark {
    background: var(--uf-gradient-navy);
    color: rgba(255, 255, 255, 0.82);
}

.section-navy h2,
.section-navy h3,
.section-navy .section-title,
.section-dark h2,
.section-dark h3,
.section-dark .section-title {
    color: var(--uf-white);
}

.section-header {
    max-width: 640px;
    margin-bottom: clamp(2.5rem, 5vw, 3.75rem);
}

.section-header.center {
    text-align: center;
    margin-inline: auto;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--uf-primary);
    margin-bottom: 0.85rem;
}

.section-eyebrow::before {
    content: '';
    width: 22px;
    height: 2px;
    background: var(--uf-primary);
    border-radius: 2px;
}

.section-navy .section-eyebrow,
.section-dark .section-eyebrow {
    color: #F5C6CB;
}

.section-navy .section-eyebrow::before,
.section-dark .section-eyebrow::before {
    background: #F5C6CB;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.15rem);
    margin-bottom: 1rem;
}

.section-text {
    font-size: 1.02rem;
    color: var(--uf-grey);
    max-width: 520px;
}

.section-header.center .section-text {
    margin-inline: auto;
}

.section-navy .section-text,
.section-dark .section-text {
    color: rgba(255, 255, 255, 0.65);
}

.lazy-img {
    opacity: 0;
    transition: opacity 0.6s var(--ease);
}

.lazy-img.is-loaded {
    opacity: 1;
}

::selection {
    background: rgba(122, 15, 29, 0.2);
    color: var(--uf-text);
}
