/*
 * Open editorial annotations for hero corners.
 * These replace decorative glass cards with readable, image-first structure.
 */

.premium-hero__note,
.products-hero__profile,
.policy-hero__aside {
    position: relative;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.premium-hero__note::before,
.products-hero__profile::before,
.policy-hero__aside::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 44px;
    height: 2px;
}

.premium-hero__note::after,
.products-hero__profile::after,
.policy-hero__aside::after {
    content: "";
    position: absolute;
    top: -3px;
    left: -3px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

/* Home */
.premium-hero__note {
    padding: 31px 0 2px 28px;
    border-left: 1px solid rgba(255, 255, 255, .28);
}

.premium-hero__note::before {
    background: var(--p-orange);
}

.premium-hero__note::after {
    background: var(--p-orange);
    box-shadow: 0 0 0 5px rgba(255, 107, 0, .12);
}

.premium-hero__note-index {
    margin-bottom: 40px;
    color: rgba(255, 255, 255, .62);
    font-weight: 600;
}

.premium-hero__note p {
    color: rgba(255, 255, 255, .62);
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.premium-hero__note strong {
    font-size: 30px;
    font-weight: 600;
    letter-spacing: -.055em;
    line-height: .98;
}

.premium-hero__note a {
    margin-top: 32px;
    border-top-color: rgba(255, 255, 255, .28);
}

/* Products */
.products-hero__profile {
    max-width: 410px;
    padding: 31px 0 0 30px;
    border-left: 1px solid rgba(255, 255, 255, .3);
}

.products-hero__profile::before {
    background: var(--products-lime);
}

.products-hero__profile::after {
    background: var(--products-lime);
    box-shadow: 0 0 0 5px rgba(212, 255, 46, .12);
}

.products-hero__profile > p {
    margin-bottom: 30px;
    color: var(--products-lime);
    font-size: 10px;
    letter-spacing: .16em;
}

.products-hero__profile dl div {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 22px;
    padding: 17px 0;
    border-top-color: rgba(255, 255, 255, .26);
}

.products-hero__profile dt {
    color: rgba(255, 255, 255, .58);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .08em;
}

.products-hero__profile dd {
    font-size: 14px;
    font-weight: 650;
    line-height: 1.35;
}

/* Shipping and returns */
.policy-hero__aside {
    padding: 31px 0 1px 30px;
    border-left: 1px solid rgba(255, 255, 255, .3);
}

.policy-hero__aside::before {
    background: var(--policy-orange);
}

.policy-hero__aside::after {
    background: var(--policy-orange);
    box-shadow: 0 0 0 5px rgba(255, 107, 0, .12);
}

.policy-hero__aside > span {
    margin-bottom: 31px;
    color: rgba(255, 255, 255, .65);
    font-weight: 600;
    letter-spacing: .14em;
}

.policy-hero__aside > strong {
    font-size: clamp(48px, 4.6vw, 70px);
    font-weight: 600;
    letter-spacing: -.08em;
    line-height: .78;
}

.policy-hero__aside > div {
    margin-top: 38px;
    padding-top: 19px;
    border-top-color: rgba(255, 255, 255, .28);
}

.policy-hero__aside small {
    color: rgba(255, 255, 255, .56);
    font-weight: 600;
    letter-spacing: .08em;
}

.policy-hero__aside b {
    font-size: 13px;
    font-weight: 650;
}

/* Products now uses the same footer treatment as Home and policy pages. */
.products-page .footer {
    padding-top: 78px;
    background: #070707;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.products-page .footer h3,
.products-page .footer h4 {
    font-family: "Archivo", sans-serif;
    font-weight: 600;
}

.products-page .footer-grid {
    gap: 50px;
}

.products-page .footer-column a:hover {
    color: var(--products-lime);
}

.products-page .footer-brand h3 i {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #070707;
    background: #f5f5f2;
    border: 0;
    border-radius: 50%;
    box-shadow: none;
    font-size: 13px;
}

@media (max-width: 1120px) and (min-width: 901px) {
    .premium-hero__note,
    .policy-hero__aside {
        padding-left: 22px;
    }

    .products-hero__profile {
        padding-left: 24px;
    }
}

@media (max-width: 900px) {
    .products-hero__profile {
        max-width: none;
        padding: 26px 0 0 22px;
        border-left-color: rgba(255, 255, 255, .26);
    }

    .products-hero__profile > p {
        margin-bottom: 20px;
    }

    .products-hero__profile dl {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0;
        border-top: 1px solid rgba(255, 255, 255, .22);
    }

    .products-hero__profile dl div {
        display: block;
        min-width: 0;
        padding: 14px 12px 2px 0;
        border-top: 0;
        border-right: 1px solid rgba(255, 255, 255, .18);
    }

    .products-hero__profile dl div:not(:first-child) {
        padding-left: 12px;
    }

    .products-hero__profile dl div:last-child {
        padding-right: 0;
        border-right: 0;
    }

    .products-hero__profile dd {
        margin-top: 7px;
        font-size: 12px;
    }
}

@media (max-width: 560px) {
    .products-hero__profile {
        padding-left: 18px;
    }

    .products-hero__profile dl {
        grid-template-columns: 1fr;
    }

    .products-hero__profile dl div,
    .products-hero__profile dl div:not(:first-child) {
        display: grid;
        grid-template-columns: 78px minmax(0, 1fr);
        gap: 12px;
        padding: 12px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .16);
    }

    .products-hero__profile dl div:last-child {
        border-bottom: 0;
    }

    .products-hero__profile dd {
        margin-top: 0;
        font-size: 12px;
    }

    .products-page .footer {
        padding-top: 62px;
    }
}

/* ============================================================================
 * Alignment request: About (home note), Shipping & Returns markers become
 * clean text only — no horizontal rule, no vertical rule, no dot — and right
 * aligned. Products hero headline copy is right aligned too.
 * ========================================================================== */
.premium-hero__note,
.policy-hero__aside {
    border-left: 0;
    padding-left: 0;
    padding-right: 0;
    text-align: right;
}
.premium-hero__note::before,
.premium-hero__note::after,
.policy-hero__aside::before,
.policy-hero__aside::after {
    display: none;
}
.premium-hero__note a,
.policy-hero__aside > div {
    justify-content: flex-end;
    gap: 14px;
    border-top: 0;
    padding-top: 0;
}

.products-hero__copy { text-align: right; }
.products-hero__copy .products-button { margin-left: auto; }

/* products footer brand logo: match Home/policy (white circle, dark glyph) */
.products-page .footer-brand h3 i {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #0a0a0a;
    background: #fff;
    box-shadow: none;
    font-size: 13px;
}
