@font-face {
    font-family: 'Playfair Display';
    src: url('/gatsby_era/typeface_gallery/playfair-display.woff2') format('woff2');
    font-weight: 400 700;
    font-display: swap;
}
@font-face {
    font-family: 'Jost';
    src: url('/gatsby_era/typeface_gallery/jost.woff2') format('woff2');
    font-weight: 300 500;
    font-display: swap;
}
@font-face {
    font-family: 'Cinzel';
    src: url('/gatsby_era/typeface_gallery/cinzel.woff2') format('woff2');
    font-weight: 400 700;
    font-display: swap;
}

:root {
    --primary-h: 38; --primary-s: 85%; --primary-l: 50%;
    --primary: hsl(var(--primary-h), var(--primary-s), var(--primary-l));
    --primary-light: hsl(var(--primary-h), var(--primary-s), 70%);
    --primary-dark: hsl(var(--primary-h), var(--primary-s), 30%);

    --secondary-h: 0; --secondary-s: 0%; --secondary-l: 15%;
    --secondary: hsl(var(--secondary-h), var(--secondary-s), var(--secondary-l));

    --accent-h: 22; --accent-s: 100%; --accent-l: 55%;
    --accent: hsl(var(--accent-h), var(--accent-s), var(--accent-l));

    --base-h: 40; --base-s: 30%; --base-l: 92%;
    --base: hsl(var(--base-h), var(--base-s), var(--base-l));

    --text-h: 0; --text-s: 0%; --text-l: 20%;
    --text: hsl(var(--text-h), var(--text-s), var(--text-l));

    --highlight-h: 160; --highlight-s: 40%; --highlight-l: 50%;
    --highlight: hsl(var(--highlight-h), var(--highlight-s), var(--highlight-l));

    --font-primary: 'Playfair Display', 'Times New Roman', serif;
    --font-secondary: 'Jost', 'Arial', sans-serif;
    ---font-accent: 'Cinzel', 'Georgia', serif;

    --container-max: 1088px;
    --spacing-unit: 1rem;

    --border-gold: 2px solid var(--primary);
    --border-light: 1px solid var(--primary-light);
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    color: var(--text);
    background-color: var(--base);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.2;
    color: var(--secondary);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

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

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
    height: auto;
}

input, button, textarea, select {
    font: inherit;
    border: none;
    background: none;
}

button {
    cursor: pointer;
}

p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
}

.age_overlay--dark {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.age_overlay--dark.is-visible {
    opacity: 1;
    visibility: visible;
}

.age_container--modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(600px, 95%);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
    background: transparent;
}

.age_container--modal.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%);
}

.age_content--frame {
    background: linear-gradient(135deg, var(--base) 0%, #fff5e6 100%);
    border: 3px solid var(--primary);
    border-radius: 30px 8px 30px 8px;
    box-shadow: 15px 15px 0 var(--secondary), 0 0 30px rgba(230, 180, 34, 0.3);
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
}

.age_content--frame::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: var(--primary);
    opacity: 0.1;
    border-radius: 50%;
    z-index: 0;
}

.age_header--section {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    border-bottom: 2px solid var(--primary-light);
    padding-bottom: 1rem;
}

.age_icon--header {
    font-size: 2.5rem;
    color: var(--primary);
}

.age_title--primary {
    font-family: var(--font-primary);
    color: var(--secondary);
    letter-spacing: 2px;
    margin: 0;
    font-size: 1.8rem;
}

.age_body--content {
    position: relative;
    z-index: 1;
    margin-bottom: 2rem;
}

.age_text--description {
    font-family: var(--font-secondary);
    color: var(--text);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1.1rem;
    padding-right: 1rem;
}

.age_checkbox--wrapper {
    background: rgba(230, 180, 34, 0.05);
    padding: 1.2rem;
    border-left: 4px solid var(--primary);
}

.age_checkbox--label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    position: relative;
}

.age_input--checkbox {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.age_icon--checkbox-unchecked,
.age_icon--checkbox-checked {
    font-size: 1.8rem;
    color: var(--primary);
    transition: opacity 0.2s ease;
}

.age_icon--checkbox-checked {
    display: none;
}

.age_input--checkbox:checked ~ .age_icon--checkbox-unchecked {
    display: none;
}

.age_input--checkbox:checked ~ .age_icon--checkbox-checked {
    display: block;
}

.age_checkbox--text {
    font-family: var(--font-secondary);
    color: var(--secondary);
    font-weight: 500;
}

.age_actions--vertical {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 1;
    max-width: 250px;
    margin-left: auto;
}

.age_button--confirm,
.age_button--deny {
    padding: 1rem 1.5rem;
    font-family: var(--font-accent);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.age_button--confirm {
    background: var(--secondary);
    color: var(--base);
}

.age_button--confirm:hover:not(:disabled) {
    background: var(--primary);
    color: var(--secondary);
    transform: translateX(-5px);
    box-shadow: 5px 5px 0 var(--secondary);
}

.age_button--confirm:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: #cccccc;
    color: #666666;
}

.age_button--deny {
    background: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
}

.age_button--deny:hover {
    background: var(--secondary);
    color: var(--base);
    transform: translateX(5px);
}

.age_button--confirm i,
.age_button--deny i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .age_container--modal {
        top: auto;
        bottom: 5%;
        left: 2.5%;
        transform: none;
        width: 95%;
    }
    
    .age_container--modal.is-visible {
        transform: none;
    }
    
    .age_content--frame {
        padding: 1.5rem;
    }
    
    .age_header--section {
        gap: 0.8rem;
    }
    
    .age_icon--header {
        font-size: 2rem;
    }
    
    .age_title--primary {
        font-size: 1.4rem;
    }
    
    .age_text--description {
        font-size: 1rem;
    }
    
    .age_actions--vertical {
        max-width: 100%;
        margin-left: 0;
    }
    
    .age_button--confirm:hover:not(:disabled) {
        transform: none;
    }
    
    .age_button--deny:hover {
        transform: none;
    }
}

