@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');

/* ===== FONTS ===== */
@font-face {
    font-family: 'Aileron';
    src: url('fonts/Aileron-Regular.ttf') format('truetype');
    font-weight: 400;
}

@font-face {
    font-family: 'Aileron';
    src: url('fonts/Aileron-Medium.ttf') format('truetype');
    font-weight: 500;
}

@font-face {
    font-family: 'Aileron';
    src: url('fonts/Aileron-Bold.ttf') format('truetype');
    font-weight: 700;
}

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

/* ===== BASE ===== */
body {
    font-family: 'Aileron', sans-serif;
    font-weight: 400;
    background-color: #F9F8F4;
    color: #262626;
    font-size: 16px;
    line-height: 1.6;
}

/* ===== PAGE TRANSITION ===== */
body {
    animation: fadeUp 0.2s ease forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== COLORS ===== */
:root {
    --primary: #3D1F1F;
    --secondary: #DEDACF;
    --accent: #A3968D;
    --background: #F9F8F4;
    --text-dark: #262626;
    --text-primary: #3D1F1F;
}

/* ===== NAVBAR ===== */
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 60px;
    background-color: #F9F8F4;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(163, 150, 141, 0.2);
}

.nav-logo {
    font-family: 'Aileron', sans-serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-cta {
    border: 1px solid var(--primary);
    padding: 10px 24px;
    text-decoration: none;
    color: var(--primary);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background-color: var(--primary);
    color: #F9F8F4;
}

/* ===== HAMBURGER (mobile) ===== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background-color: var(--primary);
    transition: all 0.3s ease;
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--primary);
    color: #F9F8F4;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

.footer-logo {
    font-size: 20px;
    color: #F9F8F4;
    text-decoration: none;
    letter-spacing: 1px;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.footer-socials a {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(249, 248, 244, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #F9F8F4;
    font-size: 12px;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    border-color: #F9F8F4;
}

.footer-col h4 {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(249, 248, 244, 0.6);
    margin-bottom: 20px;
    font-weight: 400;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul a {
    text-decoration: none;
    color: #F9F8F4;
    font-size: 14px;
    transition: opacity 0.3s ease;
}

.footer-col ul a:hover {
    opacity: 0.7;
}

.footer-bottom {
    background-color: var(--primary);
    text-align: left;
    padding: 0px 60px 30px;
    font-size: 12px;
    color: rgba(249, 248, 244, 0.5);
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-block;
    background-color: var(--primary);
    color: #F9F8F4;
    padding: 14px 32px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    opacity: 0.85;
}

.btn-outline {
    display: inline-block;
    border: 1px solid #F9F8F4;
    color: #F9F8F4;
    padding: 14px 32px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: #F9F8F4;
    color: var(--primary);
}

.btn-dark-outline {
    display: inline-block;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 14px 32px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-dark-outline:hover {
    background-color: var(--primary);
    color: #F9F8F4;
}

/* ===== SECTION TITLES ===== */
.section-title {
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-dark);
    font-weight: 400;
    text-align: center;
    margin-bottom: 40px;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    nav {
        padding: 16px 24px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 65px;
        left: 0;
        width: 100%;
        background-color: #F9F8F4;
        padding: 24px;
        gap: 24px;
        border-bottom: 1px solid var(--secondary);
    }

    .nav-links.open {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    footer {
        grid-template-columns: 1fr;
        padding: 40px 24px;
        gap: 32px;
    }

    .footer-bottom {
        padding: 0 24px 24px;
    }
}
/* ===== HERO ===== */
.hero {
    position: relative;
    height: 100vh;
    background-color: var(--primary);
    background-image: url('assets/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.45);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 750px;
    padding: 0 24px;
    color: #F9F8F4;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 36px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== ABOUT PREVIEW ===== */
.about-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 100px 60px;
    align-items: center;
    background-color: var(--background);
}

.about-preview-text h2 {
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 24px;
    font-weight: 400;
}

.about-preview-text p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.about-preview-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* ===== WHAT TO EXPECT ===== */
.expect {
    background-color: var(--primary);
    padding: 80px 60px;
    color: #F9F8F4;
}

.expect .section-title {
    color: #F9F8F4;
}

.expect-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.expect-card {
    border: 1px solid rgba(249, 248, 244, 0.2);
    padding: 32px;
}

.expect-card h3 {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 16px;
    color: #F9F8F4;
}

.expect-card p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(249, 248, 244, 0.8);
}

/* ===== UPCOMING EVENTS ===== */
.upcoming-events {
    padding: 100px 60px;
    background-color: var(--background);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.event-card {
    border: 1px solid var(--secondary);
}

.event-card-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.event-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.event-card-body h3 {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
}

.event-card-body p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--accent);
}

.event-date {
    font-size: 13px;
    color: var(--accent);
}

/* ===== TESTIMONIAL ===== */
.testimonial {
    background-color: var(--secondary);
    padding: 100px 60px;
    text-align: center;
}

.testimonial-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.testimonial-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
    margin: 20px 0;
}

.testimonial-author {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    display: block;
    margin-top: 16px;
}

.quote-mark {
    font-size: 60px;
    color: var(--accent);
    line-height: 0;
    vertical-align: -20px;
    opacity: 0.4;
}

/* ===== GALLERY PREVIEW ===== */
.gallery-preview {
    padding: 100px 60px;
    background-color: var(--background);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 220px);
    gap: 8px;
}

.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===== MAILING LIST ===== */
.mailing {
    background-color: var(--primary);
    padding: 100px 60px;
    text-align: center;
    color: #F9F8F4;
}

.mailing h2 {
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 16px;
}

.mailing p {
    font-size: 15px;
    opacity: 0.8;
    margin-bottom: 40px;
}

