.announcement-group a {
    color: inherit;
    text-decoration: none;
}

.featured-content h3 a,
.product-name a,
.cart-item-info h4 a {
    color: inherit;
    text-decoration: none;
}

.editorial-card {
    color: inherit;
    text-decoration: none;
}

.modal-detail-link {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 18px;
    padding: 15px 0;
    border-top: 1px solid var(--line);
    color: var(--forest);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-decoration: none;
    text-transform: uppercase;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 34px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.breadcrumbs a {
    color: var(--forest);
    text-decoration: none;
}

.product-detail-hero {
    min-height: 100vh;
    padding: 170px 0 110px;
    background:
        radial-gradient(circle at 12% 20%, color-mix(in srgb, var(--tone) 16%, transparent), transparent 30%),
        linear-gradient(145deg, var(--paper), color-mix(in srgb, var(--soft) 50%, var(--paper)));
}

.product-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(380px, .9fr);
    gap: clamp(54px, 8vw, 130px);
    align-items: center;
}

.detail-gallery {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 22px;
}

.detail-main {
    position: relative;
    grid-column: 2;
    grid-row: 1;
    min-height: 650px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 220px 220px 38px 38px;
    background: rgba(255, 255, 255, .46);
    box-shadow: 0 40px 100px color-mix(in srgb, var(--tone) 16%, transparent);
}

.detail-main::before {
    content: "";
    position: absolute;
    width: 68%;
    aspect-ratio: 1;
    border: 1px solid color-mix(in srgb, var(--tone) 26%, transparent);
    border-radius: 50%;
}

.detail-main img {
    position: relative;
    z-index: 1;
    width: min(88%, 570px);
    max-height: 590px;
    object-fit: contain;
    filter: drop-shadow(0 34px 34px rgba(27, 42, 29, .2));
    transition: opacity .25s ease, transform .45s cubic-bezier(.2,.8,.2,1);
}

.detail-main img.changing {
    opacity: .25;
    transform: scale(.96) rotate(-2deg);
}

.detail-badge {
    position: absolute;
    z-index: 3;
    top: 30px;
    left: 30px;
    padding: 10px 15px;
    border-radius: 99px;
    background: var(--tone);
    color: white;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.detail-thumbs {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.detail-thumb {
    width: 96px;
    aspect-ratio: 1;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 22px;
    background: rgba(255, 255, 255, .55);
    cursor: pointer;
    transition: .25s ease;
}

.detail-thumb.active {
    border-color: var(--tone);
    box-shadow: 0 10px 30px color-mix(in srgb, var(--tone) 14%, transparent);
}

.detail-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.detail-copy h1 {
    max-width: 650px;
    margin: 18px 0 24px;
    color: var(--forest);
    font-size: clamp(52px, 6vw, 92px);
    line-height: .91;
}

.detail-rating {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: 13px;
}

.detail-rating strong {
    color: var(--forest);
}

.detail-price {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin: 26px 0 24px;
}

.detail-price strong {
    color: var(--forest);
    font: 700 clamp(34px, 4vw, 54px)/1 Georgia, serif;
}

.detail-price > span {
    color: var(--muted);
    text-decoration: line-through;
}

.detail-description {
    max-width: 610px;
    color: #4e574f;
    font: 18px/1.8 Georgia, serif;
}

.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 26px 0;
}

.detail-tags span {
    padding: 9px 13px;
    border: 1px solid color-mix(in srgb, var(--tone) 25%, transparent);
    border-radius: 99px;
    background: rgba(255, 255, 255, .38);
    color: var(--forest);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.detail-facts {
    border-top: 1px solid var(--line);
}

.detail-facts > div {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 20px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
}

.detail-facts span {
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.detail-facts strong {
    color: var(--ink);
    font: 500 14px/1.6 Arial, sans-serif;
}

.detail-purchase {
    display: grid;
    grid-template-columns: 132px 1fr;
    gap: 13px;
    margin-top: 28px;
}

.detail-qty {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 99px;
    background: rgba(255, 255, 255, .55);
    overflow: hidden;
}

.detail-qty button {
    height: 54px;
    border: 0;
    background: transparent;
    color: var(--forest);
    font-size: 20px;
    cursor: pointer;
}

.detail-qty span {
    text-align: center;
    font-weight: 900;
}

.detail-assurances {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 24px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
}

.related-section,
.category-products {
    padding: 110px 0 130px;
    background: var(--paper);
}

.category-hero {
    padding: 180px 0 80px;
    background: linear-gradient(140deg, var(--cream), #efe1c3);
}

.category-hero-inner {
    min-height: 480px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, .7fr);
    align-items: center;
    gap: 70px;
}

.category-hero h1 {
    margin: 16px 0 20px;
    color: var(--forest);
    font-size: clamp(70px, 10vw, 150px);
}

.category-hero p {
    max-width: 630px;
    color: #4d5b50;
    font: 18px/1.75 Georgia, serif;
}

.category-hero img {
    width: 100%;
    max-height: 480px;
    object-fit: contain;
    filter: drop-shadow(0 30px 35px rgba(23, 59, 43, .18));
}

.error-page {
    min-height: 88vh;
    display: grid;
    place-items: center;
    padding: 180px 0 100px;
    background: var(--cream);
}

.article-hero {
    padding: 180px 0 100px;
    background:
        radial-gradient(circle at 12% 18%, rgba(200, 154, 69, .16), transparent 28%),
        linear-gradient(145deg, var(--cream), #f0e2c7);
}

.article-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, .75fr);
    align-items: center;
    gap: 80px;
}

.article-hero h1 {
    max-width: 900px;
    margin: 20px 0 25px;
    color: var(--forest);
    font-size: clamp(60px, 8vw, 118px);
    line-height: .92;
}

.article-hero p {
    max-width: 700px;
    color: #4d5b50;
    font: 18px/1.75 Georgia, serif;
}

.article-hero time {
    display: block;
    margin-top: 22px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .1em;
}

.article-hero img {
    width: 100%;
    max-height: 600px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 180px 180px 35px 35px;
    background: rgba(255, 255, 255, .42);
    object-fit: contain;
    filter: drop-shadow(0 28px 35px rgba(23, 59, 43, .16));
}

.article-body {
    max-width: 900px;
    padding-top: 100px;
    padding-bottom: 130px;
}

.article-body p {
    margin-bottom: 26px;
    color: #3e4840;
    font: 20px/1.9 Georgia, serif;
}

.article-body h2 {
    margin: 58px 0 22px;
    color: var(--forest);
    font: 400 clamp(34px, 4vw, 52px)/1.08 Georgia, serif;
    letter-spacing: -.03em;
}

.article-body h3 {
    margin: 40px 0 17px;
    color: var(--forest);
    font: 700 24px/1.25 Georgia, serif;
}

.article-body ul,
.article-body ol {
    margin: 0 0 30px;
    padding-left: 25px;
    color: #3e4840;
    font: 18px/1.85 Georgia, serif;
}

.article-body li {
    margin: 9px 0;
}

.article-body a {
    color: #916c32;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.article-body blockquote {
    margin: 60px 0;
    padding: 45px 0 45px 45px;
    border-left: 3px solid var(--gold);
    color: var(--forest);
    font: italic 36px/1.3 Georgia, serif;
}

.error-card {
    max-width: 800px;
    text-align: center;
}

.error-card img {
    width: 130px;
    margin-bottom: 25px;
}

.error-card h1 {
    margin: 20px auto;
    color: var(--forest);
    font-size: clamp(54px, 8vw, 110px);
}

.error-card p {
    max-width: 560px;
    margin: 0 auto 30px;
    color: var(--muted);
    line-height: 1.7;
}

.home-all-products-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: 720px;
    margin: 52px auto 0;
    padding: 21px 23px 21px 28px;
    border: 1px solid rgba(23, 59, 43, .14);
    border-radius: 24px;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, .78), rgba(243, 233, 212, .72)),
        var(--cream);
    color: var(--forest);
    text-decoration: none;
    box-shadow: 0 20px 60px rgba(23, 59, 43, .07);
    transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.home-all-products-cta:hover {
    transform: translateY(-5px);
    border-color: rgba(23, 59, 43, .3);
    box-shadow: 0 28px 70px rgba(23, 59, 43, .12);
}

