:root {
    --crimson: #7f1d1d;
    --crimson-light: rgba(127, 29, 29, 0.2);
    --crimson-glow: rgba(127, 29, 29, 0.08);
    --cream: #f5f0e4;
    --accent-gold: #c5a059;
    --ease-elegant: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-smooth: cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
    scroll-behavior: smooth;
}

/* Cleaned up body */
body {
    background-color: var(--cream);
    color: var(--crimson);
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* NEW: Viewport-locked background */
.global-bg {
    position: fixed;
    top: -5vh;
    left: -5vw;
    width: 190vw;
    height: 190vh;
    object-fit: cover;
    z-index: 0; /* Sits at the absolute floor of the website */
    pointer-events: none;
    will-change: transform, filter;
}

.ambient-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 2;
    background: radial-gradient(circle at 50% 50%, rgba(127, 29, 29, 0.15) 0%, rgba(245, 240, 228, 0) 70%);
    will-change: background;
}

.meetup-section, 
.upcoming-section, 
.memories-section {
    background-color: transparent;
    position: relative;
    z-index: 4;
}

.cta-btn {
    background-color: var(--crimson);
    border: 1px solid var(--crimson);
    border-radius: 30px;
    padding: 16px 50px;
    color: var(--cream);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    transition: all 0.5s var(--ease-elegant);
    z-index: 5;
    pointer-events: auto;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--cream);
    transform: translateY(100%);
    transition: transform 0.5s var(--ease-elegant);
    z-index: 0;
}

.cta-btn:hover {
    border-color: var(--crimson);
    box-shadow: 0 10px 25px var(--crimson-glow);
}

.cta-btn:hover::before {
    transform: translateY(0);
}

.btn-text-wrapper {
    position: relative;
    display: block;
    height: 1.2em;
    width: 200px;
    overflow: hidden;
    z-index: 1;
}

.text-default, .text-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    transition: transform 0.5s var(--ease-elegant), color 0.3s ease;
}

.text-hover {
    transform: translateY(100%);
    color: var(--crimson);
}

.cta-btn:hover .text-default {
    transform: translateY(-100%);
}

.cta-btn:hover .text-hover {
    transform: translateY(0);
}

.meetup-header, .section-label, .section-title {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(4px);
    transition: all 1.2s var(--ease-elegant);
}

.meetup-header.revealed, .section-label.revealed, .section-title.revealed {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.bg-layer {
    z-index: 1;
    transform: scale(1.05);
    animation: kenBurns 25s var(--ease-out-smooth) forwards;
    will-change: transform, filter;
}

.text-mask-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    -webkit-mask-image: url('img/mask.png');
    mask-image: url('img/mask.png');
    -webkit-mask-mode: luminance;
    mask-mode: luminance;
    -webkit-mask-size: cover;
    -webkit-mask-position: bottom;
    -webkit-mask-repeat: no-repeat;
    text-align: center;
}

.text-layer {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    opacity: 0;
    filter: blur(10px);
    transform: translateY(40px);
    animation: elegantFadeIn 2s var(--ease-elegant) forwards 0.3s;
    gap: clamp(0.8rem, 2vw, 1.2rem);
}

.text-layer h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.1;
    color: var(--crimson);
    text-shadow: 0 4px 20px rgba(127, 29, 29, 0.1);
}

.text-layer p {
    font-size: clamp(0.85rem, 1.2vw, 1.1rem);
    letter-spacing: 0.4em;
    font-weight: 300;
    text-transform: uppercase;
    opacity: 0.8;
}

.fg-layer {
    z-index: 3;
    mix-blend-mode: multiply;
    object-position: bottom;
    opacity: 0;
    animation: elegantFadeIn 2s var(--ease-elegant) forwards 0.8s;
}

/* 2. Motion Graphics Container & Shapes */
/* --- Elegant Ambient Motion Graphics --- */
/* --- Elevated Visibility: Ambient Motion Graphics --- */
.motion-graphics-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 3; /* Bumped up so it sits above the background layers but behind text */
    opacity: 0; /* Note: Your JS fades this in after scrolling 50% down the page */
    transition: opacity 1.2s var(--ease-elegant);
}

