.brand {
    font-size: 1.05rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: Arial, Helvetica, sans-serif;
}

.brand span {
    color: var(--purple-accent);
}

.nav {
    display: flex;
    gap: 26px;
    flex-wrap: wrap;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.92rem;
    color: var(--text-soft);
}

.nav {
    justify-self: center;
}

.nav a {
    transition: color var(--transition);
}

.nav a:hover {
    color: var(--purple-deep);
}

.footer {
    padding: 28px 0 40px;
}

.footer__inner {
    border-top: 1px solid var(--border-light);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: var(--text-soft);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.9rem;
}

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 18px 0;
    background: rgba(243, 238, 232, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(216, 204, 194, 0.75);
}


.header__container--name {
    font-weight: bold;
}

.header__brand {
    text-decoration: none;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1rem;
    font-weight: 600, bord;
    letter-spacing: -0.02em;
    color: #4a3b52;
    white-space: nowrap;
    transition: opacity 0.2s ease;
}

.header__brand:hover {
    opacity: 0.8;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 22px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav__item {
    margin: 0;
    padding: 0;
}

.nav__link {
    position: relative;
    text-decoration: none;
    font-size: 1rem;
    line-height: 1;
    color: #5e5652;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.nav__link:hover {
    color: #1e1a1a;
}

.nav__link--active {
    color: #1e1a1a;
}

.nav__link--active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 1px;
    background: #6e5a78;
}

.header__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 18px;
    border: 1px solid #d8ccc2;
    border-radius: 999px;
    background: #ffffff;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 500;
    color: #1e1a1a;
    transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.header__cta:hover {
    transform: translateY(-1px);
    border-color: #6e5a78;
    color: #6e5a78;
    background: #fcfaf8;
}

.nav__toggle {
    display: none;
    border: 0;
    background: transparent;
    padding: 0;
    font-size: 1.4rem;
    line-height: 1;
    color: #1e1a1a;
    cursor: pointer;
}

.site-footer__name {
    margin: 0 0 10px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #4a3b52;
}

.site-footer__tagline {
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.6;
    color: #5e5652;
}

.site-footer__nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.site-footer__nav::before {
    content: "Navigation";
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #8a6f5a;
    margin-bottom: 6px;
    position: relative;
}

.site-footer__nav::after {
    content: "";
    width: 22px;
    height: 1px;
    background: #6e5a78;
    margin-bottom: 10px;
}

.site-footer__nav-link {
    text-decoration: none;
    font-size: 0.82rem;
    color: #1e1a1a;
    transition: all 0.2s ease;
}

.site-footer__nav-link:hover {
    color: #6e5a78;
    transform: translateX(2px);
}

.site-footer__contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.site-footer__contact::before {
    content: "Contact";
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #8a6f5a;
}

.site-footer__contact::after {
    content: "";
    width: 22px;
    height: 1px;
    background: #6e5a78;
}

.site-footer__email {
    font-size: 0.82rem;
    text-decoration: none;
    color: #1e1a1a;
    transition: color 0.2s ease;
}

.site-footer__email:hover {
    color: #6e5a78;
}

.site-footer__socials {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.site-footer__social-link {
    font-size: 0.78rem;
    text-decoration: none;
    color: #5e5652;
    transition: all 0.2s ease;
}

.site-footer__social-link:hover {
    color: #6e5a78;
    transform: translateX(2px);
}

.site-footer__copyright {
    margin: 0;
    font-size: 0.7rem;
    color: #5e5652;
}

.site-footer__legal {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.site-footer__legal-link {
    font-size: 0.7rem;
    text-decoration: none;
    color: #5e5652;
    transition: color 0.2s ease;
}

.site-footer__legal-link:hover {
    color: #6e5a78;
}