.mailing-form {
    display: flex;
    gap: 0;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.mailing-form input {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid rgba(249, 248, 244, 0.4);
    background: transparent;
    color: #F9F8F4;
    font-family: 'Aileron', sans-serif;
    font-size: 13px;
    outline: none;
}

.mailing-form input::placeholder {
    color: rgba(249, 248, 244, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 11px;
}

/* ===== CONTACT STRIP ===== */
.contact-strip {
    padding: 80px 60px;
    text-align: center;
    background-color: var(--background);
}

.contact-strip h2 {
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 16px;
}

.contact-strip a {
    font-size: 16px;
    color: var(--primary);
    text-decoration: underline;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .about-preview {
        grid-template-columns: 1fr;
        padding: 60px 24px;
        gap: 40px;
    }

    .expect {
        padding: 60px 24px;
    }

    .expect-grid {
        grid-template-columns: 1fr;
    }

    .upcoming-events {
        padding: 60px 24px;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .testimonial {
        padding: 60px 24px;
    }

    .gallery-preview {
        padding: 60px 24px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .mailing {
        padding: 60px 24px;
    }

    .mailing-form {
        flex-direction: column;
    }

    .contact-strip {
        padding: 60px 24px;
    }
}
/* ===== UPDATED HEADING STYLES ===== */
.about-preview-text h2,
.section-title,
.upcoming-events .section-title,
.testimonial .section-title,
.gallery-preview .section-title,
.mailing h2,
.contact-strip h2 {
    font-family: 'Aileron', sans-serif;
    font-size: 48px;
    font-weight: 400;
    color: #3D1F1F;
    letter-spacing: 0;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 40px;
}

/* ===== WHAT TO EXPECT - WHITE CARDS ===== */
.expect-card {
    border: 1px solid rgba(249, 248, 244, 0.2);
    padding: 32px;
    background-color: #F9F8F4;
}

.expect-card h3 {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 16px;
    color: #3D1F1F;
}

.expect-card p {
    font-size: 14px;
    line-height: 1.8;
    color: #262626;
}

/* ===== EVENT CARDS TYPOGRAPHY ===== */
.event-card-body h3 {
    font-family: 'Aileron', sans-serif;
    font-size: 40px;
    font-weight: 400;
    color: #3D1F1F;
    text-transform: uppercase;
    letter-spacing: 0;
    line-height: 1.1;
}

.event-card-body p {
    font-family: 'Aileron', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #262626;
    line-height: 1.5;
}

.event-date {
    font-family: 'Aileron', sans-serif;
    font-size: 24px;
    color: #262626;
}

/* ===== TESTIMONIAL ===== */
.testimonial {
    background-color: var(--secondary);
    padding: 100px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testimonial-inner {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.testimonial-quote {
    font-family: 'Times New Roman', Times, serif;
    font-style: italic;
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: -0.011em;
    color: #3D1F1F;
    margin: 40px 0 24px;
}

.testimonial-author {
    font-family: 'Aileron', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #262626;
    display: block;
    margin-top: 20px;
    text-transform: none;
    letter-spacing: 0;
}

.quote-open {
    font-family: 'Times New Roman', Times, serif;
    font-size: 120px;
    color: #3D1F1F;
    line-height: 0.8;
    display: block;
    text-align: left;
    opacity: 1;
    margin-bottom: -20px;
}

.quote-close {
    font-family: 'Times New Roman', Times, serif;
    font-size: 120px;
    color: #3D1F1F;
    line-height: 0;
    display: block;
    text-align: right;
    opacity: 1;
    margin-top: 20px;
}

/* ===== SLIDE INDICATOR ===== */
.slide-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.slide-indicators span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(61, 31, 31, 0.3);
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slide-indicators span.active {
    background-color: #3D1F1F;
}

/* ===== GALLERY GRID ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 8px;
}

.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/* ===== BODY FONT FIX ===== */
body {
    font-size: 18px;
}

/* ===== ABOUT PREVIEW TEXT ALIGNMENT ===== */
.about-preview-text {
    padding: 0;
}

/* ===== EXPECT CARD HEADING SIZE ===== */
.expect-card h3 {
    font-size: 20px;
    letter-spacing: 1px;
}

/* ===== EVENT CARD FIXES ===== */
.event-card-body h3 {
    font-size: 20px;
    letter-spacing: 1px;
}

.event-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.event-date {
    margin-bottom: 16px;
}

.btn-primary {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== TESTIMONIAL QUOTE MARKS ===== */
.testimonial-inner {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    padding: 0 80px;
}

.quote-open {
    font-family: 'Times New Roman', Times, serif;
    font-size: 120px;
    color: #A3968D;
    line-height: 1;
    position: absolute;
    left: 0;
    top: 0;
}

.quote-close {
    font-family: 'Times New Roman', Times, serif;
    font-size: 120px;
    color: #A3968D;
    line-height: 1;
    position: absolute;
    right: 0;
    bottom: 0;
}
/* ===== ABOUT TEXT ALIGNMENT FIX ===== */
.about-preview {
    padding: 100px 60px;
    align-items: start;
}

.about-preview-text {
    padding-top: 0;
    margin-top: 0;
}

.about-preview-text h2 {
    text-align: left;
    margin-bottom: 24px;
}

/* ===== EVENT CARD HEADER FIX ===== */
.event-card-body h3 {
    font-family: 'Aileron', sans-serif;
    font-size: 32px;
    font-weight: 400;
    color: #3D1F1F;
    text-transform: uppercase;
    line-height: 1.1;
}

.event-card-body p {
    font-size: 18px;
    line-height: 1.6;
    color: #262626;
}

.event-date {
    font-size: 18px;
    color: #262626;
    margin-bottom: 16px;
}

/* ===== TESTIMONIAL QUOTE FIX ===== */
.testimonial-inner {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    padding: 60px 80px;
}

.quote-open {
    font-family: 'Times New Roman', Times, serif;
    font-size: 140px;
    color: #A3968D;
    line-height: 1;
    position: absolute;
    left: -20px;
    top: -10px;
}

.quote-close {
    font-family: 'Times New Roman', Times, serif;
    font-size: 140px;
    color: #A3968D;
    line-height: 1;
    position: absolute;
    right: -20px;
    bottom: 40px;
}
/* ===== TESTIMONIAL QUOTE 3 LINES MAX ===== */
.testimonial-quote {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: 'Times New Roman', Times, serif;
    font-style: italic;
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: -0.011em;
    color: #3D1F1F;
}
/* ===== TESTIMONIAL FIX ===== */
.testimonial-inner {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 60px 100px;
}

.testimonial-quote {
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
    font-family: 'Times New Roman', Times, serif;
    font-style: italic;
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: -0.011em;
    color: #3D1F1F;
}

.quote-open {
    font-family: 'Times New Roman', Times, serif;
    font-size: 140px;
    color: #A3968D;
    line-height: 1;
    position: absolute;
    left: -10px;
    top: 0px;
}

.quote-close {
    font-family: 'Times New Roman', Times, serif;
    font-size: 140px;
    color: #A3968D;
    line-height: 1;
    position: absolute;
    right: -10px;
    bottom: 60px;
}
/* ===== TESTIMONIAL SPACING FIX ===== */
.testimonial-inner {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 20px 100px;
}

.testimonial .section-title {
    margin-bottom: 0px;
}
/* ===== TESTIMONIAL WIDTH FIX ===== */
.testimonial-inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    padding: 20px 120px;
}
/* ===== LOGO IMAGE ===== */
.nav-logo img {
    height: 32px;
    width: auto;
}

.footer-logo img {
    height: 28px;
    width: auto;
}
/* ===== MAILING BACKGROUND IMAGE ===== */
.mailing {
    background-image: url('assets/mailing-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.mailing::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(61, 31, 31, 0.85);
}

.mailing-inner {
    position: relative;
    z-index: 1;
}
/* ===== MAILING HEADING WHITE ===== */
.mailing h2 {
    color: #F9F8F4;
}

/* ===== GALLERY GRID FIX ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 8px;
}

.gallery-grid img:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}

.gallery-grid img:nth-child(2) {
    grid-column: 2;
    grid-row: 1 / 3;
    height: 100%;
}

.gallery-grid img:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
}

.gallery-grid img:nth-child(4) {
    grid-column: 4;
    grid-row: 1;
}

.gallery-grid img:nth-child(5) {
    grid-column: 1;
    grid-row: 2;
}

.gallery-grid img:nth-child(6) {
    grid-column: 3;
    grid-row: 2;
}

.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/* ===== MAILING OVERLAY DARKER ===== */
.mailing::before {
    background-color: rgba(30, 10, 10, 0.92);
}

/* ===== MAILING CTA BUTTON WHITE ===== */
.mailing .btn-primary {
    background-color: transparent;
    border: 1px solid #F9F8F4;
    color: #F9F8F4;
}

.mailing .btn-primary:hover {
    background-color: #F9F8F4;
    color: var(--primary);
}

/* ===== GALLERY GRID FIX ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 250px 250px;
    gap: 8px;
}

.gallery-grid img:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-grid img:nth-child(2) {
    grid-column: 2;
    grid-row: 1 / 3;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-grid img:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-grid img:nth-child(4) {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-grid img:nth-child(5) {
    grid-column: 3;
    grid-row: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* ===== MAILING FORM SPACING ===== */
.mailing-form {
    gap: 16px;
    flex-wrap: wrap;
}

/* ===== GALLERY IMAGE POSITION FIX ===== */
.gallery-grid img:nth-child(2) {
    object-position: top;
}

.gallery-grid img:nth-child(4) {
    object-position: top;
}

.gallery-grid img:nth-child(5) {
    object-position: top;
}
/* ===== MAILING INPUT WHITE ===== */
.mailing-form input {
    border: 1px solid #F9F8F4;
    color: #F9F8F4;
    background-color: transparent;
}

.mailing-form input::placeholder {
    color: rgba(249, 248, 244, 0.6);
}
/* ===== CONTACT STRIP EMAIL ===== */
.contact-strip a {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
}
/* ===== EVENT CARD BODY TEXT FIX ===== */
.event-card-body p,
.event-card-body .event-date {
    font-size: 16px;
    line-height: 1.6;
}
/* ===== NAV LOGO FIX ===== */
.nav-logo img {
    height: 40px;
    width: auto;
    display: block;
}
/* ===== NAV LOGO INVERT FIX ===== */
.nav-logo img {
    filter: invert(1);
}
/* ===== SECTION HEADING SIZE REDUCTION ===== */
.about-preview-text h2,
.section-title,
.upcoming-events .section-title,
.testimonial .section-title,
.gallery-preview .section-title,
.mailing h2,
.contact-strip h2 {
    font-size: 36px;
}
/* ===== HERO HEADING SIZE REDUCTION ===== */
.hero-content h1 {
    font-size: 36px;
}
/* ===== EVENT CARD HEADING RESTORE ===== */
.event-card-body h3 {
    font-size: 32px;
}
/* ===== EVENT CARD HEADING LETTER SPACING ===== */
.event-card-body h3 {
    font-size: 24px;
    letter-spacing: 0;
}
/* ===== MAX WIDTH ===== */
body {
    max-width: 1440px;
    margin: 0 auto;
}
/* ===== MOBILE RESPONSIVENESS ===== */
@media (max-width: 768px) {

    /* HERO */
    .hero {
        height: 80vh;
        padding: 0 24px;
    }

    .hero-content h1 {
        font-size: 28px;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero-buttons a {
        width: 100%;
        text-align: center;
    }

    /* ABOUT */
    .about-preview {
        grid-template-columns: 1fr;
        padding: 60px 24px;
        gap: 32px;
    }

    .about-preview-image {
        order: -1;
    }

    .about-preview-image img {
        height: 280px;
    }

    .about-preview-text h2 {
        font-size: 28px;
    }

    /* WHAT TO EXPECT */
    .expect {
        padding: 60px 24px;
    }

    .expect .section-title {
        font-size: 28px;
    }

    .expect-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* UPCOMING EVENTS */
    .upcoming-events {
        padding: 60px 24px;
    }

    .upcoming-events .section-title {
        font-size: 28px;
    }

    .events-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .event-card-body h3 {
        font-size: 20px;
    }

    /* TESTIMONIAL */
    .testimonial {
        padding: 60px 24px;
    }

    .testimonial .section-title {
        font-size: 28px;
    }

    .testimonial-inner {
        padding: 20px 40px;
        max-width: 100%;
    }

    .testimonial-quote {
        font-size: 20px;
    }

    .quote-open {
        font-size: 80px;
        left: -10px;
    }

    .quote-close {
        font-size: 80px;
        right: -10px;
    }

    .testimonial-author {
        font-size: 16px;
    }

    /* GALLERY */
    .gallery-preview {
        padding: 60px 24px;
    }

    .gallery-preview .section-title {
        font-size: 28px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        gap: 8px;
    }

    .gallery-grid img:nth-child(1),
    .gallery-grid img:nth-child(2),
    .gallery-grid img:nth-child(3),
    .gallery-grid img:nth-child(4),
    .gallery-grid img:nth-child(5) {
        grid-column: auto;
        grid-row: auto;
        height: 180px;
    }

    /* MAILING */
    .mailing {
        padding: 60px 24px;
    }

    .mailing h2 {
        font-size: 28px;
    }

    .mailing-form {
        flex-direction: column;
        gap: 12px;
    }

    .mailing-form input,
    .mailing-form button {
        width: 100%;
    }

    /* CONTACT STRIP */
    .contact-strip {
        padding: 60px 24px;
    }

    .contact-strip h2 {
        font-size: 24px;
    }

    /* FOOTER */
    footer {
        grid-template-columns: 1fr;
        padding: 40px 24px;
        gap: 32px;
    }

    .footer-bottom {
        padding: 0 24px 24px;
    }

    /* NAV */
    nav {
        padding: 16px 24px;
    }

    .nav-cta {
        display: none;
    }
}
/* ===== LETTER SPACING ALL SECTION HEADINGS ===== */
.about-preview-text h2,
.section-title,
.upcoming-events .section-title,
.testimonial .section-title,
.gallery-preview .section-title,
.mailing h2,
.contact-strip h2,
.expect .section-title {
    letter-spacing: -0.04em;
}

/* ===== MAILING INPUT TEXT CENTERED ===== */
.mailing-form input {
    text-align: center;
}

/* ===== MOBILE FIXES ===== */
@media (max-width: 768px) {

    /* NAV SPACING FIX */
    .nav-links {
        top: 57px;
    }

    /* GALLERY LAST IMAGE FULL WIDTH */
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-grid img:nth-child(5) {
        grid-column: 1 / 3;
        height: 180px;
    }
}
/* ===== NAV BACKGROUND FIX ===== */
nav {
    background-color: #F9F8F4;
    opacity: 1;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    border-bottom: 1px solid rgba(163, 150, 141, 0.2);
}
/* ===== MOBILE GALLERY FIX ===== */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .gallery-grid img:nth-child(1) {
        grid-column: 1;
        grid-row: auto;
        height: 180px;
    }

    .gallery-grid img:nth-child(2) {
        grid-column: 2;
        grid-row: auto;
        height: 180px;
    }

    .gallery-grid img:nth-child(3) {
        grid-column: 1;
        grid-row: auto;
        height: 180px;
    }

    .gallery-grid img:nth-child(4) {
        grid-column: 2;
        grid-row: auto;
        height: 180px;
    }

    .gallery-grid img:nth-child(5) {
        grid-column: 1 / 3;
        grid-row: auto;
        height: 200px;
    }
}
/* ===== NAV FULL WIDTH FIX ===== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100vw;
    max-width: 100vw;
    background-color: #F9F8F4 !important;
    z-index: 9999;
}
/* ===== MOBILE GALLERY SPACING FIX ===== */
@media (max-width: 768px) {
    .gallery-preview {
        padding-bottom: 60px;
    }

    .gallery-preview .btn-dark-outline {
        margin-top: 24px;
    }
}
/* ===== SEE MORE BUTTON SPACING FIX ===== */
@media (max-width: 768px) {
    .gallery-preview {
        padding-bottom: 80px;
    }

    .gallery-preview div[style] {
        margin-bottom: 40px;
    }
}
/* ===== MOBILE GALLERY LAST IMAGE HEIGHT ===== */
@media (max-width: 768px) {
    .gallery-grid img:nth-child(5) {
        height: 150px;
    }
}
/* ===== MOBILE GALLERY LAST IMAGE PORTRAIT ===== */
@media (max-width: 768px) {
    .gallery-grid img:nth-child(5) {
        height: 300px !important;
        object-position: center;
    }
}
/* ===== MOBILE GALLERY LAST IMAGE FIX ===== */
@media (max-width: 768px) {
    .gallery-grid img:nth-child(5) {
        height: 300px !important;
        object-position: top;
    }

    .gallery-preview div[style] {
        margin-top: 16px !important;
    }
}
/* ===== HERO KEN BURNS SETUP ===== */
.hero {
    background-size: 100%;
    transition: none;
}
/* ===== EXPECT CARD HOVER ===== */
.expect-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

.expect-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(61, 31, 31, 0.12);
}
/* ===== EXPECT CARD ZOOM HOVER ===== */
.expect-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

.expect-card:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 40px rgba(61, 31, 31, 0.12);
}
/* ===== EXPECT CARD ZOOM HOVER FIX ===== */
.expect-card:hover {
    transform: scale(1.03) !important;
    box-shadow: 0 12px 40px rgba(61, 31, 31, 0.12) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}
/* ===== GALLERY IMAGE HOVER ===== */
.gallery-grid {
    overflow: hidden;
}

.gallery-grid img {
    transition: transform 0.5s ease;
    cursor: pointer;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}
/* ===== GALLERY ITEM ===== */
.gallery-item {
    overflow: hidden;
    position: relative;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(61, 31, 31, 0);
    transition: background-color 0.4s ease;
}

.gallery-item:hover::after {
    background-color: rgba(61, 31, 31, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}
/* ===== GALLERY GRID ITEM FIX ===== */
.gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 280px);
}

.gallery-grid .gallery-item:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}

.gallery-grid .gallery-item:nth-child(2) {
    grid-column: 2;
    grid-row: 1 / 3;
}

.gallery-grid .gallery-item:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
}

.gallery-grid .gallery-item:nth-child(4) {
    grid-column: 1;
    grid-row: 2;
}

.gallery-grid .gallery-item:nth-child(5) {
    grid-column: 3;
    grid-row: 2;
}
/* ===== GALLERY GRID COMPLETE FIX ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 280px 280px;
    gap: 8px;
    height: 568px;
}

.gallery-item {
    overflow: hidden;
    position: relative;
    height: 100%;
    width: 100%;
}

.gallery-item:nth-child(2) {
    grid-row: 1 / 3;
    height: 100%;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/* ===== ABOUT PAGE ===== */
.about-hero {
    padding: 100px 60px 60px;
    background-color: var(--background);
    max-width: 700px;
}

.about-hero h1 {
    font-size: 36px;
    font-weight: 400;
    color: #3D1F1F;
    text-transform: uppercase;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
}

.about-hero p {
    font-size: 18px;
    line-height: 1.8;
    color: #262626;
    margin-bottom: 16px;
}

.about-hero-image {
    width: 100%;
}

.about-hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.why-socios {
    padding: 100px 60px;
    background-color: var(--background);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.why-socios p {
    font-size: 18px;
    line-height: 1.8;
    color: #262626;
}

/* ===== VISION & MISSION ===== */
.vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    padding: 100px 60px;
    background-color: var(--secondary);
    align-items: center;
}

.vision-image-left img,
.vision-image-right img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.vision-content {
    text-align: center;
    padding: 0 20px;
}

.vision-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #262626;
}

/* ===== MEET ARTISTS ===== */
.meet-artists {
    padding: 100px 60px;
    background-color: var(--background);
}

.artists-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.artist-card {
    background-color: #F9F8F4;
    border: 1px solid var(--secondary);
}

.artist-card-dark {
    background-color: var(--primary);
}

.artist-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.artist-info {
    padding: 24px;
}

.artist-info h3 {
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #3D1F1F;
    margin-bottom: 8px;
}

.artist-card-dark .artist-info h3 {
    color: #F9F8F4;
}

.artist-role {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    display: block;
    margin-bottom: 16px;
}

.artist-info p {
    font-size: 14px;
    line-height: 1.8;
    color: #262626;
}

.artist-card-dark .artist-info p {
    color: rgba(249, 248, 244, 0.8);
}

/* ===== ABOUT MOBILE ===== */
@media (max-width: 768px) {
    .about-hero {
        padding: 60px 24px 40px;
    }

    .about-hero-image img {
        height: 300px;
    }

    .why-socios {
        padding: 60px 24px;
    }

    .vision-mission {
        grid-template-columns: 1fr;
        padding: 60px 24px;
        gap: 24px;
    }

    .vision-image-left,
    .vision-image-right {
        display: none;
    }

    .meet-artists {
        padding: 60px 24px;
    }

    .artists-grid {
        grid-template-columns: 1fr;
    }

    .artist-image img {
        height: 280px;
    }
}
/* ===== ABOUT HERO CENTER ===== */
.about-hero {
    padding: 100px 60px 60px;
    background-color: var(--background);
    max-width: 100%;
    text-align: center;
}

.about-hero h1 {
    text-align: center;
}

.about-hero p {
    max-width: 700px;
    margin: 0 auto 16px;
}

/* ===== ARTIST CARDS ANGLED ===== */
.artists-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 0 80px;
}

