.ads-landing-body {
    background: #f5f2eb;
}

.ads-landing {
    min-height: 100vh;
    color: #18243f;
    background: #f5f2eb;
}

.ads-topbar {
    position: absolute;
    z-index: 4;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: clamp(18px, 3vw, 34px) clamp(18px, 5vw, 72px);
    color: #f8f3e9;
}

.ads-topbar--static {
    position: relative;
    color: #18243f;
    border-bottom: 1px solid rgba(24, 36, 63, 0.12);
}

.ads-brand {
    font-family: var(--font-deco);
    font-size: clamp(42px, 7vw, 86px);
    line-height: 0.78;
    color: #e9bd8c;
    letter-spacing: 0.07em;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.ads-topbar--static .ads-brand {
    text-shadow: none;
}

.ads-links {
    display: flex;
    align-items: center;
    gap: clamp(16px, 2vw, 34px);
}

.ads-links a {
    color: currentColor;
    font-family: var(--font-nav);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0.86;
}

.ads-links a:hover {
    color: #e9bd8c;
    opacity: 1;
}

.ads-hero {
    position: relative;
    display: grid;
    align-items: end;
    min-height: 92svh;
    overflow: hidden;
    background: #18243f;
}

.ads-hero__image,
.ads-hero__veil {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.ads-hero__image {
    object-fit: cover;
    object-position: center;
    filter: saturate(0.95) contrast(1.02);
    transform: scale(1.01);
}

.ads-hero__veil {
    background:
        linear-gradient(90deg, rgba(8, 15, 28, 0.84) 0%, rgba(8, 15, 28, 0.62) 42%, rgba(8, 15, 28, 0.12) 100%),
        linear-gradient(0deg, rgba(8, 15, 28, 0.78) 0%, rgba(8, 15, 28, 0.1) 46%, rgba(8, 15, 28, 0.4) 100%);
}

.ads-hero__copy {
    position: relative;
    z-index: 2;
    width: min(760px, calc(100% - 32px));
    margin-left: clamp(18px, 5vw, 76px);
    margin-bottom: clamp(132px, 17vh, 190px);
    color: #f8f3e9;
}

.ads-eyebrow {
    margin-bottom: 14px;
    color: #e9bd8c;
    font-family: var(--font-nav);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.ads-hero h1,
.ads-missing h1 {
    max-width: 760px;
    color: currentColor;
    font-family: var(--font-heading);
    font-size: clamp(48px, 8vw, 112px);
    font-weight: 400;
    line-height: 0.92;
}

.ads-hero__copy > p:not(.ads-eyebrow),
.ads-missing p,
.ads-empty p {
    max-width: 590px;
    margin-top: 22px;
    color: rgba(248, 243, 233, 0.78);
    font-size: clamp(15px, 1.35vw, 18px);
    line-height: 1.8;
}

.ads-hero__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 34px;
}

.ads-button,
.ads-text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-nav);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.ads-button {
    min-height: 48px;
    padding: 14px 22px;
    background: #18243f;
    color: #f8f3e9;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.ads-button--light {
    background: #f8f3e9;
    color: #18243f;
}

.ads-button:hover {
    background: #e9bd8c;
    color: #18243f;
    transform: translateY(-1px);
}

.ads-text-link {
    min-height: 48px;
    color: #f8f3e9;
    border-bottom: 1px solid rgba(248, 243, 233, 0.48);
}

.ads-text-link:hover {
    color: #e9bd8c;
    border-bottom-color: #e9bd8c;
}

.ads-hero__tradebar {
    position: absolute;
    z-index: 3;
    left: clamp(18px, 5vw, 76px);
    right: clamp(18px, 5vw, 76px);
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(248, 243, 233, 0.22);
    background: rgba(8, 15, 28, 0.52);
    backdrop-filter: blur(12px);
}

.ads-hero__tradebar div {
    min-height: 104px;
    padding: 22px clamp(14px, 2.2vw, 32px);
    border-right: 1px solid rgba(248, 243, 233, 0.18);
}

.ads-hero__tradebar div:last-child {
    border-right: 0;
}

.ads-hero__tradebar span,
.ads-product__sku,
.ads-product__meta span {
    display: block;
    color: rgba(233, 189, 140, 0.92);
    font-family: var(--font-nav);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.ads-hero__tradebar strong {
    display: block;
    margin-top: 9px;
    color: #f8f3e9;
    font-family: var(--font-body);
    font-size: clamp(13px, 1.2vw, 16px);
    font-weight: 500;
    line-height: 1.45;
}

.ads-products-section {
    padding: clamp(56px, 7vw, 100px) clamp(14px, 4vw, 58px) clamp(70px, 9vw, 130px);
}

.ads-section-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.62fr);
    gap: clamp(28px, 6vw, 92px);
    max-width: 1480px;
    margin: 0 auto clamp(30px, 4vw, 54px);
    padding-bottom: clamp(24px, 3vw, 38px);
    border-bottom: 1px solid rgba(24, 36, 63, 0.12);
}

