.site-header {
    position: sticky;
    z-index: 99999;
    height: 120px;
    margin-bottom: -120px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    /* width: 100; */
    /* padding: 0 10vw; */
}

.header-shell {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 82vw;
    max-width: 980px;
    /* margin: 0 10vw; */
    padding: 0.6rem 0.8rem 0.6rem 1.2rem;
    background: rgba(235, 230, 220, 0.4);
    border: 1px solid white;
    filter: drop-shadow(0 0 5px rgba(99, 99, 99, 0.2)) brightness(110%);
    z-index: 9999;
    border-radius: 999px;
    backdrop-filter: blur(16px);
    box-shadow: 0 12px 40px rgba(99, 78, 61, 0.04);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    min-width: 0;
}

.brand-logo {
    width: 3.15rem;
    height: 3.15rem;
    object-fit: contain;
    flex-shrink: 0;
    margin: 0;
}

.brand-text {
    display: grid;
    gap: 0.08rem;
    min-width: 0;
}

.brand-text strong {
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    letter-spacing: -0.03em;
    font-size: 1.55rem;
    line-height: 0.92;
}

.brand-text small,
.site-nav a,
.footer-column span,
.footer-column a,
.footer-brand p,
.footer-legal,
.footer-bottom-links a,
.mobile-dock a {
    color: var(--text-soft);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.05rem;
    flex-wrap: wrap;
    justify-content: center;
}

.site-nav a {
    display: inline-flex;
    align-items: center;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1;
    transition: color 180ms ease, font-size 180ms ease;
}

.site-nav a.is-active {
    color: var(--accent-deep);
    font-size: calc(0.95rem + 1px);
    font-weight: 700;
}

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

.site-footer {
    padding: 2rem 10vw 4rem 10vw;
    z-index: 4;
    /* background-color: lightsteelblue; */
}

.footer-shell {
    position: relative;
    width: 100%;
    padding: 2rem 2rem 1.25rem;
    border-radius: 34px;
    background-color: rgba(247, 244, 242);
    background: linear-gradient(180deg, rgba(215, 208, 199, 0.72), rgba(247, 244, 242));
    border: none;
}

.footer-top {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(220px, 0.85fr) minmax(220px, 0.8fr);
    gap: 2.5rem;
    align-items: start;
}

.responsive-footer-links-container {
    display: contents;
}

.footer-brand {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.footer-logo {
    width: 4.75rem;
    height: 4.75rem;
    object-fit: contain;
    flex-shrink: 0;
}

.footer-brand h2 {
    margin: 0 0 0.35rem;
    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
    letter-spacing: -0.03em;
    font-size: clamp(2rem, 4vw, 3rem);
}

.footer-brand p:last-child {
    max-width: 32ch;
}

.footer-title {
    margin: 0 0 1rem;
    color: var(--accent-deep);
    font-size: 0.84rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.footer-column {
    display: grid;
    gap: 0.6rem;
    align-content: start;
    width: fit-content;
}

.footer-column a:hover,
.footer-bottom-links a:hover {
    color: var(--accent-deep);
}

.footer-column-actions {
    justify-items: start;
}

.footer-actions {
    display: flex;
    gap: 0.8rem;
    margin-top: 0.4rem;
    flex-wrap: wrap;
}

.footer-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.35rem;
    height: 3.35rem;
    border-radius: 50%;
    background: rgba(255, 251, 246, 0.66);
    border: 1px solid rgba(107, 83, 63, 0.08);
    color: var(--accent-deep);
    box-shadow: 0 10px 24px rgba(109, 88, 70, 0.05);
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.footer-icon-link:hover {
    transform: translateY(-1px);
    border-color: rgba(171, 134, 101, 0.18);
    background: rgba(255, 251, 246, 0.88);
}

.footer-icon-link.is-disabled {
    opacity: 0.58;
    cursor: default;
}

.footer-divider {
    margin: 2rem 0 1.25rem;
    height: 1px;
    background: rgba(107, 83, 63, 0.14);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.25rem;
}

.footer-legal {
    margin: 0;
    white-space: nowrap;
}

.mobile-dock {
    position: fixed;
    left: 50%;
    bottom: 1rem;
    transform: translateX(-50%);
    z-index: 10065;
    display: none;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.45rem;
    width: min(calc(100% - 1.4rem), 560px);
    padding: 0.55rem;
    border-radius: 22px;
    background: rgba(50, 38, 29, 0.92);
    box-shadow: 0 20px 40px rgba(31, 20, 14, 0.18);
    backdrop-filter: blur(14px);
}

.mobile-dock a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 2.9rem;
    border-radius: 16px;
    color: rgba(255, 247, 239, 0.82);
    font-size: 0.82rem;
    font-weight: 700;
}

.mobile-dock a.is-active {
    background: rgba(175, 128, 88, 0.28);
    color: #fff8f3;
    font-size: calc(0.82rem + 1px);
    font-weight: 800;
}
