#site-header {
    display: block;
    min-height: 42px
}

.announcement {
    position: relative;
    min-height: 42px;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(110deg, #687363 0%, var(--sage-dark) 46%, #8b7772 100%);
    font-size: 12px;
    letter-spacing: .035em;
    isolation: isolate
}

.announcement::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(100deg, transparent 18%, rgba(255, 255, 255, .1) 48%, transparent 78%);
    transform: translateX(-100%);
    animation: announcementSheen 8s ease-in-out infinite
}

.announcement-inner {
    width: min(1180px, calc(100% - 32px));
    min-height: 42px;
    margin: auto;
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr) 96px;
    align-items: center
}

.announcement-inner::before {
    content: ''
}

.announcement-viewport {
    position: relative;
    height: 42px;
    overflow: hidden
}

.announcement-item {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .45s ease, transform .45s cubic-bezier(.22, 1, .36, 1);
    pointer-events: none
}

.announcement-item.active {
    opacity: 1;
    transform: translateY(0)
}

.announcement-item.leaving {
    opacity: 0;
    transform: translateY(-12px)
}

.announcement-item strong {
    font-weight: 600
}

.announcement-item .announcement-detail {
    color: rgba(255, 255, 255, .72)
}

.announcement-separator {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #f0cbc5;
    flex: 0 0 auto
}

.announcement-controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 7px
}

.announcement-dot,
.announcement-pause {
    border: 0;
    padding: 0;
    color: #fff;
    background: transparent;
    cursor: pointer
}

.announcement-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .35);
    transition: width .25s ease, border-radius .25s ease, background .25s ease
}

.announcement-dot.active {
    width: 15px;
    border-radius: 5px;
    background: #fff
}

.announcement-pause {
    width: 24px;
    height: 24px;
    margin-left: 2px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 10px;
    line-height: 1;
    transition: background .2s ease
}

.announcement-pause:hover,
.announcement-pause:focus-visible {
    background: rgba(255, 255, 255, .14)
}

.announcement-dot:focus-visible,
.announcement-pause:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px
}

@keyframes announcementSheen {
    0%, 62% { transform: translateX(-100%) }
    88%, 100% { transform: translateX(100%) }
}

.header {
    position: absolute;
    top: 42px;
    right: 0;
    left: 0;
    z-index: 40;
    border: 0;
    background: transparent;
    box-shadow: none
}

.nav {
    height: 92px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px
}

.brand {
    grid-column: 1;
    justify-self: start;
    display: inline-flex;
    align-items: center;
    width: 74px;
    height: 74px;
    padding: 4px;
    border: 1px solid rgba(200, 143, 137, .18);
    border-radius: 17px;
    background: #fff;
    box-shadow: 0 7px 20px rgba(69, 47, 38, .08);
    transition: transform .25s ease, box-shadow .25s ease
}

.brand:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(69, 47, 38, .12)
}

.brand img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    border-radius: 13px
}

.menu {
    grid-column: 2;
    justify-self: center;
    display: flex;
    gap: 6px;
    align-items: center;
    padding: 5px;
    border: 1px solid rgba(200, 143, 137, .14);
    border-radius: 999px;
    background: rgba(255, 255, 255, .48);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    font-size: 13px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9)
}

.menu a {
    position: relative;
    padding: 10px 14px;
    border-radius: 999px;
    color: #514b47;
    transition: color .2s ease, background .2s ease
}

.menu a:hover,
.menu a.active {
    color: #8f5f5a;
    background: #f8ece6
}

.nav-actions {
    grid-column: 3;
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px;
    border: 1px solid rgba(200, 143, 137, .14);
    border-radius: 999px;
    background: rgba(255, 255, 255, .56);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px)
}

.icon-btn {
    position: relative;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #413c38;
    background: transparent;
    cursor: pointer;
    transition: color .2s ease, background .2s ease, transform .2s ease
}

.icon-btn svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    pointer-events: none
}

.cart-count {
    position: absolute;
    top: 1px;
    right: 0;
    min-width: 17px;
    height: 17px;
    padding: 0 4px;
    display: grid;
    place-items: center;
    border: 2px solid #fff;
    border-radius: 999px;
    color: #fff;
    background: #9b625d;
    font-size: 9px;
    font-weight: 600;
    line-height: 1;
}

