.page-content {
    width: 100%;
}

.home-hero {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 100vh;
    overflow: hidden;
    isolation: isolate;
    background: none;
}

.home-hero__backdrop {
    position: absolute;
    inset: 0;
    opacity: 1;
    pointer-events: none;
}

.home-hero__backdrop-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    mix-blend-mode: normal;
}

.home-hero__content {
    position: relative;
    z-index: 3;
    width: min(100% - 2rem, var(--max-width-container));
    margin: 0 auto;
    padding: 0 0 clamp(2.5rem, 5vw, 4.5rem);
}

.home-hero__eyebrow {
    margin: 0 0 0.5rem;
    font-size: 0.9rem;
    font-weight: 700; 
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(247, 239, 231, 0.66);
}

.home-hero__title {
    max-width: 20ch;
    margin: 0;
    font-family: var(--font-family-display);
    font-size: clamp(3.8rem, 6.8vw, 5.6rem);
    line-height: 0.95;
    font-weight: 400;
    font-style: normal;
    letter-spacing: -0.04em;
}

.home-hero__title em {
    font-style: italic;
    font-weight: 400;
}

.home-hero__subtitle {
    margin: 0.8rem 0 0;
    font-family: var(--font-family-base);
    font-size: clamp(1.15rem, 2.1vw, 1.65rem);
    line-height: 1.15;
    font-weight: 400;
    text-transform: uppercase;
    max-width: 50ch;
}

.home-hero__cta {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-top: 1.5rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.9rem;
    padding: 0 1.2rem;
    border-radius: 0.45rem;
    border: 1px solid transparent;
    font-size: 0.98rem;
    font-weight: 700;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-1px);
}

.button--primary {
    background-color: #f0d28a;
    color: #1f140f;
}

.button--secondary {
    border-color: rgba(247, 239, 231, 0.56);
    color: var(--color-text);
    background-color: rgba(255, 255, 255, 0.02);
}

.page-loaded .home-hero__content {
    animation: hero-rise 0.65s ease-out both;
}

@keyframes hero-rise {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1180px) {
    .home-hero {
        min-height: clamp(40rem, 90vh, 72rem);
        padding-bottom: 2.5rem;
    }

    .home-hero__content {
        padding-bottom: 0;
    }

    .home-hero__title {
        font-size: clamp(3.2rem, 5.4vw, 4.8rem);
    }

    .home-hero__subtitle {
        font-size: clamp(1rem, 1.8vw, 1.4rem);
    }
}

@media (max-width: 860px) {
    .home-hero {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 1.25rem 0 3rem;
    }

    .home-hero__content {
        width: min(100% - 2rem, 42rem);
        padding: 2rem 0 0;
        text-align: center;
    }

    .home-hero__title,
    .home-hero__subtitle {
        max-width: none;
    }

    .home-hero__cta {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 540px) {
    .home-hero__title {
        font-size: clamp(3.1rem, 16vw, 4.4rem);
    }

    .home-hero__subtitle {
        font-size: 1rem;
    }

    .button {
        width: 100%;
    }

    .home-hero__cta {
        width: 100%;
    }
}

.home-highlights {
    padding: 1rem 0 3rem;
    /* background: linear-gradient(180deg, #f7f4ef 0%, #f5f1ea 100%); */
}

.home-highlights__inner {
    width: min(100% - 1.75rem, var(--max-width-container));
    margin: 0 auto;
    padding: clamp(2rem, 4vw, 3.4rem) clamp(1rem, 3vw, 2rem);
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
    border: 1px solid rgba(146, 130, 108, 0.45);
    border-radius: 1.8rem;
    /* background-color: rgba(255, 255, 255, 0.72); */
    box-shadow: inset 0 0 0 1px rgba(203, 194, 181, 0.42);
}

.home-highlights__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 15rem;
    padding: 1rem;
}

.home-highlights__icon {
    display: grid;
    place-items: center;
    width: 5.6rem;
    height: 5.6rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(190, 184, 172, 0.75);
    border-radius: 50%;
    color: #b8b09f;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9), rgba(241, 238, 232, 0.9));
}