.artist-card {
    border: 1px solid var(--secondary);
    transition: transform 0.3s ease;
}

.artist-card:nth-child(1) {
    transform: rotate(-2deg);
}

.artist-card:nth-child(2) {
    transform: rotate(2deg);
    margin-top: 40px;
}

.artist-card:hover {
    transform: rotate(0deg) scale(1.02);
}

.artist-card-dark:hover {
    transform: rotate(0deg) scale(1.02);
}

/* ===== ABOUT MOBILE FIX ===== */
@media (max-width: 768px) {
    .about-hero {
        padding: 60px 24px 40px;
    }

    .artists-grid {
        padding: 0;
        gap: 40px;
    }

    .artist-card:nth-child(1) {
        transform: rotate(-1deg);
    }

    .artist-card:nth-child(2) {
        transform: rotate(1deg);
        margin-top: 0;
    }
}
/* ===== ARTIST IMAGE POSITION FIX ===== */
.artist-card:nth-child(1) .artist-image img {
    object-position: top;
}

.artist-card:nth-child(2) .artist-image img {
    object-position: top;
}
/* ===== VISION IMAGE HOVER ===== */
.vision-image-left,
.vision-image-right {
    overflow: hidden;
}

.vision-image-left img,
.vision-image-right img {
    transition: transform 0.5s ease;
    cursor: pointer;
}

.vision-image-left:hover img,
.vision-image-right:hover img {
    transform: scale(1.05);
}
/* ===== PAGE TRANSITION ===== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

body {
    animation: fadeIn 0.15s ease forwards;
}
/* ===== SWUP TRANSITION ===== */
html.is-animating .transition-fade {
    opacity: 0;
    transform: translateY(10px);
}

.transition-fade {
    transition: opacity 0.3s ease, transform 0.3s ease;
}
/* ===== CONTACT HERO FIX ===== */
.contact-hero {
    padding: 100px 60px 80px;
    text-align: center;
    background-color: var(--background);
}

.contact-hero h1 {
    font-size: 36px;
    font-weight: 400;
    color: #3D1F1F;
    text-transform: uppercase;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
}

/* ===== FAQ FIX ===== */
.faq-item {
    background-color: var(--background) !important;
    border: 1px solid rgba(163, 150, 141, 0.3) !important;
    padding: 0 !important;
}

.faq-question {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 24px 32px !important;
    cursor: pointer;
}

.faq-answer {
    display: none;
    padding: 0 32px 24px !important;
}

.faq-item.open .faq-answer {
    display: block !important;
}
/* ===== FAQ COMPLETE FIX ===== */
.faq {
    background-color: var(--secondary) !important;
    padding: 100px 60px !important;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--background) !important;
    border: 1px solid rgba(163, 150, 141, 0.3) !important;
    padding: 0 !important;
}

.faq-question {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 28px 32px !important;
    cursor: pointer;
    gap: 24px;
}

.faq-question span {
    font-size: 18px !important;
    font-weight: 500 !important;
    color: #262626 !important;
    line-height: 1.4;
}

.faq-toggle {
    background: none !important;
    border: 1px solid #262626 !important;
    border-radius: 50% !important;
    width: 32px !important;
    height: 32px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 18px !important;
    color: #262626 !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
}

.faq-answer {
    display: none;
    padding: 0 32px 28px !important;
}

.faq-item.open .faq-answer {
    display: block !important;
}

.faq-answer p {
    font-size: 15px !important;
    line-height: 1.8 !important;
    color: #262626 !important;
    margin-bottom: 12px !important;
}

/* ===== FAQ MOBILE ===== */
@media (max-width: 768px) {
    .faq {
        padding: 60px 24px !important;
    }

    .faq-question {
        padding: 20px 24px !important;
    }

    .faq-answer {
        padding: 0 24px 20px !important;
    }
}
/* ===== FAQ ICON FIX ===== */
.faq-toggle {
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
    width: auto !important;
    height: auto !important;
    font-size: 20px !important;
    color: #262626 !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
    padding: 0 !important;
}

.faq-question span {
    font-size: 18px !important;
    font-weight: 500 !important;
    color: #3D1F1F !important;
    line-height: 1.4;
}
/* ===== FAQ ANIMATION ===== */
.faq-answer {
    display: grid !important;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
    overflow: hidden;
    padding: 0 32px !important;
}

.faq-answer > * {
    overflow: hidden;
}

.faq-item.open .faq-answer {
    grid-template-rows: 1fr !important;
    padding: 0 32px 28px !important;
}
/* ===== EVENTS PAGE ===== */
.events-page-upcoming {
    padding: 100px 60px 80px;
    background-color: var(--background);
}

.events-page-past {
    padding: 80px 60px 100px;
    background-color: var(--background);
}

/* ===== PAST EVENTS GRID ===== */
.past-events-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.past-event-card {
    position: relative;
    display: block;
    overflow: hidden;
    text-decoration: none;
}

.past-event-card img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.past-event-card:hover img {
    transform: scale(1.03);
}

.past-event-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
}

.past-event-overlay span {
    font-family: 'Aileron', sans-serif;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #F9F8F4;
    font-weight: 400;
}

/* ===== EVENTS PAGE MOBILE ===== */
@media (max-width: 768px) {
    .events-page-upcoming {
        padding: 60px 24px;
    }

    .events-page-past {
        padding: 60px 24px;
    }

    .past-events-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .past-event-card img {
        height: 300px;
    }
}
/* ===== PAST EVENT CARD FIX ===== */
.past-event-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    transition: background-color 0.3s ease;
}

.past-event-card:hover::after {
    background-color: rgba(0, 0, 0, 0.25);
}

.past-event-overlay {
    z-index: 1;
}