/* Widened and darkened the gradients to show up on the cream background */
.cafe-steam {
    position: absolute;
    bottom: -10%; 
    width: 35vw; 
    height: 80vh;
    /* BOOSTED ALPHA: Up to 0.45 and 0.35 to stand out */
    background: linear-gradient(to top, rgba(127, 29, 29, 0.45), rgba(197, 160, 89, 0.35), transparent);
    filter: blur(45px);
    border-radius: 50%;
    animation: driftSteam 15s infinite ease-in-out alternate;
    will-change: transform, opacity;
}

.steam-1 { 
    left: 10%; 
    animation-duration: 22s; 
}

.steam-2 { 
    right: 15%; 
    animation-duration: 28s; 
    animation-delay: -7s; 
}

/* Enlarged the sparks and gave them a much stronger glow */
.ambient-spark {
    position: absolute;
    width: 5px;  /* Increased from 3px */
    height: 5px;
    background-color: rgba(197, 160, 89, 0.9);
    border-radius: 50%;
    box-shadow: 0 0 16px 4px rgba(197, 160, 89, 0.85); /* Stronger halo */
    animation: floatSpark 15s infinite linear;
    will-change: transform, opacity;
    opacity: 0;
}

.spark-1 { top: 40%; left: 25%; animation-duration: 16s; }
.spark-2 { top: 70%; right: 30%; animation-duration: 20s; animation-delay: -5s; }
.spark-3 { bottom: 10%; left: 60%; animation-duration: 18s; animation-delay: -10s; }

@keyframes driftSteam {
    0% { 
        transform: translateY(var(--scroll-offset, 0px)) skewX(-5deg) scaleX(1); 
        opacity: 0.5; /* Boosted base opacity */
    }
    100% { 
        transform: translateY(var(--scroll-offset, 0px)) skewX(5deg) scaleX(1.3); 
        opacity: 0.9; /* Boosted peak opacity */
    }
}

@keyframes floatSpark {
    0% { 
        transform: translateY(var(--scroll-offset, 0px)) translate(0, 0) scale(0.8); 
        opacity: 0; 
    }
    15% { opacity: 1; } /* Reaches full opacity faster */
    85% { opacity: 1; }
    100% { 
        transform: translateY(calc(var(--scroll-offset, 0px) - 200px)) translate(30px, -50px) scale(1.2); 
        opacity: 0; 
    }
}

.meetup-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 120px 20px 60px 20px;
    color: var(--crimson);
}

.meetup-container {
    max-width: 1000px;
    width: 100%;
    position: relative;
}

.meetup-header {
    text-align: center;
    margin-bottom: 80px;
}

.meetup-header h2 {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 50px 120px;
    position: relative;
}

.arrow-1, .arrow-2 {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

.arrow-1 path, 
.arrow-2 path {
    stroke: var(--accent-gold);
}

.arrow-1 {
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 50px;
}
        
.arrow-2 {
    top: 175px;
    right: 20%;
    transform: translateX(20%);
    width: 120px;
    height: 85px;
}

.draw-path {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    transition: stroke-dashoffset 2s var(--ease-elegant);
}

.arrow-revealed .draw-path {
    stroke-dashoffset: 0;
}

.card {
    background-color: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(127, 29, 29, 0.3);
    border-radius: 20px;
    padding: 40px 30px;
    display: flex;
    gap: 25px;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(40px) scale(0.95) rotateX(5deg);
    filter: blur(5px);
    transition: opacity 1.2s var(--ease-elegant), 
                transform 1.2s var(--ease-elegant), 
                filter 1.2s var(--ease-elegant),
                box-shadow 0.5s ease,
                border-color 0.5s ease;
    box-shadow: 0 15px 35px rgba(127, 29, 29, 0.08), inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.card.bottom-card {
    grid-column: 1 / -1;
    justify-self: center;
    width: 100%;
    max-width: 500px;
    margin-top: 20px;
}

.card.revealed {
    opacity: 1;
    transform: translateY(0) scale(1) rotateX(0deg);
    filter: blur(0);
}

.card.revealed:hover, .memory-card.revealed:hover {
    background-color: rgba(255, 255, 255, 0.7);
    border-color: rgba(127, 29, 29, 0.6);
    box-shadow: 0 25px 50px rgba(127, 29, 29, 0.15), inset 0 0 0 1px rgba(255, 255, 255, 0.9);
    transform: translateY(-8px) scale(1.02) rotateX(0deg);
}

.icon-wrapper {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    color: var(--crimson);
    opacity: 0.8;
    transition: opacity 0.4s ease, transform 0.4s var(--ease-elegant);
    animation: floatIcon 4s ease-in-out infinite;
}

.card.revealed:hover .icon-wrapper {
    opacity: 1;
    transform: scale(1.1);
}

.card-content h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.25);
}