.home-highlights__icon-image {
    width: 2.6rem;
    height: 2.6rem;
    display: block;
    object-fit: contain;
}

.home-highlights__title {
    margin: 0;
    color: #c3bcaf;
    font-family: var(--font-family-display);
    font-size: clamp(1.5rem, 2.2vw, 2.2rem);
    font-weight: 400;
    line-height: 1.05;
    text-transform: uppercase;
}

@media (max-width: 1080px) {
    .home-highlights__inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .home-highlights {
        padding-bottom: 2rem;
    }

    .home-highlights__inner {
        grid-template-columns: 1fr;
        border-radius: 1.3rem;
    }

    .home-highlights__item {
        min-height: 11.5rem;
    }

    .home-highlights__title {
        font-size: 1.8rem;
    }
}

.featured-products {
    padding: 1rem 0 4.5rem;
    /* background: #f6f2eb; */
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.featured-products__header {
    width: min(100% - 1.5rem, var(--max-width-container));
    margin: 0 auto 1.6rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.featured-products__heading {
    margin: 0 auto;
    color: #bcb5a8;
    font-family: var(--font-family-display);
    font-size: clamp(2.7rem, 4.8vw, 3.8rem);
    font-weight: 500;
    line-height: 0.95;
}

.featured-products__heading-accent {
    font-style: italic;
    font-weight: 400;
}

.featured-products__link {
    flex: 0 0 auto;
    color: #121212;
    font-size: 1rem;
    font-weight: 600;
}

.featured-products__link::after {
    content: " \2192";
}

.featured-products__grid {
    width: min(100% - 1.5rem, var(--max-width-container));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.45rem;
}

.product-card {
    min-height: 38.5rem;
    padding: 1.75rem 1.75rem 1.35rem;
    border-radius: 1.7rem;
}

.product-card__weight {
    top: 1.6rem;
    right: 1.6rem;
    min-width: 4rem;
    min-height: 1.9rem;
    padding: 0 0.8rem;
    font-size: 0.8rem;
}

.product-card__name {
    font-size: clamp(2rem, 3.2vw, 1.9rem);
}

.product-card__footer {
    gap: 1rem;
}

.product-card__price {
    font-size: clamp(3rem, 3vw, 4rem);
}

@media (max-width: 1220px) {
    .featured-products__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-card {
        min-height: 32rem;
    }
}

@media (max-width: 860px) {
    .featured-products {
        padding-bottom: 3rem;
    }

    .featured-products__header {
        flex-direction: column;
        align-items: center;
        margin-bottom: 1.2rem;
    }

    .featured-products__heading {
        text-align: center;
    }

    .featured-products__grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        min-height: 28rem;
        padding: 1.2rem 1.2rem 1rem;
    }

    .product-card__name {
        max-width: 8ch;
        font-size: 2rem;
    }

    .product-card__footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .product-card__button {
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }
}

@media (max-width: 540px) {
    .featured-products__heading {
        font-size: 2.7rem;
    }

    .product-card {
        min-height: 25rem;
    }

    .product-card__price {
        font-size: 2.9rem;
    }
}

.home-slider {
    padding: 0 0 4rem;
    /* background: #f6f2eb; */
    overflow: hidden;
}

.home-slider__viewport {
    width: min(100% - 1rem, var(--max-width-container));
    margin: 0 auto;
    overflow: visible;
}

.home-slider__track {
    display: flex;
    gap: 0.85rem;
    transition: transform 0.65s ease;
    will-change: transform;
}

.home-slide {
    position: relative;
    flex: 0 0 calc(100% - 8.5rem);
    min-height: 46rem;
    border-radius: 1.7rem;
    overflow: hidden;
}

.home-slide__media,
.home-slide__image {
    position: absolute;
    inset: 0;
}

.home-slide__image {
    background: none;
}

.home-slide__image--warm {
    background: none;
}

.home-slide__image--dark {
    background: none;
}

.home-slide__image-media {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.home-slide__overlay {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: min(28rem, 38%);
    padding: 3rem 0 0 3.2rem;
}

.home-slide__title {
    margin: 0;
    color: #ffffff;
    font-family: var(--font-family-display);
    font-size: clamp(3.2rem, 5vw, 4.5rem);
    font-weight: 500;
    line-height: 0.92;
}

.home-slide__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.45rem;
    margin-top: 1.25rem;
    padding: 0 1rem;
    border-radius: 0.4rem;
    background-color: #0f0f0f;
    color: #f0d28a;
    font-size: 0.92rem;
    font-weight: 700;
}

@media (max-width: 1080px) {
    .home-slide {
        flex-basis: calc(100% - 4rem);
        min-height: 34rem;
    }

    .home-slide__overlay {
        width: min(24rem, 48%);
        padding: 2rem 0 0 2rem;
    }
}

@media (max-width: 720px) {
    .home-slider {
        padding-bottom: 3rem;
    }

    .home-slide {
        flex-basis: calc(100% - 1.5rem);
        min-height: 24rem;
    }

    .home-slide__overlay {
        width: min(18rem, 80%);
        padding: 1.5rem 0 0 1.5rem;
    }

    .home-slide__title {
        font-size: 2.6rem;
    }
}

.process-section {
    padding: 1.5rem 0 5rem;
    /* background: #f6f2eb; */
}

.process-section__intro {
    width: min(100% - 1.5rem, var(--max-width-container));
    margin: 0 auto 7rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 37rem);
    gap: 2rem;
    align-items: start;
}