.home-all-products-cta span {
    display: grid;
    gap: 5px;
}

.home-all-products-cta small {
    color: var(--muted);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.home-all-products-cta strong {
    font: 400 25px/1.1 Georgia, serif;
}

.home-all-products-cta > i {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--forest);
    color: white;
    font-style: normal;
    transition: transform .35s ease, background .35s ease, color .35s ease;
}

.home-all-products-cta:hover > i {
    transform: rotate(45deg);
    background: var(--gold);
    color: var(--forest);
}

.products-page {
    background: var(--paper);
}

.products-page .products-trigger > a {
    color: var(--gold);
}

.catalog-hero {
    position: relative;
    overflow: hidden;
    padding: 155px 0 0;
    background:
        radial-gradient(circle at 12% 16%, rgba(200, 154, 69, .2), transparent 29%),
        radial-gradient(circle at 88% 35%, rgba(76, 110, 71, .17), transparent 30%),
        linear-gradient(145deg, #f5ecda 0%, #fffaf0 48%, #e8ddc7 100%);
}

.catalog-hero::before {
    content: "";
    position: absolute;
    top: 115px;
    left: -160px;
    width: 440px;
    height: 440px;
    border: 1px solid rgba(23, 59, 43, .09);
    border-radius: 50%;
}

.catalog-breadcrumbs {
    position: relative;
    z-index: 3;
    margin-bottom: 18px;
}

.catalog-hero-grid {
    position: relative;
    z-index: 2;
    min-height: 690px;
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(440px, 1.08fr);
    align-items: center;
    gap: clamp(45px, 7vw, 110px);
    padding-bottom: 72px;
}

.catalog-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--forest);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.catalog-kicker i {
    width: 28px;
    height: 1px;
    background: var(--gold);
}

.catalog-hero-copy h1 {
    margin: 24px 0 26px;
    color: var(--forest);
    font-size: clamp(62px, 6.4vw, 104px);
    line-height: .87;
    letter-spacing: -.055em;
}

.catalog-hero-copy h1 em {
    color: #9c7433;
    font-weight: 400;
}

.catalog-hero-copy > p {
    max-width: 620px;
    color: #4e5b52;
    font: 17px/1.78 Georgia, serif;
}

