/* --- Footer Styles --- */
.st-footer-root {
    padding: 80px 0 40px;
    background: transparent;
}

.st-footer-card {
    padding: 60px 40px;
    border-radius: 40px;
    margin-bottom: 40px;
}

.st-footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* Brand Column */
.st-col-brand { grid-column: span 2; }
.st-footer-logo {
    font-size: 24px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    color: hsl(var(--foreground));
    text-decoration: none;
    letter-spacing: 0.05em;
}
.st-footer-tagline {
    margin: 20px 0;
    max-width: 320px;
    color: hsl(var(--muted-foreground));
    font-size: 15px;
    line-height: 1.6;
}

/* Contact Links */
.st-footer-contact { margin-bottom: 30px; }
.st-contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    text-decoration: none;
    color: hsl(var(--muted-foreground));
    font-size: 14px;
    transition: 0.3s;
}
.st-contact-link:hover { color: hsl(var(--foreground)); }
.st-contact-icon {
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 8px;
}

/* Socials */
.st-footer-social { display: flex; gap: 10px; }
.st-social-btn {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 10px;
    color: hsl(var(--muted-foreground));
    transition: 0.3s;
}
.st-social-btn:hover { color: hsl(var(--foreground)); transform: translateY(-3px); }

/* Link Columns */
.st-footer-title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: hsl(var(--foreground));
    margin-bottom: 25px;
    font-weight: 600;
}

.st-footer-links { list-style: none; padding: 0; margin: 0; }
.st-footer-links li { margin-bottom: 12px; }
.st-footer-links a {
    text-decoration: none;
    color: hsl(var(--muted-foreground));
    font-size: 14px;
    transition: 0.3s;
}
.st-footer-links a:hover { color: hsl(var(--foreground)); padding-left: 5px; }

/* Bottom Bar */
.st-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    color: hsl(var(--muted-foreground));
    font-size: 13px;
}
.st-bottom-links { display: flex; gap: 24px; }
.st-bottom-links a { text-decoration: none; color: inherit; transition: 0.3s; }
.st-bottom-links a:hover { color: hsl(var(--foreground)); }

/* Responsive */
@media (max-width: 1024px) {
    .st-footer-grid { grid-template-columns: 1fr 1fr; }
    .st-col-brand { grid-column: span 2; border-bottom: 1px solid hsla(var(--glass-border) / 0.5); padding-bottom: 40px; }
}

@media (max-width: 600px) {
    .st-footer-grid { grid-template-columns: 1fr; }
    .st-col-brand { grid-column: span 1; }
    .st-footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
}