.process-section__title {
    margin: 0;
    color: #b2b2a4;
    font-family: var(--font-family-display);
    font-size: clamp(2.5rem, 4vw, 3.4rem);
    font-weight: 400;
    font-style: normal;
    line-height: 0.95;
}

.process-section__title em {
    font-weight: 400;
    font-style: italic;
}

.process-section__lead {
    margin: 0;
    max-width: 80rem;
    color: #a6a095;
    font-family: var(--font-family-base);
    font-size: 1.55rem;
    font-weight: 200;
    line-height: 1.35;
}

.process-grid {
    width: min(100% - 1.5rem, var(--max-width-container));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.1rem;
}

.process-card {
    min-height: 18rem;
}

.process-card--text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0.7rem 0.65rem 0.35rem;
}

.process-card__index {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
    width: fit-content;
    margin-bottom: 0.9rem;
    color: #b7b0a3;
    font-family: var(--font-family-display);
    font-size: clamp(3rem, 4vw, 4rem);
    font-style: italic;
    font-weight: 400;
    line-height: 1;
}

.process-card__index::after {
    content: "";
    width: 3.35rem;
    height: 2px;
    background: #bdb5a8;
}

.process-card__body {
    max-width: 42rem;
}

.process-card__title {
    display: inline;
    margin: 0;
    color: #1c1713;
    font-family: var(--font-family-display);
    font-size: clamp(1.95rem, 2.4vw, 2.65rem);
    font-weight: 400;
    font-style: normal;
    line-height: 1;
}

.process-card__copy {
    display: inline;
    margin: 0;
    max-width: none;
    color: #b7b0a3;
    font-family: var(--font-family-base);
    font-size: clamp(1.05rem, 1.55vw, 1.28rem);
    font-weight: 400;
    line-height: 1.32;
}

.process-card__copy::before {
    content: " \2014 ";
}

.process-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.35rem;
}

.process-card__tag {
    display: inline-flex;
    align-items: center;
    min-height: 2.3rem;
    padding: 0 1.15rem;
    border-radius: 999px;
    background: #f8efe1;
    color: #c48816;
    font-family: var(--font-family-base);
    font-size: 0.86rem;
    font-weight: 500;
}

.process-card--image {
    display: flex;
    margin-top: -2.4rem;
    margin-bottom: -2.4rem;
    position: relative;
    z-index: 2;
}

.process-card__photo {
    width: 100%;
    min-height: 19rem;
    border-radius: 0.55rem;
    overflow: hidden;
    position: relative;
    background: none;
}

.process-card__photo--stone {
    background: none;
}

.process-card__photo--yellow {
    background: none;
}

.process-card__photo--pack-grid {
    background: none;
}