.cart-count[hidden] {
    display: none;
}

.icon-btn:hover {
    color: #8f5f5a;
    background: #f8ece6;
    transform: translateY(-1px)
}

.icon-btn:focus-visible,
.menu a:focus-visible,
.brand:focus-visible {
    outline: 2px solid var(--rose);
    outline-offset: 3px
}

.mobile-toggle {
    display: none
}

.mobile-toggle .menu-line {
    transform-origin: center;
    transition: transform .25s ease, opacity .2s ease
}

.mobile-toggle.is-open .menu-line:first-child {
    transform: translateY(6px) rotate(45deg)
}

.mobile-toggle.is-open .menu-line:nth-child(2) {
    opacity: 0
}

.mobile-toggle.is-open .menu-line:last-child {
    transform: translateY(-6px) rotate(-45deg)
}

.footer {
    position: relative;
    overflow: hidden;
    color: #f6f2ef;
    background-color: #252522;
    background-image: var(--ppp-background-image,url('img6.png'));
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(25, 23, 21, .84) 0%, rgba(34, 30, 27, .77) 46%, rgba(39, 32, 28, .7) 100%), radial-gradient(circle at 82% 14%, rgba(207, 156, 145, .16), transparent 36%);
    pointer-events: none
}

.footer::after {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    height: 1px;
    background: rgba(255, 255, 255, .35);
    pointer-events: none
}

.footer>.container {
    position: relative;
    z-index: 1;
    padding-top: 56px;
    padding-bottom: 22px
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(270px, .72fr) minmax(0, 1.65fr);
    gap: 18px;
    align-items: stretch
}

.footer-brand-panel,
.footer-directory {
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow: 0 22px 58px rgba(0, 0, 0, .18);
    -webkit-backdrop-filter: blur(9px);
    backdrop-filter: blur(9px)
}

.footer-brand-panel {
    display: flex;
    flex-direction: column;
    padding: 32px;
    border-radius: 28px;
    background: rgba(21, 19, 18, .64)
}

.footer-logo-link {
    display: inline-flex;
    width: 126px;
    height: 126px;
    padding: 6px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 21px;
    background: #fff;
    box-shadow: 0 16px 36px rgba(0, 0, 0, .2);
    transition: transform .3s ease, box-shadow .3s ease
}

.footer-logo-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 52px rgba(0, 0, 0, .26)
}

.footer-logo-link img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    border-radius: 15px
}

.footer-promise {
    margin-top: 30px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, .14)
}

.footer h4 {
    margin: 0 0 17px;
    color: #efd9d4;
    font-family: Outfit, Arial, sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase
}

.footer-promise strong {
    display: block;
    margin-bottom: 10px;
    color: #fff;
    font-family: "Cormorant Garamond", serif;
    font-size: 29px;
    font-weight: 600;
    line-height: 1.05
}

.footer p,
.footer a {
    color: #d4ceca;
    font-size: 13px;
    line-height: 1.75
}

.footer-promise p {
    max-width: 300px;
    margin: 0
}

.footer-directory {
    overflow: hidden;
    border-radius: 28px;
    background: rgba(21, 19, 18, .48)
}

.footer-contact-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 34px 38px;
    border-bottom: 1px solid rgba(255, 255, 255, .13);
    background: linear-gradient(110deg, rgba(216, 170, 165, .15), rgba(255, 255, 255, .035))
}

.footer-contact-copy span {
    display: block;
    margin-bottom: 6px;
    color: #cfc6c1;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase
}

.footer-contact-copy strong {
    display: block;
    color: #fff;
    font-family: "Cormorant Garamond", serif;
    font-size: 29px;
    font-weight: 600;
    line-height: 1.08
}

.footer-note-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    flex: 0 0 auto;
    min-height: 48px;
    padding: 10px 19px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 999px;
    color: #fff !important;
    background: rgba(255, 255, 255, .1);
    font-weight: 500;
    transition: color .2s ease, background .2s ease, transform .2s ease
}

.footer-note-link span {
    color: #efc8c2;
    transition: transform .2s ease
}

.footer-note-link:hover {
    color: var(--ink) !important;
    background: #f6e8e3;
    transform: translateY(-2px)
}

.footer-note-link:hover span {
    transform: translateX(4px)
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 42px;
    padding: 38px 40px 42px
}

