:root {
    --bg-color: #FAF7F2;
    --accent-color: #C5A880;
    --accent-hover: #A88D65;
    --text-color: #2C2A29;
    --text-light: #6A6662;
    --white: #FFFFFF;
    --gold-glow: rgba(197, 168, 128, 0.4);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.wip-banner {
    background-color: var(--text-color);
    color: var(--bg-color);
    text-align: center;
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(197, 168, 128, 0.3);
    animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Header: Desktop --- */
header.desktop-header {
    padding: 0.8rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(197, 168, 128, 0.25);
    background: rgba(250, 247, 242, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Glassmorphism Header → Pill Mode on Scroll */
header.desktop-header.pill-mode {
    position: fixed;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    border-radius: 50px;
    padding: 0.5rem 2rem;
    background: rgba(250, 247, 242, 0.75) !important;
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    border: 1px solid rgba(197, 168, 128, 0.35);
    box-shadow: 0 10px 30px rgba(140, 115, 85, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

header.desktop-header.pill-mode .logo-img {
    height: 40px;
}

header.desktop-header.pill-mode .btn-login-small {
    padding: 0.4rem 1.2rem;
}

/* Animated header gradient border at the bottom */
.header-animated-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-hover), var(--accent-color), var(--text-color), var(--accent-color), var(--accent-hover), transparent);
    background-size: 200% 100%;
    animation: headerBorderFlow 4s linear infinite;
    z-index: 10;
    transition: opacity 0.3s ease, border-radius 0.3s ease;
    pointer-events: none;
}

/* Hide animated border in pill-mode to keep the rounded borders clean */
header.desktop-header.pill-mode .header-animated-border {
    opacity: 0;
}

@keyframes headerBorderFlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    border-radius: 4px;
    transition: transform 0.3s ease, height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo-container:hover .logo-img {
    transform: scale(1.03);
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo span {
    color: var(--accent-color);
    font-style: italic;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.desktop-nav a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

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

.desktop-nav .btn-login-small {
    background-color: var(--text-color);
    color: var(--bg-color);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.desktop-nav .btn-login-small:hover {
    background-color: var(--accent-color);
    color: var(--white);
    box-shadow: 0 6px 15px var(--gold-glow);
}

/* --- Header: Mobile Sticky Pill --- */
.mobile-header {
    display: none;
    position: fixed;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 450px;
    background: rgba(250, 247, 242, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 0.5rem 1.8rem;
    box-shadow: 0 8px 32px rgba(140, 115, 85, 0.12);
    border: 1px solid rgba(197, 168, 128, 0.3);
    z-index: 1000;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.mobile-header .logo-img {
    height: 36px;
}

.mobile-header .logo {
    font-size: 1.6rem;
    letter-spacing: 0.1em;
}

.mobile-menu-btn {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-color);
    cursor: pointer;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Mobile Menu Overlay --- */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(250, 247, 242, 0.98);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.close-menu-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    font-size: 3rem;
    color: var(--text-color);
    cursor: pointer;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.mobile-nav a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.mobile-nav .btn-login-mobile {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    background-color: var(--text-color);
    color: var(--bg-color);
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.main-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 3rem 2rem;
    flex-grow: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 768px) {
    header.desktop-header {
        display: none;
    }
    .mobile-header {
        display: flex;
    }
    body {
        padding-top: 90px;
    }
    .main-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem 1rem;
        text-align: center;
    }
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tagline {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-color);
    font-weight: 600;
}

h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.15;
    color: var(--text-color);
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.5rem;
    }
}

.description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    font-weight: 300;
}

.badge {
    display: inline-flex;
    align-self: flex-start;
    background-color: var(--white);
    border: 1px solid rgba(197, 168, 128, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text-light);
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

@media (max-width: 768px) {
    .badge {
        align-self: center;
    }
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: #55B984;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px rgba(85, 185, 132, 0.6);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(85, 185, 132, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(85, 185, 132, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(85, 185, 132, 0); }
}

.interactive-zone {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background: var(--white);
    border: 1px solid rgba(197, 168, 128, 0.25);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(140, 115, 85, 0.04);
    position: relative;
    transition: all 0.4s ease;
}

.interactive-zone:hover {
    box-shadow: 0 15px 40px rgba(140, 115, 85, 0.08);
    border-color: rgba(197, 168, 128, 0.5);
}

/* SVG Candle Flame Animation */
.candle-container {
    width: 150px;
    height: 220px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.flame-halo {
    position: absolute;
    width: 130px;
    height: 130px;
    background: radial-gradient(circle, rgba(255, 170, 50, 0.18) 0%, rgba(255, 170, 50, 0) 70%);
    bottom: 90px;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    transform: scale(0);
    transition: all 0.5s ease;
    z-index: 1;
}

.flame.active ~ .flame-halo {
    opacity: 1;
    transform: scale(1);
    animation: pulse-halo 2.5s infinite alternate;
}

@keyframes pulse-halo {
    0% { transform: scale(0.9); opacity: 0.7; }
    100% { transform: scale(1.1); opacity: 1; }
}

.flame {
    width: 28px;
    height: 65px;
    position: absolute;
    bottom: 120px;
    transform-origin: center bottom;
    opacity: 0;
    transform: scale(0);
    transition: opacity 0.5s ease, transform 0.1s ease-out;
    z-index: 6;
}

.flame.active {
    opacity: 1;
    transform: scale(1);
}

.flame-element {
    width: 100%;
    height: 100%;
    position: relative;
    transform-origin: center bottom;
}

.flame.active .flame-element {
    animation: flicker 0.15s ease-in-out infinite alternate;
}

.flame-outer {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(255,80,0,0.95), rgba(255,180,0,0.85) 60%, rgba(255,230,150,0) 100%);
    border-radius: 50% 50% 20% 20% / 60% 60% 40% 40%;
    filter: blur(0.8px);
    box-shadow: 0 0 20px 5px rgba(255, 120, 0, 0.45);
}

.flame-inner {
    position: absolute;
    width: 70%;
    height: 75%;
    left: 15%;
    bottom: 5%;
    background: linear-gradient(to top, rgba(255,140,0,0.9), rgba(255,220,100,0.95) 70%, rgba(255,255,255,0) 100%);
    border-radius: 50% 50% 20% 20% / 65% 65% 35% 35%;
    filter: blur(0.4px);
}

.flame-core {
    position: absolute;
    width: 36%;
    height: 40%;
    left: 32%;
    bottom: 8%;
    background: linear-gradient(to top, rgba(0,80,255,0.7) 0%, rgba(255,255,255,0.95) 60%);
    border-radius: 50% 50% 20% 20% / 70% 70% 30% 30%;
}

@keyframes flicker {
    0% { transform: rotate(-1.5deg) scaleX(0.96) scaleY(1.04); }
    100% { transform: rotate(1.5deg) scaleX(1.04) scaleY(0.96); }
}

.wick {
    width: 10px;
    height: 14px;
    background: linear-gradient(to right, #4e2f1d, #2b170c);
    border-radius: 1px;
    position: absolute;
    bottom: 110px;
    z-index: 5;
    box-shadow: 0 2px 2px rgba(0,0,0,0.2);
}

.flame.active ~ .wick {
    background: linear-gradient(to right, #e25822, #3e2723 50%, #221105);
}

.candle-body {
    width: 110px;
    height: 120px;
    background: linear-gradient(135deg, rgba(82, 53, 33, 0.96) 0%, rgba(54, 33, 19, 0.98) 100%);
    border-radius: 12px;
    position: relative;
    box-shadow: 
        inset 0 10px 15px rgba(255, 255, 255, 0.1),
        inset -12px -12px 20px rgba(0,0,0,0.3),
        0 10px 30px rgba(43, 27, 16, 0.15);
    border: 1px solid rgba(197, 168, 128, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 4;
    transition: all 0.3s ease;
}

.candle-container:hover .candle-body {
    transform: translateY(-2px);
    box-shadow: 
        inset 0 10px 15px rgba(255, 255, 255, 0.15),
        inset -12px -12px 20px rgba(0,0,0,0.35),
        0 15px 35px rgba(43, 27, 16, 0.22);
}

.wax-surface {
    position: absolute;
    top: 0;
    left: 5%;
    width: 90%;
    height: 10px;
    background: radial-gradient(ellipse at center, #d8bc97 0%, #a48e71 80%);
    border-radius: 50%;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.4);
    z-index: 4;
}

.flame.active ~ .candle-body .wax-surface {
    background: radial-gradient(ellipse at center, #ffd280 10%, #bf9953 70%, #614829 100%);
    box-shadow: 
        inset 0 2px 4px rgba(0,0,0,0.4),
        0 0 10px rgba(255, 180, 0, 0.35);
}

.glass-highlight {
    position: absolute;
    top: 0;
    left: 8px;
    width: 12px;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 100%);
    z-index: 5;
    pointer-events: none;
}

.candle-shadow {
    position: absolute;
    bottom: -15px;
    width: 130px;
    height: 15px;
    background: radial-gradient(ellipse, rgba(0,0,0,0.22) 0%, rgba(0,0,0,0) 80%);
    z-index: 1;
    pointer-events: none;
    transition: all 0.3s ease;
}

.candle-container:hover ~ .candle-shadow {
    transform: scale(0.95);
    opacity: 0.9;
}

.label {
    width: 76px;
    height: 85px;
    background-color: #fbf9f6;
    border: 1px solid rgba(197, 168, 128, 0.5);
    border-radius: 4px;
    padding: 8px 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
    position: relative;
    z-index: 6;
}

.label-border {
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    border: 1px solid rgba(197, 168, 128, 0.25);
    pointer-events: none;
}

.label-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    color: #362113;
    margin-bottom: 2px;
}

.label-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 0.6rem;
    color: var(--accent-hover);
    margin-bottom: 6px;
}

.label-desc {
    font-family: 'Outfit', sans-serif;
    font-size: 0.45rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6a6662;
    text-align: center;
    line-height: 1.3;
}

.candle-coaster {
    position: absolute;
    bottom: -12px;
    left: -35px;
    width: 180px;
    height: 26px;
    background: linear-gradient(135deg, #f3ede2 0%, #e8e1d5 100%);
    border-radius: 50% / 30%;
    border: 2px solid #C5A880;
    box-shadow: 
        inset 0 1.5px 3px rgba(255, 255, 255, 0.9),
        inset 0 -3.5px 9px rgba(0, 0, 0, 0.12),
        0 10px 25px rgba(43, 27, 16, 0.16);
    z-index: 2;
    transition: all 0.3s ease;
}

.candle-container:hover .candle-coaster {
    transform: translateY(1px);
    box-shadow: 
        inset 0 1.5px 3px rgba(255, 255, 255, 0.9),
        inset 0 -3.5px 9px rgba(0, 0, 0, 0.12),
        0 14px 30px rgba(43, 27, 16, 0.22);
}

.candle-lid {
    position: absolute;
    bottom: -20px;
    left: -58px;
    width: 65px;
    height: 38px;
    background: linear-gradient(145deg, #8b5a2b 0%, #5c3a21 100%);
    border-radius: 50% / 25%;
    border: 1px solid rgba(197, 168, 128, 0.35);
    box-shadow: 
        inset 0 2px 3px rgba(255, 255, 255, 0.15),
        0 6px 14px rgba(43, 27, 16, 0.22);
    z-index: 1;
    transform: rotate(-22deg) skewX(-8deg);
    transition: all 0.4s ease;
}

.interactive-zone:hover .candle-lid {
    transform: rotate(-18deg) skewX(-6deg) translateY(-1px);
}

.cinnamon-stick {
    position: absolute;
    bottom: -20px;
    right: -42px;
    width: 70px;
    height: 14px;
    background: linear-gradient(to bottom, #753c06 0%, #442202 100%);
    border-radius: 4px;
    box-shadow: 
        inset 0 2px 2px rgba(255,255,255,0.1),
        0 4px 8px rgba(43, 27, 16, 0.22);
    transform: rotate(-15deg);
    z-index: 1;
    transition: all 0.5s ease;
}

.cinnamon-inner {
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(90deg, #532a04, #532a04 2px, #361b01 2px, #361b01 4px);
    border-radius: 4px;
    opacity: 0.75;
}

.interactive-zone:hover .cinnamon-stick {
    transform: rotate(-10deg) translateY(-1px);
}

.sparks-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 7;
}

.spark-particle {
    position: absolute;
    background: radial-gradient(circle, rgba(255,235,160,1) 0%, rgba(255,120,0,0.85) 60%, rgba(255,50,0,0) 100%);
    border-radius: 50%;
    filter: blur(0.2px);
    box-shadow: 0 0 6px rgba(255,140,0,0.85);
    opacity: 0.95;
    animation: riseAndFade linear forwards;
}

@keyframes riseAndFade {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.95;
    }
    50% {
        opacity: 0.85;
    }
    100% {
        transform: translateY(-160px) translateX(var(--drift-x, 20px)) scale(0.2);
        opacity: 0;
    }
}

.leaf {
    position: absolute;
    filter: drop-shadow(0 4px 8px rgba(43, 27, 16, 0.12));
    transition: all 0.5s ease;
    z-index: 3;
    pointer-events: none;
}

.leaf-left {
    width: 65px;
    height: 65px;
    bottom: -25px;
    left: -35px;
    transform: rotate(-45deg);
}

.leaf-right {
    width: 55px;
    height: 65px;
    bottom: -22px;
    right: -25px;
    transform: rotate(35deg) scaleX(-1);
}

.lavender-sprig {
    position: absolute;
    width: 45px;
    height: 85px;
    bottom: -32px;
    right: -42px;
    transform: rotate(65deg);
    filter: drop-shadow(0 3px 6px rgba(43, 27, 16, 0.1));
    z-index: 1;
    transition: all 0.5s ease;
    pointer-events: none;
}

.interactive-zone:hover .leaf-left {
    transform: rotate(-38deg) translateY(-2px);
}

.interactive-zone:hover .leaf-right {
    transform: rotate(28deg) scaleX(-1) translateY(-1px);
}

.interactive-zone:hover .lavender-sprig {
    transform: rotate(60deg) translateX(2px);
}

.btn {
    font-family: 'Outfit', sans-serif;
    background-color: var(--text-color);
    color: var(--bg-color);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 168, 128, 0.4);
}

.btn.active {
    background-color: #E25822;
    color: var(--white);
    box-shadow: 0 6px 20px rgba(226, 88, 34, 0.4);
}

footer {
    padding: 4rem 2.5rem 2rem 2.5rem;
    color: var(--text-color);
    border-top: 1px solid rgba(197, 168, 128, 0.25);
    background-color: rgba(255, 255, 255, 0.45);
    position: relative;
}

/* BRCI Inspired Double Corner Borders */
footer::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 40px;
    width: 20px;
    height: 20px;
    border-top: 3px solid var(--accent-color);
    border-left: 3px solid var(--accent-color);
}

footer::after {
    content: '';
    position: absolute;
    top: -2px;
    right: 40px;
    width: 20px;
    height: 20px;
    border-top: 3px solid var(--accent-color);
    border-right: 3px solid var(--accent-color);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    text-align: left;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-col.brand-info .logo-container {
    align-self: center;
}

.footer-col.brand-info .logo-img {
    height: 150px;
    margin-bottom: 0.5rem;
}

.footer-col h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 35px;
    height: 1px;
    background-color: var(--accent-color);
}

.footer-col p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.footer-col p a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col p a:hover {
    color: var(--accent-color);
}

.footer-desc {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.6;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    font-weight: 300;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 4px;
}

.legal-logos {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 0.5rem;
}

.legal-logos a {
    display: inline-block;
    text-decoration: none;
}

.legal-logos img {
    height: 40px;
    width: auto;
    object-fit: contain;
    border-radius: 4px;
    filter: grayscale(1) opacity(0.5);
    transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.legal-logos a:hover img {
    filter: grayscale(0) opacity(1);
    transform: translateY(-2px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(197, 168, 128, 0.15);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 300;
}

.footer-designer {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 300;
}

.footer-designer strong {
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .legal-logos {
        align-items: center;
    }
    .footer-col.brand-info {
        align-items: center;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
