/* =====================================================
   LAYOUT CONTAINER
   ===================================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
}

/* =====================================================
   HEADER
   ===================================================== */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-h);
    background: var(--white);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo img {
    height: 48px;
    width: auto;
}

.logo-text {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1.5px;
    line-height: 1.25;
    text-transform: uppercase;
}

.logo-text small {
    display: block;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* Desktop Nav */
nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

nav a {
    color: var(--primary);
    font-size: 11.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    transition: color var(--transition);
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition);
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    color: #0056b3;
}

/* Active nav link */
nav a.active {
    color: var(--primary);
}

nav a.active::after {
    width: 100%;
}

/* Burger Button (hidden on desktop) */
.burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary);
    padding: 4px;
    line-height: 0;
}

/* Mobile Drawer */
.mobile-nav {
    display: none;
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: var(--white);
    z-index: 999;
    flex-direction: column;
    padding: 32px 40px;
    gap: 24px;
    border-top: 1px solid var(--border);
    overflow-y: auto;
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a {
    color: var(--primary);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
    transition: color var(--transition);
}

.mobile-nav a:hover {
    color: #0056b3;
}

/* =====================================================
   FOOTER
   ===================================================== */
footer {
    background: var(--primary);
    color: var(--white);
    padding: 60px 40px 28px;
}

.footer-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr 1.5fr;
    gap: 32px;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 20px;
}

.footer-col ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #aec4db;
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #aec4db;
    transition: color var(--transition);
}

.footer-col ul li a:hover {
    color: var(--white);
}

.footer-icon {
    flex-shrink: 0;
    opacity: 0.7;
}

.footer-map {
    width: 100%;
    height: 100px;
    border: none;
    margin-top: 0;
    filter: grayscale(60%) contrast(1.1);
    transition: filter var(--transition);
}

.footer-map:hover {
    filter: grayscale(0%) contrast(1);
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    font-size: 11.5px;
    color: #aec4db;
}

.footer-bottom-reg {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Footer logo — large hero display */
.footer-col--brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.footer-brand-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.footer-logo-hero {
    flex-shrink: 0;
    width: 180px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.footer-logo-hero img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.footer-brand-info {
    flex: 1;
    min-width: 0;
}

.footer-logo-text {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 0;
}

.footer-logo-text small {
    display: block;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #aec4db;
}

.footer-desc {
    font-size: 13px;
    color: #aec4db;
    line-height: 1.7;
    margin-bottom: 16px;
}

/* Footer social links */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.footer-social a {
    color: #aec4db;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    transition: color var(--transition), background var(--transition), transform var(--transition);
}

.footer-social a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}