/* TIREK Footer – compact layout */

.footer-wrapper {
    background: var(--color-beige, #f5f5f0);
    padding: 2rem 1.5rem 1.25rem;
    margin-top: 3rem;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 0.8fr 1fr;
    gap: 2rem 2.5rem;
    align-items: start;
}

.footer-brand-name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--color-primary, #1F5F9C);
    letter-spacing: 0.03em;
    margin-bottom: 0.25rem;
}

.footer-brand-tagline,
.footer-brand-city {
    font-size: 0.8rem;
    color: #5a5a5a;
    margin: 0;
    line-height: 1.4;
}

.footer-brand-city {
    margin-top: 0.15rem;
}

.footer-heading {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--color-beige-dark, #B5BAC1);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.6rem;
}

.footer-nav ul,
.footer-contact p,
.footer-social a {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.85rem;
    color: #5a5a5a;
    line-height: 1.6;
}

.footer-nav ul li {
    margin-bottom: 0.35rem;
}

.footer-nav a,
.footer-social a,
.footer-contact a {
    color: #5a5a5a;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-nav a:hover,
.footer-social a:hover,
.footer-contact a:hover {
    color: var(--color-primary, #1F5F9C);
}

.footer-contact p {
    margin-bottom: 0.35rem;
}

.footer-bottom {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-beige-border, #e8e4de);
}

.footer-copyright {
    font-size: 0.75rem;
    color: #8b8b8b;
    margin: 0 0 0.25rem 0;
}

.footer-legal {
    font-size: 0.7rem;
    color: #8b8b8b;
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 768px) {
    .footer-wrapper {
        padding: 1.5rem 1rem 1rem;
        margin-top: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .footer-bottom {
        margin-top: 1.25rem;
        padding-top: 0.75rem;
    }
}

/* Header – "TIREK" text only, premium look */
header .logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
}
header .logo-link:hover {
    opacity: 0.88;
}
header .logo {
    display: flex;
    align-items: center;
}
header .logo-tagline {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.65rem;
    font-weight: 600;
    color: var(--color-primary, #1F5F9C);
    letter-spacing: 0.04em;
    white-space: nowrap;
}
header {
    padding: 0.75rem 0;
    overflow: visible;
}
/* WhatsApp – compact primary pill */
header .nav-phone {
    display: inline-flex;
    align-items: center;
    background: var(--color-primary, #1F5F9C);
    color: #fff !important;
    font-weight: 600;
    font-size: 0.75rem;
    padding: 0.35rem 0.6rem;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
}
header .nav-phone:hover {
    background: var(--color-primary-hover, #2868a8);
    color: #fff !important;
    transform: translateY(-1px);
}
@media (max-width: 640px) {
    header .logo-tagline {
        font-size: 1.35rem;
    }
    header {
        padding: 0.5rem 0;
    }
    header .nav-phone {
        padding: 0.3rem 0.5rem;
        font-size: 0.7rem;
    }
}