.elementor-179 .elementor-element.elementor-element-ab6c07b{--display:flex;}.elementor-179 .elementor-element.elementor-element-cfd9100{width:100%;max-width:100%;}/* Start custom CSS for html, class: .elementor-element-94b8642 */:root {
    --navy: #0A1E41;
    --crimson: #B22234;
    --white: #FFFFFF;
    --gold-accent: #C5A059;
    --bg-gray: #f9f9f9;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--white);
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

.brand-section {
    padding: 100px 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.brand-section h1,
.brand-section h2,
.brand-section h3 {
    font-family: 'Cinzel', serif;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.brand-section h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: var(--navy);
    position: relative;
    display: inline-block;
}

.brand-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gold-accent);
}

.brand-section p {
    margin-bottom: 20px;
    font-weight: 300;
    color: #555;
    max-width: 800px;
}

/* --- Brand Navbar --- */
.brand-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 80px;
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-bottom: 2px solid var(--gold-accent);
}

.brand-nav-logo {
    font-family: 'Roboto Slab', serif;
    font-weight: 700;
    color: var(--navy);
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.brand-nav-logo span {
    color: var(--gold-accent);
    font-weight: 400;
}

.btn-pdf {
    background: var(--navy);
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-pdf:hover {
    background: var(--gold-accent);
    transform: translateY(-2px);
}

/* --- Brand Hero --- */
.brand-hero {
    height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: var(--navy);
    color: white;
    position: relative;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    background: radial-gradient(circle, var(--gold-accent) 1.5px, transparent 1.5px);
    background-size: 40px 40px;
    pointer-events: none;
}

.brand-hero h1 {
    font-family: 'Cinzel', serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 4rem;
    margin-bottom: 20px;
    animation: fadeInDown 1.1s ease;
    color: white;
}

.brand-hero p {
    color: var(--gold-accent);
    font-size: 1.1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    max-width: 100%;
}

/* --- Identity Grid --- */
.grid-identity {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.brand-image-container {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    border: 1px solid var(--gold-accent);
    background: var(--white);
}

.brand-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s ease;
}

.brand-image-container:hover img {
    transform: scale(1.1);
}

/* --- Colors --- */
.color-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.color-card {
    background: var(--bg-gray);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border-top: 3px solid var(--gold-accent);
}

.color-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(197, 160, 89, 0.2);
}

.swatch {
    height: 150px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.color-info h3 {
    font-family: 'Cinzel', serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: var(--navy);
    letter-spacing: 1px;
}

.color-info p {
    font-size: 0.8rem;
    margin-bottom: 5px;
}

/* --- Logo Box --- */
.logo-box {
    background: var(--white);
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 450px;
    border: 2px solid var(--gold-accent);
}

/* --- Asset Containers --- */
.asset-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-bottom: 20px;
    background: var(--white);
    overflow: hidden;
    border: 1px solid #f1f1f1;
    transition: all 0.3s ease;
}

.asset-container img,
.asset-container video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.5s ease;
}

.asset-container:hover {
    transform: scale(1.03);
    border-color: var(--gold-accent);
}

.motion-container video {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.motion-container:hover video {
    opacity: 1;
}

.motion-container:hover img {
    opacity: 0;
}

.zoom-hint {
    margin-top: 15px;
    font-size: 0.7rem;
    color: var(--gold-accent);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* --- Modal --- */
.brand-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 30, 65, 0.95);
    backdrop-filter: blur(15px);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.brand-modal.active {
    display: flex;
    opacity: 1;
}

.brand-modal img,
.brand-modal video {
    max-width: 85%;
    max-height: 85%;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.brand-modal.active img,
.brand-modal.active video {
    transform: scale(1);
}

.brand-modal-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: var(--gold-accent);
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
}

/* --- Brand Footer --- */
.brand-footer {
    padding: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--navy);
    color: white;
    border-top: 5px solid var(--gold-accent);
}

.brand-footer p {
    max-width: 100%;
    text-align: center;
}

/* --- Print --- */
@media print {
    .brand-nav, .btn-pdf, .zoom-hint {
        display: none !important;
    }
    body, .brand-section {
        background: white !important;
        padding: 40px 20px !important;
    }
    .brand-footer {
        border-top: none !important;
    }
}