.card-content p, 
.upcoming-container p, 
.memory-info p {
    font-size: 0.95rem;
    color: #1a1a1a;
    line-height: 1.7;
    margin: 0;
    opacity: 0.85;
    font-weight: 400;
}

.greek-lady-wrapper {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 65px;
    height: 65px;
    color: var(--crimson);
    opacity: 0.25;
    pointer-events: none;
    z-index: 0;
    transition: opacity 0.5s var(--ease-elegant);
}

.card.bottom-card:hover .greek-lady-wrapper {
    opacity: 0.6;
}

.greek-lady-svg {
    width: 100%;
    height: 100%;
}

.nodding-head {
    transform-origin: 52px 95px;
    transform: rotate(0deg);
}

.upcoming-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 20px;
    color: var(--crimson);
}

.section-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 25px;
    color: var(--accent-gold);
    opacity: 1;
    text-align: center;
}

.upcoming-container {
    max-width: 800px;
    width: 100%;
    text-align: center;
    border: 1px solid rgba(127, 29, 29, 0.3);
    border-radius: 24px;
    padding: 70px 40px;
    background-color: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(16px);
    opacity: 0;
    transform: scale(0.98) translateY(30px);
    filter: blur(5px);
    transition: all 1.2s var(--ease-elegant);
    box-shadow: 0 15px 35px rgba(127, 29, 29, 0.08), inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.upcoming-container.revealed {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0);
}

.upcoming-container h2 {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.upcoming-container p {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 40px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.8;
}

.memories-section {
    padding: 100px 20px;
}

.memories-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 70px;
    text-align: center;
    color: var(--crimson);
}

.memories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    align-items: start;
}

.memory-card {
    border: 1px solid rgba(127, 29, 29, 0.3);
    border-radius: 20px;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    gap: 20px;
    opacity: 0;
    transform: translateY(30px);
    filter: blur(5px);
    transition: all 1s var(--ease-elegant);
    box-shadow: 0 15px 35px rgba(127, 29, 29, 0.08), inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.memory-card.revealed {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.memory-info h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.memory-date {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--accent-gold);
    opacity: 1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.ig-wrapper {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.02);
}

@keyframes kenBurns {
    0% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes elegantFadeIn {
    to {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.cta-btn {
    animation: softPulse 3s infinite;
}

.cta-btn:hover {
    animation: none; /* Stops pulse smoothly when user hovers */
}

@keyframes softPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(127, 29, 29, 0.3); }
    50% { box-shadow: 0 0 20px 4px rgba(127, 29, 29, 0); }
}

.scroll-thread {
    position: fixed;
    top: 0;
    left: 0;
    width: 3px;
    height: 0%;
    background-color: var(--accent-gold);
    z-index: 9999;
    box-shadow: 0 0 10px rgba(197, 160, 89, 0.6);
    transition: height 0.1s ease-out;
    pointer-events: none;
}

/* 1. Base / Mobile Styles (Stays centered in the flex container) */
.hero-logo {
    width: clamp(80px, 15vw, 150px);
    margin-bottom: -10px; 
    opacity: 0.9;
    filter: drop-shadow(0 4px 15px rgba(127, 29, 29, 0.15));
    z-index: 10;
}

/* 2. Desktop-Only Override (Moves to top-left) */
@media (min-width: 769px) {
    .hero-logo {
        position: absolute;
        top: 40px;
        left: 40px;
        width: clamp(70px, 12vw, 120px);
        margin-bottom: 0;
    }
    .grid-layout > .card:nth-of-type(1).revealed {
    transform: translateY(0) scale(1) rotate(-1.5deg);
}
.grid-layout > .card:nth-of-type(1).revealed:hover {
    transform: translateY(-8px) scale(1.02) rotate(-1.5deg);
}

/* Card 2: Slight tilt right */
.grid-layout > .card:nth-of-type(2).revealed {
    transform: translateY(0) scale(1) rotate(2.5deg);
}
.grid-layout > .card:nth-of-type(2).revealed:hover {
    transform: translateY(-8px) scale(1.02) rotate(2.5deg);
}

/* Bottom Card: Minimal tilt left */
.card.bottom-card.revealed {
    transform: translateY(0) scale(1) rotate(-1deg);
}
.card.bottom-card.revealed:hover {
    transform: translateY(-8px) scale(1.02) rotate(-1deg);
}
}

/* 4. Refined Mobile Responsiveness */
@media (max-width: 768px) {
    .text-mask-wrapper {
        -webkit-mask-image: url('img/pmask.png');
        mask-image: url('img/pmask.png');
    }
    .hero-logo{
        margin-bottom:-10px;
    }
    .hero { height: 100svh; }
    
    /* Reduce massive padding and scale down the Hero text */
    .text-layer { 
        padding: 0px 20px 110px 20px; 
    }
    
    .text-layer h1 {
        font-size: clamp(2.2rem, 10vw, 4rem);
    }
    
    .grid-layout { 
        grid-template-columns: 1fr; 
        gap: 20px; 
    }
    
    .arrow-1, .arrow-2 { display: none; }
    
    .card.bottom-card { 
        grid-column: 1; 
        max-width: 100%; 
    }
    
    /* Stack card contents and reduce inner padding */
    .card {
        padding: 25px 20px;
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 15px;
    }
    
    /* Scale down section containers and headings */
    .meetup-header { margin-bottom: 40px; }
    .meetup-section { padding: 80px 15px 40px 15px; }
    .upcoming-section { padding: 60px 15px; }
    .memories-section { padding: 60px 15px; }
    
    .upcoming-container {
        padding: 40px 20px;
    }
    
    .upcoming-container h2, 
    .section-title {
        font-size: clamp(1.6rem, 7vw, 2.5rem);
    }
    
    .section-title {
        margin-bottom: 40px;
    }
    .cta-btn{
        padding: 16px 35px;
    }
}

/* --- Logo Implementations & Background Removal --- */

.site-logo {
    /* This removes the white background assuming it's placed on your cream/lighter backgrounds */
    mix-blend-mode: multiply; 
    pointer-events: none;
    user-select: none;
}



/* --- Sophisticated Footer --- */
.site-footer {
    width: 100%;
    display: flex;
    justify-content: space-between; /* Pushes content to left and right edges */
    align-items: center;
    padding: 40px 60px 60px 60px; /* Added side padding to breathe */
    position: relative;
    z-index: 4;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(127, 29, 29, 0.15), transparent);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: default;
}

.footer-logo {
    width: 45px;
    opacity: 0.7;
    transition: opacity 0.5s var(--ease-elegant), transform 0.5s var(--ease-elegant);
}

.footer-company-name {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--crimson);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.8;
    transition: opacity 0.5s var(--ease-elegant);
}