.ads-section-heading h2,
.ads-empty h2,
.ads-b2b-panel h2 {
    color: #18243f;
    font-family: var(--font-heading);
    font-size: clamp(34px, 4vw, 62px);
    font-weight: 400;
    line-height: 1;
}

.ads-section-heading > p,
.ads-b2b-panel > p {
    margin: 0;
    align-self: end;
    color: rgba(24, 36, 63, 0.64);
    font-size: clamp(14px, 1.25vw, 16px);
    line-height: 1.8;
}

.ads-products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(14px, 1.5vw, 24px);
    max-width: 1480px;
    margin: 0 auto;
}

.ads-product {
    background: #fff;
    border: 1px solid rgba(24, 36, 63, 0.08);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.ads-product:hover {
    transform: translateY(-6px);
    border-color: rgba(233, 189, 140, 0.42);
    box-shadow: 0 18px 44px rgba(24, 36, 63, 0.12);
}

.ads-product__link {
    display: block;
    color: inherit;
}

.ads-product__media {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #e8e2d6;
}

.ads-product__media img,
.ads-product__placeholder {
    width: 100%;
    height: 100%;
}

.ads-product__media img {
    object-fit: cover;
    transition: transform 0.44s ease;
}

.ads-product:hover .ads-product__media img {
    transform: scale(1.035);
}

.ads-product__placeholder {
    background:
        linear-gradient(135deg, rgba(24, 36, 63, 0.1), rgba(233, 189, 140, 0.26)),
        #e8e2d6;
}

.ads-product__body {
    padding: 16px 16px 18px;
}

.ads-product h2 {
    min-height: 48px;
    margin-top: 8px;
    color: #18243f;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
}

.ads-product__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 39px;
    margin-top: 15px;
    background: #18243f;
    color: #f8f3e9;
    font-family: var(--font-nav);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: background 0.2s ease, color 0.2s ease;
}

.ads-product:hover .ads-product__cta {
    background: #e9bd8c;
    color: #18243f;
}

.ads-b2b-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.7fr);
    gap: clamp(24px, 6vw, 88px);
    max-width: 1480px;
    margin: clamp(42px, 6vw, 82px) auto 0;
    padding-top: clamp(28px, 4vw, 48px);
    border-top: 1px solid rgba(24, 36, 63, 0.12);
}

.ads-empty,
.ads-missing {
    max-width: 820px;
    margin: 0 auto;
    padding: clamp(58px, 9vw, 116px) clamp(20px, 4vw, 58px);
    text-align: center;
}

.ads-empty {
    background: #fff;
    border: 1px solid rgba(24, 36, 63, 0.08);
}

.ads-empty p,
.ads-missing p {
    margin-left: auto;
    margin-right: auto;
    color: rgba(24, 36, 63, 0.64);
}

@media (max-width: 1180px) {
    .ads-products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .ads-topbar {
        align-items: flex-start;
        flex-direction: column;
        padding-top: 18px;
    }

    .ads-links {
        gap: 18px;
    }

    .ads-hero {
        min-height: 92svh;
    }

    .ads-hero__veil {
        background:
            linear-gradient(0deg, rgba(8, 15, 28, 0.82) 0%, rgba(8, 15, 28, 0.28) 56%, rgba(8, 15, 28, 0.48) 100%),
            linear-gradient(90deg, rgba(8, 15, 28, 0.72), rgba(8, 15, 28, 0.22));
    }

    .ads-hero__copy {
        margin-bottom: 238px;
    }

    .ads-hero__tradebar {
        left: 0;
        right: 0;
        grid-template-columns: 1fr;
    }

    .ads-hero__tradebar div {
        min-height: 0;
        padding: 13px 18px;
        border-right: 0;
        border-bottom: 1px solid rgba(248, 243, 233, 0.16);
    }

    .ads-section-heading,
    .ads-b2b-panel {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .ads-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .ads-topbar {
        padding-left: 14px;
        padding-right: 14px;
    }

    .ads-links {
        width: 100%;
        justify-content: space-between;
    }

    .ads-hero h1,
    .ads-missing h1 {
        font-size: clamp(42px, 14vw, 62px);
    }

    .ads-hero__copy {
        width: calc(100% - 28px);
        margin-left: 14px;
        margin-bottom: 248px;
    }

    .ads-hero__copy > p:not(.ads-eyebrow) {
        font-size: 14px;
        line-height: 1.65;
    }

    .ads-hero__actions {
        align-items: stretch;
        flex-direction: column;
        gap: 12px;
    }

    .ads-button,
    .ads-text-link {
        width: 100%;
    }

    .ads-products-section {
        padding-left: 10px;
        padding-right: 10px;
    }

    .ads-products-grid {
        gap: 10px;
    }

    .ads-product:hover {
        transform: none;
        box-shadow: none;
    }

    .ads-product__body {
        padding: 12px 10px 14px;
    }

    .ads-product h2 {
        min-height: 52px;
        font-size: 11.5px;
    }

    .ads-product__cta {
        min-height: 36px;
        font-size: 9px;
        letter-spacing: 0.1em;
    }
}