@media (max-width: 420px) {
    .age_content--frame {
        padding: 1rem;
    }
    
    .age_checkbox--wrapper {
        padding: 1rem;
    }
    
    .age_checkbox--text {
        font-size: 0.9rem;
    }
}

.cookie_banner--floating {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9997;
    max-width: 450px;
    display: block;
    transform: translateX(-20px) rotate(-1deg);
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
}

.cookie_content--asymmetrical {
    background: var(--secondary);
    border: 3px solid var(--primary);
    border-radius: 60px 20px 60px 20px;
    padding: 1.8rem 2rem 1.8rem 3rem;
    position: relative;
    box-shadow: 20px 20px 0 rgba(0, 0, 0, 0.3), 0 10px 30px rgba(230, 180, 34, 0.2);
    clip-path: polygon(0% 0%, 85% 0%, 100% 15%, 100% 100%, 15% 100%, 0% 85%);
}

.cookie_emblem--corner {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--primary);
    color: var(--secondary);
    width: 50px;
    height: 50px;
    border-radius: 50% 20% 50% 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(15deg);
    box-shadow: -5px 5px 0 var(--base);
}

.cookie_emblem--corner i {
    font-size: 2rem;
    transform: rotate(-15deg);
}

.cookie_main--panel {
    position: relative;
    z-index: 1;
}

.cookie_header--diagonal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    border-bottom: 2px dashed var(--primary);
    padding-bottom: 0.8rem;
}

.cookie_title--deco {
    font-family: var(--font-primary);
    color: var(--base);
    font-size: 1.6rem;
    margin: 0;
    line-height: 1;
}