.catalog-discover {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
    color: var(--forest);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .12em;
    text-decoration: none;
    text-transform: uppercase;
}

.catalog-discover i {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(23, 59, 43, .2);
    border-radius: 50%;
    font-style: normal;
    transition: .3s ease;
}

.catalog-discover:hover i {
    border-color: var(--forest);
    background: var(--forest);
    color: white;
    transform: translateY(4px);
}

.catalog-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 630px;
    margin-top: 44px;
    border-top: 1px solid rgba(23, 59, 43, .13);
    border-bottom: 1px solid rgba(23, 59, 43, .13);
}

.catalog-stats > div {
    min-height: 100px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 18px 17px;
    border-right: 1px solid rgba(23, 59, 43, .13);
}

.catalog-stats > div:last-child {
    border-right: 0;
}

.catalog-stats strong {
    color: var(--forest);
    font: 400 36px/1 Georgia, serif;
}

.catalog-stats span {
    color: var(--muted);
    font-size: 9px;
    font-weight: 800;
    line-height: 1.45;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.catalog-hero-stage {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .82);
    border-radius: 300px 300px 44px 44px;
    background:
        radial-gradient(circle at 50% 38%, rgba(255, 255, 255, .95), transparent 36%),
        linear-gradient(155deg, rgba(255, 255, 255, .52), rgba(214, 199, 166, .5));
    box-shadow: 0 40px 110px rgba(23, 59, 43, .13);
}

.catalog-hero-stage::after {
    content: "";
    position: absolute;
    right: 10%;
    bottom: 8%;
    left: 10%;
    height: 42px;
    border-radius: 50%;
    background: rgba(23, 59, 43, .15);
    filter: blur(20px);
}

.catalog-stage-ring {
    position: absolute;
    border: 1px solid rgba(23, 59, 43, .11);
    border-radius: 50%;
}

.catalog-stage-ring.ring-one {
    inset: 11% 15% 7%;
}

.catalog-stage-ring.ring-two {
    inset: 20% 24% 17%;
}

.catalog-stage-word {
    position: absolute;
    top: 12%;
    left: 50%;
    color: rgba(23, 59, 43, .055);
    font: 900 clamp(78px, 8vw, 142px)/1 Arial, sans-serif;
    letter-spacing: .04em;
    transform: translateX(-50%);
}

.catalog-jar {
    position: absolute;
    z-index: 2;
    bottom: 10%;
    width: 46%;
    margin: 0;
}

.catalog-jar::before {
    content: "";
    position: absolute;
    inset: 18% 7% 3%;
    z-index: -1;
    border-radius: 50%;
    background: color-mix(in srgb, var(--jar-soft) 78%, transparent);
    filter: blur(2px);
}

.catalog-jar > span {
    position: absolute;
    top: 4%;
    right: 8%;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    z-index: 3;
    border: 1px solid color-mix(in srgb, var(--jar-tone) 36%, transparent);
    border-radius: 50%;
    background: rgba(255, 253, 248, .8);
    color: var(--jar-tone);
    font-size: 9px;
    font-weight: 900;
}

.catalog-jar img {
    width: 100%;
    max-height: 480px;
    object-fit: contain;
    filter: drop-shadow(0 30px 24px rgba(23, 59, 43, .2));
}

.catalog-jar-1 {
    left: 27%;
    z-index: 4;
    width: 52%;
}

.catalog-jar-2 {
    right: -1%;
    z-index: 3;
    width: 42%;
    transform: translateY(15px) rotate(5deg);
}

.catalog-jar-3 {
    left: -2%;
    z-index: 2;
    width: 40%;
    transform: translateY(20px) rotate(-6deg);
}

.catalog-seal {
    position: absolute;
    z-index: 6;
    top: 13%;
    right: 7%;
    width: 108px;
    height: 108px;
    display: grid;
    place-content: center;
    border-radius: 50%;
    background: var(--forest);
    color: white;
    text-align: center;
    box-shadow: 0 18px 42px rgba(23, 59, 43, .24);
    transform: rotate(8deg);
}

.catalog-seal span {
    color: var(--gold);
    font-size: 16px;
}

.catalog-seal strong,
.catalog-seal small {
    display: block;
    font-size: 8px;
    letter-spacing: .13em;
}

.catalog-seal small {
    margin-top: 3px;
    opacity: .72;
    font-size: 6px;
}

.catalog-marquee {
    position: relative;
    z-index: 4;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, .1);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    background: var(--forest);
    color: white;
}

.catalog-marquee-track {
    width: max-content;
    display: flex;
    animation: catalogMarquee 34s linear infinite;
}

.catalog-marquee-track > div {
    display: flex;
    align-items: center;
    gap: 34px;
    padding: 21px 17px;
}

.catalog-marquee span {
    font: italic 23px/1 Georgia, serif;
    white-space: nowrap;
}

.catalog-marquee i {
    color: var(--gold);
    font-style: normal;
    font-size: 9px;
}

@keyframes catalogMarquee {
    to { transform: translateX(-50%); }
}

.catalog-routes {
    position: relative;
    padding: 118px 0 120px;
    overflow: hidden;
    background: var(--forest);
    color: white;
}