.process-card__photo-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

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

    .process-card--image {
        margin-top: 0;
        margin-bottom: 0;
    }

    .process-section__lead {
        max-width: none;
    }
}

@media (max-width: 640px) {
    .process-section {
        padding-bottom: 3rem;
    }

    .process-grid {
        gap: 1.5rem;
    }

    .process-card {
        min-height: auto;
    }

    .process-card__index {
        font-size: 3rem;
    }

    .process-card__title {
        font-size: 1.9rem;
    }

    .process-card__copy {
        font-size: 1rem;
    }

    .process-card__photo {
        min-height: 15rem;
    }
}

.brand-story {
    padding: 0 0 5rem;
    /* background: #f6f2eb; */
}

.brand-story__metric,
.brand-story__recommended-header,
.brand-story__recommended-grid {
    width: min(100% - 1.5rem, var(--max-width-container));
    margin-left: auto;
    margin-right: auto;
}

.brand-story__hero {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(18rem, 0.82fr) minmax(24rem, 1.18fr);
    gap: 0;
    overflow: hidden;
    background-color: #d2d0c4;
}

.brand-story__image {
    min-height: clamp(24rem, 34vw, 30rem);
    padding: 2.4rem 2rem 2.4rem max(2rem, calc((100vw - var(--max-width-container)) / 2));
    background: none;
    display: grid;
    place-items: center;
}

.brand-story__image-media {
    width: min(100%, 34rem);
    max-height: 26rem;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 0.8rem;
}

.brand-story__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3.5rem max(2rem, calc((100vw - var(--max-width-container)) / 2)) 3.5rem 5.3rem;
    background: #d2d0c4;
}

.brand-story__title {
    margin: 0;
    max-width: 7ch;
    color: #666145;
    font-family: var(--font-family-display);
    font-size: clamp(4rem, 5vw, 5.4rem);
    font-weight: 400;
    font-style: normal;
    line-height: 0.9;
    letter-spacing: -0.03em;
}

.brand-story__title em {
    font-weight: 400;
    font-style: italic;
}

.brand-story__text {
    margin: 2rem 0 0;
    max-width: 27rem;
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--font-family-base);
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.32;
}

.brand-story__testimonial {
    grid-column: 1 / -1;
    position: relative;
    margin-top: 0;
    min-height: 24rem;
    padding: 3.7rem 7rem 3.5rem;
    border-radius: 0 0 1rem 1rem;
    background: #5b5b41;
    color: #f6f2eb;
    text-align: center;
    overflow: hidden;
}

.brand-story__testimonial-viewport {
    overflow: hidden;
}

.brand-story__testimonial-track {
    transition: transform 0.62s cubic-bezier(0.78, 0, 0.22, 1);
    will-change: transform;
}

.brand-story__testimonial-slide {
    display: grid;
    align-content: center;
    justify-items: center;
    min-height: 16.8rem;
}

.brand-story__avatar {
    width: 4.6rem;
    height: 4.6rem;
    margin: 0 auto 1.8rem;
    overflow: hidden;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
}

.brand-story__avatar-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.brand-story__avatar--initials {
    display: grid;
    place-items: center;
    color: #5b5b41;
    font-family: var(--font-family-display);
    font-size: 1.45rem;
    font-weight: 500;
    text-transform: uppercase;
}

.brand-story__rating {
    margin: -0.7rem 0 1.15rem;
    color: #d7bf6d;
    font-size: 1rem;
    line-height: 1;
    letter-spacing: 0.16em;
}

.brand-story__quote {
    margin: 0 auto;
    max-width: 60rem;
    font-family: var(--font-family-display);
    font-size: clamp(2.6rem, 3.7vw, 4rem);
    font-weight: 400;
    font-style: normal;
    line-height: 0.98;
    letter-spacing: -0.02em;
}

.brand-story__author {
    margin: 2rem 0 0;
    color: #d7bf6d;
    font-family: var(--font-family-base);
    font-size: 1.05rem;
    font-weight: 500;
    text-transform: uppercase;
}

.brand-story__author::before {
    content: "\2014 ";
}

.brand-story__product {
    margin: 0.35rem 0 0;
    color: rgba(246, 242, 235, 0.68);
    font-family: var(--font-family-base);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-transform: uppercase;
}

