/* Premium Footer */
.premium-footer {
    background: var(--deep-charcoal);
    padding: 100px 0 40px;
    border-top: 1px solid rgba(248, 246, 242, 0.05);
}

.footer-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand-section {
    padding-right: 40px;
}

.footer-brand-section img {
    height: 60px;
    width: auto;
    margin-bottom: 25px;
}

.footer-brand-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--ivory-white);
}

.footer-brand-section p {
    font-family: 'Inter', sans-serif;
    color: rgba(248, 246, 242, 0.6);
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 15px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(248, 246, 242, 0.05);
    border: 1px solid rgba(248, 246, 242, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ivory-white);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--warm-gold);
    border-color: var(--warm-gold);
    color: var(--deep-charcoal);
}

.footer-section h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: var(--ivory-white);
}

.footer-section a {
    display: block;
    color: rgba(248, 246, 242, 0.6);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    text-decoration: none;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--warm-gold);
    padding-left: 5px;
}

.footer-section p {
    color: rgba(248, 246, 242, 0.6);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    background: rgba(248, 246, 242, 0.05);
    border: 1px solid rgba(248, 246, 242, 0.1);
    padding: 15px 20px;
    color: var(--ivory-white);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
    border-radius: 4px;
}

.newsletter-form input:focus {
    border-color: var(--warm-gold);
}

.newsletter-form button {
    background: var(--warm-gold);
    border: none;
    width: 50px;
    color: var(--deep-charcoal);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    border-radius: 4px;
}

.newsletter-form button:hover {
    background: var(--champagne-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(248, 246, 242, 0.05);
    color: rgba(248, 246, 242, 0.4);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
}