.past-event-overlay span {
    font-size: 16px;
    letter-spacing: 3px;
}
/* ===== ABOUT HERO TEXT FIX ===== */
.about-hero p {
    max-width: 900px;
    margin: 0 auto 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/* ===== WHY SOCIOS TEXT FIX ===== */
.why-socios {
    max-width: 1000px;
}

.why-socios p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/* ===== EVENT DETAILS PAGE ===== */
.event-back {
    padding: 24px 60px 0;
}

.event-back a {
    font-size: 40px;
    color: var(--primary);
    text-decoration: none;
    line-height: 1;
}

.event-back a:hover {
    opacity: 0.7;
}

.event-detail-hero {
    padding: 24px 60px 0;
}

.event-detail-hero img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.event-detail-content {
    padding: 60px 60px 100px;
    background-color: var(--background);
}

.event-detail-main {
    max-width: 700px;
}

.event-detail-main h1 {
    font-size: 28px;
    font-weight: 400;
    color: #3D1F1F;
    text-transform: uppercase;
    letter-spacing: -0.04em;
    margin-bottom: 8px;
}

.event-detail-tagline {
    font-size: 16px;
    color: var(--accent);
    margin-bottom: 20px;
}

.event-detail-description {
    font-size: 16px;
    line-height: 1.8;
    color: #262626;
    margin-bottom: 32px;
}

/* ===== EVENT META ===== */
.event-meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.event-meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--secondary);
    padding: 10px 16px;
    width: fit-content;
}

.event-meta-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #3D1F1F;
}

.event-meta-value {
    font-size: 14px;
    color: #262626;
}

/* ===== EVENT DETAIL SECTIONS ===== */
.event-detail-section {
    margin-bottom: 32px;
}

.event-detail-section h2 {
    font-size: 20px;
    font-weight: 400;
    color: #3D1F1F;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.event-detail-section p {
    font-size: 15px;
    line-height: 1.8;
    color: #262626;
    margin-bottom: 8px;
}

.event-expect-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.event-expect-list li {
    font-size: 15px;
    color: #262626;
    line-height: 1.6;
    padding-left: 20px;
    position: relative;
}

.event-expect-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.event-ticket-btn {
    width: 100%;
    margin-top: 16px;
    padding: 18px 32px;
}

/* ===== EVENT DETAILS MOBILE ===== */
@media (max-width: 768px) {
    .event-back {
        padding: 16px 24px 0;
    }

    .event-detail-hero {
        padding: 16px 24px 0;
    }

    .event-detail-hero img {
        height: 280px;
    }

    .event-detail-content {
        padding: 40px 24px 60px;
    }

    .event-meta-item {
        width: 100%;
    }
}
/* ===== EVENT META & TICKET FIX ===== */
.event-meta-item {
    background-color: var(--secondary);
    border: none;
    padding: 10px 16px;
    width: auto;
    display: inline-flex;
}

.event-ticket-btn {
    width: 100%;
    display: flex;
    margin-top: 24px;
    max-width: 100%;
}

.event-detail-main {
    max-width: 100%;
}
/* ===== EVENT META ITEM SIZE FIX ===== */
.event-meta-item {
    width: fit-content !important;
    display: inline-flex !important;
}
/* ===== GALLERY PAGE ===== */
.gallery-page-header {
    padding: 40px 60px 24px;
    display: flex;
    align-items: center;
    gap: 40px;
    background-color: var(--background);
}

.gallery-back {
    font-size: 40px;
    color: var(--primary);
    text-decoration: none;
    line-height: 1;
}

.gallery-back:hover {
    opacity: 0.7;
}

.gallery-page-header .section-title {
    margin-bottom: 0;
    flex: 1;
}

.gallery-page-grid {
    padding: 0 60px 100px;
    background-color: var(--background);
}

.gallery-page-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.gallery-page-card {
    position: relative;
    display: block;
    overflow: hidden;
    text-decoration: none;
}

.gallery-page-card img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-page-card:hover img {
    transform: scale(1.03);
}

.gallery-page-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    transition: background-color 0.3s ease;
}

.gallery-page-card:hover::after {
    background-color: rgba(0, 0, 0, 0.25);
}

.gallery-page-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1;
}

.gallery-page-overlay span {
    font-family: 'Aileron', sans-serif;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #F9F8F4;
    font-weight: 400;
}

/* ===== GALLERY PAGE MOBILE ===== */
@media (max-width: 768px) {
    .gallery-page-header {
        padding: 24px 24px 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .gallery-page-grid {
        padding: 0 24px 60px;
    }

    .gallery-page-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .gallery-page-card img {
        height: 300px;
    }
}
/* ===== GALLERY PAGE HEADER FIX ===== */
.gallery-page-header {
    padding: 40px 60px 24px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 0;
}

.gallery-page-header .section-title {
    margin-bottom: 0;
    text-align: center;
    padding-right: 40px;
}

@media (max-width: 768px) {
    .gallery-page-header {
        padding: 24px 24px 16px;
        grid-template-columns: auto 1fr;
    }

    .gallery-page-header .section-title {
        font-size: 24px;
        padding-right: 24px;
    }
}
/* ===== GALLERY PAGE HEADER PADDING FIX ===== */
.gallery-page-header {
    padding-top: 80px !important;
}
/* ===== GALLERY PAGE HEADER SPACING ===== */
.gallery-page-header {
    padding-top: 120px !important;
}
/* ===== GALLERY HEADER CENTER ===== */
.gallery-page-header {
    justify-content: center;
    display: flex;
}
/* ===== GALLERY DETAILS PAGE ===== */
.gallery-details-hero {
    position: relative;
    height: 60vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-details-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-details-hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.gallery-details-hero h1 {
    position: relative;
    z-index: 2;
    font-size: 48px;
    font-weight: 400;
    color: #F9F8F4;
    text-transform: uppercase;
    letter-spacing: -0.04em;
    text-align: center;
}

/* ===== GALLERY DETAILS GRID ===== */
.gallery-details-section {
    padding: 60px 60px 0;
    background-color: var(--background);
}

.gallery-details-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 280px 280px;
    gap: 8px;
}

.gallery-details-item {
    overflow: hidden;
}

.gallery-details-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-details-item:hover img {
    transform: scale(1.05);
}

.gallery-details-item.tall {
    grid-row: 1 / 3;
}

/* ===== GALLERY DETAILS MOBILE ===== */
@media (max-width: 768px) {
    .gallery-details-hero {
        height: 40vh;
    }

    .gallery-details-hero h1 {
        font-size: 28px;
    }

    .gallery-details-section {
        padding: 40px 24px 0;
    }

    .gallery-details-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .gallery-details-item {
        height: 180px;
    }

    .gallery-details-item.tall {
        grid-row: auto;
        height: 180px;
    }
}
/* ===== GALLERY DETAILS HERO FIX ===== */
.gallery-details-hero {
    height: 80vh;
}

/* ===== GALLERY DETAILS GRID FIX ===== */
.gallery-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 280px 280px;
    gap: 8px;
}

.gallery-details-item:nth-child(1) { grid-column: 1; grid-row: 1; }
.gallery-details-item:nth-child(2) { grid-column: 2; grid-row: 1 / 3; }
.gallery-details-item:nth-child(3) { grid-column: 3; grid-row: 1; }
.gallery-details-item:nth-child(4) { grid-column: 1; grid-row: 2; }
.gallery-details-item:nth-child(5) { grid-column: 3; grid-row: 2; }
.gallery-details-item:nth-child(6) { display: none; }

.gallery-details-item.tall {
    grid-row: unset;
}
/* ===== GALLERY DETAILS GRID MIDDLE FIX ===== */
.gallery-details-item:nth-child(2) {
    grid-column: 2;
    grid-row: 1 / 3 !important;
    height: 100%;
}

.gallery-details-item:nth-child(2) img {
    height: 100%;
}
/* ===== LEGAL PAGES ===== */
.legal-page {
    padding: 80px 60px 100px;
    background-color: var(--background);
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 36px;
    font-weight: 400;
    color: #3D1F1F;
    text-transform: uppercase;
    letter-spacing: -0.04em;
    margin-bottom: 8px;
}

.legal-updated {
    font-size: 13px;
    color: var(--accent);
    margin-bottom: 40px;
    letter-spacing: 1px;
}

/* ===== TABLE OF CONTENTS ===== */
.legal-toc {
    background-color: var(--secondary);
    padding: 32px 40px;
    margin-bottom: 60px;
}

.legal-toc ol {
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.legal-toc a {
    font-size: 14px;
    color: #3D1F1F;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.legal-toc a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

/* ===== LEGAL SECTIONS ===== */
.legal-section {
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--secondary);
}

.legal-section:last-child {
    border-bottom: none;
}

.legal-section h2 {
    font-size: 18px;
    font-weight: 400;
    color: #3D1F1F;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.legal-section h3 {
    font-size: 15px;
    font-weight: 500;
    color: #262626;
    margin-bottom: 10px;
    margin-top: 20px;
}

.legal-section p {
    font-size: 15px;
    line-height: 1.8;
    color: #262626;
    margin-bottom: 12px;
}

.legal-section ul {
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
}

.legal-section ul li {
    font-size: 15px;
    line-height: 1.7;
    color: #262626;
}

.legal-section a {
    color: var(--primary);
    text-decoration: underline;
}

/* ===== LEGAL MOBILE ===== */
@media (max-width: 768px) {
    .legal-page {
        padding: 60px 24px 80px;
    }

    .legal-toc {
        padding: 24px;
    }
}
/* ===== LEGAL LAYOUT FIX ===== */
.legal-container {
    display: block;
    max-width: 800px;
    margin: 0 auto;
}

.legal-toc {
    position: relative;
    top: 0;
    margin-bottom: 60px;
}
.legal-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    align-items: start;
}

.legal-container h1,
.legal-container .legal-updated {
    grid-column: 1 / 3;
}

/* ===== LEGAL MOBILE ===== */
@media (max-width: 768px) {
    .legal-container {
        grid-template-columns: 1fr;
    }

    .legal-container h1,
    .legal-container .legal-updated {
        grid-column: 1;
    }

    .legal-toc {
        position: relative;
        top: 0;
    }
}
/* ===== LEGAL PAGE COMPLETE FIX ===== */
.legal-page {
    padding: 80px 60px 100px !important;
}

.legal-container {
    display: block !important;
    max-width: 800px !important;
    margin: 0 auto !important;
}

.legal-container h1 {
    grid-column: unset !important;
}

.legal-container .legal-updated {
    grid-column: unset !important;
}

.legal-toc {
    position: relative !important;
    top: 0 !important;
    margin-bottom: 60px !important;
    display: block !important;
}

.legal-section {
    display: block !important;
    width: 100% !important;
}

@media (max-width: 768px) {
    .legal-page {
        padding: 60px 24px 80px !important;
    }
}
/* ===== LEGAL FINAL FIX ===== */
body {
    overflow-x: hidden;
}

.legal-page {
    padding: 80px 60px 100px !important;
    overflow-x: hidden !important;
}