.catalog-routes::after {
    content: "KÃ„Â°LER";
    position: absolute;
    right: -25px;
    bottom: -42px;
    color: rgba(255, 255, 255, .025);
    font: 900 clamp(130px, 22vw, 330px)/.8 Arial, sans-serif;
    letter-spacing: -.07em;
}

.catalog-section-intro {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: .55fr 1.25fr .75fr;
    align-items: end;
    gap: 34px;
    margin-bottom: 52px;
}

.catalog-section-intro .eyebrow {
    color: var(--gold);
}

.catalog-section-intro h2 {
    max-width: 650px;
    color: white;
    font-size: clamp(48px, 5vw, 76px);
    line-height: .95;
}

.catalog-section-intro p {
    color: rgba(255, 255, 255, .62);
    font: 15px/1.7 Georgia, serif;
}

.catalog-route-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.catalog-route-card {
    position: relative;
    min-height: 270px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 24px;
    background: rgba(255, 255, 255, .045);
    color: white;
    text-align: left;
    cursor: pointer;
    transition: transform .35s ease, border-color .35s ease, background .35s ease;
}

.catalog-route-card:hover {
    transform: translateY(-8px);
    border-color: rgba(215, 182, 106, .7);
    background: rgba(255, 255, 255, .09);
}

.catalog-route-card::before {
    content: "";
    position: absolute;
    inset: 18% 10%;
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
}

.catalog-route-card img {
    position: absolute;
    top: 19px;
    left: 50%;
    width: 76%;
    height: 155px;
    object-fit: contain;
    filter: drop-shadow(0 18px 22px rgba(0, 0, 0, .2));
    transform: translateX(-50%);
    transition: transform .45s ease;
}

.catalog-route-card:hover img {
    transform: translateX(-50%) translateY(-6px) rotate(3deg) scale(1.05);
}

.catalog-route-number {
    position: absolute;
    z-index: 2;
    top: 17px;
    left: 18px;
    color: var(--gold);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .12em;
}

.catalog-route-copy {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 4px;
}

.catalog-route-copy strong {
    font: 400 20px/1.1 Georgia, serif;
}

.catalog-route-copy small {
    color: rgba(255, 255, 255, .55);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.catalog-route-card > i {
    position: absolute;
    right: 18px;
    bottom: 20px;
    z-index: 2;
    color: var(--gold);
    font-style: normal;
}

.catalog-products {
    position: relative;
    padding: 135px 0 150px;
    background:
        radial-gradient(circle at 95% 8%, rgba(200, 154, 69, .12), transparent 25%),
        var(--paper);
}

.catalog-products-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 45px;
    margin-bottom: 48px;
}

.catalog-products-head h2 {
    max-width: 850px;
    margin-top: 16px;
    color: var(--forest);
    font-size: clamp(50px, 6vw, 88px);
    line-height: .94;
}

.catalog-products-head > p {
    flex: 0 0 auto;
    padding-bottom: 7px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 750;
}

.catalog-products-head > p strong {
    color: var(--forest);
}

.catalog-toolbar {
    position: sticky;
    z-index: 12;
    top: calc(var(--header-h) + 14px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    margin-bottom: 14px;
    padding: 13px;
    border: 1px solid rgba(23, 59, 43, .11);
    border-radius: 24px;
    background: rgba(255, 253, 248, .86);
    box-shadow: 0 18px 45px rgba(23, 59, 43, .08);
    backdrop-filter: blur(18px);
}

.catalog-search {
    min-height: 52px;
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr) 36px;
    align-items: center;
    gap: 10px;
    padding: 0 13px 0 17px;
    border-radius: 16px;
    background: rgba(241, 232, 214, .62);
}

.catalog-search svg {
    width: 19px;
    fill: none;
    stroke: var(--forest);
    stroke-width: 1.7;
}

.catalog-search input {
    width: 100%;
    height: 52px;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--forest);
    font: 15px/1 Arial, sans-serif;
}

.catalog-search input::placeholder {
    color: #8b8f87;
}

.catalog-search button {
    width: 32px;
    height: 32px;
    opacity: 0;
    pointer-events: none;
    border: 0;
    border-radius: 50%;
    background: var(--forest);
    color: white;
    cursor: pointer;
    font-size: 18px;
    transition: opacity .2s ease;
}

.catalog-search.has-value button {
    opacity: 1;
    pointer-events: auto;
}

.catalog-sort {
    min-width: 230px;
    height: 52px;
    border-radius: 16px;
    background: transparent;
}

.catalog-filters {
    margin-bottom: 34px;
    padding: 10px 2px;
}

.catalog-product-grid {
    gap: 22px;
}

.catalog-no-results {
    margin-top: 25px;
    padding: 70px 24px;
    border: 1px dashed rgba(23, 59, 43, .2);
    border-radius: 30px;
    background: rgba(255, 255, 255, .44);
}

.catalog-no-results > span {
    display: block;
    margin-bottom: 14px;
    color: var(--gold);
    font-size: 24px;
}

.catalog-no-results .btn {
    margin-top: 22px;
}

.catalog-manifesto {
    padding: 50px 0;
    background: #102e22;
    color: white;
}

.catalog-manifesto-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr) .9fr;
    align-items: stretch;
}