/* --- Animation --- */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .grid-identity { grid-template-columns: 1fr; }
    .brand-nav { padding: 15px 20px; }
    .brand-hero h1 { font-size: 2.5rem; }
    .brand-section { padding: 60px 20px; }
    .brand-nav { flex-wrap: wrap; gap: 10px; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-cfd9100 */.elementor-widget-html,
.elementor-widget-container,
.elementor-section,
.elementor-container,
.elementor-column,
.elementor-column-wrap,
.elementor-widget-wrap {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}


.brand-section {
    padding: 100px 80px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.brand-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 80px;
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-bottom: 2px solid var(--gold-accent);
    width: 100%;
    box-sizing: border-box;
}/* End custom CSS */
/* Start custom CSS *//* --- Elementor Full Width Override --- */
.elementor-widget-html,
.elementor-widget-container,
.elementor-section,
.elementor-container,
.elementor-column,
.elementor-column-wrap,
.elementor-widget-wrap {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

:root {
    --navy: #0A1E41;
    --crimson: #B22234;
    --white: #FFFFFF;
    --gold-accent: #C5A059;
    --bg-gray: #f9f9f9;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--white);
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

.brand-section {
    padding: 100px 80px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.brand-section h1,
.brand-section h2,
.brand-section h3 {
    font-family: 'Cinzel', serif;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.brand-section h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: var(--navy);
    position: relative;
    display: inline-block;
}

.brand-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gold-accent);
}

.brand-section p {
    margin-bottom: 20px;
    font-weight: 300;
    color: #555;
    max-width: 800px;
}

/* --- Brand Navbar --- */
.brand-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 80px;
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-bottom: 2px solid var(--gold-accent);
    width: 100%;
    box-sizing: border-box;
}

.brand-nav-logo {
    font-family: 'Roboto Slab', serif;
    font-weight: 700;
    color: var(--navy);
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.brand-nav-logo span {
    color: var(--gold-accent);
    font-weight: 400;
}

.btn-pdf {
    background: var(--navy);
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-pdf:hover {
    background: var(--gold-accent);
    transform: translateY(-2px);
}

/* --- Brand Hero --- */
.brand-hero {
    width: 100%;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: var(--navy);
    color: white;
    position: relative;
    box-sizing: border-box;
    padding: 80px 40px;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    background: radial-gradient(circle, var(--gold-accent) 1.5px, transparent 1.5px);
    background-size: 40px 40px;
    pointer-events: none;
}

.brand-hero h1 {
    font-family: 'Cinzel', serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 4rem;
    margin-bottom: 20px;
    animation: fadeInDown 1.1s ease;
    color: white;
    position: relative;
    z-index: 1;
}

.brand-hero p {
    color: var(--gold-accent);
    font-size: 1.1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    max-width: 100%;
    position: relative;
    z-index: 1;
}

/* --- Identity Grid --- */
.grid-identity {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.brand-image-container {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    border: 1px solid var(--gold-accent);
    background: var(--white);
}

.brand-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s ease;
}

.brand-image-container:hover img {
    transform: scale(1.1);
}

/* --- Colors --- */
.color-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.color-card {
    background: var(--bg-gray);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border-top: 3px solid var(--gold-accent);
}

.color-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(197, 160, 89, 0.2);
}

.swatch {
    height: 150px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.color-info h3 {
    font-family: 'Cinzel', serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: var(--navy);
}

.color-info p {
    font-size: 0.8rem;
    margin-bottom: 5px;
}

/* --- Logo Box --- */
.logo-box {
    background: var(--white);
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 450px;
    border: 2px solid var(--gold-accent);
    margin-bottom: 50px;
}

/* --- Asset Containers --- */
.asset-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-bottom: 20px;
    background: var(--white);
    overflow: hidden;
    border: 1px solid #f1f1f1;
    transition: all 0.3s ease;
}

.asset-container img,
.asset-container video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.5s ease;
}

.asset-container:hover {
    transform: scale(1.03);
    border-color: var(--gold-accent);
}

.motion-container video {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.motion-container:hover video {
    opacity: 1;
}

.motion-container:hover img {
    opacity: 0;
}

.zoom-hint {
    margin-top: 15px;
    font-size: 0.7rem;
    color: var(--gold-accent);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* --- Modal --- */
.brand-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 30, 65, 0.95);
    backdrop-filter: blur(15px);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.brand-modal.active {
    display: flex;
    opacity: 1;
}

.brand-modal img,
.brand-modal video {
    max-width: 85%;
    max-height: 85%;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.brand-modal.active img,
.brand-modal.active video {
    transform: scale(1);
}

.brand-modal-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: var(--gold-accent);
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
}

/* --- Brand Footer --- */
.brand-footer {
    padding: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--navy);
    color: white;
    border-top: 5px solid var(--gold-accent);
    width: 100%;
    box-sizing: border-box;
}

.brand-footer p {
    max-width: 100%;
    text-align: center;
}

/* --- Print --- */
@media print {
    .brand-nav, .btn-pdf, .zoom-hint {
        display: none !important;
    }
    body, .brand-section {
        background: white !important;
        padding: 40px 20px !important;
    }
    .brand-footer {
        border-top: none !important;
    }
}

/* --- Animation --- */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .grid-identity {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .brand-nav {
        padding: 15px 20px;
        flex-wrap: wrap;
        gap: 10px;
    }
    .brand-hero h1 {
        font-size: 2.5rem;
    }
    .brand-section {
        padding: 60px 20px;
    }
    .logo-box {
        padding: 30px 20px;
    }
}/* End custom CSS */