.legal-container {
    display: flex !important;
    flex-direction: column !important;
    max-width: 800px !important;
    margin: 0 auto !important;
    width: 100% !important;
}

.legal-toc ol {
    padding-left: 20px !important;
}
/* ===== LEGAL PAGE FINAL STYLING ===== */
.legal-page {
    padding: 80px 60px 100px !important;
    max-width: 100% !important;
}

.legal-container {
    display: block !important;
    max-width: 100% !important;
    margin: 0 !important;
    width: 100% !important;
}

.legal-container h1 {
    font-size: 36px;
    color: #3D1F1F;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.legal-toc {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 32px 40px !important;
    margin-bottom: 60px !important;
}

.legal-toc ol {
    padding-left: 20px !important;
}

.legal-toc li {
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    color: #262626;
}

.legal-toc a {
    color: #262626 !important;
    text-decoration: none !important;
}

.legal-toc a:hover {
    color: #3D1F1F !important;
    text-decoration: underline !important;
}

.legal-section {
    display: block !important;
    width: 100% !important;
    margin-bottom: 48px !important;
    padding-bottom: 48px !important;
}

.legal-section h2 {
    font-size: 20px !important;
    font-weight: 400 !important;
    color: #3D1F1F !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    margin-bottom: 20px !important;
}

.legal-section h3 {
    font-size: 17px !important;
    font-weight: 700 !important;
    color: #3D1F1F !important;
    margin-bottom: 10px !important;
    margin-top: 20px !important;
}

.legal-section p {
    font-size: 15px !important;
    line-height: 1.8 !important;
    color: #262626 !important;
    margin-bottom: 12px !important;
}

.legal-section ul {
    padding-left: 20px !important;
    margin-bottom: 12px !important;
}

.legal-section ul li {
    font-size: 15px !important;
    line-height: 1.7 !important;
    color: #262626 !important;
    margin-bottom: 6px !important;
}

/* ===== LEGAL MOBILE ===== */
@media (max-width: 768px) {
    .legal-page {
        padding: 60px 24px 80px !important;
    }

    .legal-toc {
        padding: 24px !important;
    }
}
/* ===== LEGAL PAGE TOP SPACING ===== */
.legal-page {
    padding-top: 120px !important;
}
/* ===== TESTIMONIAL SLIDER ===== */
.testimonial-slider {
    position: relative;
    overflow: hidden;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-inner {
    display: none;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    padding: 20px 120px;
}

.testimonial-inner.active {
    display: block;
}
/* ===== TESTIMONIAL SLIDER FIX ===== */
.testimonial-slider .testimonial-inner {
    display: none !important;
}

.testimonial-slider .testimonial-inner.active {
    display: block !important;
}
/* ===== TESTIMONIAL SLIDER HEIGHT FIX ===== */
.testimonial-slider {
    position: relative;
    min-height: 300px;
}

.testimonial-slider .testimonial-inner {
    display: none !important;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial-slider .testimonial-inner.active {
    display: block !important;
    position: relative;
    opacity: 1;
}
/* ===== HERO MOBILE FIX ===== */
@media (max-width: 768px) {
    .hero {
        background-size: cover !important;
        background-position: center !important;
    }
}
/* ===== HERO MOBILE ALIGNMENT FIX ===== */
@media (max-width: 768px) {
    .hero {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        margin: auto;
    }
}
/* ===== HERO MOBILE HEADING FIX ===== */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 24px;
        max-width: 100%;
        line-height: 1.2;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .hero-content {
        padding: 0 16px;
        width: 100%;
    }
}
/* ===== HERO HEADING CLAMP REMOVE ===== */
@media (max-width: 768px) {
    .hero-content h1 {
        display: block !important;
        -webkit-line-clamp: unset !important;
        overflow: visible !important;
        font-size: 24px;
        line-height: 1.2;
    }
}
/* ===== HERO HEADING MOBILE FIX ===== */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 26px;
        line-height: 1.35;
        max-width: 95%;
        margin: 0 auto 20px;
    }
}
/* ===== TESTIMONIAL MOBILE FIX ===== */
@media (max-width: 768px) {
    .testimonial {
        padding: 60px 24px;
        overflow: hidden;
    }

    .testimonial-inner {
        padding: 20px 40px;
        max-width: 100%;
    }

    .testimonial-quote {
        font-size: 18px;
        line-height: 1.4;
    }

    .quote-open {
        font-size: 60px;
        left: 0;
        top: 0;
    }

    .quote-close {
        font-size: 60px;
        right: 0;
        bottom: 20px;
    }

    .testimonial-author {
        font-size: 14px;
    }

    .testimonial-slider {
        overflow: hidden;
        min-height: 250px;
    }
}
/* ===== TESTIMONIAL FIXED HEIGHT ===== */
.testimonial-slider {
    min-height: 280px;
    position: relative;
}

.testimonial-slider .testimonial-inner {
    position: absolute !important;
    top: 0;
    left: 0;
    right: 0;
}

.testimonial-slider .testimonial-inner.active {
    position: relative !important;
}

@media (max-width: 768px) {
    .testimonial-slider {
        min-height: 420px;
    }

    .testimonial-slider .testimonial-inner {
        min-height: 420px;
    }
}
/* ===== TESTIMONIAL HEIGHT FIX ===== */
@media (max-width: 768px) {
    .testimonial-slider {
        min-height: 320px !important;
    }

    .testimonial-slider .testimonial-inner {
        min-height: 320px !important;
    }
}
/* ===== GALLERY GRID MOBILE FIX ===== */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr !important;
        grid-template-rows: auto !important;
        gap: 8px !important;
    }

    .gallery-item:nth-child(1) { grid-column: 1 !important; grid-row: auto !important; height: 180px !important; }
    .gallery-item:nth-child(2) { grid-column: 2 !important; grid-row: auto !important; height: 180px !important; }
    .gallery-item:nth-child(3) { grid-column: 1 !important; grid-row: auto !important; height: 180px !important; }
    .gallery-item:nth-child(4) { grid-column: 2 !important; grid-row: auto !important; height: 180px !important; }
    .gallery-item:nth-child(5) { grid-column: 1 / 3 !important; grid-row: auto !important; height: 220px !important; }
}
/* ===== GALLERY LAST IMAGE MOBILE FIX ===== */
@media (max-width: 768px) {
    .gallery-item:nth-child(5) img {
        object-position: top !important;
    }
}
/* ===== ABOUT PAGE MOBILE FIX ===== */
@media (max-width: 768px) {

    /* HEADER SPACING */
    .about-hero {
        padding: 80px 24px 40px !important;
    }

    /* HEADING SIZE */
    .about-hero h1 {
        font-size: 28px !important;
    }

    /* BODY TEXT NOT CUT OFF */
    .about-hero p {
        display: block !important;
        -webkit-line-clamp: unset !important;
        overflow: visible !important;
        max-width: 100% !important;
    }

    /* WHY SOCIOS TEXT NOT CUT OFF */
    .why-socios {
        padding: 60px 24px !important;
        max-width: 100% !important;
    }

    .why-socios p {
        display: block !important;
        -webkit-line-clamp: unset !important;
        overflow: visible !important;
    }

    /* VISION & MISSION */
    .vision-mission {
        grid-template-columns: 1fr !important;
        padding: 60px 24px !important;
        gap: 24px !important;
        background-color: var(--secondary) !important;
    }

    .vision-image-left,
    .vision-image-right {
        display: block !important;
        height: 250px !important;
    }

    .vision-image-left img,
    .vision-image-right img {
        width: 100% !important;
        height: 250px !important;
        object-fit: cover !important;
    }

    .vision-content {
        padding: 0 !important;
    }

    /* MEET ARTISTS */
    .meet-artists {
        padding: 60px 24px !important;
    }

    .artists-grid {
        grid-template-columns: 1fr !important;
        padding: 0 !important;
        gap: 60px !important;
    }

    .artist-card:nth-child(1) {
        transform: rotate(-1deg) !important;
    }

    .artist-card:nth-child(2) {
        transform: rotate(1deg) !important;
        margin-top: 0 !important;
    }

    .artist-image img {
        height: 300px !important;
    }

    .artist-info {
        padding: 16px !important;
    }

    .artist-info h3 {
        font-size: 16px !important;
    }

    .artist-info p {
        font-size: 13px !important;
    }
}
/* ===== ABOUT PAGE SECTION HEADINGS MOBILE ===== */
@media (max-width: 768px) {
    .about-hero h1,
    .why-socios .section-title,
    .vision-mission .section-title,
    .meet-artists .section-title,
    .expect .section-title {
        font-size: 28px !important;
    }
}
/* ===== ABOUT PAGE BODY TEXT MOBILE ===== */
@media (max-width: 768px) {
    .about-hero p,
    .why-socios p,
    .vision-content p,
    .artist-info p,
    .expect-card p {
        font-size: 15px !important;
        line-height: 1.7 !important;
    }
}
/* ===== GLOBAL MOBILE TEXT SIZE ===== */
@media (max-width: 768px) {
    
    /* ALL SECTION HEADINGS */
    .section-title,
    .about-hero h1,
    .contact-hero h1,
    .gallery-details-hero h1,
    .legal-container h1 {
        font-size: 28px !important;
    }

    /* ALL BODY TEXT */
    body {
        font-size: 15px !important;
    }

    /* ALL PARAGRAPHS */
    p {
        font-size: 15px !important;
        line-height: 1.7 !important;
    }
}
/* ===== CONSISTENT NAV SPACING ALL PAGES ===== */
.page-wrapper {
    padding-top: 65px !important;
}

/* ===== GALLERY DETAILS MOBILE FIX ===== */
@media (max-width: 768px) {
    .gallery-details-hero {
        height: 40vh !important;
    }

    .gallery-details-section {
        padding: 40px 24px 0 !important;
    }

    .gallery-details-grid {
        grid-template-columns: 1fr 1fr !important;
        grid-template-rows: auto !important;
    }

    .gallery-details-item {
        height: 180px !important;
    }

    .gallery-details-item:nth-child(1) { grid-column: 1 !important; grid-row: auto !important; }
    .gallery-details-item:nth-child(2) { grid-column: 2 !important; grid-row: auto !important; height: 180px !important; }
    .gallery-details-item:nth-child(3) { grid-column: 1 !important; grid-row: auto !important; }
    .gallery-details-item:nth-child(4) { grid-column: 2 !important; grid-row: auto !important; }
    .gallery-details-item:nth-child(5) { grid-column: 1 / 3 !important; grid-row: auto !important; height: 220px !important; }
}
/* ===== GALLERY PAGE HEADER SPACING FIX ===== */
@media (max-width: 768px) {
    .gallery-page-header {
        padding-top: 52px !important;
    }
}
/* ===== GALLERY PAGE HEADER BOTTOM SPACING ===== */
@media (max-width: 768px) {
    .gallery-page-header {
        padding-bottom: 24px !important;
    }
}
/* ===== GALLERY PAGE HEADER BOTTOM SPACING FIX ===== */
@media (max-width: 768px) {
    .gallery-page-header {
        padding-bottom: 40px !important;
        margin-bottom: 0 !important;
    }

    .gallery-page-grid {
        padding-top: 0 !important;
    }
}
/* ===== PAST EVENTS BLACK AND WHITE ===== */
.past-event-bw img {
    filter: grayscale(100%);
    transition: filter 0.4s ease, transform 0.5s ease;
}