.cookie_title--deco span {
    color: var(--primary);
    font-family: var(--font-accent);
    display: block;
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.cookie_icon--header {
    font-size: 2.2rem;
    color: var(--primary);
    transform: rotate(45deg);
}

.cookie_body--stacked {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cookie_text--primary {
    font-family: var(--font-secondary);
    color: var(--base);
    line-height: 1.6;
    font-size: 1rem;
    padding-right: 1rem;
}

.cookie_link--accent {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline wavy var(--primary-light);
    text-underline-offset: 4px;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: all 0.3s ease;
}

.cookie_link--accent:hover {
    color: var(--highlight);
    text-decoration-color: var(--highlight);
}

.cookie_link--accent i {
    font-size: 0.9rem;
}

.cookie_actions--skewed {
    display: flex;
    justify-content: flex-end;
    margin-top: 0.5rem;
}

.cookie_button--hexagon {
    background: var(--primary);
    color: var(--secondary);
    border: none;
    padding: 0.8rem 2rem 0.8rem 2.5rem;
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 1rem;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    transition: all 0.3s ease;
    cursor: pointer;
}

.cookie_button--hexagon:hover {
    background: var(--highlight);
    color: var(--secondary);
    transform: scale(1.05) rotate(2deg);
    box-shadow: -5px 5px 0 var(--secondary);
}

.cookie_button--hexagon i {
    font-size: 1.3rem;
}

@media (max-width: 768px) {
    .cookie_banner--floating {
        left: 10px;
        right: 10px;
        bottom: 10px;
        max-width: none;
    }
    
    .cookie_content--asymmetrical {
        clip-path: none;
        border-radius: 30px 10px 30px 10px;
        padding: 1.5rem;
    }
    
    .cookie_emblem--corner {
        top: -10px;
        right: 10px;
        width: 40px;
        height: 40px;
    }
    
    .cookie_emblem--corner i {
        font-size: 1.5rem;
    }
    
    .cookie_header--diagonal {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .cookie_icon--header {
        display: none;
    }
    
    .cookie_actions--skewed {
        justify-content: center;
    }
    
    .cookie_button--hexagon {
        clip-path: none;
        border-radius: 30px 8px 30px 8px;
        width: 100%;
        justify-content: center;
    }
    
    .cookie_button--hexagon:hover {
        transform: none;
    }
}

@media (max-width: 420px) {
    .cookie_content--asymmetrical {
        padding: 1rem;
    }
    
    .cookie_title--deco {
        font-size: 1.3rem;
    }
    
    .cookie_text--primary {
        font-size: 0.9rem;
    }
    
    .cookie_button--hexagon {
        padding: 0.7rem 1rem;
        font-size: 1rem;
    }
}

.header_palace--main {
    background: var(--secondary);
    border-bottom: 4px solid var(--primary);
    position: relative;
    z-index: 100;
}

.header_marquee--top {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 1rem 2rem;
    position: relative;
    display: flex;
    justify-content: center;
    border-bottom: 2px solid var(--primary-light);
}

.header_insignia--wrapper {
    position: relative;
    z-index: 2;
}

.header_crest--link {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0.5rem 2rem;
    background: var(--base);
    border: 3px solid var(--primary);
    border-radius: 50px 10px 50px 10px;
    transform: skewX(-5deg);
    transition: all 0.3s ease;
}

.header_crest--link:hover {
    transform: skewX(-5deg) translateY(-2px);
    box-shadow: 8px 8px 0 var(--primary-dark);
}

.header_icon--crest {
    font-size: 2.5rem;
    color: var(--primary);
    transform: skewX(5deg);
}

.header_title--monogram {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: 4px;
    transform: skewX(5deg);
}

.header_corner--deco {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 100px;
    height: 40px;
    background: repeating-linear-gradient(
        45deg,
        var(--primary) 0px,
        var(--primary) 4px,
        transparent 4px,
        transparent 8px
    );
    opacity: 0.5;
}

.header_pilasters--bottom {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0.5rem 2rem;
}

.header_gallery--nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.header_link--pilaster {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    padding: 0.8rem 1rem;
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--base);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    min-width: 80px;
    text-align: center;
}

.header_link--pilaster i {
    font-size: 1.5rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.header_link--pilaster:hover {
    border-bottom-color: var(--primary);
    transform: translateY(-2px);
}

.header_link--pilaster:hover i {
    transform: scale(1.2);
    color: var(--highlight);
}

.header_link--highlight {
    background: var(--primary);
    color: var(--secondary);
    border-radius: 30px 8px 30px 8px;
    padding: 0.8rem 1.5rem;
}

.header_link--highlight i {
    color: var(--secondary);
}

.header_link--highlight:hover {
    background: var(--highlight);
    border-bottom-color: var(--secondary);
}

.nav_trigger--burger {
    display: none;
    background: none;
    border: 2px solid var(--primary);
    color: var(--base);
    font-size: 2rem;
    padding: 0.3rem 1rem;
    border-radius: 30px 5px 30px 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav_trigger--burger:hover {
    background: var(--primary);
    color: var(--secondary);
}

.nav_list--mobile {
    display: none;
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--secondary);
    border-top: 4px solid var(--primary);
    padding: 2rem;
    flex-direction: column;
    gap: 1rem;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
    z-index: 99;
    max-height: 80vh;
    overflow-y: auto;
}

.nav_list--mobile.is-active {
    transform: translateY(-100%);
    display: flex;
    z-index: 999;
}

.mobile_link--item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    font-family: var(--font-secondary);
    color: var(--base);
    border-bottom: 2px solid var(--primary-light);
    font-size: 1.2rem;
}

.mobile_link--item i {
    font-size: 1.5rem;
    color: var(--primary);
    min-width: 2rem;
}

.mobile_link--item:hover {
    background: var(--primary);
    color: var(--secondary);
    border-bottom-color: var(--secondary);
}

.mobile_link--item:hover i {
    color: var(--secondary);
}

@media (max-width: 976px) {
    .header_pilasters--bottom {
        display: none;
    }
    
    .header_pilasters--bottom {
        display: flex;
        justify-content: flex-end;
        padding: 0.5rem 2rem;
    }
    
    .header_corner--deco {
        display: none;
    }
    
    .header_marquee--top {
        justify-content: flex-start;
    }
    
    .header_crest--link {
        transform: none;
        padding: 0.3rem 1.5rem;
    }
    
    .header_crest--link:hover {
        transform: translateY(-2px);
    }
    
    .header_icon--crest {
        transform: none;
        font-size: 2rem;
    }
    
    .header_title--monogram {
        transform: none;
        font-size: 1.5rem;
    }
}

@media (max-width: 420px) {
    .header_marquee--top {
        padding: 0.5rem 1rem;
    }
    
    .header_crest--link {
        gap: 0.8rem;
    }
    
    .header_title--monogram {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }
    
    .header_icon--crest {
        font-size: 1.5rem;
    }
    
    .nav_list--mobile {
        padding: 1rem;
    }
    
    .mobile_link--item {
        font-size: 1rem;
        padding: 0.8rem;
    }
}

.welcome_hero--panorama {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.welcome_picture--full {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.welcome_image--background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.welcome_overlay--velvet {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(38,38,38,0.7) 50%, rgba(0,0,0,0.85) 100%);
    z-index: 1;
}

.welcome_content--center {
    position: relative;
    z-index: 2;
    max-width: var(--container-max);
    width: 90%;
    margin: 0 auto;
    text-align: center;
    padding: 3rem 0;
}

.welcome_title--monumental {
    font-family: var(--font-primary);
    color: var(--base);
    font-size: clamp(2.2rem, 6vw, 4rem);
    margin-bottom: 1.5rem;
    text-shadow: 4px 4px 0 var(--secondary), 8px 8px 0 rgba(230, 180, 34, 0.3);
    letter-spacing: 2px;
}

.welcome_description--elegant {
    font-family: var(--font-secondary);
    color: var(--base);
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    max-width: 700px;
    margin: 0 auto 3rem;
    opacity: 0.9;
    line-height: 1.6;
}

.welcome_benefits--grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    justify-content: center;
}

.welcome_card--diagonal {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 2px solid var(--primary);
    border-radius: 30px 5px 30px 5px;
    padding: 2rem 1.5rem;
    transition: all 0.3s ease;
    transform: rotate(0deg);
    box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.3);
}

.welcome_card--diagonal:nth-child(odd) {
    transform: rotate(1deg);
}

.welcome_card--diagonal:nth-child(even) {
    transform: rotate(-1deg);
    margin-top: 1rem;
}

.welcome_card--diagonal:hover {
    transform: rotate(0deg) scale(1.02);
    background: rgba(230, 180, 34, 0.15);
    border-color: var(--highlight);
    box-shadow: 15px 15px 0 rgba(0, 0, 0, 0.4);
}

.welcome_card--diagonal i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.welcome_card--diagonal h3 {
    font-family: var(--font-accent);
    color: var(--base);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.welcome_card--diagonal p {
    font-family: var(--font-secondary);
    color: var(--base);
    font-size: 0.95rem;
    opacity: 0.8;
}

.welcome_actions--dual {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.welcome_button--primary,
.welcome_button--secondary {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2.5rem;
    font-family: var(--font-accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.welcome_button--primary {
    background: var(--primary);
    color: var(--secondary);
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
}

.welcome_button--primary:hover {
    background: var(--highlight);
    transform: translateX(5px);
    box-shadow: -5px 5px 0 var(--secondary);
}

.welcome_button--secondary {
    background: transparent;
    color: var(--base);
    border: 2px solid var(--base);
    border-radius: 40px 5px 40px 5px;
}

.welcome_button--secondary:hover {
    background: var(--base);
    color: var(--secondary);
    transform: translateY(-3px);
}

@media (max-width: 976px) {
    .welcome_hero--panorama {
        min-height: 70vh;
    }
    
    .welcome_benefits--grid {
        gap: 1rem;
    }
    
    .welcome_card--diagonal {
        padding: 1.5rem 1rem;
    }
    
    .welcome_card--diagonal:nth-child(odd),
    .welcome_card--diagonal:nth-child(even) {
        transform: none;
        margin-top: 0;
    }
}

@media (max-width: 640px) {
    .welcome_hero--panorama {
        min-height: auto;
        padding: 4rem 0;
    }
    
    .welcome_benefits--grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .welcome_actions--dual {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .welcome_button--primary,
    .welcome_button--secondary {
        justify-content: center;
        clip-path: none;
        border-radius: 30px 5px 30px 5px;
    }
    
    .welcome_button--primary:hover {
        transform: none;
    }
    
    .welcome_button--secondary:hover {
        transform: none;
    }
}

@media (max-width: 420px) {
    .welcome_title--monumental {
        text-shadow: 2px 2px 0 var(--secondary), 4px 4px 0 rgba(230, 180, 34, 0.3);
    }
    
    .welcome_card--diagonal {
        padding: 1.2rem;
    }
    
    .welcome_card--diagonal i {
        font-size: 2rem;
    }
    
    .welcome_card--diagonal h3 {
        font-size: 1.1rem;
    }
}

.games_showcase--grid {
    max-width: var(--container-max);
    margin: 5rem auto;
    padding: 0 2rem;
}

.games_header--deco {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.games_header--deco::before,
.games_header--deco::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 80px;
    height: 2px;
    background: var(--primary);
}

.games_header--deco::before {
    left: calc(50% - 200px);
}

.games_header--deco::after {
    right: calc(50% - 200px);
}

.games_title--ornate {
    font-family: var(--font-primary);
    color: var(--secondary);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0.5rem;
    letter-spacing: 3px;
}

.games_subtitle--elegant {
    font-family: var(--font-secondary);
    color: var(--text);
    font-size: 1.1rem;
    opacity: 0.8;
}

.games_container--flex {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.games_entry--premium {
    flex: 0 1 calc(50% - 2rem);
    min-width: 270px;
    max-width: 500px;
    background: linear-gradient(145deg, var(--base) 0%, #f5f0e6 100%);
    border: 3px solid var(--primary);
    border-radius: 60px 15px 60px 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 15px 15px 0 var(--secondary), 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
}

.games_entry--premium:nth-child(even) {
    transform: translateY(2rem);
    border-radius: 15px 60px 15px 60px;
}

.games_entry--premium:hover {
    transform: translateY(-0.5rem) scale(1.02);
    box-shadow: 20px 20px 0 var(--primary-dark), 0 15px 40px rgba(230,180,34,0.2);
}

.games_entry--premium:nth-child(even):hover {
    transform: translateY(1.5rem) scale(1.02);
}

.games_picture--frame {
    position: relative;
    display: block;
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-bottom: 3px solid var(--primary);
}

.games_image--artwork {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.games_entry--premium:hover .games_image--artwork {
    transform: scale(1.08);
}

.games_content--layered {
    padding: 2rem 1.5rem 1.8rem;
    position: relative;
    background: var(--base);
}

.games_content--layered::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 20px;
    right: 20px;
    height: 15px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--highlight) 100%);
    clip-path: polygon(0% 0%, 95% 0%, 100% 100%, 5% 100%);
}

.games_rating--badge {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    margin-bottom: 1rem;
    background: var(--secondary);
    padding: 0.5rem 1rem;
    border-radius: 40px 5px 40px 5px;
    width: fit-content;
}

.games_rating--badge i {
    color: var(--primary);
    font-size: 1.2rem;
}

.games_score--numeric {
    font-family: var(--font-accent);
    color: var(--base);
    margin-left: 0.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    background: var(--primary);
    padding: 0.2rem 0.6rem;
    border-radius: 20px 3px 20px 3px;
}

.games_name--monogram {
    font-family: var(--font-primary);
    color: var(--secondary);
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    border-left: 4px solid var(--primary);
    padding-left: 1rem;
}

.games_description--brief {
    font-family: var(--font-secondary);
    color: var(--text);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.games_link--golden {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-dark);
    border-bottom: 2px dotted var(--primary);
    padding-bottom: 0.3rem;
    transition: all 0.3s ease;
}

.games_link--golden i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.games_link--golden:hover {
    color: var(--highlight);
    border-bottom-color: var(--highlight);
    gap: 1rem;
}

.games_link--golden:hover i {
    transform: translateX(5px);
}

@media (max-width: 1088px) {
    .games_entry--premium {
        flex: 0 1 calc(50% - 1rem);
    }
    
    .games_entry--premium:nth-child(even) {
        transform: translateY(1rem);
    }
}

@media (max-width: 768px) {
    .games_container--flex {
        gap: 2rem;
    }
    
    .games_entry--premium {
        flex: 0 1 100%;
        max-width: 450px;
    }
    
    .games_entry--premium:nth-child(even) {
        transform: none;
    }
    
    .games_entry--premium:hover {
        transform: scale(1.02);
    }
    
    .games_entry--premium:nth-child(even):hover {
        transform: scale(1.02);
    }
    
    .games_header--deco::before,
    .games_header--deco::after {
        width: 40px;
    }
    
    .games_header--deco::before {
        left: calc(50% - 120px);
    }
    
    .games_header--deco::after {
        right: calc(50% - 120px);
    }
}

@media (max-width: 420px) {
    .games_showcase--grid {
        padding: 0 1rem;
        margin: 3rem auto;
    }
    
    .games_picture--frame {
        height: 180px;
    }
    
    .games_content--layered {
        padding: 1.5rem 1rem;
    }
    
    .games_name--monogram {
        font-size: 1.5rem;
    }
    
    .games_rating--badge i {
        font-size: 1rem;
    }
    
    .games_link--golden:hover {
        gap: 0.5rem;
    }
    
    .games_link--golden:hover i {
        transform: none;
    }
}

.howto_steps--timeline {
    max-width: var(--container-max);
    margin: 6rem auto;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--base) 0%, #f0e9db 100%);
    border-radius: 120px 20px 120px 20px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 50px rgba(230, 180, 34, 0.1), 20px 20px 0 var(--secondary);
}

.howto_steps--timeline::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--primary);
    opacity: 0.05;
    border-radius: 50%;
    z-index: 0;
}

.howto_steps--timeline::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: var(--highlight);
    opacity: 0.05;
    border-radius: 50%;
    z-index: 0;
}

.howto_header--decorative {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.howto_emblem--gear {
    display: inline-block;
    margin-bottom: 1rem;
    animation: rotate-slow 20s linear infinite;
}

.howto_emblem--gear i {
    font-size: 3rem;
    color: var(--primary);
}

@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.howto_title--monument {
    font-family: var(--font-primary);
    color: var(--secondary);
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    margin-bottom: 0.5rem;
    letter-spacing: 4px;
    text-shadow: 3px 3px 0 var(--primary-light);
}

.howto_subtitle--elegant {
    font-family: var(--font-secondary);
    color: var(--text);
    font-size: 1.2rem;
    opacity: 0.8;
}

.howto_container--zigzag {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.howto_step--pillar {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.howto_step--pillar:nth-child(even) {
    flex-direction: row-reverse;
    margin-left: 2rem;
}

.howto_step--pillar:nth-child(even) .howto_connector--diagonal {
    left: auto;
    right: -30px;
    transform: rotate(45deg);
}

.howto_marker--numeric {
    font-family: var(--font-accent);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--base);
    background: var(--secondary);
    padding: 0.5rem 1.2rem;
    border-radius: 50px 5px 50px 5px;
    border: 3px solid var(--primary);
    box-shadow: 8px 8px 0 var(--primary-dark);
    min-width: 90px;
    text-align: center;
    line-height: 1;
    position: relative;
    z-index: 3;
}

.howto_content--panel {
    background: var(--base);
    border: 2px solid var(--primary);
    border-radius: 40px 10px 40px 10px;
    padding: 1.8rem 2rem;
    flex: 1;
    position: relative;
    z-index: 2;
    box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.howto_step--pillar:hover .howto_content--panel {
    transform: translateX(5px) translateY(-5px);
    box-shadow: 15px 15px 0 var(--primary-light);
}

.howto_step--pillar:nth-child(even):hover .howto_content--panel {
    transform: translateX(-5px) translateY(-5px);
}

.howto_icon--chamber {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--primary);
    color: var(--secondary);
    width: 50px;
    height: 50px;
    border-radius: 30px 5px 30px 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(8deg);
    box-shadow: -5px 5px 0 var(--secondary);
}

.howto_icon--chamber i {
    font-size: 1.8rem;
    transform: rotate(-8deg);
}

.howto_heading--gold {
    font-family: var(--font-primary);
    color: var(--secondary);
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    padding-right: 3rem;
}

.howto_description--light {
    font-family: var(--font-secondary);
    color: var(--text);
    line-height: 1.6;
    font-size: 1rem;
}

.howto_connector--diagonal {
    position: absolute;
    bottom: -30px;
    left: 60px;
    width: 40px;
    height: 40px;
    border-right: 3px dashed var(--primary);
    border-bottom: 3px dashed var(--primary);
    transform: rotate(-45deg);
    z-index: 1;
}

.howto_step--pillar:last-child .howto_connector--diagonal {
    display: none;
}

.howto_footer--accent {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.howto_button--guide {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 3rem;
    background: var(--secondary);
    color: var(--base);
    font-family: var(--font-accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    border: 3px solid var(--primary);
    border-radius: 60px 10px 60px 10px;
    transition: all 0.3s ease;
    box-shadow: 10px 10px 0 var(--primary);
}

.howto_button--guide:hover {
    background: var(--primary);
    color: var(--secondary);
    transform: translateY(-5px);
    box-shadow: 15px 15px 0 var(--secondary);
    gap: 1.5rem;
}

.howto_button--guide i {
    font-size: 1.5rem;
}

@media (max-width: 976px) {
    .howto_steps--timeline {
        border-radius: 60px 10px 60px 10px;
        padding: 2rem 1.5rem;
    }
    
    .howto_step--pillar {
        gap: 1rem;
    }
    
    .howto_marker--numeric {
        font-size: 2rem;
        min-width: 70px;
        padding: 0.3rem 0.8rem;
    }
}

@media (max-width: 768px) {
    .howto_step--pillar,
    .howto_step--pillar:nth-child(even) {
        flex-direction: column;
        margin-left: 0;
        gap: 1rem;
    }
    
    .howto_marker--numeric {
        align-self: flex-start;
    }
    
    .howto_connector--diagonal {
        display: none;
    }
    
    .howto_step--pillar:hover .howto_content--panel {
        transform: none;
    }
    
    .howto_step--pillar:nth-child(even):hover .howto_content--panel {
        transform: none;
    }
    
    .howto_content--panel {
        width: 100%;
    }
}

@media (max-width: 420px) {
    .howto_steps--timeline {
        padding: 1.5rem 1rem;
        margin: 3rem auto;
        box-shadow: 10px 10px 0 var(--secondary);
    }
    
    .howto_emblem--gear i {
        font-size: 2.5rem;
    }
    
    .howto_heading--gold {
        font-size: 1.3rem;
        padding-right: 2rem;
    }
    
    .howto_icon--chamber {
        width: 40px;
        height: 40px;
    }
    
    .howto_icon--chamber i {
        font-size: 1.4rem;
    }
    
    .howto_description--light {
        font-size: 0.95rem;
    }
    
    .howto_button--guide {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
}

.cta_banner--diagonal {
    max-width: var(--container-max);
    margin: 5rem auto;
    padding: 0 2rem;
    position: relative;
}

.cta_pattern--geometric {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, 
            var(--primary) 0px, 
            var(--primary) 2px, 
            transparent 2px, 
            transparent 20px),
        repeating-linear-gradient(135deg, 
            var(--primary-light) 0px, 
            var(--primary-light) 1px, 
            transparent 1px, 
            transparent 15px);
    opacity: 0.1;
    z-index: 0;
    border-radius: 100px 20px 100px 20px;
}

.cta_container--asymmetrical {
    position: relative;
    z-index: 2;
    background: linear-gradient(145deg, var(--secondary) 0%, #2a2a2a 100%);
    border: 4px solid var(--primary);
    border-radius: 150px 30px 150px 30px;
    padding: 4rem 3rem;
    clip-path: polygon(0% 0%, 95% 0%, 100% 15%, 100% 85%, 95% 100%, 5% 100%, 0% 85%, 0% 15%);
    box-shadow: 
        20px 20px 0 var(--primary-dark),
        inset 0 0 50px rgba(230, 180, 34, 0.3);
    overflow: hidden;
}

.cta_container--asymmetrical::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    background: var(--primary);
    opacity: 0.1;
    border-radius: 50%;
    z-index: -1;
}

.cta_container--asymmetrical::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 250px;
    height: 250px;
    background: var(--highlight);
    opacity: 0.1;
    border-radius: 50%;
    z-index: -1;
}

.cta_content--layered {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 3;
}

.cta_eyebrow--sparkle {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.cta_eyebrow--sparkle i {
    color: var(--primary);
    font-size: 1.5rem;
    animation: sparkle-pulse 2s ease-in-out infinite;
}

.cta_eyebrow--sparkle i:nth-child(2) {
    animation-delay: 0.3s;
}

.cta_eyebrow--sparkle i:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes sparkle-pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.2); opacity: 1; }
}

.cta_heading--monumental {
    font-family: var(--font-primary);
    color: var(--base);
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    text-shadow: 
        4px 4px 0 var(--primary),
        8px 8px 0 rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

.cta_text--invitation {
    font-family: var(--font-secondary);
    color: var(--base);
    font-size: clamp(1rem, 2vw, 1.3rem);
    max-width: 550px;
    margin: 0 auto 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
    font-style: italic;
    border-left: 3px solid var(--primary);
    border-right: 3px solid var(--primary);
    padding: 1rem 2rem;
}

.cta_action--wrap {
    display: flex;
    justify-content: center;
}

.cta_button--grand {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.3rem 3.5rem;
    background: transparent;
    color: var(--base);
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    border: 3px solid var(--primary);
    border-radius: 80px 15px 80px 15px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta_button--grand::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transition: left 0.4s ease;
    z-index: -1;
}

.cta_button--grand:hover::before {
    left: 0;
    
}

.cta_button--grand:hover {
    color: var(--secondary);
    border-color: var(--highlight);
    transform: translateY(-5px);
    box-shadow: 15px 15px 0 var(--secondary);
    gap: 2rem;
}

.cta_button--grand i {
    font-size: 1.8rem;
    animation: bounce-down 2s ease-in-out infinite;
}

@keyframes bounce-down {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

.cta_emblem--corner {
    position: absolute;
    bottom: 20px;
    right: 30px;
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50% 20% 50% 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(15deg);
    box-shadow: -10px 10px 0 var(--secondary);
    z-index: 4;
}

.cta_emblem--corner i {
    font-size: 3rem;
    color: var(--secondary);
    transform: rotate(-15deg);
}

@media (max-width: 976px) {
    .cta_container--asymmetrical {
        clip-path: none;
        border-radius: 80px 15px 80px 15px;
        padding: 3rem 2rem;
    }
    
    .cta_emblem--corner {
        width: 60px;
        height: 60px;
        bottom: 10px;
        right: 15px;
    }
    
    .cta_emblem--corner i {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .cta_banner--diagonal {
        margin: 3rem auto;
    }
    
    .cta_container--asymmetrical {
        padding: 2.5rem 1.5rem;
    }
    
    .cta_text--invitation {
        padding: 0.8rem 1.5rem;
    }
    
    .cta_button--grand {
        padding: 1rem 2rem;
        font-size: 1rem;
        letter-spacing: 2px;
    }
}

@media (max-width: 420px) {
    .cta_container--asymmetrical {
        padding: 2rem 1rem;
        box-shadow: 10px 10px 0 var(--primary-dark);
    }
    
    .cta_heading--monumental {
        text-shadow: 2px 2px 0 var(--primary), 4px 4px 0 rgba(0, 0, 0, 0.3);
    }
    
    .cta_text--invitation {
        font-size: 1rem;
        padding: 0.5rem 1rem;
        border-left-width: 2px;
        border-right-width: 2px;
    }
    
    .cta_button--grand {
        width: 100%;
        justify-content: center;
    }
    
    .cta_button--grand:hover {
        transform: none;
        gap: 1.5rem;
    }
    
    .cta_emblem--corner {
        width: 50px;
        height: 50px;
    }
    
    .cta_emblem--corner i {
        font-size: 1.8rem;
    }
    
    .cta_eyebrow--sparkle i {
        font-size: 1.2rem;
    }
}

.footer_palace--grand {
    background: var(--secondary);
    border-top: 6px solid var(--primary);
    position: relative;
    margin-top: 4rem;
    padding: 3rem 2rem 0;
    box-shadow: 0 -20px 0 var(--primary-dark);
}

.footer_palace--grand::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
    background: repeating-linear-gradient(
        45deg,
        var(--primary) 0px,
        var(--primary) 10px,
        transparent 10px,
        transparent 20px
    );
    opacity: 0.5;
}

.footer_crest--header {
    max-width: var(--container-max);
    margin: 0 auto 2rem;
    padding-bottom: 2rem;
    border-bottom: 3px double var(--primary);
    display: flex;
    justify-content: center;
}

.footer_emblem--link {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0.8rem 3rem;
    background: var(--base);
    border: 3px solid var(--primary);
    border-radius: 60px 10px 60px 10px;
    transform: skewX(-3deg);
    transition: all 0.3s ease;
}

.footer_emblem--link:hover {
    transform: skewX(-3deg) translateY(-3px);
    box-shadow: 10px 10px 0 var(--primary-dark);
    background: var(--primary-light);
}

.footer_emblem--link i {
    font-size: 2.5rem;
    color: var(--primary);
    transform: skewX(3deg);
    transition: color 0.3s ease;
}

.footer_emblem--link:hover i {
    color: var(--secondary);
}

.footer_title--monogram {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: 4px;
    transform: skewX(3deg);
}

.footer_columns--arcade {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    padding-bottom: 3rem;
}

.footer_column--pilaster {
    flex: 1 1 200px;
    min-width: 180px;
}

.footer_column--wide {
    flex: 2 1 300px;
}

.footer_heading--deco {
    font-family: var(--font-primary);
    color: var(--base);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 3px solid var(--primary);
    position: relative;
}

.footer_heading--deco::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--highlight);
}

.footer_nav--vertical {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer_link--ornate {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem 0;
    color: var(--base);
    font-family: var(--font-secondary);
    transition: all 0.3s ease;
    border-bottom: 1px dashed transparent;
}

.footer_link--ornate i {
    color: var(--primary);
    font-size: 1.3rem;
    min-width: 1.8rem;
    transition: all 0.3s ease;
}

.footer_link--ornate:hover {
    transform: translateX(5px);
    border-bottom-color: var(--primary);
}

.footer_link--ornate:hover i {
    color: var(--highlight);
    transform: scale(1.1);
}

.footer_partners--section {
    max-width: var(--container-max);
    margin: 0 auto 2rem;
    padding: 1.5rem 0 2rem;
    border-bottom: 3px double var(--primary);
}

.footer_heading--centered {
    text-align: center;
    margin-bottom: 2rem;
}

.footer_heading--centered::after {
    left: 50%;
    transform: translateX(-50%);
}

.footer_partners--grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    align-items: stretch;
}

.footer_partner--card {
    flex: 1 1 250px;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid var(--primary-light);
    border-radius: 30px 10px 30px 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer_partner--card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.footer_partner--card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    background: rgba(230, 180, 34, 0.1);
}

.footer_partner--card:hover::before {
    transform: translateX(0);
}

.footer_partner--number {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 0 var(--primary-dark);
}

.footer_partner--name {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--base);
    margin-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-light);
    padding-bottom: 0.3rem;
}

.footer_partner--full {
    font-family: var(--font-secondary);
    font-size: 0.85rem;
    color: var(--base);
    opacity: 0.8;
    line-height: 1.4;
}

.footer_content--panel {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-left: 4px solid var(--primary);
    border-radius: 0 30px 0 30px;
}

.footer_text--golden {
    color: var(--base);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
    font-size: 0.95rem;
    opacity: 0.9;
}

.footer_text--age {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(230, 180, 34, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 30px 5px 30px 5px;
}

.footer_text--age i {
    font-size: 1.2rem;
}

.footer_text--location {
    color: var(--base);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer_contact--stack {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px dashed var(--primary-light);
}

.footer_contact--item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--base);
    font-size: 0.95rem;
    line-height: 1.4;
    padding: 0.3rem 0;
}

.footer_contact--item i {
    color: var(--primary);
    font-size: 1.2rem;
    min-width: 1.8rem;
}

.footer_contact--link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--primary);
    font-family: var(--font-secondary);
    font-weight: 500;
    padding: 0.5rem 0.8rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 40px 5px 40px 5px;
    transition: all 0.3s ease;
    word-break: break-all;
    border: 1px solid transparent;
}