.brand-story__testimonial-dots {
    position: absolute;
    top: 50%;
    right: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    transform: translateY(-50%);
}

.brand-story__testimonial-dots button {
    width: 0.95rem;
    height: 0.95rem;
    padding: 0;
    border: 0;
    border-radius: 0.2rem;
    background: rgba(246, 242, 235, 0.35);
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.brand-story__testimonial-dots button:hover,
.brand-story__testimonial-dots button:focus-visible,
.brand-story__testimonial-dots .is-active {
    background: #f6f2eb;
    outline: none;
}

.brand-story__testimonial-dots button:focus-visible {
    transform: scale(1.18);
}

.brand-story__metric {
    width: fit-content;
    padding: 2.4rem 0 2rem;
    margin: 0 auto;
}

.brand-story__metric-value,
.brand-story__metric-label {
    margin: 0;
    color: #c7c0b0;
    font-family: var(--font-family-display);
    font-weight: 400;
    line-height: 0.9;
}

.brand-story__metric-value {
    position: relative;
    display: inline-block;
    font-size: clamp(4.2rem, 7vw, 6.4rem);
    font-style: italic;
    letter-spacing: -0.04em;
}

.brand-story__metric-value::after {
    content: "";
    position: absolute;
    left: 0.15rem;
    right: 0.15rem;
    bottom: -0.45rem;
    height: 3px;
    background: #c7c0b0;
}

.brand-story__metric-label {
    margin-top: 0.55rem;
    margin-left: 3.6rem;
    font-size: clamp(3rem, 5.4vw, 5rem);
    letter-spacing: -0.04em;
}

.brand-story__recommended-header {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    position: relative;
}

.brand-story__recommended-title {
    margin: 0;
    color: #c3c0b2;
    font-family: var(--font-family-display);
    font-size: clamp(3rem, 4vw, 4.4rem);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: -0.03em;
}

.brand-story__recommended-title-accent {
    font-style: italic;
    font-weight: 100;
}

.brand-story__recommended-link {
    position: absolute;
    right: 0;
    color: #111111;
    font-size: 0.9rem;
    font-weight: 700;
}

.brand-story__recommended-link::after {
    content: " \2192";
}

.brand-story__recommended-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.brand-story__recommended-grid .product-card--recommended {
    min-height: 28rem;
    padding: 1.25rem 1.25rem 1.05rem;
    border-radius: 1.2rem;
}

.brand-story__recommended-grid .product-card--recommended .product-card__name {
    max-width: 7ch;
    font-size: clamp(1.9rem, 2.5vw, 2.6rem);
}

.brand-story__recommended-grid .product-card--recommended .product-card__price {
    font-size: clamp(2.2rem, 2.8vw, 3.2rem);
}

.brand-story__recommended-grid .product-card--recommended .product-card__button {
    font-size: 1.05rem;
}

.recommended-card {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    background: none;
    min-height: 20rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.recommended-card:hover,
.recommended-card:focus-within {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(63, 42, 28, 0.12);
}

.recommended-card__weight {
    position: absolute;
    top: 0.65rem;
    right: 0.65rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 3.6rem;
    min-height: 1.5rem;
    padding: 0 0.5rem;
    border-radius: 999px;
    background: #f5d569;
    color: #a87717;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
}

.recommended-card__image {
    min-height: 20rem;
    overflow: hidden;
    background: none;
}

.recommended-card__image--plaid {
    background: none;
}

.recommended-card__image--studio {
    background: none;
}

.recommended-card__image--meal {
    background: none;
}

.recommended-card__image-media {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.recommended-card__content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0.8rem 0.7rem;
    pointer-events: none;
}

.featured-products--catalog-page {
    padding-top: 15rem;
    min-height: 100vh;
}

/* ─── Skeleton card del catálogo ─── */

.product-card--skeleton {
    pointer-events: none;
    cursor: default;
    background: linear-gradient(
        90deg,
        #cac4bb 25%,
        #dad4cb 50%,
        #cac4bb 75%
    );
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.4s ease-in-out infinite;
}

.product-card--skeleton:hover,
.product-card--skeleton:focus-within {
    transform: none;
    box-shadow: none;
    color: #ffffff;
}

.product-card--skeleton .product-card__weight {
    background: rgba(255, 255, 255, 0.22);
    color: transparent;
}

.product-card--skeleton .product-card__name {
    min-width: 7rem;
    min-height: 2.8rem;
    border-radius: 0.4rem;
    background: rgba(255, 255, 255, 0.18);
    color: transparent;
}

.product-card--skeleton .product-card__price {
    min-width: 5rem;
    min-height: 2.4rem;
    border-radius: 0.4rem;
    background: rgba(255, 255, 255, 0.18);
    color: transparent;
}

.recommended-card__title {
    max-width: 6ch;
    margin: 0;
    color: #ffffff;
    font-family: var(--font-family-display);
    font-size: 2rem;
    font-weight: 500;
    line-height: 0.92;
    text-transform: uppercase;
}

.recommended-card__price {
    margin: 0;
    color: #ffffff;
    font-family: var(--font-family-display);
    font-size: 2.2rem;
    line-height: 0.9;
}

@media (max-width: 980px) {
    .brand-story__recommended-grid {
        grid-template-columns: 1fr;
    }

    .brand-story__hero {
        grid-template-columns: 1fr;
    }

    .brand-story__image {
        min-height: 22rem;
        padding: 2rem 1.5rem 0;
    }

    .brand-story__image-media {
        width: min(100%, 30rem);
        max-height: 20rem;
    }

    .brand-story__copy {
        padding: 2.5rem 2.2rem;
    }

    .brand-story__title,
    .brand-story__text {
        max-width: none;
    }
}

@media (max-width: 640px) {
    .brand-story {
        padding-bottom: 3rem;
    }

    .brand-story__image {
        min-height: 18rem;
        padding: 1.2rem 1rem 0;
    }

    .brand-story__image-media {
        width: min(100%, 24rem);
        max-height: 16rem;
    }

    .brand-story__testimonial {
        min-height: auto;
        padding: 2.2rem 1.4rem 2rem;
    }

    .brand-story__testimonial-slide {
        min-height: 13rem;
    }

    .brand-story__recommended-header {
        justify-content: flex-start;
        padding-right: 4.5rem;
    }

    .brand-story__recommended-grid {
        grid-template-columns: 1fr;
    }

    .brand-story__quote {
        font-size: 2rem;
        line-height: 1.05;
    }

    .brand-story__testimonial-dots {
        display: none;
    }
}

.closing-cta {
    padding: 3rem 0 0;
    /* background: #f6f2eb; */
}

.closing-cta__inner {
    width: min(100% - 1.5rem, var(--max-width-container));
    margin: 0 auto;
    padding: 3.5rem 0 5.5rem;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 1fr);
    gap: 2rem;
    align-items: end;
}

.closing-cta__title {
    margin: 0;
    max-width: 10ch;
    color: #c2bcaf;
    font-family: var(--font-family-display);
    font-size: clamp(4rem, 4.5vw, 6.4rem);
    font-weight: 500;
    line-height: 0.92;
}

.closing-cta__action {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    padding-bottom: 1rem;
}

.closing-cta__line {
    flex: 1 1 auto;
    height: 1px;
    background: #c9c1b2;
    position: relative;
}

.closing-cta__line::after {
    content: "\2192";
    position: absolute;
    right: -0.1rem;
    top: 50%;
    transform: translateY(-56%);
    color: #c9c1b2;
    font-size: 2rem;
}

.closing-cta__link {
    flex: 0 0 auto;
    color: #111111;
    font-family: var(--font-family-display);
    font-size: clamp(2.8rem, 3vw, 4rem);
    font-weight: 600;
    line-height: 0.95;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 0.18em;
}

@media (max-width: 980px) {
    .closing-cta__inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .closing-cta__inner {
        padding-top: 2rem;
        padding-bottom: 3rem;
    }

    .closing-cta__action {
        flex-direction: column;
        align-items: flex-start;
        padding-bottom: 0;
    }

    .closing-cta__line {
        width: 100%;
    }
}