.past-event-bw:hover img {
    filter: grayscale(0%);
    transform: scale(1.03);
}

.past-event-bw::after {
    background-color: rgba(0, 0, 0, 0.5);
}
/* ===== SINGLE EVENT CARD ===== */
#eventsGrid {
    grid-template-columns: 1fr !important;
    max-width: 700px;
    margin: 0 auto;
}

#eventsGrid .event-card-image img {
    height: 450px;
}
/* ===== SINGLE EVENT CARD FULL WIDTH ===== */
#eventsGrid {
    grid-template-columns: 1fr !important;
}

#eventsGrid .event-card {
    max-width: 100% !important;
    width: 100% !important;
}

#eventsGrid .event-card-image img {
    height: 450px !important;
}

#eventsGrid .event-card-body {
    padding: 32px !important;
}

#eventsGrid .event-card-body h3 {
    margin-bottom: 12px !important;
}

#eventsGrid .event-card-body p {
    margin-bottom: 20px !important;
}

#eventsGrid .event-date {
    text-transform: uppercase !important;
    font-weight: 400 !important;
    letter-spacing: 1px !important;
    margin-bottom: 24px !important;
    display: block !important;
}
/* ===== EVENTS GRID FULL WIDTH FIX ===== */
.events-page-upcoming .events-grid {
    display: block !important;
}

.events-page-upcoming .events-grid .event-card {
    width: 100% !important;
    max-width: 100% !important;
}

.events-page-upcoming .events-grid .event-card-image img {
    height: 500px !important;
    width: 100% !important;
}
/* ===== EVENTS GRID FULL WIDTH FINAL FIX ===== */
.events-page-upcoming {
    padding: 100px 0 80px !important;
}

.events-page-upcoming .section-title {
    padding: 0 60px;
}

#eventsGrid {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 60px !important;
    box-sizing: border-box !important;
}
/* ===== HOME EVENTS GRID FULL WIDTH ===== */
#homeEventsGrid {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
}

#homeEventsGrid .event-card {
    width: 100% !important;
    max-width: 100% !important;
}

#homeEventsGrid .event-card-image img {
    width: 100% !important;
    height: 500px !important;
    object-fit: cover !important;
    display: block !important;
}
/* ===== GET TICKETS BUTTON FIX ===== */
#homeEventsGrid .btn-primary,
#eventsGrid .btn-primary {
    display: inline-block !important;
    width: auto !important;
    align-self: flex-start !important;
}
/* ===== GET TICKETS BUTTON WIDTH ===== */
#homeEventsGrid .btn-primary,
#eventsGrid .btn-primary {
    display: inline-block !important;
    width: auto !important;
    min-width: 200px !important;
    align-self: flex-start !important;
}
/* ===== UPCOMING EVENTS HERO ===== */
.upcoming-events-hero {
    position: relative;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.upcoming-events-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(2px);
    transform: scale(1.05);
}

.upcoming-events-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(30, 10, 10, 0.75);
}