.catalog-manifesto-inner > div {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 6px 12px;
    padding: 18px 30px;
    border-right: 1px solid rgba(255, 255, 255, .11);
}

.catalog-manifesto-inner > div > span {
    grid-row: span 2;
    color: var(--gold);
    font-size: 9px;
    font-weight: 900;
}

.catalog-manifesto-inner strong {
    font: 400 21px/1.1 Georgia, serif;
}

.catalog-manifesto-inner p {
    color: rgba(255, 255, 255, .57);
    font-size: 10px;
    line-height: 1.55;
}

.catalog-manifesto-inner > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 18px 30px;
    color: white;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .09em;
    text-decoration: none;
    text-transform: uppercase;
}

.catalog-manifesto-inner > a i {
    color: var(--gold);
    font-style: normal;
    font-size: 20px;
    transition: transform .3s ease;
}

.catalog-manifesto-inner > a:hover i {
    transform: translate(4px, -4px);
}

@media (max-width: 980px) {
    .product-detail-grid,
    .category-hero-inner,
    .article-hero-inner {
        grid-template-columns: 1fr;
    }

    .detail-copy {
        max-width: 720px;
    }

    .category-hero-inner {
        text-align: center;
    }

    .category-hero p {
        margin-inline: auto;
    }

    .category-hero img {
        max-height: 340px;
    }

    .article-hero-inner {
        text-align: center;
    }

    .article-hero p {
        margin-inline: auto;
    }

    .catalog-hero-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .catalog-hero-copy {
        max-width: 800px;
    }

    .catalog-hero-stage {
        width: min(100%, 690px);
        min-height: 620px;
        margin-inline: auto;
    }

    .catalog-section-intro {
        grid-template-columns: 1fr 1.7fr;
    }

    .catalog-section-intro p {
        grid-column: 2;
    }

    .catalog-route-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .catalog-products-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .catalog-manifesto-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .catalog-manifesto-inner > div:nth-child(2) {
        border-right: 0;
    }

    .catalog-manifesto-inner > div:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(255, 255, 255, .11);
    }
}