.footer-brand:hover .footer-logo {
    opacity: 1;
    transform: scale(1.05) rotate(-5deg);
}

.footer-brand:hover .footer-company-name {
    opacity: 1;
}

.instagram-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--crimson);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    opacity: 0.7;
    transition: all 0.4s var(--ease-elegant);
}

.instagram-link:hover {
    opacity: 1;
    color: var(--accent-gold);
    transform: translateY(-2px);
}

.ig-icon {
    width: 18px;
    height: 18px;
    transition: transform 0.4s var(--ease-elegant);
}

.instagram-link:hover .ig-icon {
    transform: scale(1.15);
}

/* Card 1: Slight tilt left */


/* --- FAQ Section --- */
.faq-section {
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    color: var(--crimson);
}

.faq-wrapper {
    width: 100%;
    max-width: 800px;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.faq-item {
    background-color: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(127, 29, 29, 0.3);
    border-radius: 16px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s var(--ease-elegant);
    box-shadow: 0 10px 25px rgba(127, 29, 29, 0.05);
}

.faq-item.revealed {
    opacity: 1;
    transform: translateY(0);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 25px 30px;
    background: transparent;
    border: none;
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--crimson);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(255, 255, 255, 0.6);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    transition: transform 0.4s var(--ease-elegant);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s var(--ease-elegant), padding 0.6s var(--ease-elegant);
}

.faq-answer p {
    padding: 0 30px;
    margin: 0;
    font-size: 0.95rem;
    color: #1a1a1a;
    line-height: 1.8;
    opacity: 0.85;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 25px;
}

@media (max-width:768px) {
    /* Footer Mobile Overrides */
    .site-footer {
        flex-direction: column;
        gap: 30px;
        padding: 40px 20px 60px 20px;
        justify-content: center;
    }
    
    .footer-brand {
        flex-direction: column;
        gap: 10px;
    }
}