.upcoming-events-card {
    position: relative;
    z-index: 1;
    background-color: rgba(249, 248, 244, 0.95);
    padding: 40px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.upcoming-label {
    font-family: 'Aileron', sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
}

.upcoming-card-image {
    width: 200px;
    height: 200px;
    background-size: cover;
    background-position: center;
}

.upcoming-card-title {
    font-family: 'Aileron', sans-serif;
    font-size: 22px;
    font-weight: 400;
    color: #3D1F1F;
    text-transform: uppercase;
    letter-spacing: -0.04em;
    line-height: 1.2;
    margin: 0;
}

.upcoming-card-tagline {
    font-size: 14px;
    color: #262626;
    line-height: 1.6;
    margin: 0;
}

.upcoming-card-btn {
    display: inline-block;
    background-color: var(--primary);
    color: #F9F8F4;
    padding: 12px 28px;
    text-decoration: none;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 8px;
    transition: opacity 0.3s ease;
}

.upcoming-card-btn:hover {
    opacity: 0.85;
}

/* ===== UPCOMING EVENTS MOBILE ===== */
@media (max-width: 768px) {
    .upcoming-events-hero {
        height: auto;
        padding: 60px 24px;
    }

    .upcoming-events-card {
        padding: 32px 24px;
    }

    .upcoming-card-image {
        width: 160px;
        height: 160px;
    }
}
/* ===== UPCOMING EVENTS NEW ===== */
.upcoming-events-new {
    background-color: var(--background);
    padding: 100px 60px;
}

.upcoming-events-new .section-title {
    margin-bottom: 40px;
}

.upcoming-events-hero {
    position: relative !important;
    height: 600px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    background-color: transparent !important;
    padding: 0 !important;
}

.upcoming-events-bg {
    display: block !important;
    position: absolute !important;
    inset: 0 !important;
    background-size: cover !important;
    background-position: center !important;
    filter: none !important;
    transform: none !important;
}

.upcoming-events-overlay {
    display: block !important;
    position: absolute !important;
    inset: 0 !important;
    background-color: rgba(30, 10, 10, 0.75) !important;
}

.upcoming-events-card {
    position: relative !important;
    z-index: 1 !important;
    background-color: rgba(249, 248, 244, 0.95) !important;
    padding: 40px !important;
    max-width: 420px !important;
    width: 90% !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 16px !important;
}

.upcoming-label {
    color: var(--accent) !important;
}

.upcoming-card-title {
    color: #3D1F1F !important;
}

.upcoming-card-tagline {
    color: #262626 !important;
}

.upcoming-card-image {
    width: 200px !important;
    height: 200px !important;
    background-size: cover !important;
    background-position: center !important;
}

/* MOBILE */
@media (max-width: 768px) {
    .upcoming-events-new {
        padding: 60px 24px;
    }

    .upcoming-events-hero {
        height: auto !important;
    }

    .upcoming-events-card {
        padding: 24px !important;
    }

    .upcoming-card-image {
        width: 150px !important;
        height: 150px !important;
    }
}
/* ===== UPCOMING EVENTS WRAPPER ===== */
.upcoming-events-new {
    background-color: #F9F8F4 !important;
    padding: 100px 60px !important;
}

.upcoming-events-new .section-title {
    color: #3D1F1F !important;
    margin-bottom: 40px !important;
}

@media (max-width: 768px) {
    .upcoming-events-new {
        padding: 60px 24px !important;
    }
}
/* ===== UPCOMING EVENTS FINAL FIX ===== */
.upcoming-events-new {
    background-color: #F9F8F4 !important;
    padding: 100px 60px !important;
}

.upcoming-events-new .upcoming-events-hero {
    background-color: transparent !important;
    height: 600px !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    padding: 0 !important;
}

.upcoming-events-new .upcoming-events-bg {
    display: block !important;
    position: absolute !important;
    inset: 0 !important;
    background-size: cover !important;
    background-position: center !important;
    filter: none !important;
    transform: none !important;
    z-index: 0 !important;
}

.upcoming-events-new .upcoming-events-overlay {
    display: block !important;
    position: absolute !important;
    inset: 0 !important;
    background-color: rgba(30, 10, 10, 0.75) !important;
    z-index: 1 !important;
}

.upcoming-events-new .upcoming-events-card {
    position: relative !important;
    z-index: 2 !important;
    background-color: rgba(249, 248, 244, 0.95) !important;
    padding: 40px !important;
    max-width: 420px !important;
    width: 90% !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 16px !important;
}

@media (max-width: 768px) {
    .upcoming-events-new {
        padding: 60px 24px !important;
    }

    .upcoming-events-new .upcoming-events-hero {
        height: auto !important;
    }
}
/* ===== UPCOMING CARD OVERLAY DARKER + DATE FIX ===== */
.upcoming-events-new .upcoming-events-overlay {
    background-color: rgba(10, 3, 3, 0.92) !important;
}

.upcoming-card-date {
    font-size: 13px !important;
    color: #262626 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}
/* ===== UPCOMING CARD DATE & IMAGE FIX ===== */
.upcoming-card-image {
    width: 200px !important;
    height: 200px !important;
    background-size: cover !important;
    background-position: center !important;
    display: block !important;
}

.upcoming-card-date {
    font-size: 12px !important;
    color: #262626 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    display: block !important;
    margin-top: 8px !important;
}

.upcoming-card-tagline {
    margin-bottom: 0 !important;
}
/* ===== UPCOMING OVERLAY TRANSPARENCY FIX ===== */
.upcoming-events-new .upcoming-events-overlay {
    background-color: rgba(10, 3, 3, 0.75) !important;
}
/* ===== UPCOMING DATE TIME SPLIT ===== */
.upcoming-card-date {
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
}
/* ===== EVENTS PAGE SPACING + PAST EVENTS FIX ===== */
.events-page-past {
    padding-top: 40px !important;
}

/* PAST EVENTS DARK OVERLAY + BW */
.past-event-bw img {
    filter: grayscale(100%) !important;
    transition: filter 0.4s ease, transform 0.5s ease !important;
}

.past-event-bw::after {
    background-color: rgba(0, 0, 0, 0.6) !important;
}

.past-event-bw:hover img {
    filter: grayscale(0%) !important;
    transform: scale(1.03) !important;
}

.past-event-bw:hover::after {
    background-color: rgba(0, 0, 0, 0.3) !important;
}
/* ===== PAPER CARDS ===== */
.paper-card {
    position: relative !important;
    background-color: #F5F0E8 !important;
    background-image: radial-gradient(circle, rgba(0,0,0,0.04) 1px, transparent 1px) !important;
    background-size: 12px 12px !important;
    border: none !important;
    padding: 40px 28px 32px !important;
    text-align: center !important;
    box-shadow: 2px 4px 12px rgba(0,0,0,0.1) !important;
    overflow: visible !important;
    margin-top: 40px !important;
}

.paper-card h3 {
    color: #3D1F1F !important;
    font-size: 14px !important;
    letter-spacing: 2px !important;
    text-align: center !important;
    margin-bottom: 16px !important;
    text-transform: uppercase !important;
}

.paper-card p {
    color: #262626 !important;
    font-size: 13px !important;
    line-height: 1.8 !important;
    text-align: center !important;
}

.paper-card-clip {
    transform: rotate(1.5deg) !important;
    margin-top: 20px !important;
}

.paper-card-clip:hover {
    transform: rotate(0deg) scale(1.02) !important;
}

svg.paper-tear-svg {
    position: absolute !important;
    top: -18px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: 20px !important;
    display: block !important;
    z-index: 2 !important;
}

svg.paper-clip {
    position: absolute !important;
    top: -38px !important;
    left: 16px !important;
    width: 20px !important;
    height: 56px !important;
    z-index: 3 !important;
    display: block !important;
    filter: drop-shadow(1px 1px 1px rgba(0,0,0,0.2)) !important;
}

@media (max-width: 768px) {
    .paper-card {
        margin-top: 30px !important;
        padding: 40px 20px 28px !important;
    }

    .paper-card-clip {
        transform: rotate(0deg) !important;
        margin-top: 30px !important;
    }
}
svg.paper-tear-svg {
    position: absolute !important;
    top: -28px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: 30px !important;
    display: block !important;
    z-index: 2 !important;
}
svg.paper-tear-svg {
    position: absolute !important;
    top: -22px !important;
    left: 0 !important;
    width: 100% !important;
    height: 24px !important;
    display: block !important;
    z-index: 2 !important;
}
/* ===== PAPER CARD SCALLOP RESET ===== */
svg.paper-tear-svg {
    display: none !important;
}

.paper-card::before {
    content: '' !important;
    position: absolute !important;
    top: -20px !important;
    left: 0 !important;
    right: 0 !important;
    height: 20px !important;
    background: radial-gradient(circle at 10px -5px, transparent 12px, #F5F0E8 13px) !important;
    background-size: 20px 20px !important;
    background-repeat: repeat-x !important;
}
/* ===== SCALLOP FINAL ===== */
svg.paper-tear-svg {
    display: none !important;
}

.paper-card::before {
    content: '' !important;
    position: absolute !important;
    top: -24px !important;
    left: 0 !important;
    right: 0 !important;
    height: 24px !important;
    background: 
        radial-gradient(circle at 50% 100%, #F5F0E8 60%, transparent 61%) !important;
    background-size: 24px 24px !important;
    background-repeat: repeat-x !important;
    background-position: 0 0 !important;
}
/* ===== SCALLOP SIZE FIX ===== */
.paper-card::before {
    top: -30px !important;
    height: 30px !important;
    background: radial-gradient(circle at 50% 100%, #F5F0E8 60%, transparent 61%) !important;
    background-size: 30px 30px !important;
    background-repeat: repeat-x !important;
    background-position: 0 0 !important;
}
/* ===== PAPER CARD CLEAN - NO TEAR ===== */
.paper-card::before {
    display: none !important;
}

svg.paper-tear-svg {
    display: none !important;
}

.paper-card {
    margin-top: 0 !important;
}
/* ===== PAPER CARDS MOBILE SPACING FIX ===== */
@media (max-width: 768px) {
    .expect-grid {
        gap: 48px !important;
    }

    .paper-card {
        margin-top: 48px !important;
    }
}
/* ===== UPCOMING EVENTS MOBILE HEIGHT FIX ===== */
@media (max-width: 768px) {
    .upcoming-events-hero {
        height: 750px !important;
        padding: 40px 24px !important;
        align-items: center !important;
    }
}
/* ===== UPCOMING CARD MOBILE HEIGHT FIX ===== */
@media (max-width: 768px) {
    .upcoming-events-hero {
        height: 780px !important;
        padding: 40px 24px !important;
    }

    .upcoming-events-card {
        max-height: 660px !important;
        overflow: hidden !important;
    }

    .upcoming-card-image {
        width: 140px !important;
        height: 140px !important;
    }

    .upcoming-card-title {
        font-size: 18px !important;
    }

    .upcoming-card-tagline {
        font-size: 13px !important;
    }
}
/* ===== UPCOMING HERO EQUAL PADDING FIX ===== */
@media (max-width: 768px) {
    .upcoming-events-hero {
        height: 860px !important;
        padding: 40px 24px !important;
    }
}
/* ===== UPCOMING CARD MOBILE COMPACT ===== */
@media (max-width: 768px) {
    .upcoming-events-hero {
        height: 700px !important;
        padding: 40px 24px !important;
    }

    .upcoming-card-image {
        width: 120px !important;
        height: 120px !important;
    }

    .upcoming-card-title {
        font-size: 16px !important;
    }

    .upcoming-card-tagline {
        font-size: 12px !important;
        line-height: 1.5 !important;
    }

    .upcoming-card-date {
        font-size: 11px !important;
    }

    .upcoming-card-btn {
        padding: 10px 20px !important;
        font-size: 10px !important;
    }

    .upcoming-events-card {
        gap: 10px !important;
        padding: 24px !important;
        max-height: none !important;
        overflow: visible !important;
    }
}
/* ===== UPCOMING CARD MOBILE SLIGHT INCREASE ===== */
@media (max-width: 768px) {
    .upcoming-card-image {
        width: 140px !important;
        height: 140px !important;
    }

    .upcoming-card-title {
        font-size: 18px !important;
    }

    .upcoming-card-tagline {
        font-size: 13px !important;
    }

    .upcoming-card-date {
        font-size: 12px !important;
    }

    .upcoming-events-card {
        gap: 12px !important;
        padding: 28px !important;
    }
}
/* ===== GALLERY DETAILS IMAGE POSITION FIX ===== */
.gallery-details-item img {
    object-position: top;
}
/* ===== UPCOMING CARD IMAGE SIZE ===== */
.upcoming-card-image {
    width: 200px !important;
    height: 250px !important;
    background-size: cover !important;
    background-position: center !important;
}

@media (max-width: 768px) {
    .upcoming-card-image {
        width: 140px !important;
        height: 175px !important;
    }
}
/* ===== TESTIMONIAL STACKED CARDS ===== */
.tstack-wrap {
    position: relative;
    width: 480px;
    height: 340px;
    margin: 0 auto 16px;
    cursor: grab;
}

.tstack-wrap:active {
    cursor: grabbing;
}

.tstack-card {
    position: absolute;
    inset: 0;
    width: 460px;
    background: #fff;
    border: 1px solid #e8e2d6;
    padding: 48px 40px 36px;
    text-align: left;
    transform-origin: center 130%;
    will-change: transform;
    transition: transform 0.45s cubic-bezier(0.25,0.46,0.45,0.94), opacity 0.45s ease;
}

.tstack-clip {
    position: absolute;
    top: -22px;
    left: 24px;
    width: 20px;
    height: 52px;
}

.tstack-quote {
    font-family: 'Times New Roman', Times, serif;
    font-style: italic;
    font-size: 17px;
    line-height: 1.75;
    color: #3D1F1F;
    margin: 0 0 24px;
}

.tstack-author {
    font-family: 'Aileron', sans-serif;
    font-size: 12px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #A3968D;
}

.tstack-hint {
    font-family: 'Aileron', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #A3968D;
    text-align: center;
    margin-top: 8px;
}

.tstack-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.tstack-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(61,31,31,0.2);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.tstack-dot.active {
    background: #3D1F1F;
    transform: scale(1.3);
}

@media (max-width: 768px) {
    .tstack-wrap {
        width: 100%;
        height: 380px;
    }

    .tstack-card {
        width: calc(100% - 40px);
        padding: 40px 28px 28px;
    }

    .tstack-quote {
        font-size: 15px;
    }
}
/* ===== HIDE OLD TESTIMONIAL SLIDER ===== */
.testimonial-slider,
.testimonial-inner,
.slide-indicators,
.quote-open,
.quote-close,
.testimonial-quote,
.testimonial-author {
    display: none !important;
}
/* ===== TSTACK FIX ===== */
.tstack-wrap {
    position: relative;
    width: 480px;
    height: 340px;
    margin: 0 auto 16px;
    cursor: grab;
    overflow: visible !important;
    display: block !important;
}

.tstack-card {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 460px !important;
    background: #fff !important;
    border: 1px solid #e8e2d6 !important;
    padding: 48px 40px 36px !important;
    text-align: left !important;
    transform-origin: center 130% !important;
    will-change: transform;
}

@media (max-width: 768px) {
    .tstack-wrap {
        width: calc(100% - 48px) !important;
        height: 400px !important;
        margin: 0 24px 16px !important;
    }
    .tstack-card {
        width: 100% !important;
        padding: 40px 24px 28px !important;
    }
}
/* ===== TESTIMONIAL STACKED CARDS ===== */
.tstack-wrap {
    position: relative;
    width: 480px;
    height: 340px;
    margin: 0 auto 16px;
    cursor: grab;
    overflow: visible;
}

.tstack-wrap:active { cursor: grabbing; }

.tstack-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 460px;
    background: #fff;
    border: 1px solid #e8e2d6;
    padding: 48px 40px 36px;
    text-align: left;
    transform-origin: center 130%;
    will-change: transform;
    transition: transform 0.45s cubic-bezier(0.25,0.46,0.45,0.94), opacity 0.45s ease;
}

.tstack-clip {
    position: absolute;
    top: -22px;
    left: 24px;
    width: 20px;
    height: 52px;
}

.tstack-quote {
    font-family: 'Times New Roman', Times, serif;
    font-style: italic;
    font-size: 17px;
    line-height: 1.75;
    color: #3D1F1F;
    margin: 0 0 24px;
}

.tstack-author {
    font-family: 'Aileron', sans-serif;
    font-size: 12px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #A3968D;
}

.tstack-hint {
    font-family: 'Aileron', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #A3968D;
    text-align: center;
    margin-top: 8px;
}

.tstack-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    padding-bottom: 40px;
}

.tstack-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(61,31,31,0.2);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.tstack-dot.active {
    background: #3D1F1F;
    transform: scale(1.3);
}

@media (max-width: 768px) {
    .tstack-wrap {
        width: calc(100% - 48px);
        height: 420px;
        margin: 0 24px 16px;
    }
    .tstack-card {
        width: 100%;
        padding: 40px 24px 28px;
    }
    .tstack-quote {
        font-size: 15px;
    }
}
/* ===== TSTACK SPACING ===== */
.testimonial {
    padding: 60px 24px 80px;
}

.testimonial .section-title {
    margin-bottom: 48px;
}

.tstack-hint {
    margin-top: 32px;
    margin-bottom: 8px;
}

.tstack-dots {
    margin-top: 16px;
}

.tstack-wrap {
    position: relative;
    width: 480px;
    height: 340px;
    margin: 0 auto;
    overflow: visible;
}

.tstack-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 460px;
    background: #fff;
    border: 1px solid #e8e2d6;
    padding: 48px 40px 36px;
    text-align: left;
    transform-origin: center 130%;
    will-change: transform;
    transition: transform 0.45s cubic-bezier(0.25,0.46,0.45,0.94), opacity 0.45s ease;
}

.tstack-clip {
    position: absolute;
    top: -22px;
    left: 24px;
    width: 20px;
    height: 52px;
    transition: opacity 0.3s ease;
}

.tstack-quote {
    font-family: 'Times New Roman', Times, serif;
    font-style: italic;
    font-size: 17px;
    line-height: 1.75;
    color: #3D1F1F;
    margin: 0 0 24px;
}

.tstack-author {
    font-family: 'Aileron', sans-serif;
    font-size: 12px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #A3968D;
}

.tstack-hint {
    font-family: 'Aileron', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #A3968D;
    text-align: center;
}

.tstack-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding-bottom: 0;
}

.tstack-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(61,31,31,0.2);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.tstack-dot.active {
    background: #3D1F1F;
    transform: scale(1.3);
}

@media (max-width: 768px) {
    .tstack-wrap {
        width: calc(100% - 48px);
        height: 420px;
        margin: 0 24px;
    }
    .tstack-card {
        width: 100%;
        padding: 40px 24px 28px;
    }
    .tstack-quote {
        font-size: 15px;
    }
}
.tstack-dots {
    margin-top: 40px !important;
}
.tstack-wrap {
    height: 400px !important;
}

@media (max-width: 768px) {
    .tstack-wrap {
        height: 480px !important;
    }
}
/* ===== WHY SOCIOS FIX ===== */
.why-socios {
    overflow: visible !important;
    max-height: none !important;
    height: auto !important;
}

.why-socios p {
    overflow: visible !important;
    max-height: none !important;
    height: auto !important;
    white-space: normal !important;
    text-overflow: unset !important;
}
/* ===== TSTACK CARD HEIGHT FIX ===== */
.tstack-wrap {
    height: 280px !important;
}

.tstack-card {
    padding: 32px 32px 24px !important;
}

.tstack-quote {
    font-size: 14px !important;
    line-height: 1.6 !important;
}

/* ===== UPCOMING EVENTS MOBILE FINAL FIX ===== */
@media (max-width: 768px) {
    .upcoming-events-hero {
        height: auto !important;
        padding: 32px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    .upcoming-events-card {
        width: 100% !important;
        max-width: 100% !important;
        padding: 28px !important;
        max-height: none !important;
        overflow: visible !important;
    }
    .upcoming-card-image {
        width: 140px !important;
        height: 175px !important;
        background-size: cover !important;
        background-position: center !important;
    }
    .upcoming-card-title {
        font-size: 18px !important;
    }
    .upcoming-card-tagline {
        font-size: 13px !important;
    }
    .upcoming-card-date {
        font-size: 12px !important;
    }
}
/* ===== UPCOMING HERO PADDING FINAL ===== */
@media (max-width: 768px) {
    .upcoming-events-new .upcoming-events-hero {
        padding: 40px 24px !important;
    }
}
/* ===== VISION & MISSION POLAROID LAYOUT ===== */
.vision-mission {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    background: #F9F8F4;
    overflow: hidden;
    gap: 0;
}

.vision-photo {
    width: 220px;
    flex-shrink: 0;
    background: #fff;
    padding: 12px 12px 40px;
    box-shadow: 2px 4px 16px rgba(0,0,0,0.12);
    position: relative;
    z-index: 1;
}

.vision-photo img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: top;
    display: block;
}

.vision-photo-left {
    transform: rotate(-6deg) translateY(20px);
    margin-right: -20px;
}

.vision-photo-right {
    transform: rotate(5deg) translateY(30px);
    margin-left: -20px;
}

.vision-content {
    text-align: center;
    max-width: 380px;
    padding: 0 48px;
    z-index: 2;
    flex-shrink: 0;
}

.vision-label {
    display: block;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #A3968D;
    margin-bottom: 20px;
}

.vision-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #262626;
}

