:root {
    --theme-primary: #2d4263;
    --theme-accent: #d4af37;
    --theme-white: #ffffff;
    --theme-text: #1c2431;
    --theme-border: rgba(51, 75, 117, 0.16);
    --theme-bg-soft: #f6f6f2;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Montserrat', sans-serif;
}

body {
    margin: 0;
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--theme-text);
    background-color: var(--theme-white);
}

img {
    height: 100%;
    object-fit: cover;
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(85%);
    margin: 0 auto;
}

.site-header,
.site-footer,
.page-section {
    padding: 0.8vw 0;
}

.site-header {
    padding: 0;
    /* border-bottom: 0.05vw solid var(--theme-border); */
    background-color: var(--theme-white);
}

.header-marquee {
    background-color: var(--theme-primary);
    color: var(--theme-white);
    overflow: hidden;
    border-bottom: 0.05vw solid rgba(255, 255, 255, 0.12);
}

.marquee-track {
    display: flex;
    gap: 1.88vw;
    white-space: nowrap;
    padding: 0.52vw 0;
    min-width: max-content;
    animation: marqueeMove 24s linear infinite;
    font-size: 0.63vw;
    letter-spacing: 0.1vw;
    text-transform: uppercase;
}

.marquee-track span::after {
    content: "\2022";
    margin-left: 1.88vw;
    color: var(--theme-accent);
}

.header-main {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1.04vw;
    padding-top: 0.94vw;
    padding-bottom: 0.94vw;
}

.header-call,
.header-placeholder {
    min-width: 9.38vw;
}

.header-call {
    display: flex;
    flex-direction: column;
    gap: 0.1vw;
    color: var(--theme-primary);
}

.header-call-label {
    font-size: 0.63vw;
    letter-spacing: 0.1vw;
    text-transform: uppercase;
}

.header-call a {
    font-size: 0.94vw;
    font-weight: 600;
}

.site-branding {
    text-align: center;
}

.branding-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.94vw;
}

.branding-logo {
    width: 3.23vw;
    height: 3.23vw;
    object-fit: contain;
}

.branding-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--theme-primary);
}

.branding-title {
    font-family: var(--font-heading);
    font-size: clamp(1.2vw, 2vw, 1.8vw);
    line-height: 1.1;
    color: var(--theme-accent);
}

.branding-subtitle {
    font-size: 0.63vw;
    letter-spacing: 0.16vw;
    text-transform: uppercase;
    color: var(--theme-primary);
    margin-top: 0.31vw;
}

.header-nav-wrap {
    background-color: var(--theme-primary);
}

.site-nav ul,
.breadcrumb,
.events-grid,
.gallery-grid {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-nav ul {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.site-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.33vw;
    padding: 0 1.04vw;
    color: var(--theme-white);
    font-size: 0.73vw;
    letter-spacing: 0.1vw;
    text-transform: uppercase;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.site-nav a:hover {
    color: var(--theme-accent);
}

.site-nav a.active {
    color: var(--theme-accent);
}

.breadcrumb-section {
    background-color: var(--theme-primary);
    padding: 3.5vw 0;
    text-align: center;
    color: var(--theme-white);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.breadcrumb-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8vw;
}

.breadcrumb-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 2.4vw, 4rem);
    color: var(--theme-white);
    margin: 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1vw;
}

.breadcrumb-links {
    display: flex;
    gap: 0.8vw;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.75vw;
    text-transform: uppercase;
    letter-spacing: 0.1vw;
    opacity: 0.8;
}

.breadcrumb-links li:not(:last-child)::after {
    content: "|";
    margin-left: 0.8vw;
    color: var(--theme-accent);
}

.breadcrumb-links a {
    transition: color 0.3s;
}

.breadcrumb-links a:hover {
    color: var(--theme-accent);
}

.events-grid,
.gallery-grid {
    display: grid;
    gap: 1.04vw;
    grid-template-columns: repeat(auto-fit, minmax(11.46vw, 1fr));
}

.event-card {
    border: 0.05vw solid var(--theme-border);
    padding: 0.78vw;
}

.page-section h1,
.page-section h2,
.breadcrumb-section span,
.breadcrumb-section a {
    font-family: var(--font-heading);
}

.page-section h1,
.page-section h2 {
    color: var(--theme-accent);
}

.site-footer {
    background-color: var(--theme-primary);
    color: var(--theme-white);
}

@keyframes marqueeMove {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 960px) {
    .header-main {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .header-call,
    .header-placeholder,
    .branding-link,
    .branding-text {
        justify-content: center;
    }

    .header-call {
        align-items: center;
    }

    .branding-link {
        flex-direction: column;
        gap: 3.2vw;
    }

    .branding-title {
        font-size: 6.4vw;
    }

    .branding-subtitle {
        letter-spacing: 0.53vw;
    }

    .site-nav a {
        min-height: 13.87vw;
        padding: 0 3.73vw;
        font-size: 3.2vw;
    }

    .breadcrumb-section {
        padding: 10vw 0;
    }

    .breadcrumb-title {
        font-size: 8vw;
    }

    .breadcrumb-links {
        font-size: 3.2vw;
        gap: 2vw;
    }

    .breadcrumb-links li:not(:last-child)::after {
        margin-left: 2vw;
    }
}

.container-fluid {
    width: 100%;
    padding: 0;
}

.cp-container {
    width: min(92vw, 96%);
    margin: 0 auto;
}