.footer-column a {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 3px 0;
    transition: color .2s ease, transform .2s ease
}

.footer-column a::before {
    content: '';
    width: 0;
    height: 1px;
    background: #d8aaa5;
    transition: width .25s ease
}

.footer-column a:hover {
    color: #fff;
    transform: translateX(3px)
}

.footer-column a:hover::before {
    width: 12px
}

.footer-bottom {
    margin-top: 24px;
    padding: 20px 8px 4px;
    border-top: 1px solid rgba(255, 255, 255, .18);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: #c9c1bc;
    font-size: 12px
}

.footer-legal {
    display: flex;
    gap: 20px
}

.footer-legal a {
    color: #c9c1bc;
    font-size: 12px
}

.footer-legal a:hover {
    color: #fff
}

.footer-credit a {
    color: #f0cbc5;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(240, 203, 197, .45);
    text-underline-offset: 3px;
    transition: color .2s ease, text-decoration-color .2s ease
}

.footer-credit a:hover {
    color: #fff;
    text-decoration-color: #fff
}

@media(max-width:900px) {
    .menu {
        position: absolute;
        top: 92px;
        right: 0;
        left: 0;
        display: none;
        gap: 4px;
        padding: 16px 28px 20px;
        border-top: 1px solid var(--line);
        border-radius: 0 0 20px 20px;
        background: rgba(255, 252, 249, .98);
        flex-direction: column;
        align-items: stretch;
        box-shadow: var(--shadow)
    }

    .menu a {
        width: 100%;
        padding: 12px 14px
    }

    .menu.open {
        display: flex
    }

    .mobile-toggle {
        display: grid
    }

    .footer-main {
        grid-template-columns: 1fr
    }

    .footer-brand-panel {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 34px;
        align-items: center
    }

    .footer-promise {
        margin-top: 0;
        padding-top: 0;
        padding-left: 34px;
        border-top: 0;
        border-left: 1px solid rgba(255, 255, 255, .14)
    }
}

@media(max-width:600px) {
    .announcement {
        font-size: 11px;
        letter-spacing: .01em
    }

    .announcement-inner {
        width: calc(100% - 20px);
        grid-template-columns: 50px minmax(0, 1fr) 50px
    }

    .announcement-item {
        gap: 6px;
        padding: 0 4px
    }

    .announcement-item .announcement-detail,
    .announcement-separator,
    .announcement-controls .announcement-dot {
        display: none
    }

    .nav {
        height: 76px;
        grid-template-columns: auto minmax(0, 1fr) auto;
        gap: 10px
    }

    .menu {
        top: 76px
    }

    .brand {
        width: 54px;
        height: 54px;
        border-radius: 14px
    }

    .brand img {
        border-radius: 10px
    }

    .nav-actions {
        gap: 3px;
        padding: 3px;
        justify-self: end
    }

    .icon-btn {
        width: 34px;
        height: 34px
    }

    .icon-btn svg {
        width: 18px;
        height: 18px
    }

    .footer {
        background-attachment: scroll;
        background-position: 34% center
    }

    .footer>.container {
        padding-top: 34px;
        padding-bottom: 16px
    }

    .footer-main {
        gap: 14px
    }

    .footer-logo-link {
        width: 112px;
        height: 112px;
        border-radius: 18px
    }

    .footer-brand-panel {
        display: block;
        padding: 24px;
        border-radius: 20px
    }

    .footer-promise {
        margin-top: 24px;
        padding-top: 24px;
        padding-left: 0;
        border-top: 1px solid rgba(255, 255, 255, .14);
        border-left: 0
    }

    .footer-directory {
        border-radius: 20px
    }

    .footer-contact-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
        padding: 27px 22px
    }

    .footer-contact-copy strong {
        font-size: 26px
    }

    .footer-note-link {
        width: 100%
    }

    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 20px;
        padding: 30px 22px 34px
    }

    .footer-column:last-child {
        grid-column: 1 / -1
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
        padding-right: 4px;
        padding-left: 4px
    }

    .footer-legal {
        gap: 16px
    }
}

@media (prefers-reduced-motion: reduce) {
    .announcement::before {
        animation: none
    }

    .announcement-item,
    .brand,
    .icon-btn,
    .footer-logo-link {
        transition: none
    }
}
