/* mc-parts.css — спільні частини: скидання, змінні, шапка, підвал */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --mc-deep: #4d1f26;
    --mc-wine: #83323d;
    --mc-sand: #e0b98c;
    --mc-sand-soft: #f5e6d2;
    --mc-linen: #fbf7f2;
    --mc-paper: #ffffff;
    --mc-ink: #33191d;
    --mc-mute: #6b544c;
    --mc-line: #ecdac6;
    --mc-ui: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --mc-serif: Georgia, "Times New Roman", serif;
    --mc-r1: 4px;
    --mc-r2: 10px;
    --mc-r3: 18px;
    --mc-sh1: 0 2px 10px rgba(77, 31, 38, .07);
    --mc-sh2: 0 10px 28px rgba(77, 31, 38, .12);
    --mc-sh3: 0 20px 46px rgba(77, 31, 38, .16);
}

html { scroll-behavior: smooth; }

body {
    background: var(--mc-linen);
    color: var(--mc-ink);
    font-family: var(--mc-ui);
    font-size: 16px;
    line-height: 1.7;
}

a {
    color: var(--mc-wine);
    text-decoration: none;
    transition: color .18s ease;
}
a:hover { color: var(--mc-deep); }

/* ---------- шапка ---------- */

.bar-brand-mc {
    top: 0;
    z-index: 40;
    background: var(--mc-linen);
    border-bottom: 1px solid var(--mc-line);
    box-shadow: 0 1px 0 rgba(224, 185, 140, .55);
}
.wrap-brand-mc {
    max-width: 1080px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.link-brand-mc {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-size: 19px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--mc-deep);
}
.link-brand-mc:hover { color: var(--mc-wine); }
.mark-brand-mc {
    width: 26px;
    height: 26px;
    flex: none;
    border-radius: 7px;
    background: var(--mc-deep);
    display: grid;
    place-items: center;
}
.mark-brand-mc::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 9px solid var(--mc-sand);
}

/* ---------- підвал ---------- */

.bar-footer-mc {
    margin-top: 48px;
    background: #f4e9dc;
    border-top: 3px solid var(--mc-sand);
    padding: 26px 20px 22px;
}
.wrap-footer-mc {
    max-width: 940px;
    margin: 0 auto;
    text-align: center;
}
.nav-footer-mc {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 22px;
    margin-bottom: 14px;
}
.nav-footer-mc a {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .04em;
    color: var(--mc-wine);
}
.nav-footer-mc a:hover {
    color: var(--mc-deep);
    text-decoration: underline;
}
.text-legal-mc {
    font-size: 11.5px;
    line-height: 1.75;
    color: var(--mc-mute);
    max-width: 780px;
    margin: 0 auto 12px;
}
.text-copy-mc {
    font-size: 11.5px;
    color: #7d6459;
    border-top: 1px dashed rgba(131, 50, 61, .3);
    padding-top: 12px;
}

@media (max-width: 600px) {
    .link-brand-mc { font-size: 16px; letter-spacing: .12em; }
    .bar-footer-mc { padding: 22px 16px 18px; }
}
