.site-header {
    position: sticky;
    z-index: 20;
    top: 0;
    background: rgba(255, 248, 237, 0.96);
    border-bottom: 1px solid rgba(234, 216, 197, 0.9);
    box-shadow: 0 8px 28px rgba(114, 50, 34, 0.06);
}

.site-header__inner,
.site-footer__inner,
.site-footer__bottom,
.home-hero__inner,
.home-section__inner,
.content-section__inner {
    width: min(100% - (var(--space-page) * 2), var(--container));
    margin-inline: auto;
}

.site-header__inner {
    display: flex;
    min-height: 82px;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.site-branding .custom-logo {
    max-width: 58px;
    max-height: 58px;
}

.site-logo-img {
    display: block;
    width: auto;
    max-width: 56px;
    height: 56px;
    object-fit: contain;
}

.site-branding__text,
.site-branding__name {
    color: var(--color-brand-dark);
    text-decoration: none;
}

.site-branding__name {
    display: grid;
    gap: 1px;
    line-height: 1.1;
}

.site-branding__name strong,
.site-branding__text {
    font-size: 1.08rem;
    font-weight: 900;
}

.site-branding__name span {
    color: var(--color-muted);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
}

.site-main {
    min-height: 60vh;
}

.content-section {
    padding-block: 72px;
}

.site-footer {
    background: #6f211d;
    color: var(--color-surface);
}

.site-footer__inner {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr 1fr 1.15fr;
    gap: clamp(28px, 5vw, 52px);
    padding-block: 58px 36px;
}

.site-footer__column h2 {
    margin: 0 0 16px;
    color: #ffe7c5;
    font-size: 1rem;
    line-height: 1.3;
}

.site-footer__brand {
    display: grid;
    gap: 14px;
}

.site-footer__brand strong {
    font-size: 1.35rem;
    line-height: 1.25;
}

.site-footer__column p {
    margin: 0 0 6px;
    color: rgba(255, 255, 255, 0.78);
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding-block: 18px 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.site-footer__copyright {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.92rem;
}