.footer_contact--link:hover {
    background: var(--primary);
    color: var(--secondary);
    transform: translateX(5px);
    border-color: var(--base);
}

.footer_contact--link i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.footer_contact--link:hover i {
    transform: scale(1.1);
    color: var(--secondary);
}
.footer_base--platform {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 1.5rem 0;
    border-top: 2px solid var(--primary-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer_copyright--deco {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--base);
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer_copyright--deco i {
    color: var(--primary);
    font-size: 1rem;
}

.footer_decor--stripes {
    height: 20px;
    width: 200px;
    background: repeating-linear-gradient(
        45deg,
        var(--primary) 0px,
        var(--primary) 5px,
        transparent 5px,
        transparent 10px
    );
    opacity: 0.5;
    border-radius: 20px 5px 20px 5px;
}

@media (max-width: 976px) {
    .footer_columns--arcade {
        gap: 2rem 1rem;
    }
    
    .footer_column--pilaster {
        flex: 1 1 calc(50% - 1rem);
    }
    
    .footer_column--wide {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    .footer_palace--grand {
        padding: 2rem 1rem 0;
    }
    
    .footer_emblem--link {
        padding: 0.5rem 2rem;
    }
    
    .footer_emblem--link i {
        font-size: 2rem;
    }
    
    .footer_title--monogram {
        font-size: 1.5rem;
    }
    
    .footer_heading--deco {
        font-size: 1.3rem;
    }
}

@media (max-width: 420px) {
    .footer_emblem--link {
        gap: 0.8rem;
        padding: 0.4rem 1rem;
        transform: none;
    }
    
    .footer_emblem--link:hover {
        transform: translateY(-2px);
    }
    
    .footer_emblem--link i {
        transform: none;
        font-size: 1.5rem;
    }
    
    .footer_title--monogram {
        transform: none;
        font-size: 1.2rem;
        letter-spacing: 2px;
    }
    
    .footer_column--pilaster {
        flex: 1 1 100%;
    }
    
    .footer_link--ornate:hover {
        transform: none;
    }
    
    .footer_base--platform {
        flex-direction: column;
        text-align: center;
        padding: 1rem 0;
    }
    
    .footer_decor--stripes {
        width: 150px;
    }
    
    .footer_link--email {
        word-break: break-all;
        font-size: 0.9rem;
    }
}