@media (max-width: 680px) {
    .product-detail-hero {
        padding: 126px 0 76px;
    }

    .breadcrumbs {
        margin-bottom: 20px;
        font-size: 9px;
    }

    .product-detail-grid {
        gap: 42px;
    }

    .detail-gallery {
        display: flex;
        flex-direction: column;
    }

    .detail-main {
        min-height: 430px;
        border-radius: 150px 150px 28px 28px;
    }

    .detail-thumbs {
        order: 2;
        flex-direction: row;
    }

    .detail-thumb {
        width: 72px;
        border-radius: 16px;
    }

    .detail-copy h1 {
        font-size: clamp(48px, 15vw, 72px);
    }

    .detail-description {
        font-size: 16px;
    }

    .detail-facts > div {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .detail-purchase {
        grid-template-columns: 1fr;
    }

    .detail-qty {
        max-width: 160px;
    }

    .related-section,
    .category-products {
        padding: 75px 0 100px;
    }

    .category-hero {
        padding: 135px 0 65px;
    }

    .article-hero {
        padding: 135px 0 70px;
    }

    .article-hero h1 {
        font-size: clamp(52px, 16vw, 82px);
    }

    .article-hero p,
    .article-body p {
        font-size: 16px;
    }

    .article-body {
        padding-top: 70px;
        padding-bottom: 100px;
    }

    .article-body blockquote {
        margin: 45px 0;
        padding: 30px 0 30px 25px;
        font-size: 27px;
    }

    .category-hero-inner {
        min-height: auto;
        gap: 35px;
    }

    .category-hero h1 {
        font-size: clamp(58px, 20vw, 96px);
    }

    .category-hero p {
        font-size: 16px;
    }

    .home-all-products-cta {
        margin-top: 38px;
        padding: 17px 17px 17px 20px;
        border-radius: 20px;
    }

    .home-all-products-cta strong {
        font-size: 20px;
    }

    .home-all-products-cta > i {
        width: 43px;
        height: 43px;
    }

    .catalog-hero {
        padding-top: 125px;
    }

    .catalog-hero-grid {
        min-height: auto;
        padding-bottom: 55px;
    }

    .catalog-hero-copy h1 {
        font-size: clamp(50px, 14.8vw, 72px);
        line-height: .91;
    }

    .catalog-hero-copy > p {
        font-size: 15px;
    }

    .catalog-stats {
        margin-top: 34px;
    }

    .catalog-stats > div {
        min-height: 86px;
        display: grid;
        gap: 5px;
        padding: 13px 8px;
        text-align: center;
    }

    .catalog-stats strong {
        font-size: 28px;
    }

    .catalog-stats span {
        font-size: 7px;
    }

    .catalog-hero-stage {
        min-height: 440px;
        border-radius: 190px 190px 30px 30px;
    }

    .catalog-seal {
        top: 8%;
        right: 4%;
        width: 82px;
        height: 82px;
    }

    .catalog-route-grid {
        display: flex;
        gap: 12px;
        margin-inline: -18px;
        padding: 0 18px 12px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }

    .catalog-route-card {
        min-width: 68vw;
        min-height: 245px;
        scroll-snap-align: center;
    }

    .catalog-routes {
        padding: 84px 0 86px;
    }

    .catalog-section-intro {
        display: block;
        margin-bottom: 35px;
    }

    .catalog-section-intro h2 {
        margin-top: 15px;
        font-size: 48px;
    }

    .catalog-section-intro p {
        margin-top: 18px;
    }

    .catalog-products {
        padding: 90px 0 105px;
    }

    .catalog-products-head {
        margin-bottom: 32px;
    }

    .catalog-products-head h2 {
        font-size: 48px;
    }

    .catalog-toolbar {
        position: relative;
        top: auto;
        grid-template-columns: 1fr;
        padding: 10px;
    }

    .catalog-sort {
        width: 100%;
        min-width: 0;
    }

    .catalog-filters {
        flex-wrap: nowrap;
        margin-inline: -18px;
        padding: 12px 18px 18px;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .catalog-filters::-webkit-scrollbar {
        display: none;
    }

    .catalog-filters .filter-btn {
        flex: 0 0 auto;
    }

    .catalog-manifesto {
        padding: 25px 0;
    }

    .catalog-manifesto-inner {
        grid-template-columns: 1fr;
    }

    .catalog-manifesto-inner > div {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .11);
    }

    .catalog-manifesto-inner > a {
        padding-block: 25px;
    }
}

/* Dynamic CMS pages: contact, legal documents and journal archive */
.contact-main,
.legal-main,
.articles-main {
    min-height: 100vh;
    background: var(--paper);
}

.contact-hero,
.legal-hero,
.articles-hero {
    position: relative;
    overflow: hidden;
    padding: 176px 0 92px;
    border-bottom: 1px solid rgba(23, 59, 43, .1);
    background:
        radial-gradient(circle at 10% 8%, rgba(200, 154, 69, .2), transparent 30%),
        radial-gradient(circle at 90% 75%, rgba(76, 110, 71, .14), transparent 27%),
        linear-gradient(145deg, #f5ecda, #fffaf0 56%, #e8ddc7);
}

.contact-hero::after,
.legal-hero::after,
.articles-hero::after {
    content: "";
    position: absolute;
    top: 90px;
    right: -120px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(23, 59, 43, .1);
    border-radius: 50%;
    box-shadow:
        inset 0 0 0 42px rgba(255, 255, 255, .12),
        inset 0 0 0 84px rgba(255, 255, 255, .1);
}

.contact-hero-inner,
.legal-hero-inner,
.articles-hero-inner {
    position: relative;
    z-index: 1;
}

.contact-hero .breadcrumbs,
.legal-hero .breadcrumbs,
.articles-hero .breadcrumbs {
    margin-bottom: 42px;
}

.contact-hero h1,
.legal-hero h1,
.articles-hero h1 {
    max-width: 980px;
    margin-top: 18px;
    color: var(--forest);
    font-size: clamp(58px, 7.2vw, 106px);
    line-height: .92;
    letter-spacing: -.052em;
}

.contact-hero h1 em,
.articles-hero h1 em {
    color: #9c7433;
    font-weight: 400;
}

.contact-hero p,
.legal-hero p,
.articles-hero p {
    max-width: 720px;
    margin-top: 26px;
    color: #526058;
    font: 17px/1.8 Georgia, serif;
}

.contact-section,
.legal-section,
.articles-collection {
    padding: 105px 0 130px;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
    gap: clamp(48px, 7vw, 110px);
    align-items: start;
}

.contact-aside {
    position: sticky;
    top: 145px;
}

.contact-aside-number {
    display: block;
    margin-bottom: 26px;
    color: var(--gold);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .16em;
}

.contact-aside h2,
.contact-form-head h2 {
    margin-top: 14px;
    color: var(--forest);
    font: 400 clamp(34px, 3.5vw, 54px)/1.02 Georgia, serif;
    letter-spacing: -.035em;
}

.contact-aside > p {
    margin-top: 22px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.85;
}

.contact-info-list {
    margin-top: 40px;
    border-top: 1px solid var(--line);
}

.contact-info-list > * {
    display: block;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
}

.contact-info-list small {
    display: block;
    margin-bottom: 7px;
    color: var(--muted);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.contact-info-list strong {
    color: var(--forest);
    font: 400 17px/1.4 Georgia, serif;
}

.contact-info-list a strong {
    transition: color .25s ease;
}

.contact-info-list a:hover strong {
    color: #9c7433;
}

.contact-promise {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 12px;
    margin-top: 30px;
    padding: 20px;
    border: 1px solid rgba(23, 59, 43, .11);
    border-radius: 18px;
    background: #f5eddd;
}

.contact-promise span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--forest);
    color: var(--gold-light);
}

.contact-promise p {
    color: #5d655f;
    font-size: 10px;
    line-height: 1.7;
}

.contact-form-card {
    padding: clamp(28px, 5vw, 58px);
    border: 1px solid rgba(23, 59, 43, .11);
    border-radius: 38px;
    background:
        radial-gradient(circle at 100% 0, rgba(200, 154, 69, .11), transparent 28%),
        rgba(255, 253, 248, .88);
    box-shadow: 0 30px 90px rgba(23, 59, 43, .1);
}

.contact-form-head {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    margin-bottom: 42px;
    padding-bottom: 34px;
    border-bottom: 1px solid var(--line);
}

.contact-form-head .contact-aside-number {
    margin: 6px 0 0;
}

.contact-form-head h2 {
    font-size: clamp(34px, 3vw, 48px);
}

.contact-alert {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 13px;
    align-items: center;
    margin-bottom: 28px;
    padding: 17px 19px;
    border-radius: 16px;
    font-size: 11px;
    line-height: 1.65;
}

.contact-alert > span {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-weight: 900;
}

.contact-alert.success {
    background: #e4f1e9;
    color: #24523d;
}

.contact-alert.success > span {
    background: #24523d;
    color: white;
}

.contact-alert.error {
    background: #f7e6e2;
    color: #873d35;
}

.contact-alert.error > span {
    background: #873d35;
    color: white;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 22px;
}

.contact-field.full {
    grid-column: 1 / -1;
}

.contact-field label {
    display: block;
    margin-bottom: 10px;
    color: var(--forest);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;
    border: 1px solid rgba(23, 59, 43, .14);
    border-radius: 14px;
    outline: 0;
    background: rgba(255, 255, 255, .72);
    color: var(--forest);
    font: 13px/1.55 "Avenir Next", Arial, sans-serif;
    transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.contact-field input,
.contact-field select {
    height: 55px;
    padding: 0 16px;
}

.contact-field textarea {
    min-height: 174px;
    padding: 16px;
    resize: vertical;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    border-color: var(--gold);
    background: white;
    box-shadow: 0 0 0 4px rgba(200, 154, 69, .11);
}

.contact-consent {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 11px;
    align-items: start;
    margin-top: 25px;
    color: var(--muted);
    font-size: 9px;
    line-height: 1.7;
}

.contact-consent input {
    width: 17px;
    height: 17px;
    margin-top: 1px;
    accent-color: var(--forest);
}

.contact-consent a {
    color: var(--forest);
    font-weight: 850;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.contact-submit {
    width: 100%;
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 27px;
    padding: 8px 10px 8px 24px;
    border: 0;
    border-radius: 17px;
    background: var(--forest);
    color: white;
    cursor: pointer;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .11em;
    text-transform: uppercase;
    transition: transform .3s ease, box-shadow .3s ease;
}

.contact-submit i {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--gold);
    color: var(--forest);
    font-size: 17px;
    font-style: normal;
}

.contact-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(23, 59, 43, .2);
}

.contact-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.legal-hero {
    padding-bottom: 78px;
}

.legal-hero h1 {
    max-width: 1120px;
    font-size: clamp(52px, 6vw, 88px);
}

.legal-hero small {
    display: block;
    margin-top: 28px;
    color: #7b806f;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.legal-layout {
    display: grid;
    grid-template-columns: minmax(230px, .36fr) minmax(0, 1fr);
    gap: clamp(45px, 7vw, 105px);
    align-items: start;
}

.legal-nav {
    position: sticky;
    top: 145px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 253, 248, .75);
}

