/* ─── Site layout ────────────────────────────────────────────────────────────── */
.site-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.site-main {
    flex: 1;
}

/* ─── Header ─────────────────────────────────────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
    padding: 20px 0;
}

.site-header--transparent {
    background: transparent;
}

.site-header--solid {
    border-bottom: 1px solid rgba(0,0,0,0.08);
    padding: 14px 0;
}

.site-header--scrolled {
    backdrop-filter: blur(8px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.admin-bar .site-header { top: 32px; }

.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
}

/* Logo */
.site-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.site-logo {
    height: auto;
    max-height: 48px;
    width: auto;
    display: block;
}

.site-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: #111827;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
}

.site-name--normal {
    color: #fff;
}

/* Nav */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: var(--space-lg);
    align-items: center;
}

.nav-menu li a {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #374151;
    transition: color var(--transition);
    white-space: nowrap;
}

.nav-menu li a:hover,
.nav-menu li.current-menu-item a {
    color: var(--color-accent);
}

/* Header actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    flex-shrink: 0;
}

.header-tel {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #374151;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.header-tel:hover {
    color: var(--color-accent);
}

.header-tel svg {
    flex-shrink: 0;
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
}

.nav-toggle__bar {
    display: block;
    height: 2px;
    width: 100%;
    background: #374151;
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
}

.nav-toggle.is-open .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle.is-open .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Footer ─────────────────────────────────────────────────────────────────── */
.site-footer {
    background: #f9fafb;
    color: #6b7280;
    border-top: 1px solid #e5e7eb;
    padding: var(--space-2xl) 0 0;
}

.footer-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-xl) var(--space-lg);
    align-items: start;
}

.footer-brand-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: #111827;
    text-decoration: none;
    display: block;
    margin-bottom: var(--space-sm);
}

.footer-tagline {
    font-size: 0.85rem;
    font-style: italic;
    color: #9ca3af;
    margin-bottom: var(--space-md);
}

.footer-logo {
    max-height: 56px;
    width: auto;
    margin-bottom: var(--space-sm);
}

.footer-col__title {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #374151;
    margin-bottom: var(--space-md);
    font-family: var(--font-body);
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.footer-list li {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 0;
}

.footer-list a {
    color: #6b7280;
    transition: color var(--transition);
}

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

.footer-social {
    display: flex;
    gap: var(--space-xs);
    margin-top: var(--space-sm);
}

.footer-social__link {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    transition: background var(--transition), color var(--transition);
}

.footer-social__link:hover {
    background: var(--color-accent);
    color: #fff;
}

/* Footer bottom */
.footer-bottom {
    border-top: 1px solid #e5e7eb;
    margin-top: var(--space-xl);
    padding: var(--space-md) 0;
}

.footer-bottom-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    flex-wrap: wrap;
    font-size: 12px;
    color: #9ca3af;
}

.footer-legal-menu {
    list-style: none;
    display: flex;
    gap: var(--space-md);
}

.footer-legal-menu li {
    margin: 0;
}

.footer-legal-menu a {
    color: #9ca3af;
    font-size: 12px;
    transition: color var(--transition);
}

.footer-legal-menu a:hover {
    color: #374151;
}