@media (max-width: 768px) {
    .vision-mission {
        flex-direction: column;
        padding: 60px 24px;
        gap: 40px;
    }

    .vision-photo-left {
        transform: rotate(-4deg);
        margin-right: 0;
        align-self: flex-start;
        margin-left: 20px;
    }

    .vision-photo-right {
        transform: rotate(4deg);
        margin-left: 0;
        align-self: flex-end;
        margin-right: 20px;
    }

    .vision-content {
        padding: 0;
        max-width: 100%;
    }
}
/* ===== VISION MISSION POLAROID FINAL ===== */
.vision-mission {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 80px 40px !important;
    overflow: hidden !important;
    gap: 0 !important;
    background: #F9F8F4 !important;
}

.vision-photo {
    width: 160px !important;
    flex-shrink: 0 !important;
    background: #fff !important;
    padding: 10px 10px 32px !important;
    box-shadow: 2px 4px 16px rgba(0,0,0,0.12) !important;
    position: relative !important;
    z-index: 1 !important;
}

.vision-photo img {
    width: 100% !important;
    height: 200px !important;
    object-fit: cover !important;
    object-position: top !important;
    display: block !important;
}

.vision-photo-left {
    transform: rotate(-8deg) translateY(-30px) !important;
    margin-right: -10px !important;
}

.vision-photo-right {
    transform: rotate(7deg) translateY(30px) !important;
    margin-left: -10px !important;
}

.vision-content {
    text-align: center !important;
    max-width: 360px !important;
    padding: 0 40px !important;
    z-index: 2 !important;
    flex-shrink: 0 !important;
}

.vision-label {
    display: block !important;
    font-size: 11px !important;
    letter-spacing: 3px !important;
    text-transform: uppercase !important;
    color: #A3968D !important;
    margin-bottom: 20px !important;
}

.vision-content p {
    font-size: 15px !important;
    line-height: 1.8 !important;
    color: #262626 !important;
}

@media (max-width: 768px) {
    .vision-mission {
        flex-direction: column !important;
        padding: 60px 24px !important;
        gap: 40px !important;
    }

    .vision-photo-left {
        transform: rotate(-4deg) !important;
        margin-right: 0 !important;
        align-self: flex-start !important;
        margin-left: 20px !important;
    }

    .vision-photo-right {
        transform: rotate(4deg) !important;
        margin-left: 0 !important;
        align-self: flex-end !important;
        margin-right: 20px !important;
    }

    .vision-content {
        padding: 0 !important;
        max-width: 100% !important;
    }
}
/* ===== VISION MISSION FINAL OVERHAUL ===== */
.vision-mission {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 100px 0 !important;
    overflow: hidden !important;
    gap: 0 !important;
    background: #F9F8F4 !important;
    position: relative !important;
}

.vision-photo {
    width: 220px !important;
    flex-shrink: 0 !important;
    background: #fff !important;
    padding: 12px 12px 40px !important;
    box-shadow: 3px 6px 20px rgba(0,0,0,0.15) !important;
    position: absolute !important;
    z-index: 1 !important;
}

.vision-photo img {
    width: 100% !important;
    height: 260px !important;
    object-fit: cover !important;
    object-position: top !important;
    display: block !important;
}

.vision-photo-left {
    transform: rotate(-8deg) !important;
    left: -40px !important;
    top: -20px !important;
}

.vision-photo-right {
    transform: rotate(7deg) !important;
    right: -40px !important;
    bottom: -20px !important;
}

.vision-content {
    text-align: center !important;
    max-width: 420px !important;
    padding: 40px 60px !important;
    z-index: 2 !important;
    position: relative !important;
}

.vision-label {
    display: block !important;
    font-size: 13px !important;
    letter-spacing: 3px !important;
    text-transform: uppercase !important;
    color: #262626 !important;
    font-family: 'Aileron', sans-serif !important;
    font-weight: 400 !important;
    margin-bottom: 20px !important;
}

.vision-content p {
    font-size: 15px !important;
    line-height: 1.8 !important;
    color: #262626 !important;
}

@media (max-width: 768px) {
    .vision-mission {
        flex-direction: column !important;
        padding: 60px 24px !important;
        min-height: auto !important;
    }

    .vision-photo {
        position: relative !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        width: 160px !important;
    }

    .vision-photo img {
        height: 180px !important;
    }

    .vision-photo-left {
        transform: rotate(-4deg) !important;
        align-self: flex-start !important;
        margin-left: 16px !important;
    }

    .vision-photo-right {
        transform: rotate(4deg) !important;
        align-self: flex-end !important;
        margin-right: 16px !important;
    }

    .vision-content {
        padding: 20px 0 !important;
        max-width: 100% !important;
    }
}
/* ===== VISION MISSION FINAL FIXES ===== */
.vision-photo-left {
    left: 20px !important;
    top: -20px !important;
}

.vision-photo-right {
    right: 20px !important;
    bottom: -20px !important;
}

.vision-label {
    font-size: 11px !important;
    letter-spacing: 3px !important;
    text-transform: uppercase !important;
    color: #3D1F1F !important;
    font-family: 'Aileron', sans-serif !important;
    margin-bottom: 20px !important;
    display: block !important;
}
/* ===== VISION MISSION IMAGE INSET FINAL ===== */
.vision-photo-left {
    left: 60px !important;
    top: -20px !important;
}

.vision-photo-right {
    right: 60px !important;
    bottom: -20px !important;
}
/* ===== VISION MISSION INSET FIX ===== */
.vision-photo-left {
    position: absolute !important;
    left: 80px !important;
    top: -10px !important;
    transform: rotate(-8deg) !important;
}

.vision-photo-right {
    position: absolute !important;
    right: 80px !important;
    bottom: -10px !important;
    transform: rotate(7deg) !important;
}
/* ===== VISION MISSION FINAL ===== */
.vision-mission {
    background: #F9F8F4 !important;
}

.vision-photo-left {
    position: absolute !important;
    left: 160px !important;
    top: -10px !important;
    transform: rotate(-8deg) !important;
}

.vision-photo-right {
    position: absolute !important;
    right: 160px !important;
    bottom: -10px !important;
    transform: rotate(7deg) !important;
}
/* ===== VISION MISSION BACKGROUND DEDACF ===== */
.vision-mission {
    background: #DEDACF !important;
}
/* ===== VISION MISSION MOBILE FIX ===== */
@media (max-width: 768px) {
    .vision-mission {
        flex-direction: column !important;
        padding: 60px 24px !important;
        align-items: center !important;
        min-height: auto !important;
    }

    .vision-photo {
        position: relative !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        width: 140px !important;
    }

    .vision-photo img {
        height: 170px !important;
    }

    .vision-photo-left {
        transform: rotate(-5deg) !important;
        margin-right: 0 !important;
    }

    .vision-photo-right {
        transform: rotate(5deg) !important;
        margin-left: 0 !important;
    }

    .vision-content {
        order: -1 !important;
        padding: 0 0 32px !important;
        max-width: 100% !important;
    }

    .vision-mission .vision-photos-row {
        display: flex !important;
        gap: 16px !important;
        justify-content: center !important;
        margin-top: 0 !important;
    }
}
/* ===== ABOUT PREVIEW TEXT WIDTH FIX ===== */
.about-preview-text {
    max-width: 420px !important;
}
/* ===== MAILING SECTION SPACING FIX ===== */
.mailing-inner h2 {
    margin-bottom: 8px !important;
}

.mailing-inner p {
    margin-top: 0 !important;
}
/* ===== MAILING HEADER SPACING ===== */
.mailing-inner h2 {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}
/* ===== HERO TITLE MOBILE 3 LINES ===== */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px !important;
    }
}
/* ===== CONTACT STRIP MOBILE FONT SIZE ===== */
@media (max-width: 768px) {
    .contact-strip h2 {
        font-size: 24px !important;
    }
}
/* ===== HERO TITLE MOBILE 3 LINES ===== */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px !important;
    }
}