.legal-nav > span {
    display: block;
    padding: 0 9px 15px;
    color: var(--muted);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.legal-nav > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 15px 10px;
    border-top: 1px solid var(--line);
    color: #667069;
    font-size: 10px;
    line-height: 1.45;
    transition: .25s ease;
}

.legal-nav > a i {
    font-style: normal;
    transition: transform .25s ease;
}

.legal-nav > a:hover,
.legal-nav > a.active {
    color: var(--forest);
}

.legal-nav > a.active {
    font-weight: 900;
}

.legal-nav > a:hover i,
.legal-nav > a.active i {
    transform: translateX(4px);
}

.legal-help {
    margin-top: 20px;
    padding: 19px;
    border-radius: 17px;
    background: var(--forest);
    color: white;
}

.legal-help small {
    display: block;
    margin-bottom: 9px;
    color: rgba(255, 255, 255, .55);
    font-size: 8px;
    text-transform: uppercase;
}

.legal-help a {
    color: var(--gold-light);
    font-size: 10px;
    font-weight: 900;
}

.legal-content {
    max-width: 880px;
    color: #536059;
    font-size: 13px;
    line-height: 1.9;
}

.legal-content > :first-child {
    margin-top: 0;
}

.legal-content h2 {
    margin: 55px 0 18px;
    color: var(--forest);
    font: 400 clamp(30px, 3.2vw, 44px)/1.08 Georgia, serif;
    letter-spacing: -.025em;
}

.legal-content h3 {
    margin: 34px 0 13px;
    color: var(--forest);
    font: 700 18px/1.3 Georgia, serif;
}

.legal-content p,
.legal-content ul,
.legal-content ol,
.legal-content blockquote {
    margin: 0 0 19px;
}

.legal-content ul,
.legal-content ol {
    padding-left: 21px;
}

.legal-content li {
    margin: 8px 0;
}

.legal-content strong {
    color: #294a3a;
}

.legal-content a {
    color: #916c32;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-content blockquote {
    padding: 22px 25px;
    border-left: 3px solid var(--gold);
    border-radius: 0 17px 17px 0;
    background: #f1e8d7;
    color: var(--forest);
    font-family: Georgia, serif;
}

.legal-content hr {
    height: 1px;
    margin: 40px 0;
    border: 0;
    background: var(--line);
}

.articles-hero-inner {
    display: grid;
    grid-template-columns: 1fr minmax(220px, .35fr);
    align-items: end;
}

.articles-hero-inner .breadcrumbs,
.articles-hero-inner .eyebrow,
.articles-hero-inner h1 {
    grid-column: 1 / -1;
}

.articles-hero-inner > p {
    grid-column: 2;
    grid-row: 4;
    margin: 28px 0 8px;
}

.articles-collection-head {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 46px;
    color: var(--forest);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.articles-collection-head i {
    height: 1px;
    flex: 1;
    background: var(--line);
}

.articles-collection-head small {
    color: var(--muted);
    font-size: 8px;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}

.articles-card {
    min-height: 360px;
    display: grid;
    grid-template-columns: minmax(190px, .72fr) 1fr;
    overflow: hidden;
    border: 1px solid rgba(23, 59, 43, .11);
    border-radius: 28px;
    background: rgba(255, 253, 248, .8);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.articles-card:hover {
    border-color: rgba(156, 116, 51, .34);
    box-shadow: 0 28px 70px rgba(23, 59, 43, .12);
    transform: translateY(-7px);
}

.articles-card-featured {
    grid-column: 1 / -1;
    min-height: 510px;
    grid-template-columns: 1.1fr .9fr;
}

.articles-card-art {
    position: relative;
    min-height: 100%;
    overflow: hidden;
    background: #e8ddc9;
}

.articles-card-art img {
    width: 100%;
    height: 100%;
    padding: clamp(18px, 3vw, 34px);
    object-fit: contain;
    transition: transform .65s cubic-bezier(.2, .8, .2, 1);
}

.articles-card:hover .articles-card-art img {
    transform: scale(1.045);
}

.articles-card-art > span {
    position: absolute;
    top: 18px;
    left: 18px;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 253, 248, .88);
    color: var(--forest);
    font-size: 9px;
    font-weight: 900;
    backdrop-filter: blur(10px);
}

.articles-card-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(28px, 4vw, 58px);
}

.articles-card-copy small {
    color: #9c7433;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.articles-card-copy h2 {
    margin-top: 17px;
    color: var(--forest);
    font: 400 clamp(28px, 3.2vw, 48px)/1.06 Georgia, serif;
    letter-spacing: -.035em;
}

.articles-card:not(.articles-card-featured) .articles-card-copy h2 {
    font-size: clamp(25px, 2.2vw, 34px);
}

.articles-card-copy p {
    margin-top: 18px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.75;
}

.articles-card-copy strong {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    color: var(--forest);
    font-size: 9px;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.articles-card-copy strong i {
    color: var(--gold);
    font-size: 16px;
    font-style: normal;
    transition: transform .25s ease;
}

.articles-card:hover .articles-card-copy strong i {
    transform: translate(4px, -4px);
}

.articles-empty {
    padding: 80px 24px;
    border: 1px dashed rgba(23, 59, 43, .2);
    border-radius: 28px;
    text-align: center;
}

.articles-empty > span {
    color: var(--gold);
    font-size: 28px;
}

.articles-empty h2 {
    margin-top: 16px;
    color: var(--forest);
    font: 400 34px/1.1 Georgia, serif;
}

.articles-empty p {
    margin-top: 13px;
    color: var(--muted);
    font-size: 11px;
}

@media (max-width: 980px) {
    .contact-layout,
    .legal-layout {
        grid-template-columns: 1fr;
    }

    .contact-aside,
    .legal-nav {
        position: static;
    }

    .contact-info-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .legal-nav {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .legal-nav > span,
    .legal-help {
        grid-column: 1 / -1;
    }

    .articles-hero-inner {
        display: block;
    }

    .articles-card,
    .articles-card-featured {
        grid-column: auto;
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .articles-card-art {
        min-height: 330px;
    }
}

@media (max-width: 680px) {
    .contact-hero,
    .legal-hero,
    .articles-hero {
        padding: 138px 0 65px;
    }

    .contact-hero::after,
    .legal-hero::after,
    .articles-hero::after {
        top: 70px;
        right: -220px;
    }

    .contact-hero .breadcrumbs,
    .legal-hero .breadcrumbs,
    .articles-hero .breadcrumbs {
        margin-bottom: 29px;
    }

    .contact-hero h1,
    .legal-hero h1,
    .articles-hero h1 {
        font-size: clamp(46px, 14vw, 67px);
    }

    .contact-hero p,
    .legal-hero p,
    .articles-hero p {
        font-size: 15px;
    }

    .contact-section,
    .legal-section,
    .articles-collection {
        padding: 68px 0 88px;
    }

    .contact-info-list,
    .contact-form-grid,
    .legal-nav,
    .articles-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-list {
        gap: 0;
    }

    .contact-form-card {
        padding: 27px 20px;
        border-radius: 25px;
    }

    .contact-form-head {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .contact-form-head .contact-aside-number {
        margin: 0;
    }

    .legal-nav > span,
    .legal-help {
        grid-column: auto;
    }

    .legal-content h2 {
        margin-top: 42px;
        font-size: 31px;
    }

    .articles-card-art {
        min-height: 270px;
    }

    .articles-card-copy {
        padding: 27px 23px 31px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .catalog-marquee-track {
        animation-play-state: paused;
    }
}